@tilde-nlp/ngx-translate 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/esm2020/lib/components/shared/extension-dialog/components/index.mjs +2 -0
- package/esm2020/lib/components/shared/extension-dialog/components/open-extension-dialog/open-extension-dialog.component.mjs +24 -0
- package/esm2020/lib/components/shared/extension-dialog/extension-dialog.component.mjs +133 -0
- package/esm2020/lib/components/shared/extension-dialog/extension-dialog.module.mjs +51 -0
- package/esm2020/lib/components/shared/extension-dialog/index.mjs +6 -0
- package/esm2020/lib/components/shared/extension-dialog/models/enums/file-categories.enum.mjs +9 -0
- package/esm2020/lib/components/shared/extension-dialog/models/enums/file-extensions.enum.mjs +35 -0
- package/esm2020/lib/components/shared/extension-dialog/models/enums/file-type-icons.enum.mjs +13 -0
- package/esm2020/lib/components/shared/extension-dialog/models/enums/file-types.enum.mjs +13 -0
- package/esm2020/lib/components/shared/extension-dialog/models/enums/index.mjs +5 -0
- package/esm2020/lib/components/shared/extension-dialog/models/index.mjs +3 -0
- package/esm2020/lib/components/shared/extension-dialog/models/interfaces/config.mjs +2 -0
- package/esm2020/lib/components/shared/extension-dialog/models/interfaces/dialog-data.model.mjs +2 -0
- package/esm2020/lib/components/shared/extension-dialog/models/interfaces/index.mjs +3 -0
- package/esm2020/lib/components/shared/extension-dialog/services/extension-dialog.service.mjs +22 -0
- package/esm2020/lib/components/shared/extension-dialog/services/index.mjs +2 -0
- package/esm2020/lib/components/shared/text-to-speech/index.mjs +3 -0
- package/esm2020/lib/components/shared/text-to-speech/models/text-to-speech-settings.model.mjs +2 -0
- package/esm2020/lib/components/shared/text-to-speech/text-to-speech.component.mjs +62 -0
- package/esm2020/lib/components/shared/text-to-speech/text-to-speech.module.mjs +36 -0
- package/esm2020/lib/components/shared/vendor-disclaimer/vendor-disclaimer.component.mjs +39 -0
- package/esm2020/lib/components/shared/vendor-disclaimer/vendor-disclaimer.module.mjs +28 -0
- package/esm2020/lib/factories/file-api-service.factory.mjs +12 -0
- package/esm2020/lib/factories/system-service.factory.mjs +12 -0
- package/esm2020/lib/factories/text-api-service.factory.mjs +12 -0
- package/esm2020/lib/i18n/available-languages.mjs +19 -0
- package/esm2020/lib/i18n/de.mjs +378 -0
- package/esm2020/lib/i18n/en.mjs +426 -0
- package/esm2020/lib/i18n/et.mjs +378 -0
- package/esm2020/lib/i18n/fi.mjs +383 -0
- package/esm2020/lib/i18n/lt.mjs +378 -0
- package/esm2020/lib/i18n/lv.mjs +391 -0
- package/esm2020/lib/i18n/models/available-languages.model.mjs +2 -0
- package/esm2020/lib/i18n/pl.mjs +378 -0
- package/esm2020/lib/i18n/sv.mjs +242 -0
- package/esm2020/lib/injection-tokens/file-api-service.token.mjs +2 -0
- package/esm2020/lib/injection-tokens/index.mjs +6 -0
- package/esm2020/lib/injection-tokens/system-service.token.mjs +2 -0
- package/esm2020/lib/injection-tokens/text-api-service.token.mjs +2 -0
- package/esm2020/lib/injection-tokens/tld-translate-config.token.mjs +2 -0
- package/esm2020/lib/injection-tokens/translation-api-version.token.mjs +2 -0
- package/esm2020/lib/modules/material.module.mjs +97 -0
- package/esm2020/lib/modules/tld-audio/index.mjs +4 -0
- package/esm2020/lib/modules/tld-audio/models/audio-error-case.model.mjs +13 -0
- package/esm2020/lib/modules/tld-audio/models/dictate-configurationi.model.mjs +2 -0
- package/esm2020/lib/modules/tld-audio/models/index.mjs +3 -0
- package/esm2020/lib/modules/tld-audio/models/transcription-update.model.mjs +2 -0
- package/esm2020/lib/modules/tld-audio/services/audio-record.service.mjs +116 -0
- package/esm2020/lib/modules/tld-audio/services/index.mjs +4 -0
- package/esm2020/lib/modules/tld-audio/services/tld-voice-input-api.service.mjs +48 -0
- package/esm2020/lib/modules/tld-audio/services/tld-voice-input.service.mjs +60 -0
- package/esm2020/lib/modules/tld-audio/tld-audio.module.mjs +41 -0
- package/esm2020/lib/modules/tld-audio/tld-dictate/tld-dictate.component.mjs +151 -0
- package/esm2020/lib/modules/tld-audio/tld-record/tld-record.component.mjs +87 -0
- package/esm2020/lib/modules/tld-common/animations/pulse.animation.mjs +11 -0
- package/esm2020/lib/modules/tld-common/components/index.mjs +10 -0
- package/esm2020/lib/modules/tld-common/components/open-close-button/open-close-button.component.mjs +41 -0
- package/esm2020/lib/modules/tld-common/components/source-and-target-wrapper/source-and-target-wrapper.component.mjs +44 -0
- package/esm2020/lib/modules/tld-common/components/tld-file-upload/tld-file-upload.component.mjs +103 -0
- package/esm2020/lib/modules/tld-common/components/tld-lang-list/tld-lang-list.component.mjs +193 -0
- package/esm2020/lib/modules/tld-common/components/tld-list-menu/tld-list-menu.component.mjs +60 -0
- package/esm2020/lib/modules/tld-common/components/tld-loader/tld-loader.component.mjs +12 -0
- package/esm2020/lib/modules/tld-common/components/tld-message/tld-message.component.mjs +49 -0
- package/esm2020/lib/modules/tld-common/components/tld-translate-achievement/tld-translate-achievement.component.mjs +17 -0
- package/esm2020/lib/modules/tld-common/components/translate-button/tld-translate-button.service.mjs +30 -0
- package/esm2020/lib/modules/tld-common/components/translate-button/translate-button.component.mjs +59 -0
- package/esm2020/lib/modules/tld-common/directives/drag-and-drop.directive.mjs +57 -0
- package/esm2020/lib/modules/tld-common/directives/index.mjs +2 -0
- package/esm2020/lib/modules/tld-common/index.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/auth-options.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/common.mjs +107 -0
- package/esm2020/lib/modules/tld-common/models/configs/tld-audio-config.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/configs/tld-term-config.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/configs/tld-text-to-speech-config.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/configs/tld-translate-api-v2-config.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/configs/tld-translate-config.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/configs/tld-translate-core-config.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/configs/tld-translate-file-config.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/configs/tld-translate-text-config.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/configs/tld-translate-web-config.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/core/index.mjs +3 -0
- package/esm2020/lib/modules/tld-common/models/core/language-menu-version.enum.mjs +6 -0
- package/esm2020/lib/modules/tld-common/models/core/translation-api-version.model.mjs +6 -0
- package/esm2020/lib/modules/tld-common/models/errors/error-codes.enum.mjs +27 -0
- package/esm2020/lib/modules/tld-common/models/errors/error-codes.type.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/errors/error.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/file-upload.model.mjs +10 -0
- package/esm2020/lib/modules/tld-common/models/index.mjs +22 -0
- package/esm2020/lib/modules/tld-common/models/lang-list-item.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/language-with-translation.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/message.model.mjs +7 -0
- package/esm2020/lib/modules/tld-common/models/selected-language.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/file-api/download-file-params.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/file-api/file-api-service.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/file-api/file-meta.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/file-api/file-translation-substatus.model.mjs +9 -0
- package/esm2020/lib/modules/tld-common/models/services/file-api/get-file-status-params.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/file-api/get-file-translation-status-response.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/file-api/remove-file-params.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/file-api/source-file-preview-response.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/file-api/start-file-translation-params.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/file-api/translated-document-preview-params.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/index.mjs +19 -0
- package/esm2020/lib/modules/tld-common/models/services/system/system.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/system/tld-system-api-service.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/text-api/check-grammar-response.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/text-api/tld-translate-text-api-service.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/text-api/translate-paragraph-request-params.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/voice-to-text/voice-to-text-job-state.model.mjs +7 -0
- package/esm2020/lib/modules/tld-common/models/services/voice-to-text/voice-to-text-job.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/models/services/voice-to-text/voice-to-text-start-job-request-params.model.mjs +2 -0
- package/esm2020/lib/modules/tld-common/pipes/index.mjs +2 -0
- package/esm2020/lib/modules/tld-common/pipes/translate-domain.pipe.mjs +27 -0
- package/esm2020/lib/modules/tld-common/services/icon-service/icon.service.mjs +30 -0
- package/esm2020/lib/modules/tld-common/services/icon-service/icons/file-types/excel.icon.mjs +22 -0
- package/esm2020/lib/modules/tld-common/services/icon-service/icons/file-types/index.mjs +10 -0
- package/esm2020/lib/modules/tld-common/services/icon-service/icons/file-types/interchange.icon.mjs +6 -0
- package/esm2020/lib/modules/tld-common/services/icon-service/icons/file-types/office-other.icon.mjs +6 -0
- package/esm2020/lib/modules/tld-common/services/icon-service/icons/file-types/other.icon.mjs +6 -0
- package/esm2020/lib/modules/tld-common/services/icon-service/icons/file-types/pdf.icon.mjs +12 -0
- package/esm2020/lib/modules/tld-common/services/icon-service/icons/file-types/powerpoint.icon.mjs +10 -0
- package/esm2020/lib/modules/tld-common/services/icon-service/icons/file-types/scanned.icon.mjs +6 -0
- package/esm2020/lib/modules/tld-common/services/icon-service/icons/file-types/web.icon.mjs +6 -0
- package/esm2020/lib/modules/tld-common/services/icon-service/icons/file-types/word.icon.mjs +11 -0
- package/esm2020/lib/modules/tld-common/services/icon-service/icons.mjs +52 -0
- package/esm2020/lib/modules/tld-common/services/index.mjs +5 -0
- package/esm2020/lib/modules/tld-common/services/scroll/tld-scroll.service.mjs +43 -0
- package/esm2020/lib/modules/tld-common/services/tld-alert.service.mjs +139 -0
- package/esm2020/lib/modules/tld-common/services/tld-highlight.service.mjs +25 -0
- package/esm2020/lib/modules/tld-common/services/tld-translate-config.service.mjs +226 -0
- package/esm2020/lib/modules/tld-common/services/wtw-link-params.service.mjs +33 -0
- package/esm2020/lib/modules/tld-common/tld-common.module.mjs +97 -0
- package/esm2020/lib/modules/tld-document/download-button/download-button.component.mjs +78 -0
- package/esm2020/lib/modules/tld-document/image-conversion-help/image-conversion-help.component.mjs +32 -0
- package/esm2020/lib/modules/tld-document/index.mjs +8 -0
- package/esm2020/lib/modules/tld-document/models/file-conversion-types.model.mjs +6 -0
- package/esm2020/lib/modules/tld-document/models/index.mjs +6 -0
- package/esm2020/lib/modules/tld-document/models/start-translation.model.mjs +2 -0
- package/esm2020/lib/modules/tld-document/models/translate-file.model.mjs +2 -0
- package/esm2020/lib/modules/tld-document/models/translation-statuss.model.mjs +15 -0
- package/esm2020/lib/modules/tld-document/models/upload-response.model.mjs +2 -0
- package/esm2020/lib/modules/tld-document/pdf-conversion-help/pdf-conversion-help.component.mjs +32 -0
- package/esm2020/lib/modules/tld-document/services/api/file-api.service.mjs +166 -0
- package/esm2020/lib/modules/tld-document/services/api/models/file-preview-v1-progress-response.model.mjs +2 -0
- package/esm2020/lib/modules/tld-document/services/api/models/file-preview-v1-response-body.model.mjs +2 -0
- package/esm2020/lib/modules/tld-document/services/api/models/get-file-translation-status-v1-response.model.mjs +2 -0
- package/esm2020/lib/modules/tld-document/services/api-v2/file-api-v2.service.mjs +87 -0
- package/esm2020/lib/modules/tld-document/services/api-v2/models/file-category-v2.model.mjs +6 -0
- package/esm2020/lib/modules/tld-document/services/api-v2/models/file-translation-status-v2-response.model.mjs +2 -0
- package/esm2020/lib/modules/tld-document/services/index.mjs +3 -0
- package/esm2020/lib/modules/tld-document/services/tld-translate-file.service.mjs +398 -0
- package/esm2020/lib/modules/tld-document/tld-document.module.mjs +70 -0
- package/esm2020/lib/modules/tld-document/tld-file-translate-base.component.mjs +76 -0
- package/esm2020/lib/modules/tld-document/tld-translate-file-multiple/tld-translate-file-multiple.component.mjs +94 -0
- package/esm2020/lib/modules/tld-term/index.mjs +7 -0
- package/esm2020/lib/modules/tld-term/models/converted-collection-tooltip-key.model.mjs +7 -0
- package/esm2020/lib/modules/tld-term/models/converted-collection-type.model.mjs +9 -0
- package/esm2020/lib/modules/tld-term/models/index.mjs +7 -0
- package/esm2020/lib/modules/tld-term/models/mt-api/tld-mt-term-collection.model.mjs +2 -0
- package/esm2020/lib/modules/tld-term/models/mt-collection-status.model.mjs +7 -0
- package/esm2020/lib/modules/tld-term/models/term-api/tld-term-collection-languages.model.mjs +2 -0
- package/esm2020/lib/modules/tld-term/models/term-api/tld-term-collection.model.mjs +2 -0
- package/esm2020/lib/modules/tld-term/models/tld-converted-collection.model.mjs +114 -0
- package/esm2020/lib/modules/tld-term/services/index.mjs +4 -0
- package/esm2020/lib/modules/tld-term/services/mt-collections-api.service.mjs +33 -0
- package/esm2020/lib/modules/tld-term/services/term-api.service.mjs +34 -0
- package/esm2020/lib/modules/tld-term/services/tld-term-collections.service.mjs +253 -0
- package/esm2020/lib/modules/tld-term/tld-term-collection/tld-term-collection.component.mjs +19 -0
- package/esm2020/lib/modules/tld-term/tld-term-collection-list/tld-term-collection-list.component.mjs +99 -0
- package/esm2020/lib/modules/tld-term/tld-term-create-collection-dialog/tld-term-create-collection-dialog.component.mjs +47 -0
- package/esm2020/lib/modules/tld-term/tld-term-menu/tld-term-menu.component.mjs +36 -0
- package/esm2020/lib/modules/tld-term/tld-term-promotion/tld-term-promotion.component.mjs +35 -0
- package/esm2020/lib/modules/tld-term/tld-term.module.mjs +67 -0
- package/esm2020/lib/modules/tld-text/components/highlight-tree/highlight-tree.component.mjs +109 -0
- package/esm2020/lib/modules/tld-text/components/progress-indicator/progress-indicator.component.mjs +35 -0
- package/esm2020/lib/modules/tld-text/components/textarea-with-background/textarea-with-background.component.mjs +153 -0
- package/esm2020/lib/modules/tld-text/components/tld-dictionary/tld-dictionary.component.mjs +56 -0
- package/esm2020/lib/modules/tld-text/components/tld-translate-source/tld-translate-source.component.mjs +60 -0
- package/esm2020/lib/modules/tld-text/components/tld-translate-suggest/dialog/suggest-translation.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/components/tld-translate-suggest/dialog/tld-translate-suggest-dialog.component.mjs +92 -0
- package/esm2020/lib/modules/tld-text/components/tld-translate-suggest/tld-translate-suggest.component.mjs +60 -0
- package/esm2020/lib/modules/tld-text/components/tld-translate-text/tld-translate-text.component.mjs +272 -0
- package/esm2020/lib/modules/tld-text/index.mjs +9 -0
- package/esm2020/lib/modules/tld-text/models/check-grammar-response-v2.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/dictionary.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/get-sentence-v1-response.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/grammar-check-base.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/grammar-check-meta.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/grammar-check-replacement.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/grammar-correction-v2.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/highlight-params.model.mjs +11 -0
- package/esm2020/lib/modules/tld-text/models/highlight-tree-type.model.mjs +12 -0
- package/esm2020/lib/modules/tld-text/models/highlight-tree.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/highlight.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/index.mjs +11 -0
- package/esm2020/lib/modules/tld-text/models/retranslate-params.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/source-text-changed.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/translate-paragraph-params.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/translate-paragraph-response-v1.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/translate-paragraph-response-v2.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/translate-paragraph-response.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/models/untranslated-paragraph.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/services/api/tld-translate-text-api.service.mjs +187 -0
- package/esm2020/lib/modules/tld-text/services/api-v2/tld-translate-text-api-v2.service.mjs +110 -0
- package/esm2020/lib/modules/tld-text/services/index.mjs +2 -0
- package/esm2020/lib/modules/tld-text/services/tld-translate-text.service.mjs +380 -0
- package/esm2020/lib/modules/tld-text/tld-text.module.mjs +95 -0
- package/esm2020/lib/modules/tld-text/utils/index.mjs +2 -0
- package/esm2020/lib/modules/tld-text/utils/models/existing-paragraph-info.model.mjs +2 -0
- package/esm2020/lib/modules/tld-text/utils/models/index.mjs +2 -0
- package/esm2020/lib/modules/tld-text/utils/tld-translate-text.utils.mjs +56 -0
- package/esm2020/lib/modules/tld-tooltip/index.mjs +5 -0
- package/esm2020/lib/modules/tld-tooltip/models/active-data.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/models/domain.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/models/index.mjs +5 -0
- package/esm2020/lib/modules/tld-tooltip/models/switcher-options.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/models/system-metadata-keys.model.mjs +7 -0
- package/esm2020/lib/modules/tld-tooltip/models/vendor.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/services/api/models/description.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/services/api/models/language.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/services/api/models/metadata.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/services/api/models/name.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/services/api/models/system.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/services/api/tld-system-api.service.mjs +57 -0
- package/esm2020/lib/modules/tld-tooltip/services/api-v2/models/error.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/services/api-v2/models/get-langauge-direction.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/services/api-v2/models/language-direction.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/services/api-v2/tld-system-api-v2.service.mjs +60 -0
- package/esm2020/lib/modules/tld-tooltip/services/index.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/services/tld-system.service.mjs +302 -0
- package/esm2020/lib/modules/tld-tooltip/tld-domain-list/tld-domain-list.component.mjs +69 -0
- package/esm2020/lib/modules/tld-tooltip/tld-tooltip.module.mjs +95 -0
- package/esm2020/lib/modules/tld-tooltip/tld-translate-switcher/tld-translate-switcher.component.mjs +188 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/dropdown/translation-system-picker-dropdown.component.mjs +179 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/dropdown-body/translation-system-picker-dropdown-body.component.mjs +209 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/filter/translation-system-picker-filter.component.mjs +48 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/index.mjs +8 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/language-list/translation-system-picker-language-list.component.mjs +31 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/models/dropdown-body-config.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/models/grouped-language-item.mjs +3 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/models/index.mjs +6 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/models/opened-menu.mjs +7 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/models/translated-language.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/models/translated-system.model.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/services/index.mjs +2 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/services/translation-system-picker.service.mjs +58 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/system-list/translation-system-picker-system-list.component.mjs +31 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/system-picker-button/translation-system-picker-button.component.mjs +27 -0
- package/esm2020/lib/modules/tld-tooltip/translation-system-picker/translation-system-picker.component.mjs +79 -0
- package/esm2020/lib/modules/tld-translate-file/tld-translate-file.component.mjs +65 -0
- package/esm2020/lib/modules/tld-web/index.mjs +3 -0
- package/esm2020/lib/modules/tld-web/tld-translate-web/tld-translate-web.component.mjs +499 -0
- package/esm2020/lib/modules/tld-web/tld-translate-web.service.mjs +16 -0
- package/esm2020/lib/modules/tld-web/tld-web.module.mjs +52 -0
- package/esm2020/lib/tld-translate-body/tld-translate-body.component.mjs +60 -0
- package/esm2020/lib/tld-translate.component.mjs +229 -0
- package/esm2020/lib/tld-translate.module.mjs +118 -0
- package/esm2020/public-api.mjs +43 -0
- package/esm2020/tilde-nlp-ngx-translate.mjs +5 -0
- package/fesm2015/tilde-nlp-ngx-translate.mjs +11019 -0
- package/fesm2015/tilde-nlp-ngx-translate.mjs.map +1 -0
- package/fesm2020/tilde-nlp-ngx-translate.mjs +10912 -0
- package/fesm2020/tilde-nlp-ngx-translate.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/shared/extension-dialog/components/index.d.ts +1 -0
- package/lib/components/shared/extension-dialog/components/open-extension-dialog/open-extension-dialog.component.d.ts +12 -0
- package/lib/components/shared/extension-dialog/extension-dialog.component.d.ts +15 -0
- package/lib/components/shared/extension-dialog/extension-dialog.module.d.ts +15 -0
- package/lib/components/shared/extension-dialog/index.d.ts +5 -0
- package/lib/components/shared/extension-dialog/models/enums/file-categories.enum.d.ts +7 -0
- package/lib/components/shared/extension-dialog/models/enums/file-extensions.enum.d.ts +33 -0
- package/lib/components/shared/extension-dialog/models/enums/file-type-icons.enum.d.ts +11 -0
- package/lib/components/shared/extension-dialog/models/enums/file-types.enum.d.ts +11 -0
- package/lib/components/shared/extension-dialog/models/enums/index.d.ts +4 -0
- package/lib/components/shared/extension-dialog/models/index.d.ts +2 -0
- package/lib/components/shared/extension-dialog/models/interfaces/config.d.ts +18 -0
- package/lib/components/shared/extension-dialog/models/interfaces/dialog-data.model.d.ts +3 -0
- package/lib/components/shared/extension-dialog/models/interfaces/index.d.ts +2 -0
- package/lib/components/shared/extension-dialog/services/extension-dialog.service.d.ts +9 -0
- package/lib/components/shared/extension-dialog/services/index.d.ts +1 -0
- package/lib/components/shared/text-to-speech/index.d.ts +2 -0
- package/lib/components/shared/text-to-speech/models/text-to-speech-settings.model.d.ts +23 -0
- package/lib/components/shared/text-to-speech/text-to-speech.component.d.ts +18 -0
- package/lib/components/shared/text-to-speech/text-to-speech.module.d.ts +11 -0
- package/lib/components/shared/vendor-disclaimer/vendor-disclaimer.component.d.ts +17 -0
- package/lib/components/shared/vendor-disclaimer/vendor-disclaimer.module.d.ts +9 -0
- package/lib/factories/file-api-service.factory.d.ts +7 -0
- package/lib/factories/system-service.factory.d.ts +6 -0
- package/lib/factories/text-api-service.factory.d.ts +6 -0
- package/lib/i18n/available-languages.d.ts +2 -0
- package/lib/i18n/de.d.ts +377 -0
- package/lib/i18n/en.d.ts +425 -0
- package/lib/i18n/et.d.ts +377 -0
- package/lib/i18n/fi.d.ts +382 -0
- package/lib/i18n/lt.d.ts +377 -0
- package/lib/i18n/lv.d.ts +390 -0
- package/lib/i18n/models/available-languages.model.d.ts +10 -0
- package/lib/i18n/pl.d.ts +377 -0
- package/lib/i18n/sv.d.ts +241 -0
- package/lib/injection-tokens/file-api-service.token.d.ts +1 -0
- package/lib/injection-tokens/index.d.ts +5 -0
- package/lib/injection-tokens/system-service.token.d.ts +1 -0
- package/lib/injection-tokens/text-api-service.token.d.ts +1 -0
- package/lib/injection-tokens/tld-translate-config.token.d.ts +1 -0
- package/lib/injection-tokens/translation-api-version.token.d.ts +1 -0
- package/lib/modules/material.module.d.ts +27 -0
- package/lib/modules/tld-audio/index.d.ts +3 -0
- package/lib/modules/tld-audio/models/audio-error-case.model.d.ts +11 -0
- package/lib/modules/tld-audio/models/dictate-configurationi.model.d.ts +6 -0
- package/lib/modules/tld-audio/models/index.d.ts +2 -0
- package/lib/modules/tld-audio/models/transcription-update.model.d.ts +4 -0
- package/lib/modules/tld-audio/services/audio-record.service.d.ts +35 -0
- package/lib/modules/tld-audio/services/index.d.ts +3 -0
- package/lib/modules/tld-audio/services/tld-voice-input-api.service.d.ts +16 -0
- package/lib/modules/tld-audio/services/tld-voice-input.service.d.ts +20 -0
- package/lib/modules/tld-audio/tld-audio.module.d.ts +14 -0
- package/lib/modules/tld-audio/tld-dictate/tld-dictate.component.d.ts +43 -0
- package/lib/modules/tld-audio/tld-record/tld-record.component.d.ts +32 -0
- package/lib/modules/tld-common/animations/pulse.animation.d.ts +1 -0
- package/lib/modules/tld-common/components/index.d.ts +9 -0
- package/lib/modules/tld-common/components/open-close-button/open-close-button.component.d.ts +15 -0
- package/lib/modules/tld-common/components/source-and-target-wrapper/source-and-target-wrapper.component.d.ts +19 -0
- package/lib/modules/tld-common/components/tld-file-upload/tld-file-upload.component.d.ts +28 -0
- package/lib/modules/tld-common/components/tld-lang-list/tld-lang-list.component.d.ts +52 -0
- package/lib/modules/tld-common/components/tld-list-menu/tld-list-menu.component.d.ts +24 -0
- package/lib/modules/tld-common/components/tld-loader/tld-loader.component.d.ts +5 -0
- package/lib/modules/tld-common/components/tld-message/tld-message.component.d.ts +18 -0
- package/lib/modules/tld-common/components/tld-translate-achievement/tld-translate-achievement.component.d.ts +6 -0
- package/lib/modules/tld-common/components/translate-button/tld-translate-button.service.d.ts +12 -0
- package/lib/modules/tld-common/components/translate-button/translate-button.component.d.ts +22 -0
- package/lib/modules/tld-common/directives/drag-and-drop.directive.d.ts +14 -0
- package/lib/modules/tld-common/directives/index.d.ts +1 -0
- package/lib/modules/tld-common/index.d.ts +1 -0
- package/lib/modules/tld-common/models/auth-options.model.d.ts +4 -0
- package/lib/modules/tld-common/models/common.d.ts +28 -0
- package/lib/modules/tld-common/models/configs/tld-audio-config.model.d.ts +22 -0
- package/lib/modules/tld-common/models/configs/tld-term-config.model.d.ts +27 -0
- package/lib/modules/tld-common/models/configs/tld-text-to-speech-config.model.d.ts +11 -0
- package/lib/modules/tld-common/models/configs/tld-translate-api-v2-config.model.d.ts +11 -0
- package/lib/modules/tld-common/models/configs/tld-translate-config.model.d.ts +18 -0
- package/lib/modules/tld-common/models/configs/tld-translate-core-config.model.d.ts +42 -0
- package/lib/modules/tld-common/models/configs/tld-translate-file-config.model.d.ts +25 -0
- package/lib/modules/tld-common/models/configs/tld-translate-text-config.model.d.ts +39 -0
- package/lib/modules/tld-common/models/configs/tld-translate-web-config.model.d.ts +10 -0
- package/lib/modules/tld-common/models/core/index.d.ts +2 -0
- package/lib/modules/tld-common/models/core/language-menu-version.enum.d.ts +4 -0
- package/lib/modules/tld-common/models/core/translation-api-version.model.d.ts +4 -0
- package/lib/modules/tld-common/models/errors/error-codes.enum.d.ts +21 -0
- package/lib/modules/tld-common/models/errors/error-codes.type.d.ts +4 -0
- package/lib/modules/tld-common/models/errors/error.model.d.ts +3 -0
- package/lib/modules/tld-common/models/file-upload.model.d.ts +13 -0
- package/lib/modules/tld-common/models/index.d.ts +21 -0
- package/lib/modules/tld-common/models/lang-list-item.model.d.ts +6 -0
- package/lib/modules/tld-common/models/language-with-translation.model.d.ts +6 -0
- package/lib/modules/tld-common/models/message.model.d.ts +11 -0
- package/lib/modules/tld-common/models/selected-language.model.d.ts +4 -0
- package/lib/modules/tld-common/models/services/file-api/download-file-params.model.d.ts +5 -0
- package/lib/modules/tld-common/models/services/file-api/file-api-service.model.d.ts +17 -0
- package/lib/modules/tld-common/models/services/file-api/file-meta.model.d.ts +8 -0
- package/lib/modules/tld-common/models/services/file-api/file-translation-substatus.model.d.ts +7 -0
- package/lib/modules/tld-common/models/services/file-api/get-file-status-params.model.d.ts +6 -0
- package/lib/modules/tld-common/models/services/file-api/get-file-translation-status-response.model.d.ts +13 -0
- package/lib/modules/tld-common/models/services/file-api/remove-file-params.model.d.ts +4 -0
- package/lib/modules/tld-common/models/services/file-api/source-file-preview-response.model.d.ts +8 -0
- package/lib/modules/tld-common/models/services/file-api/start-file-translation-params.model.d.ts +6 -0
- package/lib/modules/tld-common/models/services/file-api/translated-document-preview-params.model.d.ts +4 -0
- package/lib/modules/tld-common/models/services/index.d.ts +18 -0
- package/lib/modules/tld-common/models/services/system/system.model.d.ts +17 -0
- package/lib/modules/tld-common/models/services/system/tld-system-api-service.model.d.ts +5 -0
- package/lib/modules/tld-common/models/services/text-api/check-grammar-response.model.d.ts +6 -0
- package/lib/modules/tld-common/models/services/text-api/tld-translate-text-api-service.model.d.ts +26 -0
- package/lib/modules/tld-common/models/services/text-api/translate-paragraph-request-params.model.d.ts +6 -0
- package/lib/modules/tld-common/models/services/voice-to-text/voice-to-text-job-state.model.d.ts +5 -0
- package/lib/modules/tld-common/models/services/voice-to-text/voice-to-text-job.model.d.ts +21 -0
- package/lib/modules/tld-common/models/services/voice-to-text/voice-to-text-start-job-request-params.model.d.ts +7 -0
- package/lib/modules/tld-common/pipes/index.d.ts +1 -0
- package/lib/modules/tld-common/pipes/translate-domain.pipe.d.ts +13 -0
- package/lib/modules/tld-common/services/icon-service/icon.service.d.ts +12 -0
- package/lib/modules/tld-common/services/icon-service/icons/file-types/excel.icon.d.ts +1 -0
- package/lib/modules/tld-common/services/icon-service/icons/file-types/index.d.ts +9 -0
- package/lib/modules/tld-common/services/icon-service/icons/file-types/interchange.icon.d.ts +1 -0
- package/lib/modules/tld-common/services/icon-service/icons/file-types/office-other.icon.d.ts +1 -0
- package/lib/modules/tld-common/services/icon-service/icons/file-types/other.icon.d.ts +1 -0
- package/lib/modules/tld-common/services/icon-service/icons/file-types/pdf.icon.d.ts +1 -0
- package/lib/modules/tld-common/services/icon-service/icons/file-types/powerpoint.icon.d.ts +1 -0
- package/lib/modules/tld-common/services/icon-service/icons/file-types/scanned.icon.d.ts +1 -0
- package/lib/modules/tld-common/services/icon-service/icons/file-types/web.icon.d.ts +1 -0
- package/lib/modules/tld-common/services/icon-service/icons/file-types/word.icon.d.ts +1 -0
- package/lib/modules/tld-common/services/icon-service/icons.d.ts +3 -0
- package/lib/modules/tld-common/services/index.d.ts +4 -0
- package/lib/modules/tld-common/services/scroll/tld-scroll.service.d.ts +12 -0
- package/lib/modules/tld-common/services/tld-alert.service.d.ts +33 -0
- package/lib/modules/tld-common/services/tld-highlight.service.d.ts +14 -0
- package/lib/modules/tld-common/services/tld-translate-config.service.d.ts +39 -0
- package/lib/modules/tld-common/services/wtw-link-params.service.d.ts +13 -0
- package/lib/modules/tld-common/tld-common.module.d.ts +23 -0
- package/lib/modules/tld-document/download-button/download-button.component.d.ts +30 -0
- package/lib/modules/tld-document/image-conversion-help/image-conversion-help.component.d.ts +21 -0
- package/lib/modules/tld-document/index.d.ts +7 -0
- package/lib/modules/tld-document/models/file-conversion-types.model.d.ts +4 -0
- package/lib/modules/tld-document/models/index.d.ts +5 -0
- package/lib/modules/tld-document/models/start-translation.model.d.ts +16 -0
- package/lib/modules/tld-document/models/translate-file.model.d.ts +33 -0
- package/lib/modules/tld-document/models/translation-statuss.model.d.ts +12 -0
- package/lib/modules/tld-document/models/upload-response.model.d.ts +8 -0
- package/lib/modules/tld-document/pdf-conversion-help/pdf-conversion-help.component.d.ts +21 -0
- package/lib/modules/tld-document/services/api/file-api.service.d.ts +26 -0
- package/lib/modules/tld-document/services/api/models/file-preview-v1-progress-response.model.d.ts +6 -0
- package/lib/modules/tld-document/services/api/models/file-preview-v1-response-body.model.d.ts +8 -0
- package/lib/modules/tld-document/services/api/models/get-file-translation-status-v1-response.model.d.ts +11 -0
- package/lib/modules/tld-document/services/api-v2/file-api-v2.service.d.ts +22 -0
- package/lib/modules/tld-document/services/api-v2/models/file-category-v2.model.d.ts +4 -0
- package/lib/modules/tld-document/services/api-v2/models/file-translation-status-v2-response.model.d.ts +20 -0
- package/lib/modules/tld-document/services/index.d.ts +2 -0
- package/lib/modules/tld-document/services/tld-translate-file.service.d.ts +60 -0
- package/lib/modules/tld-document/tld-document.module.d.ts +19 -0
- package/lib/modules/tld-document/tld-file-translate-base.component.d.ts +29 -0
- package/lib/modules/tld-document/tld-translate-file-multiple/tld-translate-file-multiple.component.d.ts +40 -0
- package/lib/modules/tld-term/index.d.ts +6 -0
- package/lib/modules/tld-term/models/converted-collection-tooltip-key.model.d.ts +5 -0
- package/lib/modules/tld-term/models/converted-collection-type.model.d.ts +7 -0
- package/lib/modules/tld-term/models/index.d.ts +6 -0
- package/lib/modules/tld-term/models/mt-api/tld-mt-term-collection.model.d.ts +15 -0
- package/lib/modules/tld-term/models/mt-collection-status.model.d.ts +5 -0
- package/lib/modules/tld-term/models/term-api/tld-term-collection-languages.model.d.ts +11 -0
- package/lib/modules/tld-term/models/term-api/tld-term-collection.model.d.ts +46 -0
- package/lib/modules/tld-term/models/tld-converted-collection.model.d.ts +43 -0
- package/lib/modules/tld-term/services/index.d.ts +3 -0
- package/lib/modules/tld-term/services/mt-collections-api.service.d.ts +13 -0
- package/lib/modules/tld-term/services/term-api.service.d.ts +15 -0
- package/lib/modules/tld-term/services/tld-term-collections.service.d.ts +57 -0
- package/lib/modules/tld-term/tld-term-collection/tld-term-collection.component.d.ts +9 -0
- package/lib/modules/tld-term/tld-term-collection-list/tld-term-collection-list.component.d.ts +39 -0
- package/lib/modules/tld-term/tld-term-create-collection-dialog/tld-term-create-collection-dialog.component.d.ts +20 -0
- package/lib/modules/tld-term/tld-term-menu/tld-term-menu.component.d.ts +13 -0
- package/lib/modules/tld-term/tld-term-promotion/tld-term-promotion.component.d.ts +17 -0
- package/lib/modules/tld-term/tld-term.module.d.ts +22 -0
- package/lib/modules/tld-text/components/highlight-tree/highlight-tree.component.d.ts +27 -0
- package/lib/modules/tld-text/components/progress-indicator/progress-indicator.component.d.ts +20 -0
- package/lib/modules/tld-text/components/textarea-with-background/textarea-with-background.component.d.ts +40 -0
- package/lib/modules/tld-text/components/tld-dictionary/tld-dictionary.component.d.ts +24 -0
- package/lib/modules/tld-text/components/tld-translate-source/tld-translate-source.component.d.ts +36 -0
- package/lib/modules/tld-text/components/tld-translate-suggest/dialog/suggest-translation.model.d.ts +11 -0
- package/lib/modules/tld-text/components/tld-translate-suggest/dialog/tld-translate-suggest-dialog.component.d.ts +33 -0
- package/lib/modules/tld-text/components/tld-translate-suggest/tld-translate-suggest.component.d.ts +24 -0
- package/lib/modules/tld-text/components/tld-translate-text/tld-translate-text.component.d.ts +104 -0
- package/lib/modules/tld-text/index.d.ts +8 -0
- package/lib/modules/tld-text/models/check-grammar-response-v2.model.d.ts +4 -0
- package/lib/modules/tld-text/models/dictionary.model.d.ts +28 -0
- package/lib/modules/tld-text/models/get-sentence-v1-response.model.d.ts +5 -0
- package/lib/modules/tld-text/models/grammar-check-base.model.d.ts +6 -0
- package/lib/modules/tld-text/models/grammar-check-meta.model.d.ts +5 -0
- package/lib/modules/tld-text/models/grammar-check-replacement.model.d.ts +5 -0
- package/lib/modules/tld-text/models/grammar-correction-v2.model.d.ts +9 -0
- package/lib/modules/tld-text/models/highlight-params.model.d.ts +10 -0
- package/lib/modules/tld-text/models/highlight-tree-type.model.d.ts +10 -0
- package/lib/modules/tld-text/models/highlight-tree.model.d.ts +22 -0
- package/lib/modules/tld-text/models/highlight.model.d.ts +10 -0
- package/lib/modules/tld-text/models/index.d.ts +10 -0
- package/lib/modules/tld-text/models/retranslate-params.model.d.ts +4 -0
- package/lib/modules/tld-text/models/source-text-changed.model.d.ts +6 -0
- package/lib/modules/tld-text/models/translate-paragraph-params.model.d.ts +6 -0
- package/lib/modules/tld-text/models/translate-paragraph-response-v1.model.d.ts +15 -0
- package/lib/modules/tld-text/models/translate-paragraph-response-v2.model.d.ts +9 -0
- package/lib/modules/tld-text/models/translate-paragraph-response.model.d.ts +7 -0
- package/lib/modules/tld-text/models/untranslated-paragraph.model.d.ts +4 -0
- package/lib/modules/tld-text/services/api/tld-translate-text-api.service.d.ts +24 -0
- package/lib/modules/tld-text/services/api-v2/tld-translate-text-api-v2.service.d.ts +17 -0
- package/lib/modules/tld-text/services/index.d.ts +1 -0
- package/lib/modules/tld-text/services/tld-translate-text.service.d.ts +104 -0
- package/lib/modules/tld-text/tld-text.module.d.ts +27 -0
- package/lib/modules/tld-text/utils/index.d.ts +1 -0
- package/lib/modules/tld-text/utils/models/existing-paragraph-info.model.d.ts +5 -0
- package/lib/modules/tld-text/utils/models/index.d.ts +1 -0
- package/lib/modules/tld-text/utils/tld-translate-text.utils.d.ts +9 -0
- package/lib/modules/tld-tooltip/index.d.ts +4 -0
- package/lib/modules/tld-tooltip/models/active-data.model.d.ts +24 -0
- package/lib/modules/tld-tooltip/models/domain.model.d.ts +8 -0
- package/lib/modules/tld-tooltip/models/index.d.ts +4 -0
- package/lib/modules/tld-tooltip/models/switcher-options.model.d.ts +14 -0
- package/lib/modules/tld-tooltip/models/system-metadata-keys.model.d.ts +5 -0
- package/lib/modules/tld-tooltip/models/vendor.model.d.ts +4 -0
- package/lib/modules/tld-tooltip/services/api/models/description.model.d.ts +4 -0
- package/lib/modules/tld-tooltip/services/api/models/language.model.d.ts +5 -0
- package/lib/modules/tld-tooltip/services/api/models/metadata.model.d.ts +4 -0
- package/lib/modules/tld-tooltip/services/api/models/name.model.d.ts +4 -0
- package/lib/modules/tld-tooltip/services/api/models/system.model.d.ts +14 -0
- package/lib/modules/tld-tooltip/services/api/tld-system-api.service.d.ts +15 -0
- package/lib/modules/tld-tooltip/services/api-v2/models/error.model.d.ts +4 -0
- package/lib/modules/tld-tooltip/services/api-v2/models/get-langauge-direction.d.ts +6 -0
- package/lib/modules/tld-tooltip/services/api-v2/models/language-direction.model.d.ts +7 -0
- package/lib/modules/tld-tooltip/services/api-v2/tld-system-api-v2.service.d.ts +15 -0
- package/lib/modules/tld-tooltip/services/index.d.ts +1 -0
- package/lib/modules/tld-tooltip/services/tld-system.service.d.ts +57 -0
- package/lib/modules/tld-tooltip/tld-domain-list/tld-domain-list.component.d.ts +33 -0
- package/lib/modules/tld-tooltip/tld-tooltip.module.d.ts +25 -0
- package/lib/modules/tld-tooltip/tld-translate-switcher/tld-translate-switcher.component.d.ts +64 -0
- package/lib/modules/tld-tooltip/translation-system-picker/dropdown/translation-system-picker-dropdown.component.d.ts +44 -0
- package/lib/modules/tld-tooltip/translation-system-picker/dropdown-body/translation-system-picker-dropdown-body.component.d.ts +65 -0
- package/lib/modules/tld-tooltip/translation-system-picker/filter/translation-system-picker-filter.component.d.ts +17 -0
- package/lib/modules/tld-tooltip/translation-system-picker/index.d.ts +7 -0
- package/lib/modules/tld-tooltip/translation-system-picker/language-list/translation-system-picker-language-list.component.d.ts +14 -0
- package/lib/modules/tld-tooltip/translation-system-picker/models/dropdown-body-config.model.d.ts +11 -0
- package/lib/modules/tld-tooltip/translation-system-picker/models/grouped-language-item.d.ts +8 -0
- package/lib/modules/tld-tooltip/translation-system-picker/models/index.d.ts +5 -0
- package/lib/modules/tld-tooltip/translation-system-picker/models/opened-menu.d.ts +5 -0
- package/lib/modules/tld-tooltip/translation-system-picker/models/translated-language.model.d.ts +4 -0
- package/lib/modules/tld-tooltip/translation-system-picker/models/translated-system.model.d.ts +4 -0
- package/lib/modules/tld-tooltip/translation-system-picker/services/index.d.ts +1 -0
- package/lib/modules/tld-tooltip/translation-system-picker/services/translation-system-picker.service.d.ts +24 -0
- package/lib/modules/tld-tooltip/translation-system-picker/system-list/translation-system-picker-system-list.component.d.ts +13 -0
- package/lib/modules/tld-tooltip/translation-system-picker/system-picker-button/translation-system-picker-button.component.d.ts +10 -0
- package/lib/modules/tld-tooltip/translation-system-picker/translation-system-picker.component.d.ts +34 -0
- package/lib/modules/tld-translate-file/tld-translate-file.component.d.ts +37 -0
- package/lib/modules/tld-web/index.d.ts +2 -0
- package/lib/modules/tld-web/tld-translate-web/tld-translate-web.component.d.ts +85 -0
- package/lib/modules/tld-web/tld-translate-web.service.d.ts +7 -0
- package/lib/modules/tld-web/tld-web.module.d.ts +14 -0
- package/lib/tld-translate-body/tld-translate-body.component.d.ts +23 -0
- package/lib/tld-translate.component.d.ts +65 -0
- package/lib/tld-translate.module.d.ts +23 -0
- package/package.json +40 -0
- package/public-api.d.ts +28 -0
- package/src/assets/webcomponent/styles.css +1 -0
- package/src/assets/webcomponent/tld-translate.js +3 -0
- package/src/assets/webtranslate/page-translate-widget.js +4934 -0
- package/src/assets/webtranslate/remove.png +0 -0
- package/src/assets/webtranslate/tilde_logo.png +0 -0
- package/src/assets/webtranslate/translate-website.js +393 -0
- package/src/assets/webtranslate/widget.css +139 -0
- package/src/styles/colors.scss +15 -0
- package/src/styles/fonts.scss +3 -0
- package/src/styles/mixin/border-default.scss +10 -0
- package/src/styles/mixin/tld-translate-accent-colors.scss +46 -0
- package/src/styles/mixin/tld-translate-colors.scss +7 -0
- package/src/styles/mixin/tld-translate-placeholders.scss +5 -0
- package/src/styles/mixin/tld-translate-primary-colors.scss +5 -0
- package/src/styles/styles.scss +377 -0
- package/src/styles/translator-borders.scss +28 -0
- package/tilde-nlp-ngx-translate-1.0.0.tgz +0 -0
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
(()=>{"use strict";var e,d={},v={};function a(e){var n=v[e];if(void 0!==n)return n.exports;var r=v[e]={exports:{}};return d[e].call(r.exports,r,r.exports,a),r.exports}a.m=d,e=[],a.O=(n,r,f,l)=>{if(!r){var c=1/0;for(t=0;t<e.length;t++){for(var[r,f,l]=e[t],_=!0,o=0;o<r.length;o++)(!1&l||c>=l)&&Object.keys(a.O).every(p=>a.O[p](r[o]))?r.splice(o--,1):(_=!1,l<c&&(c=l));if(_){e.splice(t--,1);var u=f();void 0!==u&&(n=u)}}return n}l=l||0;for(var t=e.length;t>0&&e[t-1][2]>l;t--)e[t]=e[t-1];e[t]=[r,f,l]},a.n=e=>{var n=e&&e.__esModule?()=>e.default:()=>e;return a.d(n,{a:n}),n},a.d=(e,n)=>{for(var r in n)a.o(n,r)&&!a.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:n[r]})},a.o=(e,n)=>Object.prototype.hasOwnProperty.call(e,n),a.r=e=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e={666:0};a.O.j=f=>0===e[f];var n=(f,l)=>{var o,u,[t,c,_]=l,s=0;if(t.some(i=>0!==e[i])){for(o in c)a.o(c,o)&&(a.m[o]=c[o]);if(_)var b=_(a)}for(f&&f(l);s<t.length;s++)a.o(e,u=t[s])&&e[u]&&e[u][0](),e[u]=0;return a.O(b)},r=self.webpackChunktld_translate_web_component=self.webpackChunktld_translate_web_component||[];r.forEach(n.bind(null,0)),r.push=n.bind(null,r.push.bind(r))})()})();
|
|
2
|
+
"use strict";(self.webpackChunktld_translate_web_component=self.webpackChunktld_translate_web_component||[]).push([[429],{725:(ie,Ee,de)=>{de(583)},583:()=>{!function(e){const n=e.performance;function i(M){n&&n.mark&&n.mark(M)}function o(M,E){n&&n.measure&&n.measure(M,E)}i("Zone");const c=e.__Zone_symbol_prefix||"__zone_symbol__";function a(M){return c+M}const y=!0===e[a("forceDuplicateZoneCheck")];if(e.Zone){if(y||"function"!=typeof e.Zone.__symbol__)throw new Error("Zone already loaded.");return e.Zone}let d=(()=>{class M{constructor(t,r){this._parent=t,this._name=r?r.name||"unnamed":"<root>",this._properties=r&&r.properties||{},this._zoneDelegate=new v(this,this._parent&&this._parent._zoneDelegate,r)}static assertZonePatched(){if(e.Promise!==oe.ZoneAwarePromise)throw new Error("Zone.js has detected that ZoneAwarePromise `(window|global).Promise` has been overwritten.\nMost likely cause is that a Promise polyfill has been loaded after Zone.js (Polyfilling Promise api is not necessary when zone.js is loaded. If you must load one, do so before loading zone.js.)")}static get root(){let t=M.current;for(;t.parent;)t=t.parent;return t}static get current(){return U.zone}static get currentTask(){return re}static __load_patch(t,r,k=!1){if(oe.hasOwnProperty(t)){if(!k&&y)throw Error("Already loaded patch: "+t)}else if(!e["__Zone_disable_"+t]){const C="Zone:"+t;i(C),oe[t]=r(e,M,z),o(C,C)}}get parent(){return this._parent}get name(){return this._name}get(t){const r=this.getZoneWith(t);if(r)return r._properties[t]}getZoneWith(t){let r=this;for(;r;){if(r._properties.hasOwnProperty(t))return r;r=r._parent}return null}fork(t){if(!t)throw new Error("ZoneSpec required!");return this._zoneDelegate.fork(this,t)}wrap(t,r){if("function"!=typeof t)throw new Error("Expecting function got: "+t);const k=this._zoneDelegate.intercept(this,t,r),C=this;return function(){return C.runGuarded(k,this,arguments,r)}}run(t,r,k,C){U={parent:U,zone:this};try{return this._zoneDelegate.invoke(this,t,r,k,C)}finally{U=U.parent}}runGuarded(t,r=null,k,C){U={parent:U,zone:this};try{try{return this._zoneDelegate.invoke(this,t,r,k,C)}catch($){if(this._zoneDelegate.handleError(this,$))throw $}}finally{U=U.parent}}runTask(t,r,k){if(t.zone!=this)throw new Error("A task can only be run in the zone of creation! (Creation: "+(t.zone||K).name+"; Execution: "+this.name+")");if(t.state===x&&(t.type===Q||t.type===w))return;const C=t.state!=p;C&&t._transitionTo(p,j),t.runCount++;const $=re;re=t,U={parent:U,zone:this};try{t.type==w&&t.data&&!t.data.isPeriodic&&(t.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,t,r,k)}catch(l){if(this._zoneDelegate.handleError(this,l))throw l}}finally{t.state!==x&&t.state!==h&&(t.type==Q||t.data&&t.data.isPeriodic?C&&t._transitionTo(j,p):(t.runCount=0,this._updateTaskCount(t,-1),C&&t._transitionTo(x,p,x))),U=U.parent,re=$}}scheduleTask(t){if(t.zone&&t.zone!==this){let k=this;for(;k;){if(k===t.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${t.zone.name}`);k=k.parent}}t._transitionTo(X,x);const r=[];t._zoneDelegates=r,t._zone=this;try{t=this._zoneDelegate.scheduleTask(this,t)}catch(k){throw t._transitionTo(h,X,x),this._zoneDelegate.handleError(this,k),k}return t._zoneDelegates===r&&this._updateTaskCount(t,1),t.state==X&&t._transitionTo(j,X),t}scheduleMicroTask(t,r,k,C){return this.scheduleTask(new m(I,t,r,k,C,void 0))}scheduleMacroTask(t,r,k,C,$){return this.scheduleTask(new m(w,t,r,k,C,$))}scheduleEventTask(t,r,k,C,$){return this.scheduleTask(new m(Q,t,r,k,C,$))}cancelTask(t){if(t.zone!=this)throw new Error("A task can only be cancelled in the zone of creation! (Creation: "+(t.zone||K).name+"; Execution: "+this.name+")");t._transitionTo(G,j,p);try{this._zoneDelegate.cancelTask(this,t)}catch(r){throw t._transitionTo(h,G),this._zoneDelegate.handleError(this,r),r}return this._updateTaskCount(t,-1),t._transitionTo(x,G),t.runCount=0,t}_updateTaskCount(t,r){const k=t._zoneDelegates;-1==r&&(t._zoneDelegates=null);for(let C=0;C<k.length;C++)k[C]._updateTaskCount(t.type,r)}}return M.__symbol__=a,M})();const P={name:"",onHasTask:(M,E,t,r)=>M.hasTask(t,r),onScheduleTask:(M,E,t,r)=>M.scheduleTask(t,r),onInvokeTask:(M,E,t,r,k,C)=>M.invokeTask(t,r,k,C),onCancelTask:(M,E,t,r)=>M.cancelTask(t,r)};class v{constructor(E,t,r){this._taskCounts={microTask:0,macroTask:0,eventTask:0},this.zone=E,this._parentDelegate=t,this._forkZS=r&&(r&&r.onFork?r:t._forkZS),this._forkDlgt=r&&(r.onFork?t:t._forkDlgt),this._forkCurrZone=r&&(r.onFork?this.zone:t._forkCurrZone),this._interceptZS=r&&(r.onIntercept?r:t._interceptZS),this._interceptDlgt=r&&(r.onIntercept?t:t._interceptDlgt),this._interceptCurrZone=r&&(r.onIntercept?this.zone:t._interceptCurrZone),this._invokeZS=r&&(r.onInvoke?r:t._invokeZS),this._invokeDlgt=r&&(r.onInvoke?t:t._invokeDlgt),this._invokeCurrZone=r&&(r.onInvoke?this.zone:t._invokeCurrZone),this._handleErrorZS=r&&(r.onHandleError?r:t._handleErrorZS),this._handleErrorDlgt=r&&(r.onHandleError?t:t._handleErrorDlgt),this._handleErrorCurrZone=r&&(r.onHandleError?this.zone:t._handleErrorCurrZone),this._scheduleTaskZS=r&&(r.onScheduleTask?r:t._scheduleTaskZS),this._scheduleTaskDlgt=r&&(r.onScheduleTask?t:t._scheduleTaskDlgt),this._scheduleTaskCurrZone=r&&(r.onScheduleTask?this.zone:t._scheduleTaskCurrZone),this._invokeTaskZS=r&&(r.onInvokeTask?r:t._invokeTaskZS),this._invokeTaskDlgt=r&&(r.onInvokeTask?t:t._invokeTaskDlgt),this._invokeTaskCurrZone=r&&(r.onInvokeTask?this.zone:t._invokeTaskCurrZone),this._cancelTaskZS=r&&(r.onCancelTask?r:t._cancelTaskZS),this._cancelTaskDlgt=r&&(r.onCancelTask?t:t._cancelTaskDlgt),this._cancelTaskCurrZone=r&&(r.onCancelTask?this.zone:t._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const k=r&&r.onHasTask;(k||t&&t._hasTaskZS)&&(this._hasTaskZS=k?r:P,this._hasTaskDlgt=t,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=E,r.onScheduleTask||(this._scheduleTaskZS=P,this._scheduleTaskDlgt=t,this._scheduleTaskCurrZone=this.zone),r.onInvokeTask||(this._invokeTaskZS=P,this._invokeTaskDlgt=t,this._invokeTaskCurrZone=this.zone),r.onCancelTask||(this._cancelTaskZS=P,this._cancelTaskDlgt=t,this._cancelTaskCurrZone=this.zone))}fork(E,t){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,E,t):new d(E,t)}intercept(E,t,r){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,E,t,r):t}invoke(E,t,r,k,C){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,E,t,r,k,C):t.apply(r,k)}handleError(E,t){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,E,t)}scheduleTask(E,t){let r=t;if(this._scheduleTaskZS)this._hasTaskZS&&r._zoneDelegates.push(this._hasTaskDlgtOwner),r=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,E,t),r||(r=t);else if(t.scheduleFn)t.scheduleFn(t);else{if(t.type!=I)throw new Error("Task is missing scheduleFn.");R(t)}return r}invokeTask(E,t,r,k){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,E,t,r,k):t.callback.apply(r,k)}cancelTask(E,t){let r;if(this._cancelTaskZS)r=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,E,t);else{if(!t.cancelFn)throw Error("Task is not cancelable");r=t.cancelFn(t)}return r}hasTask(E,t){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,E,t)}catch(r){this.handleError(E,r)}}_updateTaskCount(E,t){const r=this._taskCounts,k=r[E],C=r[E]=k+t;if(C<0)throw new Error("More tasks executed then were scheduled.");0!=k&&0!=C||this.hasTask(this.zone,{microTask:r.microTask>0,macroTask:r.macroTask>0,eventTask:r.eventTask>0,change:E})}}class m{constructor(E,t,r,k,C,$){if(this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state="notScheduled",this.type=E,this.source=t,this.data=k,this.scheduleFn=C,this.cancelFn=$,!r)throw new Error("callback is not defined");this.callback=r;const l=this;this.invoke=E===Q&&k&&k.useG?m.invokeTask:function(){return m.invokeTask.call(e,l,this,arguments)}}static invokeTask(E,t,r){E||(E=this),ee++;try{return E.runCount++,E.zone.runTask(E,t,r)}finally{1==ee&&_(),ee--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(x,X)}_transitionTo(E,t,r){if(this._state!==t&&this._state!==r)throw new Error(`${this.type} '${this.source}': can not transition to '${E}', expecting state '${t}'${r?" or '"+r+"'":""}, was '${this._state}'.`);this._state=E,E==x&&(this._zoneDelegates=null)}toString(){return this.data&&typeof this.data.handleId<"u"?this.data.handleId.toString():Object.prototype.toString.call(this)}toJSON(){return{type:this.type,state:this.state,source:this.source,zone:this.zone.name,runCount:this.runCount}}}const L=a("setTimeout"),Z=a("Promise"),N=a("then");let J,B=[],H=!1;function q(M){if(J||e[Z]&&(J=e[Z].resolve(0)),J){let E=J[N];E||(E=J.then),E.call(J,M)}else e[L](M,0)}function R(M){0===ee&&0===B.length&&q(_),M&&B.push(M)}function _(){if(!H){for(H=!0;B.length;){const M=B;B=[];for(let E=0;E<M.length;E++){const t=M[E];try{t.zone.runTask(t,null,null)}catch(r){z.onUnhandledError(r)}}}z.microtaskDrainDone(),H=!1}}const K={name:"NO ZONE"},x="notScheduled",X="scheduling",j="scheduled",p="running",G="canceling",h="unknown",I="microTask",w="macroTask",Q="eventTask",oe={},z={symbol:a,currentZoneFrame:()=>U,onUnhandledError:W,microtaskDrainDone:W,scheduleMicroTask:R,showUncaughtError:()=>!d[a("ignoreConsoleErrorUncaughtError")],patchEventTarget:()=>[],patchOnProperties:W,patchMethod:()=>W,bindArguments:()=>[],patchThen:()=>W,patchMacroTask:()=>W,patchEventPrototype:()=>W,isIEOrEdge:()=>!1,getGlobalObjects:()=>{},ObjectDefineProperty:()=>W,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>W,wrapWithCurrentZone:()=>W,filterProperties:()=>[],attachOriginToPatched:()=>W,_redefineProperty:()=>W,patchCallbacks:()=>W,nativeScheduleMicroTask:q};let U={parent:null,zone:new d(null,null)},re=null,ee=0;function W(){}o("Zone","Zone"),e.Zone=d}(typeof window<"u"&&window||typeof self<"u"&&self||global);const ie=Object.getOwnPropertyDescriptor,Ee=Object.defineProperty,de=Object.getPrototypeOf,ge=Object.create,Ve=Array.prototype.slice,Oe="addEventListener",Se="removeEventListener",Ze=Zone.__symbol__(Oe),Ne=Zone.__symbol__(Se),ce="true",ae="false",ke=Zone.__symbol__("");function Ie(e,n){return Zone.current.wrap(e,n)}function Me(e,n,i,o,c){return Zone.current.scheduleMacroTask(e,n,i,o,c)}const A=Zone.__symbol__,Pe=typeof window<"u",Te=Pe?window:void 0,Y=Pe&&Te||"object"==typeof self&&self||global;function Le(e,n){for(let i=e.length-1;i>=0;i--)"function"==typeof e[i]&&(e[i]=Ie(e[i],n+"_"+i));return e}function Fe(e){return!e||!1!==e.writable&&!("function"==typeof e.get&&typeof e.set>"u")}const Be=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope,we=!("nw"in Y)&&typeof Y.process<"u"&&"[object process]"==={}.toString.call(Y.process),je=!we&&!Be&&!(!Pe||!Te.HTMLElement),Ue=typeof Y.process<"u"&&"[object process]"==={}.toString.call(Y.process)&&!Be&&!(!Pe||!Te.HTMLElement),Re={},We=function(e){if(!(e=e||Y.event))return;let n=Re[e.type];n||(n=Re[e.type]=A("ON_PROPERTY"+e.type));const i=this||e.target||Y,o=i[n];let c;if(je&&i===Te&&"error"===e.type){const a=e;c=o&&o.call(this,a.message,a.filename,a.lineno,a.colno,a.error),!0===c&&e.preventDefault()}else c=o&&o.apply(this,arguments),null!=c&&!c&&e.preventDefault();return c};function qe(e,n,i){let o=ie(e,n);if(!o&&i&&ie(i,n)&&(o={enumerable:!0,configurable:!0}),!o||!o.configurable)return;const c=A("on"+n+"patched");if(e.hasOwnProperty(c)&&e[c])return;delete o.writable,delete o.value;const a=o.get,y=o.set,d=n.slice(2);let P=Re[d];P||(P=Re[d]=A("ON_PROPERTY"+d)),o.set=function(v){let m=this;!m&&e===Y&&(m=Y),m&&("function"==typeof m[P]&&m.removeEventListener(d,We),y&&y.call(m,null),m[P]=v,"function"==typeof v&&m.addEventListener(d,We,!1))},o.get=function(){let v=this;if(!v&&e===Y&&(v=Y),!v)return null;const m=v[P];if(m)return m;if(a){let L=a.call(this);if(L)return o.set.call(this,L),"function"==typeof v.removeAttribute&&v.removeAttribute(n),L}return null},Ee(e,n,o),e[c]=!0}function Xe(e,n,i){if(n)for(let o=0;o<n.length;o++)qe(e,"on"+n[o],i);else{const o=[];for(const c in e)"on"==c.slice(0,2)&&o.push(c);for(let c=0;c<o.length;c++)qe(e,o[c],i)}}const ne=A("originalInstance");function ve(e){const n=Y[e];if(!n)return;Y[A(e)]=n,Y[e]=function(){const c=Le(arguments,e);switch(c.length){case 0:this[ne]=new n;break;case 1:this[ne]=new n(c[0]);break;case 2:this[ne]=new n(c[0],c[1]);break;case 3:this[ne]=new n(c[0],c[1],c[2]);break;case 4:this[ne]=new n(c[0],c[1],c[2],c[3]);break;default:throw new Error("Arg list too long.")}},ue(Y[e],n);const i=new n(function(){});let o;for(o in i)"XMLHttpRequest"===e&&"responseBlob"===o||function(c){"function"==typeof i[c]?Y[e].prototype[c]=function(){return this[ne][c].apply(this[ne],arguments)}:Ee(Y[e].prototype,c,{set:function(a){"function"==typeof a?(this[ne][c]=Ie(a,e+"."+c),ue(this[ne][c],a)):this[ne][c]=a},get:function(){return this[ne][c]}})}(o);for(o in n)"prototype"!==o&&n.hasOwnProperty(o)&&(Y[e][o]=n[o])}function le(e,n,i){let o=e;for(;o&&!o.hasOwnProperty(n);)o=de(o);!o&&e[n]&&(o=e);const c=A(n);let a=null;if(o&&(!(a=o[c])||!o.hasOwnProperty(c))&&(a=o[c]=o[n],Fe(o&&ie(o,n)))){const d=i(a,c,n);o[n]=function(){return d(this,arguments)},ue(o[n],a)}return a}function lt(e,n,i){let o=null;function c(a){const y=a.data;return y.args[y.cbIdx]=function(){a.invoke.apply(this,arguments)},o.apply(y.target,y.args),a}o=le(e,n,a=>function(y,d){const P=i(y,d);return P.cbIdx>=0&&"function"==typeof d[P.cbIdx]?Me(P.name,d[P.cbIdx],P,c):a.apply(y,d)})}function ue(e,n){e[A("OriginalDelegate")]=n}let ze=!1,Ae=!1;function ft(){if(ze)return Ae;ze=!0;try{const e=Te.navigator.userAgent;(-1!==e.indexOf("MSIE ")||-1!==e.indexOf("Trident/")||-1!==e.indexOf("Edge/"))&&(Ae=!0)}catch{}return Ae}Zone.__load_patch("ZoneAwarePromise",(e,n,i)=>{const o=Object.getOwnPropertyDescriptor,c=Object.defineProperty,y=i.symbol,d=[],P=!0===e[y("DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION")],v=y("Promise"),m=y("then");i.onUnhandledError=l=>{if(i.showUncaughtError()){const u=l&&l.rejection;u?console.error("Unhandled Promise rejection:",u instanceof Error?u.message:u,"; Zone:",l.zone.name,"; Task:",l.task&&l.task.source,"; Value:",u,u instanceof Error?u.stack:void 0):console.error(l)}},i.microtaskDrainDone=()=>{for(;d.length;){const l=d.shift();try{l.zone.runGuarded(()=>{throw l.throwOriginal?l.rejection:l})}catch(u){N(u)}}};const Z=y("unhandledPromiseRejectionHandler");function N(l){i.onUnhandledError(l);try{const u=n[Z];"function"==typeof u&&u.call(this,l)}catch{}}function B(l){return l&&l.then}function H(l){return l}function J(l){return t.reject(l)}const q=y("state"),R=y("value"),_=y("finally"),K=y("parentPromiseValue"),x=y("parentPromiseState"),j=null,p=!0,G=!1;function I(l,u){return s=>{try{z(l,u,s)}catch(f){z(l,!1,f)}}}const w=function(){let l=!1;return function(s){return function(){l||(l=!0,s.apply(null,arguments))}}},oe=y("currentTaskTrace");function z(l,u,s){const f=w();if(l===s)throw new TypeError("Promise resolved with itself");if(l[q]===j){let g=null;try{("object"==typeof s||"function"==typeof s)&&(g=s&&s.then)}catch(b){return f(()=>{z(l,!1,b)})(),l}if(u!==G&&s instanceof t&&s.hasOwnProperty(q)&&s.hasOwnProperty(R)&&s[q]!==j)re(s),z(l,s[q],s[R]);else if(u!==G&&"function"==typeof g)try{g.call(s,f(I(l,u)),f(I(l,!1)))}catch(b){f(()=>{z(l,!1,b)})()}else{l[q]=u;const b=l[R];if(l[R]=s,l[_]===_&&u===p&&(l[q]=l[x],l[R]=l[K]),u===G&&s instanceof Error){const T=n.currentTask&&n.currentTask.data&&n.currentTask.data.__creationTrace__;T&&c(s,oe,{configurable:!0,enumerable:!1,writable:!0,value:T})}for(let T=0;T<b.length;)ee(l,b[T++],b[T++],b[T++],b[T++]);if(0==b.length&&u==G){l[q]=0;let T=s;try{throw new Error("Uncaught (in promise): "+function a(l){return l&&l.toString===Object.prototype.toString?(l.constructor&&l.constructor.name||"")+": "+JSON.stringify(l):l?l.toString():Object.prototype.toString.call(l)}(s)+(s&&s.stack?"\n"+s.stack:""))}catch(D){T=D}P&&(T.throwOriginal=!0),T.rejection=s,T.promise=l,T.zone=n.current,T.task=n.currentTask,d.push(T),i.scheduleMicroTask()}}}return l}const U=y("rejectionHandledHandler");function re(l){if(0===l[q]){try{const u=n[U];u&&"function"==typeof u&&u.call(this,{rejection:l[R],promise:l})}catch{}l[q]=G;for(let u=0;u<d.length;u++)l===d[u].promise&&d.splice(u,1)}}function ee(l,u,s,f,g){re(l);const b=l[q],T=b?"function"==typeof f?f:H:"function"==typeof g?g:J;u.scheduleMicroTask("Promise.then",()=>{try{const D=l[R],O=!!s&&_===s[_];O&&(s[K]=D,s[x]=b);const S=u.run(T,void 0,O&&T!==J&&T!==H?[]:[D]);z(s,!0,S)}catch(D){z(s,!1,D)}},s)}const M=function(){},E=e.AggregateError;class t{static toString(){return"function ZoneAwarePromise() { [native code] }"}static resolve(u){return z(new this(null),p,u)}static reject(u){return z(new this(null),G,u)}static any(u){if(!u||"function"!=typeof u[Symbol.iterator])return Promise.reject(new E([],"All promises were rejected"));const s=[];let f=0;try{for(let T of u)f++,s.push(t.resolve(T))}catch{return Promise.reject(new E([],"All promises were rejected"))}if(0===f)return Promise.reject(new E([],"All promises were rejected"));let g=!1;const b=[];return new t((T,D)=>{for(let O=0;O<s.length;O++)s[O].then(S=>{g||(g=!0,T(S))},S=>{b.push(S),f--,0===f&&(g=!0,D(new E(b,"All promises were rejected")))})})}static race(u){let s,f,g=new this((D,O)=>{s=D,f=O});function b(D){s(D)}function T(D){f(D)}for(let D of u)B(D)||(D=this.resolve(D)),D.then(b,T);return g}static all(u){return t.allWithCallback(u)}static allSettled(u){return(this&&this.prototype instanceof t?this:t).allWithCallback(u,{thenCallback:f=>({status:"fulfilled",value:f}),errorCallback:f=>({status:"rejected",reason:f})})}static allWithCallback(u,s){let f,g,b=new this((S,V)=>{f=S,g=V}),T=2,D=0;const O=[];for(let S of u){B(S)||(S=this.resolve(S));const V=D;try{S.then(F=>{O[V]=s?s.thenCallback(F):F,T--,0===T&&f(O)},F=>{s?(O[V]=s.errorCallback(F),T--,0===T&&f(O)):g(F)})}catch(F){g(F)}T++,D++}return T-=2,0===T&&f(O),b}constructor(u){const s=this;if(!(s instanceof t))throw new Error("Must be an instanceof Promise.");s[q]=j,s[R]=[];try{const f=w();u&&u(f(I(s,p)),f(I(s,G)))}catch(f){z(s,!1,f)}}get[Symbol.toStringTag](){return"Promise"}get[Symbol.species](){return t}then(u,s){var f;let g=null===(f=this.constructor)||void 0===f?void 0:f[Symbol.species];(!g||"function"!=typeof g)&&(g=this.constructor||t);const b=new g(M),T=n.current;return this[q]==j?this[R].push(T,b,u,s):ee(this,T,b,u,s),b}catch(u){return this.then(null,u)}finally(u){var s;let f=null===(s=this.constructor)||void 0===s?void 0:s[Symbol.species];(!f||"function"!=typeof f)&&(f=t);const g=new f(M);g[_]=_;const b=n.current;return this[q]==j?this[R].push(b,g,u,u):ee(this,b,g,u,u),g}}t.resolve=t.resolve,t.reject=t.reject,t.race=t.race,t.all=t.all;const r=e[v]=e.Promise;e.Promise=t;const k=y("thenPatched");function C(l){const u=l.prototype,s=o(u,"then");if(s&&(!1===s.writable||!s.configurable))return;const f=u.then;u[m]=f,l.prototype.then=function(g,b){return new t((D,O)=>{f.call(this,D,O)}).then(g,b)},l[k]=!0}return i.patchThen=C,r&&(C(r),le(e,"fetch",l=>function $(l){return function(u,s){let f=l.apply(u,s);if(f instanceof t)return f;let g=f.constructor;return g[k]||C(g),f}}(l))),Promise[n.__symbol__("uncaughtPromiseErrors")]=d,t}),Zone.__load_patch("toString",e=>{const n=Function.prototype.toString,i=A("OriginalDelegate"),o=A("Promise"),c=A("Error"),a=function(){if("function"==typeof this){const v=this[i];if(v)return"function"==typeof v?n.call(v):Object.prototype.toString.call(v);if(this===Promise){const m=e[o];if(m)return n.call(m)}if(this===Error){const m=e[c];if(m)return n.call(m)}}return n.call(this)};a[i]=n,Function.prototype.toString=a;const y=Object.prototype.toString;Object.prototype.toString=function(){return"function"==typeof Promise&&this instanceof Promise?"[object Promise]":y.call(this)}});let ye=!1;if(typeof window<"u")try{const e=Object.defineProperty({},"passive",{get:function(){ye=!0}});window.addEventListener("test",e,e),window.removeEventListener("test",e,e)}catch{ye=!1}const ht={useG:!0},te={},Ye={},$e=new RegExp("^"+ke+"(\\w+)(true|false)$"),Ke=A("propagationStopped");function Je(e,n){const i=(n?n(e):e)+ae,o=(n?n(e):e)+ce,c=ke+i,a=ke+o;te[e]={},te[e][ae]=c,te[e][ce]=a}function dt(e,n,i,o){const c=o&&o.add||Oe,a=o&&o.rm||Se,y=o&&o.listeners||"eventListeners",d=o&&o.rmAll||"removeAllListeners",P=A(c),v="."+c+":",Z=function(R,_,K){if(R.isRemoved)return;const x=R.callback;let X;"object"==typeof x&&x.handleEvent&&(R.callback=p=>x.handleEvent(p),R.originalDelegate=x);try{R.invoke(R,_,[K])}catch(p){X=p}const j=R.options;return j&&"object"==typeof j&&j.once&&_[a].call(_,K.type,R.originalDelegate?R.originalDelegate:R.callback,j),X};function N(R,_,K){if(!(_=_||e.event))return;const x=R||_.target||e,X=x[te[_.type][K?ce:ae]];if(X){const j=[];if(1===X.length){const p=Z(X[0],x,_);p&&j.push(p)}else{const p=X.slice();for(let G=0;G<p.length&&(!_||!0!==_[Ke]);G++){const h=Z(p[G],x,_);h&&j.push(h)}}if(1===j.length)throw j[0];for(let p=0;p<j.length;p++){const G=j[p];n.nativeScheduleMicroTask(()=>{throw G})}}}const B=function(R){return N(this,R,!1)},H=function(R){return N(this,R,!0)};function J(R,_){if(!R)return!1;let K=!0;_&&void 0!==_.useG&&(K=_.useG);const x=_&&_.vh;let X=!0;_&&void 0!==_.chkDup&&(X=_.chkDup);let j=!1;_&&void 0!==_.rt&&(j=_.rt);let p=R;for(;p&&!p.hasOwnProperty(c);)p=de(p);if(!p&&R[c]&&(p=R),!p||p[P])return!1;const G=_&&_.eventNameToString,h={},I=p[P]=p[c],w=p[A(a)]=p[a],Q=p[A(y)]=p[y],oe=p[A(d)]=p[d];let z;function U(s,f){return!ye&&"object"==typeof s&&s?!!s.capture:ye&&f?"boolean"==typeof s?{capture:s,passive:!0}:s?"object"==typeof s&&!1!==s.passive?Object.assign(Object.assign({},s),{passive:!0}):s:{passive:!0}:s}_&&_.prepend&&(z=p[A(_.prepend)]=p[_.prepend]);const t=K?function(s){if(!h.isExisting)return I.call(h.target,h.eventName,h.capture?H:B,h.options)}:function(s){return I.call(h.target,h.eventName,s.invoke,h.options)},r=K?function(s){if(!s.isRemoved){const f=te[s.eventName];let g;f&&(g=f[s.capture?ce:ae]);const b=g&&s.target[g];if(b)for(let T=0;T<b.length;T++)if(b[T]===s){b.splice(T,1),s.isRemoved=!0,0===b.length&&(s.allRemoved=!0,s.target[g]=null);break}}if(s.allRemoved)return w.call(s.target,s.eventName,s.capture?H:B,s.options)}:function(s){return w.call(s.target,s.eventName,s.invoke,s.options)},C=_&&_.diff?_.diff:function(s,f){const g=typeof f;return"function"===g&&s.callback===f||"object"===g&&s.originalDelegate===f},$=Zone[A("UNPATCHED_EVENTS")],l=e[A("PASSIVE_EVENTS")],u=function(s,f,g,b,T=!1,D=!1){return function(){const O=this||e;let S=arguments[0];_&&_.transferEventName&&(S=_.transferEventName(S));let V=arguments[1];if(!V)return s.apply(this,arguments);if(we&&"uncaughtException"===S)return s.apply(this,arguments);let F=!1;if("function"!=typeof V){if(!V.handleEvent)return s.apply(this,arguments);F=!0}if(x&&!x(s,V,O,arguments))return;const fe=ye&&!!l&&-1!==l.indexOf(S),se=U(arguments[2],fe);if($)for(let _e=0;_e<$.length;_e++)if(S===$[_e])return fe?s.call(O,S,V,se):s.apply(this,arguments);const xe=!!se&&("boolean"==typeof se||se.capture),nt=!(!se||"object"!=typeof se)&&se.once,gt=Zone.current;let Ge=te[S];Ge||(Je(S,G),Ge=te[S]);const rt=Ge[xe?ce:ae];let De,me=O[rt],ot=!1;if(me){if(ot=!0,X)for(let _e=0;_e<me.length;_e++)if(C(me[_e],V))return}else me=O[rt]=[];const st=O.constructor.name,it=Ye[st];it&&(De=it[S]),De||(De=st+f+(G?G(S):S)),h.options=se,nt&&(h.options.once=!1),h.target=O,h.capture=xe,h.eventName=S,h.isExisting=ot;const be=K?ht:void 0;be&&(be.taskData=h);const he=gt.scheduleEventTask(De,V,be,g,b);return h.target=null,be&&(be.taskData=null),nt&&(se.once=!0),!ye&&"boolean"==typeof he.options||(he.options=se),he.target=O,he.capture=xe,he.eventName=S,F&&(he.originalDelegate=V),D?me.unshift(he):me.push(he),T?O:void 0}};return p[c]=u(I,v,t,r,j),z&&(p.prependListener=u(z,".prependListener:",function(s){return z.call(h.target,h.eventName,s.invoke,h.options)},r,j,!0)),p[a]=function(){const s=this||e;let f=arguments[0];_&&_.transferEventName&&(f=_.transferEventName(f));const g=arguments[2],b=!!g&&("boolean"==typeof g||g.capture),T=arguments[1];if(!T)return w.apply(this,arguments);if(x&&!x(w,T,s,arguments))return;const D=te[f];let O;D&&(O=D[b?ce:ae]);const S=O&&s[O];if(S)for(let V=0;V<S.length;V++){const F=S[V];if(C(F,T))return S.splice(V,1),F.isRemoved=!0,0===S.length&&(F.allRemoved=!0,s[O]=null,"string"==typeof f)&&(s[ke+"ON_PROPERTY"+f]=null),F.zone.cancelTask(F),j?s:void 0}return w.apply(this,arguments)},p[y]=function(){const s=this||e;let f=arguments[0];_&&_.transferEventName&&(f=_.transferEventName(f));const g=[],b=Qe(s,G?G(f):f);for(let T=0;T<b.length;T++){const D=b[T];g.push(D.originalDelegate?D.originalDelegate:D.callback)}return g},p[d]=function(){const s=this||e;let f=arguments[0];if(f){_&&_.transferEventName&&(f=_.transferEventName(f));const g=te[f];if(g){const D=s[g[ae]],O=s[g[ce]];if(D){const S=D.slice();for(let V=0;V<S.length;V++){const F=S[V];this[a].call(this,f,F.originalDelegate?F.originalDelegate:F.callback,F.options)}}if(O){const S=O.slice();for(let V=0;V<S.length;V++){const F=S[V];this[a].call(this,f,F.originalDelegate?F.originalDelegate:F.callback,F.options)}}}}else{const g=Object.keys(s);for(let b=0;b<g.length;b++){const D=$e.exec(g[b]);let O=D&&D[1];O&&"removeListener"!==O&&this[d].call(this,O)}this[d].call(this,"removeListener")}if(j)return this},ue(p[c],I),ue(p[a],w),oe&&ue(p[d],oe),Q&&ue(p[y],Q),!0}let q=[];for(let R=0;R<i.length;R++)q[R]=J(i[R],o);return q}function Qe(e,n){if(!n){const a=[];for(let y in e){const d=$e.exec(y);let P=d&&d[1];if(P&&(!n||P===n)){const v=e[y];if(v)for(let m=0;m<v.length;m++)a.push(v[m])}}return a}let i=te[n];i||(Je(n),i=te[n]);const o=e[i[ae]],c=e[i[ce]];return o?c?o.concat(c):o.slice():c?c.slice():[]}function _t(e,n){const i=e.Event;i&&i.prototype&&n.patchMethod(i.prototype,"stopImmediatePropagation",o=>function(c,a){c[Ke]=!0,o&&o.apply(c,a)})}function Et(e,n,i,o,c){const a=Zone.__symbol__(o);if(n[a])return;const y=n[a]=n[o];n[o]=function(d,P,v){return P&&P.prototype&&c.forEach(function(m){const L=`${i}.${o}::`+m,Z=P.prototype;try{if(Z.hasOwnProperty(m)){const N=e.ObjectGetOwnPropertyDescriptor(Z,m);N&&N.value?(N.value=e.wrapWithCurrentZone(N.value,L),e._redefineProperty(P.prototype,m,N)):Z[m]&&(Z[m]=e.wrapWithCurrentZone(Z[m],L))}else Z[m]&&(Z[m]=e.wrapWithCurrentZone(Z[m],L))}catch{}}),y.call(n,d,P,v)},e.attachOriginToPatched(n[o],y)}function et(e,n,i){if(!i||0===i.length)return n;const o=i.filter(a=>a.target===e);if(!o||0===o.length)return n;const c=o[0].ignoreProperties;return n.filter(a=>-1===c.indexOf(a))}function tt(e,n,i,o){e&&Xe(e,et(e,n,i),o)}function He(e){return Object.getOwnPropertyNames(e).filter(n=>n.startsWith("on")&&n.length>2).map(n=>n.substring(2))}Zone.__load_patch("util",(e,n,i)=>{const o=He(e);i.patchOnProperties=Xe,i.patchMethod=le,i.bindArguments=Le,i.patchMacroTask=lt;const c=n.__symbol__("BLACK_LISTED_EVENTS"),a=n.__symbol__("UNPATCHED_EVENTS");e[a]&&(e[c]=e[a]),e[c]&&(n[c]=n[a]=e[c]),i.patchEventPrototype=_t,i.patchEventTarget=dt,i.isIEOrEdge=ft,i.ObjectDefineProperty=Ee,i.ObjectGetOwnPropertyDescriptor=ie,i.ObjectCreate=ge,i.ArraySlice=Ve,i.patchClass=ve,i.wrapWithCurrentZone=Ie,i.filterProperties=et,i.attachOriginToPatched=ue,i._redefineProperty=Object.defineProperty,i.patchCallbacks=Et,i.getGlobalObjects=()=>({globalSources:Ye,zoneSymbolEventNames:te,eventNames:o,isBrowser:je,isMix:Ue,isNode:we,TRUE_STR:ce,FALSE_STR:ae,ZONE_SYMBOL_PREFIX:ke,ADD_EVENT_LISTENER_STR:Oe,REMOVE_EVENT_LISTENER_STR:Se})});const Ce=A("zoneTask");function pe(e,n,i,o){let c=null,a=null;i+=o;const y={};function d(v){const m=v.data;return m.args[0]=function(){return v.invoke.apply(this,arguments)},m.handleId=c.apply(e,m.args),v}function P(v){return a.call(e,v.data.handleId)}c=le(e,n+=o,v=>function(m,L){if("function"==typeof L[0]){const Z={isPeriodic:"Interval"===o,delay:"Timeout"===o||"Interval"===o?L[1]||0:void 0,args:L},N=L[0];L[0]=function(){try{return N.apply(this,arguments)}finally{Z.isPeriodic||("number"==typeof Z.handleId?delete y[Z.handleId]:Z.handleId&&(Z.handleId[Ce]=null))}};const B=Me(n,L[0],Z,d,P);if(!B)return B;const H=B.data.handleId;return"number"==typeof H?y[H]=B:H&&(H[Ce]=B),H&&H.ref&&H.unref&&"function"==typeof H.ref&&"function"==typeof H.unref&&(B.ref=H.ref.bind(H),B.unref=H.unref.bind(H)),"number"==typeof H||H?H:B}return v.apply(e,L)}),a=le(e,i,v=>function(m,L){const Z=L[0];let N;"number"==typeof Z?N=y[Z]:(N=Z&&Z[Ce],N||(N=Z)),N&&"string"==typeof N.type?"notScheduled"!==N.state&&(N.cancelFn&&N.data.isPeriodic||0===N.runCount)&&("number"==typeof Z?delete y[Z]:Z&&(Z[Ce]=null),N.zone.cancelTask(N)):v.apply(e,L)})}Zone.__load_patch("legacy",e=>{const n=e[Zone.__symbol__("legacyPatch")];n&&n()}),Zone.__load_patch("queueMicrotask",(e,n,i)=>{i.patchMethod(e,"queueMicrotask",o=>function(c,a){n.current.scheduleMicroTask("queueMicrotask",a[0])})}),Zone.__load_patch("timers",e=>{const n="set",i="clear";pe(e,n,i,"Timeout"),pe(e,n,i,"Interval"),pe(e,n,i,"Immediate")}),Zone.__load_patch("requestAnimationFrame",e=>{pe(e,"request","cancel","AnimationFrame"),pe(e,"mozRequest","mozCancel","AnimationFrame"),pe(e,"webkitRequest","webkitCancel","AnimationFrame")}),Zone.__load_patch("blocking",(e,n)=>{const i=["alert","prompt","confirm"];for(let o=0;o<i.length;o++)le(e,i[o],(a,y,d)=>function(P,v){return n.current.run(a,e,v,d)})}),Zone.__load_patch("EventTarget",(e,n,i)=>{(function mt(e,n){n.patchEventPrototype(e,n)})(e,i),function pt(e,n){if(Zone[n.symbol("patchEventTarget")])return;const{eventNames:i,zoneSymbolEventNames:o,TRUE_STR:c,FALSE_STR:a,ZONE_SYMBOL_PREFIX:y}=n.getGlobalObjects();for(let P=0;P<i.length;P++){const v=i[P],Z=y+(v+a),N=y+(v+c);o[v]={},o[v][a]=Z,o[v][c]=N}const d=e.EventTarget;d&&d.prototype&&n.patchEventTarget(e,n,[d&&d.prototype])}(e,i);const o=e.XMLHttpRequestEventTarget;o&&o.prototype&&i.patchEventTarget(e,i,[o.prototype])}),Zone.__load_patch("MutationObserver",(e,n,i)=>{ve("MutationObserver"),ve("WebKitMutationObserver")}),Zone.__load_patch("IntersectionObserver",(e,n,i)=>{ve("IntersectionObserver")}),Zone.__load_patch("FileReader",(e,n,i)=>{ve("FileReader")}),Zone.__load_patch("on_property",(e,n,i)=>{!function Tt(e,n){if(we&&!Ue||Zone[e.symbol("patchEvents")])return;const i=n.__Zone_ignore_on_properties;let o=[];if(je){const c=window;o=o.concat(["Document","SVGElement","Element","HTMLElement","HTMLBodyElement","HTMLMediaElement","HTMLFrameSetElement","HTMLFrameElement","HTMLIFrameElement","HTMLMarqueeElement","Worker"]);const a=function ut(){try{const e=Te.navigator.userAgent;if(-1!==e.indexOf("MSIE ")||-1!==e.indexOf("Trident/"))return!0}catch{}return!1}()?[{target:c,ignoreProperties:["error"]}]:[];tt(c,He(c),i&&i.concat(a),de(c))}o=o.concat(["XMLHttpRequest","XMLHttpRequestEventTarget","IDBIndex","IDBRequest","IDBOpenDBRequest","IDBDatabase","IDBTransaction","IDBCursor","WebSocket"]);for(let c=0;c<o.length;c++){const a=n[o[c]];a&&a.prototype&&tt(a.prototype,He(a.prototype),i)}}(i,e)}),Zone.__load_patch("customElements",(e,n,i)=>{!function yt(e,n){const{isBrowser:i,isMix:o}=n.getGlobalObjects();(i||o)&&e.customElements&&"customElements"in e&&n.patchCallbacks(n,e.customElements,"customElements","define",["connectedCallback","disconnectedCallback","adoptedCallback","attributeChangedCallback"])}(e,i)}),Zone.__load_patch("XHR",(e,n)=>{!function P(v){const m=v.XMLHttpRequest;if(!m)return;const L=m.prototype;let N=L[Ze],B=L[Ne];if(!N){const h=v.XMLHttpRequestEventTarget;if(h){const I=h.prototype;N=I[Ze],B=I[Ne]}}const H="readystatechange",J="scheduled";function q(h){const I=h.data,w=I.target;w[a]=!1,w[d]=!1;const Q=w[c];N||(N=w[Ze],B=w[Ne]),Q&&B.call(w,H,Q);const oe=w[c]=()=>{if(w.readyState===w.DONE)if(!I.aborted&&w[a]&&h.state===J){const U=w[n.__symbol__("loadfalse")];if(0!==w.status&&U&&U.length>0){const re=h.invoke;h.invoke=function(){const ee=w[n.__symbol__("loadfalse")];for(let W=0;W<ee.length;W++)ee[W]===h&&ee.splice(W,1);!I.aborted&&h.state===J&&re.call(h)},U.push(h)}else h.invoke()}else!I.aborted&&!1===w[a]&&(w[d]=!0)};return N.call(w,H,oe),w[i]||(w[i]=h),p.apply(w,I.args),w[a]=!0,h}function R(){}function _(h){const I=h.data;return I.aborted=!0,G.apply(I.target,I.args)}const K=le(L,"open",()=>function(h,I){return h[o]=0==I[2],h[y]=I[1],K.apply(h,I)}),X=A("fetchTaskAborting"),j=A("fetchTaskScheduling"),p=le(L,"send",()=>function(h,I){if(!0===n.current[j]||h[o])return p.apply(h,I);{const w={target:h,url:h[y],isPeriodic:!1,args:I,aborted:!1},Q=Me("XMLHttpRequest.send",R,w,q,_);h&&!0===h[d]&&!w.aborted&&Q.state===J&&Q.invoke()}}),G=le(L,"abort",()=>function(h,I){const w=function Z(h){return h[i]}(h);if(w&&"string"==typeof w.type){if(null==w.cancelFn||w.data&&w.data.aborted)return;w.zone.cancelTask(w)}else if(!0===n.current[X])return G.apply(h,I)})}(e);const i=A("xhrTask"),o=A("xhrSync"),c=A("xhrListener"),a=A("xhrScheduled"),y=A("xhrURL"),d=A("xhrErrorBeforeScheduled")}),Zone.__load_patch("geolocation",e=>{e.navigator&&e.navigator.geolocation&&function at(e,n){const i=e.constructor.name;for(let o=0;o<n.length;o++){const c=n[o],a=e[c];if(a){if(!Fe(ie(e,c)))continue;e[c]=(d=>{const P=function(){return d.apply(this,Le(arguments,i+"."+c))};return ue(P,d),P})(a)}}}(e.navigator.geolocation,["getCurrentPosition","watchPosition"])}),Zone.__load_patch("PromiseRejectionEvent",(e,n)=>{function i(o){return function(c){Qe(e,o).forEach(y=>{const d=e.PromiseRejectionEvent;if(d){const P=new d(o,{promise:c.promise,reason:c.rejection});y.invoke(P)}})}}e.PromiseRejectionEvent&&(n[A("unhandledPromiseRejectionHandler")]=i("unhandledrejection"),n[A("rejectionHandledHandler")]=i("rejectionhandled"))})}},ie=>{ie(ie.s=725)}]);
|
|
3
|
+
(self.webpackChunktld_translate_web_component=self.webpackChunktld_translate_web_component||[]).push([[179],{272:(yi,us,fi)=>{"use strict";var Qn={};function de(t){return"function"==typeof t}function zn(t){const e=t(i=>{Error.call(i),i.stack=(new Error).stack});return e.prototype=Object.create(Error.prototype),e.prototype.constructor=e,e}fi.r(Qn),fi.d(Qn,{BEST_MT:()=>BY,COLLECTIONS_MENU:()=>VY,FILE_TYPE_EXCEL:()=>FY,FILE_TYPE_INTERCHANGE:()=>NY,FILE_TYPE_OFFICE_OTHER:()=>PY,FILE_TYPE_OTHER:()=>LY,FILE_TYPE_PDF:()=>OY,FILE_TYPE_POWERPOINT:()=>RY,FILE_TYPE_SCANNED:()=>MY,FILE_TYPE_WEB:()=>IY,FILE_TYPE_WORD:()=>kY});const lt=zn(t=>function(e){t(this),this.message=e?`${e.length} errors occurred during unsubscription:\n${e.map((i,r)=>`${r+1}) ${i.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=e});function Oe(t,n){if(t){const e=t.indexOf(n);0<=e&&t.splice(e,1)}}class ae{constructor(n){this.initialTeardown=n,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let n;if(!this.closed){this.closed=!0;const{_parentage:e}=this;if(e)if(this._parentage=null,Array.isArray(e))for(const s of e)s.remove(this);else e.remove(this);const{initialTeardown:i}=this;if(de(i))try{i()}catch(s){n=s instanceof lt?s.errors:[s]}const{_finalizers:r}=this;if(r){this._finalizers=null;for(const s of r)try{Ie(s)}catch(a){n=n??[],a instanceof lt?n=[...n,...a.errors]:n.push(a)}}if(n)throw new lt(n)}}add(n){var e;if(n&&n!==this)if(this.closed)Ie(n);else{if(n instanceof ae){if(n.closed||n._hasParent(this))return;n._addParent(this)}(this._finalizers=null!==(e=this._finalizers)&&void 0!==e?e:[]).push(n)}}_hasParent(n){const{_parentage:e}=this;return e===n||Array.isArray(e)&&e.includes(n)}_addParent(n){const{_parentage:e}=this;this._parentage=Array.isArray(e)?(e.push(n),e):e?[e,n]:n}_removeParent(n){const{_parentage:e}=this;e===n?this._parentage=null:Array.isArray(e)&&Oe(e,n)}remove(n){const{_finalizers:e}=this;e&&Oe(e,n),n instanceof ae&&n._removeParent(this)}}ae.EMPTY=(()=>{const t=new ae;return t.closed=!0,t})();const at=ae.EMPTY;function ft(t){return t instanceof ae||t&&"closed"in t&&de(t.remove)&&de(t.add)&&de(t.unsubscribe)}function Ie(t){de(t)?t():t.unsubscribe()}const te={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},ue={setTimeout(t,n,...e){const{delegate:i}=ue;return i?.setTimeout?i.setTimeout(t,n,...e):setTimeout(t,n,...e)},clearTimeout(t){const{delegate:n}=ue;return(n?.clearTimeout||clearTimeout)(t)},delegate:void 0};function ve(t){ue.setTimeout(()=>{const{onUnhandledError:n}=te;if(!n)throw t;n(t)})}function Xe(){}const en=Zi("C",void 0,void 0);function Zi(t,n,e){return{kind:t,value:n,error:e}}let Ge=null;function ds(t){if(te.useDeprecatedSynchronousErrorHandling){const n=!Ge;if(n&&(Ge={errorThrown:!1,error:null}),t(),n){const{errorThrown:e,error:i}=Ge;if(Ge=null,e)throw i}}else t()}class fs extends ae{constructor(n){super(),this.isStopped=!1,n?(this.destination=n,ft(n)&&n.add(this)):this.destination=Xg}static create(n,e,i){return new Vs(n,e,i)}next(n){this.isStopped?Jc(function ot(t){return Zi("N",t,void 0)}(n),this):this._next(n)}error(n){this.isStopped?Jc(function et(t){return Zi("E",void 0,t)}(n),this):(this.isStopped=!0,this._error(n))}complete(){this.isStopped?Jc(en,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(n){this.destination.next(n)}_error(n){try{this.destination.error(n)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}}const ih=Function.prototype.bind;function $c(t,n){return ih.call(t,n)}class m{constructor(n){this.partialObserver=n}next(n){const{partialObserver:e}=this;if(e.next)try{e.next(n)}catch(i){tn(i)}}error(n){const{partialObserver:e}=this;if(e.error)try{e.error(n)}catch(i){tn(i)}else tn(n)}complete(){const{partialObserver:n}=this;if(n.complete)try{n.complete()}catch(e){tn(e)}}}class Vs extends fs{constructor(n,e,i){let r;if(super(),de(n)||!n)r={next:n??void 0,error:e??void 0,complete:i??void 0};else{let s;this&&te.useDeprecatedNextContext?(s=Object.create(n),s.unsubscribe=()=>this.unsubscribe(),r={next:n.next&&$c(n.next,s),error:n.error&&$c(n.error,s),complete:n.complete&&$c(n.complete,s)}):r=n}this.destination=new m(r)}}function tn(t){te.useDeprecatedSynchronousErrorHandling?function hs(t){te.useDeprecatedSynchronousErrorHandling&&Ge&&(Ge.errorThrown=!0,Ge.error=t)}(t):ve(t)}function Jc(t,n){const{onStoppedNotification:e}=te;e&&ue.setTimeout(()=>e(t,n))}const Xg={closed:!0,next:Xe,error:function qg(t){throw t},complete:Xe},Yt="function"==typeof Symbol&&Symbol.observable||"@@observable";function $i(t){return t}function rh(t){return 0===t.length?$i:1===t.length?t[0]:function(e){return t.reduce((i,r)=>r(i),e)}}let Ct=(()=>{class t{constructor(e){e&&(this._subscribe=e)}lift(e){const i=new t;return i.source=this,i.operator=e,i}subscribe(e,i,r){const s=function sh(t){return t&&t instanceof fs||function Sa(t){return t&&de(t.next)&&de(t.error)&&de(t.complete)}(t)&&ft(t)}(e)?e:new Vs(e,i,r);return ds(()=>{const{operator:a,source:o}=this;s.add(a?a.call(s,o):o?this._subscribe(s):this._trySubscribe(s))}),s}_trySubscribe(e){try{return this._subscribe(e)}catch(i){e.error(i)}}forEach(e,i){return new(i=pl(i))((r,s)=>{const a=new Vs({next:o=>{try{e(o)}catch(l){s(l),a.unsubscribe()}},error:s,complete:r});this.subscribe(a)})}_subscribe(e){var i;return null===(i=this.source)||void 0===i?void 0:i.subscribe(e)}[Yt](){return this}pipe(...e){return rh(e)(this)}toPromise(e){return new(e=pl(e))((i,r)=>{let s;this.subscribe(a=>s=a,a=>r(a),()=>i(s))})}}return t.create=n=>new t(n),t})();function pl(t){var n;return null!==(n=t??te.Promise)&&void 0!==n?n:Promise}const ah=zn(t=>function(){t(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});let pe=(()=>{class t extends Ct{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(e){const i=new gl(this,this);return i.operator=e,i}_throwIfClosed(){if(this.closed)throw new ah}next(e){ds(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(const i of this.currentObservers)i.next(e)}})}error(e){ds(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=e;const{observers:i}=this;for(;i.length;)i.shift().error(e)}})}complete(){ds(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;const{observers:e}=this;for(;e.length;)e.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var e;return(null===(e=this.observers)||void 0===e?void 0:e.length)>0}_trySubscribe(e){return this._throwIfClosed(),super._trySubscribe(e)}_subscribe(e){return this._throwIfClosed(),this._checkFinalizedStatuses(e),this._innerSubscribe(e)}_innerSubscribe(e){const{hasError:i,isStopped:r,observers:s}=this;return i||r?at:(this.currentObservers=null,s.push(e),new ae(()=>{this.currentObservers=null,Oe(s,e)}))}_checkFinalizedStatuses(e){const{hasError:i,thrownError:r,isStopped:s}=this;i?e.error(r):s&&e.complete()}asObservable(){const e=new Ct;return e.source=this,e}}return t.create=(n,e)=>new gl(n,e),t})();class gl extends pe{constructor(n,e){super(),this.destination=n,this.source=e}next(n){var e,i;null===(i=null===(e=this.destination)||void 0===e?void 0:e.next)||void 0===i||i.call(e,n)}error(n){var e,i;null===(i=null===(e=this.destination)||void 0===e?void 0:e.error)||void 0===i||i.call(e,n)}complete(){var n,e;null===(e=null===(n=this.destination)||void 0===n?void 0:n.complete)||void 0===e||e.call(n)}_subscribe(n){var e,i;return null!==(i=null===(e=this.source)||void 0===e?void 0:e.subscribe(n))&&void 0!==i?i:at}}function eu(t){return de(t?.lift)}function ln(t){return n=>{if(eu(n))return n.lift(function(e){try{return t(e,this)}catch(i){this.error(i)}});throw new TypeError("Unable to lift unknown Observable type")}}function Zt(t,n,e,i,r){return new Zg(t,n,e,i,r)}class Zg extends fs{constructor(n,e,i,r,s,a){super(n),this.onFinalize=s,this.shouldUnsubscribe=a,this._next=e?function(o){try{e(o)}catch(l){n.error(l)}}:super._next,this._error=r?function(o){try{r(o)}catch(l){n.error(l)}finally{this.unsubscribe()}}:super._error,this._complete=i?function(){try{i()}catch(o){n.error(o)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var n;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){const{closed:e}=this;super.unsubscribe(),!e&&(null===(n=this.onFinalize)||void 0===n||n.call(this))}}}function Le(t,n){return ln((e,i)=>{let r=0;e.subscribe(Zt(i,s=>{i.next(t.call(n,s,r++))}))})}function Us(t){return this instanceof Us?(this.v=t,this):new Us(t)}function ch(t,n,e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,i=e.apply(t,n||[]),s=[];return r={},a("next"),a("throw"),a("return"),r[Symbol.asyncIterator]=function(){return this},r;function a(C){i[C]&&(r[C]=function(w){return new Promise(function(k,L){s.push([C,w,k,L])>1||o(C,w)})})}function o(C,w){try{!function l(C){C.value instanceof Us?Promise.resolve(C.value.v).then(u,h):p(s[0][2],C)}(i[C](w))}catch(k){p(s[0][3],k)}}function u(C){o("next",C)}function h(C){o("throw",C)}function p(C,w){C(w),s.shift(),s.length&&o(s[0][0],s[0][1])}}function uo(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=function Da(t){var n="function"==typeof Symbol&&Symbol.iterator,e=n&&t[n],i=0;if(e)return e.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&i>=t.length&&(t=void 0),{value:t&&t[i++],done:!t}}};throw new TypeError(n?"Object is not iterable.":"Symbol.iterator is not defined.")}(t),e={},i("next"),i("throw"),i("return"),e[Symbol.asyncIterator]=function(){return this},e);function i(s){e[s]=t[s]&&function(a){return new Promise(function(o,l){!function r(s,a,o,l){Promise.resolve(l).then(function(u){s({value:u,done:o})},a)}(o,l,(a=t[s](a)).done,a.value)})}}}const ru=t=>t&&"number"==typeof t.length&&"function"!=typeof t;function zs(t){return de(t?.then)}function wa(t){return de(t[Yt])}function su(t){return Symbol.asyncIterator&&de(t?.[Symbol.asyncIterator])}function au(t){return new TypeError(`You provided ${null!==t&&"object"==typeof t?"an invalid object":`'${t}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}const Ai=function Ji(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}();function yl(t){return de(t?.[Ai])}function uh(t){return ch(this,arguments,function*(){const e=t.getReader();try{for(;;){const{value:i,done:r}=yield Us(e.read());if(r)return yield Us(void 0);yield yield Us(i)}}finally{e.releaseLock()}})}function ou(t){return de(t?.getReader)}function Hn(t){if(t instanceof Ct)return t;if(null!=t){if(wa(t))return function xa(t){return new Ct(n=>{const e=t[Yt]();if(de(e.subscribe))return e.subscribe(n);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}(t);if(ru(t))return function ka(t){return new Ct(n=>{for(let e=0;e<t.length&&!n.closed;e++)n.next(t[e]);n.complete()})}(t);if(zs(t))return function lu(t){return new Ct(n=>{t.then(e=>{n.closed||(n.next(e),n.complete())},e=>n.error(e)).then(null,ve)})}(t);if(su(t))return dh(t);if(yl(t))return function Al(t){return new Ct(n=>{for(const e of t)if(n.next(e),n.closed)return;n.complete()})}(t);if(ou(t))return function im(t){return dh(uh(t))}(t)}throw au(t)}function dh(t){return new Ct(n=>{(function rm(t,n){var e,i,r,s;return function Jg(t,n,e,i){return new(e||(e=Promise))(function(s,a){function o(h){try{u(i.next(h))}catch(p){a(p)}}function l(h){try{u(i.throw(h))}catch(p){a(p)}}function u(h){h.done?s(h.value):function r(s){return s instanceof e?s:new e(function(a){a(s)})}(h.value).then(o,l)}u((i=i.apply(t,n||[])).next())})}(this,void 0,void 0,function*(){try{for(e=uo(t);!(i=yield e.next()).done;)if(n.next(i.value),n.closed)return}catch(a){r={error:a}}finally{try{i&&!i.done&&(s=e.return)&&(yield s.call(e))}finally{if(r)throw r.error}}n.complete()})})(t,n).catch(e=>n.error(e))})}function Dr(t,n,e,i=0,r=!1){const s=n.schedule(function(){e(),r?t.add(this.schedule(null,i)):this.unsubscribe()},i);if(t.add(s),!r)return s}function xn(t,n,e=1/0){return de(n)?xn((i,r)=>Le((s,a)=>n(i,s,r,a))(Hn(t(i,r))),e):("number"==typeof n&&(e=n),ln((i,r)=>function sm(t,n,e,i,r,s,a,o){const l=[];let u=0,h=0,p=!1;const C=()=>{p&&!l.length&&!u&&n.complete()},w=L=>u<i?k(L):l.push(L),k=L=>{s&&n.next(L),u++;let U=!1;Hn(e(L,h++)).subscribe(Zt(n,z=>{r?.(z),s?w(z):n.next(z)},()=>{U=!0},void 0,()=>{if(U)try{for(u--;l.length&&u<i;){const z=l.shift();a?Dr(n,a,()=>k(z)):k(z)}C()}catch(z){n.error(z)}}))};return t.subscribe(Zt(n,w,()=>{p=!0,C()})),()=>{o?.()}}(i,r,t,e)))}function Hs(t=1/0){return xn($i,t)}const wr=new Ct(t=>t.complete());function vl(t){return t&&de(t.schedule)}function po(t){return t[t.length-1]}function go(t){return de(po(t))?t.pop():void 0}function Ia(t){return vl(po(t))?t.pop():void 0}function Ma(t,n=0){return ln((e,i)=>{e.subscribe(Zt(i,r=>Dr(i,t,()=>i.next(r),n),()=>Dr(i,t,()=>i.complete(),n),r=>Dr(i,t,()=>i.error(r),n)))})}function cu(t,n=0){return ln((e,i)=>{i.add(t.schedule(()=>e.subscribe(i),n))})}function bl(t,n){if(!t)throw new Error("Iterable cannot be null");return new Ct(e=>{Dr(e,n,()=>{const i=t[Symbol.asyncIterator]();Dr(e,n,()=>{i.next().then(r=>{r.done?e.complete():e.next(r.value)})},0,!0)})})}function vn(t,n){return n?function cm(t,n){if(null!=t){if(wa(t))return function fh(t,n){return Hn(t).pipe(cu(n),Ma(n))}(t,n);if(ru(t))return function gh(t,n){return new Ct(e=>{let i=0;return n.schedule(function(){i===t.length?e.complete():(e.next(t[i++]),e.closed||this.schedule())})})}(t,n);if(zs(t))return function ph(t,n){return Hn(t).pipe(cu(n),Ma(n))}(t,n);if(su(t))return bl(t,n);if(yl(t))return function om(t,n){return new Ct(e=>{let i;return Dr(e,n,()=>{i=t[Ai](),Dr(e,n,()=>{let r,s;try{({value:r,done:s}=i.next())}catch(a){return void e.error(a)}s?e.complete():e.next(r)},0,!0)}),()=>de(i?.return)&&i.return()})}(t,n);if(ou(t))return function lm(t,n){return bl(uh(t),n)}(t,n)}throw au(t)}(t,n):Hn(t)}function ar(...t){const n=Ia(t),e=function am(t,n){return"number"==typeof po(t)?t.pop():n}(t,1/0),i=t;return i.length?1===i.length?Hn(i[0]):Hs(e)(vn(i,n)):wr}function mo(t={}){const{connector:n=(()=>new pe),resetOnError:e=!0,resetOnComplete:i=!0,resetOnRefCountZero:r=!0}=t;return s=>{let a,o,l,u=0,h=!1,p=!1;const C=()=>{o?.unsubscribe(),o=void 0},w=()=>{C(),a=l=void 0,h=p=!1},k=()=>{const L=a;w(),L?.unsubscribe()};return ln((L,U)=>{u++,!p&&!h&&C();const z=l=l??n();U.add(()=>{u--,0===u&&!p&&!h&&(o=Cl(k,r))}),z.subscribe(U),!a&&u>0&&(a=new Vs({next:ie=>z.next(ie),error:ie=>{p=!0,C(),o=Cl(w,e,ie),z.error(ie)},complete:()=>{h=!0,C(),o=Cl(w,i),z.complete()}}),Hn(L).subscribe(a))})(s)}}function Cl(t,n,...e){if(!0===n)return void t();if(!1===n)return;const i=new Vs({next:()=>{i.unsubscribe(),t()}});return Hn(n(...e)).subscribe(i)}function yt(t){for(let n in t)if(t[n]===yt)return n;throw Error("Could not find renamed property on target object.")}function ms(t,n){for(const e in n)n.hasOwnProperty(e)&&!t.hasOwnProperty(e)&&(t[e]=n[e])}function qt(t){if("string"==typeof t)return t;if(Array.isArray(t))return"["+t.map(qt).join(", ")+"]";if(null==t)return""+t;if(t.overriddenName)return`${t.overriddenName}`;if(t.name)return`${t.name}`;const n=t.toString();if(null==n)return""+n;const e=n.indexOf("\n");return-1===e?n:n.substring(0,e)}function uu(t,n){return null==t||""===t?null===n?"":n:null==n||""===n?t:t+" "+n}const um=yt({__forward_ref__:yt});function Ft(t){return t.__forward_ref__=Ft,t.toString=function(){return qt(this())},t}function Ze(t){return Ra(t)?t():t}function Ra(t){return"function"==typeof t&&t.hasOwnProperty(um)&&t.__forward_ref__===Ft}class ne extends Error{constructor(n,e){super(function Tl(t,n){return`NG0${Math.abs(t)}${n?": "+n.trim():""}`}(n,e)),this.code=n}}function Ue(t){return"string"==typeof t?t:null==t?"":String(t)}function xr(t,n){throw new ne(-201,!1)}function Pi(t,n){null==t&&function Xt(t,n,e,i){throw new Error(`ASSERTION ERROR: ${t}`+(null==i?"":` [Expected=> ${e} ${i} ${n} <=Actual]`))}(n,t,null,"!=")}function q(t){return{token:t.token,providedIn:t.providedIn||null,factory:t.factory,value:void 0}}function Te(t){return{providers:t.providers||[],imports:t.imports||[]}}function Oa(t){return Sl(t,wl)||Sl(t,Th)}function Sl(t,n){return t.hasOwnProperty(n)?t[n]:null}function Dl(t){return t&&(t.hasOwnProperty(du)||t.hasOwnProperty(yo))?t[du]:null}const wl=yt({\u0275prov:yt}),du=yt({\u0275inj:yt}),Th=yt({ngInjectableDef:yt}),yo=yt({ngInjectorDef:yt});var We=(()=>((We=We||{})[We.Default=0]="Default",We[We.Host=1]="Host",We[We.Self=2]="Self",We[We.SkipSelf=4]="SkipSelf",We[We.Optional=8]="Optional",We))();let Ao;function er(t){const n=Ao;return Ao=t,n}function Eh(t,n,e){const i=Oa(t);return i&&"root"==i.providedIn?void 0===i.value?i.value=i.factory():i.value:e&We.Optional?null:void 0!==n?n:void xr(qt(t))}function d(t){return{toString:t}.toString()}var f=(()=>((f=f||{})[f.OnPush=0]="OnPush",f[f.Default=1]="Default",f))(),y=(()=>{return(t=y||(y={}))[t.Emulated=0]="Emulated",t[t.None=2]="None",t[t.ShadowDom=3]="ShadowDom",y;var t})();const T=(()=>typeof globalThis<"u"&&globalThis||typeof global<"u"&&global||typeof window<"u"&&window||typeof self<"u"&&typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&self)(),B={},H=[],$=yt({\u0275cmp:yt}),Y=yt({\u0275dir:yt}),oe=yt({\u0275pipe:yt}),tt=yt({\u0275mod:yt}),pt=yt({\u0275fac:yt}),ut=yt({__NG_ELEMENT_ID__:yt});let ri=0;function ce(t){return d(()=>{const e=!0===t.standalone,i={},r={type:t.type,providersResolver:null,decls:t.decls,vars:t.vars,factory:null,template:t.template||null,consts:t.consts||null,ngContentSelectors:t.ngContentSelectors,hostBindings:t.hostBindings||null,hostVars:t.hostVars||0,hostAttrs:t.hostAttrs||null,contentQueries:t.contentQueries||null,declaredInputs:i,inputs:null,outputs:null,exportAs:t.exportAs||null,onPush:t.changeDetection===f.OnPush,directiveDefs:null,pipeDefs:null,standalone:e,dependencies:e&&t.dependencies||null,getStandaloneInjector:null,selectors:t.selectors||H,viewQuery:t.viewQuery||null,features:t.features||null,data:t.data||{},encapsulation:t.encapsulation||y.Emulated,id:"c"+ri++,styles:t.styles||H,_:null,setInput:null,schemas:t.schemas||null,tView:null},s=t.dependencies,a=t.features;return r.inputs=mn(t.inputs,i),r.outputs=mn(t.outputs),a&&a.forEach(o=>o(r)),r.directiveDefs=s?()=>("function"==typeof s?s():s).map(or).filter(Et):null,r.pipeDefs=s?()=>("function"==typeof s?s():s).map(hn).filter(Et):null,r})}function or(t){return Tt(t)||Wn(t)}function Et(t){return null!==t}function ge(t){return d(()=>({type:t.type,bootstrap:t.bootstrap||H,declarations:t.declarations||H,imports:t.imports||H,exports:t.exports||H,transitiveCompileScopes:null,schemas:t.schemas||null,id:t.id||null}))}function mn(t,n){if(null==t)return B;const e={};for(const i in t)if(t.hasOwnProperty(i)){let r=t[i],s=r;Array.isArray(r)&&(s=r[1],r=r[0]),e[r]=i,n&&(n[r]=s)}return e}const G=ce;function Pn(t){return{type:t.type,name:t.name,factory:null,pure:!1!==t.pure,standalone:!0===t.standalone,onDestroy:t.type.prototype.ngOnDestroy||null}}function Tt(t){return t[$]||null}function Wn(t){return t[Y]||null}function hn(t){return t[oe]||null}function Nn(t,n){const e=t[tt]||null;if(!e&&!0===n)throw new Error(`Type ${qt(t)} does not have '\u0275mod' property.`);return e}const N=10;function K(t){return Array.isArray(t)&&"object"==typeof t[1]}function Q(t){return Array.isArray(t)&&!0===t[1]}function he(t){return 0!=(8&t.flags)}function De(t){return 2==(2&t.flags)}function Pe(t){return 1==(1&t.flags)}function fe(t){return null!==t.template}function St(t){return 0!=(256&t[2])}function Co(t,n){return t.hasOwnProperty(pt)?t[pt]:null}class wC{constructor(n,e,i){this.previousValue=n,this.currentValue=e,this.firstChange=i}isFirstChange(){return this.firstChange}}function $n(){return xC}function xC(t){return t.type.prototype.ngOnChanges&&(t.setInput=TL),CL}function CL(){const t=IC(this),n=t?.current;if(n){const e=t.previous;if(e===B)t.previous=n;else for(let i in n)e[i]=n[i];t.current=null,this.ngOnChanges(n)}}function TL(t,n,e,i){const r=IC(t)||function EL(t,n){return t[kC]=n}(t,{previous:B,current:null}),s=r.current||(r.current={}),a=r.previous,o=this.declaredInputs[e],l=a[o];s[o]=new wC(l&&l.currentValue,n,a===B),t[i]=n}$n.ngInherit=!0;const kC="__ngSimpleChanges__";function IC(t){return t[kC]||null}function Jn(t){for(;Array.isArray(t);)t=t[0];return t}function Sh(t,n){return Jn(n[t])}function cr(t,n){return Jn(n[t.index])}function Cm(t,n){return t.data[n]}function Ml(t,n){return t[n]}function ur(t,n){const e=n[t];return K(e)?e:e[0]}function Dh(t){return 64==(64&t[2])}function Na(t,n){return null==n?null:t[n]}function MC(t){t[18]=0}function Tm(t,n){t[5]+=n;let e=t,i=t[3];for(;null!==i&&(1===n&&1===e[5]||-1===n&&0===e[5]);)i[5]+=n,e=i,i=i[3]}const ht={lFrame:jC(null),bindingsEnabled:!0};function OC(){return ht.bindingsEnabled}function se(){return ht.lFrame.lView}function jt(){return ht.lFrame.tView}function me(t){return ht.lFrame.contextLView=t,t[8]}function _e(t){return ht.lFrame.contextLView=null,t}function si(){let t=LC();for(;null!==t&&64===t.type;)t=t.parent;return t}function LC(){return ht.lFrame.currentTNode}function _s(t,n){const e=ht.lFrame;e.currentTNode=t,e.isParent=n}function Em(){return ht.lFrame.isParent}function Sm(){ht.lFrame.isParent=!1}function Vi(){const t=ht.lFrame;let n=t.bindingRootIndex;return-1===n&&(n=t.bindingRootIndex=t.tView.bindingStartIndex),n}function Rl(){return ht.lFrame.bindingIndex++}function qs(t){const n=ht.lFrame,e=n.bindingIndex;return n.bindingIndex=n.bindingIndex+t,e}function VL(t,n){const e=ht.lFrame;e.bindingIndex=e.bindingRootIndex=t,Dm(n)}function Dm(t){ht.lFrame.currentDirectiveIndex=t}function wm(t){const n=ht.lFrame.currentDirectiveIndex;return-1===n?null:t[n]}function BC(){return ht.lFrame.currentQueryIndex}function xm(t){ht.lFrame.currentQueryIndex=t}function jL(t){const n=t[1];return 2===n.type?n.declTNode:1===n.type?t[6]:null}function VC(t,n,e){if(e&We.SkipSelf){let r=n,s=t;for(;!(r=r.parent,null!==r||e&We.Host||(r=jL(s),null===r||(s=s[15],10&r.type))););if(null===r)return!1;n=r,t=s}const i=ht.lFrame=UC();return i.currentTNode=n,i.lView=t,!0}function km(t){const n=UC(),e=t[1];ht.lFrame=n,n.currentTNode=e.firstChild,n.lView=t,n.tView=e,n.contextLView=t,n.bindingIndex=e.bindingStartIndex,n.inI18n=!1}function UC(){const t=ht.lFrame,n=null===t?null:t.child;return null===n?jC(t):n}function jC(t){const n={currentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:-1,contextLView:null,elementDepthCount:0,currentNamespace:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:t,child:null,inI18n:!1};return null!==t&&(t.child=n),n}function zC(){const t=ht.lFrame;return ht.lFrame=t.parent,t.currentTNode=null,t.lView=null,t}const HC=zC;function Im(){const t=zC();t.isParent=!0,t.tView=null,t.selectedIndex=-1,t.contextLView=null,t.elementDepthCount=0,t.currentDirectiveIndex=-1,t.currentNamespace=null,t.bindingRootIndex=-1,t.bindingIndex=-1,t.currentQueryIndex=0}function Ui(){return ht.lFrame.selectedIndex}function Fa(t){ht.lFrame.selectedIndex=t}function kn(){const t=ht.lFrame;return Cm(t.tView,t.selectedIndex)}function To(){ht.lFrame.currentNamespace="svg"}function wh(t,n){for(let e=n.directiveStart,i=n.directiveEnd;e<i;e++){const s=t.data[e].type.prototype,{ngAfterContentInit:a,ngAfterContentChecked:o,ngAfterViewInit:l,ngAfterViewChecked:u,ngOnDestroy:h}=s;a&&(t.contentHooks||(t.contentHooks=[])).push(-e,a),o&&((t.contentHooks||(t.contentHooks=[])).push(e,o),(t.contentCheckHooks||(t.contentCheckHooks=[])).push(e,o)),l&&(t.viewHooks||(t.viewHooks=[])).push(-e,l),u&&((t.viewHooks||(t.viewHooks=[])).push(e,u),(t.viewCheckHooks||(t.viewCheckHooks=[])).push(e,u)),null!=h&&(t.destroyHooks||(t.destroyHooks=[])).push(e,h)}}function xh(t,n,e){GC(t,n,3,e)}function kh(t,n,e,i){(3&t[2])===e&&GC(t,n,e,i)}function Rm(t,n){let e=t[2];(3&e)===n&&(e&=2047,e+=1,t[2]=e)}function GC(t,n,e,i){const s=i??-1,a=n.length-1;let o=0;for(let l=void 0!==i?65535&t[18]:0;l<a;l++)if("number"==typeof n[l+1]){if(o=n[l],null!=i&&o>=i)break}else n[l]<0&&(t[18]+=65536),(o<s||-1==s)&&(qL(t,e,n,l),t[18]=(4294901760&t[18])+l+2),l++}function qL(t,n,e,i){const r=e[i]<0,s=e[i+1],o=t[r?-e[i]:e[i]];if(r){if(t[2]>>11<t[18]>>16&&(3&t[2])===n){t[2]+=2048;try{s.call(o)}finally{}}}else try{s.call(o)}finally{}}class gu{constructor(n,e,i){this.factory=n,this.resolving=!1,this.canSeeViewProviders=e,this.injectImpl=i}}function Ih(t,n,e){let i=0;for(;i<e.length;){const r=e[i];if("number"==typeof r){if(0!==r)break;i++;const s=e[i++],a=e[i++],o=e[i++];t.setAttribute(n,a,o,s)}else{const s=r,a=e[++i];KC(s)?t.setProperty(n,s,a):t.setAttribute(n,s,a),i++}}return i}function WC(t){return 3===t||4===t||6===t}function KC(t){return 64===t.charCodeAt(0)}function Mh(t,n){if(null!==n&&0!==n.length)if(null===t||0===t.length)t=n.slice();else{let e=-1;for(let i=0;i<n.length;i++){const r=n[i];"number"==typeof r?e=r:0===e||YC(t,e,r,null,-1===e||2===e?n[++i]:null)}}return t}function YC(t,n,e,i,r){let s=0,a=t.length;if(-1===n)a=-1;else for(;s<t.length;){const o=t[s++];if("number"==typeof o){if(o===n){a=-1;break}if(o>n){a=s-1;break}}}for(;s<t.length;){const o=t[s];if("number"==typeof o)break;if(o===e){if(null===i)return void(null!==r&&(t[s+1]=r));if(i===t[s+1])return void(t[s+2]=r)}s++,null!==i&&s++,null!==r&&s++}-1!==a&&(t.splice(a,0,n),s=a+1),t.splice(s++,0,e),null!==i&&t.splice(s++,0,i),null!==r&&t.splice(s++,0,r)}function qC(t){return-1!==t}function Ol(t){return 32767&t}function Ll(t,n){let e=function JL(t){return t>>16}(t),i=n;for(;e>0;)i=i[15],e--;return i}let Lm=!0;function Rh(t){const n=Lm;return Lm=t,n}let e1=0;const ys={};function _u(t,n){const e=Nm(t,n);if(-1!==e)return e;const i=n[1];i.firstCreatePass&&(t.injectorIndex=n.length,Pm(i.data,t),Pm(n,null),Pm(i.blueprint,null));const r=Oh(t,n),s=t.injectorIndex;if(qC(r)){const a=Ol(r),o=Ll(r,n),l=o[1].data;for(let u=0;u<8;u++)n[s+u]=o[a+u]|l[a+u]}return n[s+8]=r,s}function Pm(t,n){t.push(0,0,0,0,0,0,0,0,n)}function Nm(t,n){return-1===t.injectorIndex||t.parent&&t.parent.injectorIndex===t.injectorIndex||null===n[t.injectorIndex+8]?-1:t.injectorIndex}function Oh(t,n){if(t.parent&&-1!==t.parent.injectorIndex)return t.parent.injectorIndex;let e=0,i=null,r=n;for(;null!==r;){if(i=iT(r),null===i)return-1;if(e++,r=r[15],-1!==i.injectorIndex)return i.injectorIndex|e<<16}return-1}function Lh(t,n,e){!function t1(t,n,e){let i;"string"==typeof e?i=e.charCodeAt(0)||0:e.hasOwnProperty(ut)&&(i=e[ut]),null==i&&(i=e[ut]=e1++);const r=255&i;n.data[t+(r>>5)]|=1<<r}(t,n,e)}function ZC(t,n,e){if(e&We.Optional||void 0!==t)return t;xr()}function $C(t,n,e,i){if(e&We.Optional&&void 0===i&&(i=null),0==(e&(We.Self|We.Host))){const r=t[9],s=er(void 0);try{return r?r.get(n,i,e&We.Optional):Eh(n,i,e&We.Optional)}finally{er(s)}}return ZC(i,0,e)}function JC(t,n,e,i=We.Default,r){if(null!==t){if(1024&n[2]){const a=function o1(t,n,e,i,r){let s=t,a=n;for(;null!==s&&null!==a&&1024&a[2]&&!(256&a[2]);){const o=eT(s,a,e,i|We.Self,ys);if(o!==ys)return o;let l=s.parent;if(!l){const u=a[21];if(u){const h=u.get(e,ys,i);if(h!==ys)return h}l=iT(a),a=a[15]}s=l}return r}(t,n,e,i,ys);if(a!==ys)return a}const s=eT(t,n,e,i,ys);if(s!==ys)return s}return $C(n,e,i,r)}function eT(t,n,e,i,r){const s=function s1(t){if("string"==typeof t)return t.charCodeAt(0)||0;const n=t.hasOwnProperty(ut)?t[ut]:void 0;return"number"==typeof n?n>=0?255&n:a1:n}(e);if("function"==typeof s){if(!VC(n,t,i))return i&We.Host?ZC(r,0,i):$C(n,e,i,r);try{const a=s(i);if(null!=a||i&We.Optional)return a;xr()}finally{HC()}}else if("number"==typeof s){let a=null,o=Nm(t,n),l=-1,u=i&We.Host?n[16][6]:null;for((-1===o||i&We.SkipSelf)&&(l=-1===o?Oh(t,n):n[o+8],-1!==l&&nT(i,!1)?(a=n[1],o=Ol(l),n=Ll(l,n)):o=-1);-1!==o;){const h=n[1];if(tT(s,o,h.data)){const p=r1(o,n,e,a,i,u);if(p!==ys)return p}l=n[o+8],-1!==l&&nT(i,n[1].data[o+8]===u)&&tT(s,o,n)?(a=h,o=Ol(l),n=Ll(l,n)):o=-1}}return r}function r1(t,n,e,i,r,s){const a=n[1],o=a.data[t+8],h=Ph(o,a,e,null==i?De(o)&&Lm:i!=a&&0!=(3&o.type),r&We.Host&&s===o);return null!==h?yu(n,a,h,o):ys}function Ph(t,n,e,i,r){const s=t.providerIndexes,a=n.data,o=1048575&s,l=t.directiveStart,h=s>>20,C=r?o+h:t.directiveEnd;for(let w=i?o:o+h;w<C;w++){const k=a[w];if(w<l&&e===k||w>=l&&k.type===e)return w}if(r){const w=a[l];if(w&&fe(w)&&w.type===e)return l}return null}function yu(t,n,e,i){let r=t[e];const s=n.data;if(function XL(t){return t instanceof gu}(r)){const a=r;a.resolving&&function _o(t,n){const e=n?`. Dependency path: ${n.join(" > ")} > ${t}`:"";throw new ne(-200,`Circular dependency in DI detected for ${t}${e}`)}(function Vt(t){return"function"==typeof t?t.name||t.toString():"object"==typeof t&&null!=t&&"function"==typeof t.type?t.type.name||t.type.toString():Ue(t)}(s[e]));const o=Rh(a.canSeeViewProviders);a.resolving=!0;const l=a.injectImpl?er(a.injectImpl):null;VC(t,i,We.Default);try{r=t[e]=a.factory(void 0,s,t,i),n.firstCreatePass&&e>=i.directiveStart&&function YL(t,n,e){const{ngOnChanges:i,ngOnInit:r,ngDoCheck:s}=n.type.prototype;if(i){const a=xC(n);(e.preOrderHooks||(e.preOrderHooks=[])).push(t,a),(e.preOrderCheckHooks||(e.preOrderCheckHooks=[])).push(t,a)}r&&(e.preOrderHooks||(e.preOrderHooks=[])).push(0-t,r),s&&((e.preOrderHooks||(e.preOrderHooks=[])).push(t,s),(e.preOrderCheckHooks||(e.preOrderCheckHooks=[])).push(t,s))}(e,s[e],n)}finally{null!==l&&er(l),Rh(o),a.resolving=!1,HC()}}return r}function tT(t,n,e){return!!(e[n+(t>>5)]&1<<t)}function nT(t,n){return!(t&We.Self||t&We.Host&&n)}class Pl{constructor(n,e){this._tNode=n,this._lView=e}get(n,e,i){return JC(this._tNode,this._lView,n,i,e)}}function a1(){return new Pl(si(),se())}function Ee(t){return d(()=>{const n=t.prototype.constructor,e=n[pt]||Fm(n),i=Object.prototype;let r=Object.getPrototypeOf(t.prototype).constructor;for(;r&&r!==i;){const s=r[pt]||Fm(r);if(s&&s!==e)return s;r=Object.getPrototypeOf(r)}return s=>new s})}function Fm(t){return Ra(t)?()=>{const n=Fm(Ze(t));return n&&n()}:Co(t)}function iT(t){const n=t[1],e=n.type;return 2===e?n.declTNode:1===e?t[6]:null}function As(t){return function n1(t,n){if("class"===n)return t.classes;if("style"===n)return t.styles;const e=t.attrs;if(e){const i=e.length;let r=0;for(;r<i;){const s=e[r];if(WC(s))break;if(0===s)r+=2;else if("number"==typeof s)for(r++;r<i&&"string"==typeof e[r];)r++;else{if(s===n)return e[r+1];r+=2}}}return null}(si(),t)}const Fl="__parameters__";function Vl(t,n,e){return d(()=>{const i=function Bm(t){return function(...e){if(t){const i=t(...e);for(const r in i)this[r]=i[r]}}}(n);function r(...s){if(this instanceof r)return i.apply(this,s),this;const a=new r(...s);return o.annotation=a,o;function o(l,u,h){const p=l.hasOwnProperty(Fl)?l[Fl]:Object.defineProperty(l,Fl,{value:[]})[Fl];for(;p.length<=h;)p.push(null);return(p[h]=p[h]||[]).push(a),l}}return e&&(r.prototype=Object.create(e.prototype)),r.prototype.ngMetadataName=t,r.annotationCls=r,r})}class Z{constructor(n,e){this._desc=n,this.ngMetadataName="InjectionToken",this.\u0275prov=void 0,"number"==typeof e?this.__NG_ELEMENT_ID__=e:void 0!==e&&(this.\u0275prov=q({token:this,providedIn:e.providedIn||"root",factory:e.factory}))}get multi(){return this}toString(){return`InjectionToken ${this._desc}`}}function dr(t,n){void 0===n&&(n=t);for(let e=0;e<t.length;e++){let i=t[e];Array.isArray(i)?(n===t&&(n=t.slice(0,e)),dr(i,n)):n!==t&&n.push(i)}return n}function Xs(t,n){t.forEach(e=>Array.isArray(e)?Xs(e,n):n(e))}function sT(t,n,e){n>=t.length?t.push(e):t.splice(n,0,e)}function Nh(t,n){return n>=t.length-1?t.pop():t.splice(n,1)[0]}function bu(t,n){const e=[];for(let i=0;i<t;i++)e.push(n);return e}function hr(t,n,e){let i=Ul(t,n);return i>=0?t[1|i]=e:(i=~i,function d1(t,n,e,i){let r=t.length;if(r==n)t.push(e,i);else if(1===r)t.push(i,t[0]),t[0]=e;else{for(r--,t.push(t[r-1],t[r]);r>n;)t[r]=t[r-2],r--;t[n]=e,t[n+1]=i}}(t,i,n,e)),i}function Um(t,n){const e=Ul(t,n);if(e>=0)return t[1|e]}function Ul(t,n){return function lT(t,n,e){let i=0,r=t.length>>e;for(;r!==i;){const s=i+(r-i>>1),a=t[s<<e];if(n===a)return s<<e;a>n?r=s:i=s+1}return~(r<<e)}(t,n,1)}const Cu={},zm="__NG_DI_FLAG__",Bh="ngTempTokenPath",A1=/\n/gm,cT="__source";let Tu;function jl(t){const n=Tu;return Tu=t,n}function b1(t,n=We.Default){if(void 0===Tu)throw new ne(-203,!1);return null===Tu?Eh(t,void 0,n):Tu.get(t,n&We.Optional?null:void 0,n)}function R(t,n=We.Default){return(function _m(){return Ao}()||b1)(Ze(t),n)}function nn(t,n=We.Default){return"number"!=typeof n&&(n=0|(n.optional&&8)|(n.host&&1)|(n.self&&2)|(n.skipSelf&&4)),R(t,n)}function Hm(t){const n=[];for(let e=0;e<t.length;e++){const i=Ze(t[e]);if(Array.isArray(i)){if(0===i.length)throw new ne(900,!1);let r,s=We.Default;for(let a=0;a<i.length;a++){const o=i[a],l=C1(o);"number"==typeof l?-1===l?r=o.token:s|=l:r=o}n.push(R(r,s))}else n.push(R(i))}return n}function Eu(t,n){return t[zm]=n,t.prototype[zm]=n,t}function C1(t){return t[zm]}const fr=Eu(Vl("Optional"),8),Xr=Eu(Vl("SkipSelf"),4);var tr=(()=>((tr=tr||{})[tr.Important=1]="Important",tr[tr.DashCase=2]="DashCase",tr))();const qm=new Map;let U1=0;const Qm="__ngContext__";function wi(t,n){K(n)?(t[Qm]=n[20],function z1(t){qm.set(t[20],t)}(n)):t[Qm]=n}function $m(t,n){return undefined(t,n)}function xu(t){const n=t[3];return Q(n)?n[3]:n}function Jm(t){return IT(t[13])}function e_(t){return IT(t[4])}function IT(t){for(;null!==t&&!Q(t);)t=t[4];return t}function Hl(t,n,e,i,r){if(null!=i){let s,a=!1;Q(i)?s=i:K(i)&&(a=!0,i=i[0]);const o=Jn(i);0===t&&null!==e?null==r?NT(n,e,o):Eo(n,e,o,r||null,!0):1===t&&null!==e?Eo(n,e,o,r||null,!0):2===t?function o_(t,n,e){const i=jh(t,n);i&&function uP(t,n,e,i){t.removeChild(n,e,i)}(t,i,n,e)}(n,o,a):3===t&&n.destroyNode(o),null!=s&&function fP(t,n,e,i,r){const s=e[7];s!==Jn(e)&&Hl(n,t,i,s,r);for(let o=N;o<e.length;o++){const l=e[o];ku(l[1],l,t,n,i,s)}}(n,t,s,e,r)}}function n_(t,n,e){return t.createElement(n,e)}function RT(t,n){const e=t[9],i=e.indexOf(n),r=n[3];512&n[2]&&(n[2]&=-513,Tm(r,-1)),e.splice(i,1)}function i_(t,n){if(t.length<=N)return;const e=N+n,i=t[e];if(i){const r=i[17];null!==r&&r!==t&&RT(r,i),n>0&&(t[e-1][4]=i[4]);const s=Nh(t,N+n);!function nP(t,n){ku(t,n,n[11],2,null,null),n[0]=null,n[6]=null}(i[1],i);const a=s[19];null!==a&&a.detachView(s[1]),i[3]=null,i[4]=null,i[2]&=-65}return i}function OT(t,n){if(!(128&n[2])){const e=n[11];e.destroyNode&&ku(t,n,e,3,null,null),function sP(t){let n=t[13];if(!n)return r_(t[1],t);for(;n;){let e=null;if(K(n))e=n[13];else{const i=n[N];i&&(e=i)}if(!e){for(;n&&!n[4]&&n!==t;)K(n)&&r_(n[1],n),n=n[3];null===n&&(n=t),K(n)&&r_(n[1],n),e=n&&n[4]}n=e}}(n)}}function r_(t,n){if(!(128&n[2])){n[2]&=-65,n[2]|=128,function cP(t,n){let e;if(null!=t&&null!=(e=t.destroyHooks))for(let i=0;i<e.length;i+=2){const r=n[e[i]];if(!(r instanceof gu)){const s=e[i+1];if(Array.isArray(s))for(let a=0;a<s.length;a+=2){const o=r[s[a]],l=s[a+1];try{l.call(o)}finally{}}else try{s.call(r)}finally{}}}}(t,n),function lP(t,n){const e=t.cleanup,i=n[7];let r=-1;if(null!==e)for(let s=0;s<e.length-1;s+=2)if("string"==typeof e[s]){const a=e[s+1],o="function"==typeof a?a(n):Jn(n[a]),l=i[r=e[s+2]],u=e[s+3];"boolean"==typeof u?o.removeEventListener(e[s],l,u):u>=0?i[r=u]():i[r=-u].unsubscribe(),s+=2}else{const a=i[r=e[s+1]];e[s].call(a)}if(null!==i){for(let s=r+1;s<i.length;s++)(0,i[s])();n[7]=null}}(t,n),1===n[1].type&&n[11].destroy();const e=n[17];if(null!==e&&Q(n[3])){e!==n[3]&&RT(e,n);const i=n[19];null!==i&&i.detachView(t)}!function H1(t){qm.delete(t[20])}(n)}}function LT(t,n,e){return function PT(t,n,e){let i=n;for(;null!==i&&40&i.type;)i=(n=i).parent;if(null===i)return e[0];if(2&i.flags){const r=t.data[i.directiveStart].encapsulation;if(r===y.None||r===y.Emulated)return null}return cr(i,e)}(t,n.parent,e)}function Eo(t,n,e,i,r){t.insertBefore(n,e,i,r)}function NT(t,n,e){t.appendChild(n,e)}function FT(t,n,e,i,r){null!==i?Eo(t,n,e,i,r):NT(t,n,e)}function jh(t,n){return t.parentNode(n)}function BT(t,n,e){return UT(t,n,e)}let Gh,d_,Wh,UT=function VT(t,n,e){return 40&t.type?cr(t,e):null};function zh(t,n,e,i){const r=LT(t,i,n),s=n[11],o=BT(i.parent||n[6],i,n);if(null!=r)if(Array.isArray(e))for(let l=0;l<e.length;l++)FT(s,r,e[l],o,!1);else FT(s,r,e,o,!1)}function Hh(t,n){if(null!==n){const e=n.type;if(3&e)return cr(n,t);if(4&e)return a_(-1,t[n.index]);if(8&e){const i=n.child;if(null!==i)return Hh(t,i);{const r=t[n.index];return Q(r)?a_(-1,r):Jn(r)}}if(32&e)return $m(n,t)()||Jn(t[n.index]);{const i=zT(t,n);return null!==i?Array.isArray(i)?i[0]:Hh(xu(t[16]),i):Hh(t,n.next)}}return null}function zT(t,n){return null!==n?t[16][6].projection[n.projection]:null}function a_(t,n){const e=N+t+1;if(e<n.length){const i=n[e],r=i[1].firstChild;if(null!==r)return Hh(i,r)}return n[7]}function l_(t,n,e,i,r,s,a){for(;null!=e;){const o=i[e.index],l=e.type;if(a&&0===n&&(o&&wi(Jn(o),i),e.flags|=4),64!=(64&e.flags))if(8&l)l_(t,n,e.child,i,r,s,!1),Hl(n,t,r,o,s);else if(32&l){const u=$m(e,i);let h;for(;h=u();)Hl(n,t,r,h,s);Hl(n,t,r,o,s)}else 16&l?HT(t,n,i,e,r,s):Hl(n,t,r,o,s);e=a?e.projectionNext:e.next}}function ku(t,n,e,i,r,s){l_(e,i,t.firstChild,n,r,s,!1)}function HT(t,n,e,i,r,s){const a=e[16],l=a[6].projection[i.projection];if(Array.isArray(l))for(let u=0;u<l.length;u++)Hl(n,t,r,l[u],s);else l_(t,n,l,a[3],r,s,!0)}function GT(t,n,e){t.setAttribute(n,"style",e)}function c_(t,n,e){""===e?t.removeAttribute(n,"class"):t.setAttribute(n,"class",e)}function So(t){return function u_(){if(void 0===Gh&&(Gh=null,T.trustedTypes))try{Gh=T.trustedTypes.createPolicy("angular",{createHTML:t=>t,createScript:t=>t,createScriptURL:t=>t})}catch{}return Gh}()?.createHTML(t)||t}function KT(t){return function h_(){if(void 0===Wh&&(Wh=null,T.trustedTypes))try{Wh=T.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:t=>t,createScript:t=>t,createScriptURL:t=>t})}catch{}return Wh}()?.createHTML(t)||t}class Do{constructor(n){this.changingThisBreaksApplicationSecurity=n}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see https://g.co/ng/security#xss)`}}class AP extends Do{getTypeName(){return"HTML"}}class vP extends Do{getTypeName(){return"Style"}}class bP extends Do{getTypeName(){return"Script"}}class CP extends Do{getTypeName(){return"URL"}}class TP extends Do{getTypeName(){return"ResourceURL"}}function pr(t){return t instanceof Do?t.changingThisBreaksApplicationSecurity:t}function vs(t,n){const e=function EP(t){return t instanceof Do&&t.getTypeName()||null}(t);if(null!=e&&e!==n){if("ResourceURL"===e&&"URL"===n)return!0;throw new Error(`Required a safe ${n}, got a ${e} (see https://g.co/ng/security#xss)`)}return e===n}class IP{constructor(n){this.inertDocumentHelper=n}getInertBodyElement(n){n="<body><remove></remove>"+n;try{const e=(new window.DOMParser).parseFromString(So(n),"text/html").body;return null===e?this.inertDocumentHelper.getInertBodyElement(n):(e.removeChild(e.firstChild),e)}catch{return null}}}class MP{constructor(n){if(this.defaultDoc=n,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert"),null==this.inertDocument.body){const e=this.inertDocument.createElement("html");this.inertDocument.appendChild(e);const i=this.inertDocument.createElement("body");e.appendChild(i)}}getInertBodyElement(n){const e=this.inertDocument.createElement("template");if("content"in e)return e.innerHTML=So(n),e;const i=this.inertDocument.createElement("body");return i.innerHTML=So(n),this.defaultDoc.documentMode&&this.stripCustomNsAttrs(i),i}stripCustomNsAttrs(n){const e=n.attributes;for(let r=e.length-1;0<r;r--){const a=e.item(r).name;("xmlns:ns1"===a||0===a.indexOf("ns1:"))&&n.removeAttribute(a)}let i=n.firstChild;for(;i;)i.nodeType===Node.ELEMENT_NODE&&this.stripCustomNsAttrs(i),i=i.nextSibling}}const OP=/^(?:(?:https?|mailto|data|ftp|tel|file|sms):|[^&:/?#]*(?:[/?#]|$))/gi;function Kh(t){return(t=String(t)).match(OP)?t:"unsafe:"+t}function Qs(t){const n={};for(const e of t.split(","))n[e]=!0;return n}function Iu(...t){const n={};for(const e of t)for(const i in e)e.hasOwnProperty(i)&&(n[i]=!0);return n}const QT=Qs("area,br,col,hr,img,wbr"),ZT=Qs("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),$T=Qs("rp,rt"),f_=Iu(QT,Iu(ZT,Qs("address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul")),Iu($T,Qs("a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video")),Iu($T,ZT)),p_=Qs("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),JT=Iu(p_,Qs("abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,srcset,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),Qs("aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext")),LP=Qs("script,style,template");class PP{constructor(){this.sanitizedSomething=!1,this.buf=[]}sanitizeChildren(n){let e=n.firstChild,i=!0;for(;e;)if(e.nodeType===Node.ELEMENT_NODE?i=this.startElement(e):e.nodeType===Node.TEXT_NODE?this.chars(e.nodeValue):this.sanitizedSomething=!0,i&&e.firstChild)e=e.firstChild;else for(;e;){e.nodeType===Node.ELEMENT_NODE&&this.endElement(e);let r=this.checkClobberedElement(e,e.nextSibling);if(r){e=r;break}e=this.checkClobberedElement(e,e.parentNode)}return this.buf.join("")}startElement(n){const e=n.nodeName.toLowerCase();if(!f_.hasOwnProperty(e))return this.sanitizedSomething=!0,!LP.hasOwnProperty(e);this.buf.push("<"),this.buf.push(e);const i=n.attributes;for(let r=0;r<i.length;r++){const s=i.item(r),a=s.name,o=a.toLowerCase();if(!JT.hasOwnProperty(o)){this.sanitizedSomething=!0;continue}let l=s.value;p_[o]&&(l=Kh(l)),this.buf.push(" ",a,'="',eE(l),'"')}return this.buf.push(">"),!0}endElement(n){const e=n.nodeName.toLowerCase();f_.hasOwnProperty(e)&&!QT.hasOwnProperty(e)&&(this.buf.push("</"),this.buf.push(e),this.buf.push(">"))}chars(n){this.buf.push(eE(n))}checkClobberedElement(n,e){if(e&&(n.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(`Failed to sanitize html because the element is clobbered: ${n.outerHTML}`);return e}}const NP=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,FP=/([^\#-~ |!])/g;function eE(t){return t.replace(/&/g,"&").replace(NP,function(n){return"&#"+(1024*(n.charCodeAt(0)-55296)+(n.charCodeAt(1)-56320)+65536)+";"}).replace(FP,function(n){return"&#"+n.charCodeAt(0)+";"}).replace(/</g,"<").replace(/>/g,">")}let Yh;function tE(t,n){let e=null;try{Yh=Yh||function XT(t){const n=new MP(t);return function RP(){try{return!!(new window.DOMParser).parseFromString(So(""),"text/html")}catch{return!1}}()?new IP(n):n}(t);let i=n?String(n):"";e=Yh.getInertBodyElement(i);let r=5,s=i;do{if(0===r)throw new Error("Failed to sanitize html because the input is unstable");r--,i=s,s=e.innerHTML,e=Yh.getInertBodyElement(i)}while(i!==s);return So((new PP).sanitizeChildren(g_(e)||e))}finally{if(e){const i=g_(e)||e;for(;i.firstChild;)i.removeChild(i.firstChild)}}}function g_(t){return"content"in t&&function BP(t){return t.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===t.nodeName}(t)?t.content:null}var Qt=(()=>((Qt=Qt||{})[Qt.NONE=0]="NONE",Qt[Qt.HTML=1]="HTML",Qt[Qt.STYLE=2]="STYLE",Qt[Qt.SCRIPT=3]="SCRIPT",Qt[Qt.URL=4]="URL",Qt[Qt.RESOURCE_URL=5]="RESOURCE_URL",Qt))();function dn(t){const n=Mu();return n?KT(n.sanitize(Qt.HTML,t)||""):vs(t,"HTML")?KT(pr(t)):tE(function WT(){return void 0!==d_?d_:typeof document<"u"?document:void 0}(),Ue(t))}function Qr(t){const n=Mu();return n?n.sanitize(Qt.URL,t)||"":vs(t,"URL")?pr(t):Kh(Ue(t))}function Mu(){const t=se();return t&&t[12]}const m_=new Z("ENVIRONMENT_INITIALIZER"),iE=new Z("INJECTOR",-1),rE=new Z("INJECTOR_DEF_TYPES");class sE{get(n,e=Cu){if(e===Cu){const i=new Error(`NullInjectorError: No provider for ${qt(n)}!`);throw i.name="NullInjectorError",i}return e}}function WP(...t){return{\u0275providers:aE(0,t)}}function aE(t,...n){const e=[],i=new Set;let r;return Xs(n,s=>{const a=s;__(a,e,[],i)&&(r||(r=[]),r.push(a))}),void 0!==r&&oE(r,e),e}function oE(t,n){for(let e=0;e<t.length;e++){const{providers:r}=t[e];Xs(r,s=>{n.push(s)})}}function __(t,n,e,i){if(!(t=Ze(t)))return!1;let r=null,s=Dl(t);const a=!s&&Tt(t);if(s||a){if(a&&!a.standalone)return!1;r=t}else{const l=t.ngModule;if(s=Dl(l),!s)return!1;r=l}const o=i.has(r);if(a){if(o)return!1;if(i.add(r),a.dependencies){const l="function"==typeof a.dependencies?a.dependencies():a.dependencies;for(const u of l)__(u,n,e,i)}}else{if(!s)return!1;{if(null!=s.imports&&!o){let u;i.add(r);try{Xs(s.imports,h=>{__(h,n,e,i)&&(u||(u=[]),u.push(h))})}finally{}void 0!==u&&oE(u,n)}if(!o){const u=Co(r)||(()=>new r);n.push({provide:r,useFactory:u,deps:H},{provide:rE,useValue:r,multi:!0},{provide:m_,useValue:()=>R(r),multi:!0})}const l=s.providers;null==l||o||Xs(l,h=>{n.push(h)})}}return r!==t&&void 0!==t.providers}const KP=yt({provide:String,useValue:yt});function y_(t){return null!==t&&"object"==typeof t&&KP in t}function wo(t){return"function"==typeof t}const A_=new Z("Set Injector scope."),qh={},qP={};let v_;function Xh(){return void 0===v_&&(v_=new sE),v_}class Va{}class uE extends Va{constructor(n,e,i,r){super(),this.parent=e,this.source=i,this.scopes=r,this.records=new Map,this._ngOnDestroyHooks=new Set,this._onDestroyHooks=[],this._destroyed=!1,C_(n,a=>this.processProvider(a)),this.records.set(iE,Gl(void 0,this)),r.has("environment")&&this.records.set(Va,Gl(void 0,this));const s=this.records.get(A_);null!=s&&"string"==typeof s.value&&this.scopes.add(s.value),this.injectorDefTypes=new Set(this.get(rE.multi,H,We.Self))}get destroyed(){return this._destroyed}destroy(){this.assertNotDestroyed(),this._destroyed=!0;try{for(const n of this._ngOnDestroyHooks)n.ngOnDestroy();for(const n of this._onDestroyHooks)n()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear(),this._onDestroyHooks.length=0}}onDestroy(n){this._onDestroyHooks.push(n)}runInContext(n){this.assertNotDestroyed();const e=jl(this),i=er(void 0);try{return n()}finally{jl(e),er(i)}}get(n,e=Cu,i=We.Default){this.assertNotDestroyed();const r=jl(this),s=er(void 0);try{if(!(i&We.SkipSelf)){let o=this.records.get(n);if(void 0===o){const l=function JP(t){return"function"==typeof t||"object"==typeof t&&t instanceof Z}(n)&&Oa(n);o=l&&this.injectableDefInScope(l)?Gl(b_(n),qh):null,this.records.set(n,o)}if(null!=o)return this.hydrate(n,o)}return(i&We.Self?Xh():this.parent).get(n,e=i&We.Optional&&e===Cu?null:e)}catch(a){if("NullInjectorError"===a.name){if((a[Bh]=a[Bh]||[]).unshift(qt(n)),r)throw a;return function T1(t,n,e,i){const r=t[Bh];throw n[cT]&&r.unshift(n[cT]),t.message=function E1(t,n,e,i=null){t=t&&"\n"===t.charAt(0)&&"\u0275"==t.charAt(1)?t.slice(2):t;let r=qt(n);if(Array.isArray(n))r=n.map(qt).join(" -> ");else if("object"==typeof n){let s=[];for(let a in n)if(n.hasOwnProperty(a)){let o=n[a];s.push(a+":"+("string"==typeof o?JSON.stringify(o):qt(o)))}r=`{${s.join(", ")}}`}return`${e}${i?"("+i+")":""}[${r}]: ${t.replace(A1,"\n ")}`}("\n"+t.message,r,e,i),t.ngTokenPath=r,t[Bh]=null,t}(a,n,"R3InjectorError",this.source)}throw a}finally{er(s),jl(r)}}resolveInjectorInitializers(){const n=jl(this),e=er(void 0);try{const i=this.get(m_.multi,H,We.Self);for(const r of i)r()}finally{jl(n),er(e)}}toString(){const n=[],e=this.records;for(const i of e.keys())n.push(qt(i));return`R3Injector[${n.join(", ")}]`}assertNotDestroyed(){if(this._destroyed)throw new ne(205,!1)}processProvider(n){let e=wo(n=Ze(n))?n:Ze(n&&n.provide);const i=function QP(t){return y_(t)?Gl(void 0,t.useValue):Gl(dE(t),qh)}(n);if(wo(n)||!0!==n.multi)this.records.get(e);else{let r=this.records.get(e);r||(r=Gl(void 0,qh,!0),r.factory=()=>Hm(r.multi),this.records.set(e,r)),e=n,r.multi.push(n)}this.records.set(e,i)}hydrate(n,e){return e.value===qh&&(e.value=qP,e.value=e.factory()),"object"==typeof e.value&&e.value&&function $P(t){return null!==t&&"object"==typeof t&&"function"==typeof t.ngOnDestroy}(e.value)&&this._ngOnDestroyHooks.add(e.value),e.value}injectableDefInScope(n){if(!n.providedIn)return!1;const e=Ze(n.providedIn);return"string"==typeof e?"any"===e||this.scopes.has(e):this.injectorDefTypes.has(e)}}function b_(t){const n=Oa(t),e=null!==n?n.factory:Co(t);if(null!==e)return e;if(t instanceof Z)throw new ne(204,!1);if(t instanceof Function)return function XP(t){const n=t.length;if(n>0)throw bu(n,"?"),new ne(204,!1);const e=function bh(t){const n=t&&(t[wl]||t[Th]);if(n){const e=function Ch(t){if(t.hasOwnProperty("name"))return t.name;const n=(""+t).match(/^function\s*([^\s(]+)/);return null===n?"":n[1]}(t);return console.warn(`DEPRECATED: DI is instantiating a token "${e}" that inherits its @Injectable decorator but does not provide one itself.\nThis will become an error in a future version of Angular. Please add @Injectable() to the "${e}" class.`),n}return null}(t);return null!==e?()=>e.factory(t):()=>new t}(t);throw new ne(204,!1)}function dE(t,n,e){let i;if(wo(t)){const r=Ze(t);return Co(r)||b_(r)}if(y_(t))i=()=>Ze(t.useValue);else if(function cE(t){return!(!t||!t.useFactory)}(t))i=()=>t.useFactory(...Hm(t.deps||[]));else if(function lE(t){return!(!t||!t.useExisting)}(t))i=()=>R(Ze(t.useExisting));else{const r=Ze(t&&(t.useClass||t.provide));if(!function ZP(t){return!!t.deps}(t))return Co(r)||b_(r);i=()=>new r(...Hm(t.deps))}return i}function Gl(t,n,e=!1){return{factory:t,value:n,multi:e?[]:void 0}}function eN(t){return!!t.\u0275providers}function C_(t,n){for(const e of t)Array.isArray(e)?C_(e,n):eN(e)?C_(e.\u0275providers,n):n(e)}class hE{}class iN{resolveComponentFactory(n){throw function nN(t){const n=Error(`No component factory found for ${qt(t)}. Did you add it to @NgModule.entryComponents?`);return n.ngComponent=t,n}(n)}}let Zs=(()=>{class t{}return t.NULL=new iN,t})();function rN(){return Wl(si(),se())}function Wl(t,n){return new be(cr(t,n))}let be=(()=>{class t{constructor(e){this.nativeElement=e}}return t.__NG_ELEMENT_ID__=rN,t})();function sN(t){return t instanceof be?t.nativeElement:t}class Ru{}let Zr=(()=>{class t{}return t.__NG_ELEMENT_ID__=()=>function aN(){const t=se(),e=ur(si().index,t);return(K(e)?e:t)[11]}(),t})(),oN=(()=>{class t{}return t.\u0275prov=q({token:t,providedIn:"root",factory:()=>null}),t})();class $s{constructor(n){this.full=n,this.major=n.split(".")[0],this.minor=n.split(".")[1],this.patch=n.split(".").slice(2).join(".")}}const lN=new $s("14.3.0"),T_={};function S_(t){return t.ngOriginalError}class Js{constructor(){this._console=console}handleError(n){const e=this._findOriginalError(n);this._console.error("ERROR",n),e&&this._console.error("ORIGINAL ERROR",e)}_findOriginalError(n){let e=n&&S_(n);for(;e&&S_(e);)e=S_(e);return e||null}}function D_(t){return t.ownerDocument.defaultView}function w_(t){return t.ownerDocument}function ea(t){return t instanceof Function?t():t}function gE(t,n,e){let i=t.length;for(;;){const r=t.indexOf(n,e);if(-1===r)return r;if(0===r||t.charCodeAt(r-1)<=32){const s=n.length;if(r+s===i||t.charCodeAt(r+s)<=32)return r}e=r+1}}const mE="ng-template";function _N(t,n,e){let i=0;for(;i<t.length;){let r=t[i++];if(e&&"class"===r){if(r=t[i],-1!==gE(r.toLowerCase(),n,0))return!0}else if(1===r){for(;i<t.length&&"string"==typeof(r=t[i++]);)if(r.toLowerCase()===n)return!0;return!1}}return!1}function _E(t){return 4===t.type&&t.value!==mE}function yN(t,n,e){return n===(4!==t.type||e?t.value:mE)}function AN(t,n,e){let i=4;const r=t.attrs||[],s=function CN(t){for(let n=0;n<t.length;n++)if(WC(t[n]))return n;return t.length}(r);let a=!1;for(let o=0;o<n.length;o++){const l=n[o];if("number"!=typeof l){if(!a)if(4&i){if(i=2|1&i,""!==l&&!yN(t,l,e)||""===l&&1===n.length){if($r(i))return!1;a=!0}}else{const u=8&i?l:n[++o];if(8&i&&null!==t.attrs){if(!_N(t.attrs,u,e)){if($r(i))return!1;a=!0}continue}const p=vN(8&i?"class":l,r,_E(t),e);if(-1===p){if($r(i))return!1;a=!0;continue}if(""!==u){let C;C=p>s?"":r[p+1].toLowerCase();const w=8&i?C:null;if(w&&-1!==gE(w,u,0)||2&i&&u!==C){if($r(i))return!1;a=!0}}}}else{if(!a&&!$r(i)&&!$r(l))return!1;if(a&&$r(l))continue;a=!1,i=l|1&i}}return $r(i)||a}function $r(t){return 0==(1&t)}function vN(t,n,e,i){if(null===n)return-1;let r=0;if(i||!e){let s=!1;for(;r<n.length;){const a=n[r];if(a===t)return r;if(3===a||6===a)s=!0;else{if(1===a||2===a){let o=n[++r];for(;"string"==typeof o;)o=n[++r];continue}if(4===a)break;if(0===a){r+=4;continue}}r+=s?1:2}return-1}return function TN(t,n){let e=t.indexOf(4);if(e>-1)for(e++;e<t.length;){const i=t[e];if("number"==typeof i)return-1;if(i===n)return e;e++}return-1}(n,t)}function yE(t,n,e=!1){for(let i=0;i<n.length;i++)if(AN(t,n[i],e))return!0;return!1}function EN(t,n){e:for(let e=0;e<n.length;e++){const i=n[e];if(t.length===i.length){for(let r=0;r<t.length;r++)if(t[r]!==i[r])continue e;return!0}}return!1}function AE(t,n){return t?":not("+n.trim()+")":n}function SN(t){let n=t[0],e=1,i=2,r="",s=!1;for(;e<t.length;){let a=t[e];if("string"==typeof a)if(2&i){const o=t[++e];r+="["+a+(o.length>0?'="'+o+'"':"")+"]"}else 8&i?r+="."+a:4&i&&(r+=" "+a);else""!==r&&!$r(a)&&(n+=AE(s,r),r=""),i=a,s=s||!$r(i);e++}return""!==r&&(n+=AE(s,r)),n}const gt={};function b(t){vE(jt(),se(),Ui()+t,!1)}function vE(t,n,e,i){if(!i)if(3==(3&n[2])){const s=t.preOrderCheckHooks;null!==s&&xh(n,s,e)}else{const s=t.preOrderHooks;null!==s&&kh(n,s,0,e)}Fa(e)}function EE(t,n=null,e=null,i){const r=SE(t,n,e,i);return r.resolveInjectorInitializers(),r}function SE(t,n=null,e=null,i,r=new Set){const s=[e||H,WP(t)];return i=i||("object"==typeof t?void 0:qt(t)),new uE(s,n||Xh(),i||null,r)}let Fn=(()=>{class t{static create(e,i){if(Array.isArray(e))return EE({name:""},i,e,"");{const r=e.name??"";return EE({name:r},e.parent,e.providers,r)}}}return t.THROW_IF_NOT_FOUND=Cu,t.NULL=new sE,t.\u0275prov=q({token:t,providedIn:"any",factory:()=>R(iE)}),t.__NG_ELEMENT_ID__=-1,t})();function _(t,n=We.Default){const e=se();return null===e?R(t,n):JC(si(),e,Ze(t),n)}function Ua(){throw new Error("invalid")}function Zh(t,n){return t<<17|n<<2}function Jr(t){return t>>17&32767}function R_(t){return 2|t}function ta(t){return(131068&t)>>2}function O_(t,n){return-131069&t|n<<2}function L_(t){return 1|t}function zE(t,n){const e=t.contentQueries;if(null!==e)for(let i=0;i<e.length;i+=2){const r=e[i],s=e[i+1];if(-1!==s){const a=t.data[s];xm(r),a.contentQueries(2,n[s],s)}}}function ef(t,n,e,i,r,s,a,o,l,u,h){const p=n.blueprint.slice();return p[0]=r,p[2]=76|i,(null!==h||t&&1024&t[2])&&(p[2]|=1024),MC(p),p[3]=p[15]=t,p[8]=e,p[10]=a||t&&t[10],p[11]=o||t&&t[11],p[12]=l||t&&t[12]||null,p[9]=u||t&&t[9]||null,p[6]=s,p[20]=function j1(){return U1++}(),p[21]=h,p[16]=2==n.type?t[16]:p,p}function ql(t,n,e,i,r){let s=t.data[n];if(null===s)s=function z_(t,n,e,i,r){const s=LC(),a=Em(),l=t.data[n]=function oF(t,n,e,i,r,s){return{type:e,index:i,insertBeforeIndex:null,injectorIndex:n?n.injectorIndex:-1,directiveStart:-1,directiveEnd:-1,directiveStylingLast:-1,propertyBindings:null,flags:0,providerIndexes:0,value:r,attrs:s,mergedAttrs:null,localNames:null,initialInputs:void 0,inputs:null,outputs:null,tViews:null,next:null,projectionNext:null,child:null,parent:n,projection:null,styles:null,stylesWithoutHost:null,residualStyles:void 0,classes:null,classesWithoutHost:null,residualClasses:void 0,classBindings:0,styleBindings:0}}(0,a?s:s&&s.parent,e,n,i,r);return null===t.firstChild&&(t.firstChild=l),null!==s&&(a?null==s.child&&null!==l.parent&&(s.child=l):null===s.next&&(s.next=l)),l}(t,n,e,i,r),function BL(){return ht.lFrame.inI18n}()&&(s.flags|=64);else if(64&s.type){s.type=e,s.value=i,s.attrs=r;const a=function pu(){const t=ht.lFrame,n=t.currentTNode;return t.isParent?n:n.parent}();s.injectorIndex=null===a?-1:a.injectorIndex}return _s(s,!0),s}function Xl(t,n,e,i){if(0===e)return-1;const r=n.length;for(let s=0;s<e;s++)n.push(i),t.blueprint.push(i),t.data.push(null);return r}function H_(t,n,e){km(n);try{const i=t.viewQuery;null!==i&&Z_(1,i,e);const r=t.template;null!==r&&HE(t,n,r,1,e),t.firstCreatePass&&(t.firstCreatePass=!1),t.staticContentQueries&&zE(t,n),t.staticViewQueries&&Z_(2,t.viewQuery,e);const s=t.components;null!==s&&function rF(t,n){for(let e=0;e<n.length;e++)TF(t,n[e])}(n,s)}catch(i){throw t.firstCreatePass&&(t.incompleteFirstPass=!0,t.firstCreatePass=!1),i}finally{n[2]&=-5,Im()}}function tf(t,n,e,i){const r=n[2];if(128!=(128&r)){km(n);try{MC(n),function NC(t){return ht.lFrame.bindingIndex=t}(t.bindingStartIndex),null!==e&&HE(t,n,e,2,i);const a=3==(3&r);if(a){const u=t.preOrderCheckHooks;null!==u&&xh(n,u,null)}else{const u=t.preOrderHooks;null!==u&&kh(n,u,0,null),Rm(n,0)}if(function bF(t){for(let n=Jm(t);null!==n;n=e_(n)){if(!n[2])continue;const e=n[9];for(let i=0;i<e.length;i++){const r=e[i],s=r[3];0==(512&r[2])&&Tm(s,1),r[2]|=512}}}(n),function vF(t){for(let n=Jm(t);null!==n;n=e_(n))for(let e=N;e<n.length;e++){const i=n[e],r=i[1];Dh(i)&&tf(r,i,r.template,i[8])}}(n),null!==t.contentQueries&&zE(t,n),a){const u=t.contentCheckHooks;null!==u&&xh(n,u)}else{const u=t.contentHooks;null!==u&&kh(n,u,1),Rm(n,1)}!function nF(t,n){const e=t.hostBindingOpCodes;if(null!==e)try{for(let i=0;i<e.length;i++){const r=e[i];if(r<0)Fa(~r);else{const s=r,a=e[++i],o=e[++i];VL(a,s),o(2,n[s])}}}finally{Fa(-1)}}(t,n);const o=t.components;null!==o&&function iF(t,n){for(let e=0;e<n.length;e++)CF(t,n[e])}(n,o);const l=t.viewQuery;if(null!==l&&Z_(2,l,i),a){const u=t.viewCheckHooks;null!==u&&xh(n,u)}else{const u=t.viewHooks;null!==u&&kh(n,u,2),Rm(n,2)}!0===t.firstUpdatePass&&(t.firstUpdatePass=!1),n[2]&=-41,512&n[2]&&(n[2]&=-513,Tm(n[3],-1))}finally{Im()}}}function HE(t,n,e,i,r){const s=Ui(),a=2&i;try{Fa(-1),a&&n.length>22&&vE(t,n,22,!1),e(i,r)}finally{Fa(s)}}function GE(t,n,e){if(he(n)){const r=n.directiveEnd;for(let s=n.directiveStart;s<r;s++){const a=t.data[s];a.contentQueries&&a.contentQueries(1,e[s],s)}}}function G_(t,n,e){!OC()||(function hF(t,n,e,i){const r=e.directiveStart,s=e.directiveEnd;t.firstCreatePass||_u(e,n),wi(i,n);const a=e.initialInputs;for(let o=r;o<s;o++){const l=t.data[o],u=fe(l);u&&_F(n,e,l);const h=yu(n,t,o,e);wi(h,n),null!==a&&yF(0,o-r,h,l,0,a),u&&(ur(e.index,n)[8]=h)}}(t,n,e,cr(e,n)),128==(128&e.flags)&&function fF(t,n,e){const i=e.directiveStart,r=e.directiveEnd,s=e.index,a=function UL(){return ht.lFrame.currentDirectiveIndex}();try{Fa(s);for(let o=i;o<r;o++){const l=t.data[o],u=n[o];Dm(o),(null!==l.hostBindings||0!==l.hostVars||null!==l.hostAttrs)&&ZE(l,u)}}finally{Fa(-1),Dm(a)}}(t,n,e))}function W_(t,n,e=cr){const i=n.localNames;if(null!==i){let r=n.index+1;for(let s=0;s<i.length;s+=2){const a=i[s+1],o=-1===a?e(n,t):t[a];t[r++]=o}}}function WE(t){const n=t.tView;return null===n||n.incompleteFirstPass?t.tView=K_(1,null,t.template,t.decls,t.vars,t.directiveDefs,t.pipeDefs,t.viewQuery,t.schemas,t.consts):n}function K_(t,n,e,i,r,s,a,o,l,u){const h=22+i,p=h+r,C=function sF(t,n){const e=[];for(let i=0;i<n;i++)e.push(i<t?null:gt);return e}(h,p),w="function"==typeof u?u():u;return C[1]={type:t,blueprint:C,template:e,queries:null,viewQuery:o,declTNode:n,data:C.slice().fill(null,h),bindingStartIndex:h,expandoStartIndex:p,hostBindingOpCodes:null,firstCreatePass:!0,firstUpdatePass:!0,staticViewQueries:!1,staticContentQueries:!1,preOrderHooks:null,preOrderCheckHooks:null,contentHooks:null,contentCheckHooks:null,viewHooks:null,viewCheckHooks:null,destroyHooks:null,cleanup:null,contentQueries:null,components:null,directiveRegistry:"function"==typeof s?s():s,pipeRegistry:"function"==typeof a?a():a,firstChild:null,schemas:l,consts:w,incompleteFirstPass:!1}}function KE(t,n,e,i){const r=nS(n);null===e?r.push(i):(r.push(e),t.firstCreatePass&&iS(t).push(i,r.length-1))}function YE(t,n,e){for(let i in t)if(t.hasOwnProperty(i)){const r=t[i];(e=null===e?{}:e).hasOwnProperty(i)?e[i].push(n,r):e[i]=[n,r]}return e}function qE(t,n){const i=n.directiveEnd,r=t.data,s=n.attrs,a=[];let o=null,l=null;for(let u=n.directiveStart;u<i;u++){const h=r[u],p=h.inputs,C=null===s||_E(n)?null:AF(p,s);a.push(C),o=YE(p,u,o),l=YE(h.outputs,u,l)}null!==o&&(o.hasOwnProperty("class")&&(n.flags|=16),o.hasOwnProperty("style")&&(n.flags|=32)),n.initialInputs=a,n.inputs=o,n.outputs=l}function gr(t,n,e,i,r,s,a,o){const l=cr(n,e);let h,u=n.inputs;!o&&null!=u&&(h=u[i])?($_(t,e,h,i,r),De(n)&&XE(e,n.index)):3&n.type&&(i=function lF(t){return"class"===t?"className":"for"===t?"htmlFor":"formaction"===t?"formAction":"innerHtml"===t?"innerHTML":"readonly"===t?"readOnly":"tabindex"===t?"tabIndex":t}(i),r=null!=a?a(r,n.value||"",i):r,s.setProperty(l,i,r))}function XE(t,n){const e=ur(n,t);16&e[2]||(e[2]|=32)}function Y_(t,n,e,i){let r=!1;if(OC()){const s=function pF(t,n,e){const i=t.directiveRegistry;let r=null;if(i)for(let s=0;s<i.length;s++){const a=i[s];yE(e,a.selectors,!1)&&(r||(r=[]),Lh(_u(e,n),t,a.type),fe(a)?($E(t,e),r.unshift(a)):r.push(a))}return r}(t,n,e),a=null===i?null:{"":-1};if(null!==s){r=!0,JE(e,t.data.length,s.length);for(let h=0;h<s.length;h++){const p=s[h];p.providersResolver&&p.providersResolver(p)}let o=!1,l=!1,u=Xl(t,n,s.length,null);for(let h=0;h<s.length;h++){const p=s[h];e.mergedAttrs=Mh(e.mergedAttrs,p.hostAttrs),eS(t,e,n,u,p),mF(u,p,a),null!==p.contentQueries&&(e.flags|=8),(null!==p.hostBindings||null!==p.hostAttrs||0!==p.hostVars)&&(e.flags|=128);const C=p.type.prototype;!o&&(C.ngOnChanges||C.ngOnInit||C.ngDoCheck)&&((t.preOrderHooks||(t.preOrderHooks=[])).push(e.index),o=!0),!l&&(C.ngOnChanges||C.ngDoCheck)&&((t.preOrderCheckHooks||(t.preOrderCheckHooks=[])).push(e.index),l=!0),u++}qE(t,e)}a&&function gF(t,n,e){if(n){const i=t.localNames=[];for(let r=0;r<n.length;r+=2){const s=e[n[r+1]];if(null==s)throw new ne(-301,!1);i.push(n[r],s)}}}(e,i,a)}return e.mergedAttrs=Mh(e.mergedAttrs,e.attrs),r}function QE(t,n,e,i,r,s){const a=s.hostBindings;if(a){let o=t.hostBindingOpCodes;null===o&&(o=t.hostBindingOpCodes=[]);const l=~n.index;(function dF(t){let n=t.length;for(;n>0;){const e=t[--n];if("number"==typeof e&&e<0)return e}return 0})(o)!=l&&o.push(l),o.push(i,r,a)}}function ZE(t,n){null!==t.hostBindings&&t.hostBindings(1,n)}function $E(t,n){n.flags|=2,(t.components||(t.components=[])).push(n.index)}function mF(t,n,e){if(e){if(n.exportAs)for(let i=0;i<n.exportAs.length;i++)e[n.exportAs[i]]=t;fe(n)&&(e[""]=t)}}function JE(t,n,e){t.flags|=1,t.directiveStart=n,t.directiveEnd=n+e,t.providerIndexes=n}function eS(t,n,e,i,r){t.data[i]=r;const s=r.factory||(r.factory=Co(r.type)),a=new gu(s,fe(r),_);t.blueprint[i]=a,e[i]=a,QE(t,n,0,i,Xl(t,e,r.hostVars,gt),r)}function _F(t,n,e){const i=cr(n,t),r=WE(e),s=t[10],a=nf(t,ef(t,r,null,e.onPush?32:16,i,n,s,s.createRenderer(i,e),null,null,null));t[n.index]=a}function bs(t,n,e,i,r,s){const a=cr(t,n);!function q_(t,n,e,i,r,s,a){if(null==s)t.removeAttribute(n,r,e);else{const o=null==a?Ue(s):a(s,i||"",r);t.setAttribute(n,r,o,e)}}(n[11],a,s,t.value,e,i,r)}function yF(t,n,e,i,r,s){const a=s[n];if(null!==a){const o=i.setInput;for(let l=0;l<a.length;){const u=a[l++],h=a[l++],p=a[l++];null!==o?i.setInput(e,p,u,h):e[h]=p}}}function AF(t,n){let e=null,i=0;for(;i<n.length;){const r=n[i];if(0!==r)if(5!==r){if("number"==typeof r)break;t.hasOwnProperty(r)&&(null===e&&(e=[]),e.push(r,t[r],n[i+1])),i+=2}else i+=2;else i+=4}return e}function tS(t,n,e,i){return new Array(t,!0,!1,n,null,0,i,e,null,null)}function CF(t,n){const e=ur(n,t);if(Dh(e)){const i=e[1];48&e[2]?tf(i,e,i.template,e[8]):e[5]>0&&X_(e)}}function X_(t){for(let i=Jm(t);null!==i;i=e_(i))for(let r=N;r<i.length;r++){const s=i[r];if(Dh(s))if(512&s[2]){const a=s[1];tf(a,s,a.template,s[8])}else s[5]>0&&X_(s)}const e=t[1].components;if(null!==e)for(let i=0;i<e.length;i++){const r=ur(e[i],t);Dh(r)&&r[5]>0&&X_(r)}}function TF(t,n){const e=ur(n,t),i=e[1];(function EF(t,n){for(let e=n.length;e<t.blueprint.length;e++)n.push(t.blueprint[e])})(i,e),H_(i,e,e[8])}function nf(t,n){return t[13]?t[14][4]=n:t[13]=n,t[14]=n,n}function Q_(t){for(;t;){t[2]|=32;const n=xu(t);if(St(t)&&!n)return t;t=n}return null}function rf(t,n,e,i=!0){const r=n[10];r.begin&&r.begin();try{tf(t,n,t.template,e)}catch(a){throw i&&sS(n,a),a}finally{r.end&&r.end()}}function Z_(t,n,e){xm(0),n(t,e)}function nS(t){return t[7]||(t[7]=[])}function iS(t){return t.cleanup||(t.cleanup=[])}function rS(t,n,e){return(null===t||fe(t))&&(e=function xL(t){for(;Array.isArray(t);){if("object"==typeof t[1])return t;t=t[0]}return null}(e[n.index])),e[11]}function sS(t,n){const e=t[9],i=e?e.get(Js,null):null;i&&i.handleError(n)}function $_(t,n,e,i,r){for(let s=0;s<e.length;){const a=e[s++],o=e[s++],l=n[a],u=t.data[a];null!==u.setInput?u.setInput(l,r,i,o):l[o]=r}}function na(t,n,e){const i=Sh(n,t);!function MT(t,n,e){t.setValue(n,e)}(t[11],i,e)}function sf(t,n,e){let i=e?t.styles:null,r=e?t.classes:null,s=0;if(null!==n)for(let a=0;a<n.length;a++){const o=n[a];"number"==typeof o?s=o:1==s?r=uu(r,o):2==s&&(i=uu(i,o+": "+n[++a]+";"))}e?t.styles=i:t.stylesWithoutHost=i,e?t.classes=r:t.classesWithoutHost=r}function af(t,n,e,i,r=!1){for(;null!==e;){const s=n[e.index];if(null!==s&&i.push(Jn(s)),Q(s))for(let o=N;o<s.length;o++){const l=s[o],u=l[1].firstChild;null!==u&&af(l[1],l,u,i)}const a=e.type;if(8&a)af(t,n,e.child,i);else if(32&a){const o=$m(e,n);let l;for(;l=o();)i.push(l)}else if(16&a){const o=zT(n,e);if(Array.isArray(o))i.push(...o);else{const l=xu(n[16]);af(l[1],l,o,i,!0)}}e=r?e.projectionNext:e.next}return i}class Ou{constructor(n,e){this._lView=n,this._cdRefInjectingView=e,this._appRef=null,this._attachedToViewContainer=!1}get rootNodes(){const n=this._lView,e=n[1];return af(e,n,e.firstChild,[])}get context(){return this._lView[8]}set context(n){this._lView[8]=n}get destroyed(){return 128==(128&this._lView[2])}destroy(){if(this._appRef)this._appRef.detachView(this);else if(this._attachedToViewContainer){const n=this._lView[3];if(Q(n)){const e=n[8],i=e?e.indexOf(this):-1;i>-1&&(i_(n,i),Nh(e,i))}this._attachedToViewContainer=!1}OT(this._lView[1],this._lView)}onDestroy(n){KE(this._lView[1],this._lView,null,n)}markForCheck(){Q_(this._cdRefInjectingView||this._lView)}detach(){this._lView[2]&=-65}reattach(){this._lView[2]|=64}detectChanges(){rf(this._lView[1],this._lView,this.context)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new ne(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null,function rP(t,n){ku(t,n,n[11],2,null,null)}(this._lView[1],this._lView)}attachToAppRef(n){if(this._attachedToViewContainer)throw new ne(902,!1);this._appRef=n}}class SF extends Ou{constructor(n){super(n),this._view=n}detectChanges(){const n=this._view;rf(n[1],n,n[8],!1)}checkNoChanges(){}get context(){return null}}class J_ extends Zs{constructor(n){super(),this.ngModule=n}resolveComponentFactory(n){const e=Tt(n);return new Lu(e,this.ngModule)}}function aS(t){const n=[];for(let e in t)t.hasOwnProperty(e)&&n.push({propName:t[e],templateName:e});return n}class wF{constructor(n,e){this.injector=n,this.parentInjector=e}get(n,e,i){const r=this.injector.get(n,T_,i);return r!==T_||e===T_?r:this.parentInjector.get(n,e,i)}}class Lu extends hE{constructor(n,e){super(),this.componentDef=n,this.ngModule=e,this.componentType=n.type,this.selector=function DN(t){return t.map(SN).join(",")}(n.selectors),this.ngContentSelectors=n.ngContentSelectors?n.ngContentSelectors:[],this.isBoundToModule=!!e}get inputs(){return aS(this.componentDef.inputs)}get outputs(){return aS(this.componentDef.outputs)}create(n,e,i,r){let s=(r=r||this.ngModule)instanceof Va?r:r?.injector;s&&null!==this.componentDef.getStandaloneInjector&&(s=this.componentDef.getStandaloneInjector(s)||s);const a=s?new wF(n,s):n,o=a.get(Ru,null);if(null===o)throw new ne(407,!1);const l=a.get(oN,null),u=o.createRenderer(null,this.componentDef),h=this.componentDef.selectors[0][0]||"div",p=i?function aF(t,n,e){return t.selectRootElement(n,e===y.ShadowDom)}(u,i,this.componentDef.encapsulation):n_(u,h,function DF(t){const n=t.toLowerCase();return"svg"===n?"svg":"math"===n?"math":null}(h)),C=this.componentDef.onPush?288:272,w=K_(0,null,null,1,0,null,null,null,null,null),k=ef(null,w,null,C,null,null,o,u,l,a,null);let L,U;km(k);try{const z=function IF(t,n,e,i,r,s){const a=e[1];e[22]=t;const l=ql(a,22,2,"#host",null),u=l.mergedAttrs=n.hostAttrs;null!==u&&(sf(l,u,!0),null!==t&&(Ih(r,t,u),null!==l.classes&&c_(r,t,l.classes),null!==l.styles&>(r,t,l.styles)));const h=i.createRenderer(t,n),p=ef(e,WE(n),null,n.onPush?32:16,e[22],l,i,h,s||null,null,null);return a.firstCreatePass&&(Lh(_u(l,e),a,n.type),$E(a,l),JE(l,e.length,1)),nf(e,p),e[22]=p}(p,this.componentDef,k,o,u);if(p)if(i)Ih(u,p,["ng-version",lN.full]);else{const{attrs:ie,classes:X}=function wN(t){const n=[],e=[];let i=1,r=2;for(;i<t.length;){let s=t[i];if("string"==typeof s)2===r?""!==s&&n.push(s,t[++i]):8===r&&e.push(s);else{if(!$r(r))break;r=s}i++}return{attrs:n,classes:e}}(this.componentDef.selectors[0]);ie&&Ih(u,p,ie),X&&X.length>0&&c_(u,p,X.join(" "))}if(U=Cm(w,22),void 0!==e){const ie=U.projection=[];for(let X=0;X<this.ngContentSelectors.length;X++){const Ce=e[X];ie.push(null!=Ce?Array.from(Ce):null)}}L=function MF(t,n,e,i){const r=e[1],s=function uF(t,n,e){const i=si();t.firstCreatePass&&(e.providersResolver&&e.providersResolver(e),eS(t,i,n,Xl(t,n,1,null),e),qE(t,i));const r=yu(n,t,i.directiveStart,i);wi(r,n);const s=cr(i,n);return s&&wi(s,n),r}(r,e,n);if(t[8]=e[8]=s,null!==i)for(const o of i)o(s,n);if(n.contentQueries){const o=si();n.contentQueries(1,s,o.directiveStart)}const a=si();return!r.firstCreatePass||null===n.hostBindings&&null===n.hostAttrs||(Fa(a.index),QE(e[1],a,0,a.directiveStart,a.directiveEnd,n),ZE(n,s)),s}(z,this.componentDef,k,[RF]),H_(w,k,null)}finally{Im()}return new kF(this.componentType,L,Wl(U,k),k,U)}}class kF extends class tN{}{constructor(n,e,i,r,s){super(),this.location=i,this._rootLView=r,this._tNode=s,this.instance=e,this.hostView=this.changeDetectorRef=new SF(r),this.componentType=n}setInput(n,e){const i=this._tNode.inputs;let r;if(null!==i&&(r=i[n])){const s=this._rootLView;$_(s[1],s,r,n,e),XE(s,this._tNode.index)}}get injector(){return new Pl(this._tNode,this._rootLView)}destroy(){this.hostView.destroy()}onDestroy(n){this.hostView.onDestroy(n)}}function RF(){const t=si();wh(se()[1],t)}function J(t){let n=function oS(t){return Object.getPrototypeOf(t.prototype).constructor}(t.type),e=!0;const i=[t];for(;n;){let r;if(fe(t))r=n.\u0275cmp||n.\u0275dir;else{if(n.\u0275cmp)throw new ne(903,!1);r=n.\u0275dir}if(r){if(e){i.push(r);const a=t;a.inputs=ey(t.inputs),a.declaredInputs=ey(t.declaredInputs),a.outputs=ey(t.outputs);const o=r.hostBindings;o&&NF(t,o);const l=r.viewQuery,u=r.contentQueries;if(l&&LF(t,l),u&&PF(t,u),ms(t.inputs,r.inputs),ms(t.declaredInputs,r.declaredInputs),ms(t.outputs,r.outputs),fe(r)&&r.data.animation){const h=t.data;h.animation=(h.animation||[]).concat(r.data.animation)}}const s=r.features;if(s)for(let a=0;a<s.length;a++){const o=s[a];o&&o.ngInherit&&o(t),o===J&&(e=!1)}}n=Object.getPrototypeOf(n)}!function OF(t){let n=0,e=null;for(let i=t.length-1;i>=0;i--){const r=t[i];r.hostVars=n+=r.hostVars,r.hostAttrs=Mh(r.hostAttrs,e=Mh(e,r.hostAttrs))}}(i)}function ey(t){return t===B?{}:t===H?[]:t}function LF(t,n){const e=t.viewQuery;t.viewQuery=e?(i,r)=>{n(i,r),e(i,r)}:n}function PF(t,n){const e=t.contentQueries;t.contentQueries=e?(i,r,s)=>{n(i,r,s),e(i,r,s)}:n}function NF(t,n){const e=t.hostBindings;t.hostBindings=e?(i,r)=>{n(i,r),e(i,r)}:n}let lf=null;function xo(){if(!lf){const t=T.Symbol;if(t&&t.iterator)lf=t.iterator;else{const n=Object.getOwnPropertyNames(Map.prototype);for(let e=0;e<n.length;++e){const i=n[e];"entries"!==i&&"size"!==i&&Map.prototype[i]===Map.prototype.entries&&(lf=i)}}}return lf}function Pu(t){return!!ty(t)&&(Array.isArray(t)||!(t instanceof Map)&&xo()in t)}function ty(t){return null!==t&&("function"==typeof t||"object"==typeof t)}function Cs(t,n,e){return t[n]=e}function xi(t,n,e){return!Object.is(t[n],e)&&(t[n]=e,!0)}function ko(t,n,e,i){const r=xi(t,n,e);return xi(t,n+1,i)||r}function cf(t,n,e,i,r){const s=ko(t,n,e,i);return xi(t,n+2,r)||s}function Me(t,n,e,i){const r=se();return xi(r,Rl(),n)&&(jt(),bs(kn(),r,t,n,e,i)),Me}function Zl(t,n,e,i){return xi(t,Rl(),e)?n+Ue(e)+i:gt}function Jl(t,n,e,i,r,s,a,o){const u=cf(t,function Ys(){return ht.lFrame.bindingIndex}(),e,r,a);return qs(3),u?n+Ue(e)+i+Ue(r)+s+Ue(a)+o:gt}function O(t,n,e,i,r,s,a,o){const l=se(),u=jt(),h=t+22,p=u.firstCreatePass?function GF(t,n,e,i,r,s,a,o,l){const u=n.consts,h=ql(n,t,4,a||null,Na(u,o));Y_(n,e,h,Na(u,l)),wh(n,h);const p=h.tViews=K_(2,h,i,r,s,n.directiveRegistry,n.pipeRegistry,null,n.schemas,u);return null!==n.queries&&(n.queries.template(n,h),p.queries=n.queries.embeddedTView(h)),h}(h,u,l,n,e,i,r,s,a):u.data[h];_s(p,!1);const C=l[11].createComment("");zh(u,l,C,p),wi(C,l),nf(l,l[h]=tS(C,l,C,p)),Pe(p)&&G_(u,l,p),null!=a&&W_(l,p,o)}function vt(t){return Ml(function FL(){return ht.lFrame.contextLView}(),22+t)}function E(t,n,e){const i=se();return xi(i,Rl(),n)&&gr(jt(),kn(),i,t,n,i[11],e,!1),E}function ny(t,n,e,i,r){const a=r?"class":"style";$_(t,e,n.inputs[a],a,i)}function S(t,n,e,i){const r=se(),s=jt(),a=22+t,o=r[11],l=r[a]=n_(o,n,function KL(){return ht.lFrame.currentNamespace}()),u=s.firstCreatePass?function KF(t,n,e,i,r,s,a){const o=n.consts,u=ql(n,t,2,r,Na(o,s));return Y_(n,e,u,Na(o,a)),null!==u.attrs&&sf(u,u.attrs,!1),null!==u.mergedAttrs&&sf(u,u.mergedAttrs,!0),null!==n.queries&&n.queries.elementStart(n,u),u}(a,s,r,0,n,e,i):s.data[a];_s(u,!0);const h=u.mergedAttrs;null!==h&&Ih(o,l,h);const p=u.classes;null!==p&&c_(o,l,p);const C=u.styles;return null!==C&>(o,l,C),64!=(64&u.flags)&&zh(s,r,l,u),0===function RL(){return ht.lFrame.elementDepthCount}()&&wi(l,r),function OL(){ht.lFrame.elementDepthCount++}(),Pe(u)&&(G_(s,r,u),GE(s,u,r)),null!==i&&W_(r,u),S}function D(){let t=si();Em()?Sm():(t=t.parent,_s(t,!1));const n=t;!function LL(){ht.lFrame.elementDepthCount--}();const e=jt();return e.firstCreatePass&&(wh(e,t),he(t)&&e.queries.elementEnd(t)),null!=n.classesWithoutHost&&function ZL(t){return 0!=(16&t.flags)}(n)&&ny(e,n,se(),n.classesWithoutHost,!0),null!=n.stylesWithoutHost&&function $L(t){return 0!=(32&t.flags)}(n)&&ny(e,n,se(),n.stylesWithoutHost,!1),D}function le(t,n,e,i){return S(t,n,e,i),D(),le}function je(t,n,e){const i=se(),r=jt(),s=t+22,a=r.firstCreatePass?function YF(t,n,e,i,r){const s=n.consts,a=Na(s,i),o=ql(n,t,8,"ng-container",a);return null!==a&&sf(o,a,!0),Y_(n,e,o,Na(s,r)),null!==n.queries&&n.queries.elementStart(n,o),o}(s,r,i,n,e):r.data[s];_s(a,!0);const o=i[s]=i[11].createComment("");return zh(r,i,o,a),wi(o,i),Pe(a)&&(G_(r,i,a),GE(r,a,i)),null!=e&&W_(i,a),je}function ze(){let t=si();const n=jt();return Em()?Sm():(t=t.parent,_s(t,!1)),n.firstCreatePass&&(wh(n,t),he(t)&&n.queries.elementEnd(t)),ze}function ei(t,n,e){return je(t,n,e),ze(),ei}function Fe(){return se()}function Fu(t){return!!t&&"function"==typeof t.then}function _S(t){return!!t&&"function"==typeof t.subscribe}const iy=_S;function ee(t,n,e,i){const r=se(),s=jt(),a=si();return yS(s,r,r[11],a,t,n,0,i),ee}function ry(t,n){const e=si(),i=se(),r=jt();return yS(r,i,rS(wm(r.data),e,i),e,t,n),ry}function yS(t,n,e,i,r,s,a,o){const l=Pe(i),h=t.firstCreatePass&&iS(t),p=n[8],C=nS(n);let w=!0;if(3&i.type||o){const U=cr(i,n),z=o?o(U):U,ie=C.length,X=o?mt=>o(Jn(mt[i.index])):i.index;let Ce=null;if(!o&&l&&(Ce=function qF(t,n,e,i){const r=t.cleanup;if(null!=r)for(let s=0;s<r.length-1;s+=2){const a=r[s];if(a===e&&r[s+1]===i){const o=n[7],l=r[s+2];return o.length>l?o[l]:null}"string"==typeof a&&(s+=2)}return null}(t,n,r,i.index)),null!==Ce)(Ce.__ngLastListenerFn__||Ce).__ngNextListenerFn__=s,Ce.__ngLastListenerFn__=s,w=!1;else{s=vS(i,n,p,s,!1);const mt=e.listen(z,r,s);C.push(s,mt),h&&h.push(r,X,ie,ie+1)}}else s=vS(i,n,p,s,!1);const k=i.outputs;let L;if(w&&null!==k&&(L=k[r])){const U=L.length;if(U)for(let z=0;z<U;z+=2){const It=n[L[z]][L[z+1]].subscribe(s),on=C.length;C.push(s,It),h&&h.push(r,i.index,on,-(on+1))}}}function AS(t,n,e,i){try{return!1!==e(i)}catch(r){return sS(t,r),!1}}function vS(t,n,e,i,r){return function s(a){if(a===Function)return i;Q_(2&t.flags?ur(t.index,n):n);let l=AS(n,0,i,a),u=s.__ngNextListenerFn__;for(;u;)l=AS(n,0,u,a)&&l,u=u.__ngNextListenerFn__;return r&&!1===l&&(a.preventDefault(),a.returnValue=!1),l}}function I(t=1){return function zL(t){return(ht.lFrame.contextLView=function HL(t,n){for(;t>0;)n=n[15],t--;return n}(t,ht.lFrame.contextLView))[8]}(t)}function XF(t,n){let e=null;const i=function bN(t){const n=t.attrs;if(null!=n){const e=n.indexOf(5);if(0==(1&e))return n[e+1]}return null}(t);for(let r=0;r<n.length;r++){const s=n[r];if("*"!==s){if(null===i?yE(t,s,!0):EN(i,s))return r}else e=r}return e}function Ci(t){const n=se()[16][6];if(!n.projection){const i=n.projection=bu(t?t.length:1,null),r=i.slice();let s=n.child;for(;null!==s;){const a=t?XF(s,t):0;null!==a&&(r[a]?r[a].projectionNext=s:i[a]=s,r[a]=s),s=s.next}}}function rn(t,n=0,e){const i=se(),r=jt(),s=ql(r,22+t,16,null,e||null);null===s.projection&&(s.projection=n),Sm(),64!=(64&s.flags)&&function hP(t,n,e){HT(n[11],0,n,e,LT(t,e,n),BT(e.parent||n[6],e,n))}(r,i,s)}function Io(t,n,e){return sy(t,"",n,"",e),Io}function sy(t,n,e,i,r){const s=se(),a=Zl(s,n,e,i);return a!==gt&&gr(jt(),kn(),s,t,a,s[11],r,!1),sy}function kS(t,n,e,i,r){const s=t[e+1],a=null===n;let o=i?Jr(s):ta(s),l=!1;for(;0!==o&&(!1===l||a);){const h=t[o+1];$F(t[o],n)&&(l=!0,t[o+1]=i?L_(h):R_(h)),o=i?Jr(h):ta(h)}l&&(t[e+1]=i?R_(s):L_(s))}function $F(t,n){return null===t||null==n||(Array.isArray(t)?t[1]:t)===n||!(!Array.isArray(t)||"string"!=typeof n)&&Ul(t,n)>=0}const oi={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function IS(t){return t.substring(oi.key,oi.keyEnd)}function MS(t,n){const e=oi.textEnd;return e===n?-1:(n=oi.keyEnd=function n2(t,n,e){for(;n<e&&t.charCodeAt(n)>32;)n++;return n}(t,oi.key=n,e),sc(t,n,e))}function sc(t,n,e){for(;n<e&&t.charCodeAt(n)<=32;)n++;return n}function Lr(t,n,e){return es(t,n,e,!1),Lr}function Mt(t,n){return es(t,n,null,!0),Mt}function uf(t){ts(hr,Es,t,!0)}function Es(t,n){for(let e=function e2(t){return function OS(t){oi.key=0,oi.keyEnd=0,oi.value=0,oi.valueEnd=0,oi.textEnd=t.length}(t),MS(t,sc(t,0,oi.textEnd))}(n);e>=0;e=MS(n,e))hr(t,IS(n),!0)}function es(t,n,e,i){const r=se(),s=jt(),a=qs(2);s.firstUpdatePass&&FS(s,t,a,i),n!==gt&&xi(r,a,n)&&VS(s,s.data[Ui()],r,r[11],t,r[a+1]=function f2(t,n){return null==t||("string"==typeof n?t+=n:"object"==typeof t&&(t=qt(pr(t)))),t}(n,e),i,a)}function ts(t,n,e,i){const r=jt(),s=qs(2);r.firstUpdatePass&&FS(r,null,s,i);const a=se();if(e!==gt&&xi(a,s,e)){const o=r.data[Ui()];if(jS(o,i)&&!NS(r,s)){let l=i?o.classesWithoutHost:o.stylesWithoutHost;null!==l&&(e=uu(l,e||"")),ny(r,o,a,e,i)}else!function h2(t,n,e,i,r,s,a,o){r===gt&&(r=H);let l=0,u=0,h=0<r.length?r[0]:null,p=0<s.length?s[0]:null;for(;null!==h||null!==p;){const C=l<r.length?r[l+1]:void 0,w=u<s.length?s[u+1]:void 0;let L,k=null;h===p?(l+=2,u+=2,C!==w&&(k=p,L=w)):null===p||null!==h&&h<p?(l+=2,k=h):(u+=2,k=p,L=w),null!==k&&VS(t,n,e,i,k,L,a,o),h=l<r.length?r[l]:null,p=u<s.length?s[u]:null}}(r,o,a,a[11],a[s+1],a[s+1]=function d2(t,n,e){if(null==e||""===e)return H;const i=[],r=pr(e);if(Array.isArray(r))for(let s=0;s<r.length;s++)t(i,r[s],!0);else if("object"==typeof r)for(const s in r)r.hasOwnProperty(s)&&t(i,s,r[s]);else"string"==typeof r&&n(i,r);return i}(t,n,e),i,s)}}function NS(t,n){return n>=t.expandoStartIndex}function FS(t,n,e,i){const r=t.data;if(null===r[e+1]){const s=r[Ui()],a=NS(t,e);jS(s,i)&&null===n&&!a&&(n=!1),n=function o2(t,n,e,i){const r=wm(t);let s=i?n.residualClasses:n.residualStyles;if(null===r)0===(i?n.classBindings:n.styleBindings)&&(e=Bu(e=ay(null,t,n,e,i),n.attrs,i),s=null);else{const a=n.directiveStylingLast;if(-1===a||t[a]!==r)if(e=ay(r,t,n,e,i),null===s){let l=function l2(t,n,e){const i=e?n.classBindings:n.styleBindings;if(0!==ta(i))return t[Jr(i)]}(t,n,i);void 0!==l&&Array.isArray(l)&&(l=ay(null,t,n,l[1],i),l=Bu(l,n.attrs,i),function c2(t,n,e,i){t[Jr(e?n.classBindings:n.styleBindings)]=i}(t,n,i,l))}else s=function u2(t,n,e){let i;const r=n.directiveEnd;for(let s=1+n.directiveStylingLast;s<r;s++)i=Bu(i,t[s].hostAttrs,e);return Bu(i,n.attrs,e)}(t,n,i)}return void 0!==s&&(i?n.residualClasses=s:n.residualStyles=s),e}(r,s,n,i),function QF(t,n,e,i,r,s){let a=s?n.classBindings:n.styleBindings,o=Jr(a),l=ta(a);t[i]=e;let h,u=!1;if(Array.isArray(e)){const p=e;h=p[1],(null===h||Ul(p,h)>0)&&(u=!0)}else h=e;if(r)if(0!==l){const C=Jr(t[o+1]);t[i+1]=Zh(C,o),0!==C&&(t[C+1]=O_(t[C+1],i)),t[o+1]=function KN(t,n){return 131071&t|n<<17}(t[o+1],i)}else t[i+1]=Zh(o,0),0!==o&&(t[o+1]=O_(t[o+1],i)),o=i;else t[i+1]=Zh(l,0),0===o?o=i:t[l+1]=O_(t[l+1],i),l=i;u&&(t[i+1]=R_(t[i+1])),kS(t,h,i,!0),kS(t,h,i,!1),function ZF(t,n,e,i,r){const s=r?t.residualClasses:t.residualStyles;null!=s&&"string"==typeof n&&Ul(s,n)>=0&&(e[i+1]=L_(e[i+1]))}(n,h,t,i,s),a=Zh(o,l),s?n.classBindings=a:n.styleBindings=a}(r,s,n,e,a,i)}}function ay(t,n,e,i,r){let s=null;const a=e.directiveEnd;let o=e.directiveStylingLast;for(-1===o?o=e.directiveStart:o++;o<a&&(s=n[o],i=Bu(i,s.hostAttrs,r),s!==t);)o++;return null!==t&&(e.directiveStylingLast=o),i}function Bu(t,n,e){const i=e?1:2;let r=-1;if(null!==n)for(let s=0;s<n.length;s++){const a=n[s];"number"==typeof a?r=a:r===i&&(Array.isArray(t)||(t=void 0===t?[]:["",t]),hr(t,a,!!e||n[++s]))}return void 0===t?null:t}function VS(t,n,e,i,r,s,a,o){if(!(3&n.type))return;const l=t.data,u=l[o+1];df(function LE(t){return 1==(1&t)}(u)?US(l,n,e,r,ta(u),a):void 0)||(df(s)||function OE(t){return 2==(2&t)}(u)&&(s=US(l,null,e,r,o,a)),function pP(t,n,e,i,r){if(n)r?t.addClass(e,i):t.removeClass(e,i);else{let s=-1===i.indexOf("-")?void 0:tr.DashCase;null==r?t.removeStyle(e,i,s):("string"==typeof r&&r.endsWith("!important")&&(r=r.slice(0,-10),s|=tr.Important),t.setStyle(e,i,r,s))}}(i,a,Sh(Ui(),e),r,s))}function US(t,n,e,i,r,s){const a=null===n;let o;for(;r>0;){const l=t[r],u=Array.isArray(l),h=u?l[1]:l,p=null===h;let C=e[r+1];C===gt&&(C=p?H:void 0);let w=p?Um(C,i):h===i?C:void 0;if(u&&!df(w)&&(w=Um(l,i)),df(w)&&(o=w,a))return o;const k=t[r+1];r=a?Jr(k):ta(k)}if(null!==n){let l=s?n.residualClasses:n.residualStyles;null!=l&&(o=Um(l,i))}return o}function df(t){return void 0!==t}function jS(t,n){return 0!=(t.flags&(n?16:32))}function V(t,n=""){const e=se(),i=jt(),r=t+22,s=i.firstCreatePass?ql(i,r,1,n,null):i.data[r],a=e[r]=function t_(t,n){return t.createText(n)}(e[11],n);zh(i,e,a,s),_s(s,!1)}function re(t){return Ve("",t,""),re}function Ve(t,n,e){const i=se(),r=Zl(i,t,n,e);return r!==gt&&na(i,Ui(),r),Ve}function oy(t,n,e,i,r,s,a){const o=se(),l=Jl(o,t,n,e,i,r,s,a);return l!==gt&&na(o,Ui(),l),oy}function hf(t,n,e){ts(hr,Es,Zl(se(),t,n,e),!0)}function Mo(t,n,e){const i=se();return xi(i,Rl(),n)&&gr(jt(),kn(),i,t,n,i[11],e,!0),Mo}function ly(t,n,e){const i=se();if(xi(i,Rl(),n)){const s=jt(),a=kn();gr(s,a,i,t,n,rS(wm(s.data),a,i),e,!0)}return ly}const Ro=void 0;var R2=["en",[["a","p"],["AM","PM"],Ro],[["AM","PM"],Ro,Ro],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],Ro,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],Ro,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm a","h:mm:ss a","h:mm:ss a z","h:mm:ss a zzzz"],["{1}, {0}",Ro,"{1} 'at' {0}",Ro],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",function M2(t){const e=Math.floor(Math.abs(t)),i=t.toString().replace(/^[^.]*\.?/,"").length;return 1===e&&0===i?1:5}];let ac={};function zi(t){const n=function O2(t){return t.toLowerCase().replace(/_/g,"-")}(t);let e=sD(n);if(e)return e;const i=n.split("-")[0];if(e=sD(i),e)return e;if("en"===i)return R2;throw new ne(701,!1)}function sD(t){return t in ac||(ac[t]=T.ng&&T.ng.common&&T.ng.common.locales&&T.ng.common.locales[t]),ac[t]}var we=(()=>((we=we||{})[we.LocaleId=0]="LocaleId",we[we.DayPeriodsFormat=1]="DayPeriodsFormat",we[we.DayPeriodsStandalone=2]="DayPeriodsStandalone",we[we.DaysFormat=3]="DaysFormat",we[we.DaysStandalone=4]="DaysStandalone",we[we.MonthsFormat=5]="MonthsFormat",we[we.MonthsStandalone=6]="MonthsStandalone",we[we.Eras=7]="Eras",we[we.FirstDayOfWeek=8]="FirstDayOfWeek",we[we.WeekendRange=9]="WeekendRange",we[we.DateFormat=10]="DateFormat",we[we.TimeFormat=11]="TimeFormat",we[we.DateTimeFormat=12]="DateTimeFormat",we[we.NumberSymbols=13]="NumberSymbols",we[we.NumberFormats=14]="NumberFormats",we[we.CurrencyCode=15]="CurrencyCode",we[we.CurrencySymbol=16]="CurrencySymbol",we[we.CurrencyName=17]="CurrencyName",we[we.Currencies=18]="Currencies",we[we.Directionality=19]="Directionality",we[we.PluralCase=20]="PluralCase",we[we.ExtraData=21]="ExtraData",we))();const oc="en-US";let aD=oc;function dy(t,n,e,i,r){if(t=Ze(t),Array.isArray(t))for(let s=0;s<t.length;s++)dy(t[s],n,e,i,r);else{const s=jt(),a=se();let o=wo(t)?t:Ze(t.provide),l=dE(t);const u=si(),h=1048575&u.providerIndexes,p=u.directiveStart,C=u.providerIndexes>>20;if(wo(t)||!t.multi){const w=new gu(l,r,_),k=fy(o,n,r?h:h+C,p);-1===k?(Lh(_u(u,a),s,o),hy(s,t,n.length),n.push(o),u.directiveStart++,u.directiveEnd++,r&&(u.providerIndexes+=1048576),e.push(w),a.push(w)):(e[k]=w,a[k]=w)}else{const w=fy(o,n,h+C,p),k=fy(o,n,h,h+C),L=w>=0&&e[w],U=k>=0&&e[k];if(r&&!U||!r&&!L){Lh(_u(u,a),s,o);const z=function IB(t,n,e,i,r){const s=new gu(t,e,_);return s.multi=[],s.index=n,s.componentProviders=0,MD(s,r,i&&!e),s}(r?kB:xB,e.length,r,i,l);!r&&U&&(e[k].providerFactory=z),hy(s,t,n.length,0),n.push(o),u.directiveStart++,u.directiveEnd++,r&&(u.providerIndexes+=1048576),e.push(z),a.push(z)}else hy(s,t,w>-1?w:k,MD(e[r?k:w],l,!r&&i));!r&&i&&U&&e[k].componentProviders++}}}function hy(t,n,e,i){const r=wo(n),s=function YP(t){return!!t.useClass}(n);if(r||s){const l=(s?Ze(n.useClass):n).prototype.ngOnDestroy;if(l){const u=t.destroyHooks||(t.destroyHooks=[]);if(!r&&n.multi){const h=u.indexOf(e);-1===h?u.push(e,[i,l]):u[h+1].push(i,l)}else u.push(e,l)}}}function MD(t,n,e){return e&&t.componentProviders++,t.multi.push(n)-1}function fy(t,n,e,i){for(let r=e;r<i;r++)if(n[r]===t)return r;return-1}function xB(t,n,e,i){return py(this.multi,[])}function kB(t,n,e,i){const r=this.multi;let s;if(this.providerFactory){const a=this.providerFactory.componentProviders,o=yu(e,e[1],this.providerFactory.index,i);s=o.slice(0,a),py(r,s);for(let l=a;l<o.length;l++)s.push(o[l])}else s=[],py(r,s);return s}function py(t,n){for(let e=0;e<t.length;e++)n.push((0,t[e])());return n}function $e(t,n=[]){return e=>{e.providersResolver=(i,r)=>function wB(t,n,e){const i=jt();if(i.firstCreatePass){const r=fe(t);dy(e,i.data,i.blueprint,r,!0),dy(n,i.data,i.blueprint,r,!1)}}(i,r?r(t):t,n)}}class Oo{}class RD{}class OD extends Oo{constructor(n,e){super(),this._parent=e,this._bootstrapComponents=[],this.destroyCbs=[],this.componentFactoryResolver=new J_(this);const i=Nn(n);this._bootstrapComponents=ea(i.bootstrap),this._r3Injector=SE(n,e,[{provide:Oo,useValue:this},{provide:Zs,useValue:this.componentFactoryResolver}],qt(n),new Set(["environment"])),this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(n)}get injector(){return this._r3Injector}destroy(){const n=this._r3Injector;!n.destroyed&&n.destroy(),this.destroyCbs.forEach(e=>e()),this.destroyCbs=null}onDestroy(n){this.destroyCbs.push(n)}}class gy extends RD{constructor(n){super(),this.moduleType=n}create(n){return new OD(this.moduleType,n)}}class RB extends Oo{constructor(n,e,i){super(),this.componentFactoryResolver=new J_(this),this.instance=null;const r=new uE([...n,{provide:Oo,useValue:this},{provide:Zs,useValue:this.componentFactoryResolver}],e||Xh(),i,new Set(["environment"]));this.injector=r,r.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(n){this.injector.onDestroy(n)}}function _f(t,n,e=null){return new RB(t,n,e).injector}let OB=(()=>{class t{constructor(e){this._injector=e,this.cachedInjectors=new Map}getOrCreateStandaloneInjector(e){if(!e.standalone)return null;if(!this.cachedInjectors.has(e.id)){const i=aE(0,e.type),r=i.length>0?_f([i],this._injector,`Standalone[${e.type.name}]`):null;this.cachedInjectors.set(e.id,r)}return this.cachedInjectors.get(e.id)}ngOnDestroy(){try{for(const e of this.cachedInjectors.values())null!==e&&e.destroy()}finally{this.cachedInjectors.clear()}}}return t.\u0275prov=q({token:t,providedIn:"environment",factory:()=>new t(R(Va))}),t})();function LD(t){t.getStandaloneInjector=n=>n.get(OB).getOrCreateStandaloneInjector(t)}function _y(t,n,e){const i=Vi()+t,r=se();return r[i]===gt?Cs(r,i,e?n.call(e):n()):function Nu(t,n){return t[n]}(r,i)}function fn(t,n,e,i){return jD(se(),Vi(),t,n,e,i)}function Gu(t,n,e,i,r){return zD(se(),Vi(),t,n,e,i,r)}function Lo(t,n,e,i,r,s){return function HD(t,n,e,i,r,s,a,o){const l=n+e;return cf(t,l,r,s,a)?Cs(t,l+3,o?i.call(o,r,s,a):i(r,s,a)):Wu(t,l+3)}(se(),Vi(),t,n,e,i,r,s)}function yy(t,n,e,i,r,s,a){return GD(se(),Vi(),t,n,e,i,r,s,a)}function Wu(t,n){const e=t[n];return e===gt?void 0:e}function jD(t,n,e,i,r,s){const a=n+e;return xi(t,a,r)?Cs(t,a+1,s?i.call(s,r):i(r)):Wu(t,a+1)}function zD(t,n,e,i,r,s,a){const o=n+e;return ko(t,o,r,s)?Cs(t,o+2,a?i.call(a,r,s):i(r,s)):Wu(t,o+2)}function GD(t,n,e,i,r,s,a,o,l){const u=n+e;return function Or(t,n,e,i,r,s){const a=ko(t,n,e,i);return ko(t,n+2,r,s)||a}(t,u,r,s,a,o)?Cs(t,u+4,l?i.call(l,r,s,a,o):i(r,s,a,o)):Wu(t,u+4)}function F(t,n){const e=jt();let i;const r=t+22;e.firstCreatePass?(i=function YB(t,n){if(n)for(let e=n.length-1;e>=0;e--){const i=n[e];if(t===i.name)return i}}(n,e.pipeRegistry),e.data[r]=i,i.onDestroy&&(e.destroyHooks||(e.destroyHooks=[])).push(r,i.onDestroy)):i=e.data[r];const s=i.factory||(i.factory=Co(i.type)),a=er(_);try{const o=Rh(!1),l=s();return Rh(o),function WF(t,n,e,i){e>=t.data.length&&(t.data[e]=null,t.blueprint[e]=null),n[e]=i}(e,se(),r,l),l}finally{er(a)}}function j(t,n,e){const i=t+22,r=se(),s=Ml(r,i);return Ku(r,i)?jD(r,Vi(),n,s.transform,e,s):s.transform(e)}function bn(t,n,e,i){const r=t+22,s=se(),a=Ml(s,r);return Ku(s,r)?zD(s,Vi(),n,a.transform,e,i,a):a.transform(e,i)}function yf(t,n,e,i,r,s){const a=t+22,o=se(),l=Ml(o,a);return Ku(o,a)?GD(o,Vi(),n,l.transform,e,i,r,s,l):l.transform(e,i,r,s)}function Ku(t,n){return t[1].data[n].pure}function Ay(t){return n=>{setTimeout(t,void 0,n)}}const Ae=class QB extends pe{constructor(n=!1){super(),this.__isAsync=n}emit(n){super.next(n)}subscribe(n,e,i){let r=n,s=e||(()=>null),a=i;if(n&&"object"==typeof n){const l=n;r=l.next?.bind(l),s=l.error?.bind(l),a=l.complete?.bind(l)}this.__isAsync&&(s=Ay(s),r&&(r=Ay(r)),a&&(a=Ay(a)));const o=super.subscribe({next:r,error:s,complete:a});return n instanceof ae&&n.add(o),o}};function ZB(){return this._results[xo()]()}class lc{constructor(n=!1){this._emitDistinctChangesOnly=n,this.dirty=!0,this._results=[],this._changesDetected=!1,this._changes=null,this.length=0,this.first=void 0,this.last=void 0;const e=xo(),i=lc.prototype;i[e]||(i[e]=ZB)}get changes(){return this._changes||(this._changes=new Ae)}get(n){return this._results[n]}map(n){return this._results.map(n)}filter(n){return this._results.filter(n)}find(n){return this._results.find(n)}reduce(n,e){return this._results.reduce(n,e)}forEach(n){this._results.forEach(n)}some(n){return this._results.some(n)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(n,e){const i=this;i.dirty=!1;const r=dr(n);(this._changesDetected=!function c1(t,n,e){if(t.length!==n.length)return!1;for(let i=0;i<t.length;i++){let r=t[i],s=n[i];if(e&&(r=e(r),s=e(s)),s!==r)return!1}return!0}(i._results,r,e))&&(i._results=r,i.length=r.length,i.last=r[this.length-1],i.first=r[0])}notifyOnChanges(){this._changes&&(this._changesDetected||!this._emitDistinctChangesOnly)&&this._changes.emit(this)}setDirty(){this.dirty=!0}destroy(){this.changes.complete(),this.changes.unsubscribe()}}let li=(()=>{class t{}return t.__NG_ELEMENT_ID__=eV,t})();const $B=li,JB=class extends $B{constructor(n,e,i){super(),this._declarationLView=n,this._declarationTContainer=e,this.elementRef=i}createEmbeddedView(n,e){const i=this._declarationTContainer.tViews,r=ef(this._declarationLView,i,n,16,null,i.declTNode,null,null,null,null,e||null);r[17]=this._declarationLView[this._declarationTContainer.index];const a=this._declarationLView[19];return null!==a&&(r[19]=a.createEmbeddedView(i)),H_(i,r,n),new Ou(r)}};function eV(){return Af(si(),se())}function Af(t,n){return 4&t.type?new JB(n,t,Wl(t,n)):null}let ci=(()=>{class t{}return t.__NG_ELEMENT_ID__=tV,t})();function tV(){return qD(si(),se())}const nV=ci,KD=class extends nV{constructor(n,e,i){super(),this._lContainer=n,this._hostTNode=e,this._hostLView=i}get element(){return Wl(this._hostTNode,this._hostLView)}get injector(){return new Pl(this._hostTNode,this._hostLView)}get parentInjector(){const n=Oh(this._hostTNode,this._hostLView);if(qC(n)){const e=Ll(n,this._hostLView),i=Ol(n);return new Pl(e[1].data[i+8],e)}return new Pl(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(n){const e=YD(this._lContainer);return null!==e&&e[n]||null}get length(){return this._lContainer.length-N}createEmbeddedView(n,e,i){let r,s;"number"==typeof i?r=i:null!=i&&(r=i.index,s=i.injector);const a=n.createEmbeddedView(e||{},s);return this.insert(a,r),a}createComponent(n,e,i,r,s){const a=n&&!function vu(t){return"function"==typeof t}(n);let o;if(a)o=e;else{const p=e||{};o=p.index,i=p.injector,r=p.projectableNodes,s=p.environmentInjector||p.ngModuleRef}const l=a?n:new Lu(Tt(n)),u=i||this.parentInjector;if(!s&&null==l.ngModule){const C=(a?u:this.parentInjector).get(Va,null);C&&(s=C)}const h=l.create(u,r,void 0,s);return this.insert(h.hostView,o),h}insert(n,e){const i=n._lView,r=i[1];if(function ML(t){return Q(t[3])}(i)){const h=this.indexOf(n);if(-1!==h)this.detach(h);else{const p=i[3],C=new KD(p,p[6],p[3]);C.detach(C.indexOf(n))}}const s=this._adjustIndex(e),a=this._lContainer;!function aP(t,n,e,i){const r=N+i,s=e.length;i>0&&(e[r-1][4]=n),i<s-N?(n[4]=e[r],sT(e,N+i,n)):(e.push(n),n[4]=null),n[3]=e;const a=n[17];null!==a&&e!==a&&function oP(t,n){const e=t[9];n[16]!==n[3][3][16]&&(t[2]=!0),null===e?t[9]=[n]:e.push(n)}(a,n);const o=n[19];null!==o&&o.insertView(t),n[2]|=64}(r,i,a,s);const o=a_(s,a),l=i[11],u=jh(l,a[7]);return null!==u&&function iP(t,n,e,i,r,s){i[0]=r,i[6]=n,ku(t,i,e,1,r,s)}(r,a[6],l,i,u,o),n.attachToViewContainerRef(),sT(vy(a),s,n),n}move(n,e){return this.insert(n,e)}indexOf(n){const e=YD(this._lContainer);return null!==e?e.indexOf(n):-1}remove(n){const e=this._adjustIndex(n,-1),i=i_(this._lContainer,e);i&&(Nh(vy(this._lContainer),e),OT(i[1],i))}detach(n){const e=this._adjustIndex(n,-1),i=i_(this._lContainer,e);return i&&null!=Nh(vy(this._lContainer),e)?new Ou(i):null}_adjustIndex(n,e=0){return n??this.length+e}};function YD(t){return t[8]}function vy(t){return t[8]||(t[8]=[])}function qD(t,n){let e;const i=n[t.index];if(Q(i))e=i;else{let r;if(8&t.type)r=Jn(i);else{const s=n[11];r=s.createComment("");const a=cr(t,n);Eo(s,jh(s,a),r,function dP(t,n){return t.nextSibling(n)}(s,a),!1)}n[t.index]=e=tS(i,n,r,t),nf(n,e)}return new KD(e,t,n)}class by{constructor(n){this.queryList=n,this.matches=null}clone(){return new by(this.queryList)}setDirty(){this.queryList.setDirty()}}class Cy{constructor(n=[]){this.queries=n}createEmbeddedView(n){const e=n.queries;if(null!==e){const i=null!==n.contentQueries?n.contentQueries[0]:e.length,r=[];for(let s=0;s<i;s++){const a=e.getByIndex(s);r.push(this.queries[a.indexInDeclarationView].clone())}return new Cy(r)}return null}insertView(n){this.dirtyQueriesWithMatches(n)}detachView(n){this.dirtyQueriesWithMatches(n)}dirtyQueriesWithMatches(n){for(let e=0;e<this.queries.length;e++)null!==JD(n,e).matches&&this.queries[e].setDirty()}}class XD{constructor(n,e,i=null){this.predicate=n,this.flags=e,this.read=i}}class Ty{constructor(n=[]){this.queries=n}elementStart(n,e){for(let i=0;i<this.queries.length;i++)this.queries[i].elementStart(n,e)}elementEnd(n){for(let e=0;e<this.queries.length;e++)this.queries[e].elementEnd(n)}embeddedTView(n){let e=null;for(let i=0;i<this.length;i++){const r=null!==e?e.length:0,s=this.getByIndex(i).embeddedTView(n,r);s&&(s.indexInDeclarationView=i,null!==e?e.push(s):e=[s])}return null!==e?new Ty(e):null}template(n,e){for(let i=0;i<this.queries.length;i++)this.queries[i].template(n,e)}getByIndex(n){return this.queries[n]}get length(){return this.queries.length}track(n){this.queries.push(n)}}class Ey{constructor(n,e=-1){this.metadata=n,this.matches=null,this.indexInDeclarationView=-1,this.crossesNgTemplate=!1,this._appliesToNextNode=!0,this._declarationNodeIndex=e}elementStart(n,e){this.isApplyingToNode(e)&&this.matchTNode(n,e)}elementEnd(n){this._declarationNodeIndex===n.index&&(this._appliesToNextNode=!1)}template(n,e){this.elementStart(n,e)}embeddedTView(n,e){return this.isApplyingToNode(n)?(this.crossesNgTemplate=!0,this.addMatch(-n.index,e),new Ey(this.metadata)):null}isApplyingToNode(n){if(this._appliesToNextNode&&1!=(1&this.metadata.flags)){const e=this._declarationNodeIndex;let i=n.parent;for(;null!==i&&8&i.type&&i.index!==e;)i=i.parent;return e===(null!==i?i.index:-1)}return this._appliesToNextNode}matchTNode(n,e){const i=this.metadata.predicate;if(Array.isArray(i))for(let r=0;r<i.length;r++){const s=i[r];this.matchTNodeWithReadOption(n,e,sV(e,s)),this.matchTNodeWithReadOption(n,e,Ph(e,n,s,!1,!1))}else i===li?4&e.type&&this.matchTNodeWithReadOption(n,e,-1):this.matchTNodeWithReadOption(n,e,Ph(e,n,i,!1,!1))}matchTNodeWithReadOption(n,e,i){if(null!==i){const r=this.metadata.read;if(null!==r)if(r===be||r===ci||r===li&&4&e.type)this.addMatch(e.index,-2);else{const s=Ph(e,n,r,!1,!1);null!==s&&this.addMatch(e.index,s)}else this.addMatch(e.index,i)}}addMatch(n,e){null===this.matches?this.matches=[n,e]:this.matches.push(n,e)}}function sV(t,n){const e=t.localNames;if(null!==e)for(let i=0;i<e.length;i+=2)if(e[i]===n)return e[i+1];return null}function oV(t,n,e,i){return-1===e?function aV(t,n){return 11&t.type?Wl(t,n):4&t.type?Af(t,n):null}(n,t):-2===e?function lV(t,n,e){return e===be?Wl(n,t):e===li?Af(n,t):e===ci?qD(n,t):void 0}(t,n,i):yu(t,t[1],e,n)}function QD(t,n,e,i){const r=n[19].queries[i];if(null===r.matches){const s=t.data,a=e.matches,o=[];for(let l=0;l<a.length;l+=2){const u=a[l];o.push(u<0?null:oV(n,s[u],a[l+1],e.metadata.read))}r.matches=o}return r.matches}function Sy(t,n,e,i){const r=t.queries.getByIndex(e),s=r.matches;if(null!==s){const a=QD(t,n,r,e);for(let o=0;o<s.length;o+=2){const l=s[o];if(l>0)i.push(a[o/2]);else{const u=s[o+1],h=n[-l];for(let p=N;p<h.length;p++){const C=h[p];C[17]===C[3]&&Sy(C[1],C,u,i)}if(null!==h[9]){const p=h[9];for(let C=0;C<p.length;C++){const w=p[C];Sy(w[1],w,u,i)}}}}}return i}function xe(t){const n=se(),e=jt(),i=BC();xm(i+1);const r=JD(e,i);if(t.dirty&&function IL(t){return 4==(4&t[2])}(n)===(2==(2&r.metadata.flags))){if(null===r.matches)t.reset([]);else{const s=r.crossesNgTemplate?Sy(e,n,i,[]):QD(e,n,r,i);t.reset(s,sN),t.notifyOnChanges()}return!0}return!1}function it(t,n,e){const i=jt();i.firstCreatePass&&($D(i,new XD(t,n,e),-1),2==(2&n)&&(i.staticViewQueries=!0)),ZD(i,se(),n)}function Cn(t,n,e,i){const r=jt();if(r.firstCreatePass){const s=si();$D(r,new XD(n,e,i),s.index),function uV(t,n){const e=t.contentQueries||(t.contentQueries=[]);n!==(e.length?e[e.length-1]:-1)&&e.push(t.queries.length-1,n)}(r,t),2==(2&e)&&(r.staticContentQueries=!0)}ZD(r,se(),e)}function ke(){return function cV(t,n){return t[19].queries[n].queryList}(se(),BC())}function ZD(t,n,e){const i=new lc(4==(4&e));KE(t,n,i,i.destroy),null===n[19]&&(n[19]=new Cy),n[19].queries.push(new by(i))}function $D(t,n,e){null===t.queries&&(t.queries=new Ty),t.queries.track(new Ey(n,e))}function JD(t,n){return t.queries.getByIndex(n)}function pi(t,n){return Af(t,n)}function bf(...t){}const Cf=new Z("Application Initializer");let Tf=(()=>{class t{constructor(e){this.appInits=e,this.resolve=bf,this.reject=bf,this.initialized=!1,this.done=!1,this.donePromise=new Promise((i,r)=>{this.resolve=i,this.reject=r})}runInitializers(){if(this.initialized)return;const e=[],i=()=>{this.done=!0,this.resolve()};if(this.appInits)for(let r=0;r<this.appInits.length;r++){const s=this.appInits[r]();if(Fu(s))e.push(s);else if(iy(s)){const a=new Promise((o,l)=>{s.subscribe({complete:o,error:l})});e.push(a)}}Promise.all(e).then(()=>{i()}).catch(r=>{this.reject(r)}),0===e.length&&i(),this.initialized=!0}}return t.\u0275fac=function(e){return new(e||t)(R(Cf,8))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const dc=new Z("AppId",{providedIn:"root",factory:function yw(){return`${Iy()}${Iy()}${Iy()}`}});function Iy(){return String.fromCharCode(97+Math.floor(25*Math.random()))}const Aw=new Z("Platform Initializer"),Pr=new Z("Platform ID",{providedIn:"platform",factory:()=>"unknown"}),My=new Z("appBootstrapListener"),nr=new Z("AnimationModuleType");let IV=(()=>{class t{log(e){console.log(e)}warn(e){console.warn(e)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"platform"}),t})();const Ss=new Z("LocaleId",{providedIn:"root",factory:()=>nn(Ss,We.Optional|We.SkipSelf)||function MV(){return typeof $localize<"u"&&$localize.locale||oc}()});class OV{constructor(n,e){this.ngModuleFactory=n,this.componentFactories=e}}let Ry=(()=>{class t{compileModuleSync(e){return new gy(e)}compileModuleAsync(e){return Promise.resolve(this.compileModuleSync(e))}compileModuleAndAllComponentsSync(e){const i=this.compileModuleSync(e),s=ea(Nn(e).declarations).reduce((a,o)=>{const l=Tt(o);return l&&a.push(new Lu(l)),a},[]);return new OV(i,s)}compileModuleAndAllComponentsAsync(e){return Promise.resolve(this.compileModuleAndAllComponentsSync(e))}clearCache(){}clearCacheFor(e){}getModuleId(e){}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const NV=(()=>Promise.resolve(0))();function Oy(t){typeof Zone>"u"?NV.then(()=>{t&&t.apply(null,null)}):Zone.current.scheduleMicroTask("scheduleMicrotask",t)}class He{constructor({enableLongStackTrace:n=!1,shouldCoalesceEventChangeDetection:e=!1,shouldCoalesceRunChangeDetection:i=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new Ae(!1),this.onMicrotaskEmpty=new Ae(!1),this.onStable=new Ae(!1),this.onError=new Ae(!1),typeof Zone>"u")throw new ne(908,!1);Zone.assertZonePatched();const r=this;if(r._nesting=0,r._outer=r._inner=Zone.current,Zone.AsyncStackTaggingZoneSpec){const s=Zone.AsyncStackTaggingZoneSpec;r._inner=r._inner.fork(new s("Angular"))}Zone.TaskTrackingZoneSpec&&(r._inner=r._inner.fork(new Zone.TaskTrackingZoneSpec)),n&&Zone.longStackTraceZoneSpec&&(r._inner=r._inner.fork(Zone.longStackTraceZoneSpec)),r.shouldCoalesceEventChangeDetection=!i&&e,r.shouldCoalesceRunChangeDetection=i,r.lastRequestAnimationFrameId=-1,r.nativeRequestAnimationFrame=function FV(){let t=T.requestAnimationFrame,n=T.cancelAnimationFrame;if(typeof Zone<"u"&&t&&n){const e=t[Zone.__symbol__("OriginalDelegate")];e&&(t=e);const i=n[Zone.__symbol__("OriginalDelegate")];i&&(n=i)}return{nativeRequestAnimationFrame:t,nativeCancelAnimationFrame:n}}().nativeRequestAnimationFrame,function UV(t){const n=()=>{!function VV(t){t.isCheckStableRunning||-1!==t.lastRequestAnimationFrameId||(t.lastRequestAnimationFrameId=t.nativeRequestAnimationFrame.call(T,()=>{t.fakeTopEventTask||(t.fakeTopEventTask=Zone.root.scheduleEventTask("fakeTopEventTask",()=>{t.lastRequestAnimationFrameId=-1,Py(t),t.isCheckStableRunning=!0,Ly(t),t.isCheckStableRunning=!1},void 0,()=>{},()=>{})),t.fakeTopEventTask.invoke()}),Py(t))}(t)};t._inner=t._inner.fork({name:"angular",properties:{isAngularZone:!0},onInvokeTask:(e,i,r,s,a,o)=>{try{return Cw(t),e.invokeTask(r,s,a,o)}finally{(t.shouldCoalesceEventChangeDetection&&"eventTask"===s.type||t.shouldCoalesceRunChangeDetection)&&n(),Tw(t)}},onInvoke:(e,i,r,s,a,o,l)=>{try{return Cw(t),e.invoke(r,s,a,o,l)}finally{t.shouldCoalesceRunChangeDetection&&n(),Tw(t)}},onHasTask:(e,i,r,s)=>{e.hasTask(r,s),i===r&&("microTask"==s.change?(t._hasPendingMicrotasks=s.microTask,Py(t),Ly(t)):"macroTask"==s.change&&(t.hasPendingMacrotasks=s.macroTask))},onHandleError:(e,i,r,s)=>(e.handleError(r,s),t.runOutsideAngular(()=>t.onError.emit(s)),!1)})}(r)}static isInAngularZone(){return typeof Zone<"u"&&!0===Zone.current.get("isAngularZone")}static assertInAngularZone(){if(!He.isInAngularZone())throw new ne(909,!1)}static assertNotInAngularZone(){if(He.isInAngularZone())throw new ne(909,!1)}run(n,e,i){return this._inner.run(n,e,i)}runTask(n,e,i,r){const s=this._inner,a=s.scheduleEventTask("NgZoneEvent: "+r,n,BV,bf,bf);try{return s.runTask(a,e,i)}finally{s.cancelTask(a)}}runGuarded(n,e,i){return this._inner.runGuarded(n,e,i)}runOutsideAngular(n){return this._outer.run(n)}}const BV={};function Ly(t){if(0==t._nesting&&!t.hasPendingMicrotasks&&!t.isStable)try{t._nesting++,t.onMicrotaskEmpty.emit(null)}finally{if(t._nesting--,!t.hasPendingMicrotasks)try{t.runOutsideAngular(()=>t.onStable.emit(null))}finally{t.isStable=!0}}}function Py(t){t.hasPendingMicrotasks=!!(t._hasPendingMicrotasks||(t.shouldCoalesceEventChangeDetection||t.shouldCoalesceRunChangeDetection)&&-1!==t.lastRequestAnimationFrameId)}function Cw(t){t._nesting++,t.isStable&&(t.isStable=!1,t.onUnstable.emit(null))}function Tw(t){t._nesting--,Ly(t)}class jV{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new Ae,this.onMicrotaskEmpty=new Ae,this.onStable=new Ae,this.onError=new Ae}run(n,e,i){return n.apply(e,i)}runGuarded(n,e,i){return n.apply(e,i)}runOutsideAngular(n){return n()}runTask(n,e,i,r){return n.apply(e,i)}}const Ew=new Z(""),Ef=new Z("");let By,Ny=(()=>{class t{constructor(e,i,r){this._ngZone=e,this.registry=i,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,By||(function zV(t){By=t}(r),r.addToWindow(i)),this._watchAngularEvents(),e.run(()=>{this.taskTrackingZone=typeof Zone>"u"?null:Zone.current.get("TaskTrackingZone")})}_watchAngularEvents(){this._ngZone.onUnstable.subscribe({next:()=>{this._didWork=!0,this._isZoneStable=!1}}),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.subscribe({next:()=>{He.assertNotInAngularZone(),Oy(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}})})}increasePendingRequestCount(){return this._pendingCount+=1,this._didWork=!0,this._pendingCount}decreasePendingRequestCount(){if(this._pendingCount-=1,this._pendingCount<0)throw new Error("pending async requests below zero");return this._runCallbacksIfReady(),this._pendingCount}isStable(){return this._isZoneStable&&0===this._pendingCount&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())Oy(()=>{for(;0!==this._callbacks.length;){let e=this._callbacks.pop();clearTimeout(e.timeoutId),e.doneCb(this._didWork)}this._didWork=!1});else{let e=this.getPendingTasks();this._callbacks=this._callbacks.filter(i=>!i.updateCb||!i.updateCb(e)||(clearTimeout(i.timeoutId),!1)),this._didWork=!0}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(e=>({source:e.source,creationLocation:e.creationLocation,data:e.data})):[]}addCallback(e,i,r){let s=-1;i&&i>0&&(s=setTimeout(()=>{this._callbacks=this._callbacks.filter(a=>a.timeoutId!==s),e(this._didWork,this.getPendingTasks())},i)),this._callbacks.push({doneCb:e,timeoutId:s,updateCb:r})}whenStable(e,i,r){if(r&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/plugins/task-tracking" loaded?');this.addCallback(e,i,r),this._runCallbacksIfReady()}getPendingRequestCount(){return this._pendingCount}registerApplication(e){this.registry.registerApplication(e,this)}unregisterApplication(e){this.registry.unregisterApplication(e)}findProviders(e,i,r){return[]}}return t.\u0275fac=function(e){return new(e||t)(R(He),R(Fy),R(Ef))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})(),Fy=(()=>{class t{constructor(){this._applications=new Map}registerApplication(e,i){this._applications.set(e,i)}unregisterApplication(e){this._applications.delete(e)}unregisterAllApplications(){this._applications.clear()}getTestability(e){return this._applications.get(e)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(e,i=!0){return By?.findTestabilityInTree(this,e,i)??null}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"platform"}),t})(),Ha=null;const Sw=new Z("AllowMultipleToken"),Vy=new Z("PlatformDestroyListeners");class Dw{constructor(n,e){this.name=n,this.token=e}}function xw(t,n,e=[]){const i=`Platform: ${n}`,r=new Z(i);return(s=[])=>{let a=Uy();if(!a||a.injector.get(Sw,!1)){const o=[...e,...s,{provide:r,useValue:!0}];t?t(o):function WV(t){if(Ha&&!Ha.get(Sw,!1))throw new ne(400,!1);Ha=t;const n=t.get(Iw);(function ww(t){const n=t.get(Aw,null);n&&n.forEach(e=>e())})(t)}(function kw(t=[],n){return Fn.create({name:n,providers:[{provide:A_,useValue:"platform"},{provide:Vy,useValue:new Set([()=>Ha=null])},...t]})}(o,i))}return function YV(t){const n=Uy();if(!n)throw new ne(401,!1);return n}()}}function Uy(){return Ha?.get(Iw)??null}let Iw=(()=>{class t{constructor(e){this._injector=e,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(e,i){const r=function Rw(t,n){let e;return e="noop"===t?new jV:("zone.js"===t?void 0:t)||new He(n),e}(i?.ngZone,function Mw(t){return{enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:!(!t||!t.ngZoneEventCoalescing)||!1,shouldCoalesceRunChangeDetection:!(!t||!t.ngZoneRunCoalescing)||!1}}(i)),s=[{provide:He,useValue:r}];return r.run(()=>{const a=Fn.create({providers:s,parent:this.injector,name:e.moduleType.name}),o=e.create(a),l=o.injector.get(Js,null);if(!l)throw new ne(402,!1);return r.runOutsideAngular(()=>{const u=r.onError.subscribe({next:h=>{l.handleError(h)}});o.onDestroy(()=>{Sf(this._modules,o),u.unsubscribe()})}),function Ow(t,n,e){try{const i=e();return Fu(i)?i.catch(r=>{throw n.runOutsideAngular(()=>t.handleError(r)),r}):i}catch(i){throw n.runOutsideAngular(()=>t.handleError(i)),i}}(l,r,()=>{const u=o.injector.get(Tf);return u.runInitializers(),u.donePromise.then(()=>(function oD(t){Pi(t,"Expected localeId to be defined"),"string"==typeof t&&(aD=t.toLowerCase().replace(/_/g,"-"))}(o.injector.get(Ss,oc)||oc),this._moduleDoBootstrap(o),o))})})}bootstrapModule(e,i=[]){const r=Lw({},i);return function HV(t,n,e){const i=new gy(e);return Promise.resolve(i)}(0,0,e).then(s=>this.bootstrapModuleFactory(s,r))}_moduleDoBootstrap(e){const i=e.injector.get(Po);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach(r=>i.bootstrap(r));else{if(!e.instance.ngDoBootstrap)throw new ne(403,!1);e.instance.ngDoBootstrap(i)}this._modules.push(e)}onDestroy(e){this._destroyListeners.push(e)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new ne(404,!1);this._modules.slice().forEach(i=>i.destroy()),this._destroyListeners.forEach(i=>i());const e=this._injector.get(Vy,null);e&&(e.forEach(i=>i()),e.clear()),this._destroyed=!0}get destroyed(){return this._destroyed}}return t.\u0275fac=function(e){return new(e||t)(R(Fn))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"platform"}),t})();function Lw(t,n){return Array.isArray(n)?n.reduce(Lw,t):{...t,...n}}let Po=(()=>{class t{constructor(e,i,r){this._zone=e,this._injector=i,this._exceptionHandler=r,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._stable=!0,this._destroyed=!1,this._destroyListeners=[],this.componentTypes=[],this.components=[],this._onMicrotaskEmptySubscription=this._zone.onMicrotaskEmpty.subscribe({next:()=>{this._zone.run(()=>{this.tick()})}});const s=new Ct(o=>{this._stable=this._zone.isStable&&!this._zone.hasPendingMacrotasks&&!this._zone.hasPendingMicrotasks,this._zone.runOutsideAngular(()=>{o.next(this._stable),o.complete()})}),a=new Ct(o=>{let l;this._zone.runOutsideAngular(()=>{l=this._zone.onStable.subscribe(()=>{He.assertNotInAngularZone(),Oy(()=>{!this._stable&&!this._zone.hasPendingMacrotasks&&!this._zone.hasPendingMicrotasks&&(this._stable=!0,o.next(!0))})})});const u=this._zone.onUnstable.subscribe(()=>{He.assertInAngularZone(),this._stable&&(this._stable=!1,this._zone.runOutsideAngular(()=>{o.next(!1)}))});return()=>{l.unsubscribe(),u.unsubscribe()}});this.isStable=ar(s,a.pipe(mo()))}get destroyed(){return this._destroyed}get injector(){return this._injector}bootstrap(e,i){const r=e instanceof hE;if(!this._injector.get(Tf).done)throw!r&&function Ni(t){const n=Tt(t)||Wn(t)||hn(t);return null!==n&&n.standalone}(e),new ne(405,false);let a;a=r?e:this._injector.get(Zs).resolveComponentFactory(e),this.componentTypes.push(a.componentType);const o=function GV(t){return t.isBoundToModule}(a)?void 0:this._injector.get(Oo),u=a.create(Fn.NULL,[],i||a.selector,o),h=u.location.nativeElement,p=u.injector.get(Ew,null);return p?.registerApplication(h),u.onDestroy(()=>{this.detachView(u.hostView),Sf(this.components,u),p?.unregisterApplication(h)}),this._loadComponent(u),u}tick(){if(this._runningTick)throw new ne(101,!1);try{this._runningTick=!0;for(let e of this._views)e.detectChanges()}catch(e){this._zone.runOutsideAngular(()=>this._exceptionHandler.handleError(e))}finally{this._runningTick=!1}}attachView(e){const i=e;this._views.push(i),i.attachToAppRef(this)}detachView(e){const i=e;Sf(this._views,i),i.detachFromAppRef()}_loadComponent(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(My,[]).concat(this._bootstrapListeners).forEach(r=>r(e))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(e=>e()),this._views.slice().forEach(e=>e.destroy()),this._onMicrotaskEmptySubscription.unsubscribe()}finally{this._destroyed=!0,this._views=[],this._bootstrapListeners=[],this._destroyListeners=[]}}onDestroy(e){return this._destroyListeners.push(e),()=>Sf(this._destroyListeners,e)}destroy(){if(this._destroyed)throw new ne(406,!1);const e=this._injector;e.destroy&&!e.destroyed&&e.destroy()}get viewCount(){return this._views.length}warnIfDestroyed(){}}return t.\u0275fac=function(e){return new(e||t)(R(He),R(Va),R(Js))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function Sf(t,n){const e=t.indexOf(n);e>-1&&t.splice(e,1)}let Nw=!0,Kn=(()=>{class t{}return t.__NG_ELEMENT_ID__=QV,t})();function QV(t){return function ZV(t,n,e){if(De(t)&&!e){const i=ur(t.index,n);return new Ou(i,i)}return 47&t.type?new Ou(n[16],n):null}(si(),se(),16==(16&t))}class jw{constructor(){}supports(n){return Pu(n)}create(n){return new iU(n)}}const nU=(t,n)=>n;class iU{constructor(n){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=n||nU}forEachItem(n){let e;for(e=this._itHead;null!==e;e=e._next)n(e)}forEachOperation(n){let e=this._itHead,i=this._removalsHead,r=0,s=null;for(;e||i;){const a=!i||e&&e.currentIndex<Hw(i,r,s)?e:i,o=Hw(a,r,s),l=a.currentIndex;if(a===i)r--,i=i._nextRemoved;else if(e=e._next,null==a.previousIndex)r++;else{s||(s=[]);const u=o-r,h=l-r;if(u!=h){for(let C=0;C<u;C++){const w=C<s.length?s[C]:s[C]=0,k=w+C;h<=k&&k<u&&(s[C]=w+1)}s[a.previousIndex]=h-u}}o!==l&&n(a,o,l)}}forEachPreviousItem(n){let e;for(e=this._previousItHead;null!==e;e=e._nextPrevious)n(e)}forEachAddedItem(n){let e;for(e=this._additionsHead;null!==e;e=e._nextAdded)n(e)}forEachMovedItem(n){let e;for(e=this._movesHead;null!==e;e=e._nextMoved)n(e)}forEachRemovedItem(n){let e;for(e=this._removalsHead;null!==e;e=e._nextRemoved)n(e)}forEachIdentityChange(n){let e;for(e=this._identityChangesHead;null!==e;e=e._nextIdentityChange)n(e)}diff(n){if(null==n&&(n=[]),!Pu(n))throw new ne(900,!1);return this.check(n)?this:null}onDestroy(){}check(n){this._reset();let r,s,a,e=this._itHead,i=!1;if(Array.isArray(n)){this.length=n.length;for(let o=0;o<this.length;o++)s=n[o],a=this._trackByFn(o,s),null!==e&&Object.is(e.trackById,a)?(i&&(e=this._verifyReinsertion(e,s,a,o)),Object.is(e.item,s)||this._addIdentityChange(e,s)):(e=this._mismatch(e,s,a,o),i=!0),e=e._next}else r=0,function jF(t,n){if(Array.isArray(t))for(let e=0;e<t.length;e++)n(t[e]);else{const e=t[xo()]();let i;for(;!(i=e.next()).done;)n(i.value)}}(n,o=>{a=this._trackByFn(r,o),null!==e&&Object.is(e.trackById,a)?(i&&(e=this._verifyReinsertion(e,o,a,r)),Object.is(e.item,o)||this._addIdentityChange(e,o)):(e=this._mismatch(e,o,a,r),i=!0),e=e._next,r++}),this.length=r;return this._truncate(e),this.collection=n,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let n;for(n=this._previousItHead=this._itHead;null!==n;n=n._next)n._nextPrevious=n._next;for(n=this._additionsHead;null!==n;n=n._nextAdded)n.previousIndex=n.currentIndex;for(this._additionsHead=this._additionsTail=null,n=this._movesHead;null!==n;n=n._nextMoved)n.previousIndex=n.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(n,e,i,r){let s;return null===n?s=this._itTail:(s=n._prev,this._remove(n)),null!==(n=null===this._unlinkedRecords?null:this._unlinkedRecords.get(i,null))?(Object.is(n.item,e)||this._addIdentityChange(n,e),this._reinsertAfter(n,s,r)):null!==(n=null===this._linkedRecords?null:this._linkedRecords.get(i,r))?(Object.is(n.item,e)||this._addIdentityChange(n,e),this._moveAfter(n,s,r)):n=this._addAfter(new rU(e,i),s,r),n}_verifyReinsertion(n,e,i,r){let s=null===this._unlinkedRecords?null:this._unlinkedRecords.get(i,null);return null!==s?n=this._reinsertAfter(s,n._prev,r):n.currentIndex!=r&&(n.currentIndex=r,this._addToMoves(n,r)),n}_truncate(n){for(;null!==n;){const e=n._next;this._addToRemovals(this._unlink(n)),n=e}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(n,e,i){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(n);const r=n._prevRemoved,s=n._nextRemoved;return null===r?this._removalsHead=s:r._nextRemoved=s,null===s?this._removalsTail=r:s._prevRemoved=r,this._insertAfter(n,e,i),this._addToMoves(n,i),n}_moveAfter(n,e,i){return this._unlink(n),this._insertAfter(n,e,i),this._addToMoves(n,i),n}_addAfter(n,e,i){return this._insertAfter(n,e,i),this._additionsTail=null===this._additionsTail?this._additionsHead=n:this._additionsTail._nextAdded=n,n}_insertAfter(n,e,i){const r=null===e?this._itHead:e._next;return n._next=r,n._prev=e,null===r?this._itTail=n:r._prev=n,null===e?this._itHead=n:e._next=n,null===this._linkedRecords&&(this._linkedRecords=new zw),this._linkedRecords.put(n),n.currentIndex=i,n}_remove(n){return this._addToRemovals(this._unlink(n))}_unlink(n){null!==this._linkedRecords&&this._linkedRecords.remove(n);const e=n._prev,i=n._next;return null===e?this._itHead=i:e._next=i,null===i?this._itTail=e:i._prev=e,n}_addToMoves(n,e){return n.previousIndex===e||(this._movesTail=null===this._movesTail?this._movesHead=n:this._movesTail._nextMoved=n),n}_addToRemovals(n){return null===this._unlinkedRecords&&(this._unlinkedRecords=new zw),this._unlinkedRecords.put(n),n.currentIndex=null,n._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=n,n._prevRemoved=null):(n._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=n),n}_addIdentityChange(n,e){return n.item=e,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=n:this._identityChangesTail._nextIdentityChange=n,n}}class rU{constructor(n,e){this.item=n,this.trackById=e,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null}}class sU{constructor(){this._head=null,this._tail=null}add(n){null===this._head?(this._head=this._tail=n,n._nextDup=null,n._prevDup=null):(this._tail._nextDup=n,n._prevDup=this._tail,n._nextDup=null,this._tail=n)}get(n,e){let i;for(i=this._head;null!==i;i=i._nextDup)if((null===e||e<=i.currentIndex)&&Object.is(i.trackById,n))return i;return null}remove(n){const e=n._prevDup,i=n._nextDup;return null===e?this._head=i:e._nextDup=i,null===i?this._tail=e:i._prevDup=e,null===this._head}}class zw{constructor(){this.map=new Map}put(n){const e=n.trackById;let i=this.map.get(e);i||(i=new sU,this.map.set(e,i)),i.add(n)}get(n,e){const r=this.map.get(n);return r?r.get(n,e):null}remove(n){const e=n.trackById;return this.map.get(e).remove(n)&&this.map.delete(e),n}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function Hw(t,n,e){const i=t.previousIndex;if(null===i)return i;let r=0;return e&&i<e.length&&(r=e[i]),i+n+r}class Gw{constructor(){}supports(n){return n instanceof Map||ty(n)}create(){return new aU}}class aU{constructor(){this._records=new Map,this._mapHead=null,this._appendAfter=null,this._previousMapHead=null,this._changesHead=null,this._changesTail=null,this._additionsHead=null,this._additionsTail=null,this._removalsHead=null,this._removalsTail=null}get isDirty(){return null!==this._additionsHead||null!==this._changesHead||null!==this._removalsHead}forEachItem(n){let e;for(e=this._mapHead;null!==e;e=e._next)n(e)}forEachPreviousItem(n){let e;for(e=this._previousMapHead;null!==e;e=e._nextPrevious)n(e)}forEachChangedItem(n){let e;for(e=this._changesHead;null!==e;e=e._nextChanged)n(e)}forEachAddedItem(n){let e;for(e=this._additionsHead;null!==e;e=e._nextAdded)n(e)}forEachRemovedItem(n){let e;for(e=this._removalsHead;null!==e;e=e._nextRemoved)n(e)}diff(n){if(n){if(!(n instanceof Map||ty(n)))throw new ne(900,!1)}else n=new Map;return this.check(n)?this:null}onDestroy(){}check(n){this._reset();let e=this._mapHead;if(this._appendAfter=null,this._forEach(n,(i,r)=>{if(e&&e.key===r)this._maybeAddToChanges(e,i),this._appendAfter=e,e=e._next;else{const s=this._getOrCreateRecordForKey(r,i);e=this._insertBeforeOrAppend(e,s)}}),e){e._prev&&(e._prev._next=null),this._removalsHead=e;for(let i=e;null!==i;i=i._nextRemoved)i===this._mapHead&&(this._mapHead=null),this._records.delete(i.key),i._nextRemoved=i._next,i.previousValue=i.currentValue,i.currentValue=null,i._prev=null,i._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(n,e){if(n){const i=n._prev;return e._next=n,e._prev=i,n._prev=e,i&&(i._next=e),n===this._mapHead&&(this._mapHead=e),this._appendAfter=n,n}return this._appendAfter?(this._appendAfter._next=e,e._prev=this._appendAfter):this._mapHead=e,this._appendAfter=e,null}_getOrCreateRecordForKey(n,e){if(this._records.has(n)){const r=this._records.get(n);this._maybeAddToChanges(r,e);const s=r._prev,a=r._next;return s&&(s._next=a),a&&(a._prev=s),r._next=null,r._prev=null,r}const i=new oU(n);return this._records.set(n,i),i.currentValue=e,this._addToAdditions(i),i}_reset(){if(this.isDirty){let n;for(this._previousMapHead=this._mapHead,n=this._previousMapHead;null!==n;n=n._next)n._nextPrevious=n._next;for(n=this._changesHead;null!==n;n=n._nextChanged)n.previousValue=n.currentValue;for(n=this._additionsHead;null!=n;n=n._nextAdded)n.previousValue=n.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(n,e){Object.is(e,n.currentValue)||(n.previousValue=n.currentValue,n.currentValue=e,this._addToChanges(n))}_addToAdditions(n){null===this._additionsHead?this._additionsHead=this._additionsTail=n:(this._additionsTail._nextAdded=n,this._additionsTail=n)}_addToChanges(n){null===this._changesHead?this._changesHead=this._changesTail=n:(this._changesTail._nextChanged=n,this._changesTail=n)}_forEach(n,e){n instanceof Map?n.forEach(e):Object.keys(n).forEach(i=>e(n[i],i))}}class oU{constructor(n){this.key=n,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}}function Ww(){return new Ds([new jw])}let Ds=(()=>{class t{constructor(e){this.factories=e}static create(e,i){if(null!=i){const r=i.factories.slice();e=e.concat(r)}return new t(e)}static extend(e){return{provide:t,useFactory:i=>t.create(e,i||Ww()),deps:[[t,new Xr,new fr]]}}find(e){const i=this.factories.find(r=>r.supports(e));if(null!=i)return i;throw new ne(901,!1)}}return t.\u0275prov=q({token:t,providedIn:"root",factory:Ww}),t})();function Kw(){return new Fo([new Gw])}let Fo=(()=>{class t{constructor(e){this.factories=e}static create(e,i){if(i){const r=i.factories.slice();e=e.concat(r)}return new t(e)}static extend(e){return{provide:t,useFactory:i=>t.create(e,i||Kw()),deps:[[t,new Xr,new fr]]}}find(e){const i=this.factories.find(r=>r.supports(e));if(i)return i;throw new ne(901,!1)}}return t.\u0275prov=q({token:t,providedIn:"root",factory:Kw}),t})();const uU=xw(null,"core",[]);let dU=(()=>{class t{constructor(e){}}return t.\u0275fac=function(e){return new(e||t)(R(Po))},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({}),t})();function ra(t){return"boolean"==typeof t?t:null!=t&&"false"!==t}let xf=null;function ws(){return xf}const Ye=new Z("DocumentToken");let Wy=(()=>{class t{historyGo(e){throw new Error("Not implemented")}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:function(){return function gU(){return R(Yw)}()},providedIn:"platform"}),t})();const mU=new Z("Location Initialized");let Yw=(()=>{class t extends Wy{constructor(e){super(),this._doc=e,this._init()}_init(){this.location=window.location,this._history=window.history}getBaseHrefFromDOM(){return ws().getBaseHref(this._doc)}onPopState(e){const i=ws().getGlobalEventTarget(this._doc,"window");return i.addEventListener("popstate",e,!1),()=>i.removeEventListener("popstate",e)}onHashChange(e){const i=ws().getGlobalEventTarget(this._doc,"window");return i.addEventListener("hashchange",e,!1),()=>i.removeEventListener("hashchange",e)}get href(){return this.location.href}get protocol(){return this.location.protocol}get hostname(){return this.location.hostname}get port(){return this.location.port}get pathname(){return this.location.pathname}get search(){return this.location.search}get hash(){return this.location.hash}set pathname(e){this.location.pathname=e}pushState(e,i,r){qw()?this._history.pushState(e,i,r):this.location.hash=r}replaceState(e,i,r){qw()?this._history.replaceState(e,i,r):this.location.hash=r}forward(){this._history.forward()}back(){this._history.back()}historyGo(e=0){this._history.go(e)}getState(){return this._history.state}}return t.\u0275fac=function(e){return new(e||t)(R(Ye))},t.\u0275prov=q({token:t,factory:function(){return function _U(){return new Yw(R(Ye))}()},providedIn:"platform"}),t})();function qw(){return!!window.history.pushState}function Ky(t,n){if(0==t.length)return n;if(0==n.length)return t;let e=0;return t.endsWith("/")&&e++,n.startsWith("/")&&e++,2==e?t+n.substring(1):1==e?t+n:t+"/"+n}function Xw(t){const n=t.match(/#|\?|$/),e=n&&n.index||t.length;return t.slice(0,e-("/"===t[e-1]?1:0))+t.slice(e)}function sa(t){return t&&"?"!==t[0]?"?"+t:t}let Bo=(()=>{class t{historyGo(e){throw new Error("Not implemented")}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:function(){return nn(Zw)},providedIn:"root"}),t})();const Qw=new Z("appBaseHref");let Zw=(()=>{class t extends Bo{constructor(e,i){super(),this._platformLocation=e,this._removeListenerFns=[],this._baseHref=i??this._platformLocation.getBaseHrefFromDOM()??nn(Ye).location?.origin??""}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(e){this._removeListenerFns.push(this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e))}getBaseHref(){return this._baseHref}prepareExternalUrl(e){return Ky(this._baseHref,e)}path(e=!1){const i=this._platformLocation.pathname+sa(this._platformLocation.search),r=this._platformLocation.hash;return r&&e?`${i}${r}`:i}pushState(e,i,r,s){const a=this.prepareExternalUrl(r+sa(s));this._platformLocation.pushState(e,i,a)}replaceState(e,i,r,s){const a=this.prepareExternalUrl(r+sa(s));this._platformLocation.replaceState(e,i,a)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(e=0){this._platformLocation.historyGo?.(e)}}return t.\u0275fac=function(e){return new(e||t)(R(Wy),R(Qw,8))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),yU=(()=>{class t extends Bo{constructor(e,i){super(),this._platformLocation=e,this._baseHref="",this._removeListenerFns=[],null!=i&&(this._baseHref=i)}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(e){this._removeListenerFns.push(this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e))}getBaseHref(){return this._baseHref}path(e=!1){let i=this._platformLocation.hash;return null==i&&(i="#"),i.length>0?i.substring(1):i}prepareExternalUrl(e){const i=Ky(this._baseHref,e);return i.length>0?"#"+i:i}pushState(e,i,r,s){let a=this.prepareExternalUrl(r+sa(s));0==a.length&&(a=this._platformLocation.pathname),this._platformLocation.pushState(e,i,a)}replaceState(e,i,r,s){let a=this.prepareExternalUrl(r+sa(s));0==a.length&&(a=this._platformLocation.pathname),this._platformLocation.replaceState(e,i,a)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(e=0){this._platformLocation.historyGo?.(e)}}return t.\u0275fac=function(e){return new(e||t)(R(Wy),R(Qw,8))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})(),qu=(()=>{class t{constructor(e){this._subject=new Ae,this._urlChangeListeners=[],this._urlChangeSubscription=null,this._locationStrategy=e;const i=this._locationStrategy.getBaseHref();this._baseHref=Xw($w(i)),this._locationStrategy.onPopState(r=>{this._subject.emit({url:this.path(!0),pop:!0,state:r.state,type:r.type})})}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[]}path(e=!1){return this.normalize(this._locationStrategy.path(e))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(e,i=""){return this.path()==this.normalize(e+sa(i))}normalize(e){return t.stripTrailingSlash(function vU(t,n){return t&&n.startsWith(t)?n.substring(t.length):n}(this._baseHref,$w(e)))}prepareExternalUrl(e){return e&&"/"!==e[0]&&(e="/"+e),this._locationStrategy.prepareExternalUrl(e)}go(e,i="",r=null){this._locationStrategy.pushState(r,"",e,i),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+sa(i)),r)}replaceState(e,i="",r=null){this._locationStrategy.replaceState(r,"",e,i),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+sa(i)),r)}forward(){this._locationStrategy.forward()}back(){this._locationStrategy.back()}historyGo(e=0){this._locationStrategy.historyGo?.(e)}onUrlChange(e){return this._urlChangeListeners.push(e),this._urlChangeSubscription||(this._urlChangeSubscription=this.subscribe(i=>{this._notifyUrlChangeListeners(i.url,i.state)})),()=>{const i=this._urlChangeListeners.indexOf(e);this._urlChangeListeners.splice(i,1),0===this._urlChangeListeners.length&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null)}}_notifyUrlChangeListeners(e="",i){this._urlChangeListeners.forEach(r=>r(e,i))}subscribe(e,i,r){return this._subject.subscribe({next:e,error:i,complete:r})}}return t.normalizeQueryParams=sa,t.joinWithSlash=Ky,t.stripTrailingSlash=Xw,t.\u0275fac=function(e){return new(e||t)(R(Bo))},t.\u0275prov=q({token:t,factory:function(){return function AU(){return new qu(R(Bo))}()},providedIn:"root"}),t})();function $w(t){return t.replace(/\/index.html$/,"")}var Yn=(()=>((Yn=Yn||{})[Yn.Format=0]="Format",Yn[Yn.Standalone=1]="Standalone",Yn))(),Rt=(()=>((Rt=Rt||{})[Rt.Narrow=0]="Narrow",Rt[Rt.Abbreviated=1]="Abbreviated",Rt[Rt.Wide=2]="Wide",Rt[Rt.Short=3]="Short",Rt))(),In=(()=>((In=In||{})[In.Short=0]="Short",In[In.Medium=1]="Medium",In[In.Long=2]="Long",In[In.Full=3]="Full",In))(),Je=(()=>((Je=Je||{})[Je.Decimal=0]="Decimal",Je[Je.Group=1]="Group",Je[Je.List=2]="List",Je[Je.PercentSign=3]="PercentSign",Je[Je.PlusSign=4]="PlusSign",Je[Je.MinusSign=5]="MinusSign",Je[Je.Exponential=6]="Exponential",Je[Je.SuperscriptingExponent=7]="SuperscriptingExponent",Je[Je.PerMille=8]="PerMille",Je[Je.Infinity=9]="Infinity",Je[Je.NaN=10]="NaN",Je[Je.TimeSeparator=11]="TimeSeparator",Je[Je.CurrencyDecimal=12]="CurrencyDecimal",Je[Je.CurrencyGroup=13]="CurrencyGroup",Je))();function kf(t,n){return Fr(zi(t)[we.DateFormat],n)}function If(t,n){return Fr(zi(t)[we.TimeFormat],n)}function Mf(t,n){return Fr(zi(t)[we.DateTimeFormat],n)}function Nr(t,n){const e=zi(t),i=e[we.NumberSymbols][n];if(typeof i>"u"){if(n===Je.CurrencyDecimal)return e[we.NumberSymbols][Je.Decimal];if(n===Je.CurrencyGroup)return e[we.NumberSymbols][Je.Group]}return i}function e0(t){if(!t[we.ExtraData])throw new Error(`Missing extra locale data for the locale "${t[we.LocaleId]}". Use "registerLocaleData" to load new data. See the "I18n guide" on angular.io to know more.`)}function Fr(t,n){for(let e=n;e>-1;e--)if(typeof t[e]<"u")return t[e];throw new Error("Locale data API: locale data undefined")}function qy(t){const[n,e]=t.split(":");return{hours:+n,minutes:+e}}const OU=/^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,Xu={},LU=/((?:[^BEGHLMOSWYZabcdhmswyz']+)|(?:'(?:[^']|'')*')|(?:G{1,5}|y{1,4}|Y{1,4}|M{1,5}|L{1,5}|w{1,2}|W{1}|d{1,2}|E{1,6}|c{1,6}|a{1,5}|b{1,5}|B{1,5}|h{1,2}|H{1,2}|m{1,2}|s{1,2}|S{1,3}|z{1,4}|Z{1,5}|O{1,4}))([\s\S]*)/;var ui=(()=>((ui=ui||{})[ui.Short=0]="Short",ui[ui.ShortGMT=1]="ShortGMT",ui[ui.Long=2]="Long",ui[ui.Extended=3]="Extended",ui))(),rt=(()=>((rt=rt||{})[rt.FullYear=0]="FullYear",rt[rt.Month=1]="Month",rt[rt.Date=2]="Date",rt[rt.Hours=3]="Hours",rt[rt.Minutes=4]="Minutes",rt[rt.Seconds=5]="Seconds",rt[rt.FractionalSeconds=6]="FractionalSeconds",rt[rt.Day=7]="Day",rt))(),bt=(()=>((bt=bt||{})[bt.DayPeriods=0]="DayPeriods",bt[bt.Days=1]="Days",bt[bt.Months=2]="Months",bt[bt.Eras=3]="Eras",bt))();function PU(t,n,e,i){let r=function GU(t){if(r0(t))return t;if("number"==typeof t&&!isNaN(t))return new Date(t);if("string"==typeof t){if(t=t.trim(),/^(\d{4}(-\d{1,2}(-\d{1,2})?)?)$/.test(t)){const[r,s=1,a=1]=t.split("-").map(o=>+o);return Rf(r,s-1,a)}const e=parseFloat(t);if(!isNaN(t-e))return new Date(e);let i;if(i=t.match(OU))return function WU(t){const n=new Date(0);let e=0,i=0;const r=t[8]?n.setUTCFullYear:n.setFullYear,s=t[8]?n.setUTCHours:n.setHours;t[9]&&(e=Number(t[9]+t[10]),i=Number(t[9]+t[11])),r.call(n,Number(t[1]),Number(t[2])-1,Number(t[3]));const a=Number(t[4]||0)-e,o=Number(t[5]||0)-i,l=Number(t[6]||0),u=Math.floor(1e3*parseFloat("0."+(t[7]||0)));return s.call(n,a,o,l,u),n}(i)}const n=new Date(t);if(!r0(n))throw new Error(`Unable to convert "${t}" into a date`);return n}(t);n=aa(e,n)||n;let o,a=[];for(;n;){if(o=LU.exec(n),!o){a.push(n);break}{a=a.concat(o.slice(1));const h=a.pop();if(!h)break;n=h}}let l=r.getTimezoneOffset();i&&(l=n0(i,l),r=function HU(t,n,e){const i=e?-1:1,r=t.getTimezoneOffset();return function zU(t,n){return(t=new Date(t.getTime())).setMinutes(t.getMinutes()+n),t}(t,i*(n0(n,r)-r))}(r,i,!0));let u="";return a.forEach(h=>{const p=function jU(t){if(Qy[t])return Qy[t];let n;switch(t){case"G":case"GG":case"GGG":n=pn(bt.Eras,Rt.Abbreviated);break;case"GGGG":n=pn(bt.Eras,Rt.Wide);break;case"GGGGG":n=pn(bt.Eras,Rt.Narrow);break;case"y":n=ni(rt.FullYear,1,0,!1,!0);break;case"yy":n=ni(rt.FullYear,2,0,!0,!0);break;case"yyy":n=ni(rt.FullYear,3,0,!1,!0);break;case"yyyy":n=ni(rt.FullYear,4,0,!1,!0);break;case"Y":n=Nf(1);break;case"YY":n=Nf(2,!0);break;case"YYY":n=Nf(3);break;case"YYYY":n=Nf(4);break;case"M":case"L":n=ni(rt.Month,1,1);break;case"MM":case"LL":n=ni(rt.Month,2,1);break;case"MMM":n=pn(bt.Months,Rt.Abbreviated);break;case"MMMM":n=pn(bt.Months,Rt.Wide);break;case"MMMMM":n=pn(bt.Months,Rt.Narrow);break;case"LLL":n=pn(bt.Months,Rt.Abbreviated,Yn.Standalone);break;case"LLLL":n=pn(bt.Months,Rt.Wide,Yn.Standalone);break;case"LLLLL":n=pn(bt.Months,Rt.Narrow,Yn.Standalone);break;case"w":n=Xy(1);break;case"ww":n=Xy(2);break;case"W":n=Xy(1,!0);break;case"d":n=ni(rt.Date,1);break;case"dd":n=ni(rt.Date,2);break;case"c":case"cc":n=ni(rt.Day,1);break;case"ccc":n=pn(bt.Days,Rt.Abbreviated,Yn.Standalone);break;case"cccc":n=pn(bt.Days,Rt.Wide,Yn.Standalone);break;case"ccccc":n=pn(bt.Days,Rt.Narrow,Yn.Standalone);break;case"cccccc":n=pn(bt.Days,Rt.Short,Yn.Standalone);break;case"E":case"EE":case"EEE":n=pn(bt.Days,Rt.Abbreviated);break;case"EEEE":n=pn(bt.Days,Rt.Wide);break;case"EEEEE":n=pn(bt.Days,Rt.Narrow);break;case"EEEEEE":n=pn(bt.Days,Rt.Short);break;case"a":case"aa":case"aaa":n=pn(bt.DayPeriods,Rt.Abbreviated);break;case"aaaa":n=pn(bt.DayPeriods,Rt.Wide);break;case"aaaaa":n=pn(bt.DayPeriods,Rt.Narrow);break;case"b":case"bb":case"bbb":n=pn(bt.DayPeriods,Rt.Abbreviated,Yn.Standalone,!0);break;case"bbbb":n=pn(bt.DayPeriods,Rt.Wide,Yn.Standalone,!0);break;case"bbbbb":n=pn(bt.DayPeriods,Rt.Narrow,Yn.Standalone,!0);break;case"B":case"BB":case"BBB":n=pn(bt.DayPeriods,Rt.Abbreviated,Yn.Format,!0);break;case"BBBB":n=pn(bt.DayPeriods,Rt.Wide,Yn.Format,!0);break;case"BBBBB":n=pn(bt.DayPeriods,Rt.Narrow,Yn.Format,!0);break;case"h":n=ni(rt.Hours,1,-12);break;case"hh":n=ni(rt.Hours,2,-12);break;case"H":n=ni(rt.Hours,1);break;case"HH":n=ni(rt.Hours,2);break;case"m":n=ni(rt.Minutes,1);break;case"mm":n=ni(rt.Minutes,2);break;case"s":n=ni(rt.Seconds,1);break;case"ss":n=ni(rt.Seconds,2);break;case"S":n=ni(rt.FractionalSeconds,1);break;case"SS":n=ni(rt.FractionalSeconds,2);break;case"SSS":n=ni(rt.FractionalSeconds,3);break;case"Z":case"ZZ":case"ZZZ":n=Lf(ui.Short);break;case"ZZZZZ":n=Lf(ui.Extended);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":n=Lf(ui.ShortGMT);break;case"OOOO":case"ZZZZ":case"zzzz":n=Lf(ui.Long);break;default:return null}return Qy[t]=n,n}(h);u+=p?p(r,e,l):"''"===h?"'":h.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),u}function Rf(t,n,e){const i=new Date(0);return i.setFullYear(t,n,e),i.setHours(0,0,0),i}function aa(t,n){const e=function bU(t){return zi(t)[we.LocaleId]}(t);if(Xu[e]=Xu[e]||{},Xu[e][n])return Xu[e][n];let i="";switch(n){case"shortDate":i=kf(t,In.Short);break;case"mediumDate":i=kf(t,In.Medium);break;case"longDate":i=kf(t,In.Long);break;case"fullDate":i=kf(t,In.Full);break;case"shortTime":i=If(t,In.Short);break;case"mediumTime":i=If(t,In.Medium);break;case"longTime":i=If(t,In.Long);break;case"fullTime":i=If(t,In.Full);break;case"short":const r=aa(t,"shortTime"),s=aa(t,"shortDate");i=Of(Mf(t,In.Short),[r,s]);break;case"medium":const a=aa(t,"mediumTime"),o=aa(t,"mediumDate");i=Of(Mf(t,In.Medium),[a,o]);break;case"long":const l=aa(t,"longTime"),u=aa(t,"longDate");i=Of(Mf(t,In.Long),[l,u]);break;case"full":const h=aa(t,"fullTime"),p=aa(t,"fullDate");i=Of(Mf(t,In.Full),[h,p])}return i&&(Xu[e][n]=i),i}function Of(t,n){return n&&(t=t.replace(/\{([^}]+)}/g,function(e,i){return null!=n&&i in n?n[i]:e})),t}function is(t,n,e="-",i,r){let s="";(t<0||r&&t<=0)&&(r?t=1-t:(t=-t,s=e));let a=String(t);for(;a.length<n;)a="0"+a;return i&&(a=a.slice(a.length-n)),s+a}function ni(t,n,e=0,i=!1,r=!1){return function(s,a){let o=function FU(t,n){switch(t){case rt.FullYear:return n.getFullYear();case rt.Month:return n.getMonth();case rt.Date:return n.getDate();case rt.Hours:return n.getHours();case rt.Minutes:return n.getMinutes();case rt.Seconds:return n.getSeconds();case rt.FractionalSeconds:return n.getMilliseconds();case rt.Day:return n.getDay();default:throw new Error(`Unknown DateType value "${t}".`)}}(t,s);if((e>0||o>-e)&&(o+=e),t===rt.Hours)0===o&&-12===e&&(o=12);else if(t===rt.FractionalSeconds)return function NU(t,n){return is(t,3).substring(0,n)}(o,n);const l=Nr(a,Je.MinusSign);return is(o,n,l,i,r)}}function pn(t,n,e=Yn.Format,i=!1){return function(r,s){return function BU(t,n,e,i,r,s){switch(e){case bt.Months:return function EU(t,n,e){const i=zi(t),s=Fr([i[we.MonthsFormat],i[we.MonthsStandalone]],n);return Fr(s,e)}(n,r,i)[t.getMonth()];case bt.Days:return function TU(t,n,e){const i=zi(t),s=Fr([i[we.DaysFormat],i[we.DaysStandalone]],n);return Fr(s,e)}(n,r,i)[t.getDay()];case bt.DayPeriods:const a=t.getHours(),o=t.getMinutes();if(s){const u=function xU(t){const n=zi(t);return e0(n),(n[we.ExtraData][2]||[]).map(i=>"string"==typeof i?qy(i):[qy(i[0]),qy(i[1])])}(n),h=function kU(t,n,e){const i=zi(t);e0(i);const s=Fr([i[we.ExtraData][0],i[we.ExtraData][1]],n)||[];return Fr(s,e)||[]}(n,r,i),p=u.findIndex(C=>{if(Array.isArray(C)){const[w,k]=C,L=a>=w.hours&&o>=w.minutes,U=a<k.hours||a===k.hours&&o<k.minutes;if(w.hours<k.hours){if(L&&U)return!0}else if(L||U)return!0}else if(C.hours===a&&C.minutes===o)return!0;return!1});if(-1!==p)return h[p]}return function CU(t,n,e){const i=zi(t),s=Fr([i[we.DayPeriodsFormat],i[we.DayPeriodsStandalone]],n);return Fr(s,e)}(n,r,i)[a<12?0:1];case bt.Eras:return function SU(t,n){return Fr(zi(t)[we.Eras],n)}(n,i)[t.getFullYear()<=0?0:1];default:throw new Error(`unexpected translation type ${e}`)}}(r,s,t,n,e,i)}}function Lf(t){return function(n,e,i){const r=-1*i,s=Nr(e,Je.MinusSign),a=r>0?Math.floor(r/60):Math.ceil(r/60);switch(t){case ui.Short:return(r>=0?"+":"")+is(a,2,s)+is(Math.abs(r%60),2,s);case ui.ShortGMT:return"GMT"+(r>=0?"+":"")+is(a,1,s);case ui.Long:return"GMT"+(r>=0?"+":"")+is(a,2,s)+":"+is(Math.abs(r%60),2,s);case ui.Extended:return 0===i?"Z":(r>=0?"+":"")+is(a,2,s)+":"+is(Math.abs(r%60),2,s);default:throw new Error(`Unknown zone width "${t}"`)}}}function t0(t){return Rf(t.getFullYear(),t.getMonth(),t.getDate()+(4-t.getDay()))}function Xy(t,n=!1){return function(e,i){let r;if(n){const s=new Date(e.getFullYear(),e.getMonth(),1).getDay()-1,a=e.getDate();r=1+Math.floor((a+s)/7)}else{const s=t0(e),a=function UU(t){const n=Rf(t,0,1).getDay();return Rf(t,0,1+(n<=4?4:11)-n)}(s.getFullYear()),o=s.getTime()-a.getTime();r=1+Math.round(o/6048e5)}return is(r,t,Nr(i,Je.MinusSign))}}function Nf(t,n=!1){return function(e,i){return is(t0(e).getFullYear(),t,Nr(i,Je.MinusSign),n)}}const Qy={};function n0(t,n){t=t.replace(/:/g,"");const e=Date.parse("Jan 01, 1970 00:00:00 "+t)/6e4;return isNaN(e)?n:e}function r0(t){return t instanceof Date&&!isNaN(t.valueOf())}function l0(t,n){n=encodeURIComponent(n);for(const e of t.split(";")){const i=e.indexOf("="),[r,s]=-1==i?[e,""]:[e.slice(0,i),e.slice(i+1)];if(r.trim()===n)return decodeURIComponent(s)}return null}let oa=(()=>{class t{constructor(e,i,r,s){this._iterableDiffers=e,this._keyValueDiffers=i,this._ngEl=r,this._renderer=s,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}set klass(e){this._removeClasses(this._initialClasses),this._initialClasses="string"==typeof e?e.split(/\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}set ngClass(e){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass="string"==typeof e?e.split(/\s+/):e,this._rawClass&&(Pu(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}ngDoCheck(){if(this._iterableDiffer){const e=this._iterableDiffer.diff(this._rawClass);e&&this._applyIterableChanges(e)}else if(this._keyValueDiffer){const e=this._keyValueDiffer.diff(this._rawClass);e&&this._applyKeyValueChanges(e)}}_applyKeyValueChanges(e){e.forEachAddedItem(i=>this._toggleClass(i.key,i.currentValue)),e.forEachChangedItem(i=>this._toggleClass(i.key,i.currentValue)),e.forEachRemovedItem(i=>{i.previousValue&&this._toggleClass(i.key,!1)})}_applyIterableChanges(e){e.forEachAddedItem(i=>{if("string"!=typeof i.item)throw new Error(`NgClass can only toggle CSS classes expressed as strings, got ${qt(i.item)}`);this._toggleClass(i.item,!0)}),e.forEachRemovedItem(i=>this._toggleClass(i.item,!1))}_applyClasses(e){e&&(Array.isArray(e)||e instanceof Set?e.forEach(i=>this._toggleClass(i,!0)):Object.keys(e).forEach(i=>this._toggleClass(i,!!e[i])))}_removeClasses(e){e&&(Array.isArray(e)||e instanceof Set?e.forEach(i=>this._toggleClass(i,!1)):Object.keys(e).forEach(i=>this._toggleClass(i,!1)))}_toggleClass(e,i){(e=e.trim())&&e.split(/\s+/g).forEach(r=>{i?this._renderer.addClass(this._ngEl.nativeElement,r):this._renderer.removeClass(this._ngEl.nativeElement,r)})}}return t.\u0275fac=function(e){return new(e||t)(_(Ds),_(Fo),_(be),_(Zr))},t.\u0275dir=G({type:t,selectors:[["","ngClass",""]],inputs:{klass:["class","klass"],ngClass:"ngClass"},standalone:!0}),t})();class s3{constructor(n,e,i,r){this.$implicit=n,this.ngForOf=e,this.index=i,this.count=r}get first(){return 0===this.index}get last(){return this.index===this.count-1}get even(){return this.index%2==0}get odd(){return!this.even}}let Gi=(()=>{class t{constructor(e,i,r){this._viewContainer=e,this._template=i,this._differs=r,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForOf(e){this._ngForOf=e,this._ngForOfDirty=!0}set ngForTrackBy(e){this._trackByFn=e}get ngForTrackBy(){return this._trackByFn}set ngForTemplate(e){e&&(this._template=e)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const e=this._ngForOf;!this._differ&&e&&(this._differ=this._differs.find(e).create(this.ngForTrackBy))}if(this._differ){const e=this._differ.diff(this._ngForOf);e&&this._applyChanges(e)}}_applyChanges(e){const i=this._viewContainer;e.forEachOperation((r,s,a)=>{if(null==r.previousIndex)i.createEmbeddedView(this._template,new s3(r.item,this._ngForOf,-1,-1),null===a?void 0:a);else if(null==a)i.remove(null===s?void 0:s);else if(null!==s){const o=i.get(s);i.move(o,a),d0(o,r)}});for(let r=0,s=i.length;r<s;r++){const o=i.get(r).context;o.index=r,o.count=s,o.ngForOf=this._ngForOf}e.forEachIdentityChange(r=>{d0(i.get(r.currentIndex),r)})}static ngTemplateContextGuard(e,i){return!0}}return t.\u0275fac=function(e){return new(e||t)(_(ci),_(li),_(Ds))},t.\u0275dir=G({type:t,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"},standalone:!0}),t})();function d0(t,n){t.context.$implicit=n.item}let xt=(()=>{class t{constructor(e,i){this._viewContainer=e,this._context=new o3,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=i}set ngIf(e){this._context.$implicit=this._context.ngIf=e,this._updateView()}set ngIfThen(e){h0("ngIfThen",e),this._thenTemplateRef=e,this._thenViewRef=null,this._updateView()}set ngIfElse(e){h0("ngIfElse",e),this._elseTemplateRef=e,this._elseViewRef=null,this._updateView()}_updateView(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))}static ngTemplateContextGuard(e,i){return!0}}return t.\u0275fac=function(e){return new(e||t)(_(ci),_(li))},t.\u0275dir=G({type:t,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"},standalone:!0}),t})();class o3{constructor(){this.$implicit=null,this.ngIf=null}}function h0(t,n){if(n&&!n.createEmbeddedView)throw new Error(`${t} must be a TemplateRef, but received '${qt(n)}'.`)}class nA{constructor(n,e){this._viewContainerRef=n,this._templateRef=e,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(n){n&&!this._created?this.create():!n&&this._created&&this.destroy()}}let Zu=(()=>{class t{constructor(){this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(e){this._ngSwitch=e,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(e){this._defaultViews||(this._defaultViews=[]),this._defaultViews.push(e)}_matchCase(e){const i=e==this._ngSwitch;return this._lastCasesMatched=this._lastCasesMatched||i,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),i}_updateDefaultCases(e){if(this._defaultViews&&e!==this._defaultUsed){this._defaultUsed=e;for(let i=0;i<this._defaultViews.length;i++)this._defaultViews[i].enforceState(e)}}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275dir=G({type:t,selectors:[["","ngSwitch",""]],inputs:{ngSwitch:"ngSwitch"},standalone:!0}),t})(),iA=(()=>{class t{constructor(e,i,r){this.ngSwitch=r,r._addCase(),this._view=new nA(e,i)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}}return t.\u0275fac=function(e){return new(e||t)(_(ci),_(li),_(Zu,9))},t.\u0275dir=G({type:t,selectors:[["","ngSwitchCase",""]],inputs:{ngSwitchCase:"ngSwitchCase"},standalone:!0}),t})(),Bf=(()=>{class t{constructor(e,i,r){this._ngEl=e,this._differs=i,this._renderer=r,this._ngStyle=null,this._differ=null}set ngStyle(e){this._ngStyle=e,!this._differ&&e&&(this._differ=this._differs.find(e).create())}ngDoCheck(){if(this._differ){const e=this._differ.diff(this._ngStyle);e&&this._applyChanges(e)}}_setStyle(e,i){const[r,s]=e.split("."),a=-1===r.indexOf("-")?void 0:tr.DashCase;null!=i?this._renderer.setStyle(this._ngEl.nativeElement,r,s?`${i}${s}`:i,a):this._renderer.removeStyle(this._ngEl.nativeElement,r,a)}_applyChanges(e){e.forEachRemovedItem(i=>this._setStyle(i.key,null)),e.forEachAddedItem(i=>this._setStyle(i.key,i.currentValue)),e.forEachChangedItem(i=>this._setStyle(i.key,i.currentValue))}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(Fo),_(Zr))},t.\u0275dir=G({type:t,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"},standalone:!0}),t})(),Vo=(()=>{class t{constructor(e){this._viewContainerRef=e,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null,this.ngTemplateOutletInjector=null}ngOnChanges(e){if(e.ngTemplateOutlet||e.ngTemplateOutletInjector){const i=this._viewContainerRef;if(this._viewRef&&i.remove(i.indexOf(this._viewRef)),this.ngTemplateOutlet){const{ngTemplateOutlet:r,ngTemplateOutletContext:s,ngTemplateOutletInjector:a}=this;this._viewRef=i.createEmbeddedView(r,s,a?{injector:a}:void 0)}else this._viewRef=null}else this._viewRef&&e.ngTemplateOutletContext&&this.ngTemplateOutletContext&&(this._viewRef.context=this.ngTemplateOutletContext)}}return t.\u0275fac=function(e){return new(e||t)(_(ci))},t.\u0275dir=G({type:t,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet",ngTemplateOutletInjector:"ngTemplateOutletInjector"},standalone:!0,features:[$n]}),t})();function rs(t,n){return new ne(2100,!1)}class u3{createSubscription(n,e){return n.subscribe({next:e,error:i=>{throw i}})}dispose(n){n.unsubscribe()}}class d3{createSubscription(n,e){return n.then(e,i=>{throw i})}dispose(n){}}const h3=new d3,f3=new u3;let Vf=(()=>{class t{constructor(e){this._latestValue=null,this._subscription=null,this._obj=null,this._strategy=null,this._ref=e}ngOnDestroy(){this._subscription&&this._dispose(),this._ref=null}transform(e){return this._obj?e!==this._obj?(this._dispose(),this.transform(e)):this._latestValue:(e&&this._subscribe(e),this._latestValue)}_subscribe(e){this._obj=e,this._strategy=this._selectStrategy(e),this._subscription=this._strategy.createSubscription(e,i=>this._updateLatestValue(e,i))}_selectStrategy(e){if(Fu(e))return h3;if(_S(e))return f3;throw rs()}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(e,i){e===this._obj&&(this._latestValue=i,this._ref.markForCheck())}}return t.\u0275fac=function(e){return new(e||t)(_(Kn,16))},t.\u0275pipe=Pn({name:"async",type:t,pure:!1,standalone:!0}),t})();const g3=/(?:[0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])\S*/g;let rA=(()=>{class t{transform(e){if(null==e)return null;if("string"!=typeof e)throw rs();return e.replace(g3,i=>i[0].toUpperCase()+i.slice(1).toLowerCase())}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275pipe=Pn({name:"titlecase",type:t,pure:!0,standalone:!0}),t})(),$u=(()=>{class t{transform(e){if(null==e)return null;if("string"!=typeof e)throw rs();return e.toUpperCase()}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275pipe=Pn({name:"uppercase",type:t,pure:!0,standalone:!0}),t})();const m3=new Z("DATE_PIPE_DEFAULT_TIMEZONE");let p0=(()=>{class t{constructor(e,i){this.locale=e,this.defaultTimezone=i}transform(e,i="mediumDate",r,s){if(null==e||""===e||e!=e)return null;try{return PU(e,i,s||this.locale,r??this.defaultTimezone??void 0)}catch(a){throw rs()}}}return t.\u0275fac=function(e){return new(e||t)(_(Ss,16),_(m3,24))},t.\u0275pipe=Pn({name:"date",type:t,pure:!0,standalone:!0}),t})(),g0=(()=>{class t{constructor(e){this.differs=e,this.keyValues=[],this.compareFn=m0}transform(e,i=m0){if(!e||!(e instanceof Map)&&"object"!=typeof e)return null;this.differ||(this.differ=this.differs.find(e).create());const r=this.differ.diff(e),s=i!==this.compareFn;return r&&(this.keyValues=[],r.forEachItem(a=>{this.keyValues.push(function b3(t,n){return{key:t,value:n}}(a.key,a.currentValue))})),(r||s)&&(this.keyValues.sort(i),this.compareFn=i),this.keyValues}}return t.\u0275fac=function(e){return new(e||t)(_(Fo,16))},t.\u0275pipe=Pn({name:"keyvalue",type:t,pure:!1,standalone:!0}),t})();function m0(t,n){const e=t.key,i=n.key;if(e===i)return 0;if(void 0===e)return 1;if(void 0===i)return-1;if(null===e)return 1;if(null===i)return-1;if("string"==typeof e&&"string"==typeof i)return e<i?-1:1;if("number"==typeof e&&"number"==typeof i)return e-i;if("boolean"==typeof e&&"boolean"==typeof i)return e<i?-1:1;const r=String(e),s=String(i);return r==s?0:r<s?-1:1}let sn=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({}),t})();const _0="browser";function Uo(t){return t===_0}function hc(t){return"server"===t}let k3=(()=>{class t{}return t.\u0275prov=q({token:t,providedIn:"root",factory:()=>new I3(R(Ye),window)}),t})();class I3{constructor(n,e){this.document=n,this.window=e,this.offset=()=>[0,0]}setOffset(n){this.offset=Array.isArray(n)?()=>n:n}getScrollPosition(){return this.supportsScrolling()?[this.window.pageXOffset,this.window.pageYOffset]:[0,0]}scrollToPosition(n){this.supportsScrolling()&&this.window.scrollTo(n[0],n[1])}scrollToAnchor(n){if(!this.supportsScrolling())return;const e=function M3(t,n){const e=t.getElementById(n)||t.getElementsByName(n)[0];if(e)return e;if("function"==typeof t.createTreeWalker&&t.body&&(t.body.createShadowRoot||t.body.attachShadow)){const i=t.createTreeWalker(t.body,NodeFilter.SHOW_ELEMENT);let r=i.currentNode;for(;r;){const s=r.shadowRoot;if(s){const a=s.getElementById(n)||s.querySelector(`[name="${n}"]`);if(a)return a}r=i.nextNode()}}return null}(this.document,n);e&&(this.scrollToElement(e),e.focus())}setHistoryScrollRestoration(n){if(this.supportScrollRestoration()){const e=this.window.history;e&&e.scrollRestoration&&(e.scrollRestoration=n)}}scrollToElement(n){const e=n.getBoundingClientRect(),i=e.left+this.window.pageXOffset,r=e.top+this.window.pageYOffset,s=this.offset();this.window.scrollTo(i-s[0],r-s[1])}supportScrollRestoration(){try{if(!this.supportsScrolling())return!1;const n=y0(this.window.history)||y0(Object.getPrototypeOf(this.window.history));return!(!n||!n.writable&&!n.set)}catch{return!1}}supportsScrolling(){try{return!!this.window&&!!this.window.scrollTo&&"pageXOffset"in this.window}catch{return!1}}}function y0(t){return Object.getOwnPropertyDescriptor(t,"scrollRestoration")}class A0{}class cA extends class rj extends class pU{}{constructor(){super(...arguments),this.supportsDOMEvents=!0}}{static makeCurrent(){!function fU(t){xf||(xf=t)}(new cA)}onAndCancel(n,e,i){return n.addEventListener(e,i,!1),()=>{n.removeEventListener(e,i,!1)}}dispatchEvent(n,e){n.dispatchEvent(e)}remove(n){n.parentNode&&n.parentNode.removeChild(n)}createElement(n,e){return(e=e||this.getDefaultDocument()).createElement(n)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(n){return n.nodeType===Node.ELEMENT_NODE}isShadowRoot(n){return n instanceof DocumentFragment}getGlobalEventTarget(n,e){return"window"===e?window:"document"===e?n:"body"===e?n.body:null}getBaseHref(n){const e=function sj(){return ed=ed||document.querySelector("base"),ed?ed.getAttribute("href"):null}();return null==e?null:function aj(t){zf=zf||document.createElement("a"),zf.setAttribute("href",t);const n=zf.pathname;return"/"===n.charAt(0)?n:`/${n}`}(e)}resetBaseElement(){ed=null}getUserAgent(){return window.navigator.userAgent}getCookie(n){return l0(document.cookie,n)}}let zf,ed=null;const E0=new Z("TRANSITION_ID"),lj=[{provide:Cf,useFactory:function oj(t,n,e){return()=>{e.get(Tf).donePromise.then(()=>{const i=ws(),r=n.querySelectorAll(`style[ng-transition="${t}"]`);for(let s=0;s<r.length;s++)i.remove(r[s])})}},deps:[E0,Ye,Fn],multi:!0}];let uj=(()=>{class t{build(){return new XMLHttpRequest}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();const Hf=new Z("EventManagerPlugins");let Gf=(()=>{class t{constructor(e,i){this._zone=i,this._eventNameToPlugin=new Map,e.forEach(r=>r.manager=this),this._plugins=e.slice().reverse()}addEventListener(e,i,r){return this._findPluginFor(i).addEventListener(e,i,r)}addGlobalEventListener(e,i,r){return this._findPluginFor(i).addGlobalEventListener(e,i,r)}getZone(){return this._zone}_findPluginFor(e){const i=this._eventNameToPlugin.get(e);if(i)return i;const r=this._plugins;for(let s=0;s<r.length;s++){const a=r[s];if(a.supports(e))return this._eventNameToPlugin.set(e,a),a}throw new Error(`No event manager plugin found for event ${e}`)}}return t.\u0275fac=function(e){return new(e||t)(R(Hf),R(He))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();class S0{constructor(n){this._doc=n}addGlobalEventListener(n,e,i){const r=ws().getGlobalEventTarget(this._doc,n);if(!r)throw new Error(`Unsupported event target ${r} for event ${e}`);return this.addEventListener(r,e,i)}}let D0=(()=>{class t{constructor(){this._stylesSet=new Set}addStyles(e){const i=new Set;e.forEach(r=>{this._stylesSet.has(r)||(this._stylesSet.add(r),i.add(r))}),this.onStylesAdded(i)}onStylesAdded(e){}getAllStyles(){return Array.from(this._stylesSet)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})(),td=(()=>{class t extends D0{constructor(e){super(),this._doc=e,this._hostNodes=new Map,this._hostNodes.set(e.head,[])}_addStylesToHost(e,i,r){e.forEach(s=>{const a=this._doc.createElement("style");a.textContent=s,r.push(i.appendChild(a))})}addHost(e){const i=[];this._addStylesToHost(this._stylesSet,e,i),this._hostNodes.set(e,i)}removeHost(e){const i=this._hostNodes.get(e);i&&i.forEach(w0),this._hostNodes.delete(e)}onStylesAdded(e){this._hostNodes.forEach((i,r)=>{this._addStylesToHost(e,r,i)})}ngOnDestroy(){this._hostNodes.forEach(e=>e.forEach(w0))}}return t.\u0275fac=function(e){return new(e||t)(R(Ye))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();function w0(t){ws().remove(t)}const uA={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/",math:"http://www.w3.org/1998/MathML/"},dA=/%COMP%/g;function Wf(t,n,e){for(let i=0;i<n.length;i++){let r=n[i];Array.isArray(r)?Wf(t,r,e):(r=r.replace(dA,t),e.push(r))}return e}function I0(t){return n=>{if("__ngUnwrap__"===n)return t;!1===t(n)&&(n.preventDefault(),n.returnValue=!1)}}let Kf=(()=>{class t{constructor(e,i,r){this.eventManager=e,this.sharedStylesHost=i,this.appId=r,this.rendererByCompId=new Map,this.defaultRenderer=new hA(e)}createRenderer(e,i){if(!e||!i)return this.defaultRenderer;switch(i.encapsulation){case y.Emulated:{let r=this.rendererByCompId.get(i.id);return r||(r=new mj(this.eventManager,this.sharedStylesHost,i,this.appId),this.rendererByCompId.set(i.id,r)),r.applyToHost(e),r}case 1:case y.ShadowDom:return new _j(this.eventManager,this.sharedStylesHost,e,i);default:if(!this.rendererByCompId.has(i.id)){const r=Wf(i.id,i.styles,[]);this.sharedStylesHost.addStyles(r),this.rendererByCompId.set(i.id,this.defaultRenderer)}return this.defaultRenderer}}begin(){}end(){}}return t.\u0275fac=function(e){return new(e||t)(R(Gf),R(td),R(dc))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();class hA{constructor(n){this.eventManager=n,this.data=Object.create(null),this.destroyNode=null}destroy(){}createElement(n,e){return e?document.createElementNS(uA[e]||e,n):document.createElement(n)}createComment(n){return document.createComment(n)}createText(n){return document.createTextNode(n)}appendChild(n,e){(R0(n)?n.content:n).appendChild(e)}insertBefore(n,e,i){n&&(R0(n)?n.content:n).insertBefore(e,i)}removeChild(n,e){n&&n.removeChild(e)}selectRootElement(n,e){let i="string"==typeof n?document.querySelector(n):n;if(!i)throw new Error(`The selector "${n}" did not match any elements`);return e||(i.textContent=""),i}parentNode(n){return n.parentNode}nextSibling(n){return n.nextSibling}setAttribute(n,e,i,r){if(r){e=r+":"+e;const s=uA[r];s?n.setAttributeNS(s,e,i):n.setAttribute(e,i)}else n.setAttribute(e,i)}removeAttribute(n,e,i){if(i){const r=uA[i];r?n.removeAttributeNS(r,e):n.removeAttribute(`${i}:${e}`)}else n.removeAttribute(e)}addClass(n,e){n.classList.add(e)}removeClass(n,e){n.classList.remove(e)}setStyle(n,e,i,r){r&(tr.DashCase|tr.Important)?n.style.setProperty(e,i,r&tr.Important?"important":""):n.style[e]=i}removeStyle(n,e,i){i&tr.DashCase?n.style.removeProperty(e):n.style[e]=""}setProperty(n,e,i){n[e]=i}setValue(n,e){n.nodeValue=e}listen(n,e,i){return"string"==typeof n?this.eventManager.addGlobalEventListener(n,e,I0(i)):this.eventManager.addEventListener(n,e,I0(i))}}function R0(t){return"TEMPLATE"===t.tagName&&void 0!==t.content}class mj extends hA{constructor(n,e,i,r){super(n),this.component=i;const s=Wf(r+"-"+i.id,i.styles,[]);e.addStyles(s),this.contentAttr=function fj(t){return"_ngcontent-%COMP%".replace(dA,t)}(r+"-"+i.id),this.hostAttr=function pj(t){return"_nghost-%COMP%".replace(dA,t)}(r+"-"+i.id)}applyToHost(n){super.setAttribute(n,this.hostAttr,"")}createElement(n,e){const i=super.createElement(n,e);return super.setAttribute(i,this.contentAttr,""),i}}class _j extends hA{constructor(n,e,i,r){super(n),this.sharedStylesHost=e,this.hostEl=i,this.shadowRoot=i.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);const s=Wf(r.id,r.styles,[]);for(let a=0;a<s.length;a++){const o=document.createElement("style");o.textContent=s[a],this.shadowRoot.appendChild(o)}}nodeOrShadowRoot(n){return n===this.hostEl?this.shadowRoot:n}destroy(){this.sharedStylesHost.removeHost(this.shadowRoot)}appendChild(n,e){return super.appendChild(this.nodeOrShadowRoot(n),e)}insertBefore(n,e,i){return super.insertBefore(this.nodeOrShadowRoot(n),e,i)}removeChild(n,e){return super.removeChild(this.nodeOrShadowRoot(n),e)}parentNode(n){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(n)))}}let yj=(()=>{class t extends S0{constructor(e){super(e)}supports(e){return!0}addEventListener(e,i,r){return e.addEventListener(i,r,!1),()=>this.removeEventListener(e,i,r)}removeEventListener(e,i,r){return e.removeEventListener(i,r)}}return t.\u0275fac=function(e){return new(e||t)(R(Ye))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();const O0=["alt","control","meta","shift"],Aj={"\b":"Backspace","\t":"Tab","\x7f":"Delete","\x1b":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},vj={alt:t=>t.altKey,control:t=>t.ctrlKey,meta:t=>t.metaKey,shift:t=>t.shiftKey};let bj=(()=>{class t extends S0{constructor(e){super(e)}supports(e){return null!=t.parseEventName(e)}addEventListener(e,i,r){const s=t.parseEventName(i),a=t.eventCallback(s.fullKey,r,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>ws().onAndCancel(e,s.domEventName,a))}static parseEventName(e){const i=e.toLowerCase().split("."),r=i.shift();if(0===i.length||"keydown"!==r&&"keyup"!==r)return null;const s=t._normalizeKey(i.pop());let a="",o=i.indexOf("code");if(o>-1&&(i.splice(o,1),a="code."),O0.forEach(u=>{const h=i.indexOf(u);h>-1&&(i.splice(h,1),a+=u+".")}),a+=s,0!=i.length||0===s.length)return null;const l={};return l.domEventName=r,l.fullKey=a,l}static matchEventFullKeyCode(e,i){let r=Aj[e.key]||e.key,s="";return i.indexOf("code.")>-1&&(r=e.code,s="code."),!(null==r||!r)&&(r=r.toLowerCase()," "===r?r="space":"."===r&&(r="dot"),O0.forEach(a=>{a!==r&&(0,vj[a])(e)&&(s+=a+".")}),s+=r,s===i)}static eventCallback(e,i,r){return s=>{t.matchEventFullKeyCode(s,e)&&r.runGuarded(()=>i(s))}}static _normalizeKey(e){return"esc"===e?"escape":e}}return t.\u0275fac=function(e){return new(e||t)(R(Ye))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();const Sj=xw(uU,"browser",[{provide:Pr,useValue:_0},{provide:Aw,useValue:function Cj(){cA.makeCurrent()},multi:!0},{provide:Ye,useFactory:function Ej(){return function yP(t){d_=t}(document),document},deps:[]}]),N0=new Z(""),F0=[{provide:Ef,useClass:class cj{addToWindow(n){T.getAngularTestability=(i,r=!0)=>{const s=n.findTestabilityInTree(i,r);if(null==s)throw new Error("Could not find testability for element.");return s},T.getAllAngularTestabilities=()=>n.getAllTestabilities(),T.getAllAngularRootElements=()=>n.getAllRootElements(),T.frameworkStabilizers||(T.frameworkStabilizers=[]),T.frameworkStabilizers.push(i=>{const r=T.getAllAngularTestabilities();let s=r.length,a=!1;const o=function(l){a=a||l,s--,0==s&&i(a)};r.forEach(function(l){l.whenStable(o)})})}findTestabilityInTree(n,e,i){return null==e?null:n.getTestability(e)??(i?ws().isShadowRoot(e)?this.findTestabilityInTree(n,e.host,!0):this.findTestabilityInTree(n,e.parentElement,!0):null)}},deps:[]},{provide:Ew,useClass:Ny,deps:[He,Fy,Ef]},{provide:Ny,useClass:Ny,deps:[He,Fy,Ef]}],B0=[{provide:A_,useValue:"root"},{provide:Js,useFactory:function Tj(){return new Js},deps:[]},{provide:Hf,useClass:yj,multi:!0,deps:[Ye,He,Pr]},{provide:Hf,useClass:bj,multi:!0,deps:[Ye]},{provide:Kf,useClass:Kf,deps:[Gf,td,dc]},{provide:Ru,useExisting:Kf},{provide:D0,useExisting:td},{provide:td,useClass:td,deps:[Ye]},{provide:Gf,useClass:Gf,deps:[Hf,He]},{provide:A0,useClass:uj,deps:[]},[]];let pA=(()=>{class t{constructor(e){}static withServerTransition(e){return{ngModule:t,providers:[{provide:dc,useValue:e.appId},{provide:E0,useExisting:dc},lj]}}}return t.\u0275fac=function(e){return new(e||t)(R(N0,12))},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[...B0,...F0],imports:[sn,dU]}),t})(),V0=(()=>{class t{constructor(e){this._doc=e}getTitle(){return this._doc.title}setTitle(e){this._doc.title=e||""}}return t.\u0275fac=function(e){return new(e||t)(R(Ye))},t.\u0275prov=q({token:t,factory:function(e){let i=null;return i=e?new e:function wj(){return new V0(R(Ye))}(),i},providedIn:"root"}),t})();typeof window<"u"&&window;let fc=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:function(e){let i=null;return i=e?new(e||t):R(z0),i},providedIn:"root"}),t})(),z0=(()=>{class t extends fc{constructor(e){super(),this._doc=e}sanitize(e,i){if(null==i)return null;switch(e){case Qt.NONE:return i;case Qt.HTML:return vs(i,"HTML")?pr(i):tE(this._doc,String(i)).toString();case Qt.STYLE:return vs(i,"Style")?pr(i):i;case Qt.SCRIPT:if(vs(i,"Script"))return pr(i);throw new Error("unsafe value used in a script context");case Qt.URL:return vs(i,"URL")?pr(i):Kh(String(i));case Qt.RESOURCE_URL:if(vs(i,"ResourceURL"))return pr(i);throw new Error("unsafe value used in a resource URL context (see https://g.co/ng/security#xss)");default:throw new Error(`Unexpected SecurityContext ${e} (see https://g.co/ng/security#xss)`)}}bypassSecurityTrustHtml(e){return function SP(t){return new AP(t)}(e)}bypassSecurityTrustStyle(e){return function DP(t){return new vP(t)}(e)}bypassSecurityTrustScript(e){return function wP(t){return new bP(t)}(e)}bypassSecurityTrustUrl(e){return function xP(t){return new CP(t)}(e)}bypassSecurityTrustResourceUrl(e){return function kP(t){return new TP(t)}(e)}}return t.\u0275fac=function(e){return new(e||t)(R(Ye))},t.\u0275prov=q({token:t,factory:function(e){let i=null;return i=e?new e:function Lj(t){return new z0(t.get(Ye))}(R(Fn)),i},providedIn:"root"}),t})();const mA={now:()=>(mA.delegate||Date).now(),delegate:void 0};class _A extends pe{constructor(n=1/0,e=1/0,i=mA){super(),this._bufferSize=n,this._windowTime=e,this._timestampProvider=i,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=e===1/0,this._bufferSize=Math.max(1,n),this._windowTime=Math.max(1,e)}next(n){const{isStopped:e,_buffer:i,_infiniteTimeWindow:r,_timestampProvider:s,_windowTime:a}=this;e||(i.push(n),!r&&i.push(s.now()+a)),this._trimBuffer(),super.next(n)}_subscribe(n){this._throwIfClosed(),this._trimBuffer();const e=this._innerSubscribe(n),{_infiniteTimeWindow:i,_buffer:r}=this,s=r.slice();for(let a=0;a<s.length&&!n.closed;a+=i?1:2)n.next(s[a]);return this._checkFinalizedStatuses(n),e}_trimBuffer(){const{_bufferSize:n,_timestampProvider:e,_buffer:i,_infiniteTimeWindow:r}=this,s=(r?1:2)*n;if(n<1/0&&s<i.length&&i.splice(0,i.length-s),!r){const a=e.now();let o=0;for(let l=1;l<i.length&&i[l]<=a;l+=2)o=l;o&&i.splice(0,o+1)}}}function Wi(t,n){return ln((e,i)=>{let r=null,s=0,a=!1;const o=()=>a&&!r&&i.complete();e.subscribe(Zt(i,l=>{r?.unsubscribe();let u=0;const h=s++;Hn(t(l,h)).subscribe(r=Zt(i,p=>i.next(n?n(l,p,h,u++):p),()=>{r=null,o()}))},()=>{a=!0,o()}))})}const Yf={schedule(t,n){const e=setTimeout(t,n);return()=>clearTimeout(e)},scheduleBeforeRender(t){if(typeof window>"u")return Yf.schedule(t,0);if(typeof window.requestAnimationFrame>"u")return Yf.schedule(t,16);const n=window.requestAnimationFrame(t);return()=>window.cancelAnimationFrame(n)}};let yA;function Hj(t,n,e){let i=e;return function Nj(t){return!!t&&t.nodeType===Node.ELEMENT_NODE}(t)&&n.some((r,s)=>!("*"===r||!function Bj(t,n){if(!yA){const e=Element.prototype;yA=e.matches||e.matchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector}return t.nodeType===Node.ELEMENT_NODE&&yA.call(t,n)}(t,r)||(i=s,0))),i}class Wj{constructor(n,e){this.componentFactory=e.get(Zs).resolveComponentFactory(n)}create(n){return new Kj(this.componentFactory,n)}}class Kj{constructor(n,e){this.componentFactory=n,this.injector=e,this.eventEmitters=new _A(1),this.events=this.eventEmitters.pipe(Wi(i=>ar(...i))),this.componentRef=null,this.viewChangeDetectorRef=null,this.inputChanges=null,this.hasInputChanges=!1,this.implementsOnChanges=!1,this.scheduledChangeDetectionFn=null,this.scheduledDestroyFn=null,this.initialInputValues=new Map,this.unchangedInputs=new Set(this.componentFactory.inputs.map(({propName:i})=>i)),this.ngZone=this.injector.get(He),this.elementZone=typeof Zone>"u"?null:this.ngZone.run(()=>Zone.current)}connect(n){this.runInZone(()=>{if(null!==this.scheduledDestroyFn)return this.scheduledDestroyFn(),void(this.scheduledDestroyFn=null);null===this.componentRef&&this.initializeComponent(n)})}disconnect(){this.runInZone(()=>{null===this.componentRef||null!==this.scheduledDestroyFn||(this.scheduledDestroyFn=Yf.schedule(()=>{null!==this.componentRef&&(this.componentRef.destroy(),this.componentRef=null,this.viewChangeDetectorRef=null)},10))})}getInputValue(n){return this.runInZone(()=>null===this.componentRef?this.initialInputValues.get(n):this.componentRef.instance[n])}setInputValue(n,e){this.runInZone(()=>{null!==this.componentRef?function Vj(t,n){return t===n||t!=t&&n!=n}(e,this.getInputValue(n))&&(void 0!==e||!this.unchangedInputs.has(n))||(this.recordInputChange(n,e),this.unchangedInputs.delete(n),this.hasInputChanges=!0,this.componentRef.instance[n]=e,this.scheduleDetectChanges()):this.initialInputValues.set(n,e)})}initializeComponent(n){const e=Fn.create({providers:[],parent:this.injector}),i=function zj(t,n){const e=t.childNodes,i=n.map(()=>[]);let r=-1;n.some((s,a)=>"*"===s&&(r=a,!0));for(let s=0,a=e.length;s<a;++s){const o=e[s],l=Hj(o,n,r);-1!==l&&i[l].push(o)}return i}(n,this.componentFactory.ngContentSelectors);this.componentRef=this.componentFactory.create(e,i,n),this.viewChangeDetectorRef=this.componentRef.injector.get(Kn),this.implementsOnChanges=function Fj(t){return"function"==typeof t}(this.componentRef.instance.ngOnChanges),this.initializeInputs(),this.initializeOutputs(this.componentRef),this.detectChanges(),this.injector.get(Po).attachView(this.componentRef.hostView)}initializeInputs(){this.componentFactory.inputs.forEach(({propName:n})=>{this.initialInputValues.has(n)&&this.setInputValue(n,this.initialInputValues.get(n))}),this.initialInputValues.clear()}initializeOutputs(n){const e=this.componentFactory.outputs.map(({propName:i,templateName:r})=>n.instance[i].pipe(Le(a=>({name:r,value:a}))));this.eventEmitters.next(e)}callNgOnChanges(n){if(!this.implementsOnChanges||null===this.inputChanges)return;const e=this.inputChanges;this.inputChanges=null,n.instance.ngOnChanges(e)}markViewForCheck(n){this.hasInputChanges&&(this.hasInputChanges=!1,n.markForCheck())}scheduleDetectChanges(){this.scheduledChangeDetectionFn||(this.scheduledChangeDetectionFn=Yf.scheduleBeforeRender(()=>{this.scheduledChangeDetectionFn=null,this.detectChanges()}))}recordInputChange(n,e){if(!this.implementsOnChanges)return;null===this.inputChanges&&(this.inputChanges={});const i=this.inputChanges[n];if(i)return void(i.currentValue=e);const r=this.unchangedInputs.has(n),s=r?void 0:this.getInputValue(n);this.inputChanges[n]=new wC(s,e,r)}detectChanges(){null!==this.componentRef&&(this.callNgOnChanges(this.componentRef),this.markViewForCheck(this.viewChangeDetectorRef),this.componentRef.changeDetectorRef.detectChanges())}runInZone(n){return this.elementZone&&Zone.current!==this.elementZone?this.ngZone.run(n):n()}}class Yj extends HTMLElement{constructor(){super(...arguments),this.ngElementEventsSubscription=null}}class H0{}const la="*";function di(t,n){return{type:7,name:t,definitions:n,options:{}}}function $t(t,n=null){return{type:4,styles:n,timings:t}}function G0(t,n=null){return{type:3,steps:t,options:n}}function W0(t,n=null){return{type:2,steps:t,options:n}}function Ne(t){return{type:6,styles:t,offset:null}}function Jt(t,n,e){return{type:0,name:t,styles:n,options:e}}function Wt(t,n,e=null){return{type:1,expr:t,animation:n,options:e}}function qf(t=null){return{type:9,options:t}}function Xf(t,n,e=null){return{type:11,selector:t,animation:n,options:e}}function K0(t){Promise.resolve().then(t)}class nd{constructor(n=0,e=0){this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._originalOnDoneFns=[],this._originalOnStartFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this._position=0,this.parentPlayer=null,this.totalTime=n+e}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(n=>n()),this._onDoneFns=[])}onStart(n){this._originalOnStartFns.push(n),this._onStartFns.push(n)}onDone(n){this._originalOnDoneFns.push(n),this._onDoneFns.push(n)}onDestroy(n){this._onDestroyFns.push(n)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){K0(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(n=>n()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(n=>n()),this._onDestroyFns=[])}reset(){this._started=!1,this._finished=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}setPosition(n){this._position=this.totalTime?n*this.totalTime:1}getPosition(){return this.totalTime?this._position/this.totalTime:1}triggerCallback(n){const e="start"==n?this._onStartFns:this._onDoneFns;e.forEach(i=>i()),e.length=0}}class Y0{constructor(n){this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=n;let e=0,i=0,r=0;const s=this.players.length;0==s?K0(()=>this._onFinish()):this.players.forEach(a=>{a.onDone(()=>{++e==s&&this._onFinish()}),a.onDestroy(()=>{++i==s&&this._onDestroy()}),a.onStart(()=>{++r==s&&this._onStart()})}),this.totalTime=this.players.reduce((a,o)=>Math.max(a,o.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(n=>n()),this._onDoneFns=[])}init(){this.players.forEach(n=>n.init())}onStart(n){this._onStartFns.push(n)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(n=>n()),this._onStartFns=[])}onDone(n){this._onDoneFns.push(n)}onDestroy(n){this._onDestroyFns.push(n)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(n=>n.play())}pause(){this.players.forEach(n=>n.pause())}restart(){this.players.forEach(n=>n.restart())}finish(){this._onFinish(),this.players.forEach(n=>n.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(n=>n.destroy()),this._onDestroyFns.forEach(n=>n()),this._onDestroyFns=[])}reset(){this.players.forEach(n=>n.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(n){const e=n*this.totalTime;this.players.forEach(i=>{const r=i.totalTime?Math.min(1,e/i.totalTime):1;i.setPosition(r)})}getPosition(){const n=this.players.reduce((e,i)=>null===e||i.totalTime>e.totalTime?i:e,null);return null!=n?n.getPosition():0}beforeDestroy(){this.players.forEach(n=>{n.beforeDestroy&&n.beforeDestroy()})}triggerCallback(n){const e="start"==n?this._onStartFns:this._onDoneFns;e.forEach(i=>i()),e.length=0}}function q0(t){return new ne(3e3,!1)}function Iz(){return typeof window<"u"&&typeof window.document<"u"}function vA(){return typeof process<"u"&&"[object process]"==={}.toString.call(process)}function Ka(t){switch(t.length){case 0:return new nd;case 1:return t[0];default:return new Y0(t)}}function X0(t,n,e,i,r=new Map,s=new Map){const a=[],o=[];let l=-1,u=null;if(i.forEach(h=>{const p=h.get("offset"),C=p==l,w=C&&u||new Map;h.forEach((k,L)=>{let U=L,z=k;if("offset"!==L)switch(U=n.normalizePropertyName(U,a),z){case"!":z=r.get(L);break;case la:z=s.get(L);break;default:z=n.normalizeStyleValue(L,U,z,a)}w.set(U,z)}),C||o.push(w),u=w,l=p}),a.length)throw function yz(t){return new ne(3502,!1)}();return o}function bA(t,n,e,i){switch(n){case"start":t.onStart(()=>i(e&&CA(e,"start",t)));break;case"done":t.onDone(()=>i(e&&CA(e,"done",t)));break;case"destroy":t.onDestroy(()=>i(e&&CA(e,"destroy",t)))}}function CA(t,n,e){const s=TA(t.element,t.triggerName,t.fromState,t.toState,n||t.phaseName,e.totalTime??t.totalTime,!!e.disabled),a=t._data;return null!=a&&(s._data=a),s}function TA(t,n,e,i,r="",s=0,a){return{element:t,triggerName:n,fromState:e,toState:i,phaseName:r,totalTime:s,disabled:!!a}}function mr(t,n,e){let i=t.get(n);return i||t.set(n,i=e),i}function Q0(t){const n=t.indexOf(":");return[t.substring(1,n),t.slice(n+1)]}let EA=(t,n)=>!1,Z0=(t,n,e)=>[],$0=null;function SA(t){const n=t.parentNode||t.host;return n===$0?null:n}(vA()||typeof Element<"u")&&(Iz()?($0=(()=>document.documentElement)(),EA=(t,n)=>{for(;n;){if(n===t)return!0;n=SA(n)}return!1}):EA=(t,n)=>t.contains(n),Z0=(t,n,e)=>{if(e)return Array.from(t.querySelectorAll(n));const i=t.querySelector(n);return i?[i]:[]});let jo=null,J0=!1;const ex=EA,tx=Z0;let nx=(()=>{class t{validateStyleProperty(e){return function Rz(t){jo||(jo=function Oz(){return typeof document<"u"?document.body:null}()||{},J0=!!jo.style&&"WebkitAppearance"in jo.style);let n=!0;return jo.style&&!function Mz(t){return"ebkit"==t.substring(1,6)}(t)&&(n=t in jo.style,!n&&J0&&(n="Webkit"+t.charAt(0).toUpperCase()+t.slice(1)in jo.style)),n}(e)}matchesElement(e,i){return!1}containsElement(e,i){return ex(e,i)}getParentElement(e){return SA(e)}query(e,i,r){return tx(e,i,r)}computeStyle(e,i,r){return r||""}animate(e,i,r,s,a,o=[],l){return new nd(r,s)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})(),DA=(()=>{class t{}return t.NOOP=new nx,t})();const wA="ng-enter",Qf="ng-leave",Zf="ng-trigger",$f=".ng-trigger",rx="ng-animating",xA=".ng-animating";function ca(t){if("number"==typeof t)return t;const n=t.match(/^(-?[\.\d]+)(m?s)/);return!n||n.length<2?0:kA(parseFloat(n[1]),n[2])}function kA(t,n){return"s"===n?1e3*t:t}function Jf(t,n,e){return t.hasOwnProperty("duration")?t:function Nz(t,n,e){let r,s=0,a="";if("string"==typeof t){const o=t.match(/^(-?[\.\d]+)(m?s)(?:\s+(-?[\.\d]+)(m?s))?(?:\s+([-a-z]+(?:\(.+?\))?))?$/i);if(null===o)return n.push(q0()),{duration:0,delay:0,easing:""};r=kA(parseFloat(o[1]),o[2]);const l=o[3];null!=l&&(s=kA(parseFloat(l),o[4]));const u=o[5];u&&(a=u)}else r=t;if(!e){let o=!1,l=n.length;r<0&&(n.push(function Qj(){return new ne(3100,!1)}()),o=!0),s<0&&(n.push(function Zj(){return new ne(3101,!1)}()),o=!0),o&&n.splice(l,0,q0())}return{duration:r,delay:s,easing:a}}(t,n,e)}function id(t,n={}){return Object.keys(t).forEach(e=>{n[e]=t[e]}),n}function sx(t){const n=new Map;return Object.keys(t).forEach(e=>{n.set(e,t[e])}),n}function Ya(t,n=new Map,e){if(e)for(let[i,r]of e)n.set(i,r);for(let[i,r]of t)n.set(i,r);return n}function ox(t,n,e){return e?n+":"+e+";":""}function lx(t){let n="";for(let e=0;e<t.style.length;e++){const i=t.style.item(e);n+=ox(0,i,t.style.getPropertyValue(i))}for(const e in t.style)t.style.hasOwnProperty(e)&&!e.startsWith("_")&&(n+=ox(0,Uz(e),t.style[e]));t.setAttribute("style",n)}function xs(t,n,e){t.style&&(n.forEach((i,r)=>{const s=MA(r);e&&!e.has(r)&&e.set(r,t.style[s]),t.style[s]=i}),vA()&&lx(t))}function zo(t,n){t.style&&(n.forEach((e,i)=>{const r=MA(i);t.style[r]=""}),vA()&&lx(t))}function rd(t){return Array.isArray(t)?1==t.length?t[0]:W0(t):t}const IA=new RegExp("{{\\s*(.+?)\\s*}}","g");function cx(t){let n=[];if("string"==typeof t){let e;for(;e=IA.exec(t);)n.push(e[1]);IA.lastIndex=0}return n}function sd(t,n,e){const i=t.toString(),r=i.replace(IA,(s,a)=>{let o=n[a];return null==o&&(e.push(function Jj(t){return new ne(3003,!1)}()),o=""),o.toString()});return r==i?t:r}function ep(t){const n=[];let e=t.next();for(;!e.done;)n.push(e.value),e=t.next();return n}const Vz=/-+([a-z0-9])/g;function MA(t){return t.replace(Vz,(...n)=>n[1].toUpperCase())}function Uz(t){return t.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase()}function _r(t,n,e){switch(n.type){case 7:return t.visitTrigger(n,e);case 0:return t.visitState(n,e);case 1:return t.visitTransition(n,e);case 2:return t.visitSequence(n,e);case 3:return t.visitGroup(n,e);case 4:return t.visitAnimate(n,e);case 5:return t.visitKeyframes(n,e);case 6:return t.visitStyle(n,e);case 8:return t.visitReference(n,e);case 9:return t.visitAnimateChild(n,e);case 10:return t.visitAnimateRef(n,e);case 11:return t.visitQuery(n,e);case 12:return t.visitStagger(n,e);default:throw function ez(t){return new ne(3004,!1)}()}}function ux(t,n){return window.getComputedStyle(t)[n]}function Kz(t,n){const e=[];return"string"==typeof t?t.split(/\s*,\s*/).forEach(i=>function Yz(t,n,e){if(":"==t[0]){const l=function qz(t,n){switch(t){case":enter":return"void => *";case":leave":return"* => void";case":increment":return(e,i)=>parseFloat(i)>parseFloat(e);case":decrement":return(e,i)=>parseFloat(i)<parseFloat(e);default:return n.push(function pz(t){return new ne(3016,!1)}()),"* => *"}}(t,e);if("function"==typeof l)return void n.push(l);t=l}const i=t.match(/^(\*|[-\w]+)\s*(<?[=-]>)\s*(\*|[-\w]+)$/);if(null==i||i.length<4)return e.push(function fz(t){return new ne(3015,!1)}()),n;const r=i[1],s=i[2],a=i[3];n.push(dx(r,a));"<"==s[0]&&!("*"==r&&"*"==a)&&n.push(dx(a,r))}(i,e,n)):e.push(t),e}const rp=new Set(["true","1"]),sp=new Set(["false","0"]);function dx(t,n){const e=rp.has(t)||sp.has(t),i=rp.has(n)||sp.has(n);return(r,s)=>{let a="*"==t||t==r,o="*"==n||n==s;return!a&&e&&"boolean"==typeof r&&(a=r?rp.has(t):sp.has(t)),!o&&i&&"boolean"==typeof s&&(o=s?rp.has(n):sp.has(n)),a&&o}}const Xz=new RegExp("s*:selfs*,?","g");function RA(t,n,e,i){return new Qz(t).build(n,e,i)}class Qz{constructor(n){this._driver=n}build(n,e,i){const r=new Jz(e);return this._resetContextStyleTimingState(r),_r(this,rd(n),r)}_resetContextStyleTimingState(n){n.currentQuerySelector="",n.collectedStyles=new Map,n.collectedStyles.set("",new Map),n.currentTime=0}visitTrigger(n,e){let i=e.queryCount=0,r=e.depCount=0;const s=[],a=[];return"@"==n.name.charAt(0)&&e.errors.push(function nz(){return new ne(3006,!1)}()),n.definitions.forEach(o=>{if(this._resetContextStyleTimingState(e),0==o.type){const l=o,u=l.name;u.toString().split(/\s*,\s*/).forEach(h=>{l.name=h,s.push(this.visitState(l,e))}),l.name=u}else if(1==o.type){const l=this.visitTransition(o,e);i+=l.queryCount,r+=l.depCount,a.push(l)}else e.errors.push(function iz(){return new ne(3007,!1)}())}),{type:7,name:n.name,states:s,transitions:a,queryCount:i,depCount:r,options:null}}visitState(n,e){const i=this.visitStyle(n.styles,e),r=n.options&&n.options.params||null;if(i.containsDynamicStyles){const s=new Set,a=r||{};i.styles.forEach(o=>{o instanceof Map&&o.forEach(l=>{cx(l).forEach(u=>{a.hasOwnProperty(u)||s.add(u)})})}),s.size&&(ep(s.values()),e.errors.push(function rz(t,n){return new ne(3008,!1)}()))}return{type:0,name:n.name,style:i,options:r?{params:r}:null}}visitTransition(n,e){e.queryCount=0,e.depCount=0;const i=_r(this,rd(n.animation),e);return{type:1,matchers:Kz(n.expr,e.errors),animation:i,queryCount:e.queryCount,depCount:e.depCount,options:Ho(n.options)}}visitSequence(n,e){return{type:2,steps:n.steps.map(i=>_r(this,i,e)),options:Ho(n.options)}}visitGroup(n,e){const i=e.currentTime;let r=0;const s=n.steps.map(a=>{e.currentTime=i;const o=_r(this,a,e);return r=Math.max(r,e.currentTime),o});return e.currentTime=r,{type:3,steps:s,options:Ho(n.options)}}visitAnimate(n,e){const i=function tH(t,n){if(t.hasOwnProperty("duration"))return t;if("number"==typeof t)return OA(Jf(t,n).duration,0,"");const e=t;if(e.split(/\s+/).some(s=>"{"==s.charAt(0)&&"{"==s.charAt(1))){const s=OA(0,0,"");return s.dynamic=!0,s.strValue=e,s}const r=Jf(e,n);return OA(r.duration,r.delay,r.easing)}(n.timings,e.errors);e.currentAnimateTimings=i;let r,s=n.styles?n.styles:Ne({});if(5==s.type)r=this.visitKeyframes(s,e);else{let a=n.styles,o=!1;if(!a){o=!0;const u={};i.easing&&(u.easing=i.easing),a=Ne(u)}e.currentTime+=i.duration+i.delay;const l=this.visitStyle(a,e);l.isEmptyStep=o,r=l}return e.currentAnimateTimings=null,{type:4,timings:i,style:r,options:null}}visitStyle(n,e){const i=this._makeStyleAst(n,e);return this._validateStyleAst(i,e),i}_makeStyleAst(n,e){const i=[],r=Array.isArray(n.styles)?n.styles:[n.styles];for(let o of r)"string"==typeof o?o===la?i.push(o):e.errors.push(new ne(3002,!1)):i.push(sx(o));let s=!1,a=null;return i.forEach(o=>{if(o instanceof Map&&(o.has("easing")&&(a=o.get("easing"),o.delete("easing")),!s))for(let l of o.values())if(l.toString().indexOf("{{")>=0){s=!0;break}}),{type:6,styles:i,easing:a,offset:n.offset,containsDynamicStyles:s,options:null}}_validateStyleAst(n,e){const i=e.currentAnimateTimings;let r=e.currentTime,s=e.currentTime;i&&s>0&&(s-=i.duration+i.delay),n.styles.forEach(a=>{"string"!=typeof a&&a.forEach((o,l)=>{const u=e.collectedStyles.get(e.currentQuerySelector),h=u.get(l);let p=!0;h&&(s!=r&&s>=h.startTime&&r<=h.endTime&&(e.errors.push(function az(t,n,e,i,r){return new ne(3010,!1)}()),p=!1),s=h.startTime),p&&u.set(l,{startTime:s,endTime:r}),e.options&&function Bz(t,n,e){const i=n.params||{},r=cx(t);r.length&&r.forEach(s=>{i.hasOwnProperty(s)||e.push(function $j(t){return new ne(3001,!1)}())})}(o,e.options,e.errors)})})}visitKeyframes(n,e){const i={type:5,styles:[],options:null};if(!e.currentAnimateTimings)return e.errors.push(function oz(){return new ne(3011,!1)}()),i;let s=0;const a=[];let o=!1,l=!1,u=0;const h=n.steps.map(z=>{const ie=this._makeStyleAst(z,e);let X=null!=ie.offset?ie.offset:function eH(t){if("string"==typeof t)return null;let n=null;if(Array.isArray(t))t.forEach(e=>{if(e instanceof Map&&e.has("offset")){const i=e;n=parseFloat(i.get("offset")),i.delete("offset")}});else if(t instanceof Map&&t.has("offset")){const e=t;n=parseFloat(e.get("offset")),e.delete("offset")}return n}(ie.styles),Ce=0;return null!=X&&(s++,Ce=ie.offset=X),l=l||Ce<0||Ce>1,o=o||Ce<u,u=Ce,a.push(Ce),ie});l&&e.errors.push(function lz(){return new ne(3012,!1)}()),o&&e.errors.push(function cz(){return new ne(3200,!1)}());const p=n.steps.length;let C=0;s>0&&s<p?e.errors.push(function uz(){return new ne(3202,!1)}()):0==s&&(C=1/(p-1));const w=p-1,k=e.currentTime,L=e.currentAnimateTimings,U=L.duration;return h.forEach((z,ie)=>{const X=C>0?ie==w?1:C*ie:a[ie],Ce=X*U;e.currentTime=k+L.delay+Ce,L.duration=Ce,this._validateStyleAst(z,e),z.offset=X,i.styles.push(z)}),i}visitReference(n,e){return{type:8,animation:_r(this,rd(n.animation),e),options:Ho(n.options)}}visitAnimateChild(n,e){return e.depCount++,{type:9,options:Ho(n.options)}}visitAnimateRef(n,e){return{type:10,animation:this.visitReference(n.animation,e),options:Ho(n.options)}}visitQuery(n,e){const i=e.currentQuerySelector,r=n.options||{};e.queryCount++,e.currentQuery=n;const[s,a]=function Zz(t){const n=!!t.split(/\s*,\s*/).find(e=>":self"==e);return n&&(t=t.replace(Xz,"")),t=t.replace(/@\*/g,$f).replace(/@\w+/g,e=>$f+"-"+e.slice(1)).replace(/:animating/g,xA),[t,n]}(n.selector);e.currentQuerySelector=i.length?i+" "+s:s,mr(e.collectedStyles,e.currentQuerySelector,new Map);const o=_r(this,rd(n.animation),e);return e.currentQuery=null,e.currentQuerySelector=i,{type:11,selector:s,limit:r.limit||0,optional:!!r.optional,includeSelf:a,animation:o,originalSelector:n.selector,options:Ho(n.options)}}visitStagger(n,e){e.currentQuery||e.errors.push(function dz(){return new ne(3013,!1)}());const i="full"===n.timings?{duration:0,delay:0,easing:"full"}:Jf(n.timings,e.errors,!0);return{type:12,animation:_r(this,rd(n.animation),e),timings:i,options:null}}}class Jz{constructor(n){this.errors=n,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles=new Map,this.options=null,this.unsupportedCSSPropertiesFound=new Set}}function Ho(t){return t?(t=id(t)).params&&(t.params=function $z(t){return t?id(t):null}(t.params)):t={},t}function OA(t,n,e){return{duration:t,delay:n,easing:e}}function LA(t,n,e,i,r,s,a=null,o=!1){return{type:1,element:t,keyframes:n,preStyleProps:e,postStyleProps:i,duration:r,delay:s,totalTime:r+s,easing:a,subTimeline:o}}class ap{constructor(){this._map=new Map}get(n){return this._map.get(n)||[]}append(n,e){let i=this._map.get(n);i||this._map.set(n,i=[]),i.push(...e)}has(n){return this._map.has(n)}clear(){this._map.clear()}}const rH=new RegExp(":enter","g"),aH=new RegExp(":leave","g");function PA(t,n,e,i,r,s=new Map,a=new Map,o,l,u=[]){return(new oH).buildKeyframes(t,n,e,i,r,s,a,o,l,u)}class oH{buildKeyframes(n,e,i,r,s,a,o,l,u,h=[]){u=u||new ap;const p=new NA(n,e,u,r,s,h,[]);p.options=l;const C=l.delay?ca(l.delay):0;p.currentTimeline.delayNextStep(C),p.currentTimeline.setStyles([a],null,p.errors,l),_r(this,i,p);const w=p.timelines.filter(k=>k.containsAnimation());if(w.length&&o.size){let k;for(let L=w.length-1;L>=0;L--){const U=w[L];if(U.element===e){k=U;break}}k&&!k.allowOnlyTimelineStyles()&&k.setStyles([o],null,p.errors,l)}return w.length?w.map(k=>k.buildKeyframes()):[LA(e,[],[],[],0,C,"",!1)]}visitTrigger(n,e){}visitState(n,e){}visitTransition(n,e){}visitAnimateChild(n,e){const i=e.subInstructions.get(e.element);if(i){const r=e.createSubContext(n.options),s=e.currentTimeline.currentTime,a=this._visitSubInstructions(i,r,r.options);s!=a&&e.transformIntoNewTimeline(a)}e.previousNode=n}visitAnimateRef(n,e){const i=e.createSubContext(n.options);i.transformIntoNewTimeline(),this._applyAnimationRefDelays([n.options,n.animation.options],e,i),this.visitReference(n.animation,i),e.transformIntoNewTimeline(i.currentTimeline.currentTime),e.previousNode=n}_applyAnimationRefDelays(n,e,i){for(const r of n){const s=r?.delay;if(s){const a="number"==typeof s?s:ca(sd(s,r?.params??{},e.errors));i.delayNextStep(a)}}}_visitSubInstructions(n,e,i){let s=e.currentTimeline.currentTime;const a=null!=i.duration?ca(i.duration):null,o=null!=i.delay?ca(i.delay):null;return 0!==a&&n.forEach(l=>{const u=e.appendInstructionToTimeline(l,a,o);s=Math.max(s,u.duration+u.delay)}),s}visitReference(n,e){e.updateOptions(n.options,!0),_r(this,n.animation,e),e.previousNode=n}visitSequence(n,e){const i=e.subContextCount;let r=e;const s=n.options;if(s&&(s.params||s.delay)&&(r=e.createSubContext(s),r.transformIntoNewTimeline(),null!=s.delay)){6==r.previousNode.type&&(r.currentTimeline.snapshotCurrentStyles(),r.previousNode=op);const a=ca(s.delay);r.delayNextStep(a)}n.steps.length&&(n.steps.forEach(a=>_r(this,a,r)),r.currentTimeline.applyStylesToKeyframe(),r.subContextCount>i&&r.transformIntoNewTimeline()),e.previousNode=n}visitGroup(n,e){const i=[];let r=e.currentTimeline.currentTime;const s=n.options&&n.options.delay?ca(n.options.delay):0;n.steps.forEach(a=>{const o=e.createSubContext(n.options);s&&o.delayNextStep(s),_r(this,a,o),r=Math.max(r,o.currentTimeline.currentTime),i.push(o.currentTimeline)}),i.forEach(a=>e.currentTimeline.mergeTimelineCollectedStyles(a)),e.transformIntoNewTimeline(r),e.previousNode=n}_visitTiming(n,e){if(n.dynamic){const i=n.strValue;return Jf(e.params?sd(i,e.params,e.errors):i,e.errors)}return{duration:n.duration,delay:n.delay,easing:n.easing}}visitAnimate(n,e){const i=e.currentAnimateTimings=this._visitTiming(n.timings,e),r=e.currentTimeline;i.delay&&(e.incrementTime(i.delay),r.snapshotCurrentStyles());const s=n.style;5==s.type?this.visitKeyframes(s,e):(e.incrementTime(i.duration),this.visitStyle(s,e),r.applyStylesToKeyframe()),e.currentAnimateTimings=null,e.previousNode=n}visitStyle(n,e){const i=e.currentTimeline,r=e.currentAnimateTimings;!r&&i.hasCurrentStyleProperties()&&i.forwardFrame();const s=r&&r.easing||n.easing;n.isEmptyStep?i.applyEmptyStep(s):i.setStyles(n.styles,s,e.errors,e.options),e.previousNode=n}visitKeyframes(n,e){const i=e.currentAnimateTimings,r=e.currentTimeline.duration,s=i.duration,o=e.createSubContext().currentTimeline;o.easing=i.easing,n.styles.forEach(l=>{o.forwardTime((l.offset||0)*s),o.setStyles(l.styles,l.easing,e.errors,e.options),o.applyStylesToKeyframe()}),e.currentTimeline.mergeTimelineCollectedStyles(o),e.transformIntoNewTimeline(r+s),e.previousNode=n}visitQuery(n,e){const i=e.currentTimeline.currentTime,r=n.options||{},s=r.delay?ca(r.delay):0;s&&(6===e.previousNode.type||0==i&&e.currentTimeline.hasCurrentStyleProperties())&&(e.currentTimeline.snapshotCurrentStyles(),e.previousNode=op);let a=i;const o=e.invokeQuery(n.selector,n.originalSelector,n.limit,n.includeSelf,!!r.optional,e.errors);e.currentQueryTotal=o.length;let l=null;o.forEach((u,h)=>{e.currentQueryIndex=h;const p=e.createSubContext(n.options,u);s&&p.delayNextStep(s),u===e.element&&(l=p.currentTimeline),_r(this,n.animation,p),p.currentTimeline.applyStylesToKeyframe(),a=Math.max(a,p.currentTimeline.currentTime)}),e.currentQueryIndex=0,e.currentQueryTotal=0,e.transformIntoNewTimeline(a),l&&(e.currentTimeline.mergeTimelineCollectedStyles(l),e.currentTimeline.snapshotCurrentStyles()),e.previousNode=n}visitStagger(n,e){const i=e.parentContext,r=e.currentTimeline,s=n.timings,a=Math.abs(s.duration),o=a*(e.currentQueryTotal-1);let l=a*e.currentQueryIndex;switch(s.duration<0?"reverse":s.easing){case"reverse":l=o-l;break;case"full":l=i.currentStaggerTime}const h=e.currentTimeline;l&&h.delayNextStep(l);const p=h.currentTime;_r(this,n.animation,e),e.previousNode=n,i.currentStaggerTime=r.currentTime-p+(r.startTime-i.currentTimeline.startTime)}}const op={};class NA{constructor(n,e,i,r,s,a,o,l){this._driver=n,this.element=e,this.subInstructions=i,this._enterClassName=r,this._leaveClassName=s,this.errors=a,this.timelines=o,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=op,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=l||new lp(this._driver,e,0),o.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(n,e){if(!n)return;const i=n;let r=this.options;null!=i.duration&&(r.duration=ca(i.duration)),null!=i.delay&&(r.delay=ca(i.delay));const s=i.params;if(s){let a=r.params;a||(a=this.options.params={}),Object.keys(s).forEach(o=>{(!e||!a.hasOwnProperty(o))&&(a[o]=sd(s[o],a,this.errors))})}}_copyOptions(){const n={};if(this.options){const e=this.options.params;if(e){const i=n.params={};Object.keys(e).forEach(r=>{i[r]=e[r]})}}return n}createSubContext(n=null,e,i){const r=e||this.element,s=new NA(this._driver,r,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(r,i||0));return s.previousNode=this.previousNode,s.currentAnimateTimings=this.currentAnimateTimings,s.options=this._copyOptions(),s.updateOptions(n),s.currentQueryIndex=this.currentQueryIndex,s.currentQueryTotal=this.currentQueryTotal,s.parentContext=this,this.subContextCount++,s}transformIntoNewTimeline(n){return this.previousNode=op,this.currentTimeline=this.currentTimeline.fork(this.element,n),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(n,e,i){const r={duration:e??n.duration,delay:this.currentTimeline.currentTime+(i??0)+n.delay,easing:""},s=new lH(this._driver,n.element,n.keyframes,n.preStyleProps,n.postStyleProps,r,n.stretchStartingKeyframe);return this.timelines.push(s),r}incrementTime(n){this.currentTimeline.forwardTime(this.currentTimeline.duration+n)}delayNextStep(n){n>0&&this.currentTimeline.delayNextStep(n)}invokeQuery(n,e,i,r,s,a){let o=[];if(r&&o.push(this.element),n.length>0){n=(n=n.replace(rH,"."+this._enterClassName)).replace(aH,"."+this._leaveClassName);let u=this._driver.query(this.element,n,1!=i);0!==i&&(u=i<0?u.slice(u.length+i,u.length):u.slice(0,i)),o.push(...u)}return!s&&0==o.length&&a.push(function hz(t){return new ne(3014,!1)}()),o}}class lp{constructor(n,e,i,r){this._driver=n,this.element=e,this.startTime=i,this._elementTimelineStylesLookup=r,this.duration=0,this._previousKeyframe=new Map,this._currentKeyframe=new Map,this._keyframes=new Map,this._styleSummary=new Map,this._localTimelineStyles=new Map,this._pendingStyles=new Map,this._backFill=new Map,this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(e),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(e,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.hasCurrentStyleProperties();default:return!0}}hasCurrentStyleProperties(){return this._currentKeyframe.size>0}get currentTime(){return this.startTime+this.duration}delayNextStep(n){const e=1===this._keyframes.size&&this._pendingStyles.size;this.duration||e?(this.forwardTime(this.currentTime+n),e&&this.snapshotCurrentStyles()):this.startTime+=n}fork(n,e){return this.applyStylesToKeyframe(),new lp(this._driver,n,e||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=new Map,this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(n){this.applyStylesToKeyframe(),this.duration=n,this._loadKeyframe()}_updateStyle(n,e){this._localTimelineStyles.set(n,e),this._globalTimelineStyles.set(n,e),this._styleSummary.set(n,{time:this.currentTime,value:e})}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(n){n&&this._previousKeyframe.set("easing",n);for(let[e,i]of this._globalTimelineStyles)this._backFill.set(e,i||la),this._currentKeyframe.set(e,la);this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(n,e,i,r){e&&this._previousKeyframe.set("easing",e);const s=r&&r.params||{},a=function cH(t,n){const e=new Map;let i;return t.forEach(r=>{if("*"===r){i=i||n.keys();for(let s of i)e.set(s,la)}else Ya(r,e)}),e}(n,this._globalTimelineStyles);for(let[o,l]of a){const u=sd(l,s,i);this._pendingStyles.set(o,u),this._localTimelineStyles.has(o)||this._backFill.set(o,this._globalTimelineStyles.get(o)??la),this._updateStyle(o,u)}}applyStylesToKeyframe(){0!=this._pendingStyles.size&&(this._pendingStyles.forEach((n,e)=>{this._currentKeyframe.set(e,n)}),this._pendingStyles.clear(),this._localTimelineStyles.forEach((n,e)=>{this._currentKeyframe.has(e)||this._currentKeyframe.set(e,n)}))}snapshotCurrentStyles(){for(let[n,e]of this._localTimelineStyles)this._pendingStyles.set(n,e),this._updateStyle(n,e)}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const n=[];for(let e in this._currentKeyframe)n.push(e);return n}mergeTimelineCollectedStyles(n){n._styleSummary.forEach((e,i)=>{const r=this._styleSummary.get(i);(!r||e.time>r.time)&&this._updateStyle(i,e.value)})}buildKeyframes(){this.applyStylesToKeyframe();const n=new Set,e=new Set,i=1===this._keyframes.size&&0===this.duration;let r=[];this._keyframes.forEach((o,l)=>{const u=Ya(o,new Map,this._backFill);u.forEach((h,p)=>{"!"===h?n.add(p):h===la&&e.add(p)}),i||u.set("offset",l/this.duration),r.push(u)});const s=n.size?ep(n.values()):[],a=e.size?ep(e.values()):[];if(i){const o=r[0],l=new Map(o);o.set("offset",0),l.set("offset",1),r=[o,l]}return LA(this.element,r,s,a,this.duration,this.startTime,this.easing,!1)}}class lH extends lp{constructor(n,e,i,r,s,a,o=!1){super(n,e,a.delay),this.keyframes=i,this.preStyleProps=r,this.postStyleProps=s,this._stretchStartingKeyframe=o,this.timings={duration:a.duration,delay:a.delay,easing:a.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let n=this.keyframes,{delay:e,duration:i,easing:r}=this.timings;if(this._stretchStartingKeyframe&&e){const s=[],a=i+e,o=e/a,l=Ya(n[0]);l.set("offset",0),s.push(l);const u=Ya(n[0]);u.set("offset",px(o)),s.push(u);const h=n.length-1;for(let p=1;p<=h;p++){let C=Ya(n[p]);const w=C.get("offset");C.set("offset",px((e+w*i)/a)),s.push(C)}i=a,e=0,r="",n=s}return LA(this.element,n,this.preStyleProps,this.postStyleProps,i,e,r,!0)}}function px(t,n=3){const e=Math.pow(10,n-1);return Math.round(t*e)/e}class FA{}const uH=new Set(["width","height","minWidth","minHeight","maxWidth","maxHeight","left","top","bottom","right","fontSize","outlineWidth","outlineOffset","paddingTop","paddingLeft","paddingBottom","paddingRight","marginTop","marginLeft","marginBottom","marginRight","borderRadius","borderWidth","borderTopWidth","borderLeftWidth","borderRightWidth","borderBottomWidth","textIndent","perspective"]);class dH extends FA{normalizePropertyName(n,e){return MA(n)}normalizeStyleValue(n,e,i,r){let s="";const a=i.toString().trim();if(uH.has(e)&&0!==i&&"0"!==i)if("number"==typeof i)s="px";else{const o=i.match(/^[+-]?[\d\.]+([a-z]*)$/);o&&0==o[1].length&&r.push(function tz(t,n){return new ne(3005,!1)}())}return a+s}}function gx(t,n,e,i,r,s,a,o,l,u,h,p,C){return{type:0,element:t,triggerName:n,isRemovalTransition:r,fromState:e,fromStyles:s,toState:i,toStyles:a,timelines:o,queriedElements:l,preStyleProps:u,postStyleProps:h,totalTime:p,errors:C}}const BA={};class mx{constructor(n,e,i){this._triggerName=n,this.ast=e,this._stateStyles=i}match(n,e,i,r){return function hH(t,n,e,i,r){return t.some(s=>s(n,e,i,r))}(this.ast.matchers,n,e,i,r)}buildStyles(n,e,i){let r=this._stateStyles.get("*");return void 0!==n&&(r=this._stateStyles.get(n?.toString())||r),r?r.buildStyles(e,i):new Map}build(n,e,i,r,s,a,o,l,u,h){const p=[],C=this.ast.options&&this.ast.options.params||BA,k=this.buildStyles(i,o&&o.params||BA,p),L=l&&l.params||BA,U=this.buildStyles(r,L,p),z=new Set,ie=new Map,X=new Map,Ce="void"===r,mt={params:fH(L,C),delay:this.ast.options?.delay},It=h?[]:PA(n,e,this.ast.animation,s,a,k,U,mt,u,p);let on=0;if(It.forEach(Qi=>{on=Math.max(Qi.duration+Qi.delay,on)}),p.length)return gx(e,this._triggerName,i,r,Ce,k,U,[],[],ie,X,on,p);It.forEach(Qi=>{const Er=Qi.element,Xc=mr(ie,Er,new Set);Qi.preStyleProps.forEach(cs=>Xc.add(cs));const Ea=mr(X,Er,new Set);Qi.postStyleProps.forEach(cs=>Ea.add(cs)),Er!==e&&z.add(Er)});const Ri=ep(z.values());return gx(e,this._triggerName,i,r,Ce,k,U,It,Ri,ie,X,on)}}function fH(t,n){const e=id(n);for(const i in t)t.hasOwnProperty(i)&&null!=t[i]&&(e[i]=t[i]);return e}class pH{constructor(n,e,i){this.styles=n,this.defaultParams=e,this.normalizer=i}buildStyles(n,e){const i=new Map,r=id(this.defaultParams);return Object.keys(n).forEach(s=>{const a=n[s];null!==a&&(r[s]=a)}),this.styles.styles.forEach(s=>{"string"!=typeof s&&s.forEach((a,o)=>{a&&(a=sd(a,r,e));const l=this.normalizer.normalizePropertyName(o,e);a=this.normalizer.normalizeStyleValue(o,l,a,e),i.set(l,a)})}),i}}class mH{constructor(n,e,i){this.name=n,this.ast=e,this._normalizer=i,this.transitionFactories=[],this.states=new Map,e.states.forEach(r=>{this.states.set(r.name,new pH(r.style,r.options&&r.options.params||{},i))}),_x(this.states,"true","1"),_x(this.states,"false","0"),e.transitions.forEach(r=>{this.transitionFactories.push(new mx(n,r,this.states))}),this.fallbackTransition=function _H(t,n,e){return new mx(t,{type:1,animation:{type:2,steps:[],options:null},matchers:[(a,o)=>!0],options:null,queryCount:0,depCount:0},n)}(n,this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(n,e,i,r){return this.transitionFactories.find(a=>a.match(n,e,i,r))||null}matchStyles(n,e,i){return this.fallbackTransition.buildStyles(n,e,i)}}function _x(t,n,e){t.has(n)?t.has(e)||t.set(e,t.get(n)):t.has(e)&&t.set(n,t.get(e))}const yH=new ap;class AH{constructor(n,e,i){this.bodyNode=n,this._driver=e,this._normalizer=i,this._animations=new Map,this._playersById=new Map,this.players=[]}register(n,e){const i=[],s=RA(this._driver,e,i,[]);if(i.length)throw function Az(t){return new ne(3503,!1)}();this._animations.set(n,s)}_buildPlayer(n,e,i){const r=n.element,s=X0(0,this._normalizer,0,n.keyframes,e,i);return this._driver.animate(r,s,n.duration,n.delay,n.easing,[],!0)}create(n,e,i={}){const r=[],s=this._animations.get(n);let a;const o=new Map;if(s?(a=PA(this._driver,e,s,wA,Qf,new Map,new Map,i,yH,r),a.forEach(h=>{const p=mr(o,h.element,new Map);h.postStyleProps.forEach(C=>p.set(C,null))})):(r.push(function vz(){return new ne(3300,!1)}()),a=[]),r.length)throw function bz(t){return new ne(3504,!1)}();o.forEach((h,p)=>{h.forEach((C,w)=>{h.set(w,this._driver.computeStyle(p,w,la))})});const u=Ka(a.map(h=>{const p=o.get(h.element);return this._buildPlayer(h,new Map,p)}));return this._playersById.set(n,u),u.onDestroy(()=>this.destroy(n)),this.players.push(u),u}destroy(n){const e=this._getPlayer(n);e.destroy(),this._playersById.delete(n);const i=this.players.indexOf(e);i>=0&&this.players.splice(i,1)}_getPlayer(n){const e=this._playersById.get(n);if(!e)throw function Cz(t){return new ne(3301,!1)}();return e}listen(n,e,i,r){const s=TA(e,"","","");return bA(this._getPlayer(n),i,s,r),()=>{}}command(n,e,i,r){if("register"==i)return void this.register(n,r[0]);if("create"==i)return void this.create(n,e,r[0]||{});const s=this._getPlayer(n);switch(i){case"play":s.play();break;case"pause":s.pause();break;case"reset":s.reset();break;case"restart":s.restart();break;case"finish":s.finish();break;case"init":s.init();break;case"setPosition":s.setPosition(parseFloat(r[0]));break;case"destroy":this.destroy(n)}}}const yx="ng-animate-queued",VA="ng-animate-disabled",EH=[],Ax={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},SH={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},Br="__ng_removed";class UA{constructor(n,e=""){this.namespaceId=e;const i=n&&n.hasOwnProperty("value");if(this.value=function kH(t){return t??null}(i?n.value:n),i){const s=id(n);delete s.value,this.options=s}else this.options={};this.options.params||(this.options.params={})}get params(){return this.options.params}absorbOptions(n){const e=n.params;if(e){const i=this.options.params;Object.keys(e).forEach(r=>{null==i[r]&&(i[r]=e[r])})}}}const ad="void",jA=new UA(ad);class DH{constructor(n,e,i){this.id=n,this.hostElement=e,this._engine=i,this.players=[],this._triggers=new Map,this._queue=[],this._elementListeners=new Map,this._hostClassName="ng-tns-"+n,Vr(e,this._hostClassName)}listen(n,e,i,r){if(!this._triggers.has(e))throw function Tz(t,n){return new ne(3302,!1)}();if(null==i||0==i.length)throw function Ez(t){return new ne(3303,!1)}();if(!function IH(t){return"start"==t||"done"==t}(i))throw function Sz(t,n){return new ne(3400,!1)}();const s=mr(this._elementListeners,n,[]),a={name:e,phase:i,callback:r};s.push(a);const o=mr(this._engine.statesByElement,n,new Map);return o.has(e)||(Vr(n,Zf),Vr(n,Zf+"-"+e),o.set(e,jA)),()=>{this._engine.afterFlush(()=>{const l=s.indexOf(a);l>=0&&s.splice(l,1),this._triggers.has(e)||o.delete(e)})}}register(n,e){return!this._triggers.has(n)&&(this._triggers.set(n,e),!0)}_getTrigger(n){const e=this._triggers.get(n);if(!e)throw function Dz(t){return new ne(3401,!1)}();return e}trigger(n,e,i,r=!0){const s=this._getTrigger(e),a=new zA(this.id,e,n);let o=this._engine.statesByElement.get(n);o||(Vr(n,Zf),Vr(n,Zf+"-"+e),this._engine.statesByElement.set(n,o=new Map));let l=o.get(e);const u=new UA(i,this.id);if(!(i&&i.hasOwnProperty("value"))&&l&&u.absorbOptions(l.options),o.set(e,u),l||(l=jA),u.value!==ad&&l.value===u.value){if(!function OH(t,n){const e=Object.keys(t),i=Object.keys(n);if(e.length!=i.length)return!1;for(let r=0;r<e.length;r++){const s=e[r];if(!n.hasOwnProperty(s)||t[s]!==n[s])return!1}return!0}(l.params,u.params)){const L=[],U=s.matchStyles(l.value,l.params,L),z=s.matchStyles(u.value,u.params,L);L.length?this._engine.reportError(L):this._engine.afterFlush(()=>{zo(n,U),xs(n,z)})}return}const C=mr(this._engine.playersByElement,n,[]);C.forEach(L=>{L.namespaceId==this.id&&L.triggerName==e&&L.queued&&L.destroy()});let w=s.matchTransition(l.value,u.value,n,u.params),k=!1;if(!w){if(!r)return;w=s.fallbackTransition,k=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:n,triggerName:e,transition:w,fromState:l,toState:u,player:a,isFallbackTransition:k}),k||(Vr(n,yx),a.onStart(()=>{pc(n,yx)})),a.onDone(()=>{let L=this.players.indexOf(a);L>=0&&this.players.splice(L,1);const U=this._engine.playersByElement.get(n);if(U){let z=U.indexOf(a);z>=0&&U.splice(z,1)}}),this.players.push(a),C.push(a),a}deregister(n){this._triggers.delete(n),this._engine.statesByElement.forEach(e=>e.delete(n)),this._elementListeners.forEach((e,i)=>{this._elementListeners.set(i,e.filter(r=>r.name!=n))})}clearElementCache(n){this._engine.statesByElement.delete(n),this._elementListeners.delete(n);const e=this._engine.playersByElement.get(n);e&&(e.forEach(i=>i.destroy()),this._engine.playersByElement.delete(n))}_signalRemovalForInnerTriggers(n,e){const i=this._engine.driver.query(n,$f,!0);i.forEach(r=>{if(r[Br])return;const s=this._engine.fetchNamespacesByElement(r);s.size?s.forEach(a=>a.triggerLeaveAnimation(r,e,!1,!0)):this.clearElementCache(r)}),this._engine.afterFlushAnimationsDone(()=>i.forEach(r=>this.clearElementCache(r)))}triggerLeaveAnimation(n,e,i,r){const s=this._engine.statesByElement.get(n),a=new Map;if(s){const o=[];if(s.forEach((l,u)=>{if(a.set(u,l.value),this._triggers.has(u)){const h=this.trigger(n,u,ad,r);h&&o.push(h)}}),o.length)return this._engine.markElementAsRemoved(this.id,n,!0,e,a),i&&Ka(o).onDone(()=>this._engine.processLeaveNode(n)),!0}return!1}prepareLeaveAnimationListeners(n){const e=this._elementListeners.get(n),i=this._engine.statesByElement.get(n);if(e&&i){const r=new Set;e.forEach(s=>{const a=s.name;if(r.has(a))return;r.add(a);const l=this._triggers.get(a).fallbackTransition,u=i.get(a)||jA,h=new UA(ad),p=new zA(this.id,a,n);this._engine.totalQueuedPlayers++,this._queue.push({element:n,triggerName:a,transition:l,fromState:u,toState:h,player:p,isFallbackTransition:!0})})}}removeNode(n,e){const i=this._engine;if(n.childElementCount&&this._signalRemovalForInnerTriggers(n,e),this.triggerLeaveAnimation(n,e,!0))return;let r=!1;if(i.totalAnimations){const s=i.players.length?i.playersByQueriedElement.get(n):[];if(s&&s.length)r=!0;else{let a=n;for(;a=a.parentNode;)if(i.statesByElement.get(a)){r=!0;break}}}if(this.prepareLeaveAnimationListeners(n),r)i.markElementAsRemoved(this.id,n,!1,e);else{const s=n[Br];(!s||s===Ax)&&(i.afterFlush(()=>this.clearElementCache(n)),i.destroyInnerAnimations(n),i._onRemovalComplete(n,e))}}insertNode(n,e){Vr(n,this._hostClassName)}drainQueuedTransitions(n){const e=[];return this._queue.forEach(i=>{const r=i.player;if(r.destroyed)return;const s=i.element,a=this._elementListeners.get(s);a&&a.forEach(o=>{if(o.name==i.triggerName){const l=TA(s,i.triggerName,i.fromState.value,i.toState.value);l._data=n,bA(i.player,o.phase,l,o.callback)}}),r.markedForDestroy?this._engine.afterFlush(()=>{r.destroy()}):e.push(i)}),this._queue=[],e.sort((i,r)=>{const s=i.transition.ast.depCount,a=r.transition.ast.depCount;return 0==s||0==a?s-a:this._engine.driver.containsElement(i.element,r.element)?1:-1})}destroy(n){this.players.forEach(e=>e.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,n)}elementContainsData(n){let e=!1;return this._elementListeners.has(n)&&(e=!0),e=!!this._queue.find(i=>i.element===n)||e,e}}class wH{constructor(n,e,i){this.bodyNode=n,this.driver=e,this._normalizer=i,this.players=[],this.newHostElements=new Map,this.playersByElement=new Map,this.playersByQueriedElement=new Map,this.statesByElement=new Map,this.disabledNodes=new Set,this.totalAnimations=0,this.totalQueuedPlayers=0,this._namespaceLookup={},this._namespaceList=[],this._flushFns=[],this._whenQuietFns=[],this.namespacesByHostElement=new Map,this.collectedEnterElements=[],this.collectedLeaveElements=[],this.onRemovalComplete=(r,s)=>{}}_onRemovalComplete(n,e){this.onRemovalComplete(n,e)}get queuedPlayers(){const n=[];return this._namespaceList.forEach(e=>{e.players.forEach(i=>{i.queued&&n.push(i)})}),n}createNamespace(n,e){const i=new DH(n,e,this);return this.bodyNode&&this.driver.containsElement(this.bodyNode,e)?this._balanceNamespaceList(i,e):(this.newHostElements.set(e,i),this.collectEnterElement(e)),this._namespaceLookup[n]=i}_balanceNamespaceList(n,e){const i=this._namespaceList,r=this.namespacesByHostElement;if(i.length-1>=0){let a=!1,o=this.driver.getParentElement(e);for(;o;){const l=r.get(o);if(l){const u=i.indexOf(l);i.splice(u+1,0,n),a=!0;break}o=this.driver.getParentElement(o)}a||i.unshift(n)}else i.push(n);return r.set(e,n),n}register(n,e){let i=this._namespaceLookup[n];return i||(i=this.createNamespace(n,e)),i}registerTrigger(n,e,i){let r=this._namespaceLookup[n];r&&r.register(e,i)&&this.totalAnimations++}destroy(n,e){if(!n)return;const i=this._fetchNamespace(n);this.afterFlush(()=>{this.namespacesByHostElement.delete(i.hostElement),delete this._namespaceLookup[n];const r=this._namespaceList.indexOf(i);r>=0&&this._namespaceList.splice(r,1)}),this.afterFlushAnimationsDone(()=>i.destroy(e))}_fetchNamespace(n){return this._namespaceLookup[n]}fetchNamespacesByElement(n){const e=new Set,i=this.statesByElement.get(n);if(i)for(let r of i.values())if(r.namespaceId){const s=this._fetchNamespace(r.namespaceId);s&&e.add(s)}return e}trigger(n,e,i,r){if(cp(e)){const s=this._fetchNamespace(n);if(s)return s.trigger(e,i,r),!0}return!1}insertNode(n,e,i,r){if(!cp(e))return;const s=e[Br];if(s&&s.setForRemoval){s.setForRemoval=!1,s.setForMove=!0;const a=this.collectedLeaveElements.indexOf(e);a>=0&&this.collectedLeaveElements.splice(a,1)}if(n){const a=this._fetchNamespace(n);a&&a.insertNode(e,i)}r&&this.collectEnterElement(e)}collectEnterElement(n){this.collectedEnterElements.push(n)}markElementAsDisabled(n,e){e?this.disabledNodes.has(n)||(this.disabledNodes.add(n),Vr(n,VA)):this.disabledNodes.has(n)&&(this.disabledNodes.delete(n),pc(n,VA))}removeNode(n,e,i,r){if(cp(e)){const s=n?this._fetchNamespace(n):null;if(s?s.removeNode(e,r):this.markElementAsRemoved(n,e,!1,r),i){const a=this.namespacesByHostElement.get(e);a&&a.id!==n&&a.removeNode(e,r)}}else this._onRemovalComplete(e,r)}markElementAsRemoved(n,e,i,r,s){this.collectedLeaveElements.push(e),e[Br]={namespaceId:n,setForRemoval:r,hasAnimation:i,removedBeforeQueried:!1,previousTriggersValues:s}}listen(n,e,i,r,s){return cp(e)?this._fetchNamespace(n).listen(e,i,r,s):()=>{}}_buildInstruction(n,e,i,r,s){return n.transition.build(this.driver,n.element,n.fromState.value,n.toState.value,i,r,n.fromState.options,n.toState.options,e,s)}destroyInnerAnimations(n){let e=this.driver.query(n,$f,!0);e.forEach(i=>this.destroyActiveAnimationsForElement(i)),0!=this.playersByQueriedElement.size&&(e=this.driver.query(n,xA,!0),e.forEach(i=>this.finishActiveQueriedAnimationOnElement(i)))}destroyActiveAnimationsForElement(n){const e=this.playersByElement.get(n);e&&e.forEach(i=>{i.queued?i.markedForDestroy=!0:i.destroy()})}finishActiveQueriedAnimationOnElement(n){const e=this.playersByQueriedElement.get(n);e&&e.forEach(i=>i.finish())}whenRenderingDone(){return new Promise(n=>{if(this.players.length)return Ka(this.players).onDone(()=>n());n()})}processLeaveNode(n){const e=n[Br];if(e&&e.setForRemoval){if(n[Br]=Ax,e.namespaceId){this.destroyInnerAnimations(n);const i=this._fetchNamespace(e.namespaceId);i&&i.clearElementCache(n)}this._onRemovalComplete(n,e.setForRemoval)}n.classList?.contains(VA)&&this.markElementAsDisabled(n,!1),this.driver.query(n,".ng-animate-disabled",!0).forEach(i=>{this.markElementAsDisabled(i,!1)})}flush(n=-1){let e=[];if(this.newHostElements.size&&(this.newHostElements.forEach((i,r)=>this._balanceNamespaceList(i,r)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let i=0;i<this.collectedEnterElements.length;i++)Vr(this.collectedEnterElements[i],"ng-star-inserted");if(this._namespaceList.length&&(this.totalQueuedPlayers||this.collectedLeaveElements.length)){const i=[];try{e=this._flushAnimations(i,n)}finally{for(let r=0;r<i.length;r++)i[r]()}}else for(let i=0;i<this.collectedLeaveElements.length;i++)this.processLeaveNode(this.collectedLeaveElements[i]);if(this.totalQueuedPlayers=0,this.collectedEnterElements.length=0,this.collectedLeaveElements.length=0,this._flushFns.forEach(i=>i()),this._flushFns=[],this._whenQuietFns.length){const i=this._whenQuietFns;this._whenQuietFns=[],e.length?Ka(e).onDone(()=>{i.forEach(r=>r())}):i.forEach(r=>r())}}reportError(n){throw function wz(t){return new ne(3402,!1)}()}_flushAnimations(n,e){const i=new ap,r=[],s=new Map,a=[],o=new Map,l=new Map,u=new Map,h=new Set;this.disabledNodes.forEach(Re=>{h.add(Re);const qe=this.driver.query(Re,".ng-animate-queued",!0);for(let st=0;st<qe.length;st++)h.add(qe[st])});const p=this.bodyNode,C=Array.from(this.statesByElement.keys()),w=Cx(C,this.collectedEnterElements),k=new Map;let L=0;w.forEach((Re,qe)=>{const st=wA+L++;k.set(qe,st),Re.forEach(Kt=>Vr(Kt,st))});const U=[],z=new Set,ie=new Set;for(let Re=0;Re<this.collectedLeaveElements.length;Re++){const qe=this.collectedLeaveElements[Re],st=qe[Br];st&&st.setForRemoval&&(U.push(qe),z.add(qe),st.hasAnimation?this.driver.query(qe,".ng-star-inserted",!0).forEach(Kt=>z.add(Kt)):ie.add(qe))}const X=new Map,Ce=Cx(C,Array.from(z));Ce.forEach((Re,qe)=>{const st=Qf+L++;X.set(qe,st),Re.forEach(Kt=>Vr(Kt,st))}),n.push(()=>{w.forEach((Re,qe)=>{const st=k.get(qe);Re.forEach(Kt=>pc(Kt,st))}),Ce.forEach((Re,qe)=>{const st=X.get(qe);Re.forEach(Kt=>pc(Kt,st))}),U.forEach(Re=>{this.processLeaveNode(Re)})});const mt=[],It=[];for(let Re=this._namespaceList.length-1;Re>=0;Re--)this._namespaceList[Re].drainQueuedTransitions(e).forEach(st=>{const Kt=st.player,_i=st.element;if(mt.push(Kt),this.collectedEnterElements.length){const Oi=_i[Br];if(Oi&&Oi.setForMove){if(Oi.previousTriggersValues&&Oi.previousTriggersValues.has(st.triggerName)){const fl=Oi.previousTriggersValues.get(st.triggerName),zr=this.statesByElement.get(st.element);if(zr&&zr.has(st.triggerName)){const Yg=zr.get(st.triggerName);Yg.value=fl,zr.set(st.triggerName,Yg)}}return void Kt.destroy()}}const Bs=!p||!this.driver.containsElement(p,_i),Sr=X.get(_i),lo=k.get(_i),Ln=this._buildInstruction(st,i,lo,Sr,Bs);if(Ln.errors&&Ln.errors.length)return void It.push(Ln);if(Bs)return Kt.onStart(()=>zo(_i,Ln.fromStyles)),Kt.onDestroy(()=>xs(_i,Ln.toStyles)),void r.push(Kt);if(st.isFallbackTransition)return Kt.onStart(()=>zo(_i,Ln.fromStyles)),Kt.onDestroy(()=>xs(_i,Ln.toStyles)),void r.push(Kt);const bL=[];Ln.timelines.forEach(Oi=>{Oi.stretchStartingKeyframe=!0,this.disabledNodes.has(Oi.element)||bL.push(Oi)}),Ln.timelines=bL,i.append(_i,Ln.timelines),a.push({instruction:Ln,player:Kt,element:_i}),Ln.queriedElements.forEach(Oi=>mr(o,Oi,[]).push(Kt)),Ln.preStyleProps.forEach((Oi,fl)=>{if(Oi.size){let zr=l.get(fl);zr||l.set(fl,zr=new Set),Oi.forEach((Yg,hC)=>zr.add(hC))}}),Ln.postStyleProps.forEach((Oi,fl)=>{let zr=u.get(fl);zr||u.set(fl,zr=new Set),Oi.forEach((Yg,hC)=>zr.add(hC))})});if(It.length){const Re=[];It.forEach(qe=>{Re.push(function xz(t,n){return new ne(3505,!1)}())}),mt.forEach(qe=>qe.destroy()),this.reportError(Re)}const on=new Map,Ri=new Map;a.forEach(Re=>{const qe=Re.element;i.has(qe)&&(Ri.set(qe,qe),this._beforeAnimationBuild(Re.player.namespaceId,Re.instruction,on))}),r.forEach(Re=>{const qe=Re.element;this._getPreviousPlayers(qe,!1,Re.namespaceId,Re.triggerName,null).forEach(Kt=>{mr(on,qe,[]).push(Kt),Kt.destroy()})});const Qi=U.filter(Re=>Ex(Re,l,u)),Er=new Map;bx(Er,this.driver,ie,u,la).forEach(Re=>{Ex(Re,l,u)&&Qi.push(Re)});const Ea=new Map;w.forEach((Re,qe)=>{bx(Ea,this.driver,new Set(Re),l,"!")}),Qi.forEach(Re=>{const qe=Er.get(Re),st=Ea.get(Re);Er.set(Re,new Map([...Array.from(qe?.entries()??[]),...Array.from(st?.entries()??[])]))});const cs=[],Qc=[],Zc={};a.forEach(Re=>{const{element:qe,player:st,instruction:Kt}=Re;if(i.has(qe)){if(h.has(qe))return st.onDestroy(()=>xs(qe,Kt.toStyles)),st.disabled=!0,st.overrideTotalTime(Kt.totalTime),void r.push(st);let _i=Zc;if(Ri.size>1){let Sr=qe;const lo=[];for(;Sr=Sr.parentNode;){const Ln=Ri.get(Sr);if(Ln){_i=Ln;break}lo.push(Sr)}lo.forEach(Ln=>Ri.set(Ln,_i))}const Bs=this._buildAnimation(st.namespaceId,Kt,on,s,Ea,Er);if(st.setRealPlayer(Bs),_i===Zc)cs.push(st);else{const Sr=this.playersByElement.get(_i);Sr&&Sr.length&&(st.parentPlayer=Ka(Sr)),r.push(st)}}else zo(qe,Kt.fromStyles),st.onDestroy(()=>xs(qe,Kt.toStyles)),Qc.push(st),h.has(qe)&&r.push(st)}),Qc.forEach(Re=>{const qe=s.get(Re.element);if(qe&&qe.length){const st=Ka(qe);Re.setRealPlayer(st)}}),r.forEach(Re=>{Re.parentPlayer?Re.syncPlayerEvents(Re.parentPlayer):Re.destroy()});for(let Re=0;Re<U.length;Re++){const qe=U[Re],st=qe[Br];if(pc(qe,Qf),st&&st.hasAnimation)continue;let Kt=[];if(o.size){let Bs=o.get(qe);Bs&&Bs.length&&Kt.push(...Bs);let Sr=this.driver.query(qe,xA,!0);for(let lo=0;lo<Sr.length;lo++){let Ln=o.get(Sr[lo]);Ln&&Ln.length&&Kt.push(...Ln)}}const _i=Kt.filter(Bs=>!Bs.destroyed);_i.length?MH(this,qe,_i):this.processLeaveNode(qe)}return U.length=0,cs.forEach(Re=>{this.players.push(Re),Re.onDone(()=>{Re.destroy();const qe=this.players.indexOf(Re);this.players.splice(qe,1)}),Re.play()}),cs}elementContainsData(n,e){let i=!1;const r=e[Br];return r&&r.setForRemoval&&(i=!0),this.playersByElement.has(e)&&(i=!0),this.playersByQueriedElement.has(e)&&(i=!0),this.statesByElement.has(e)&&(i=!0),this._fetchNamespace(n).elementContainsData(e)||i}afterFlush(n){this._flushFns.push(n)}afterFlushAnimationsDone(n){this._whenQuietFns.push(n)}_getPreviousPlayers(n,e,i,r,s){let a=[];if(e){const o=this.playersByQueriedElement.get(n);o&&(a=o)}else{const o=this.playersByElement.get(n);if(o){const l=!s||s==ad;o.forEach(u=>{u.queued||!l&&u.triggerName!=r||a.push(u)})}}return(i||r)&&(a=a.filter(o=>!(i&&i!=o.namespaceId||r&&r!=o.triggerName))),a}_beforeAnimationBuild(n,e,i){const s=e.element,a=e.isRemovalTransition?void 0:n,o=e.isRemovalTransition?void 0:e.triggerName;for(const l of e.timelines){const u=l.element,h=u!==s,p=mr(i,u,[]);this._getPreviousPlayers(u,h,a,o,e.toState).forEach(w=>{const k=w.getRealPlayer();k.beforeDestroy&&k.beforeDestroy(),w.destroy(),p.push(w)})}zo(s,e.fromStyles)}_buildAnimation(n,e,i,r,s,a){const o=e.triggerName,l=e.element,u=[],h=new Set,p=new Set,C=e.timelines.map(k=>{const L=k.element;h.add(L);const U=L[Br];if(U&&U.removedBeforeQueried)return new nd(k.duration,k.delay);const z=L!==l,ie=function RH(t){const n=[];return Tx(t,n),n}((i.get(L)||EH).map(on=>on.getRealPlayer())).filter(on=>!!on.element&&on.element===L),X=s.get(L),Ce=a.get(L),mt=X0(0,this._normalizer,0,k.keyframes,X,Ce),It=this._buildPlayer(k,mt,ie);if(k.subTimeline&&r&&p.add(L),z){const on=new zA(n,o,L);on.setRealPlayer(It),u.push(on)}return It});u.forEach(k=>{mr(this.playersByQueriedElement,k.element,[]).push(k),k.onDone(()=>function xH(t,n,e){let i=t.get(n);if(i){if(i.length){const r=i.indexOf(e);i.splice(r,1)}0==i.length&&t.delete(n)}return i}(this.playersByQueriedElement,k.element,k))}),h.forEach(k=>Vr(k,rx));const w=Ka(C);return w.onDestroy(()=>{h.forEach(k=>pc(k,rx)),xs(l,e.toStyles)}),p.forEach(k=>{mr(r,k,[]).push(w)}),w}_buildPlayer(n,e,i){return e.length>0?this.driver.animate(n.element,e,n.duration,n.delay,n.easing,i):new nd(n.duration,n.delay)}}class zA{constructor(n,e,i){this.namespaceId=n,this.triggerName=e,this.element=i,this._player=new nd,this._containsRealPlayer=!1,this._queuedCallbacks=new Map,this.destroyed=!1,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}setRealPlayer(n){this._containsRealPlayer||(this._player=n,this._queuedCallbacks.forEach((e,i)=>{e.forEach(r=>bA(n,i,void 0,r))}),this._queuedCallbacks.clear(),this._containsRealPlayer=!0,this.overrideTotalTime(n.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(n){this.totalTime=n}syncPlayerEvents(n){const e=this._player;e.triggerCallback&&n.onStart(()=>e.triggerCallback("start")),n.onDone(()=>this.finish()),n.onDestroy(()=>this.destroy())}_queueEvent(n,e){mr(this._queuedCallbacks,n,[]).push(e)}onDone(n){this.queued&&this._queueEvent("done",n),this._player.onDone(n)}onStart(n){this.queued&&this._queueEvent("start",n),this._player.onStart(n)}onDestroy(n){this.queued&&this._queueEvent("destroy",n),this._player.onDestroy(n)}init(){this._player.init()}hasStarted(){return!this.queued&&this._player.hasStarted()}play(){!this.queued&&this._player.play()}pause(){!this.queued&&this._player.pause()}restart(){!this.queued&&this._player.restart()}finish(){this._player.finish()}destroy(){this.destroyed=!0,this._player.destroy()}reset(){!this.queued&&this._player.reset()}setPosition(n){this.queued||this._player.setPosition(n)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(n){const e=this._player;e.triggerCallback&&e.triggerCallback(n)}}function cp(t){return t&&1===t.nodeType}function vx(t,n){const e=t.style.display;return t.style.display=n??"none",e}function bx(t,n,e,i,r){const s=[];e.forEach(l=>s.push(vx(l)));const a=[];i.forEach((l,u)=>{const h=new Map;l.forEach(p=>{const C=n.computeStyle(u,p,r);h.set(p,C),(!C||0==C.length)&&(u[Br]=SH,a.push(u))}),t.set(u,h)});let o=0;return e.forEach(l=>vx(l,s[o++])),a}function Cx(t,n){const e=new Map;if(t.forEach(o=>e.set(o,[])),0==n.length)return e;const r=new Set(n),s=new Map;function a(o){if(!o)return 1;let l=s.get(o);if(l)return l;const u=o.parentNode;return l=e.has(u)?u:r.has(u)?1:a(u),s.set(o,l),l}return n.forEach(o=>{const l=a(o);1!==l&&e.get(l).push(o)}),e}function Vr(t,n){t.classList?.add(n)}function pc(t,n){t.classList?.remove(n)}function MH(t,n,e){Ka(e).onDone(()=>t.processLeaveNode(n))}function Tx(t,n){for(let e=0;e<t.length;e++){const i=t[e];i instanceof Y0?Tx(i.players,n):n.push(i)}}function Ex(t,n,e){const i=e.get(t);if(!i)return!1;let r=n.get(t);return r?i.forEach(s=>r.add(s)):n.set(t,i),e.delete(t),!0}class up{constructor(n,e,i){this.bodyNode=n,this._driver=e,this._normalizer=i,this._triggerCache={},this.onRemovalComplete=(r,s)=>{},this._transitionEngine=new wH(n,e,i),this._timelineEngine=new AH(n,e,i),this._transitionEngine.onRemovalComplete=(r,s)=>this.onRemovalComplete(r,s)}registerTrigger(n,e,i,r,s){const a=n+"-"+r;let o=this._triggerCache[a];if(!o){const l=[],h=RA(this._driver,s,l,[]);if(l.length)throw function _z(t,n){return new ne(3404,!1)}();o=function gH(t,n,e){return new mH(t,n,e)}(r,h,this._normalizer),this._triggerCache[a]=o}this._transitionEngine.registerTrigger(e,r,o)}register(n,e){this._transitionEngine.register(n,e)}destroy(n,e){this._transitionEngine.destroy(n,e)}onInsert(n,e,i,r){this._transitionEngine.insertNode(n,e,i,r)}onRemove(n,e,i,r){this._transitionEngine.removeNode(n,e,r||!1,i)}disableAnimations(n,e){this._transitionEngine.markElementAsDisabled(n,e)}process(n,e,i,r){if("@"==i.charAt(0)){const[s,a]=Q0(i);this._timelineEngine.command(s,e,a,r)}else this._transitionEngine.trigger(n,e,i,r)}listen(n,e,i,r,s){if("@"==i.charAt(0)){const[a,o]=Q0(i);return this._timelineEngine.listen(a,e,o,s)}return this._transitionEngine.listen(n,e,i,r,s)}flush(n=-1){this._transitionEngine.flush(n)}get players(){return this._transitionEngine.players.concat(this._timelineEngine.players)}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}}let PH=(()=>{class t{constructor(e,i,r){this._element=e,this._startStyles=i,this._endStyles=r,this._state=0;let s=t.initialStylesByElement.get(e);s||t.initialStylesByElement.set(e,s=new Map),this._initialStyles=s}start(){this._state<1&&(this._startStyles&&xs(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(xs(this._element,this._initialStyles),this._endStyles&&(xs(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(t.initialStylesByElement.delete(this._element),this._startStyles&&(zo(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(zo(this._element,this._endStyles),this._endStyles=null),xs(this._element,this._initialStyles),this._state=3)}}return t.initialStylesByElement=new WeakMap,t})();function HA(t){let n=null;return t.forEach((e,i)=>{(function NH(t){return"display"===t||"position"===t})(i)&&(n=n||new Map,n.set(i,e))}),n}class Sx{constructor(n,e,i,r){this.element=n,this.keyframes=e,this.options=i,this._specialStyles=r,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this._originalOnDoneFns=[],this._originalOnStartFns=[],this.time=0,this.parentPlayer=null,this.currentSnapshot=new Map,this._duration=i.duration,this._delay=i.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(n=>n()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;const n=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,n,this.options),this._finalKeyframe=n.length?n[n.length-1]:new Map,this.domPlayer.addEventListener("finish",()=>this._onFinish())}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_convertKeyframesToObject(n){const e=[];return n.forEach(i=>{e.push(Object.fromEntries(i))}),e}_triggerWebAnimation(n,e,i){return n.animate(this._convertKeyframesToObject(e),i)}onStart(n){this._originalOnStartFns.push(n),this._onStartFns.push(n)}onDone(n){this._originalOnDoneFns.push(n),this._onDoneFns.push(n)}onDestroy(n){this._onDestroyFns.push(n)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(n=>n()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}pause(){this.init(),this.domPlayer.pause()}finish(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()}reset(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}_resetDomPlayerState(){this.domPlayer&&this.domPlayer.cancel()}restart(){this.reset(),this.play()}hasStarted(){return this._started}destroy(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(n=>n()),this._onDestroyFns=[])}setPosition(n){void 0===this.domPlayer&&this.init(),this.domPlayer.currentTime=n*this.time}getPosition(){return this.domPlayer.currentTime/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){const n=new Map;this.hasStarted()&&this._finalKeyframe.forEach((i,r)=>{"offset"!==r&&n.set(r,this._finished?i:ux(this.element,r))}),this.currentSnapshot=n}triggerCallback(n){const e="start"===n?this._onStartFns:this._onDoneFns;e.forEach(i=>i()),e.length=0}}class FH{validateStyleProperty(n){return!0}validateAnimatableStyleProperty(n){return!0}matchesElement(n,e){return!1}containsElement(n,e){return ex(n,e)}getParentElement(n){return SA(n)}query(n,e,i){return tx(n,e,i)}computeStyle(n,e,i){return window.getComputedStyle(n)[e]}animate(n,e,i,r,s,a=[]){const l={duration:i,delay:r,fill:0==r?"both":"forwards"};s&&(l.easing=s);const u=new Map,h=a.filter(w=>w instanceof Sx);(function jz(t,n){return 0===t||0===n})(i,r)&&h.forEach(w=>{w.currentSnapshot.forEach((k,L)=>u.set(L,k))});let p=function Fz(t){return t.length?t[0]instanceof Map?t:t.map(n=>sx(n)):[]}(e).map(w=>Ya(w));p=function zz(t,n,e){if(e.size&&n.length){let i=n[0],r=[];if(e.forEach((s,a)=>{i.has(a)||r.push(a),i.set(a,s)}),r.length)for(let s=1;s<n.length;s++){let a=n[s];r.forEach(o=>a.set(o,ux(t,o)))}}return n}(n,p,u);const C=function LH(t,n){let e=null,i=null;return Array.isArray(n)&&n.length?(e=HA(n[0]),n.length>1&&(i=HA(n[n.length-1]))):n instanceof Map&&(e=HA(n)),e||i?new PH(t,e,i):null}(n,p);return new Sx(n,p,l,C)}}let BH=(()=>{class t extends H0{constructor(e,i){super(),this._nextAnimationId=0,this._renderer=e.createRenderer(i.body,{id:"0",encapsulation:y.None,styles:[],data:{animation:[]}})}build(e){const i=this._nextAnimationId.toString();this._nextAnimationId++;const r=Array.isArray(e)?W0(e):e;return Dx(this._renderer,null,i,"register",[r]),new VH(i,this._renderer)}}return t.\u0275fac=function(e){return new(e||t)(R(Ru),R(Ye))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();class VH extends class Xj{}{constructor(n,e){super(),this._id=n,this._renderer=e}create(n,e){return new UH(this._id,n,e||{},this._renderer)}}class UH{constructor(n,e,i,r){this.id=n,this.element=e,this._renderer=r,this.parentPlayer=null,this._started=!1,this.totalTime=0,this._command("create",i)}_listen(n,e){return this._renderer.listen(this.element,`@@${this.id}:${n}`,e)}_command(n,...e){return Dx(this._renderer,this.element,this.id,n,e)}onDone(n){this._listen("done",n)}onStart(n){this._listen("start",n)}onDestroy(n){this._listen("destroy",n)}init(){this._command("init")}hasStarted(){return this._started}play(){this._command("play"),this._started=!0}pause(){this._command("pause")}restart(){this._command("restart")}finish(){this._command("finish")}destroy(){this._command("destroy")}reset(){this._command("reset"),this._started=!1}setPosition(n){this._command("setPosition",n)}getPosition(){return this._renderer.engine.players[+this.id]?.getPosition()??0}}function Dx(t,n,e,i,r){return t.setProperty(n,`@@${e}:${i}`,r)}const wx="@.disabled";let jH=(()=>{class t{constructor(e,i,r){this.delegate=e,this.engine=i,this._zone=r,this._currentId=0,this._microtaskId=1,this._animationCallbacksBuffer=[],this._rendererCache=new Map,this._cdRecurDepth=0,this.promise=Promise.resolve(0),i.onRemovalComplete=(s,a)=>{const o=a?.parentNode(s);o&&a.removeChild(o,s)}}createRenderer(e,i){const s=this.delegate.createRenderer(e,i);if(!(e&&i&&i.data&&i.data.animation)){let h=this._rendererCache.get(s);return h||(h=new xx("",s,this.engine,()=>this._rendererCache.delete(s)),this._rendererCache.set(s,h)),h}const a=i.id,o=i.id+"-"+this._currentId;this._currentId++,this.engine.register(o,e);const l=h=>{Array.isArray(h)?h.forEach(l):this.engine.registerTrigger(a,o,e,h.name,h)};return i.data.animation.forEach(l),new zH(this,o,s,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){this.promise.then(()=>{this._microtaskId++})}scheduleListenerCallback(e,i,r){e>=0&&e<this._microtaskId?this._zone.run(()=>i(r)):(0==this._animationCallbacksBuffer.length&&Promise.resolve(null).then(()=>{this._zone.run(()=>{this._animationCallbacksBuffer.forEach(s=>{const[a,o]=s;a(o)}),this._animationCallbacksBuffer=[]})}),this._animationCallbacksBuffer.push([i,r]))}end(){this._cdRecurDepth--,0==this._cdRecurDepth&&this._zone.runOutsideAngular(()=>{this._scheduleCountTask(),this.engine.flush(this._microtaskId)}),this.delegate.end&&this.delegate.end()}whenRenderingDone(){return this.engine.whenRenderingDone()}}return t.\u0275fac=function(e){return new(e||t)(R(Ru),R(up),R(He))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();class xx{constructor(n,e,i,r){this.namespaceId=n,this.delegate=e,this.engine=i,this._onDestroy=r,this.destroyNode=this.delegate.destroyNode?s=>e.destroyNode(s):null}get data(){return this.delegate.data}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.delegate.destroy(),this._onDestroy?.()}createElement(n,e){return this.delegate.createElement(n,e)}createComment(n){return this.delegate.createComment(n)}createText(n){return this.delegate.createText(n)}appendChild(n,e){this.delegate.appendChild(n,e),this.engine.onInsert(this.namespaceId,e,n,!1)}insertBefore(n,e,i,r=!0){this.delegate.insertBefore(n,e,i),this.engine.onInsert(this.namespaceId,e,n,r)}removeChild(n,e,i){this.engine.onRemove(this.namespaceId,e,this.delegate,i)}selectRootElement(n,e){return this.delegate.selectRootElement(n,e)}parentNode(n){return this.delegate.parentNode(n)}nextSibling(n){return this.delegate.nextSibling(n)}setAttribute(n,e,i,r){this.delegate.setAttribute(n,e,i,r)}removeAttribute(n,e,i){this.delegate.removeAttribute(n,e,i)}addClass(n,e){this.delegate.addClass(n,e)}removeClass(n,e){this.delegate.removeClass(n,e)}setStyle(n,e,i,r){this.delegate.setStyle(n,e,i,r)}removeStyle(n,e,i){this.delegate.removeStyle(n,e,i)}setProperty(n,e,i){"@"==e.charAt(0)&&e==wx?this.disableAnimations(n,!!i):this.delegate.setProperty(n,e,i)}setValue(n,e){this.delegate.setValue(n,e)}listen(n,e,i){return this.delegate.listen(n,e,i)}disableAnimations(n,e){this.engine.disableAnimations(n,e)}}class zH extends xx{constructor(n,e,i,r,s){super(e,i,r,s),this.factory=n,this.namespaceId=e}setProperty(n,e,i){"@"==e.charAt(0)?"."==e.charAt(1)&&e==wx?this.disableAnimations(n,i=void 0===i||!!i):this.engine.process(this.namespaceId,n,e.slice(1),i):this.delegate.setProperty(n,e,i)}listen(n,e,i){if("@"==e.charAt(0)){const r=function HH(t){switch(t){case"body":return document.body;case"document":return document;case"window":return window;default:return t}}(n);let s=e.slice(1),a="";return"@"!=s.charAt(0)&&([s,a]=function GH(t){const n=t.indexOf(".");return[t.substring(0,n),t.slice(n+1)]}(s)),this.engine.listen(this.namespaceId,r,s,a,o=>{this.factory.scheduleListenerCallback(o._data||-1,i,o)})}return this.delegate.listen(n,e,i)}}const kx=[{provide:H0,useClass:BH},{provide:FA,useFactory:function KH(){return new dH}},{provide:up,useClass:(()=>{class t extends up{constructor(e,i,r,s){super(e.body,i,r)}ngOnDestroy(){this.flush()}}return t.\u0275fac=function(e){return new(e||t)(R(Ye),R(DA),R(FA),R(Po))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})()},{provide:Ru,useFactory:function YH(t,n,e){return new jH(t,n,e)},deps:[Kf,up,He]}],GA=[{provide:DA,useFactory:()=>new FH},{provide:nr,useValue:"BrowserAnimations"},...kx],Ix=[{provide:DA,useClass:nx},{provide:nr,useValue:"NoopAnimations"},...kx];let Mx=(()=>{class t{static withConfig(e){return{ngModule:t,providers:e.disableAnimations?Ix:GA}}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:GA,imports:[pA]}),t})();function ye(...t){return vn(t,Ia(t))}function ua(t){return!!t&&(t instanceof Ct||de(t.lift)&&de(t.subscribe))}const{isArray:qH}=Array,{getPrototypeOf:XH,prototype:QH,keys:ZH}=Object;function Rx(t){if(1===t.length){const n=t[0];if(qH(n))return{args:n,keys:null};if(function $H(t){return t&&"object"==typeof t&&XH(t)===QH}(n)){const e=ZH(n);return{args:e.map(i=>n[i]),keys:e}}}return{args:t,keys:null}}const{isArray:JH}=Array;function WA(t){return Le(n=>function eG(t,n){return JH(n)?t(...n):t(n)}(t,n))}function Ox(t,n){return t.reduce((e,i,r)=>(e[i]=n[r],e),{})}function hp(...t){const n=go(t),{args:e,keys:i}=Rx(t),r=new Ct(s=>{const{length:a}=e;if(!a)return void s.complete();const o=new Array(a);let l=a,u=a;for(let h=0;h<a;h++){let p=!1;Hn(e[h]).subscribe(Zt(s,C=>{p||(p=!0,u--),o[h]=C},()=>l--,void 0,()=>{(!l||!p)&&(u||s.next(i?Ox(i,o):o),s.complete())}))}});return n?r.pipe(WA(n)):r}function Go(...t){return function tG(){return Hs(1)}()(vn(t,Ia(t)))}function gc(t){return new Ct(n=>{Hn(t()).subscribe(n)})}function gn(t){return t<=0?()=>wr:ln((n,e)=>{let i=0;n.subscribe(Zt(e,r=>{++i<=t&&(e.next(r),t<=i&&e.complete())}))})}function Lx(t,n,e){let i,r=!1;return t&&"object"==typeof t?({bufferSize:i=1/0,windowTime:n=1/0,refCount:r=!1,scheduler:e}=t):i=t??1/0,mo({connector:()=>new _A(i,n,e),resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:r})}function da(t,n){return de(n)?xn(t,n,1):xn(t,1)}class fp{}let Px=(()=>{class t extends fp{getTranslation(e){return ye({})}}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();class KA{}let Nx=(()=>{class t{handle(e){return e.key}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();function od(t,n){if(t===n)return!0;if(null===t||null===n)return!1;if(t!=t&&n!=n)return!0;let r,s,a,e=typeof t;if(e==typeof n&&"object"==e){if(!Array.isArray(t)){if(Array.isArray(n))return!1;for(s in a=Object.create(null),t){if(!od(t[s],n[s]))return!1;a[s]=!0}for(s in n)if(!(s in a)&&typeof n[s]<"u")return!1;return!0}if(!Array.isArray(n))return!1;if((r=t.length)==n.length){for(s=0;s<r;s++)if(!od(t[s],n[s]))return!1;return!0}}return!1}function yr(t){return typeof t<"u"&&null!==t}function YA(t){return t&&"object"==typeof t&&!Array.isArray(t)}function Fx(t,n){let e=Object.assign({},t);return YA(t)&&YA(n)&&Object.keys(n).forEach(i=>{YA(n[i])?i in t?e[i]=Fx(t[i],n[i]):Object.assign(e,{[i]:n[i]}):Object.assign(e,{[i]:n[i]})}),e}class pp{}let Bx=(()=>{class t extends pp{constructor(){super(...arguments),this.templateMatcher=/{{\s?([^{}\s]*)\s?}}/g}interpolate(e,i){let r;return r="string"==typeof e?this.interpolateString(e,i):"function"==typeof e?this.interpolateFunction(e,i):e,r}getValue(e,i){let r="string"==typeof i?i.split("."):[i];i="";do{i+=r.shift(),!yr(e)||!yr(e[i])||"object"!=typeof e[i]&&r.length?r.length?i+=".":e=void 0:(e=e[i],i="")}while(r.length);return e}interpolateFunction(e,i){return e(i)}interpolateString(e,i){return i?e.replace(this.templateMatcher,(r,s)=>{let a=this.getValue(i,s);return yr(a)?a:r}):e}}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();class gp{}let Vx=(()=>{class t extends gp{compile(e,i){return e}compileTranslations(e,i){return e}}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();class Ux{constructor(){this.currentLang=this.defaultLang,this.translations={},this.langs=[],this.onTranslationChange=new Ae,this.onLangChange=new Ae,this.onDefaultLangChange=new Ae}}const qA=new Z("USE_STORE"),XA=new Z("USE_DEFAULT_LANG"),QA=new Z("DEFAULT_LANGUAGE"),ZA=new Z("USE_EXTEND");let gi=(()=>{class t{constructor(e,i,r,s,a,o=!0,l=!1,u=!1,h){this.store=e,this.currentLoader=i,this.compiler=r,this.parser=s,this.missingTranslationHandler=a,this.useDefaultLang=o,this.isolate=l,this.extend=u,this.pending=!1,this._onTranslationChange=new Ae,this._onLangChange=new Ae,this._onDefaultLangChange=new Ae,this._langs=[],this._translations={},this._translationRequests={},h&&this.setDefaultLang(h)}get onTranslationChange(){return this.isolate?this._onTranslationChange:this.store.onTranslationChange}get onLangChange(){return this.isolate?this._onLangChange:this.store.onLangChange}get onDefaultLangChange(){return this.isolate?this._onDefaultLangChange:this.store.onDefaultLangChange}get defaultLang(){return this.isolate?this._defaultLang:this.store.defaultLang}set defaultLang(e){this.isolate?this._defaultLang=e:this.store.defaultLang=e}get currentLang(){return this.isolate?this._currentLang:this.store.currentLang}set currentLang(e){this.isolate?this._currentLang=e:this.store.currentLang=e}get langs(){return this.isolate?this._langs:this.store.langs}set langs(e){this.isolate?this._langs=e:this.store.langs=e}get translations(){return this.isolate?this._translations:this.store.translations}set translations(e){this.isolate?this._translations=e:this.store.translations=e}setDefaultLang(e){if(e===this.defaultLang)return;let i=this.retrieveTranslations(e);typeof i<"u"?(null==this.defaultLang&&(this.defaultLang=e),i.pipe(gn(1)).subscribe(r=>{this.changeDefaultLang(e)})):this.changeDefaultLang(e)}getDefaultLang(){return this.defaultLang}use(e){if(e===this.currentLang)return ye(this.translations[e]);let i=this.retrieveTranslations(e);return typeof i<"u"?(this.currentLang||(this.currentLang=e),i.pipe(gn(1)).subscribe(r=>{this.changeLang(e)}),i):(this.changeLang(e),ye(this.translations[e]))}retrieveTranslations(e){let i;return(typeof this.translations[e]>"u"||this.extend)&&(this._translationRequests[e]=this._translationRequests[e]||this.getTranslation(e),i=this._translationRequests[e]),i}getTranslation(e){this.pending=!0;const i=this.currentLoader.getTranslation(e).pipe(Lx(1),gn(1));return this.loadingTranslations=i.pipe(Le(r=>this.compiler.compileTranslations(r,e)),Lx(1),gn(1)),this.loadingTranslations.subscribe({next:r=>{this.translations[e]=this.extend&&this.translations[e]?Object.assign(Object.assign({},r),this.translations[e]):r,this.updateLangs(),this.pending=!1},error:r=>{this.pending=!1}}),i}setTranslation(e,i,r=!1){i=this.compiler.compileTranslations(i,e),this.translations[e]=(r||this.extend)&&this.translations[e]?Fx(this.translations[e],i):i,this.updateLangs(),this.onTranslationChange.emit({lang:e,translations:this.translations[e]})}getLangs(){return this.langs}addLangs(e){e.forEach(i=>{-1===this.langs.indexOf(i)&&this.langs.push(i)})}updateLangs(){this.addLangs(Object.keys(this.translations))}getParsedResult(e,i,r){let s;if(i instanceof Array){let a={},o=!1;for(let l of i)a[l]=this.getParsedResult(e,l,r),ua(a[l])&&(o=!0);return o?hp(i.map(u=>ua(a[u])?a[u]:ye(a[u]))).pipe(Le(u=>{let h={};return u.forEach((p,C)=>{h[i[C]]=p}),h})):a}if(e&&(s=this.parser.interpolate(this.parser.getValue(e,i),r)),typeof s>"u"&&null!=this.defaultLang&&this.defaultLang!==this.currentLang&&this.useDefaultLang&&(s=this.parser.interpolate(this.parser.getValue(this.translations[this.defaultLang],i),r)),typeof s>"u"){let a={key:i,translateService:this};typeof r<"u"&&(a.interpolateParams=r),s=this.missingTranslationHandler.handle(a)}return typeof s<"u"?s:i}get(e,i){if(!yr(e)||!e.length)throw new Error('Parameter "key" required');if(this.pending)return this.loadingTranslations.pipe(da(r=>ua(r=this.getParsedResult(r,e,i))?r:ye(r)));{let r=this.getParsedResult(this.translations[this.currentLang],e,i);return ua(r)?r:ye(r)}}getStreamOnTranslationChange(e,i){if(!yr(e)||!e.length)throw new Error('Parameter "key" required');return Go(gc(()=>this.get(e,i)),this.onTranslationChange.pipe(Wi(r=>{const s=this.getParsedResult(r.translations,e,i);return"function"==typeof s.subscribe?s:ye(s)})))}stream(e,i){if(!yr(e)||!e.length)throw new Error('Parameter "key" required');return Go(gc(()=>this.get(e,i)),this.onLangChange.pipe(Wi(r=>{const s=this.getParsedResult(r.translations,e,i);return ua(s)?s:ye(s)})))}instant(e,i){if(!yr(e)||!e.length)throw new Error('Parameter "key" required');let r=this.getParsedResult(this.translations[this.currentLang],e,i);if(ua(r)){if(e instanceof Array){let s={};return e.forEach((a,o)=>{s[e[o]]=e[o]}),s}return e}return r}set(e,i,r=this.currentLang){this.translations[r][e]=this.compiler.compile(i,r),this.updateLangs(),this.onTranslationChange.emit({lang:r,translations:this.translations[r]})}changeLang(e){this.currentLang=e,this.onLangChange.emit({lang:e,translations:this.translations[e]}),null==this.defaultLang&&this.changeDefaultLang(e)}changeDefaultLang(e){this.defaultLang=e,this.onDefaultLangChange.emit({lang:e,translations:this.translations[e]})}reloadLang(e){return this.resetLang(e),this.getTranslation(e)}resetLang(e){this._translationRequests[e]=void 0,this.translations[e]=void 0}getBrowserLang(){if(typeof window>"u"||typeof window.navigator>"u")return;let e=window.navigator.languages?window.navigator.languages[0]:null;return e=e||window.navigator.language||window.navigator.browserLanguage||window.navigator.userLanguage,typeof e>"u"?void 0:(-1!==e.indexOf("-")&&(e=e.split("-")[0]),-1!==e.indexOf("_")&&(e=e.split("_")[0]),e)}getBrowserCultureLang(){if(typeof window>"u"||typeof window.navigator>"u")return;let e=window.navigator.languages?window.navigator.languages[0]:null;return e=e||window.navigator.language||window.navigator.browserLanguage||window.navigator.userLanguage,e}}return t.\u0275fac=function(e){return new(e||t)(R(Ux),R(fp),R(gp),R(pp),R(KA),R(XA),R(qA),R(ZA),R(QA))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})(),Lt=(()=>{class t{constructor(e,i){this.translate=e,this._ref=i,this.value=""}updateValue(e,i,r){let s=a=>{this.value=void 0!==a?a:e,this.lastKey=e,this._ref.markForCheck()};if(r){let a=this.translate.getParsedResult(r,e,i);ua(a.subscribe)?a.subscribe(s):s(a)}this.translate.get(e,i).subscribe(s)}transform(e,...i){if(!e||!e.length)return e;if(od(e,this.lastKey)&&od(i,this.lastParams))return this.value;let r;if(yr(i[0])&&i.length)if("string"==typeof i[0]&&i[0].length){let s=i[0].replace(/(\')?([a-zA-Z0-9_]+)(\')?(\s)?:/g,'"$2":').replace(/:(\s)?(\')(.*?)(\')/g,':"$3"');try{r=JSON.parse(s)}catch{throw new SyntaxError(`Wrong parameter in TranslatePipe. Expected a valid Object, received: ${i[0]}`)}}else"object"==typeof i[0]&&!Array.isArray(i[0])&&(r=i[0]);return this.lastKey=e,this.lastParams=i,this.updateValue(e,r),this._dispose(),this.onTranslationChange||(this.onTranslationChange=this.translate.onTranslationChange.subscribe(s=>{this.lastKey&&s.lang===this.translate.currentLang&&(this.lastKey=null,this.updateValue(e,r,s.translations))})),this.onLangChange||(this.onLangChange=this.translate.onLangChange.subscribe(s=>{this.lastKey&&(this.lastKey=null,this.updateValue(e,r,s.translations))})),this.onDefaultLangChange||(this.onDefaultLangChange=this.translate.onDefaultLangChange.subscribe(()=>{this.lastKey&&(this.lastKey=null,this.updateValue(e,r))})),this.value}_dispose(){typeof this.onTranslationChange<"u"&&(this.onTranslationChange.unsubscribe(),this.onTranslationChange=void 0),typeof this.onLangChange<"u"&&(this.onLangChange.unsubscribe(),this.onLangChange=void 0),typeof this.onDefaultLangChange<"u"&&(this.onDefaultLangChange.unsubscribe(),this.onDefaultLangChange=void 0)}ngOnDestroy(){this._dispose()}}return t.\u0275fac=function(e){return new(e||t)(_(gi,16),_(Kn,16))},t.\u0275pipe=Pn({name:"translate",type:t,pure:!1}),t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})(),Ar=(()=>{class t{static forRoot(e={}){return{ngModule:t,providers:[e.loader||{provide:fp,useClass:Px},e.compiler||{provide:gp,useClass:Vx},e.parser||{provide:pp,useClass:Bx},e.missingTranslationHandler||{provide:KA,useClass:Nx},Ux,{provide:qA,useValue:e.isolate},{provide:XA,useValue:e.useDefaultLang},{provide:ZA,useValue:e.extend},{provide:QA,useValue:e.defaultLanguage},gi]}}static forChild(e={}){return{ngModule:t,providers:[e.loader||{provide:fp,useClass:Px},e.compiler||{provide:gp,useClass:Vx},e.parser||{provide:pp,useClass:Bx},e.missingTranslationHandler||{provide:KA,useClass:Nx},{provide:qA,useValue:e.isolate},{provide:XA,useValue:e.useDefaultLang},{provide:ZA,useValue:e.extend},{provide:QA,useValue:e.defaultLanguage},gi]}}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({}),t})();class nG{constructor(n,e){this._document=e;const i=this._textarea=this._document.createElement("textarea"),r=i.style;r.position="fixed",r.top=r.opacity="0",r.left="-999em",i.setAttribute("aria-hidden","true"),i.value=n,i.readOnly=!0,this._document.body.appendChild(i)}copy(){const n=this._textarea;let e=!1;try{if(n){const i=this._document.activeElement;n.select(),n.setSelectionRange(0,n.value.length),e=this._document.execCommand("copy"),i&&i.focus()}}catch{}return e}destroy(){const n=this._textarea;n&&(n.remove(),this._textarea=void 0)}}let iG=(()=>{class t{constructor(e){this._document=e}copy(e){const i=this.beginCopy(e),r=i.copy();return i.destroy(),r}beginCopy(e){return new nG(e,this._document)}}return t.\u0275fac=function(e){return new(e||t)(R(Ye))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),jx=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({}),t})();function Tn(t,n){return ln((e,i)=>{let r=0;e.subscribe(Zt(i,s=>t.call(n,s,r++)&&i.next(s)))})}class zx{}class Hx{}class ks{constructor(n){this.normalizedNames=new Map,this.lazyUpdate=null,n?this.lazyInit="string"==typeof n?()=>{this.headers=new Map,n.split("\n").forEach(e=>{const i=e.indexOf(":");if(i>0){const r=e.slice(0,i),s=r.toLowerCase(),a=e.slice(i+1).trim();this.maybeSetNormalizedName(r,s),this.headers.has(s)?this.headers.get(s).push(a):this.headers.set(s,[a])}})}:()=>{this.headers=new Map,Object.keys(n).forEach(e=>{let i=n[e];const r=e.toLowerCase();"string"==typeof i&&(i=[i]),i.length>0&&(this.headers.set(r,i),this.maybeSetNormalizedName(e,r))})}:this.headers=new Map}has(n){return this.init(),this.headers.has(n.toLowerCase())}get(n){this.init();const e=this.headers.get(n.toLowerCase());return e&&e.length>0?e[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(n){return this.init(),this.headers.get(n.toLowerCase())||null}append(n,e){return this.clone({name:n,value:e,op:"a"})}set(n,e){return this.clone({name:n,value:e,op:"s"})}delete(n,e){return this.clone({name:n,value:e,op:"d"})}maybeSetNormalizedName(n,e){this.normalizedNames.has(e)||this.normalizedNames.set(e,n)}init(){this.lazyInit&&(this.lazyInit instanceof ks?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(n=>this.applyUpdate(n)),this.lazyUpdate=null))}copyFrom(n){n.init(),Array.from(n.headers.keys()).forEach(e=>{this.headers.set(e,n.headers.get(e)),this.normalizedNames.set(e,n.normalizedNames.get(e))})}clone(n){const e=new ks;return e.lazyInit=this.lazyInit&&this.lazyInit instanceof ks?this.lazyInit:this,e.lazyUpdate=(this.lazyUpdate||[]).concat([n]),e}applyUpdate(n){const e=n.name.toLowerCase();switch(n.op){case"a":case"s":let i=n.value;if("string"==typeof i&&(i=[i]),0===i.length)return;this.maybeSetNormalizedName(n.name,e);const r=("a"===n.op?this.headers.get(e):void 0)||[];r.push(...i),this.headers.set(e,r);break;case"d":const s=n.value;if(s){let a=this.headers.get(e);if(!a)return;a=a.filter(o=>-1===s.indexOf(o)),0===a.length?(this.headers.delete(e),this.normalizedNames.delete(e)):this.headers.set(e,a)}else this.headers.delete(e),this.normalizedNames.delete(e)}}forEach(n){this.init(),Array.from(this.normalizedNames.keys()).forEach(e=>n(this.normalizedNames.get(e),this.headers.get(e)))}}class rG{encodeKey(n){return Gx(n)}encodeValue(n){return Gx(n)}decodeKey(n){return decodeURIComponent(n)}decodeValue(n){return decodeURIComponent(n)}}const aG=/%(\d[a-f0-9])/gi,oG={40:"@","3A":":",24:"$","2C":",","3B":";","3D":"=","3F":"?","2F":"/"};function Gx(t){return encodeURIComponent(t).replace(aG,(n,e)=>oG[e]??n)}function mp(t){return`${t}`}class qa{constructor(n={}){if(this.updates=null,this.cloneFrom=null,this.encoder=n.encoder||new rG,n.fromString){if(n.fromObject)throw new Error("Cannot specify both fromString and fromObject.");this.map=function sG(t,n){const e=new Map;return t.length>0&&t.replace(/^\?/,"").split("&").forEach(r=>{const s=r.indexOf("="),[a,o]=-1==s?[n.decodeKey(r),""]:[n.decodeKey(r.slice(0,s)),n.decodeValue(r.slice(s+1))],l=e.get(a)||[];l.push(o),e.set(a,l)}),e}(n.fromString,this.encoder)}else n.fromObject?(this.map=new Map,Object.keys(n.fromObject).forEach(e=>{const i=n.fromObject[e],r=Array.isArray(i)?i.map(mp):[mp(i)];this.map.set(e,r)})):this.map=null}has(n){return this.init(),this.map.has(n)}get(n){this.init();const e=this.map.get(n);return e?e[0]:null}getAll(n){return this.init(),this.map.get(n)||null}keys(){return this.init(),Array.from(this.map.keys())}append(n,e){return this.clone({param:n,value:e,op:"a"})}appendAll(n){const e=[];return Object.keys(n).forEach(i=>{const r=n[i];Array.isArray(r)?r.forEach(s=>{e.push({param:i,value:s,op:"a"})}):e.push({param:i,value:r,op:"a"})}),this.clone(e)}set(n,e){return this.clone({param:n,value:e,op:"s"})}delete(n,e){return this.clone({param:n,value:e,op:"d"})}toString(){return this.init(),this.keys().map(n=>{const e=this.encoder.encodeKey(n);return this.map.get(n).map(i=>e+"="+this.encoder.encodeValue(i)).join("&")}).filter(n=>""!==n).join("&")}clone(n){const e=new qa({encoder:this.encoder});return e.cloneFrom=this.cloneFrom||this,e.updates=(this.updates||[]).concat(n),e}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(n=>this.map.set(n,this.cloneFrom.map.get(n))),this.updates.forEach(n=>{switch(n.op){case"a":case"s":const e=("a"===n.op?this.map.get(n.param):void 0)||[];e.push(mp(n.value)),this.map.set(n.param,e);break;case"d":if(void 0===n.value){this.map.delete(n.param);break}{let i=this.map.get(n.param)||[];const r=i.indexOf(mp(n.value));-1!==r&&i.splice(r,1),i.length>0?this.map.set(n.param,i):this.map.delete(n.param)}}}),this.cloneFrom=this.updates=null)}}class lG{constructor(){this.map=new Map}set(n,e){return this.map.set(n,e),this}get(n){return this.map.has(n)||this.map.set(n,n.defaultValue()),this.map.get(n)}delete(n){return this.map.delete(n),this}has(n){return this.map.has(n)}keys(){return this.map.keys()}}function Wx(t){return typeof ArrayBuffer<"u"&&t instanceof ArrayBuffer}function Kx(t){return typeof Blob<"u"&&t instanceof Blob}function Yx(t){return typeof FormData<"u"&&t instanceof FormData}class ld{constructor(n,e,i,r){let s;if(this.url=e,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType="json",this.method=n.toUpperCase(),function cG(t){switch(t){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||r?(this.body=void 0!==i?i:null,s=r):s=i,s&&(this.reportProgress=!!s.reportProgress,this.withCredentials=!!s.withCredentials,s.responseType&&(this.responseType=s.responseType),s.headers&&(this.headers=s.headers),s.context&&(this.context=s.context),s.params&&(this.params=s.params)),this.headers||(this.headers=new ks),this.context||(this.context=new lG),this.params){const a=this.params.toString();if(0===a.length)this.urlWithParams=e;else{const o=e.indexOf("?");this.urlWithParams=e+(-1===o?"?":o<e.length-1?"&":"")+a}}else this.params=new qa,this.urlWithParams=e}serializeBody(){return null===this.body?null:Wx(this.body)||Kx(this.body)||Yx(this.body)||function uG(t){return typeof URLSearchParams<"u"&&t instanceof URLSearchParams}(this.body)||"string"==typeof this.body?this.body:this.body instanceof qa?this.body.toString():"object"==typeof this.body||"boolean"==typeof this.body||Array.isArray(this.body)?JSON.stringify(this.body):this.body.toString()}detectContentTypeHeader(){return null===this.body||Yx(this.body)?null:Kx(this.body)?this.body.type||null:Wx(this.body)?null:"string"==typeof this.body?"text/plain":this.body instanceof qa?"application/x-www-form-urlencoded;charset=UTF-8":"object"==typeof this.body||"number"==typeof this.body||"boolean"==typeof this.body?"application/json":null}clone(n={}){const e=n.method||this.method,i=n.url||this.url,r=n.responseType||this.responseType,s=void 0!==n.body?n.body:this.body,a=void 0!==n.withCredentials?n.withCredentials:this.withCredentials,o=void 0!==n.reportProgress?n.reportProgress:this.reportProgress;let l=n.headers||this.headers,u=n.params||this.params;const h=n.context??this.context;return void 0!==n.setHeaders&&(l=Object.keys(n.setHeaders).reduce((p,C)=>p.set(C,n.setHeaders[C]),l)),n.setParams&&(u=Object.keys(n.setParams).reduce((p,C)=>p.set(C,n.setParams[C]),u)),new ld(e,i,s,{params:u,headers:l,context:h,reportProgress:o,responseType:r,withCredentials:a})}}var Vn=(()=>((Vn=Vn||{})[Vn.Sent=0]="Sent",Vn[Vn.UploadProgress=1]="UploadProgress",Vn[Vn.ResponseHeader=2]="ResponseHeader",Vn[Vn.DownloadProgress=3]="DownloadProgress",Vn[Vn.Response=4]="Response",Vn[Vn.User=5]="User",Vn))();class $A{constructor(n,e=200,i="OK"){this.headers=n.headers||new ks,this.status=void 0!==n.status?n.status:e,this.statusText=n.statusText||i,this.url=n.url||null,this.ok=this.status>=200&&this.status<300}}class JA extends $A{constructor(n={}){super(n),this.type=Vn.ResponseHeader}clone(n={}){return new JA({headers:n.headers||this.headers,status:void 0!==n.status?n.status:this.status,statusText:n.statusText||this.statusText,url:n.url||this.url||void 0})}}class _p extends $A{constructor(n={}){super(n),this.type=Vn.Response,this.body=void 0!==n.body?n.body:null}clone(n={}){return new _p({body:void 0!==n.body?n.body:this.body,headers:n.headers||this.headers,status:void 0!==n.status?n.status:this.status,statusText:n.statusText||this.statusText,url:n.url||this.url||void 0})}}class ev extends $A{constructor(n){super(n,0,"Unknown Error"),this.name="HttpErrorResponse",this.ok=!1,this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${n.url||"(unknown url)"}`:`Http failure response for ${n.url||"(unknown url)"}: ${n.status} ${n.statusText}`,this.error=n.error||null}}function tv(t,n){return{body:n,headers:t.headers,context:t.context,observe:t.observe,params:t.params,reportProgress:t.reportProgress,responseType:t.responseType,withCredentials:t.withCredentials}}let Ki=(()=>{class t{constructor(e){this.handler=e}request(e,i,r={}){let s;if(e instanceof ld)s=e;else{let l,u;l=r.headers instanceof ks?r.headers:new ks(r.headers),r.params&&(u=r.params instanceof qa?r.params:new qa({fromObject:r.params})),s=new ld(e,i,void 0!==r.body?r.body:null,{headers:l,context:r.context,params:u,reportProgress:r.reportProgress,responseType:r.responseType||"json",withCredentials:r.withCredentials})}const a=ye(s).pipe(da(l=>this.handler.handle(l)));if(e instanceof ld||"events"===r.observe)return a;const o=a.pipe(Tn(l=>l instanceof _p));switch(r.observe||"body"){case"body":switch(s.responseType){case"arraybuffer":return o.pipe(Le(l=>{if(null!==l.body&&!(l.body instanceof ArrayBuffer))throw new Error("Response is not an ArrayBuffer.");return l.body}));case"blob":return o.pipe(Le(l=>{if(null!==l.body&&!(l.body instanceof Blob))throw new Error("Response is not a Blob.");return l.body}));case"text":return o.pipe(Le(l=>{if(null!==l.body&&"string"!=typeof l.body)throw new Error("Response is not a string.");return l.body}));default:return o.pipe(Le(l=>l.body))}case"response":return o;default:throw new Error(`Unreachable: unhandled observe type ${r.observe}}`)}}delete(e,i={}){return this.request("DELETE",e,i)}get(e,i={}){return this.request("GET",e,i)}head(e,i={}){return this.request("HEAD",e,i)}jsonp(e,i){return this.request("JSONP",e,{params:(new qa).append(i,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(e,i={}){return this.request("OPTIONS",e,i)}patch(e,i,r={}){return this.request("PATCH",e,tv(r,i))}post(e,i,r={}){return this.request("POST",e,tv(r,i))}put(e,i,r={}){return this.request("PUT",e,tv(r,i))}}return t.\u0275fac=function(e){return new(e||t)(R(zx))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();class qx{constructor(n,e){this.next=n,this.interceptor=e}handle(n){return this.interceptor.intercept(n,this.next)}}const Xx=new Z("HTTP_INTERCEPTORS");let dG=(()=>{class t{intercept(e,i){return i.handle(e)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();const hG=/^\)\]\}',?\n/;let Qx=(()=>{class t{constructor(e){this.xhrFactory=e}handle(e){if("JSONP"===e.method)throw new Error("Attempted to construct Jsonp request without HttpClientJsonpModule installed.");return new Ct(i=>{const r=this.xhrFactory.build();if(r.open(e.method,e.urlWithParams),e.withCredentials&&(r.withCredentials=!0),e.headers.forEach((w,k)=>r.setRequestHeader(w,k.join(","))),e.headers.has("Accept")||r.setRequestHeader("Accept","application/json, text/plain, */*"),!e.headers.has("Content-Type")){const w=e.detectContentTypeHeader();null!==w&&r.setRequestHeader("Content-Type",w)}if(e.responseType){const w=e.responseType.toLowerCase();r.responseType="json"!==w?w:"text"}const s=e.serializeBody();let a=null;const o=()=>{if(null!==a)return a;const w=r.statusText||"OK",k=new ks(r.getAllResponseHeaders()),L=function fG(t){return"responseURL"in t&&t.responseURL?t.responseURL:/^X-Request-URL:/m.test(t.getAllResponseHeaders())?t.getResponseHeader("X-Request-URL"):null}(r)||e.url;return a=new JA({headers:k,status:r.status,statusText:w,url:L}),a},l=()=>{let{headers:w,status:k,statusText:L,url:U}=o(),z=null;204!==k&&(z=typeof r.response>"u"?r.responseText:r.response),0===k&&(k=z?200:0);let ie=k>=200&&k<300;if("json"===e.responseType&&"string"==typeof z){const X=z;z=z.replace(hG,"");try{z=""!==z?JSON.parse(z):null}catch(Ce){z=X,ie&&(ie=!1,z={error:Ce,text:z})}}ie?(i.next(new _p({body:z,headers:w,status:k,statusText:L,url:U||void 0})),i.complete()):i.error(new ev({error:z,headers:w,status:k,statusText:L,url:U||void 0}))},u=w=>{const{url:k}=o(),L=new ev({error:w,status:r.status||0,statusText:r.statusText||"Unknown Error",url:k||void 0});i.error(L)};let h=!1;const p=w=>{h||(i.next(o()),h=!0);let k={type:Vn.DownloadProgress,loaded:w.loaded};w.lengthComputable&&(k.total=w.total),"text"===e.responseType&&!!r.responseText&&(k.partialText=r.responseText),i.next(k)},C=w=>{let k={type:Vn.UploadProgress,loaded:w.loaded};w.lengthComputable&&(k.total=w.total),i.next(k)};return r.addEventListener("load",l),r.addEventListener("error",u),r.addEventListener("timeout",u),r.addEventListener("abort",u),e.reportProgress&&(r.addEventListener("progress",p),null!==s&&r.upload&&r.upload.addEventListener("progress",C)),r.send(s),i.next({type:Vn.Sent}),()=>{r.removeEventListener("error",u),r.removeEventListener("abort",u),r.removeEventListener("load",l),r.removeEventListener("timeout",u),e.reportProgress&&(r.removeEventListener("progress",p),null!==s&&r.upload&&r.upload.removeEventListener("progress",C)),r.readyState!==r.DONE&&r.abort()}})}}return t.\u0275fac=function(e){return new(e||t)(R(A0))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();const nv=new Z("XSRF_COOKIE_NAME"),iv=new Z("XSRF_HEADER_NAME");class Zx{}let pG=(()=>{class t{constructor(e,i,r){this.doc=e,this.platform=i,this.cookieName=r,this.lastCookieString="",this.lastToken=null,this.parseCount=0}getToken(){if("server"===this.platform)return null;const e=this.doc.cookie||"";return e!==this.lastCookieString&&(this.parseCount++,this.lastToken=l0(e,this.cookieName),this.lastCookieString=e),this.lastToken}}return t.\u0275fac=function(e){return new(e||t)(R(Ye),R(Pr),R(nv))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})(),rv=(()=>{class t{constructor(e,i){this.tokenService=e,this.headerName=i}intercept(e,i){const r=e.url.toLowerCase();if("GET"===e.method||"HEAD"===e.method||r.startsWith("http://")||r.startsWith("https://"))return i.handle(e);const s=this.tokenService.getToken();return null!==s&&!e.headers.has(this.headerName)&&(e=e.clone({headers:e.headers.set(this.headerName,s)})),i.handle(e)}}return t.\u0275fac=function(e){return new(e||t)(R(Zx),R(iv))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})(),gG=(()=>{class t{constructor(e,i){this.backend=e,this.injector=i,this.chain=null}handle(e){if(null===this.chain){const i=this.injector.get(Xx,[]);this.chain=i.reduceRight((r,s)=>new qx(r,s),this.backend)}return this.chain.handle(e)}}return t.\u0275fac=function(e){return new(e||t)(R(Hx),R(Fn))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})(),mG=(()=>{class t{static disable(){return{ngModule:t,providers:[{provide:rv,useClass:dG}]}}static withOptions(e={}){return{ngModule:t,providers:[e.cookieName?{provide:nv,useValue:e.cookieName}:[],e.headerName?{provide:iv,useValue:e.headerName}:[]]}}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[rv,{provide:Xx,useExisting:rv,multi:!0},{provide:Zx,useClass:pG},{provide:nv,useValue:"XSRF-TOKEN"},{provide:iv,useValue:"X-XSRF-TOKEN"}]}),t})(),_G=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[Ki,{provide:zx,useClass:gG},Qx,{provide:Hx,useExisting:Qx}],imports:[mG.withOptions({cookieName:"XSRF-TOKEN",headerName:"X-XSRF-TOKEN"})]}),t})(),$x=(()=>{class t{constructor(e,i){this._renderer=e,this._elementRef=i,this.onChange=r=>{},this.onTouched=()=>{}}setProperty(e,i){this._renderer.setProperty(this._elementRef.nativeElement,e,i)}registerOnTouched(e){this.onTouched=e}registerOnChange(e){this.onChange=e}setDisabledState(e){this.setProperty("disabled",e)}}return t.\u0275fac=function(e){return new(e||t)(_(Zr),_(be))},t.\u0275dir=G({type:t}),t})(),Wo=(()=>{class t extends $x{}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275dir=G({type:t,features:[J]}),t})();const vr=new Z("NgValueAccessor"),AG={provide:vr,useExisting:Ft(()=>Ko),multi:!0},bG=new Z("CompositionEventMode");let Ko=(()=>{class t extends $x{constructor(e,i,r){super(e,i),this._compositionMode=r,this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function vG(){const t=ws()?ws().getUserAgent():"";return/android (\d+)/.test(t.toLowerCase())}())}writeValue(e){this.setProperty("value",e??"")}_handleInput(e){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(e)}_compositionStart(){this._composing=!0}_compositionEnd(e){this._composing=!1,this._compositionMode&&this.onChange(e)}}return t.\u0275fac=function(e){return new(e||t)(_(Zr),_(be),_(bG,8))},t.\u0275dir=G({type:t,selectors:[["input","formControlName","",3,"type","checkbox"],["textarea","formControlName",""],["input","formControl","",3,"type","checkbox"],["textarea","formControl",""],["input","ngModel","",3,"type","checkbox"],["textarea","ngModel",""],["","ngDefaultControl",""]],hostBindings:function(e,i){1&e&&ee("input",function(s){return i._handleInput(s.target.value)})("blur",function(){return i.onTouched()})("compositionstart",function(){return i._compositionStart()})("compositionend",function(s){return i._compositionEnd(s.target.value)})},features:[$e([AG]),J]}),t})();function Xa(t){return null==t||("string"==typeof t||Array.isArray(t))&&0===t.length}function ek(t){return null!=t&&"number"==typeof t.length}const mi=new Z("NgValidators"),Qa=new Z("NgAsyncValidators"),TG=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;class cd{static min(n){return function tk(t){return n=>{if(Xa(n.value)||Xa(t))return null;const e=parseFloat(n.value);return!isNaN(e)&&e<t?{min:{min:t,actual:n.value}}:null}}(n)}static max(n){return function nk(t){return n=>{if(Xa(n.value)||Xa(t))return null;const e=parseFloat(n.value);return!isNaN(e)&&e>t?{max:{max:t,actual:n.value}}:null}}(n)}static required(n){return function ik(t){return Xa(t.value)?{required:!0}:null}(n)}static requiredTrue(n){return function rk(t){return!0===t.value?null:{required:!0}}(n)}static email(n){return function sk(t){return Xa(t.value)||TG.test(t.value)?null:{email:!0}}(n)}static minLength(n){return function ak(t){return n=>Xa(n.value)||!ek(n.value)?null:n.value.length<t?{minlength:{requiredLength:t,actualLength:n.value.length}}:null}(n)}static maxLength(n){return function ok(t){return n=>ek(n.value)&&n.value.length>t?{maxlength:{requiredLength:t,actualLength:n.value.length}}:null}(n)}static pattern(n){return function lk(t){if(!t)return yp;let n,e;return"string"==typeof t?(e="","^"!==t.charAt(0)&&(e+="^"),e+=t,"$"!==t.charAt(t.length-1)&&(e+="$"),n=new RegExp(e)):(e=t.toString(),n=t),i=>{if(Xa(i.value))return null;const r=i.value;return n.test(r)?null:{pattern:{requiredPattern:e,actualValue:r}}}}(n)}static nullValidator(n){return null}static compose(n){return pk(n)}static composeAsync(n){return gk(n)}}function yp(t){return null}function ck(t){return null!=t}function uk(t){return Fu(t)?vn(t):t}function dk(t){let n={};return t.forEach(e=>{n=null!=e?{...n,...e}:n}),0===Object.keys(n).length?null:n}function hk(t,n){return n.map(e=>e(t))}function fk(t){return t.map(n=>function EG(t){return!t.validate}(n)?n:e=>n.validate(e))}function pk(t){if(!t)return null;const n=t.filter(ck);return 0==n.length?null:function(e){return dk(hk(e,n))}}function sv(t){return null!=t?pk(fk(t)):null}function gk(t){if(!t)return null;const n=t.filter(ck);return 0==n.length?null:function(e){return hp(hk(e,n).map(uk)).pipe(Le(dk))}}function av(t){return null!=t?gk(fk(t)):null}function mk(t,n){return null===t?[n]:Array.isArray(t)?[...t,n]:[t,n]}function _k(t){return t._rawValidators}function yk(t){return t._rawAsyncValidators}function ov(t){return t?Array.isArray(t)?t:[t]:[]}function Ap(t,n){return Array.isArray(t)?t.includes(n):t===n}function Ak(t,n){const e=ov(n);return ov(t).forEach(r=>{Ap(e,r)||e.push(r)}),e}function vk(t,n){return ov(n).filter(e=>!Ap(t,e))}class bk{constructor(){this._rawValidators=[],this._rawAsyncValidators=[],this._onDestroyCallbacks=[]}get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}_setValidators(n){this._rawValidators=n||[],this._composedValidatorFn=sv(this._rawValidators)}_setAsyncValidators(n){this._rawAsyncValidators=n||[],this._composedAsyncValidatorFn=av(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_registerOnDestroy(n){this._onDestroyCallbacks.push(n)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(n=>n()),this._onDestroyCallbacks=[]}reset(n){this.control&&this.control.reset(n)}hasError(n,e){return!!this.control&&this.control.hasError(n,e)}getError(n,e){return this.control?this.control.getError(n,e):null}}class Yi extends bk{get formDirective(){return null}get path(){return null}}class ha extends bk{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null}}class Ck{constructor(n){this._cd=n}get isTouched(){return!!this._cd?.control?.touched}get isUntouched(){return!!this._cd?.control?.untouched}get isPristine(){return!!this._cd?.control?.pristine}get isDirty(){return!!this._cd?.control?.dirty}get isValid(){return!!this._cd?.control?.valid}get isInvalid(){return!!this._cd?.control?.invalid}get isPending(){return!!this._cd?.control?.pending}get isSubmitted(){return!!this._cd?.submitted}}let mc=(()=>{class t extends Ck{constructor(e){super(e)}}return t.\u0275fac=function(e){return new(e||t)(_(ha,2))},t.\u0275dir=G({type:t,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(e,i){2&e&&Mt("ng-untouched",i.isUntouched)("ng-touched",i.isTouched)("ng-pristine",i.isPristine)("ng-dirty",i.isDirty)("ng-valid",i.isValid)("ng-invalid",i.isInvalid)("ng-pending",i.isPending)},features:[J]}),t})(),Tk=(()=>{class t extends Ck{constructor(e){super(e)}}return t.\u0275fac=function(e){return new(e||t)(_(Yi,10))},t.\u0275dir=G({type:t,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(e,i){2&e&&Mt("ng-untouched",i.isUntouched)("ng-touched",i.isTouched)("ng-pristine",i.isPristine)("ng-dirty",i.isDirty)("ng-valid",i.isValid)("ng-invalid",i.isInvalid)("ng-pending",i.isPending)("ng-submitted",i.isSubmitted)},features:[J]}),t})();const ud="VALID",bp="INVALID",_c="PENDING",dd="DISABLED";function dv(t){return(Cp(t)?t.validators:t)||null}function Sk(t){return Array.isArray(t)?sv(t):t||null}function hv(t,n){return(Cp(n)?n.asyncValidators:t)||null}function Dk(t){return Array.isArray(t)?av(t):t||null}function Cp(t){return null!=t&&!Array.isArray(t)&&"object"==typeof t}class kk{constructor(n,e){this._pendingDirty=!1,this._hasOwnPendingAsyncValidator=!1,this._pendingTouched=!1,this._onCollectionChange=()=>{},this._parent=null,this.pristine=!0,this.touched=!1,this._onDisabledChange=[],this._rawValidators=n,this._rawAsyncValidators=e,this._composedValidatorFn=Sk(this._rawValidators),this._composedAsyncValidatorFn=Dk(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn}set validator(n){this._rawValidators=this._composedValidatorFn=n}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(n){this._rawAsyncValidators=this._composedAsyncValidatorFn=n}get parent(){return this._parent}get valid(){return this.status===ud}get invalid(){return this.status===bp}get pending(){return this.status==_c}get disabled(){return this.status===dd}get enabled(){return this.status!==dd}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(n){this._rawValidators=n,this._composedValidatorFn=Sk(n)}setAsyncValidators(n){this._rawAsyncValidators=n,this._composedAsyncValidatorFn=Dk(n)}addValidators(n){this.setValidators(Ak(n,this._rawValidators))}addAsyncValidators(n){this.setAsyncValidators(Ak(n,this._rawAsyncValidators))}removeValidators(n){this.setValidators(vk(n,this._rawValidators))}removeAsyncValidators(n){this.setAsyncValidators(vk(n,this._rawAsyncValidators))}hasValidator(n){return Ap(this._rawValidators,n)}hasAsyncValidator(n){return Ap(this._rawAsyncValidators,n)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(n={}){this.touched=!0,this._parent&&!n.onlySelf&&this._parent.markAsTouched(n)}markAllAsTouched(){this.markAsTouched({onlySelf:!0}),this._forEachChild(n=>n.markAllAsTouched())}markAsUntouched(n={}){this.touched=!1,this._pendingTouched=!1,this._forEachChild(e=>{e.markAsUntouched({onlySelf:!0})}),this._parent&&!n.onlySelf&&this._parent._updateTouched(n)}markAsDirty(n={}){this.pristine=!1,this._parent&&!n.onlySelf&&this._parent.markAsDirty(n)}markAsPristine(n={}){this.pristine=!0,this._pendingDirty=!1,this._forEachChild(e=>{e.markAsPristine({onlySelf:!0})}),this._parent&&!n.onlySelf&&this._parent._updatePristine(n)}markAsPending(n={}){this.status=_c,!1!==n.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!n.onlySelf&&this._parent.markAsPending(n)}disable(n={}){const e=this._parentMarkedDirty(n.onlySelf);this.status=dd,this.errors=null,this._forEachChild(i=>{i.disable({...n,onlySelf:!0})}),this._updateValue(),!1!==n.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors({...n,skipPristineCheck:e}),this._onDisabledChange.forEach(i=>i(!0))}enable(n={}){const e=this._parentMarkedDirty(n.onlySelf);this.status=ud,this._forEachChild(i=>{i.enable({...n,onlySelf:!0})}),this.updateValueAndValidity({onlySelf:!0,emitEvent:n.emitEvent}),this._updateAncestors({...n,skipPristineCheck:e}),this._onDisabledChange.forEach(i=>i(!1))}_updateAncestors(n){this._parent&&!n.onlySelf&&(this._parent.updateValueAndValidity(n),n.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}setParent(n){this._parent=n}getRawValue(){return this.value}updateValueAndValidity(n={}){this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===ud||this.status===_c)&&this._runAsyncValidator(n.emitEvent)),!1!==n.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!n.onlySelf&&this._parent.updateValueAndValidity(n)}_updateTreeValidity(n={emitEvent:!0}){this._forEachChild(e=>e._updateTreeValidity(n)),this.updateValueAndValidity({onlySelf:!0,emitEvent:n.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?dd:ud}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(n){if(this.asyncValidator){this.status=_c,this._hasOwnPendingAsyncValidator=!0;const e=uk(this.asyncValidator(this));this._asyncValidationSubscription=e.subscribe(i=>{this._hasOwnPendingAsyncValidator=!1,this.setErrors(i,{emitEvent:n})})}}_cancelExistingSubscription(){this._asyncValidationSubscription&&(this._asyncValidationSubscription.unsubscribe(),this._hasOwnPendingAsyncValidator=!1)}setErrors(n,e={}){this.errors=n,this._updateControlsErrors(!1!==e.emitEvent)}get(n){let e=n;return null==e||(Array.isArray(e)||(e=e.split(".")),0===e.length)?null:e.reduce((i,r)=>i&&i._find(r),this)}getError(n,e){const i=e?this.get(e):this;return i&&i.errors?i.errors[n]:null}hasError(n,e){return!!this.getError(n,e)}get root(){let n=this;for(;n._parent;)n=n._parent;return n}_updateControlsErrors(n){this.status=this._calculateStatus(),n&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(n)}_initObservables(){this.valueChanges=new Ae,this.statusChanges=new Ae}_calculateStatus(){return this._allControlsDisabled()?dd:this.errors?bp:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(_c)?_c:this._anyControlsHaveStatus(bp)?bp:ud}_anyControlsHaveStatus(n){return this._anyControls(e=>e.status===n)}_anyControlsDirty(){return this._anyControls(n=>n.dirty)}_anyControlsTouched(){return this._anyControls(n=>n.touched)}_updatePristine(n={}){this.pristine=!this._anyControlsDirty(),this._parent&&!n.onlySelf&&this._parent._updatePristine(n)}_updateTouched(n={}){this.touched=this._anyControlsTouched(),this._parent&&!n.onlySelf&&this._parent._updateTouched(n)}_registerOnCollectionChange(n){this._onCollectionChange=n}_setUpdateStrategy(n){Cp(n)&&null!=n.updateOn&&(this._updateOn=n.updateOn)}_parentMarkedDirty(n){return!n&&!(!this._parent||!this._parent.dirty)&&!this._parent._anyControlsDirty()}_find(n){return null}}class Tp extends kk{constructor(n,e,i){super(dv(e),hv(i,e)),this.controls=n,this._initObservables(),this._setUpdateStrategy(e),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}registerControl(n,e){return this.controls[n]?this.controls[n]:(this.controls[n]=e,e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange),e)}addControl(n,e,i={}){this.registerControl(n,e),this.updateValueAndValidity({emitEvent:i.emitEvent}),this._onCollectionChange()}removeControl(n,e={}){this.controls[n]&&this.controls[n]._registerOnCollectionChange(()=>{}),delete this.controls[n],this.updateValueAndValidity({emitEvent:e.emitEvent}),this._onCollectionChange()}setControl(n,e,i={}){this.controls[n]&&this.controls[n]._registerOnCollectionChange(()=>{}),delete this.controls[n],e&&this.registerControl(n,e),this.updateValueAndValidity({emitEvent:i.emitEvent}),this._onCollectionChange()}contains(n){return this.controls.hasOwnProperty(n)&&this.controls[n].enabled}setValue(n,e={}){(function xk(t,n,e){t._forEachChild((i,r)=>{if(void 0===e[r])throw new ne(1002,"")})})(this,0,n),Object.keys(n).forEach(i=>{(function wk(t,n,e){const i=t.controls;if(!(n?Object.keys(i):i).length)throw new ne(1e3,"");if(!i[e])throw new ne(1001,"")})(this,!0,i),this.controls[i].setValue(n[i],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e)}patchValue(n,e={}){null!=n&&(Object.keys(n).forEach(i=>{const r=this.controls[i];r&&r.patchValue(n[i],{onlySelf:!0,emitEvent:e.emitEvent})}),this.updateValueAndValidity(e))}reset(n={},e={}){this._forEachChild((i,r)=>{i.reset(n[r],{onlySelf:!0,emitEvent:e.emitEvent})}),this._updatePristine(e),this._updateTouched(e),this.updateValueAndValidity(e)}getRawValue(){return this._reduceChildren({},(n,e,i)=>(n[i]=e.getRawValue(),n))}_syncPendingControls(){let n=this._reduceChildren(!1,(e,i)=>!!i._syncPendingControls()||e);return n&&this.updateValueAndValidity({onlySelf:!0}),n}_forEachChild(n){Object.keys(this.controls).forEach(e=>{const i=this.controls[e];i&&n(i,e)})}_setUpControls(){this._forEachChild(n=>{n.setParent(this),n._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(n){for(const[e,i]of Object.entries(this.controls))if(this.contains(e)&&n(i))return!0;return!1}_reduceValue(){return this._reduceChildren({},(e,i,r)=>((i.enabled||this.disabled)&&(e[r]=i.value),e))}_reduceChildren(n,e){let i=n;return this._forEachChild((r,s)=>{i=e(i,r,s)}),i}_allControlsDisabled(){for(const n of Object.keys(this.controls))if(this.controls[n].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_find(n){return this.controls.hasOwnProperty(n)?this.controls[n]:null}}const MG=Tp;function Ep(t,n){return[...n.path,t]}function hd(t,n){fv(t,n),n.valueAccessor.writeValue(t.value),t.disabled&&n.valueAccessor.setDisabledState?.(!0),function LG(t,n){n.valueAccessor.registerOnChange(e=>{t._pendingValue=e,t._pendingChange=!0,t._pendingDirty=!0,"change"===t.updateOn&&Ik(t,n)})}(t,n),function NG(t,n){const e=(i,r)=>{n.valueAccessor.writeValue(i),r&&n.viewToModelUpdate(i)};t.registerOnChange(e),n._registerOnDestroy(()=>{t._unregisterOnChange(e)})}(t,n),function PG(t,n){n.valueAccessor.registerOnTouched(()=>{t._pendingTouched=!0,"blur"===t.updateOn&&t._pendingChange&&Ik(t,n),"submit"!==t.updateOn&&t.markAsTouched()})}(t,n),function OG(t,n){if(n.valueAccessor.setDisabledState){const e=i=>{n.valueAccessor.setDisabledState(i)};t.registerOnDisabledChange(e),n._registerOnDestroy(()=>{t._unregisterOnDisabledChange(e)})}}(t,n)}function Sp(t,n,e=!0){const i=()=>{};n.valueAccessor&&(n.valueAccessor.registerOnChange(i),n.valueAccessor.registerOnTouched(i)),wp(t,n),t&&(n._invokeOnDestroyCallbacks(),t._registerOnCollectionChange(()=>{}))}function Dp(t,n){t.forEach(e=>{e.registerOnValidatorChange&&e.registerOnValidatorChange(n)})}function fv(t,n){const e=_k(t);null!==n.validator?t.setValidators(mk(e,n.validator)):"function"==typeof e&&t.setValidators([e]);const i=yk(t);null!==n.asyncValidator?t.setAsyncValidators(mk(i,n.asyncValidator)):"function"==typeof i&&t.setAsyncValidators([i]);const r=()=>t.updateValueAndValidity();Dp(n._rawValidators,r),Dp(n._rawAsyncValidators,r)}function wp(t,n){let e=!1;if(null!==t){if(null!==n.validator){const r=_k(t);if(Array.isArray(r)&&r.length>0){const s=r.filter(a=>a!==n.validator);s.length!==r.length&&(e=!0,t.setValidators(s))}}if(null!==n.asyncValidator){const r=yk(t);if(Array.isArray(r)&&r.length>0){const s=r.filter(a=>a!==n.asyncValidator);s.length!==r.length&&(e=!0,t.setAsyncValidators(s))}}}const i=()=>{};return Dp(n._rawValidators,i),Dp(n._rawAsyncValidators,i),e}function Ik(t,n){t._pendingDirty&&t.markAsDirty(),t.setValue(t._pendingValue,{emitModelToViewChange:!1}),n.viewToModelUpdate(t._pendingValue),t._pendingChange=!1}function Mk(t,n){fv(t,n)}function pv(t,n){if(!t.hasOwnProperty("model"))return!1;const e=t.model;return!!e.isFirstChange()||!Object.is(n,e.currentValue)}function Ok(t,n){t._syncPendingControls(),n.forEach(e=>{const i=e.control;"submit"===i.updateOn&&i._pendingChange&&(e.viewToModelUpdate(i._pendingValue),i._pendingChange=!1)})}function gv(t,n){if(!n)return null;let e,i,r;return Array.isArray(n),n.forEach(s=>{s.constructor===Ko?e=s:function VG(t){return Object.getPrototypeOf(t.constructor)===Wo}(s)?i=s:r=s}),r||i||e||null}const jG={provide:Yi,useExisting:Ft(()=>xp)},fd=(()=>Promise.resolve())();let xp=(()=>{class t extends Yi{constructor(e,i){super(),this.submitted=!1,this._directives=new Set,this.ngSubmit=new Ae,this.form=new Tp({},sv(e),av(i))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(e){fd.then(()=>{const i=this._findContainer(e.path);e.control=i.registerControl(e.name,e.control),hd(e.control,e),e.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(e)})}getControl(e){return this.form.get(e.path)}removeControl(e){fd.then(()=>{const i=this._findContainer(e.path);i&&i.removeControl(e.name),this._directives.delete(e)})}addFormGroup(e){fd.then(()=>{const i=this._findContainer(e.path),r=new Tp({});Mk(r,e),i.registerControl(e.name,r),r.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(e){fd.then(()=>{const i=this._findContainer(e.path);i&&i.removeControl(e.name)})}getFormGroup(e){return this.form.get(e.path)}updateModel(e,i){fd.then(()=>{this.form.get(e.path).setValue(i)})}setValue(e){this.control.setValue(e)}onSubmit(e){return this.submitted=!0,Ok(this.form,this._directives),this.ngSubmit.emit(e),"dialog"===e?.target?.method}onReset(){this.resetForm()}resetForm(e){this.form.reset(e),this.submitted=!1}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(e){return e.pop(),e.length?this.form.get(e):this.form}}return t.\u0275fac=function(e){return new(e||t)(_(mi,10),_(Qa,10))},t.\u0275dir=G({type:t,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(e,i){1&e&&ee("submit",function(s){return i.onSubmit(s)})("reset",function(){return i.onReset()})},inputs:{options:["ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[$e([jG]),J]}),t})();function Lk(t,n){const e=t.indexOf(n);e>-1&&t.splice(e,1)}function Pk(t){return"object"==typeof t&&null!==t&&2===Object.keys(t).length&&"value"in t&&"disabled"in t}const mv=class extends kk{constructor(n=null,e,i){super(dv(e),hv(i,e)),this.defaultValue=null,this._onChange=[],this._pendingChange=!1,this._applyFormState(n),this._setUpdateStrategy(e),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),Cp(e)&&(e.nonNullable||e.initialValueIsDefault)&&(this.defaultValue=Pk(n)?n.value:n)}setValue(n,e={}){this.value=this._pendingValue=n,this._onChange.length&&!1!==e.emitModelToViewChange&&this._onChange.forEach(i=>i(this.value,!1!==e.emitViewToModelChange)),this.updateValueAndValidity(e)}patchValue(n,e={}){this.setValue(n,e)}reset(n=this.defaultValue,e={}){this._applyFormState(n),this.markAsPristine(e),this.markAsUntouched(e),this.setValue(this.value,e),this._pendingChange=!1}_updateValue(){}_anyControls(n){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(n){this._onChange.push(n)}_unregisterOnChange(n){Lk(this._onChange,n)}registerOnDisabledChange(n){this._onDisabledChange.push(n)}_unregisterOnDisabledChange(n){Lk(this._onDisabledChange,n)}_forEachChild(n){}_syncPendingControls(){return!("submit"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}_applyFormState(n){Pk(n)?(this.value=this._pendingValue=n.value,n.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=n}},zG=mv,WG={provide:ha,useExisting:Ft(()=>yc)},Bk=(()=>Promise.resolve())();let yc=(()=>{class t extends ha{constructor(e,i,r,s,a){super(),this._changeDetectorRef=a,this.control=new mv,this._registered=!1,this.update=new Ae,this._parent=e,this._setValidators(i),this._setAsyncValidators(r),this.valueAccessor=gv(0,s)}ngOnChanges(e){if(this._checkForErrors(),!this._registered||"name"in e){if(this._registered&&(this._checkName(),this.formDirective)){const i=e.name.previousValue;this.formDirective.removeControl({name:i,path:this._getPath(i)})}this._setUpControl()}"isDisabled"in e&&this._updateDisabled(e),pv(e,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}get path(){return this._getPath(this.name)}get formDirective(){return this._parent?this._parent.formDirective:null}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}_setUpControl(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}_isStandalone(){return!this._parent||!(!this.options||!this.options.standalone)}_setUpStandalone(){hd(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._isStandalone()||this._checkParentType(),this._checkName()}_checkParentType(){}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()}_updateValue(e){Bk.then(()=>{this.control.setValue(e,{emitViewToModelChange:!1}),this._changeDetectorRef?.markForCheck()})}_updateDisabled(e){const i=e.isDisabled.currentValue,r=0!==i&&ra(i);Bk.then(()=>{r&&!this.control.disabled?this.control.disable():!r&&this.control.disabled&&this.control.enable(),this._changeDetectorRef?.markForCheck()})}_getPath(e){return this._parent?Ep(e,this._parent):[e]}}return t.\u0275fac=function(e){return new(e||t)(_(Yi,9),_(mi,10),_(Qa,10),_(vr,10),_(Kn,8))},t.\u0275dir=G({type:t,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:["disabled","isDisabled"],model:["ngModel","model"],options:["ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],features:[$e([WG]),J,$n]}),t})(),Uk=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({}),t})();const _v=new Z("NgModelWithFormControlWarning"),$G={provide:Yi,useExisting:Ft(()=>pd)};let pd=(()=>{class t extends Yi{constructor(e,i){super(),this.submitted=!1,this._onCollectionChange=()=>this._updateDomValue(),this.directives=[],this.form=null,this.ngSubmit=new Ae,this._setValidators(e),this._setAsyncValidators(i)}ngOnChanges(e){this._checkFormPresent(),e.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(wp(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(e){const i=this.form.get(e.path);return hd(i,e),i.updateValueAndValidity({emitEvent:!1}),this.directives.push(e),i}getControl(e){return this.form.get(e.path)}removeControl(e){Sp(e.control||null,e,!1),function UG(t,n){const e=t.indexOf(n);e>-1&&t.splice(e,1)}(this.directives,e)}addFormGroup(e){this._setUpFormContainer(e)}removeFormGroup(e){this._cleanUpFormContainer(e)}getFormGroup(e){return this.form.get(e.path)}addFormArray(e){this._setUpFormContainer(e)}removeFormArray(e){this._cleanUpFormContainer(e)}getFormArray(e){return this.form.get(e.path)}updateModel(e,i){this.form.get(e.path).setValue(i)}onSubmit(e){return this.submitted=!0,Ok(this.form,this.directives),this.ngSubmit.emit(e),"dialog"===e?.target?.method}onReset(){this.resetForm()}resetForm(e){this.form.reset(e),this.submitted=!1}_updateDomValue(){this.directives.forEach(e=>{const i=e.control,r=this.form.get(e.path);i!==r&&(Sp(i||null,e),(t=>t instanceof mv)(r)&&(hd(r,e),e.control=r))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(e){const i=this.form.get(e.path);Mk(i,e),i.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(e){if(this.form){const i=this.form.get(e.path);i&&function FG(t,n){return wp(t,n)}(i,e)&&i.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){fv(this.form,this),this._oldForm&&wp(this._oldForm,this)}_checkFormPresent(){}}return t.\u0275fac=function(e){return new(e||t)(_(mi,10),_(Qa,10))},t.\u0275dir=G({type:t,selectors:[["","formGroup",""]],hostBindings:function(e,i){1&e&&ee("submit",function(s){return i.onSubmit(s)})("reset",function(){return i.onReset()})},inputs:{form:["formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[$e([$G]),J,$n]}),t})();const t5={provide:ha,useExisting:Ft(()=>vv)};let vv=(()=>{class t extends ha{constructor(e,i,r,s,a){super(),this._ngModelWarningConfig=a,this._added=!1,this.update=new Ae,this._ngModelWarningSent=!1,this._parent=e,this._setValidators(i),this._setAsyncValidators(r),this.valueAccessor=gv(0,s)}set isDisabled(e){}ngOnChanges(e){this._added||this._setUpControl(),pv(e,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}get path(){return Ep(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}_checkParentType(){}_setUpControl(){this._checkParentType(),this.control=this.formDirective.addControl(this),this._added=!0}}return t._ngModelWarningSentOnce=!1,t.\u0275fac=function(e){return new(e||t)(_(Yi,13),_(mi,10),_(Qa,10),_(vr,10),_(_v,8))},t.\u0275dir=G({type:t,selectors:[["","formControlName",""]],inputs:{name:["formControlName","name"],isDisabled:["disabled","isDisabled"],model:["ngModel","model"]},outputs:{update:"ngModelChange"},features:[$e([t5]),J,$n]}),t})(),tI=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[Uk]}),t})(),gd=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[tI]}),t})(),_5=(()=>{class t{static withConfig(e){return{ngModule:t,providers:[{provide:_v,useValue:e.warnOnNgModelWithFormControl}]}}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[tI]}),t})();function zt(t){return null!=t&&"false"!=`${t}`}function ss(t,n=0){return function A5(t){return!isNaN(parseFloat(t))&&!isNaN(Number(t))}(t)?Number(t):n}function kp(t){return Array.isArray(t)?t:[t]}function ii(t){return null==t?"":"string"==typeof t?t:`${t}px`}function fa(t){return t instanceof be?t.nativeElement:t}const v5=["addListener","removeListener"],b5=["addEventListener","removeEventListener"],C5=["on","off"];function qo(t,n,e,i){if(de(e)&&(i=e,e=void 0),i)return qo(t,n,e).pipe(WA(i));const[r,s]=function S5(t){return de(t.addEventListener)&&de(t.removeEventListener)}(t)?b5.map(a=>o=>t[a](n,o,e)):function T5(t){return de(t.addListener)&&de(t.removeListener)}(t)?v5.map(nI(t,n)):function E5(t){return de(t.on)&&de(t.off)}(t)?C5.map(nI(t,n)):[];if(!r&&ru(t))return xn(a=>qo(a,n,e))(Hn(t));if(!r)throw new TypeError("Invalid event target");return new Ct(a=>{const o=(...l)=>a.next(1<l.length?l:l[0]);return r(o),()=>s(o)})}function nI(t,n){return e=>i=>t[e](n,i)}class D5 extends ae{constructor(n,e){super()}schedule(n,e=0){return this}}const Ip={setInterval(t,n,...e){const{delegate:i}=Ip;return i?.setInterval?i.setInterval(t,n,...e):setInterval(t,n,...e)},clearInterval(t){const{delegate:n}=Ip;return(n?.clearInterval||clearInterval)(t)},delegate:void 0};class Sv extends D5{constructor(n,e){super(n,e),this.scheduler=n,this.work=e,this.pending=!1}schedule(n,e=0){var i;if(this.closed)return this;this.state=n;const r=this.id,s=this.scheduler;return null!=r&&(this.id=this.recycleAsyncId(s,r,e)),this.pending=!0,this.delay=e,this.id=null!==(i=this.id)&&void 0!==i?i:this.requestAsyncId(s,this.id,e),this}requestAsyncId(n,e,i=0){return Ip.setInterval(n.flush.bind(n,this),i)}recycleAsyncId(n,e,i=0){if(null!=i&&this.delay===i&&!1===this.pending)return e;null!=e&&Ip.clearInterval(e)}execute(n,e){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;const i=this._execute(n,e);if(i)return i;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(n,e){let r,i=!1;try{this.work(n)}catch(s){i=!0,r=s||new Error("Scheduled action threw falsy error")}if(i)return this.unsubscribe(),r}unsubscribe(){if(!this.closed){const{id:n,scheduler:e}=this,{actions:i}=e;this.work=this.state=this.scheduler=null,this.pending=!1,Oe(i,this),null!=n&&(this.id=this.recycleAsyncId(e,n,null)),this.delay=null,super.unsubscribe()}}}const md={schedule(t){let n=requestAnimationFrame,e=cancelAnimationFrame;const{delegate:i}=md;i&&(n=i.requestAnimationFrame,e=i.cancelAnimationFrame);const r=n(s=>{e=void 0,t(s)});return new ae(()=>e?.(r))},requestAnimationFrame(...t){const{delegate:n}=md;return(n?.requestAnimationFrame||requestAnimationFrame)(...t)},cancelAnimationFrame(...t){const{delegate:n}=md;return(n?.cancelAnimationFrame||cancelAnimationFrame)(...t)},delegate:void 0};class _d{constructor(n,e=_d.now){this.schedulerActionCtor=n,this.now=e}schedule(n,e=0,i){return new this.schedulerActionCtor(this,n).schedule(i,e)}}_d.now=mA.now;class Dv extends _d{constructor(n,e=_d.now){super(n,e),this.actions=[],this._active=!1}flush(n){const{actions:e}=this;if(this._active)return void e.push(n);let i;this._active=!0;do{if(i=n.execute(n.state,n.delay))break}while(n=e.shift());if(this._active=!1,i){for(;n=e.shift();)n.unsubscribe();throw i}}}new class x5 extends Dv{flush(n){this._active=!0;const e=this._scheduled;this._scheduled=void 0;const{actions:i}=this;let r;n=n||i.shift();do{if(r=n.execute(n.state,n.delay))break}while((n=i[0])&&n.id===e&&i.shift());if(this._active=!1,r){for(;(n=i[0])&&n.id===e&&i.shift();)n.unsubscribe();throw r}}}(class w5 extends Sv{constructor(n,e){super(n,e),this.scheduler=n,this.work=e}requestAsyncId(n,e,i=0){return null!==i&&i>0?super.requestAsyncId(n,e,i):(n.actions.push(this),n._scheduled||(n._scheduled=md.requestAnimationFrame(()=>n.flush(void 0))))}recycleAsyncId(n,e,i=0){var r;if(null!=i?i>0:this.delay>0)return super.recycleAsyncId(n,e,i);const{actions:s}=n;null!=e&&(null===(r=s[s.length-1])||void 0===r?void 0:r.id)!==e&&(md.cancelAnimationFrame(e),n._scheduled=void 0)}});let wv,I5=1;const Mp={};function iI(t){return t in Mp&&(delete Mp[t],!0)}const M5={setImmediate(t){const n=I5++;return Mp[n]=!0,wv||(wv=Promise.resolve()),wv.then(()=>iI(n)&&t()),n},clearImmediate(t){iI(t)}},{setImmediate:R5,clearImmediate:O5}=M5,Rp={setImmediate(...t){const{delegate:n}=Rp;return(n?.setImmediate||R5)(...t)},clearImmediate(t){const{delegate:n}=Rp;return(n?.clearImmediate||O5)(t)},delegate:void 0},xv=new class P5 extends Dv{flush(n){this._active=!0;const e=this._scheduled;this._scheduled=void 0;const{actions:i}=this;let r;n=n||i.shift();do{if(r=n.execute(n.state,n.delay))break}while((n=i[0])&&n.id===e&&i.shift());if(this._active=!1,r){for(;(n=i[0])&&n.id===e&&i.shift();)n.unsubscribe();throw r}}}(class L5 extends Sv{constructor(n,e){super(n,e),this.scheduler=n,this.work=e}requestAsyncId(n,e,i=0){return null!==i&&i>0?super.requestAsyncId(n,e,i):(n.actions.push(this),n._scheduled||(n._scheduled=Rp.setImmediate(n.flush.bind(n,void 0))))}recycleAsyncId(n,e,i=0){var r;if(null!=i?i>0:this.delay>0)return super.recycleAsyncId(n,e,i);const{actions:s}=n;null!=e&&(null===(r=s[s.length-1])||void 0===r?void 0:r.id)!==e&&(Rp.clearImmediate(e),n._scheduled===e&&(n._scheduled=void 0))}}),Op=new Dv(Sv),N5=Op;function yd(t=0,n,e=N5){let i=-1;return null!=n&&(vl(n)?e=n:i=n),new Ct(r=>{let s=function B5(t){return t instanceof Date&&!isNaN(t)}(t)?+t-e.now():t;s<0&&(s=0);let a=0;return e.schedule(function(){r.closed||(r.next(a++),0<=i?this.schedule(void 0,i):r.complete())},s)})}function kv(t,n=Op){return function F5(t){return ln((n,e)=>{let i=!1,r=null,s=null,a=!1;const o=()=>{if(s?.unsubscribe(),s=null,i){i=!1;const u=r;r=null,e.next(u)}a&&e.complete()},l=()=>{s=null,a&&e.complete()};n.subscribe(Zt(e,u=>{i=!0,r=u,s||Hn(t(u)).subscribe(s=Zt(e,o,l))},()=>{a=!0,(!i||!s||s.closed)&&e.complete()}))})}(()=>yd(t,n))}function dt(t){return ln((n,e)=>{Hn(t).subscribe(Zt(e,()=>e.complete(),Xe)),!e.closed&&n.subscribe(e)})}let Iv;try{Iv=typeof Intl<"u"&&Intl.v8BreakIterator}catch{Iv=!1}let Ac,hi=(()=>{class t{constructor(e){this._platformId=e,this.isBrowser=this._platformId?Uo(this._platformId):"object"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!Iv)&&typeof CSS<"u"&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!("MSStream"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}}return t.\u0275fac=function(e){return new(e||t)(R(Pr))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const rI=["color","button","checkbox","date","datetime-local","email","file","hidden","image","month","number","password","radio","range","reset","search","submit","tel","text","time","url","week"];function sI(){if(Ac)return Ac;if("object"!=typeof document||!document)return Ac=new Set(rI),Ac;let t=document.createElement("input");return Ac=new Set(rI.filter(n=>(t.setAttribute("type",n),t.type===n))),Ac}let Ad,Lp,Qo,Mv;function Xo(t){return function V5(){if(null==Ad&&typeof window<"u")try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:()=>Ad=!0}))}finally{Ad=Ad||!1}return Ad}()?t:!!t.capture}function aI(){if(null==Qo){if("object"!=typeof document||!document||"function"!=typeof Element||!Element)return Qo=!1,Qo;if("scrollBehavior"in document.documentElement.style)Qo=!0;else{const t=Element.prototype.scrollTo;Qo=!!t&&!/\{\s*\[native code\]\s*\}/.test(t.toString())}}return Qo}function vd(){if("object"!=typeof document||!document)return 0;if(null==Lp){const t=document.createElement("div"),n=t.style;t.dir="rtl",n.width="1px",n.overflow="auto",n.visibility="hidden",n.pointerEvents="none",n.position="absolute";const e=document.createElement("div"),i=e.style;i.width="2px",i.height="1px",t.appendChild(e),document.body.appendChild(t),Lp=0,0===t.scrollLeft&&(t.scrollLeft=1,Lp=0===t.scrollLeft?1:2),t.remove()}return Lp}function oI(t){if(function U5(){if(null==Mv){const t=typeof document<"u"?document.head:null;Mv=!(!t||!t.createShadowRoot&&!t.attachShadow)}return Mv}()){const n=t.getRootNode?t.getRootNode():null;if(typeof ShadowRoot<"u"&&ShadowRoot&&n instanceof ShadowRoot)return n}return null}function Rv(){let t=typeof document<"u"&&document?document.activeElement:null;for(;t&&t.shadowRoot;){const n=t.shadowRoot.activeElement;if(n===t)break;t=n}return t}function Zo(t){return t.composedPath?t.composedPath()[0]:t.target}function Ov(){return typeof __karma__<"u"&&!!__karma__||typeof jasmine<"u"&&!!jasmine||typeof jest<"u"&&!!jest||typeof Mocha<"u"&&!!Mocha}const j5=new Z("cdk-dir-doc",{providedIn:"root",factory:function z5(){return nn(Ye)}}),H5=/^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i;let Is=(()=>{class t{constructor(e){if(this.value="ltr",this.change=new Ae,e){const r=e.documentElement?e.documentElement.dir:null;this.value=function G5(t){const n=t?.toLowerCase()||"";return"auto"===n&&typeof navigator<"u"&&navigator?.language?H5.test(navigator.language)?"rtl":"ltr":"rtl"===n?"rtl":"ltr"}((e.body?e.body.dir:null)||r||"ltr")}}ngOnDestroy(){this.change.complete()}}return t.\u0275fac=function(e){return new(e||t)(R(j5,8))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),vc=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({}),t})(),Pp=(()=>{class t{constructor(e,i,r){this._ngZone=e,this._platform=i,this._scrolled=new pe,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map,this._document=r}register(e){this.scrollContainers.has(e)||this.scrollContainers.set(e,e.elementScrolled().subscribe(()=>this._scrolled.next(e)))}deregister(e){const i=this.scrollContainers.get(e);i&&(i.unsubscribe(),this.scrollContainers.delete(e))}scrolled(e=20){return this._platform.isBrowser?new Ct(i=>{this._globalSubscription||this._addGlobalListener();const r=e>0?this._scrolled.pipe(kv(e)).subscribe(i):this._scrolled.subscribe(i);return this._scrolledCount++,()=>{r.unsubscribe(),this._scrolledCount--,this._scrolledCount||this._removeGlobalListener()}}):ye()}ngOnDestroy(){this._removeGlobalListener(),this.scrollContainers.forEach((e,i)=>this.deregister(i)),this._scrolled.complete()}ancestorScrolled(e,i){const r=this.getAncestorScrollContainers(e);return this.scrolled(i).pipe(Tn(s=>!s||r.indexOf(s)>-1))}getAncestorScrollContainers(e){const i=[];return this.scrollContainers.forEach((r,s)=>{this._scrollableContainsElement(s,e)&&i.push(s)}),i}_getWindow(){return this._document.defaultView||window}_scrollableContainsElement(e,i){let r=fa(i),s=e.getElementRef().nativeElement;do{if(r==s)return!0}while(r=r.parentElement);return!1}_addGlobalListener(){this._globalSubscription=this._ngZone.runOutsideAngular(()=>qo(this._getWindow().document,"scroll").subscribe(()=>this._scrolled.next()))}_removeGlobalListener(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}}return t.\u0275fac=function(e){return new(e||t)(R(He),R(hi),R(Ye,8))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),lI=(()=>{class t{constructor(e,i,r,s){this.elementRef=e,this.scrollDispatcher=i,this.ngZone=r,this.dir=s,this._destroyed=new pe,this._elementScrolled=new Ct(a=>this.ngZone.runOutsideAngular(()=>qo(this.elementRef.nativeElement,"scroll").pipe(dt(this._destroyed)).subscribe(a)))}ngOnInit(){this.scrollDispatcher.register(this)}ngOnDestroy(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}elementScrolled(){return this._elementScrolled}getElementRef(){return this.elementRef}scrollTo(e){const i=this.elementRef.nativeElement,r=this.dir&&"rtl"==this.dir.value;null==e.left&&(e.left=r?e.end:e.start),null==e.right&&(e.right=r?e.start:e.end),null!=e.bottom&&(e.top=i.scrollHeight-i.clientHeight-e.bottom),r&&0!=vd()?(null!=e.left&&(e.right=i.scrollWidth-i.clientWidth-e.left),2==vd()?e.left=e.right:1==vd()&&(e.left=e.right?-e.right:e.right)):null!=e.right&&(e.left=i.scrollWidth-i.clientWidth-e.right),this._applyScrollToOptions(e)}_applyScrollToOptions(e){const i=this.elementRef.nativeElement;aI()?i.scrollTo(e):(null!=e.top&&(i.scrollTop=e.top),null!=e.left&&(i.scrollLeft=e.left))}measureScrollOffset(e){const i="left",r="right",s=this.elementRef.nativeElement;if("top"==e)return s.scrollTop;if("bottom"==e)return s.scrollHeight-s.clientHeight-s.scrollTop;const a=this.dir&&"rtl"==this.dir.value;return"start"==e?e=a?r:i:"end"==e&&(e=a?i:r),a&&2==vd()?e==i?s.scrollWidth-s.clientWidth-s.scrollLeft:s.scrollLeft:a&&1==vd()?e==i?s.scrollLeft+s.scrollWidth-s.clientWidth:-s.scrollLeft:e==i?s.scrollLeft:s.scrollWidth-s.clientWidth-s.scrollLeft}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(Pp),_(He),_(Is,8))},t.\u0275dir=G({type:t,selectors:[["","cdk-scrollable",""],["","cdkScrollable",""]]}),t})(),Np=(()=>{class t{constructor(e,i,r){this._platform=e,this._change=new pe,this._changeListener=s=>{this._change.next(s)},this._document=r,i.runOutsideAngular(()=>{if(e.isBrowser){const s=this._getWindow();s.addEventListener("resize",this._changeListener),s.addEventListener("orientationchange",this._changeListener)}this.change().subscribe(()=>this._viewportSize=null)})}ngOnDestroy(){if(this._platform.isBrowser){const e=this._getWindow();e.removeEventListener("resize",this._changeListener),e.removeEventListener("orientationchange",this._changeListener)}this._change.complete()}getViewportSize(){this._viewportSize||this._updateViewportSize();const e={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),e}getViewportRect(){const e=this.getViewportScrollPosition(),{width:i,height:r}=this.getViewportSize();return{top:e.top,left:e.left,bottom:e.top+r,right:e.left+i,height:r,width:i}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const e=this._document,i=this._getWindow(),r=e.documentElement,s=r.getBoundingClientRect();return{top:-s.top||e.body.scrollTop||i.scrollY||r.scrollTop||0,left:-s.left||e.body.scrollLeft||i.scrollX||r.scrollLeft||0}}change(e=20){return e>0?this._change.pipe(kv(e)):this._change}_getWindow(){return this._document.defaultView||window}_updateViewportSize(){const e=this._getWindow();this._viewportSize=this._platform.isBrowser?{width:e.innerWidth,height:e.innerHeight}:{width:0,height:0}}}return t.\u0275fac=function(e){return new(e||t)(R(hi),R(He),R(Ye,8))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),bc=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({}),t})(),Lv=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[vc,bc,vc,bc]}),t})();class Pv{attach(n){return this._attachedHost=n,n.attach(this)}detach(){let n=this._attachedHost;null!=n&&(this._attachedHost=null,n.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(n){this._attachedHost=n}}class Fp extends Pv{constructor(n,e,i,r){super(),this.component=n,this.viewContainerRef=e,this.injector=i,this.componentFactoryResolver=r}}class Nv extends Pv{constructor(n,e,i,r){super(),this.templateRef=n,this.viewContainerRef=e,this.context=i,this.injector=r}get origin(){return this.templateRef.elementRef}attach(n,e=this.context){return this.context=e,super.attach(n)}detach(){return this.context=void 0,super.detach()}}class Y5 extends Pv{constructor(n){super(),this.element=n instanceof be?n.nativeElement:n}}class Fv{constructor(){this._isDisposed=!1,this.attachDomPortal=null}hasAttached(){return!!this._attachedPortal}attach(n){return n instanceof Fp?(this._attachedPortal=n,this.attachComponentPortal(n)):n instanceof Nv?(this._attachedPortal=n,this.attachTemplatePortal(n)):this.attachDomPortal&&n instanceof Y5?(this._attachedPortal=n,this.attachDomPortal(n)):void 0}detach(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}dispose(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}setDisposeFn(n){this._disposeFn=n}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class q5 extends Fv{constructor(n,e,i,r,s){super(),this.outletElement=n,this._componentFactoryResolver=e,this._appRef=i,this._defaultInjector=r,this.attachDomPortal=a=>{const o=a.element,l=this._document.createComment("dom-portal");o.parentNode.insertBefore(l,o),this.outletElement.appendChild(o),this._attachedPortal=a,super.setDisposeFn(()=>{l.parentNode&&l.parentNode.replaceChild(o,l)})},this._document=s}attachComponentPortal(n){const i=(n.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(n.component);let r;return n.viewContainerRef?(r=n.viewContainerRef.createComponent(i,n.viewContainerRef.length,n.injector||n.viewContainerRef.injector),this.setDisposeFn(()=>r.destroy())):(r=i.create(n.injector||this._defaultInjector||Fn.NULL),this._appRef.attachView(r.hostView),this.setDisposeFn(()=>{this._appRef.viewCount>0&&this._appRef.detachView(r.hostView),r.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(r)),this._attachedPortal=n,r}attachTemplatePortal(n){let e=n.viewContainerRef,i=e.createEmbeddedView(n.templateRef,n.context,{injector:n.injector});return i.rootNodes.forEach(r=>this.outletElement.appendChild(r)),i.detectChanges(),this.setDisposeFn(()=>{let r=e.indexOf(i);-1!==r&&e.remove(r)}),this._attachedPortal=n,i}dispose(){super.dispose(),this.outletElement.remove()}_getComponentRootNode(n){return n.hostView.rootNodes[0]}}let Bv=(()=>{class t extends Fv{constructor(e,i,r){super(),this._componentFactoryResolver=e,this._viewContainerRef=i,this._isInitialized=!1,this.attached=new Ae,this.attachDomPortal=s=>{const a=s.element,o=this._document.createComment("dom-portal");s.setAttachedHost(this),a.parentNode.insertBefore(o,a),this._getRootNode().appendChild(a),this._attachedPortal=s,super.setDisposeFn(()=>{o.parentNode&&o.parentNode.replaceChild(a,o)})},this._document=r}get portal(){return this._attachedPortal}set portal(e){this.hasAttached()&&!e&&!this._isInitialized||(this.hasAttached()&&super.detach(),e&&super.attach(e),this._attachedPortal=e||null)}get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedPortal=null,this._attachedRef=null}attachComponentPortal(e){e.setAttachedHost(this);const i=null!=e.viewContainerRef?e.viewContainerRef:this._viewContainerRef,s=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component),a=i.createComponent(s,i.length,e.injector||i.injector);return i!==this._viewContainerRef&&this._getRootNode().appendChild(a.hostView.rootNodes[0]),super.setDisposeFn(()=>a.destroy()),this._attachedPortal=e,this._attachedRef=a,this.attached.emit(a),a}attachTemplatePortal(e){e.setAttachedHost(this);const i=this._viewContainerRef.createEmbeddedView(e.templateRef,e.context,{injector:e.injector});return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=e,this._attachedRef=i,this.attached.emit(i),i}_getRootNode(){const e=this._viewContainerRef.element.nativeElement;return e.nodeType===e.ELEMENT_NODE?e:e.parentNode}}return t.\u0275fac=function(e){return new(e||t)(_(Zs),_(ci),_(Ye))},t.\u0275dir=G({type:t,selectors:[["","cdkPortalOutlet",""]],inputs:{portal:["cdkPortalOutlet","portal"]},outputs:{attached:"attached"},exportAs:["cdkPortalOutlet"],features:[J]}),t})(),$o=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({}),t})();const cI=aI();class X5{constructor(n,e){this._viewportRuler=n,this._previousHTMLStyles={top:"",left:""},this._isEnabled=!1,this._document=e}attach(){}enable(){if(this._canBeEnabled()){const n=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=n.style.left||"",this._previousHTMLStyles.top=n.style.top||"",n.style.left=ii(-this._previousScrollPosition.left),n.style.top=ii(-this._previousScrollPosition.top),n.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}}disable(){if(this._isEnabled){const n=this._document.documentElement,i=n.style,r=this._document.body.style,s=i.scrollBehavior||"",a=r.scrollBehavior||"";this._isEnabled=!1,i.left=this._previousHTMLStyles.left,i.top=this._previousHTMLStyles.top,n.classList.remove("cdk-global-scrollblock"),cI&&(i.scrollBehavior=r.scrollBehavior="auto"),window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),cI&&(i.scrollBehavior=s,r.scrollBehavior=a)}}_canBeEnabled(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;const e=this._document.body,i=this._viewportRuler.getViewportSize();return e.scrollHeight>i.height||e.scrollWidth>i.width}}class Q5{constructor(n,e,i,r){this._scrollDispatcher=n,this._ngZone=e,this._viewportRuler=i,this._config=r,this._scrollSubscription=null,this._detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}attach(n){this._overlayRef=n}enable(){if(this._scrollSubscription)return;const n=this._scrollDispatcher.scrolled(0);this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=n.subscribe(()=>{const e=this._viewportRuler.getViewportScrollPosition().top;Math.abs(e-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=n.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}class uI{enable(){}disable(){}attach(){}}function Vv(t,n){return n.some(e=>t.bottom<e.top||t.top>e.bottom||t.right<e.left||t.left>e.right)}function dI(t,n){return n.some(e=>t.top<e.top||t.bottom>e.bottom||t.left<e.left||t.right>e.right)}class Z5{constructor(n,e,i,r){this._scrollDispatcher=n,this._viewportRuler=e,this._ngZone=i,this._config=r,this._scrollSubscription=null}attach(n){this._overlayRef=n}enable(){this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe(()=>{if(this._overlayRef.updatePosition(),this._config&&this._config.autoClose){const e=this._overlayRef.overlayElement.getBoundingClientRect(),{width:i,height:r}=this._viewportRuler.getViewportSize();Vv(e,[{width:i,height:r,bottom:r,right:i,top:0,left:0}])&&(this.disable(),this._ngZone.run(()=>this._overlayRef.detach()))}}))}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}let $5=(()=>{class t{constructor(e,i,r,s){this._scrollDispatcher=e,this._viewportRuler=i,this._ngZone=r,this.noop=()=>new uI,this.close=a=>new Q5(this._scrollDispatcher,this._ngZone,this._viewportRuler,a),this.block=()=>new X5(this._viewportRuler,this._document),this.reposition=a=>new Z5(this._scrollDispatcher,this._viewportRuler,this._ngZone,a),this._document=s}}return t.\u0275fac=function(e){return new(e||t)(R(Pp),R(Np),R(He),R(Ye))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();class Uv{constructor(n){if(this.scrollStrategy=new uI,this.panelClass="",this.hasBackdrop=!1,this.backdropClass="cdk-overlay-dark-backdrop",this.disposeOnNavigation=!1,n){const e=Object.keys(n);for(const i of e)void 0!==n[i]&&(this[i]=n[i])}}}class J5{constructor(n,e){this.connectionPair=n,this.scrollableViewProperties=e}}let hI=(()=>{class t{constructor(e){this._attachedOverlays=[],this._document=e}ngOnDestroy(){this.detach()}add(e){this.remove(e),this._attachedOverlays.push(e)}remove(e){const i=this._attachedOverlays.indexOf(e);i>-1&&this._attachedOverlays.splice(i,1),0===this._attachedOverlays.length&&this.detach()}}return t.\u0275fac=function(e){return new(e||t)(R(Ye))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),e4=(()=>{class t extends hI{constructor(e,i){super(e),this._ngZone=i,this._keydownListener=r=>{const s=this._attachedOverlays;for(let a=s.length-1;a>-1;a--)if(s[a]._keydownEvents.observers.length>0){const o=s[a]._keydownEvents;this._ngZone?this._ngZone.run(()=>o.next(r)):o.next(r);break}}}add(e){super.add(e),this._isAttached||(this._ngZone?this._ngZone.runOutsideAngular(()=>this._document.body.addEventListener("keydown",this._keydownListener)):this._document.body.addEventListener("keydown",this._keydownListener),this._isAttached=!0)}detach(){this._isAttached&&(this._document.body.removeEventListener("keydown",this._keydownListener),this._isAttached=!1)}}return t.\u0275fac=function(e){return new(e||t)(R(Ye),R(He,8))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),t4=(()=>{class t extends hI{constructor(e,i,r){super(e),this._platform=i,this._ngZone=r,this._cursorStyleIsSet=!1,this._pointerDownListener=s=>{this._pointerDownEventTarget=Zo(s)},this._clickListener=s=>{const a=Zo(s),o="click"===s.type&&this._pointerDownEventTarget?this._pointerDownEventTarget:a;this._pointerDownEventTarget=null;const l=this._attachedOverlays.slice();for(let u=l.length-1;u>-1;u--){const h=l[u];if(h._outsidePointerEvents.observers.length<1||!h.hasAttached())continue;if(h.overlayElement.contains(a)||h.overlayElement.contains(o))break;const p=h._outsidePointerEvents;this._ngZone?this._ngZone.run(()=>p.next(s)):p.next(s)}}}add(e){if(super.add(e),!this._isAttached){const i=this._document.body;this._ngZone?this._ngZone.runOutsideAngular(()=>this._addEventListeners(i)):this._addEventListeners(i),this._platform.IOS&&!this._cursorStyleIsSet&&(this._cursorOriginalValue=i.style.cursor,i.style.cursor="pointer",this._cursorStyleIsSet=!0),this._isAttached=!0}}detach(){if(this._isAttached){const e=this._document.body;e.removeEventListener("pointerdown",this._pointerDownListener,!0),e.removeEventListener("click",this._clickListener,!0),e.removeEventListener("auxclick",this._clickListener,!0),e.removeEventListener("contextmenu",this._clickListener,!0),this._platform.IOS&&this._cursorStyleIsSet&&(e.style.cursor=this._cursorOriginalValue,this._cursorStyleIsSet=!1),this._isAttached=!1}}_addEventListeners(e){e.addEventListener("pointerdown",this._pointerDownListener,!0),e.addEventListener("click",this._clickListener,!0),e.addEventListener("auxclick",this._clickListener,!0),e.addEventListener("contextmenu",this._clickListener,!0)}}return t.\u0275fac=function(e){return new(e||t)(R(Ye),R(hi),R(He,8))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),Bp=(()=>{class t{constructor(e,i){this._platform=i,this._document=e}ngOnDestroy(){this._containerElement?.remove()}getContainerElement(){return this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const e="cdk-overlay-container";if(this._platform.isBrowser||Ov()){const r=this._document.querySelectorAll(`.${e}[platform="server"], .${e}[platform="test"]`);for(let s=0;s<r.length;s++)r[s].remove()}const i=this._document.createElement("div");i.classList.add(e),Ov()?i.setAttribute("platform","test"):this._platform.isBrowser||i.setAttribute("platform","server"),this._document.body.appendChild(i),this._containerElement=i}}return t.\u0275fac=function(e){return new(e||t)(R(Ye),R(hi))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();class bd{constructor(n,e,i,r,s,a,o,l,u,h=!1){this._portalOutlet=n,this._host=e,this._pane=i,this._config=r,this._ngZone=s,this._keyboardDispatcher=a,this._document=o,this._location=l,this._outsideClickDispatcher=u,this._animationsDisabled=h,this._backdropElement=null,this._backdropClick=new pe,this._attachments=new pe,this._detachments=new pe,this._locationChanges=ae.EMPTY,this._backdropClickHandler=p=>this._backdropClick.next(p),this._backdropTransitionendHandler=p=>{this._disposeBackdrop(p.target)},this._keydownEvents=new pe,this._outsidePointerEvents=new pe,r.scrollStrategy&&(this._scrollStrategy=r.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=r.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropElement}get hostElement(){return this._host}attach(n){!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host);const e=this._portalOutlet.attach(n);return this._positionStrategy&&this._positionStrategy.attach(this),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._ngZone.onStable.pipe(gn(1)).subscribe(()=>{this.hasAttached()&&this.updatePosition()}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&(this._locationChanges=this._location.subscribe(()=>this.dispose())),this._outsideClickDispatcher.add(this),"function"==typeof e?.onDestroy&&e.onDestroy(()=>{this.hasAttached()&&this._ngZone.runOutsideAngular(()=>Promise.resolve().then(()=>this.detach()))}),e}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const n=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),this._outsideClickDispatcher.remove(this),n}dispose(){const n=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this._disposeBackdrop(this._backdropElement),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._outsidePointerEvents.complete(),this._outsideClickDispatcher.remove(this),this._host?.remove(),this._previousHostParent=this._pane=this._host=null,n&&this._detachments.next(),this._detachments.complete()}hasAttached(){return this._portalOutlet.hasAttached()}backdropClick(){return this._backdropClick}attachments(){return this._attachments}detachments(){return this._detachments}keydownEvents(){return this._keydownEvents}outsidePointerEvents(){return this._outsidePointerEvents}getConfig(){return this._config}updatePosition(){this._positionStrategy&&this._positionStrategy.apply()}updatePositionStrategy(n){n!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=n,this.hasAttached()&&(n.attach(this),this.updatePosition()))}updateSize(n){this._config={...this._config,...n},this._updateElementSize()}setDirection(n){this._config={...this._config,direction:n},this._updateElementDirection()}addPanelClass(n){this._pane&&this._toggleClasses(this._pane,n,!0)}removePanelClass(n){this._pane&&this._toggleClasses(this._pane,n,!1)}getDirection(){const n=this._config.direction;return n?"string"==typeof n?n:n.value:"ltr"}updateScrollStrategy(n){n!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=n,this.hasAttached()&&(n.attach(this),n.enable()))}_updateElementDirection(){this._host.setAttribute("dir",this.getDirection())}_updateElementSize(){if(!this._pane)return;const n=this._pane.style;n.width=ii(this._config.width),n.height=ii(this._config.height),n.minWidth=ii(this._config.minWidth),n.minHeight=ii(this._config.minHeight),n.maxWidth=ii(this._config.maxWidth),n.maxHeight=ii(this._config.maxHeight)}_togglePointerEvents(n){this._pane.style.pointerEvents=n?"":"none"}_attachBackdrop(){const n="cdk-overlay-backdrop-showing";this._backdropElement=this._document.createElement("div"),this._backdropElement.classList.add("cdk-overlay-backdrop"),this._animationsDisabled&&this._backdropElement.classList.add("cdk-overlay-backdrop-noop-animation"),this._config.backdropClass&&this._toggleClasses(this._backdropElement,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropElement,this._host),this._backdropElement.addEventListener("click",this._backdropClickHandler),!this._animationsDisabled&&typeof requestAnimationFrame<"u"?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{this._backdropElement&&this._backdropElement.classList.add(n)})}):this._backdropElement.classList.add(n)}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){const n=this._backdropElement;if(n){if(this._animationsDisabled)return void this._disposeBackdrop(n);n.classList.remove("cdk-overlay-backdrop-showing"),this._ngZone.runOutsideAngular(()=>{n.addEventListener("transitionend",this._backdropTransitionendHandler)}),n.style.pointerEvents="none",this._backdropTimeout=this._ngZone.runOutsideAngular(()=>setTimeout(()=>{this._disposeBackdrop(n)},500))}}_toggleClasses(n,e,i){const r=kp(e||[]).filter(s=>!!s);r.length&&(i?n.classList.add(...r):n.classList.remove(...r))}_detachContentWhenStable(){this._ngZone.runOutsideAngular(()=>{const n=this._ngZone.onStable.pipe(dt(ar(this._attachments,this._detachments))).subscribe(()=>{(!this._pane||!this._host||0===this._pane.children.length)&&(this._pane&&this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!1),this._host&&this._host.parentElement&&(this._previousHostParent=this._host.parentElement,this._host.remove()),n.unsubscribe())})})}_disposeScrollStrategy(){const n=this._scrollStrategy;n&&(n.disable(),n.detach&&n.detach())}_disposeBackdrop(n){n&&(n.removeEventListener("click",this._backdropClickHandler),n.removeEventListener("transitionend",this._backdropTransitionendHandler),n.remove(),this._backdropElement===n&&(this._backdropElement=null)),this._backdropTimeout&&(clearTimeout(this._backdropTimeout),this._backdropTimeout=void 0)}}const fI="cdk-overlay-connected-position-bounding-box",n4=/([A-Za-z%]+)$/;class r4{constructor(n,e,i,r,s){this._viewportRuler=e,this._document=i,this._platform=r,this._overlayContainer=s,this._lastBoundingBoxSize={width:0,height:0},this._isPushed=!1,this._canPush=!0,this._growAfterOpen=!1,this._hasFlexibleDimensions=!0,this._positionLocked=!1,this._viewportMargin=0,this._scrollables=[],this._preferredPositions=[],this._positionChanges=new pe,this._resizeSubscription=ae.EMPTY,this._offsetX=0,this._offsetY=0,this._appliedPanelClasses=[],this.positionChanges=this._positionChanges,this.setOrigin(n)}get positions(){return this._preferredPositions}attach(n){this._validatePositions(),n.hostElement.classList.add(fI),this._overlayRef=n,this._boundingBox=n.hostElement,this._pane=n.overlayElement,this._isDisposed=!1,this._isInitialRender=!0,this._lastPosition=null,this._resizeSubscription.unsubscribe(),this._resizeSubscription=this._viewportRuler.change().subscribe(()=>{this._isInitialRender=!0,this.apply()})}apply(){if(this._isDisposed||!this._platform.isBrowser)return;if(!this._isInitialRender&&this._positionLocked&&this._lastPosition)return void this.reapplyLastPosition();this._clearPanelClasses(),this._resetOverlayElementStyles(),this._resetBoundingBoxStyles(),this._viewportRect=this._getNarrowedViewportRect(),this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const n=this._originRect,e=this._overlayRect,i=this._viewportRect,r=this._containerRect,s=[];let a;for(let o of this._preferredPositions){let l=this._getOriginPoint(n,r,o),u=this._getOverlayPoint(l,e,o),h=this._getOverlayFit(u,e,i,o);if(h.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(o,l);this._canFitWithFlexibleDimensions(h,u,i)?s.push({position:o,origin:l,overlayRect:e,boundingBoxRect:this._calculateBoundingBoxRect(l,o)}):(!a||a.overlayFit.visibleArea<h.visibleArea)&&(a={overlayFit:h,overlayPoint:u,originPoint:l,position:o,overlayRect:e})}if(s.length){let o=null,l=-1;for(const u of s){const h=u.boundingBoxRect.width*u.boundingBoxRect.height*(u.position.weight||1);h>l&&(l=h,o=u)}return this._isPushed=!1,void this._applyPosition(o.position,o.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(a.position,a.originPoint);this._applyPosition(a.position,a.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&Jo(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(fI),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(this._isDisposed||!this._platform.isBrowser)return;const n=this._lastPosition;if(n){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const e=this._getOriginPoint(this._originRect,this._containerRect,n);this._applyPosition(n,e)}else this.apply()}withScrollableContainers(n){return this._scrollables=n,this}withPositions(n){return this._preferredPositions=n,-1===n.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(n){return this._viewportMargin=n,this}withFlexibleDimensions(n=!0){return this._hasFlexibleDimensions=n,this}withGrowAfterOpen(n=!0){return this._growAfterOpen=n,this}withPush(n=!0){return this._canPush=n,this}withLockedPosition(n=!0){return this._positionLocked=n,this}setOrigin(n){return this._origin=n,this}withDefaultOffsetX(n){return this._offsetX=n,this}withDefaultOffsetY(n){return this._offsetY=n,this}withTransformOriginOn(n){return this._transformOriginSelector=n,this}_getOriginPoint(n,e,i){let r,s;if("center"==i.originX)r=n.left+n.width/2;else{const a=this._isRtl()?n.right:n.left,o=this._isRtl()?n.left:n.right;r="start"==i.originX?a:o}return e.left<0&&(r-=e.left),s="center"==i.originY?n.top+n.height/2:"top"==i.originY?n.top:n.bottom,e.top<0&&(s-=e.top),{x:r,y:s}}_getOverlayPoint(n,e,i){let r,s;return r="center"==i.overlayX?-e.width/2:"start"===i.overlayX?this._isRtl()?-e.width:0:this._isRtl()?0:-e.width,s="center"==i.overlayY?-e.height/2:"top"==i.overlayY?0:-e.height,{x:n.x+r,y:n.y+s}}_getOverlayFit(n,e,i,r){const s=gI(e);let{x:a,y:o}=n,l=this._getOffset(r,"x"),u=this._getOffset(r,"y");l&&(a+=l),u&&(o+=u);let C=0-o,w=o+s.height-i.height,k=this._subtractOverflows(s.width,0-a,a+s.width-i.width),L=this._subtractOverflows(s.height,C,w),U=k*L;return{visibleArea:U,isCompletelyWithinViewport:s.width*s.height===U,fitsInViewportVertically:L===s.height,fitsInViewportHorizontally:k==s.width}}_canFitWithFlexibleDimensions(n,e,i){if(this._hasFlexibleDimensions){const r=i.bottom-e.y,s=i.right-e.x,a=pI(this._overlayRef.getConfig().minHeight),o=pI(this._overlayRef.getConfig().minWidth),u=n.fitsInViewportHorizontally||null!=o&&o<=s;return(n.fitsInViewportVertically||null!=a&&a<=r)&&u}return!1}_pushOverlayOnScreen(n,e,i){if(this._previousPushAmount&&this._positionLocked)return{x:n.x+this._previousPushAmount.x,y:n.y+this._previousPushAmount.y};const r=gI(e),s=this._viewportRect,a=Math.max(n.x+r.width-s.width,0),o=Math.max(n.y+r.height-s.height,0),l=Math.max(s.top-i.top-n.y,0),u=Math.max(s.left-i.left-n.x,0);let h=0,p=0;return h=r.width<=s.width?u||-a:n.x<this._viewportMargin?s.left-i.left-n.x:0,p=r.height<=s.height?l||-o:n.y<this._viewportMargin?s.top-i.top-n.y:0,this._previousPushAmount={x:h,y:p},{x:n.x+h,y:n.y+p}}_applyPosition(n,e){if(this._setTransformOrigin(n),this._setOverlayElementStyles(e,n),this._setBoundingBoxStyles(e,n),n.panelClass&&this._addPanelClasses(n.panelClass),this._lastPosition=n,this._positionChanges.observers.length){const i=this._getScrollVisibility(),r=new J5(n,i);this._positionChanges.next(r)}this._isInitialRender=!1}_setTransformOrigin(n){if(!this._transformOriginSelector)return;const e=this._boundingBox.querySelectorAll(this._transformOriginSelector);let i,r=n.overlayY;i="center"===n.overlayX?"center":this._isRtl()?"start"===n.overlayX?"right":"left":"start"===n.overlayX?"left":"right";for(let s=0;s<e.length;s++)e[s].style.transformOrigin=`${i} ${r}`}_calculateBoundingBoxRect(n,e){const i=this._viewportRect,r=this._isRtl();let s,a,o,h,p,C;if("top"===e.overlayY)a=n.y,s=i.height-a+this._viewportMargin;else if("bottom"===e.overlayY)o=i.height-n.y+2*this._viewportMargin,s=i.height-o+this._viewportMargin;else{const w=Math.min(i.bottom-n.y+i.top,n.y),k=this._lastBoundingBoxSize.height;s=2*w,a=n.y-w,s>k&&!this._isInitialRender&&!this._growAfterOpen&&(a=n.y-k/2)}if("end"===e.overlayX&&!r||"start"===e.overlayX&&r)C=i.width-n.x+this._viewportMargin,h=n.x-this._viewportMargin;else if("start"===e.overlayX&&!r||"end"===e.overlayX&&r)p=n.x,h=i.right-n.x;else{const w=Math.min(i.right-n.x+i.left,n.x),k=this._lastBoundingBoxSize.width;h=2*w,p=n.x-w,h>k&&!this._isInitialRender&&!this._growAfterOpen&&(p=n.x-k/2)}return{top:a,left:p,bottom:o,right:C,width:h,height:s}}_setBoundingBoxStyles(n,e){const i=this._calculateBoundingBoxRect(n,e);!this._isInitialRender&&!this._growAfterOpen&&(i.height=Math.min(i.height,this._lastBoundingBoxSize.height),i.width=Math.min(i.width,this._lastBoundingBoxSize.width));const r={};if(this._hasExactPosition())r.top=r.left="0",r.bottom=r.right=r.maxHeight=r.maxWidth="",r.width=r.height="100%";else{const s=this._overlayRef.getConfig().maxHeight,a=this._overlayRef.getConfig().maxWidth;r.height=ii(i.height),r.top=ii(i.top),r.bottom=ii(i.bottom),r.width=ii(i.width),r.left=ii(i.left),r.right=ii(i.right),r.alignItems="center"===e.overlayX?"center":"end"===e.overlayX?"flex-end":"flex-start",r.justifyContent="center"===e.overlayY?"center":"bottom"===e.overlayY?"flex-end":"flex-start",s&&(r.maxHeight=ii(s)),a&&(r.maxWidth=ii(a))}this._lastBoundingBoxSize=i,Jo(this._boundingBox.style,r)}_resetBoundingBoxStyles(){Jo(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})}_resetOverlayElementStyles(){Jo(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})}_setOverlayElementStyles(n,e){const i={},r=this._hasExactPosition(),s=this._hasFlexibleDimensions,a=this._overlayRef.getConfig();if(r){const h=this._viewportRuler.getViewportScrollPosition();Jo(i,this._getExactOverlayY(e,n,h)),Jo(i,this._getExactOverlayX(e,n,h))}else i.position="static";let o="",l=this._getOffset(e,"x"),u=this._getOffset(e,"y");l&&(o+=`translateX(${l}px) `),u&&(o+=`translateY(${u}px)`),i.transform=o.trim(),a.maxHeight&&(r?i.maxHeight=ii(a.maxHeight):s&&(i.maxHeight="")),a.maxWidth&&(r?i.maxWidth=ii(a.maxWidth):s&&(i.maxWidth="")),Jo(this._pane.style,i)}_getExactOverlayY(n,e,i){let r={top:"",bottom:""},s=this._getOverlayPoint(e,this._overlayRect,n);return this._isPushed&&(s=this._pushOverlayOnScreen(s,this._overlayRect,i)),"bottom"===n.overlayY?r.bottom=this._document.documentElement.clientHeight-(s.y+this._overlayRect.height)+"px":r.top=ii(s.y),r}_getExactOverlayX(n,e,i){let a,r={left:"",right:""},s=this._getOverlayPoint(e,this._overlayRect,n);return this._isPushed&&(s=this._pushOverlayOnScreen(s,this._overlayRect,i)),a=this._isRtl()?"end"===n.overlayX?"left":"right":"end"===n.overlayX?"right":"left","right"===a?r.right=this._document.documentElement.clientWidth-(s.x+this._overlayRect.width)+"px":r.left=ii(s.x),r}_getScrollVisibility(){const n=this._getOriginRect(),e=this._pane.getBoundingClientRect(),i=this._scrollables.map(r=>r.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:dI(n,i),isOriginOutsideView:Vv(n,i),isOverlayClipped:dI(e,i),isOverlayOutsideView:Vv(e,i)}}_subtractOverflows(n,...e){return e.reduce((i,r)=>i-Math.max(r,0),n)}_getNarrowedViewportRect(){const n=this._document.documentElement.clientWidth,e=this._document.documentElement.clientHeight,i=this._viewportRuler.getViewportScrollPosition();return{top:i.top+this._viewportMargin,left:i.left+this._viewportMargin,right:i.left+n-this._viewportMargin,bottom:i.top+e-this._viewportMargin,width:n-2*this._viewportMargin,height:e-2*this._viewportMargin}}_isRtl(){return"rtl"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(n,e){return"x"===e?n.offsetX??this._offsetX:n.offsetY??this._offsetY}_validatePositions(){}_addPanelClasses(n){this._pane&&kp(n).forEach(e=>{""!==e&&-1===this._appliedPanelClasses.indexOf(e)&&(this._appliedPanelClasses.push(e),this._pane.classList.add(e))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(n=>{this._pane.classList.remove(n)}),this._appliedPanelClasses=[])}_getOriginRect(){const n=this._origin;if(n instanceof be)return n.nativeElement.getBoundingClientRect();if(n instanceof Element)return n.getBoundingClientRect();const e=n.width||0,i=n.height||0;return{top:n.y,bottom:n.y+i,left:n.x,right:n.x+e,height:i,width:e}}}function Jo(t,n){for(let e in n)n.hasOwnProperty(e)&&(t[e]=n[e]);return t}function pI(t){if("number"!=typeof t&&null!=t){const[n,e]=t.split(n4);return e&&"px"!==e?null:parseFloat(n)}return t||null}function gI(t){return{top:Math.floor(t.top),right:Math.floor(t.right),bottom:Math.floor(t.bottom),left:Math.floor(t.left),width:Math.floor(t.width),height:Math.floor(t.height)}}const mI="cdk-global-overlay-wrapper";class s4{constructor(){this._cssPosition="static",this._topOffset="",this._bottomOffset="",this._alignItems="",this._xPosition="",this._xOffset="",this._width="",this._height="",this._isDisposed=!1}attach(n){const e=n.getConfig();this._overlayRef=n,this._width&&!e.width&&n.updateSize({width:this._width}),this._height&&!e.height&&n.updateSize({height:this._height}),n.hostElement.classList.add(mI),this._isDisposed=!1}top(n=""){return this._bottomOffset="",this._topOffset=n,this._alignItems="flex-start",this}left(n=""){return this._xOffset=n,this._xPosition="left",this}bottom(n=""){return this._topOffset="",this._bottomOffset=n,this._alignItems="flex-end",this}right(n=""){return this._xOffset=n,this._xPosition="right",this}start(n=""){return this._xOffset=n,this._xPosition="start",this}end(n=""){return this._xOffset=n,this._xPosition="end",this}width(n=""){return this._overlayRef?this._overlayRef.updateSize({width:n}):this._width=n,this}height(n=""){return this._overlayRef?this._overlayRef.updateSize({height:n}):this._height=n,this}centerHorizontally(n=""){return this.left(n),this._xPosition="center",this}centerVertically(n=""){return this.top(n),this._alignItems="center",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const n=this._overlayRef.overlayElement.style,e=this._overlayRef.hostElement.style,i=this._overlayRef.getConfig(),{width:r,height:s,maxWidth:a,maxHeight:o}=i,l=!("100%"!==r&&"100vw"!==r||a&&"100%"!==a&&"100vw"!==a),u=!("100%"!==s&&"100vh"!==s||o&&"100%"!==o&&"100vh"!==o),h=this._xPosition,p=this._xOffset,C="rtl"===this._overlayRef.getConfig().direction;let w="",k="",L="";l?L="flex-start":"center"===h?(L="center",C?k=p:w=p):C?"left"===h||"end"===h?(L="flex-end",w=p):("right"===h||"start"===h)&&(L="flex-start",k=p):"left"===h||"start"===h?(L="flex-start",w=p):("right"===h||"end"===h)&&(L="flex-end",k=p),n.position=this._cssPosition,n.marginLeft=l?"0":w,n.marginTop=u?"0":this._topOffset,n.marginBottom=this._bottomOffset,n.marginRight=l?"0":k,e.justifyContent=L,e.alignItems=u?"flex-start":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const n=this._overlayRef.overlayElement.style,e=this._overlayRef.hostElement,i=e.style;e.classList.remove(mI),i.justifyContent=i.alignItems=n.marginTop=n.marginBottom=n.marginLeft=n.marginRight=n.position="",this._overlayRef=null,this._isDisposed=!0}}let a4=(()=>{class t{constructor(e,i,r,s){this._viewportRuler=e,this._document=i,this._platform=r,this._overlayContainer=s}global(){return new s4}flexibleConnectedTo(e){return new r4(e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}}return t.\u0275fac=function(e){return new(e||t)(R(Np),R(Ye),R(hi),R(Bp))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),o4=0,Ur=(()=>{class t{constructor(e,i,r,s,a,o,l,u,h,p,C,w){this.scrollStrategies=e,this._overlayContainer=i,this._componentFactoryResolver=r,this._positionBuilder=s,this._keyboardDispatcher=a,this._injector=o,this._ngZone=l,this._document=u,this._directionality=h,this._location=p,this._outsideClickDispatcher=C,this._animationsModuleType=w}create(e){const i=this._createHostElement(),r=this._createPaneElement(i),s=this._createPortalOutlet(r),a=new Uv(e);return a.direction=a.direction||this._directionality.value,new bd(s,i,r,a,this._ngZone,this._keyboardDispatcher,this._document,this._location,this._outsideClickDispatcher,"NoopAnimations"===this._animationsModuleType)}position(){return this._positionBuilder}_createPaneElement(e){const i=this._document.createElement("div");return i.id="cdk-overlay-"+o4++,i.classList.add("cdk-overlay-pane"),e.appendChild(i),i}_createHostElement(){const e=this._document.createElement("div");return this._overlayContainer.getContainerElement().appendChild(e),e}_createPortalOutlet(e){return this._appRef||(this._appRef=this._injector.get(Po)),new q5(e,this._componentFactoryResolver,this._appRef,this._injector,this._document)}}return t.\u0275fac=function(e){return new(e||t)(R($5),R(Bp),R(Zs),R(a4),R(e4),R(Fn),R(He),R(Ye),R(Is),R(qu),R(t4),R(nr,8))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();const u4={provide:new Z("cdk-connected-overlay-scroll-strategy"),deps:[Ur],useFactory:function c4(t){return()=>t.scrollStrategies.reposition()}};let el=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[Ur,u4],imports:[vc,$o,Lv,Lv]}),t})();class ki extends pe{constructor(n){super(),this._value=n}get value(){return this.getValue()}_subscribe(n){const e=super._subscribe(n);return!e.closed&&n.next(this._value),e}getValue(){const{hasError:n,thrownError:e,_value:i}=this;if(n)throw e;return this._throwIfClosed(),i}next(n){super.next(this._value=n)}}function Cd(t,...n){return n.length?n.some(e=>t[e]):t.altKey||t.shiftKey||t.ctrlKey||t.metaKey}function Mn(t,n,e){const i=de(t)||n||e?{next:t,error:n,complete:e}:t;return i?ln((r,s)=>{var a;null===(a=i.subscribe)||void 0===a||a.call(i);let o=!0;r.subscribe(Zt(s,l=>{var u;null===(u=i.next)||void 0===u||u.call(i,l),s.next(l)},()=>{var l;o=!1,null===(l=i.complete)||void 0===l||l.call(i),s.complete()},l=>{var u;o=!1,null===(u=i.error)||void 0===u||u.call(i,l),s.error(l)},()=>{var l,u;o&&(null===(l=i.unsubscribe)||void 0===l||l.call(i)),null===(u=i.finalize)||void 0===u||u.call(i)}))}):$i}function Gv(t,n=Op){return ln((e,i)=>{let r=null,s=null,a=null;const o=()=>{if(r){r.unsubscribe(),r=null;const u=s;s=null,i.next(u)}};function l(){const u=a+t,h=n.now();if(h<u)return r=this.schedule(void 0,u-h),void i.add(r);o()}e.subscribe(Zt(i,u=>{s=u,a=n.now(),r||(r=n.schedule(l,t),i.add(r))},()=>{o(),i.complete()},void 0,()=>{s=r=null}))})}function yI(t){return Tn((n,e)=>t<=e)}function Up(t,n=$i){return t=t??S4,ln((e,i)=>{let r,s=!0;e.subscribe(Zt(i,a=>{const o=n(a);(s||!t(r,o))&&(s=!1,r=o,i.next(a))}))})}function S4(t,n){return t===n}let AI=(()=>{class t{create(e){return typeof MutationObserver>"u"?null:new MutationObserver(e)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),D4=(()=>{class t{constructor(e){this._mutationObserverFactory=e,this._observedElements=new Map}ngOnDestroy(){this._observedElements.forEach((e,i)=>this._cleanupObserver(i))}observe(e){const i=fa(e);return new Ct(r=>{const a=this._observeElement(i).subscribe(r);return()=>{a.unsubscribe(),this._unobserveElement(i)}})}_observeElement(e){if(this._observedElements.has(e))this._observedElements.get(e).count++;else{const i=new pe,r=this._mutationObserverFactory.create(s=>i.next(s));r&&r.observe(e,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(e,{observer:r,stream:i,count:1})}return this._observedElements.get(e).stream}_unobserveElement(e){this._observedElements.has(e)&&(this._observedElements.get(e).count--,this._observedElements.get(e).count||this._cleanupObserver(e))}_cleanupObserver(e){if(this._observedElements.has(e)){const{observer:i,stream:r}=this._observedElements.get(e);i&&i.disconnect(),r.complete(),this._observedElements.delete(e)}}}return t.\u0275fac=function(e){return new(e||t)(R(AI))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),vI=(()=>{class t{constructor(e,i,r){this._contentObserver=e,this._elementRef=i,this._ngZone=r,this.event=new Ae,this._disabled=!1,this._currentSubscription=null}get disabled(){return this._disabled}set disabled(e){this._disabled=zt(e),this._disabled?this._unsubscribe():this._subscribe()}get debounce(){return this._debounce}set debounce(e){this._debounce=ss(e),this._subscribe()}ngAfterContentInit(){!this._currentSubscription&&!this.disabled&&this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const e=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular(()=>{this._currentSubscription=(this.debounce?e.pipe(Gv(this.debounce)):e).subscribe(this.event)})}_unsubscribe(){this._currentSubscription?.unsubscribe()}}return t.\u0275fac=function(e){return new(e||t)(_(D4),_(be),_(He))},t.\u0275dir=G({type:t,selectors:[["","cdkObserveContent",""]],inputs:{disabled:["cdkObserveContentDisabled","disabled"],debounce:"debounce"},outputs:{event:"cdkObserveContent"},exportAs:["cdkObserveContent"]}),t})(),jp=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[AI]}),t})();function Wv(...t){const n=Ia(t),e=go(t),{args:i,keys:r}=Rx(t);if(0===i.length)return vn([],n);const s=new Ct(function w4(t,n,e=$i){return i=>{bI(n,()=>{const{length:r}=t,s=new Array(r);let a=r,o=r;for(let l=0;l<r;l++)bI(n,()=>{const u=vn(t[l],n);let h=!1;u.subscribe(Zt(i,p=>{s[l]=p,h||(h=!0,o--),o||i.next(e(s.slice()))},()=>{--a||i.complete()}))},i)},i)}}(i,n,r?a=>Ox(r,a):$i));return e?s.pipe(WA(e)):s}function bI(t,n,e){t?Dr(e,t,n):n()}function Ms(...t){const n=Ia(t);return ln((e,i)=>{(n?Go(t,e,n):Go(t,e)).subscribe(i)})}let x4=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({}),t})();const CI=new Set;let Cc,k4=(()=>{class t{constructor(e){this._platform=e,this._matchMedia=this._platform.isBrowser&&window.matchMedia?window.matchMedia.bind(window):M4}matchMedia(e){return(this._platform.WEBKIT||this._platform.BLINK)&&function I4(t){if(!CI.has(t))try{Cc||(Cc=document.createElement("style"),Cc.setAttribute("type","text/css"),document.head.appendChild(Cc)),Cc.sheet&&(Cc.sheet.insertRule(`@media ${t} {body{ }}`,0),CI.add(t))}catch(n){console.error(n)}}(e),this._matchMedia(e)}}return t.\u0275fac=function(e){return new(e||t)(R(hi))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function M4(t){return{matches:"all"===t||""===t,media:t,addListener:()=>{},removeListener:()=>{}}}let zp=(()=>{class t{constructor(e,i){this._mediaMatcher=e,this._zone=i,this._queries=new Map,this._destroySubject=new pe}ngOnDestroy(){this._destroySubject.next(),this._destroySubject.complete()}isMatched(e){return TI(kp(e)).some(r=>this._registerQuery(r).mql.matches)}observe(e){let s=Wv(TI(kp(e)).map(a=>this._registerQuery(a).observable));return s=Go(s.pipe(gn(1)),s.pipe(yI(1),Gv(0))),s.pipe(Le(a=>{const o={matches:!1,breakpoints:{}};return a.forEach(({matches:l,query:u})=>{o.matches=o.matches||l,o.breakpoints[u]=l}),o}))}_registerQuery(e){if(this._queries.has(e))return this._queries.get(e);const i=this._mediaMatcher.matchMedia(e),s={observable:new Ct(a=>{const o=l=>this._zone.run(()=>a.next(l));return i.addListener(o),()=>{i.removeListener(o)}}).pipe(Ms(i),Le(({matches:a})=>({query:e,matches:a})),dt(this._destroySubject)),mql:i};return this._queries.set(e,s),s}}return t.\u0275fac=function(e){return new(e||t)(R(k4),R(He))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function TI(t){return t.map(n=>n.split(",")).reduce((n,e)=>n.concat(e)).map(n=>n.trim())}const Hp_XSmall="(max-width: 599.98px)";function Gp(t,n){return(t.getAttribute(n)||"").match(/\S+/g)||[]}const SI="cdk-describedby-message",Wp="cdk-describedby-host";let Kv=0,L4=(()=>{class t{constructor(e,i){this._platform=i,this._messageRegistry=new Map,this._messagesContainer=null,this._id=""+Kv++,this._document=e,this._id=nn(dc)+"-"+Kv++}describe(e,i,r){if(!this._canBeDescribed(e,i))return;const s=Yv(i,r);"string"!=typeof i?(DI(i,this._id),this._messageRegistry.set(s,{messageElement:i,referenceCount:0})):this._messageRegistry.has(s)||this._createMessageElement(i,r),this._isElementDescribedByMessage(e,s)||this._addMessageReference(e,s)}removeDescription(e,i,r){if(!i||!this._isElementNode(e))return;const s=Yv(i,r);if(this._isElementDescribedByMessage(e,s)&&this._removeMessageReference(e,s),"string"==typeof i){const a=this._messageRegistry.get(s);a&&0===a.referenceCount&&this._deleteMessageElement(s)}0===this._messagesContainer?.childNodes.length&&(this._messagesContainer.remove(),this._messagesContainer=null)}ngOnDestroy(){const e=this._document.querySelectorAll(`[${Wp}="${this._id}"]`);for(let i=0;i<e.length;i++)this._removeCdkDescribedByReferenceIds(e[i]),e[i].removeAttribute(Wp);this._messagesContainer?.remove(),this._messagesContainer=null,this._messageRegistry.clear()}_createMessageElement(e,i){const r=this._document.createElement("div");DI(r,this._id),r.textContent=e,i&&r.setAttribute("role",i),this._createMessagesContainer(),this._messagesContainer.appendChild(r),this._messageRegistry.set(Yv(e,i),{messageElement:r,referenceCount:0})}_deleteMessageElement(e){this._messageRegistry.get(e)?.messageElement?.remove(),this._messageRegistry.delete(e)}_createMessagesContainer(){if(this._messagesContainer)return;const e="cdk-describedby-message-container",i=this._document.querySelectorAll(`.${e}[platform="server"]`);for(let s=0;s<i.length;s++)i[s].remove();const r=this._document.createElement("div");r.style.visibility="hidden",r.classList.add(e),r.classList.add("cdk-visually-hidden"),this._platform&&!this._platform.isBrowser&&r.setAttribute("platform","server"),this._document.body.appendChild(r),this._messagesContainer=r}_removeCdkDescribedByReferenceIds(e){const i=Gp(e,"aria-describedby").filter(r=>0!=r.indexOf(SI));e.setAttribute("aria-describedby",i.join(" "))}_addMessageReference(e,i){const r=this._messageRegistry.get(i);(function R4(t,n,e){const i=Gp(t,n);i.some(r=>r.trim()==e.trim())||(i.push(e.trim()),t.setAttribute(n,i.join(" ")))})(e,"aria-describedby",r.messageElement.id),e.setAttribute(Wp,this._id),r.referenceCount++}_removeMessageReference(e,i){const r=this._messageRegistry.get(i);r.referenceCount--,function O4(t,n,e){const r=Gp(t,n).filter(s=>s!=e.trim());r.length?t.setAttribute(n,r.join(" ")):t.removeAttribute(n)}(e,"aria-describedby",r.messageElement.id),e.removeAttribute(Wp)}_isElementDescribedByMessage(e,i){const r=Gp(e,"aria-describedby"),s=this._messageRegistry.get(i),a=s&&s.messageElement.id;return!!a&&-1!=r.indexOf(a)}_canBeDescribed(e,i){if(!this._isElementNode(e))return!1;if(i&&"object"==typeof i)return!0;const r=null==i?"":`${i}`.trim(),s=e.getAttribute("aria-label");return!(!r||s&&s.trim()===r)}_isElementNode(e){return e.nodeType===this._document.ELEMENT_NODE}}return t.\u0275fac=function(e){return new(e||t)(R(Ye),R(hi))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function Yv(t,n){return"string"==typeof t?`${n||""}/${t}`:t}function DI(t,n){t.id||(t.id=`${SI}-${n}-${Kv++}`)}class N4 extends class P4{constructor(n){this._items=n,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new pe,this._typeaheadSubscription=ae.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._homeAndEnd=!1,this._skipPredicateFn=e=>e.disabled,this._pressedLetters=[],this.tabOut=new pe,this.change=new pe,n instanceof lc&&n.changes.subscribe(e=>{if(this._activeItem){const r=e.toArray().indexOf(this._activeItem);r>-1&&r!==this._activeItemIndex&&(this._activeItemIndex=r)}})}skipPredicate(n){return this._skipPredicateFn=n,this}withWrap(n=!0){return this._wrap=n,this}withVerticalOrientation(n=!0){return this._vertical=n,this}withHorizontalOrientation(n){return this._horizontal=n,this}withAllowedModifierKeys(n){return this._allowedModifierKeys=n,this}withTypeAhead(n=200){return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe(Mn(e=>this._pressedLetters.push(e)),Gv(n),Tn(()=>this._pressedLetters.length>0),Le(()=>this._pressedLetters.join(""))).subscribe(e=>{const i=this._getItemsArray();for(let r=1;r<i.length+1;r++){const s=(this._activeItemIndex+r)%i.length,a=i[s];if(!this._skipPredicateFn(a)&&0===a.getLabel().toUpperCase().trim().indexOf(e)){this.setActiveItem(s);break}}this._pressedLetters=[]}),this}withHomeAndEnd(n=!0){return this._homeAndEnd=n,this}setActiveItem(n){const e=this._activeItem;this.updateActiveItem(n),this._activeItem!==e&&this.change.next(this._activeItemIndex)}onKeydown(n){const e=n.keyCode,r=["altKey","ctrlKey","metaKey","shiftKey"].every(s=>!n[s]||this._allowedModifierKeys.indexOf(s)>-1);switch(e){case 9:return void this.tabOut.next();case 40:if(this._vertical&&r){this.setNextItemActive();break}return;case 38:if(this._vertical&&r){this.setPreviousItemActive();break}return;case 39:if(this._horizontal&&r){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case 37:if(this._horizontal&&r){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;case 36:if(this._homeAndEnd&&r){this.setFirstItemActive();break}return;case 35:if(this._homeAndEnd&&r){this.setLastItemActive();break}return;default:return void((r||Cd(n,"shiftKey"))&&(n.key&&1===n.key.length?this._letterKeyStream.next(n.key.toLocaleUpperCase()):(e>=65&&e<=90||e>=48&&e<=57)&&this._letterKeyStream.next(String.fromCharCode(e))))}this._pressedLetters=[],n.preventDefault()}get activeItemIndex(){return this._activeItemIndex}get activeItem(){return this._activeItem}isTyping(){return this._pressedLetters.length>0}setFirstItemActive(){this._setActiveItemByIndex(0,1)}setLastItemActive(){this._setActiveItemByIndex(this._items.length-1,-1)}setNextItemActive(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}setPreviousItemActive(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}updateActiveItem(n){const e=this._getItemsArray(),i="number"==typeof n?n:e.indexOf(n);this._activeItem=e[i]??null,this._activeItemIndex=i}_setActiveItemByDelta(n){this._wrap?this._setActiveInWrapMode(n):this._setActiveInDefaultMode(n)}_setActiveInWrapMode(n){const e=this._getItemsArray();for(let i=1;i<=e.length;i++){const r=(this._activeItemIndex+n*i+e.length)%e.length;if(!this._skipPredicateFn(e[r]))return void this.setActiveItem(r)}}_setActiveInDefaultMode(n){this._setActiveItemByIndex(this._activeItemIndex+n,n)}_setActiveItemByIndex(n,e){const i=this._getItemsArray();if(i[n]){for(;this._skipPredicateFn(i[n]);)if(!i[n+=e])return;this.setActiveItem(n)}}_getItemsArray(){return this._items instanceof lc?this._items.toArray():this._items}}{constructor(){super(...arguments),this._origin="program"}setFocusOrigin(n){return this._origin=n,this}setActiveItem(n){super.setActiveItem(n),this.activeItem&&this.activeItem.focus(this._origin)}}let Kp=(()=>{class t{constructor(e){this._platform=e}isDisabled(e){return e.hasAttribute("disabled")}isVisible(e){return function B4(t){return!!(t.offsetWidth||t.offsetHeight||"function"==typeof t.getClientRects&&t.getClientRects().length)}(e)&&"visible"===getComputedStyle(e).visibility}isTabbable(e){if(!this._platform.isBrowser)return!1;const i=function F4(t){try{return t.frameElement}catch{return null}}(function K4(t){return t.ownerDocument&&t.ownerDocument.defaultView||window}(e));if(i&&(-1===xI(i)||!this.isVisible(i)))return!1;let r=e.nodeName.toLowerCase(),s=xI(e);return e.hasAttribute("contenteditable")?-1!==s:!("iframe"===r||"object"===r||this._platform.WEBKIT&&this._platform.IOS&&!function G4(t){let n=t.nodeName.toLowerCase(),e="input"===n&&t.type;return"text"===e||"password"===e||"select"===n||"textarea"===n}(e))&&("audio"===r?!!e.hasAttribute("controls")&&-1!==s:"video"===r?-1!==s&&(null!==s||this._platform.FIREFOX||e.hasAttribute("controls")):e.tabIndex>=0)}isFocusable(e,i){return function W4(t){return!function U4(t){return function z4(t){return"input"==t.nodeName.toLowerCase()}(t)&&"hidden"==t.type}(t)&&(function V4(t){let n=t.nodeName.toLowerCase();return"input"===n||"select"===n||"button"===n||"textarea"===n}(t)||function j4(t){return function H4(t){return"a"==t.nodeName.toLowerCase()}(t)&&t.hasAttribute("href")}(t)||t.hasAttribute("contenteditable")||wI(t))}(e)&&!this.isDisabled(e)&&(i?.ignoreVisibility||this.isVisible(e))}}return t.\u0275fac=function(e){return new(e||t)(R(hi))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function wI(t){if(!t.hasAttribute("tabindex")||void 0===t.tabIndex)return!1;let n=t.getAttribute("tabindex");return!(!n||isNaN(parseInt(n,10)))}function xI(t){if(!wI(t))return null;const n=parseInt(t.getAttribute("tabindex")||"",10);return isNaN(n)?-1:n}class Y4{constructor(n,e,i,r,s=!1){this._element=n,this._checker=e,this._ngZone=i,this._document=r,this._hasAttached=!1,this.startAnchorListener=()=>this.focusLastTabbableElement(),this.endAnchorListener=()=>this.focusFirstTabbableElement(),this._enabled=!0,s||this.attachAnchors()}get enabled(){return this._enabled}set enabled(n){this._enabled=n,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(n,this._startAnchor),this._toggleAnchorTabIndex(n,this._endAnchor))}destroy(){const n=this._startAnchor,e=this._endAnchor;n&&(n.removeEventListener("focus",this.startAnchorListener),n.remove()),e&&(e.removeEventListener("focus",this.endAnchorListener),e.remove()),this._startAnchor=this._endAnchor=null,this._hasAttached=!1}attachAnchors(){return!!this._hasAttached||(this._ngZone.runOutsideAngular(()=>{this._startAnchor||(this._startAnchor=this._createAnchor(),this._startAnchor.addEventListener("focus",this.startAnchorListener)),this._endAnchor||(this._endAnchor=this._createAnchor(),this._endAnchor.addEventListener("focus",this.endAnchorListener))}),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}focusInitialElementWhenReady(n){return new Promise(e=>{this._executeOnStable(()=>e(this.focusInitialElement(n)))})}focusFirstTabbableElementWhenReady(n){return new Promise(e=>{this._executeOnStable(()=>e(this.focusFirstTabbableElement(n)))})}focusLastTabbableElementWhenReady(n){return new Promise(e=>{this._executeOnStable(()=>e(this.focusLastTabbableElement(n)))})}_getRegionBoundary(n){const e=this._element.querySelectorAll(`[cdk-focus-region-${n}], [cdkFocusRegion${n}], [cdk-focus-${n}]`);return"start"==n?e.length?e[0]:this._getFirstTabbableElement(this._element):e.length?e[e.length-1]:this._getLastTabbableElement(this._element)}focusInitialElement(n){const e=this._element.querySelector("[cdk-focus-initial], [cdkFocusInitial]");if(e){if(!this._checker.isFocusable(e)){const i=this._getFirstTabbableElement(e);return i?.focus(n),!!i}return e.focus(n),!0}return this.focusFirstTabbableElement(n)}focusFirstTabbableElement(n){const e=this._getRegionBoundary("start");return e&&e.focus(n),!!e}focusLastTabbableElement(n){const e=this._getRegionBoundary("end");return e&&e.focus(n),!!e}hasAttached(){return this._hasAttached}_getFirstTabbableElement(n){if(this._checker.isFocusable(n)&&this._checker.isTabbable(n))return n;const e=n.children;for(let i=0;i<e.length;i++){const r=e[i].nodeType===this._document.ELEMENT_NODE?this._getFirstTabbableElement(e[i]):null;if(r)return r}return null}_getLastTabbableElement(n){if(this._checker.isFocusable(n)&&this._checker.isTabbable(n))return n;const e=n.children;for(let i=e.length-1;i>=0;i--){const r=e[i].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(e[i]):null;if(r)return r}return null}_createAnchor(){const n=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,n),n.classList.add("cdk-visually-hidden"),n.classList.add("cdk-focus-trap-anchor"),n.setAttribute("aria-hidden","true"),n}_toggleAnchorTabIndex(n,e){n?e.setAttribute("tabindex","0"):e.removeAttribute("tabindex")}toggleAnchors(n){this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(n,this._startAnchor),this._toggleAnchorTabIndex(n,this._endAnchor))}_executeOnStable(n){this._ngZone.isStable?n():this._ngZone.onStable.pipe(gn(1)).subscribe(n)}}let qv=(()=>{class t{constructor(e,i,r){this._checker=e,this._ngZone=i,this._document=r}create(e,i=!1){return new Y4(e,this._checker,this._ngZone,this._document,i)}}return t.\u0275fac=function(e){return new(e||t)(R(Kp),R(He),R(Ye))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function Xv(t){return 0===t.buttons||0===t.offsetX&&0===t.offsetY}function Qv(t){const n=t.touches&&t.touches[0]||t.changedTouches&&t.changedTouches[0];return!(!n||-1!==n.identifier||null!=n.radiusX&&1!==n.radiusX||null!=n.radiusY&&1!==n.radiusY)}const q4=new Z("cdk-input-modality-detector-options"),X4={ignoreKeys:[18,17,224,91,16]},Tc=Xo({passive:!0,capture:!0});let Q4=(()=>{class t{constructor(e,i,r,s){this._platform=e,this._mostRecentTarget=null,this._modality=new ki(null),this._lastTouchMs=0,this._onKeydown=a=>{this._options?.ignoreKeys?.some(o=>o===a.keyCode)||(this._modality.next("keyboard"),this._mostRecentTarget=Zo(a))},this._onMousedown=a=>{Date.now()-this._lastTouchMs<650||(this._modality.next(Xv(a)?"keyboard":"mouse"),this._mostRecentTarget=Zo(a))},this._onTouchstart=a=>{Qv(a)?this._modality.next("keyboard"):(this._lastTouchMs=Date.now(),this._modality.next("touch"),this._mostRecentTarget=Zo(a))},this._options={...X4,...s},this.modalityDetected=this._modality.pipe(yI(1)),this.modalityChanged=this.modalityDetected.pipe(Up()),e.isBrowser&&i.runOutsideAngular(()=>{r.addEventListener("keydown",this._onKeydown,Tc),r.addEventListener("mousedown",this._onMousedown,Tc),r.addEventListener("touchstart",this._onTouchstart,Tc)})}get mostRecentModality(){return this._modality.value}ngOnDestroy(){this._modality.complete(),this._platform.isBrowser&&(document.removeEventListener("keydown",this._onKeydown,Tc),document.removeEventListener("mousedown",this._onMousedown,Tc),document.removeEventListener("touchstart",this._onTouchstart,Tc))}}return t.\u0275fac=function(e){return new(e||t)(R(hi),R(He),R(Ye),R(q4,8))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const $4=new Z("cdk-focus-monitor-default-options"),Yp=Xo({passive:!0,capture:!0});let Rs=(()=>{class t{constructor(e,i,r,s,a){this._ngZone=e,this._platform=i,this._inputModalityDetector=r,this._origin=null,this._windowFocused=!1,this._originFromTouchInteraction=!1,this._elementInfo=new Map,this._monitoredElementCount=0,this._rootNodeFocusListenerCount=new Map,this._windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=window.setTimeout(()=>this._windowFocused=!1)},this._stopInputModalityDetector=new pe,this._rootNodeFocusAndBlurListener=o=>{for(let u=Zo(o);u;u=u.parentElement)"focus"===o.type?this._onFocus(o,u):this._onBlur(o,u)},this._document=s,this._detectionMode=a?.detectionMode||0}monitor(e,i=!1){const r=fa(e);if(!this._platform.isBrowser||1!==r.nodeType)return ye(null);const s=oI(r)||this._getDocument(),a=this._elementInfo.get(r);if(a)return i&&(a.checkChildren=!0),a.subject;const o={checkChildren:i,subject:new pe,rootNode:s};return this._elementInfo.set(r,o),this._registerGlobalListeners(o),o.subject}stopMonitoring(e){const i=fa(e),r=this._elementInfo.get(i);r&&(r.subject.complete(),this._setClasses(i),this._elementInfo.delete(i),this._removeGlobalListeners(r))}focusVia(e,i,r){const s=fa(e);s===this._getDocument().activeElement?this._getClosestElementsInfo(s).forEach(([o,l])=>this._originChanged(o,i,l)):(this._setOrigin(i),"function"==typeof s.focus&&s.focus(r))}ngOnDestroy(){this._elementInfo.forEach((e,i)=>this.stopMonitoring(i))}_getDocument(){return this._document||document}_getWindow(){return this._getDocument().defaultView||window}_getFocusOrigin(e){return this._origin?this._originFromTouchInteraction?this._shouldBeAttributedToTouch(e)?"touch":"program":this._origin:this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:e&&this._isLastInteractionFromInputLabel(e)?"mouse":"program"}_shouldBeAttributedToTouch(e){return 1===this._detectionMode||!!e?.contains(this._inputModalityDetector._mostRecentTarget)}_setClasses(e,i){e.classList.toggle("cdk-focused",!!i),e.classList.toggle("cdk-touch-focused","touch"===i),e.classList.toggle("cdk-keyboard-focused","keyboard"===i),e.classList.toggle("cdk-mouse-focused","mouse"===i),e.classList.toggle("cdk-program-focused","program"===i)}_setOrigin(e,i=!1){this._ngZone.runOutsideAngular(()=>{this._origin=e,this._originFromTouchInteraction="touch"===e&&i,0===this._detectionMode&&(clearTimeout(this._originTimeoutId),this._originTimeoutId=setTimeout(()=>this._origin=null,this._originFromTouchInteraction?650:1))})}_onFocus(e,i){const r=this._elementInfo.get(i),s=Zo(e);!r||!r.checkChildren&&i!==s||this._originChanged(i,this._getFocusOrigin(s),r)}_onBlur(e,i){const r=this._elementInfo.get(i);!r||r.checkChildren&&e.relatedTarget instanceof Node&&i.contains(e.relatedTarget)||(this._setClasses(i),this._emitOrigin(r,null))}_emitOrigin(e,i){e.subject.observers.length&&this._ngZone.run(()=>e.subject.next(i))}_registerGlobalListeners(e){if(!this._platform.isBrowser)return;const i=e.rootNode,r=this._rootNodeFocusListenerCount.get(i)||0;r||this._ngZone.runOutsideAngular(()=>{i.addEventListener("focus",this._rootNodeFocusAndBlurListener,Yp),i.addEventListener("blur",this._rootNodeFocusAndBlurListener,Yp)}),this._rootNodeFocusListenerCount.set(i,r+1),1==++this._monitoredElementCount&&(this._ngZone.runOutsideAngular(()=>{this._getWindow().addEventListener("focus",this._windowFocusListener)}),this._inputModalityDetector.modalityDetected.pipe(dt(this._stopInputModalityDetector)).subscribe(s=>{this._setOrigin(s,!0)}))}_removeGlobalListeners(e){const i=e.rootNode;if(this._rootNodeFocusListenerCount.has(i)){const r=this._rootNodeFocusListenerCount.get(i);r>1?this._rootNodeFocusListenerCount.set(i,r-1):(i.removeEventListener("focus",this._rootNodeFocusAndBlurListener,Yp),i.removeEventListener("blur",this._rootNodeFocusAndBlurListener,Yp),this._rootNodeFocusListenerCount.delete(i))}--this._monitoredElementCount||(this._getWindow().removeEventListener("focus",this._windowFocusListener),this._stopInputModalityDetector.next(),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._originTimeoutId))}_originChanged(e,i,r){this._setClasses(e,i),this._emitOrigin(r,i),this._lastFocusOrigin=i}_getClosestElementsInfo(e){const i=[];return this._elementInfo.forEach((r,s)=>{(s===e||r.checkChildren&&s.contains(e))&&i.push([s,r])}),i}_isLastInteractionFromInputLabel(e){const{_mostRecentTarget:i,mostRecentModality:r}=this._inputModalityDetector;if("mouse"!==r||!i||i===e||"INPUT"!==e.nodeName&&"TEXTAREA"!==e.nodeName||e.disabled)return!1;const s=e.labels;if(s)for(let a=0;a<s.length;a++)if(s[a].contains(i))return!0;return!1}}return t.\u0275fac=function(e){return new(e||t)(R(He),R(hi),R(Q4),R(Ye,8),R($4,8))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const II="cdk-high-contrast-black-on-white",MI="cdk-high-contrast-white-on-black",Zv="cdk-high-contrast-active";let RI=(()=>{class t{constructor(e,i){this._platform=e,this._document=i,this._breakpointSubscription=nn(zp).observe("(forced-colors: active)").subscribe(()=>{this._hasCheckedHighContrastMode&&(this._hasCheckedHighContrastMode=!1,this._applyBodyHighContrastModeCssClasses())})}getHighContrastMode(){if(!this._platform.isBrowser)return 0;const e=this._document.createElement("div");e.style.backgroundColor="rgb(1,2,3)",e.style.position="absolute",this._document.body.appendChild(e);const i=this._document.defaultView||window,r=i&&i.getComputedStyle?i.getComputedStyle(e):null,s=(r&&r.backgroundColor||"").replace(/ /g,"");switch(e.remove(),s){case"rgb(0,0,0)":case"rgb(45,50,54)":case"rgb(32,32,32)":return 2;case"rgb(255,255,255)":case"rgb(255,250,239)":return 1}return 0}ngOnDestroy(){this._breakpointSubscription.unsubscribe()}_applyBodyHighContrastModeCssClasses(){if(!this._hasCheckedHighContrastMode&&this._platform.isBrowser&&this._document.body){const e=this._document.body.classList;e.remove(Zv,II,MI),this._hasCheckedHighContrastMode=!0;const i=this.getHighContrastMode();1===i?e.add(Zv,II):2===i&&e.add(Zv,MI)}}}return t.\u0275fac=function(e){return new(e||t)(R(hi),R(Ye))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),qp=(()=>{class t{constructor(e){e._applyBodyHighContrastModeCssClasses()}}return t.\u0275fac=function(e){return new(e||t)(R(RI))},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[jp]}),t})();const n8=new Z("mat-sanity-checks",{providedIn:"root",factory:function t8(){return!0}});let At=(()=>{class t{constructor(e,i,r){this._sanityChecks=i,this._document=r,this._hasDoneGlobalChecks=!1,e._applyBodyHighContrastModeCssClasses(),this._hasDoneGlobalChecks||(this._hasDoneGlobalChecks=!0)}_checkIsEnabled(e){return!Ov()&&("boolean"==typeof this._sanityChecks?this._sanityChecks:!!this._sanityChecks[e])}}return t.\u0275fac=function(e){return new(e||t)(R(RI),R(n8,8),R(Ye))},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[vc,vc]}),t})();function $v(t){return class extends t{constructor(...n){super(...n),this._disabled=!1}get disabled(){return this._disabled}set disabled(n){this._disabled=zt(n)}}}function Ec(t,n){return class extends t{constructor(...e){super(...e),this.defaultColor=n,this.color=n}get color(){return this._color}set color(e){const i=e||this.defaultColor;i!==this._color&&(this._color&&this._elementRef.nativeElement.classList.remove(`mat-${this._color}`),i&&this._elementRef.nativeElement.classList.add(`mat-${i}`),this._color=i)}}}function Xp(t){return class extends t{constructor(...n){super(...n),this._disableRipple=!1}get disableRipple(){return this._disableRipple}set disableRipple(n){this._disableRipple=zt(n)}}}function PI(t,n=0){return class extends t{constructor(...e){super(...e),this._tabIndex=n,this.defaultTabIndex=n}get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(e){this._tabIndex=null!=e?ss(e):this.defaultTabIndex}}}function r8(t){return class extends t{constructor(...n){super(...n),this.errorState=!1}updateErrorState(){const n=this.errorState,s=(this.errorStateMatcher||this._defaultErrorStateMatcher).isErrorState(this.ngControl?this.ngControl.control:null,this._parentFormGroup||this._parentForm);s!==n&&(this.errorState=s,this.stateChanges.next())}}}let FI=(()=>{class t{isErrorState(e,i){return!!(e&&e.invalid&&(e.touched||i&&i.submitted))}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();class a8{constructor(n,e,i,r=!1){this._renderer=n,this.element=e,this.config=i,this._animationForciblyDisabledThroughCss=r,this.state=3}fadeOut(){this._renderer.fadeOutRipple(this)}}const BI={enterDuration:225,exitDuration:150},Jv=Xo({passive:!0}),VI=["mousedown","touchstart"],UI=["mouseup","mouseleave","touchend","touchcancel"];class l8{constructor(n,e,i,r){this._target=n,this._ngZone=e,this._isPointerDown=!1,this._activeRipples=new Map,this._pointerUpEventsRegistered=!1,r.isBrowser&&(this._containerElement=fa(i))}fadeInRipple(n,e,i={}){const r=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),s={...BI,...i.animation};i.centered&&(n=r.left+r.width/2,e=r.top+r.height/2);const a=i.radius||function c8(t,n,e){const i=Math.max(Math.abs(t-e.left),Math.abs(t-e.right)),r=Math.max(Math.abs(n-e.top),Math.abs(n-e.bottom));return Math.sqrt(i*i+r*r)}(n,e,r),o=n-r.left,l=e-r.top,u=s.enterDuration,h=document.createElement("div");h.classList.add("mat-ripple-element"),h.style.left=o-a+"px",h.style.top=l-a+"px",h.style.height=2*a+"px",h.style.width=2*a+"px",null!=i.color&&(h.style.backgroundColor=i.color),h.style.transitionDuration=`${u}ms`,this._containerElement.appendChild(h);const p=window.getComputedStyle(h),w=p.transitionDuration,k="none"===p.transitionProperty||"0s"===w||"0s, 0s"===w,L=new a8(this,h,i,k);h.style.transform="scale3d(1, 1, 1)",L.state=0,i.persistent||(this._mostRecentTransientRipple=L);let U=null;return!k&&(u||s.exitDuration)&&this._ngZone.runOutsideAngular(()=>{const z=()=>this._finishRippleTransition(L),ie=()=>this._destroyRipple(L);h.addEventListener("transitionend",z),h.addEventListener("transitioncancel",ie),U={onTransitionEnd:z,onTransitionCancel:ie}}),this._activeRipples.set(L,U),(k||!u)&&this._finishRippleTransition(L),L}fadeOutRipple(n){if(2===n.state||3===n.state)return;const e=n.element,i={...BI,...n.config.animation};e.style.transitionDuration=`${i.exitDuration}ms`,e.style.opacity="0",n.state=2,(n._animationForciblyDisabledThroughCss||!i.exitDuration)&&this._finishRippleTransition(n)}fadeOutAll(){this._getActiveRipples().forEach(n=>n.fadeOut())}fadeOutAllNonPersistent(){this._getActiveRipples().forEach(n=>{n.config.persistent||n.fadeOut()})}setupTriggerEvents(n){const e=fa(n);!e||e===this._triggerElement||(this._removeTriggerEvents(),this._triggerElement=e,this._registerEvents(VI))}handleEvent(n){"mousedown"===n.type?this._onMousedown(n):"touchstart"===n.type?this._onTouchStart(n):this._onPointerUp(),this._pointerUpEventsRegistered||(this._registerEvents(UI),this._pointerUpEventsRegistered=!0)}_finishRippleTransition(n){0===n.state?this._startFadeOutTransition(n):2===n.state&&this._destroyRipple(n)}_startFadeOutTransition(n){const e=n===this._mostRecentTransientRipple,{persistent:i}=n.config;n.state=1,!i&&(!e||!this._isPointerDown)&&n.fadeOut()}_destroyRipple(n){const e=this._activeRipples.get(n)??null;this._activeRipples.delete(n),this._activeRipples.size||(this._containerRect=null),n===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),n.state=3,null!==e&&(n.element.removeEventListener("transitionend",e.onTransitionEnd),n.element.removeEventListener("transitioncancel",e.onTransitionCancel)),n.element.remove()}_onMousedown(n){const e=Xv(n),i=this._lastTouchStartEvent&&Date.now()<this._lastTouchStartEvent+800;!this._target.rippleDisabled&&!e&&!i&&(this._isPointerDown=!0,this.fadeInRipple(n.clientX,n.clientY,this._target.rippleConfig))}_onTouchStart(n){if(!this._target.rippleDisabled&&!Qv(n)){this._lastTouchStartEvent=Date.now(),this._isPointerDown=!0;const e=n.changedTouches;for(let i=0;i<e.length;i++)this.fadeInRipple(e[i].clientX,e[i].clientY,this._target.rippleConfig)}}_onPointerUp(){!this._isPointerDown||(this._isPointerDown=!1,this._getActiveRipples().forEach(n=>{!n.config.persistent&&(1===n.state||n.config.terminateOnPointerUp&&0===n.state)&&n.fadeOut()}))}_registerEvents(n){this._ngZone.runOutsideAngular(()=>{n.forEach(e=>{this._triggerElement.addEventListener(e,this,Jv)})})}_getActiveRipples(){return Array.from(this._activeRipples.keys())}_removeTriggerEvents(){this._triggerElement&&(VI.forEach(n=>{this._triggerElement.removeEventListener(n,this,Jv)}),this._pointerUpEventsRegistered&&UI.forEach(n=>{this._triggerElement.removeEventListener(n,this,Jv)}))}}const u8=new Z("mat-ripple-global-options");let tl=(()=>{class t{constructor(e,i,r,s,a){this._elementRef=e,this._animationMode=a,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=s||{},this._rippleRenderer=new l8(this,i,e,r)}get disabled(){return this._disabled}set disabled(e){e&&this.fadeOutAllNonPersistent(),this._disabled=e,this._setupTriggerEventsIfEnabled()}get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(e){this._trigger=e,this._setupTriggerEventsIfEnabled()}ngOnInit(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}ngOnDestroy(){this._rippleRenderer._removeTriggerEvents()}fadeOutAll(){this._rippleRenderer.fadeOutAll()}fadeOutAllNonPersistent(){this._rippleRenderer.fadeOutAllNonPersistent()}get rippleConfig(){return{centered:this.centered,radius:this.radius,color:this.color,animation:{...this._globalOptions.animation,..."NoopAnimations"===this._animationMode?{enterDuration:0,exitDuration:0}:{},...this.animation},terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}get rippleDisabled(){return this.disabled||!!this._globalOptions.disabled}_setupTriggerEventsIfEnabled(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}launch(e,i=0,r){return"number"==typeof e?this._rippleRenderer.fadeInRipple(e,i,{...this.rippleConfig,...r}):this._rippleRenderer.fadeInRipple(0,0,{...this.rippleConfig,...e})}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(He),_(hi),_(u8,8),_(nr,8))},t.\u0275dir=G({type:t,selectors:[["","mat-ripple",""],["","matRipple",""]],hostAttrs:[1,"mat-ripple"],hostVars:2,hostBindings:function(e,i){2&e&&Mt("mat-ripple-unbounded",i.unbounded)},inputs:{color:["matRippleColor","color"],unbounded:["matRippleUnbounded","unbounded"],centered:["matRippleCentered","centered"],radius:["matRippleRadius","radius"],animation:["matRippleAnimation","animation"],disabled:["matRippleDisabled","disabled"],trigger:["matRippleTrigger","trigger"]},exportAs:["matRipple"]}),t})(),Sc=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[At,At]}),t})(),d8=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[At]}),t})(),jI=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[Sc,sn,At,d8]}),t})();const h8=["tooltip"],zI="tooltip-panel",HI=Xo({passive:!0}),GI=new Z("mat-tooltip-scroll-strategy"),m8={provide:GI,deps:[Ur],useFactory:function g8(t){return()=>t.scrollStrategies.reposition({scrollThrottle:20})}},_8=new Z("mat-tooltip-default-options",{providedIn:"root",factory:function y8(){return{showDelay:0,hideDelay:0,touchendHideDelay:1500}}});let A8=(()=>{class t{constructor(e,i,r,s,a,o,l,u,h,p,C,w){this._overlay=e,this._elementRef=i,this._scrollDispatcher=r,this._viewContainerRef=s,this._ngZone=a,this._platform=o,this._ariaDescriber=l,this._focusMonitor=u,this._dir=p,this._defaultOptions=C,this._position="below",this._disabled=!1,this._viewInitialized=!1,this._pointerExitEventsInitialized=!1,this._viewportMargin=8,this._cssClassPrefix="mat",this._showDelay=this._defaultOptions.showDelay,this._hideDelay=this._defaultOptions.hideDelay,this.touchGestures="auto",this._message="",this._passiveListeners=[],this._destroyed=new pe,this._scrollStrategy=h,this._document=w,C&&(C.position&&(this.position=C.position),C.touchGestures&&(this.touchGestures=C.touchGestures)),p.change.pipe(dt(this._destroyed)).subscribe(()=>{this._overlayRef&&this._updatePosition(this._overlayRef)})}get position(){return this._position}set position(e){e!==this._position&&(this._position=e,this._overlayRef&&(this._updatePosition(this._overlayRef),this._tooltipInstance?.show(0),this._overlayRef.updatePosition()))}get disabled(){return this._disabled}set disabled(e){this._disabled=zt(e),this._disabled?this.hide(0):this._setupPointerEnterEventsIfNeeded()}get showDelay(){return this._showDelay}set showDelay(e){this._showDelay=ss(e)}get hideDelay(){return this._hideDelay}set hideDelay(e){this._hideDelay=ss(e),this._tooltipInstance&&(this._tooltipInstance._mouseLeaveHideDelay=this._hideDelay)}get message(){return this._message}set message(e){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this._message,"tooltip"),this._message=null!=e?String(e).trim():"",!this._message&&this._isTooltipVisible()?this.hide(0):(this._setupPointerEnterEventsIfNeeded(),this._updateTooltipMessage(),this._ngZone.runOutsideAngular(()=>{Promise.resolve().then(()=>{this._ariaDescriber.describe(this._elementRef.nativeElement,this.message,"tooltip")})}))}get tooltipClass(){return this._tooltipClass}set tooltipClass(e){this._tooltipClass=e,this._tooltipInstance&&this._setTooltipClass(this._tooltipClass)}ngAfterViewInit(){this._viewInitialized=!0,this._setupPointerEnterEventsIfNeeded(),this._focusMonitor.monitor(this._elementRef).pipe(dt(this._destroyed)).subscribe(e=>{e?"keyboard"===e&&this._ngZone.run(()=>this.show()):this._ngZone.run(()=>this.hide(0))})}ngOnDestroy(){const e=this._elementRef.nativeElement;clearTimeout(this._touchstartTimeout),this._overlayRef&&(this._overlayRef.dispose(),this._tooltipInstance=null),this._passiveListeners.forEach(([i,r])=>{e.removeEventListener(i,r,HI)}),this._passiveListeners.length=0,this._destroyed.next(),this._destroyed.complete(),this._ariaDescriber.removeDescription(e,this.message,"tooltip"),this._focusMonitor.stopMonitoring(e)}show(e=this.showDelay){if(this.disabled||!this.message||this._isTooltipVisible())return void this._tooltipInstance?._cancelPendingAnimations();const i=this._createOverlay();this._detach(),this._portal=this._portal||new Fp(this._tooltipComponent,this._viewContainerRef);const r=this._tooltipInstance=i.attach(this._portal).instance;r._triggerElement=this._elementRef.nativeElement,r._mouseLeaveHideDelay=this._hideDelay,r.afterHidden().pipe(dt(this._destroyed)).subscribe(()=>this._detach()),this._setTooltipClass(this._tooltipClass),this._updateTooltipMessage(),r.show(e)}hide(e=this.hideDelay){const i=this._tooltipInstance;i&&(i.isVisible()?i.hide(e):(i._cancelPendingAnimations(),this._detach()))}toggle(){this._isTooltipVisible()?this.hide():this.show()}_isTooltipVisible(){return!!this._tooltipInstance&&this._tooltipInstance.isVisible()}_createOverlay(){if(this._overlayRef)return this._overlayRef;const e=this._scrollDispatcher.getAncestorScrollContainers(this._elementRef),i=this._overlay.position().flexibleConnectedTo(this._elementRef).withTransformOriginOn(`.${this._cssClassPrefix}-tooltip`).withFlexibleDimensions(!1).withViewportMargin(this._viewportMargin).withScrollableContainers(e);return i.positionChanges.pipe(dt(this._destroyed)).subscribe(r=>{this._updateCurrentPositionClass(r.connectionPair),this._tooltipInstance&&r.scrollableViewProperties.isOverlayClipped&&this._tooltipInstance.isVisible()&&this._ngZone.run(()=>this.hide(0))}),this._overlayRef=this._overlay.create({direction:this._dir,positionStrategy:i,panelClass:`${this._cssClassPrefix}-${zI}`,scrollStrategy:this._scrollStrategy()}),this._updatePosition(this._overlayRef),this._overlayRef.detachments().pipe(dt(this._destroyed)).subscribe(()=>this._detach()),this._overlayRef.outsidePointerEvents().pipe(dt(this._destroyed)).subscribe(()=>this._tooltipInstance?._handleBodyInteraction()),this._overlayRef.keydownEvents().pipe(dt(this._destroyed)).subscribe(r=>{this._isTooltipVisible()&&27===r.keyCode&&!Cd(r)&&(r.preventDefault(),r.stopPropagation(),this._ngZone.run(()=>this.hide(0)))}),this._defaultOptions?.disableTooltipInteractivity&&this._overlayRef.addPanelClass(`${this._cssClassPrefix}-tooltip-panel-non-interactive`),this._overlayRef}_detach(){this._overlayRef&&this._overlayRef.hasAttached()&&this._overlayRef.detach(),this._tooltipInstance=null}_updatePosition(e){const i=e.getConfig().positionStrategy,r=this._getOrigin(),s=this._getOverlayPosition();i.withPositions([this._addOffset({...r.main,...s.main}),this._addOffset({...r.fallback,...s.fallback})])}_addOffset(e){return e}_getOrigin(){const e=!this._dir||"ltr"==this._dir.value,i=this.position;let r;"above"==i||"below"==i?r={originX:"center",originY:"above"==i?"top":"bottom"}:"before"==i||"left"==i&&e||"right"==i&&!e?r={originX:"start",originY:"center"}:("after"==i||"right"==i&&e||"left"==i&&!e)&&(r={originX:"end",originY:"center"});const{x:s,y:a}=this._invertPosition(r.originX,r.originY);return{main:r,fallback:{originX:s,originY:a}}}_getOverlayPosition(){const e=!this._dir||"ltr"==this._dir.value,i=this.position;let r;"above"==i?r={overlayX:"center",overlayY:"bottom"}:"below"==i?r={overlayX:"center",overlayY:"top"}:"before"==i||"left"==i&&e||"right"==i&&!e?r={overlayX:"end",overlayY:"center"}:("after"==i||"right"==i&&e||"left"==i&&!e)&&(r={overlayX:"start",overlayY:"center"});const{x:s,y:a}=this._invertPosition(r.overlayX,r.overlayY);return{main:r,fallback:{overlayX:s,overlayY:a}}}_updateTooltipMessage(){this._tooltipInstance&&(this._tooltipInstance.message=this.message,this._tooltipInstance._markForCheck(),this._ngZone.onMicrotaskEmpty.pipe(gn(1),dt(this._destroyed)).subscribe(()=>{this._tooltipInstance&&this._overlayRef.updatePosition()}))}_setTooltipClass(e){this._tooltipInstance&&(this._tooltipInstance.tooltipClass=e,this._tooltipInstance._markForCheck())}_invertPosition(e,i){return"above"===this.position||"below"===this.position?"top"===i?i="bottom":"bottom"===i&&(i="top"):"end"===e?e="start":"start"===e&&(e="end"),{x:e,y:i}}_updateCurrentPositionClass(e){const{overlayY:i,originX:r,originY:s}=e;let a;if(a="center"===i?this._dir&&"rtl"===this._dir.value?"end"===r?"left":"right":"start"===r?"left":"right":"bottom"===i&&"top"===s?"above":"below",a!==this._currentPosition){const o=this._overlayRef;if(o){const l=`${this._cssClassPrefix}-${zI}-`;o.removePanelClass(l+this._currentPosition),o.addPanelClass(l+a)}this._currentPosition=a}}_setupPointerEnterEventsIfNeeded(){this._disabled||!this.message||!this._viewInitialized||this._passiveListeners.length||(this._platformSupportsMouseEvents()?this._passiveListeners.push(["mouseenter",()=>{this._setupPointerExitEventsIfNeeded(),this.show()}]):"off"!==this.touchGestures&&(this._disableNativeGesturesIfNecessary(),this._passiveListeners.push(["touchstart",()=>{this._setupPointerExitEventsIfNeeded(),clearTimeout(this._touchstartTimeout),this._touchstartTimeout=setTimeout(()=>this.show(),500)}])),this._addListeners(this._passiveListeners))}_setupPointerExitEventsIfNeeded(){if(this._pointerExitEventsInitialized)return;this._pointerExitEventsInitialized=!0;const e=[];if(this._platformSupportsMouseEvents())e.push(["mouseleave",i=>{const r=i.relatedTarget;(!r||!this._overlayRef?.overlayElement.contains(r))&&this.hide()}],["wheel",i=>this._wheelListener(i)]);else if("off"!==this.touchGestures){this._disableNativeGesturesIfNecessary();const i=()=>{clearTimeout(this._touchstartTimeout),this.hide(this._defaultOptions.touchendHideDelay)};e.push(["touchend",i],["touchcancel",i])}this._addListeners(e),this._passiveListeners.push(...e)}_addListeners(e){e.forEach(([i,r])=>{this._elementRef.nativeElement.addEventListener(i,r,HI)})}_platformSupportsMouseEvents(){return!this._platform.IOS&&!this._platform.ANDROID}_wheelListener(e){if(this._isTooltipVisible()){const i=this._document.elementFromPoint(e.clientX,e.clientY),r=this._elementRef.nativeElement;i!==r&&!r.contains(i)&&this.hide()}}_disableNativeGesturesIfNecessary(){const e=this.touchGestures;if("off"!==e){const i=this._elementRef.nativeElement,r=i.style;("on"===e||"INPUT"!==i.nodeName&&"TEXTAREA"!==i.nodeName)&&(r.userSelect=r.msUserSelect=r.webkitUserSelect=r.MozUserSelect="none"),("on"===e||!i.draggable)&&(r.webkitUserDrag="none"),r.touchAction="none",r.webkitTapHighlightColor="transparent"}}}return t.\u0275fac=function(e){Ua()},t.\u0275dir=G({type:t,inputs:{position:["matTooltipPosition","position"],disabled:["matTooltipDisabled","disabled"],showDelay:["matTooltipShowDelay","showDelay"],hideDelay:["matTooltipHideDelay","hideDelay"],touchGestures:["matTooltipTouchGestures","touchGestures"],message:["matTooltip","message"],tooltipClass:["matTooltipClass","tooltipClass"]}}),t})(),as=(()=>{class t extends A8{constructor(e,i,r,s,a,o,l,u,h,p,C,w){super(e,i,r,s,a,o,l,u,h,p,C,w),this._tooltipComponent=b8}}return t.\u0275fac=function(e){return new(e||t)(_(Ur),_(be),_(Pp),_(ci),_(He),_(hi),_(L4),_(Rs),_(GI),_(Is,8),_(_8,8),_(Ye))},t.\u0275dir=G({type:t,selectors:[["","matTooltip",""]],hostAttrs:[1,"mat-tooltip-trigger"],exportAs:["matTooltip"],features:[J]}),t})(),v8=(()=>{class t{constructor(e,i){this._changeDetectorRef=e,this._closeOnInteraction=!1,this._isVisible=!1,this._onHide=new pe,this._animationsDisabled="NoopAnimations"===i}show(e){clearTimeout(this._hideTimeoutId),this._showTimeoutId=setTimeout(()=>{this._toggleVisibility(!0),this._showTimeoutId=void 0},e)}hide(e){clearTimeout(this._showTimeoutId),this._hideTimeoutId=setTimeout(()=>{this._toggleVisibility(!1),this._hideTimeoutId=void 0},e)}afterHidden(){return this._onHide}isVisible(){return this._isVisible}ngOnDestroy(){this._cancelPendingAnimations(),this._onHide.complete(),this._triggerElement=null}_handleBodyInteraction(){this._closeOnInteraction&&this.hide(0)}_markForCheck(){this._changeDetectorRef.markForCheck()}_handleMouseLeave({relatedTarget:e}){(!e||!this._triggerElement.contains(e))&&(this.isVisible()?this.hide(this._mouseLeaveHideDelay):this._finalizeAnimation(!1))}_onShow(){}_handleAnimationEnd({animationName:e}){(e===this._showAnimation||e===this._hideAnimation)&&this._finalizeAnimation(e===this._showAnimation)}_cancelPendingAnimations(){clearTimeout(this._showTimeoutId),clearTimeout(this._hideTimeoutId),this._showTimeoutId=this._hideTimeoutId=void 0}_finalizeAnimation(e){e?this._closeOnInteraction=!0:this.isVisible()||this._onHide.next()}_toggleVisibility(e){const i=this._tooltip.nativeElement,r=this._showAnimation,s=this._hideAnimation;if(i.classList.remove(e?s:r),i.classList.add(e?r:s),this._isVisible=e,e&&!this._animationsDisabled&&"function"==typeof getComputedStyle){const a=getComputedStyle(i);("0s"===a.getPropertyValue("animation-duration")||"none"===a.getPropertyValue("animation-name"))&&(this._animationsDisabled=!0)}e&&this._onShow(),this._animationsDisabled&&(i.classList.add("_mat-animation-noopable"),this._finalizeAnimation(e))}}return t.\u0275fac=function(e){return new(e||t)(_(Kn),_(nr,8))},t.\u0275dir=G({type:t}),t})(),b8=(()=>{class t extends v8{constructor(e,i,r){super(e,r),this._breakpointObserver=i,this._isHandset=this._breakpointObserver.observe("(max-width: 599.98px) and (orientation: portrait), (max-width: 959.98px) and (orientation: landscape)"),this._showAnimation="mat-tooltip-show",this._hideAnimation="mat-tooltip-hide"}}return t.\u0275fac=function(e){return new(e||t)(_(Kn),_(zp),_(nr,8))},t.\u0275cmp=ce({type:t,selectors:[["mat-tooltip-component"]],viewQuery:function(e,i){if(1&e&&it(h8,7),2&e){let r;xe(r=ke())&&(i._tooltip=r.first)}},hostAttrs:["aria-hidden","true"],hostVars:2,hostBindings:function(e,i){1&e&&ee("mouseleave",function(s){return i._handleMouseLeave(s)}),2&e&&Lr("zoom",i.isVisible()?1:null)},features:[J],decls:4,vars:6,consts:[[1,"mat-tooltip",3,"ngClass","animationend"],["tooltip",""]],template:function(e,i){if(1&e&&(S(0,"div",0,1),ee("animationend",function(s){return i._handleAnimationEnd(s)}),F(2,"async"),V(3),D()),2&e){let r;Mt("mat-tooltip-handset",null==(r=j(2,4,i._isHandset))?null:r.matches),E("ngClass",i.tooltipClass),b(3),re(i.message)}},dependencies:[oa,Vf],styles:[".mat-tooltip{color:#fff;border-radius:4px;margin:14px;max-width:250px;padding-left:8px;padding-right:8px;overflow:hidden;text-overflow:ellipsis;transform:scale(0)}.mat-tooltip._mat-animation-noopable{animation:none;transform:scale(1)}.cdk-high-contrast-active .mat-tooltip{outline:solid 1px}.mat-tooltip-handset{margin:24px;padding-left:16px;padding-right:16px}.mat-tooltip-panel-non-interactive{pointer-events:none}@keyframes mat-tooltip-show{0%{opacity:0;transform:scale(0)}50%{opacity:.5;transform:scale(0.99)}100%{opacity:1;transform:scale(1)}}@keyframes mat-tooltip-hide{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(1)}}.mat-tooltip-show{animation:mat-tooltip-show 200ms cubic-bezier(0, 0, 0.2, 1) forwards}.mat-tooltip-hide{animation:mat-tooltip-hide 100ms cubic-bezier(0, 0, 0.2, 1) forwards}"],encapsulation:2,changeDetection:0}),t})(),nl=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[m8],imports:[qp,sn,el,At,At,bc]}),t})();const WI=["mat-button",""],KI=["*"],E8=["mat-button","mat-flat-button","mat-icon-button","mat-raised-button","mat-stroked-button","mat-mini-fab","mat-fab"],S8=Ec($v(Xp(class{constructor(t){this._elementRef=t}})));let En=(()=>{class t extends S8{constructor(e,i,r){super(e),this._focusMonitor=i,this._animationMode=r,this.isRoundButton=this._hasHostAttributes("mat-fab","mat-mini-fab"),this.isIconButton=this._hasHostAttributes("mat-icon-button");for(const s of E8)this._hasHostAttributes(s)&&this._getHostElement().classList.add(s);e.nativeElement.classList.add("mat-button-base"),this.isRoundButton&&(this.color="accent")}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}focus(e,i){e?this._focusMonitor.focusVia(this._getHostElement(),e,i):this._getHostElement().focus(i)}_getHostElement(){return this._elementRef.nativeElement}_isRippleDisabled(){return this.disableRipple||this.disabled}_hasHostAttributes(...e){return e.some(i=>this._getHostElement().hasAttribute(i))}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(Rs),_(nr,8))},t.\u0275cmp=ce({type:t,selectors:[["button","mat-button",""],["button","mat-raised-button",""],["button","mat-icon-button",""],["button","mat-fab",""],["button","mat-mini-fab",""],["button","mat-stroked-button",""],["button","mat-flat-button",""]],viewQuery:function(e,i){if(1&e&&it(tl,5),2&e){let r;xe(r=ke())&&(i.ripple=r.first)}},hostAttrs:[1,"mat-focus-indicator"],hostVars:5,hostBindings:function(e,i){2&e&&(Me("disabled",i.disabled||null),Mt("_mat-animation-noopable","NoopAnimations"===i._animationMode)("mat-button-disabled",i.disabled))},inputs:{disabled:"disabled",disableRipple:"disableRipple",color:"color"},exportAs:["matButton"],features:[J],attrs:WI,ngContentSelectors:KI,decls:4,vars:5,consts:[[1,"mat-button-wrapper"],["matRipple","",1,"mat-button-ripple",3,"matRippleDisabled","matRippleCentered","matRippleTrigger"],[1,"mat-button-focus-overlay"]],template:function(e,i){1&e&&(Ci(),S(0,"span",0),rn(1),D(),le(2,"span",1)(3,"span",2)),2&e&&(b(2),Mt("mat-button-ripple-round",i.isRoundButton||i.isIconButton),E("matRippleDisabled",i._isRippleDisabled())("matRippleCentered",i.isIconButton)("matRippleTrigger",i._getHostElement()))},dependencies:[tl],styles:[".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay,.mat-stroked-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay,.mat-stroked-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button.mat-button-disabled,.mat-icon-button.mat-button-disabled,.mat-stroked-button.mat-button-disabled,.mat-flat-button.mat-button-disabled{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button.mat-button-disabled{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab.mat-button-disabled{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}.mat-fab._mat-animation-noopable{transition:none !important;animation:none !important}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab.mat-button-disabled{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:inline-flex;justify-content:center;align-items:center;font-size:inherit;width:2.5em;height:2.5em}.mat-flat-button::before,.mat-raised-button::before,.mat-fab::before,.mat-mini-fab::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px) * -1)}.mat-stroked-button::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 3px) * -1)}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}"],encapsulation:2,changeDetection:0}),t})(),YI=(()=>{class t extends En{constructor(e,i,r,s){super(i,e,r),this._ngZone=s,this._haltDisabledEvents=a=>{this.disabled&&(a.preventDefault(),a.stopImmediatePropagation())}}ngAfterViewInit(){super.ngAfterViewInit(),this._ngZone?this._ngZone.runOutsideAngular(()=>{this._elementRef.nativeElement.addEventListener("click",this._haltDisabledEvents)}):this._elementRef.nativeElement.addEventListener("click",this._haltDisabledEvents)}ngOnDestroy(){super.ngOnDestroy(),this._elementRef.nativeElement.removeEventListener("click",this._haltDisabledEvents)}}return t.\u0275fac=function(e){return new(e||t)(_(Rs),_(be),_(nr,8),_(He,8))},t.\u0275cmp=ce({type:t,selectors:[["a","mat-button",""],["a","mat-raised-button",""],["a","mat-icon-button",""],["a","mat-fab",""],["a","mat-mini-fab",""],["a","mat-stroked-button",""],["a","mat-flat-button",""]],hostAttrs:[1,"mat-focus-indicator"],hostVars:7,hostBindings:function(e,i){2&e&&(Me("tabindex",i.disabled?-1:i.tabIndex)("disabled",i.disabled||null)("aria-disabled",i.disabled.toString()),Mt("_mat-animation-noopable","NoopAnimations"===i._animationMode)("mat-button-disabled",i.disabled))},inputs:{disabled:"disabled",disableRipple:"disableRipple",color:"color",tabIndex:"tabIndex"},exportAs:["matButton","matAnchor"],features:[J],attrs:WI,ngContentSelectors:KI,decls:4,vars:5,consts:[[1,"mat-button-wrapper"],["matRipple","",1,"mat-button-ripple",3,"matRippleDisabled","matRippleCentered","matRippleTrigger"],[1,"mat-button-focus-overlay"]],template:function(e,i){1&e&&(Ci(),S(0,"span",0),rn(1),D(),le(2,"span",1)(3,"span",2)),2&e&&(b(2),Mt("mat-button-ripple-round",i.isRoundButton||i.isIconButton),E("matRippleDisabled",i._isRippleDisabled())("matRippleCentered",i.isIconButton)("matRippleTrigger",i._getHostElement()))},dependencies:[tl],styles:[".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay,.mat-stroked-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay,.mat-stroked-button:hover:not(.mat-button-disabled) .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button.mat-button-disabled,.mat-icon-button.mat-button-disabled,.mat-stroked-button.mat-button-disabled,.mat-flat-button.mat-button-disabled{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button.mat-button-disabled{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab.mat-button-disabled{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}.mat-fab._mat-animation-noopable{transition:none !important;animation:none !important}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab.mat-button-disabled{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:inline-flex;justify-content:center;align-items:center;font-size:inherit;width:2.5em;height:2.5em}.mat-flat-button::before,.mat-raised-button::before,.mat-fab::before,.mat-mini-fab::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px) * -1)}.mat-stroked-button::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 3px) * -1)}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}"],encapsulation:2,changeDetection:0}),t})(),pa=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[Sc,At,At]}),t})();function qI(t){for(let n in t){let e=t[n]??"";switch(n){case"display":t.display="flex"===e?["-webkit-flex","flex"]:"inline-flex"===e?["-webkit-inline-flex","inline-flex"]:e;break;case"align-items":case"align-self":case"align-content":case"flex":case"flex-basis":case"flex-flow":case"flex-grow":case"flex-shrink":case"flex-wrap":case"justify-content":t["-webkit-"+n]=e;break;case"flex-direction":t["-webkit-flex-direction"]=e,t["flex-direction"]=e;break;case"order":t.order=t["-webkit-"+n]=isNaN(+e)?"0":e}}return t}const eb="inline",Qp=["row","column","row-reverse","column-reverse"];function XI(t){let[n,e,i]=QI(t);return function w8(t,n=null,e=!1){return{display:e?"inline-flex":"flex","box-sizing":"border-box","flex-direction":t,"flex-wrap":n||null}}(n,e,i)}function QI(t){t=t?.toLowerCase()??"";let[n,e,i]=t.split(" ");return Qp.find(r=>r===n)||(n=Qp[0]),e===eb&&(e=i!==eb?i:"",i=eb),[n,D8(e),!!i]}function Ed(t){let[n]=QI(t);return n.indexOf("row")>-1}function D8(t){if(t)switch(t.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":t="wrap-reverse";break;case"no":case"none":case"nowrap":t="nowrap";break;default:t="wrap"}return t}function ga(t,...n){if(null==t)throw TypeError("Cannot convert undefined or null to object");for(let e of n)if(null!=e)for(let i in e)e.hasOwnProperty(i)&&(t[i]=e[i]);return t}const k8={provide:My,useFactory:function x8(t,n){return()=>{if(Uo(n)){const e=Array.from(t.querySelectorAll(`[class*=${ZI}]`)),i=/\bflex-layout-.+?\b/g;e.forEach(r=>{r.classList.contains(`${ZI}ssr`)&&r.parentNode?r.parentNode.removeChild(r):r.className.replace(i,"")})}}},deps:[Ye,Pr],multi:!0},ZI="flex-layout-";let tb=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[k8]}),t})();class il{constructor(n=!1,e="all",i="",r="",s=0){this.matches=n,this.mediaQuery=e,this.mqAlias=i,this.suffix=r,this.priority=s,this.property=""}clone(){return new il(this.matches,this.mediaQuery,this.mqAlias,this.suffix)}}let I8=(()=>{class t{constructor(){this.stylesheet=new Map}addStyleToElement(e,i,r){const s=this.stylesheet.get(e);s?s.set(i,r):this.stylesheet.set(e,new Map([[i,r]]))}clearStyles(){this.stylesheet.clear()}getStyleForElement(e,i){const r=this.stylesheet.get(e);let s="";if(r){const a=r.get(i);("number"==typeof a||"string"==typeof a)&&(s=a+"")}return s}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const nb={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[],multiplier:void 0,defaultUnit:"px",detectLayoutDisplay:!1},os=new Z("Flex Layout token, config options for the library",{providedIn:"root",factory:()=>nb}),Dc=new Z("FlexLayoutServerLoaded",{providedIn:"root",factory:()=>!1}),ib=new Z("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:()=>null});function $I(t,n){return t=t?.clone()??new il,n&&(t.mqAlias=n.alias,t.mediaQuery=n.mediaQuery,t.suffix=n.suffix,t.priority=n.priority),t}class Un{constructor(){this.shouldCache=!0}sideEffect(n,e,i){}}let An=(()=>{class t{constructor(e,i,r,s){this._serverStylesheet=e,this._serverModuleLoaded=i,this._platformId=r,this.layoutConfig=s}applyStyleToElement(e,i,r=null){let s={};"string"==typeof i&&(s[i]=r,i=s),s=this.layoutConfig.disableVendorPrefixes?i:qI(i),this._applyMultiValueStyleToElement(s,e)}applyStyleToElements(e,i=[]){const r=this.layoutConfig.disableVendorPrefixes?e:qI(e);i.forEach(s=>{this._applyMultiValueStyleToElement(r,s)})}getFlowDirection(e){const i="flex-direction";let r=this.lookupStyle(e,i);return[r||"row",this.lookupInlineStyle(e,i)||hc(this._platformId)&&this._serverModuleLoaded?r:""]}hasWrap(e){return"wrap"===this.lookupStyle(e,"flex-wrap")}lookupAttributeValue(e,i){return e.getAttribute(i)??""}lookupInlineStyle(e,i){return Uo(this._platformId)?e.style.getPropertyValue(i):function M8(t,n){return JI(t)[n]??""}(e,i)}lookupStyle(e,i,r=!1){let s="";return e&&((s=this.lookupInlineStyle(e,i))||(Uo(this._platformId)?r||(s=getComputedStyle(e).getPropertyValue(i)):this._serverModuleLoaded&&(s=this._serverStylesheet.getStyleForElement(e,i)))),s?s.trim():""}_applyMultiValueStyleToElement(e,i){Object.keys(e).sort().forEach(r=>{const s=e[r],a=Array.isArray(s)?s:[s];a.sort();for(let o of a)o=o?o+"":"",Uo(this._platformId)||!this._serverModuleLoaded?Uo(this._platformId)?i.style.setProperty(r,o):R8(i,r,o):this._serverStylesheet.addStyleToElement(i,r,o)})}}return t.\u0275fac=function(e){return new(e||t)(R(I8),R(Dc),R(Pr),R(os))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function R8(t,n,e){n=n.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();const i=JI(t);i[n]=e??"",function O8(t,n){let e="";for(const i in n)n[i]&&(e+=`${i}:${n[i]};`);t.setAttribute("style",e)}(t,i)}function JI(t){const n={},e=t.getAttribute("style");if(e){const i=e.split(/;+/g);for(let r=0;r<i.length;r++){const s=i[r].trim();if(s.length>0){const a=s.indexOf(":");if(-1===a)throw new Error(`Invalid CSS style: ${s}`);n[s.substr(0,a).trim()]=s.substr(a+1).trim()}}}return n}function Sd(t,n){return(n&&n.priority||0)-(t&&t.priority||0)}function L8(t,n){return(t.priority||0)-(n.priority||0)}let rb=(()=>{class t{constructor(e,i,r){this._zone=e,this._platformId=i,this._document=r,this.source=new ki(new il(!0)),this.registry=new Map,this.pendingRemoveListenerFns=[],this._observable$=this.source.asObservable()}get activations(){const e=[];return this.registry.forEach((i,r)=>{i.matches&&e.push(r)}),e}isActive(e){return this.registry.get(e)?.matches??this.registerQuery(e).some(r=>r.matches)}observe(e,i=!1){if(e&&e.length){const r=this._observable$.pipe(Tn(a=>!i||e.indexOf(a.mediaQuery)>-1));return ar(new Ct(a=>{const o=this.registerQuery(e);if(o.length){const l=o.pop();o.forEach(u=>{a.next(u)}),this.source.next(l)}a.complete()}),r)}return this._observable$}registerQuery(e){const i=Array.isArray(e)?e:[e],r=[];return function P8(t,n){const e=t.filter(i=>!eM[i]);if(e.length>0){const i=e.join(", ");try{const r=n.createElement("style");r.setAttribute("type","text/css"),r.styleSheet||r.appendChild(n.createTextNode(`\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media ${i} {.fx-query-test{ }}\n`)),n.head.appendChild(r),e.forEach(s=>eM[s]=r)}catch(r){console.error(r)}}}(i,this._document),i.forEach(s=>{const a=l=>{this._zone.run(()=>this.source.next(new il(l.matches,s)))};let o=this.registry.get(s);o||(o=this.buildMQL(s),o.addListener(a),this.pendingRemoveListenerFns.push(()=>o.removeListener(a)),this.registry.set(s,o)),o.matches&&r.push(new il(!0,s))}),r}ngOnDestroy(){let e;for(;e=this.pendingRemoveListenerFns.pop();)e()}buildMQL(e){return function F8(t,n){return n&&window.matchMedia("all").addListener?window.matchMedia(t):function N8(t){const n=new EventTarget;return n.matches="all"===t||""===t,n.media=t,n.addListener=()=>{},n.removeListener=()=>{},n.addEventListener=()=>{},n.dispatchEvent=()=>!1,n.onchange=null,n}(t)}(e,Uo(this._platformId))}}return t.\u0275fac=function(e){return new(e||t)(R(He),R(Pr),R(Ye))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const eM={},B8=[{alias:"xs",mediaQuery:"screen and (min-width: 0px) and (max-width: 599.98px)",priority:1e3},{alias:"sm",mediaQuery:"screen and (min-width: 600px) and (max-width: 959.98px)",priority:900},{alias:"md",mediaQuery:"screen and (min-width: 960px) and (max-width: 1279.98px)",priority:800},{alias:"lg",mediaQuery:"screen and (min-width: 1280px) and (max-width: 1919.98px)",priority:700},{alias:"xl",mediaQuery:"screen and (min-width: 1920px) and (max-width: 4999.98px)",priority:600},{alias:"lt-sm",overlapping:!0,mediaQuery:"screen and (max-width: 599.98px)",priority:950},{alias:"lt-md",overlapping:!0,mediaQuery:"screen and (max-width: 959.98px)",priority:850},{alias:"lt-lg",overlapping:!0,mediaQuery:"screen and (max-width: 1279.98px)",priority:750},{alias:"lt-xl",overlapping:!0,priority:650,mediaQuery:"screen and (max-width: 1919.98px)"},{alias:"gt-xs",overlapping:!0,mediaQuery:"screen and (min-width: 600px)",priority:-950},{alias:"gt-sm",overlapping:!0,mediaQuery:"screen and (min-width: 960px)",priority:-850},{alias:"gt-md",overlapping:!0,mediaQuery:"screen and (min-width: 1280px)",priority:-750},{alias:"gt-lg",overlapping:!0,mediaQuery:"screen and (min-width: 1920px)",priority:-650}],tM="(orientation: portrait) and (max-width: 599.98px)",nM="(orientation: landscape) and (max-width: 959.98px)",iM="(orientation: portrait) and (min-width: 600px) and (max-width: 839.98px)",rM="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.98px)",sM="(orientation: portrait) and (min-width: 840px)",aM="(orientation: landscape) and (min-width: 1280px)",ma={HANDSET:`${tM}, ${nM}`,TABLET:`${iM} , ${rM}`,WEB:`${sM}, ${aM} `,HANDSET_PORTRAIT:`${tM}`,TABLET_PORTRAIT:`${iM} `,WEB_PORTRAIT:`${sM}`,HANDSET_LANDSCAPE:`${nM}`,TABLET_LANDSCAPE:`${rM}`,WEB_LANDSCAPE:`${aM}`},V8=[{alias:"handset",priority:2e3,mediaQuery:ma.HANDSET},{alias:"handset.landscape",priority:2e3,mediaQuery:ma.HANDSET_LANDSCAPE},{alias:"handset.portrait",priority:2e3,mediaQuery:ma.HANDSET_PORTRAIT},{alias:"tablet",priority:2100,mediaQuery:ma.TABLET},{alias:"tablet.landscape",priority:2100,mediaQuery:ma.TABLET_LANDSCAPE},{alias:"tablet.portrait",priority:2100,mediaQuery:ma.TABLET_PORTRAIT},{alias:"web",priority:2200,mediaQuery:ma.WEB,overlapping:!0},{alias:"web.landscape",priority:2200,mediaQuery:ma.WEB_LANDSCAPE,overlapping:!0},{alias:"web.portrait",priority:2200,mediaQuery:ma.WEB_PORTRAIT,overlapping:!0}],U8=/(\.|-|_)/g;function j8(t){let n=t.length>0?t.charAt(0):"",e=t.length>1?t.slice(1):"";return n.toUpperCase()+e}const W8=new Z("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:()=>{const t=nn(ib),n=nn(os),e=[].concat.apply([],(t||[]).map(r=>Array.isArray(r)?r:[r]));return function G8(t,n=[]){const e={};return t.forEach(i=>{e[i.alias]=i}),n.forEach(i=>{e[i.alias]?ga(e[i.alias],i):e[i.alias]=i}),function H8(t){return t.forEach(n=>{n.suffix||(n.suffix=function z8(t){return t.replace(U8,"|").split("|").map(j8).join("")}(n.alias),n.overlapping=!!n.overlapping)}),t}(Object.keys(e).map(i=>e[i]))}((n.disableDefaultBps?[]:B8).concat(n.addOrientationBps?V8:[]),e)}});let sb=(()=>{class t{constructor(e){this.findByMap=new Map,this.items=[...e].sort(L8)}findByAlias(e){return e?this.findWithPredicate(e,i=>i.alias===e):null}findByQuery(e){return this.findWithPredicate(e,i=>i.mediaQuery===e)}get overlappings(){return this.items.filter(e=>e.overlapping)}get aliases(){return this.items.map(e=>e.alias)}get suffixes(){return this.items.map(e=>e?.suffix??"")}findWithPredicate(e,i){let r=this.findByMap.get(e);return r||(r=this.items.find(i)??null,this.findByMap.set(e,r)),r??null}}return t.\u0275fac=function(e){return new(e||t)(R(W8))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const wc="print",K8={alias:wc,mediaQuery:wc,priority:1e3};let Y8=(()=>{class t{constructor(e,i,r){this.breakpoints=e,this.layoutConfig=i,this._document=r,this.registeredBeforeAfterPrintHooks=!1,this.isPrintingBeforeAfterEvent=!1,this.beforePrintEventListeners=[],this.afterPrintEventListeners=[],this.formerActivations=null,this.isPrinting=!1,this.queue=new q8,this.deactivations=[]}withPrintQuery(e){return[...e,wc]}isPrintEvent(e){return e.mediaQuery.startsWith(wc)}get printAlias(){return[...this.layoutConfig.printWithBreakpoints??[]]}get printBreakPoints(){return this.printAlias.map(e=>this.breakpoints.findByAlias(e)).filter(e=>null!==e)}getEventBreakpoints({mediaQuery:e}){const i=this.breakpoints.findByQuery(e);return(i?[...this.printBreakPoints,i]:this.printBreakPoints).sort(Sd)}updateEvent(e){let i=this.breakpoints.findByQuery(e.mediaQuery);return this.isPrintEvent(e)&&(i=this.getEventBreakpoints(e)[0],e.mediaQuery=i?.mediaQuery??""),$I(e,i)}registerBeforeAfterPrintHooks(e){if(!this._document.defaultView||this.registeredBeforeAfterPrintHooks)return;this.registeredBeforeAfterPrintHooks=!0;const i=()=>{this.isPrinting||(this.isPrintingBeforeAfterEvent=!0,this.startPrinting(e,this.getEventBreakpoints(new il(!0,wc))),e.updateStyles())},r=()=>{this.isPrintingBeforeAfterEvent=!1,this.isPrinting&&(this.stopPrinting(e),e.updateStyles())};this._document.defaultView.addEventListener("beforeprint",i),this._document.defaultView.addEventListener("afterprint",r),this.beforePrintEventListeners.push(i),this.afterPrintEventListeners.push(r)}interceptEvents(e){return i=>{this.isPrintEvent(i)?i.matches&&!this.isPrinting?(this.startPrinting(e,this.getEventBreakpoints(i)),e.updateStyles()):!i.matches&&this.isPrinting&&!this.isPrintingBeforeAfterEvent&&(this.stopPrinting(e),e.updateStyles()):this.collectActivations(e,i)}}blockPropagation(){return e=>!(this.isPrinting||this.isPrintEvent(e))}startPrinting(e,i){this.isPrinting=!0,this.formerActivations=e.activatedBreakpoints,e.activatedBreakpoints=this.queue.addPrintBreakpoints(i)}stopPrinting(e){e.activatedBreakpoints=this.deactivations,this.deactivations=[],this.formerActivations=null,this.queue.clear(),this.isPrinting=!1}collectActivations(e,i){if(!this.isPrinting||this.isPrintingBeforeAfterEvent){if(!this.isPrintingBeforeAfterEvent)return void(this.deactivations=[]);if(!i.matches){const r=this.breakpoints.findByQuery(i.mediaQuery);if(r){const s=this.formerActivations&&this.formerActivations.includes(r),a=!this.formerActivations&&e.activatedBreakpoints.includes(r);(s||a)&&(this.deactivations.push(r),this.deactivations.sort(Sd))}}}}ngOnDestroy(){this._document.defaultView&&(this.beforePrintEventListeners.forEach(e=>this._document.defaultView.removeEventListener("beforeprint",e)),this.afterPrintEventListeners.forEach(e=>this._document.defaultView.removeEventListener("afterprint",e)))}}return t.\u0275fac=function(e){return new(e||t)(R(sb),R(os),R(Ye))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();class q8{constructor(){this.printBreakpoints=[]}addPrintBreakpoints(n){return n.push(K8),n.sort(Sd),n.forEach(e=>this.addBreakpoint(e)),this.printBreakpoints}addBreakpoint(n){n&&void 0===this.printBreakpoints.find(i=>i.mediaQuery===n.mediaQuery)&&(this.printBreakpoints=function X8(t){return t?.mediaQuery.startsWith(wc)??!1}(n)?[n,...this.printBreakpoints]:[...this.printBreakpoints,n])}clear(){this.printBreakpoints=[]}}let Sn=(()=>{class t{constructor(e,i,r){this.matchMedia=e,this.breakpoints=i,this.hook=r,this._useFallbacks=!0,this._activatedBreakpoints=[],this.elementMap=new Map,this.elementKeyMap=new WeakMap,this.watcherMap=new WeakMap,this.updateMap=new WeakMap,this.clearMap=new WeakMap,this.subject=new pe,this.observeActivations()}get activatedAlias(){return this.activatedBreakpoints[0]?.alias??""}set activatedBreakpoints(e){this._activatedBreakpoints=[...e]}get activatedBreakpoints(){return[...this._activatedBreakpoints]}set useFallbacks(e){this._useFallbacks=e}onMediaChange(e){const i=this.findByQuery(e.mediaQuery);if(i){e=$I(e,i);const r=this.activatedBreakpoints.indexOf(i);e.matches&&-1===r?(this._activatedBreakpoints.push(i),this._activatedBreakpoints.sort(Sd),this.updateStyles()):!e.matches&&-1!==r&&(this._activatedBreakpoints.splice(r,1),this._activatedBreakpoints.sort(Sd),this.updateStyles())}}init(e,i,r,s,a=[]){oM(this.updateMap,e,i,r),oM(this.clearMap,e,i,s),this.buildElementKeyMap(e,i),this.watchExtraTriggers(e,i,a)}getValue(e,i,r){const s=this.elementMap.get(e);if(s){const a=void 0!==r?s.get(r):this.getActivatedValues(s,i);if(a)return a.get(i)}}hasValue(e,i){const r=this.elementMap.get(e);if(r){const s=this.getActivatedValues(r,i);if(s)return void 0!==s.get(i)||!1}return!1}setValue(e,i,r,s){let a=this.elementMap.get(e);if(a){const l=(a.get(s)??new Map).set(i,r);a.set(s,l),this.elementMap.set(e,a)}else a=(new Map).set(s,(new Map).set(i,r)),this.elementMap.set(e,a);const o=this.getValue(e,i);void 0!==o&&this.updateElement(e,i,o)}trackValue(e,i){return this.subject.asObservable().pipe(Tn(r=>r.element===e&&r.key===i))}updateStyles(){this.elementMap.forEach((e,i)=>{const r=new Set(this.elementKeyMap.get(i));let s=this.getActivatedValues(e);s&&s.forEach((a,o)=>{this.updateElement(i,o,a),r.delete(o)}),r.forEach(a=>{if(s=this.getActivatedValues(e,a),s){const o=s.get(a);this.updateElement(i,a,o)}else this.clearElement(i,a)})})}clearElement(e,i){const r=this.clearMap.get(e);if(r){const s=r.get(i);s&&(s(),this.subject.next({element:e,key:i,value:""}))}}updateElement(e,i,r){const s=this.updateMap.get(e);if(s){const a=s.get(i);a&&(a(r),this.subject.next({element:e,key:i,value:r}))}}releaseElement(e){const i=this.watcherMap.get(e);i&&(i.forEach(s=>s.unsubscribe()),this.watcherMap.delete(e));const r=this.elementMap.get(e);r&&(r.forEach((s,a)=>r.delete(a)),this.elementMap.delete(e))}triggerUpdate(e,i){const r=this.elementMap.get(e);if(r){const s=this.getActivatedValues(r,i);s&&(i?this.updateElement(e,i,s.get(i)):s.forEach((a,o)=>this.updateElement(e,o,a)))}}buildElementKeyMap(e,i){let r=this.elementKeyMap.get(e);r||(r=new Set,this.elementKeyMap.set(e,r)),r.add(i)}watchExtraTriggers(e,i,r){if(r&&r.length){let s=this.watcherMap.get(e);if(s||(s=new Map,this.watcherMap.set(e,s)),!s.get(i)){const o=ar(...r).subscribe(()=>{const l=this.getValue(e,i);this.updateElement(e,i,l)});s.set(i,o)}}}findByQuery(e){return this.breakpoints.findByQuery(e)}getActivatedValues(e,i){for(let s=0;s<this.activatedBreakpoints.length;s++){const o=e.get(this.activatedBreakpoints[s].alias);if(o&&(void 0===i||o.has(i)&&null!=o.get(i)))return o}if(!this._useFallbacks)return;const r=e.get("");return void 0===i||r&&r.has(i)?r:void 0}observeActivations(){const e=this.breakpoints.items.map(i=>i.mediaQuery);this.hook.registerBeforeAfterPrintHooks(this),this.matchMedia.observe(this.hook.withPrintQuery(e)).pipe(Mn(this.hook.interceptEvents(this)),Tn(this.hook.blockPropagation())).subscribe(this.onMediaChange.bind(this))}}return t.\u0275fac=function(e){return new(e||t)(R(rb),R(sb),R(Y8))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function oM(t,n,e,i){if(void 0!==i){const r=t.get(n)??new Map;r.set(e,i),t.set(n,r)}}let Rn=(()=>{class t{constructor(e,i,r,s){this.elementRef=e,this.styleBuilder=i,this.styler=r,this.marshal=s,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new pe,this.styleCache=new Map}get parentElement(){return this.elementRef.nativeElement.parentElement}get nativeElement(){return this.elementRef.nativeElement}get activatedValue(){return this.marshal.getValue(this.nativeElement,this.DIRECTIVE_KEY)}set activatedValue(e){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,e,this.marshal.activatedAlias)}ngOnChanges(e){Object.keys(e).forEach(i=>{if(-1!==this.inputs.indexOf(i)){const r=i.split(".").slice(1).join(".");this.setValue(e[i].currentValue,r)}})}ngOnDestroy(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)}init(e=[]){this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),e)}addStyles(e,i){const r=this.styleBuilder,s=r.shouldCache;let a=this.styleCache.get(e);(!a||!s)&&(a=r.buildStyles(e,i),s&&this.styleCache.set(e,a)),this.mru={...a},this.applyStyleToElement(a),r.sideEffect(e,a,i)}clearStyles(){Object.keys(this.mru).forEach(e=>{this.mru[e]=""}),this.applyStyleToElement(this.mru),this.mru={},this.currentValue=void 0}triggerUpdate(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)}getFlexFlowDirection(e,i=!1){if(e){const[r,s]=this.styler.getFlowDirection(e);if(!s&&i){const a=XI(r);this.styler.applyStyleToElements(a,[e])}return r.trim()}return"row"}hasWrap(e){return this.styler.hasWrap(e)}applyStyleToElement(e,i,r=this.nativeElement){this.styler.applyStyleToElement(r,e,i)}setValue(e,i){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,e,i)}updateWithValue(e){this.currentValue!==e&&(this.addStyles(e),this.currentValue=e)}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(Un),_(An),_(Sn))},t.\u0275dir=G({type:t,features:[$n]}),t})();function lM(t,n="1",e="1"){let i=[n,e,t],r=t.indexOf("calc");if(r>0){i[2]=cM(t.substring(r).trim());let s=t.substr(0,r).trim().split(" ");2==s.length&&(i[0]=s[0],i[1]=s[1])}else if(0==r)i[2]=cM(t.trim());else{let s=t.split(" ");i=3===s.length?s:[n,e,t]}return i}function cM(t){return t.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}function Zp(t,n){if(void 0===n)return t;const e=i=>{const r=+i.slice(0,-"x".length);return t.endsWith("x")&&!isNaN(r)?`${r*n.value}${n.unit}`:t};return t.includes(" ")?t.split(" ").map(e).join(" "):e(t)}EventTarget;let iW=(()=>{class t extends Rn{constructor(e,i,r,s,a,o,l){super(e,null,i,r),this.ngClassInstance=l,this.DIRECTIVE_KEY="ngClass",this.ngClassInstance||(this.ngClassInstance=new oa(s,a,e,o)),this.init(),this.setValue("","")}set klass(e){this.ngClassInstance.klass=e,this.setValue(e,"")}updateWithValue(e){this.ngClassInstance.ngClass=e,this.ngClassInstance.ngDoCheck()}ngDoCheck(){this.ngClassInstance.ngDoCheck()}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(An),_(Sn),_(Ds),_(Fo),_(Zr),_(oa,10))},t.\u0275dir=G({type:t,inputs:{klass:["class","klass"]},features:[J]}),t})();const rW=["ngClass","ngClass.xs","ngClass.sm","ngClass.md","ngClass.lg","ngClass.xl","ngClass.lt-sm","ngClass.lt-md","ngClass.lt-lg","ngClass.lt-xl","ngClass.gt-xs","ngClass.gt-sm","ngClass.gt-md","ngClass.gt-lg"];let Ii=(()=>{class t extends iW{constructor(){super(...arguments),this.inputs=rW}}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275dir=G({type:t,selectors:[["","ngClass",""],["","ngClass.xs",""],["","ngClass.sm",""],["","ngClass.md",""],["","ngClass.lg",""],["","ngClass.xl",""],["","ngClass.lt-sm",""],["","ngClass.lt-md",""],["","ngClass.lt-lg",""],["","ngClass.lt-xl",""],["","ngClass.gt-xs",""],["","ngClass.gt-sm",""],["","ngClass.gt-md",""],["","ngClass.gt-lg",""]],inputs:{ngClass:"ngClass","ngClass.xs":"ngClass.xs","ngClass.sm":"ngClass.sm","ngClass.md":"ngClass.md","ngClass.lg":"ngClass.lg","ngClass.xl":"ngClass.xl","ngClass.lt-sm":"ngClass.lt-sm","ngClass.lt-md":"ngClass.lt-md","ngClass.lt-lg":"ngClass.lt-lg","ngClass.lt-xl":"ngClass.lt-xl","ngClass.gt-xs":"ngClass.gt-xs","ngClass.gt-sm":"ngClass.gt-sm","ngClass.gt-md":"ngClass.gt-md","ngClass.gt-lg":"ngClass.gt-lg"},features:[J]}),t})(),sW=(()=>{class t extends Un{buildStyles(e,i){return{display:"true"===e?i.display||(i.isServer?"initial":""):"none"}}}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),aW=(()=>{class t extends Rn{constructor(e,i,r,s,a,o,l){super(e,i,r,s),this.layoutConfig=a,this.platformId=o,this.serverModuleLoaded=l,this.DIRECTIVE_KEY="show-hide",this.display="",this.hasLayout=!1,this.hasFlexChild=!1}ngAfterViewInit(){this.trackExtraTriggers();const e=Array.from(this.nativeElement.children);for(let r=0;r<e.length;r++)if(this.marshal.hasValue(e[r],"flex")){this.hasFlexChild=!0;break}ab.has(this.nativeElement)?this.display=ab.get(this.nativeElement):(this.display=this.getDisplayStyle(),ab.set(this.nativeElement,this.display)),this.init();const i=this.marshal.getValue(this.nativeElement,this.DIRECTIVE_KEY,"");void 0===i||""===i?this.setValue(!0,""):this.triggerUpdate()}ngOnChanges(e){Object.keys(e).forEach(i=>{if(-1!==this.inputs.indexOf(i)){const r=i.split("."),s=r.slice(1).join("."),a=e[i].currentValue;let o=""===a||0!==a&&zt(a);"fxHide"===r[0]&&(o=!o),this.setValue(o,s)}})}trackExtraTriggers(){this.hasLayout=this.marshal.hasValue(this.nativeElement,"layout"),["layout","layout-align"].forEach(e=>{this.marshal.trackValue(this.nativeElement,e).pipe(dt(this.destroySubject)).subscribe(this.triggerUpdate.bind(this))})}getDisplayStyle(){return this.hasLayout||this.hasFlexChild&&this.layoutConfig.addFlexToParent?"flex":this.styler.lookupStyle(this.nativeElement,"display",!0)}updateWithValue(e=!0){if(""===e)return;const i=hc(this.platformId);this.addStyles(e?"true":"false",{display:this.display,isServer:i}),i&&this.serverModuleLoaded&&this.nativeElement.style.setProperty("display",""),this.marshal.triggerUpdate(this.parentElement,"layout-gap")}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(sW),_(An),_(Sn),_(os),_(Pr),_(Dc))},t.\u0275dir=G({type:t,features:[J,$n]}),t})();const ab=new WeakMap,oW=["fxShow","fxShow.print","fxShow.xs","fxShow.sm","fxShow.md","fxShow.lg","fxShow.xl","fxShow.lt-sm","fxShow.lt-md","fxShow.lt-lg","fxShow.lt-xl","fxShow.gt-xs","fxShow.gt-sm","fxShow.gt-md","fxShow.gt-lg","fxHide","fxHide.print","fxHide.xs","fxHide.sm","fxHide.md","fxHide.lg","fxHide.xl","fxHide.lt-sm","fxHide.lt-md","fxHide.lt-lg","fxHide.lt-xl","fxHide.gt-xs","fxHide.gt-sm","fxHide.gt-md","fxHide.gt-lg"];let Os=(()=>{class t extends aW{constructor(){super(...arguments),this.inputs=oW}}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275dir=G({type:t,selectors:[["","fxShow",""],["","fxShow.print",""],["","fxShow.xs",""],["","fxShow.sm",""],["","fxShow.md",""],["","fxShow.lg",""],["","fxShow.xl",""],["","fxShow.lt-sm",""],["","fxShow.lt-md",""],["","fxShow.lt-lg",""],["","fxShow.lt-xl",""],["","fxShow.gt-xs",""],["","fxShow.gt-sm",""],["","fxShow.gt-md",""],["","fxShow.gt-lg",""],["","fxHide",""],["","fxHide.print",""],["","fxHide.xs",""],["","fxHide.sm",""],["","fxHide.md",""],["","fxHide.lg",""],["","fxHide.xl",""],["","fxHide.lt-sm",""],["","fxHide.lt-md",""],["","fxHide.lt-lg",""],["","fxHide.lt-xl",""],["","fxHide.gt-xs",""],["","fxHide.gt-sm",""],["","fxHide.gt-md",""],["","fxHide.gt-lg",""]],inputs:{fxShow:"fxShow","fxShow.print":"fxShow.print","fxShow.xs":"fxShow.xs","fxShow.sm":"fxShow.sm","fxShow.md":"fxShow.md","fxShow.lg":"fxShow.lg","fxShow.xl":"fxShow.xl","fxShow.lt-sm":"fxShow.lt-sm","fxShow.lt-md":"fxShow.lt-md","fxShow.lt-lg":"fxShow.lt-lg","fxShow.lt-xl":"fxShow.lt-xl","fxShow.gt-xs":"fxShow.gt-xs","fxShow.gt-sm":"fxShow.gt-sm","fxShow.gt-md":"fxShow.gt-md","fxShow.gt-lg":"fxShow.gt-lg",fxHide:"fxHide","fxHide.print":"fxHide.print","fxHide.xs":"fxHide.xs","fxHide.sm":"fxHide.sm","fxHide.md":"fxHide.md","fxHide.lg":"fxHide.lg","fxHide.xl":"fxHide.xl","fxHide.lt-sm":"fxHide.lt-sm","fxHide.lt-md":"fxHide.lt-md","fxHide.lt-lg":"fxHide.lt-lg","fxHide.lt-xl":"fxHide.lt-xl","fxHide.gt-xs":"fxHide.gt-xs","fxHide.gt-sm":"fxHide.gt-sm","fxHide.gt-md":"fxHide.gt-md","fxHide.gt-lg":"fxHide.gt-lg"},features:[J]}),t})(),mM=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[tb]}),t})(),pW=(()=>{class t extends Un{buildStyles(e,{display:i}){const r=XI(e);return{...r,display:"none"===i?i:r.display}}}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const gW=["fxLayout","fxLayout.xs","fxLayout.sm","fxLayout.md","fxLayout.lg","fxLayout.xl","fxLayout.lt-sm","fxLayout.lt-md","fxLayout.lt-lg","fxLayout.lt-xl","fxLayout.gt-xs","fxLayout.gt-sm","fxLayout.gt-md","fxLayout.gt-lg"];let mW=(()=>{class t extends Rn{constructor(e,i,r,s,a){super(e,r,i,s),this._config=a,this.DIRECTIVE_KEY="layout",this.init()}updateWithValue(e){const r=this._config.detectLayoutDisplay?this.styler.lookupStyle(this.nativeElement,"display"):"";this.styleCache=_M.get(r)??new Map,_M.set(r,this.styleCache),this.currentValue!==e&&(this.addStyles(e,{display:r}),this.currentValue=e)}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(An),_(pW),_(Sn),_(os))},t.\u0275dir=G({type:t,features:[J]}),t})(),Dn=(()=>{class t extends mW{constructor(){super(...arguments),this.inputs=gW}}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275dir=G({type:t,selectors:[["","fxLayout",""],["","fxLayout.xs",""],["","fxLayout.sm",""],["","fxLayout.md",""],["","fxLayout.lg",""],["","fxLayout.xl",""],["","fxLayout.lt-sm",""],["","fxLayout.lt-md",""],["","fxLayout.lt-lg",""],["","fxLayout.lt-xl",""],["","fxLayout.gt-xs",""],["","fxLayout.gt-sm",""],["","fxLayout.gt-md",""],["","fxLayout.gt-lg",""]],inputs:{fxLayout:"fxLayout","fxLayout.xs":"fxLayout.xs","fxLayout.sm":"fxLayout.sm","fxLayout.md":"fxLayout.md","fxLayout.lg":"fxLayout.lg","fxLayout.xl":"fxLayout.xl","fxLayout.lt-sm":"fxLayout.lt-sm","fxLayout.lt-md":"fxLayout.lt-md","fxLayout.lt-lg":"fxLayout.lt-lg","fxLayout.lt-xl":"fxLayout.lt-xl","fxLayout.gt-xs":"fxLayout.gt-xs","fxLayout.gt-sm":"fxLayout.gt-sm","fxLayout.gt-md":"fxLayout.gt-md","fxLayout.gt-lg":"fxLayout.gt-lg"},features:[J]}),t})();const _M=new Map,yM={"margin-left":null,"margin-right":null,"margin-top":null,"margin-bottom":null};let _W=(()=>{class t extends Un{constructor(e,i){super(),this._styler=e,this._config=i}buildStyles(e,i){return e.endsWith($p)?function SW(t,n){const[e,i]=t.split(" "),s=u=>`-${u}`;let a="0px",o=s(i??e),l="0px";return"rtl"===n?l=s(e):a=s(e),{margin:`0px ${a} ${o} ${l}`}}(e=Zp(e=e.slice(0,e.indexOf($p)),this._config.multiplier),i.directionality):{}}sideEffect(e,i,r){const s=r.items;if(e.endsWith($p)){const a=function EW(t,n){const[e,i]=t.split(" ");let s="0px",o="0px";return"rtl"===n?o=e:s=e,{padding:`0px ${s} ${i??e} ${o}`}}(e=Zp(e=e.slice(0,e.indexOf($p)),this._config.multiplier),r.directionality);this._styler.applyStyleToElements(a,r.items)}else{e=Zp(e,this._config.multiplier),e=this.addFallbackUnit(e);const a=s.pop(),o=function DW(t,n){const e=AM(n.directionality,n.layout),i={...yM};return i[e]=t,i}(e,r);this._styler.applyStyleToElements(o,s),this._styler.applyStyleToElements(yM,[a])}}addFallbackUnit(e){return isNaN(+e)?e:`${e}${this._config.defaultUnit}`}}return t.\u0275fac=function(e){return new(e||t)(R(An),R(os))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const yW=["fxLayoutGap","fxLayoutGap.xs","fxLayoutGap.sm","fxLayoutGap.md","fxLayoutGap.lg","fxLayoutGap.xl","fxLayoutGap.lt-sm","fxLayoutGap.lt-md","fxLayoutGap.lt-lg","fxLayoutGap.lt-xl","fxLayoutGap.gt-xs","fxLayoutGap.gt-sm","fxLayoutGap.gt-md","fxLayoutGap.gt-lg"];let AW=(()=>{class t extends Rn{constructor(e,i,r,s,a,o){super(e,a,s,o),this.zone=i,this.directionality=r,this.styleUtils=s,this.layout="row",this.DIRECTIVE_KEY="layout-gap",this.observerSubject=new pe;const l=[this.directionality.change,this.observerSubject.asObservable()];this.init(l),this.marshal.trackValue(this.nativeElement,"layout").pipe(dt(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}get childrenNodes(){const e=this.nativeElement.children,i=[];for(let r=e.length;r--;)i[r]=e[r];return i}ngAfterContentInit(){this.buildChildObservable(),this.triggerUpdate()}ngOnDestroy(){super.ngOnDestroy(),this.observer&&this.observer.disconnect()}onLayoutChange(e){const r=e.value.split(" ");this.layout=r[0],Qp.find(s=>s===this.layout)||(this.layout="row"),this.triggerUpdate()}updateWithValue(e){const i=this.childrenNodes.filter(r=>1===r.nodeType&&this.willDisplay(r)).sort((r,s)=>{const a=+this.styler.lookupStyle(r,"order"),o=+this.styler.lookupStyle(s,"order");return isNaN(a)||isNaN(o)||a===o?0:a>o?1:-1});if(i.length>0){const r=this.directionality.value,s=this.layout;"row"===s&&"rtl"===r?this.styleCache=vW:"row"===s&&"rtl"!==r?this.styleCache=CW:"column"===s&&"rtl"===r?this.styleCache=bW:"column"===s&&"rtl"!==r&&(this.styleCache=TW),this.addStyles(e,{directionality:r,items:i,layout:s})}}clearStyles(){const e=Object.keys(this.mru).length>0,i=e?"padding":AM(this.directionality.value,this.layout);e&&super.clearStyles(),this.styleUtils.applyStyleToElements({[i]:""},this.childrenNodes)}willDisplay(e){const i=this.marshal.getValue(e,"show-hide");return!0===i||void 0===i&&"none"!==this.styleUtils.lookupStyle(e,"display")}buildChildObservable(){this.zone.runOutsideAngular(()=>{typeof MutationObserver<"u"&&(this.observer=new MutationObserver(e=>{e.some(r=>r.addedNodes&&r.addedNodes.length>0||r.removedNodes&&r.removedNodes.length>0)&&this.observerSubject.next()}),this.observer.observe(this.nativeElement,{childList:!0}))})}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(He),_(Is),_(An),_(_W),_(Sn))},t.\u0275dir=G({type:t,features:[J]}),t})(),$a=(()=>{class t extends AW{constructor(){super(...arguments),this.inputs=yW}}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275dir=G({type:t,selectors:[["","fxLayoutGap",""],["","fxLayoutGap.xs",""],["","fxLayoutGap.sm",""],["","fxLayoutGap.md",""],["","fxLayoutGap.lg",""],["","fxLayoutGap.xl",""],["","fxLayoutGap.lt-sm",""],["","fxLayoutGap.lt-md",""],["","fxLayoutGap.lt-lg",""],["","fxLayoutGap.lt-xl",""],["","fxLayoutGap.gt-xs",""],["","fxLayoutGap.gt-sm",""],["","fxLayoutGap.gt-md",""],["","fxLayoutGap.gt-lg",""]],inputs:{fxLayoutGap:"fxLayoutGap","fxLayoutGap.xs":"fxLayoutGap.xs","fxLayoutGap.sm":"fxLayoutGap.sm","fxLayoutGap.md":"fxLayoutGap.md","fxLayoutGap.lg":"fxLayoutGap.lg","fxLayoutGap.xl":"fxLayoutGap.xl","fxLayoutGap.lt-sm":"fxLayoutGap.lt-sm","fxLayoutGap.lt-md":"fxLayoutGap.lt-md","fxLayoutGap.lt-lg":"fxLayoutGap.lt-lg","fxLayoutGap.lt-xl":"fxLayoutGap.lt-xl","fxLayoutGap.gt-xs":"fxLayoutGap.gt-xs","fxLayoutGap.gt-sm":"fxLayoutGap.gt-sm","fxLayoutGap.gt-md":"fxLayoutGap.gt-md","fxLayoutGap.gt-lg":"fxLayoutGap.gt-lg"},features:[J]}),t})();const vW=new Map,bW=new Map,CW=new Map,TW=new Map,$p=" grid";function AM(t,n){switch(n){case"column":return"margin-bottom";case"column-reverse":return"margin-top";case"row":default:return"rtl"===t?"margin-left":"margin-right";case"row-reverse":return"rtl"===t?"margin-right":"margin-left"}}let wW=(()=>{class t extends Un{constructor(e){super(),this.layoutConfig=e}buildStyles(e,i){let[r,s,...a]=e.split(" "),o=a.join(" ");const l=i.direction.indexOf("column")>-1?"column":"row",u=Ed(l)?"max-width":"max-height",h=Ed(l)?"min-width":"min-height",p=String(o).indexOf("calc")>-1,C=p||"auto"===o,w=String(o).indexOf("%")>-1&&!p,k=String(o).indexOf("px")>-1||String(o).indexOf("rem")>-1||String(o).indexOf("em")>-1||String(o).indexOf("vw")>-1||String(o).indexOf("vh")>-1;let L=p||k;r="0"==r?0:r,s="0"==s?0:s;const U=!r&&!s;let z={};const ie={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(o||""){case"":const X=!1!==this.layoutConfig.useColumnBasisZero;o="row"===l?"0%":X?"0.000000001px":"auto";break;case"initial":case"nogrow":r=0,o="auto";break;case"grow":o="100%";break;case"noshrink":s=0,o="auto";break;case"auto":break;case"none":r=0,s=0,o="auto";break;default:!L&&!w&&!isNaN(o)&&(o+="%"),"0%"===o&&(L=!0),"0px"===o&&(o="0%"),z=ga(ie,p?{"flex-grow":r,"flex-shrink":s,"flex-basis":L?o:"100%"}:{flex:`${r} ${s} ${L?o:"100%"}`})}return z.flex||z["flex-grow"]||(z=ga(ie,p?{"flex-grow":r,"flex-shrink":s,"flex-basis":o}:{flex:`${r} ${s} ${o}`})),"0%"!==o&&"0px"!==o&&"0.000000001px"!==o&&"auto"!==o&&(z[h]=U||L&&r?o:null,z[u]=U||!C&&s?o:null),z[h]||z[u]?i.hasWrap&&(z[p?"flex-basis":"flex"]=z[u]?p?z[u]:`${r} ${s} ${z[u]}`:p?z[h]:`${r} ${s} ${z[h]}`):z=ga(ie,p?{"flex-grow":r,"flex-shrink":s,"flex-basis":o}:{flex:`${r} ${s} ${o}`}),ga(z,{"box-sizing":"border-box"})}}return t.\u0275fac=function(e){return new(e||t)(R(os))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const xW=["fxFlex","fxFlex.xs","fxFlex.sm","fxFlex.md","fxFlex.lg","fxFlex.xl","fxFlex.lt-sm","fxFlex.lt-md","fxFlex.lt-lg","fxFlex.lt-xl","fxFlex.gt-xs","fxFlex.gt-sm","fxFlex.gt-md","fxFlex.gt-lg"];let kW=(()=>{class t extends Rn{constructor(e,i,r,s,a){super(e,s,i,a),this.layoutConfig=r,this.marshal=a,this.DIRECTIVE_KEY="flex",this.direction=void 0,this.wrap=void 0,this.flexGrow="1",this.flexShrink="1",this.init()}get shrink(){return this.flexShrink}set shrink(e){this.flexShrink=e||"1",this.triggerReflow()}get grow(){return this.flexGrow}set grow(e){this.flexGrow=e||"1",this.triggerReflow()}ngOnInit(){this.parentElement&&(this.marshal.trackValue(this.parentElement,"layout").pipe(dt(this.destroySubject)).subscribe(this.onLayoutChange.bind(this)),this.marshal.trackValue(this.nativeElement,"layout-align").pipe(dt(this.destroySubject)).subscribe(this.triggerReflow.bind(this)))}onLayoutChange(e){const r=e.value.split(" ");this.direction=r[0],this.wrap=void 0!==r[1]&&"wrap"===r[1],this.triggerUpdate()}updateWithValue(e){void 0===this.direction&&(this.direction=this.getFlexFlowDirection(this.parentElement,!1!==this.layoutConfig.addFlexToParent)),void 0===this.wrap&&(this.wrap=this.hasWrap(this.parentElement));const r=this.direction,s=r.startsWith("row"),a=this.wrap;s&&a?this.styleCache=RW:s&&!a?this.styleCache=IW:!s&&a?this.styleCache=OW:!s&&!a&&(this.styleCache=MW);const l=lM(String(e).replace(";",""),this.flexGrow,this.flexShrink);this.addStyles(l.join(" "),{direction:r,hasWrap:a})}triggerReflow(){const e=this.activatedValue;if(void 0!==e){const i=lM(e+"",this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,i.join(" "))}}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(An),_(os),_(wW),_(Sn))},t.\u0275dir=G({type:t,inputs:{shrink:["fxShrink","shrink"],grow:["fxGrow","grow"]},features:[J]}),t})(),qi=(()=>{class t extends kW{constructor(){super(...arguments),this.inputs=xW}}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275dir=G({type:t,selectors:[["","fxFlex",""],["","fxFlex.xs",""],["","fxFlex.sm",""],["","fxFlex.md",""],["","fxFlex.lg",""],["","fxFlex.xl",""],["","fxFlex.lt-sm",""],["","fxFlex.lt-md",""],["","fxFlex.lt-lg",""],["","fxFlex.lt-xl",""],["","fxFlex.gt-xs",""],["","fxFlex.gt-sm",""],["","fxFlex.gt-md",""],["","fxFlex.gt-lg",""]],inputs:{fxFlex:"fxFlex","fxFlex.xs":"fxFlex.xs","fxFlex.sm":"fxFlex.sm","fxFlex.md":"fxFlex.md","fxFlex.lg":"fxFlex.lg","fxFlex.xl":"fxFlex.xl","fxFlex.lt-sm":"fxFlex.lt-sm","fxFlex.lt-md":"fxFlex.lt-md","fxFlex.lt-lg":"fxFlex.lt-lg","fxFlex.lt-xl":"fxFlex.lt-xl","fxFlex.gt-xs":"fxFlex.gt-xs","fxFlex.gt-sm":"fxFlex.gt-sm","fxFlex.gt-md":"fxFlex.gt-md","fxFlex.gt-lg":"fxFlex.gt-lg"},features:[J]}),t})();const IW=new Map,MW=new Map,RW=new Map,OW=new Map;let n6=(()=>{class t extends Un{buildStyles(e,i){const r={},[s,a]=e.split(" ");switch(s){case"center":r["justify-content"]="center";break;case"space-around":r["justify-content"]="space-around";break;case"space-between":r["justify-content"]="space-between";break;case"space-evenly":r["justify-content"]="space-evenly";break;case"end":case"flex-end":r["justify-content"]="flex-end";break;default:r["justify-content"]="flex-start"}switch(a){case"start":case"flex-start":r["align-items"]=r["align-content"]="flex-start";break;case"center":r["align-items"]=r["align-content"]="center";break;case"end":case"flex-end":r["align-items"]=r["align-content"]="flex-end";break;case"space-between":r["align-content"]="space-between",r["align-items"]="stretch";break;case"space-around":r["align-content"]="space-around",r["align-items"]="stretch";break;case"baseline":r["align-content"]="stretch",r["align-items"]="baseline";break;default:r["align-items"]=r["align-content"]="stretch"}return ga(r,{display:i.inline?"inline-flex":"flex","flex-direction":i.layout,"box-sizing":"border-box","max-width":"stretch"===a?Ed(i.layout)?null:"100%":null,"max-height":"stretch"===a&&Ed(i.layout)?"100%":null})}}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const r6=["fxLayoutAlign","fxLayoutAlign.xs","fxLayoutAlign.sm","fxLayoutAlign.md","fxLayoutAlign.lg","fxLayoutAlign.xl","fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg"];let s6=(()=>{class t extends Rn{constructor(e,i,r,s){super(e,r,i,s),this.DIRECTIVE_KEY="layout-align",this.layout="row",this.inline=!1,this.init(),this.marshal.trackValue(this.nativeElement,"layout").pipe(dt(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}updateWithValue(e){const i=this.layout||"row",r=this.inline;"row"===i&&r?this.styleCache=u6:"row"!==i||r?"row-reverse"===i&&r?this.styleCache=h6:"row-reverse"!==i||r?"column"===i&&r?this.styleCache=d6:"column"!==i||r?"column-reverse"===i&&r?this.styleCache=f6:"column-reverse"===i&&!r&&(this.styleCache=c6):this.styleCache=o6:this.styleCache=l6:this.styleCache=a6,this.addStyles(e,{layout:i,inline:r})}onLayoutChange(e){const i=e.value.split(" ");this.layout=i[0],this.inline=e.value.includes("inline"),Qp.find(r=>r===this.layout)||(this.layout="row"),this.triggerUpdate()}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(An),_(n6),_(Sn))},t.\u0275dir=G({type:t,features:[J]}),t})(),Xn=(()=>{class t extends s6{constructor(){super(...arguments),this.inputs=r6}}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275dir=G({type:t,selectors:[["","fxLayoutAlign",""],["","fxLayoutAlign.xs",""],["","fxLayoutAlign.sm",""],["","fxLayoutAlign.md",""],["","fxLayoutAlign.lg",""],["","fxLayoutAlign.xl",""],["","fxLayoutAlign.lt-sm",""],["","fxLayoutAlign.lt-md",""],["","fxLayoutAlign.lt-lg",""],["","fxLayoutAlign.lt-xl",""],["","fxLayoutAlign.gt-xs",""],["","fxLayoutAlign.gt-sm",""],["","fxLayoutAlign.gt-md",""],["","fxLayoutAlign.gt-lg",""]],inputs:{fxLayoutAlign:"fxLayoutAlign","fxLayoutAlign.xs":"fxLayoutAlign.xs","fxLayoutAlign.sm":"fxLayoutAlign.sm","fxLayoutAlign.md":"fxLayoutAlign.md","fxLayoutAlign.lg":"fxLayoutAlign.lg","fxLayoutAlign.xl":"fxLayoutAlign.xl","fxLayoutAlign.lt-sm":"fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md":"fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg":"fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl":"fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs":"fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm":"fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md":"fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg":"fxLayoutAlign.gt-lg"},features:[J]}),t})();const a6=new Map,o6=new Map,l6=new Map,c6=new Map,u6=new Map,d6=new Map,h6=new Map,f6=new Map;let vM=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[tb,vc]}),t})(),xM=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[tb]}),t})(),xc=(()=>{class t{constructor(e,i){hc(i)&&!e&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}static withConfig(e,i=[]){return{ngModule:t,providers:e.serverLoaded?[{provide:os,useValue:{...nb,...e}},{provide:ib,useValue:i,multi:!0},{provide:Dc,useValue:!0}]:[{provide:os,useValue:{...nb,...e}},{provide:ib,useValue:i,multi:!0}]}}}return t.\u0275fac=function(e){return new(e||t)(R(Dc),R(Pr))},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[vM,mM,xM,vM,mM,xM]}),t})();const Jp=zn(t=>function(){t(this),this.name="EmptyError",this.message="no elements in sequence"});function rl(t,n){const e=de(t)?t:()=>t,i=r=>r.error(e());return new Ct(n?r=>n.schedule(i,0,r):i)}function ob(){return ln((t,n)=>{let e=null;t._refCount++;const i=Zt(n,void 0,void 0,void 0,()=>{if(!t||t._refCount<=0||0<--t._refCount)return void(e=null);const r=t._connection,s=e;e=null,r&&(!s||r===s)&&r.unsubscribe(),n.unsubscribe()});t.subscribe(i),i.closed||(e=t.connect())})}class lb extends Ct{constructor(n,e){super(),this.source=n,this.subjectFactory=e,this._subject=null,this._refCount=0,this._connection=null,eu(n)&&(this.lift=n.lift)}_subscribe(n){return this.getSubject().subscribe(n)}getSubject(){const n=this._subject;return(!n||n.isStopped)&&(this._subject=this.subjectFactory()),this._subject}_teardown(){this._refCount=0;const{_connection:n}=this;this._subject=this._connection=null,n?.unsubscribe()}connect(){let n=this._connection;if(!n){n=this._connection=new ae;const e=this.getSubject();n.add(this.source.subscribe(Zt(e,void 0,()=>{this._teardown(),e.complete()},i=>{this._teardown(),e.error(i)},()=>this._teardown()))),n.closed&&(this._connection=null,n=ae.EMPTY)}return n}refCount(){return ob()(this)}}function eg(t){return ln((n,e)=>{let i=!1;n.subscribe(Zt(e,r=>{i=!0,e.next(r)},()=>{i||e.next(t),e.complete()}))})}function kM(t=N9){return ln((n,e)=>{let i=!1;n.subscribe(Zt(e,r=>{i=!0,e.next(r)},()=>i?e.complete():e.error(t())))})}function N9(){return new Jp}function Ja(t,n){const e=arguments.length>=2;return i=>i.pipe(t?Tn((r,s)=>t(r,s,i)):$i,gn(1),e?eg(n):kM(()=>new Jp))}function br(t){return ln((n,e)=>{let s,i=null,r=!1;i=n.subscribe(Zt(e,void 0,void 0,a=>{s=Hn(t(a,br(t)(n))),i?(i.unsubscribe(),i=null,s.subscribe(e)):r=!0})),r&&(i.unsubscribe(),i=null,s.subscribe(e))})}function F9(t,n,e,i,r){return(s,a)=>{let o=e,l=n,u=0;s.subscribe(Zt(a,h=>{const p=u++;l=o?t(l,h,p):(o=!0,h),i&&a.next(l)},r&&(()=>{o&&a.next(l),a.complete()})))}}function IM(t,n){return ln(F9(t,n,arguments.length>=2,!0))}function cb(t){return t<=0?()=>wr:ln((n,e)=>{let i=[];n.subscribe(Zt(e,r=>{i.push(r),t<i.length&&i.shift()},()=>{for(const r of i)e.next(r);e.complete()},void 0,()=>{i=null}))})}function MM(t,n){const e=arguments.length>=2;return i=>i.pipe(t?Tn((r,s)=>t(r,s,i)):$i,cb(1),e?eg(n):kM(()=>new Jp))}function RM(t){return Le(()=>t)}function tg(t){return ln((n,e)=>{try{n.subscribe(e)}finally{e.add(t)}})}const wt="primary",Dd=Symbol("RouteTitle");class V9{constructor(n){this.params=n||{}}has(n){return Object.prototype.hasOwnProperty.call(this.params,n)}get(n){if(this.has(n)){const e=this.params[n];return Array.isArray(e)?e[0]:e}return null}getAll(n){if(this.has(n)){const e=this.params[n];return Array.isArray(e)?e:[e]}return[]}get keys(){return Object.keys(this.params)}}function kc(t){return new V9(t)}function U9(t,n,e){const i=e.path.split("/");if(i.length>t.length||"full"===e.pathMatch&&(n.hasChildren()||i.length<t.length))return null;const r={};for(let s=0;s<i.length;s++){const a=i[s],o=t[s];if(a.startsWith(":"))r[a.substring(1)]=o;else if(a!==o.path)return null}return{consumed:t.slice(0,i.length),posParams:r}}function Ls(t,n){const e=t?Object.keys(t):void 0,i=n?Object.keys(n):void 0;if(!e||!i||e.length!=i.length)return!1;let r;for(let s=0;s<e.length;s++)if(r=e[s],!OM(t[r],n[r]))return!1;return!0}function OM(t,n){if(Array.isArray(t)&&Array.isArray(n)){if(t.length!==n.length)return!1;const e=[...t].sort(),i=[...n].sort();return e.every((r,s)=>i[s]===r)}return t===n}function LM(t){return Array.prototype.concat.apply([],t)}function PM(t){return t.length>0?t[t.length-1]:null}function Ti(t,n){for(const e in t)t.hasOwnProperty(e)&&n(t[e],e)}function eo(t){return iy(t)?t:Fu(t)?vn(Promise.resolve(t)):ye(t)}const H9={exact:function BM(t,n,e){if(!al(t.segments,n.segments)||!ng(t.segments,n.segments,e)||t.numberOfChildren!==n.numberOfChildren)return!1;for(const i in n.children)if(!t.children[i]||!BM(t.children[i],n.children[i],e))return!1;return!0},subset:VM},NM={exact:function G9(t,n){return Ls(t,n)},subset:function W9(t,n){return Object.keys(n).length<=Object.keys(t).length&&Object.keys(n).every(e=>OM(t[e],n[e]))},ignored:()=>!0};function FM(t,n,e){return H9[e.paths](t.root,n.root,e.matrixParams)&&NM[e.queryParams](t.queryParams,n.queryParams)&&!("exact"===e.fragment&&t.fragment!==n.fragment)}function VM(t,n,e){return UM(t,n,n.segments,e)}function UM(t,n,e,i){if(t.segments.length>e.length){const r=t.segments.slice(0,e.length);return!(!al(r,e)||n.hasChildren()||!ng(r,e,i))}if(t.segments.length===e.length){if(!al(t.segments,e)||!ng(t.segments,e,i))return!1;for(const r in n.children)if(!t.children[r]||!VM(t.children[r],n.children[r],i))return!1;return!0}{const r=e.slice(0,t.segments.length),s=e.slice(t.segments.length);return!!(al(t.segments,r)&&ng(t.segments,r,i)&&t.children[wt])&&UM(t.children[wt],n,s,i)}}function ng(t,n,e){return n.every((i,r)=>NM[e](t[r].parameters,i.parameters))}class sl{constructor(n,e,i){this.root=n,this.queryParams=e,this.fragment=i}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=kc(this.queryParams)),this._queryParamMap}toString(){return q9.serialize(this)}}class kt{constructor(n,e){this.segments=n,this.children=e,this.parent=null,Ti(e,(i,r)=>i.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return ig(this)}}class wd{constructor(n,e){this.path=n,this.parameters=e}get parameterMap(){return this._parameterMap||(this._parameterMap=kc(this.parameters)),this._parameterMap}toString(){return GM(this)}}function al(t,n){return t.length===n.length&&t.every((e,i)=>e.path===n[i].path)}let jM=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:function(){return new db},providedIn:"root"}),t})();class db{parse(n){const e=new r7(n);return new sl(e.parseRootSegment(),e.parseQueryParams(),e.parseFragment())}serialize(n){const e=`/${xd(n.root,!0)}`,i=function Z9(t){const n=Object.keys(t).map(e=>{const i=t[e];return Array.isArray(i)?i.map(r=>`${rg(e)}=${rg(r)}`).join("&"):`${rg(e)}=${rg(i)}`}).filter(e=>!!e);return n.length?`?${n.join("&")}`:""}(n.queryParams);return`${e}${i}${"string"==typeof n.fragment?`#${function X9(t){return encodeURI(t)}(n.fragment)}`:""}`}}const q9=new db;function ig(t){return t.segments.map(n=>GM(n)).join("/")}function xd(t,n){if(!t.hasChildren())return ig(t);if(n){const e=t.children[wt]?xd(t.children[wt],!1):"",i=[];return Ti(t.children,(r,s)=>{s!==wt&&i.push(`${s}:${xd(r,!1)}`)}),i.length>0?`${e}(${i.join("//")})`:e}{const e=function Y9(t,n){let e=[];return Ti(t.children,(i,r)=>{r===wt&&(e=e.concat(n(i,r)))}),Ti(t.children,(i,r)=>{r!==wt&&(e=e.concat(n(i,r)))}),e}(t,(i,r)=>r===wt?[xd(t.children[wt],!1)]:[`${r}:${xd(i,!1)}`]);return 1===Object.keys(t.children).length&&null!=t.children[wt]?`${ig(t)}/${e[0]}`:`${ig(t)}/(${e.join("//")})`}}function zM(t){return encodeURIComponent(t).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function rg(t){return zM(t).replace(/%3B/gi,";")}function hb(t){return zM(t).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function sg(t){return decodeURIComponent(t)}function HM(t){return sg(t.replace(/\+/g,"%20"))}function GM(t){return`${hb(t.path)}${function Q9(t){return Object.keys(t).map(n=>`;${hb(n)}=${hb(t[n])}`).join("")}(t.parameters)}`}const $9=/^[^\/()?;=#]+/;function ag(t){const n=t.match($9);return n?n[0]:""}const J9=/^[^=?&#]+/,t7=/^[^&#]+/;class r7{constructor(n){this.url=n,this.remaining=n}parseRootSegment(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new kt([],{}):new kt([],this.parseChildren())}parseQueryParams(){const n={};if(this.consumeOptional("?"))do{this.parseQueryParam(n)}while(this.consumeOptional("&"));return n}parseFragment(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null}parseChildren(){if(""===this.remaining)return{};this.consumeOptional("/");const n=[];for(this.peekStartsWith("(")||n.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),n.push(this.parseSegment());let e={};this.peekStartsWith("/(")&&(this.capture("/"),e=this.parseParens(!0));let i={};return this.peekStartsWith("(")&&(i=this.parseParens(!1)),(n.length>0||Object.keys(e).length>0)&&(i[wt]=new kt(n,e)),i}parseSegment(){const n=ag(this.remaining);if(""===n&&this.peekStartsWith(";"))throw new ne(4009,!1);return this.capture(n),new wd(sg(n),this.parseMatrixParams())}parseMatrixParams(){const n={};for(;this.consumeOptional(";");)this.parseParam(n);return n}parseParam(n){const e=ag(this.remaining);if(!e)return;this.capture(e);let i="";if(this.consumeOptional("=")){const r=ag(this.remaining);r&&(i=r,this.capture(i))}n[sg(e)]=sg(i)}parseQueryParam(n){const e=function e7(t){const n=t.match(J9);return n?n[0]:""}(this.remaining);if(!e)return;this.capture(e);let i="";if(this.consumeOptional("=")){const a=function n7(t){const n=t.match(t7);return n?n[0]:""}(this.remaining);a&&(i=a,this.capture(i))}const r=HM(e),s=HM(i);if(n.hasOwnProperty(r)){let a=n[r];Array.isArray(a)||(a=[a],n[r]=a),a.push(s)}else n[r]=s}parseParens(n){const e={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){const i=ag(this.remaining),r=this.remaining[i.length];if("/"!==r&&")"!==r&&";"!==r)throw new ne(4010,!1);let s;i.indexOf(":")>-1?(s=i.slice(0,i.indexOf(":")),this.capture(s),this.capture(":")):n&&(s=wt);const a=this.parseChildren();e[s]=1===Object.keys(a).length?a[wt]:new kt([],a),this.consumeOptional("//")}return e}peekStartsWith(n){return this.remaining.startsWith(n)}consumeOptional(n){return!!this.peekStartsWith(n)&&(this.remaining=this.remaining.substring(n.length),!0)}capture(n){if(!this.consumeOptional(n))throw new ne(4011,!1)}}function fb(t){return t.segments.length>0?new kt([],{[wt]:t}):t}function og(t){const n={};for(const i of Object.keys(t.children)){const s=og(t.children[i]);(s.segments.length>0||s.hasChildren())&&(n[i]=s)}return function s7(t){if(1===t.numberOfChildren&&t.children[wt]){const n=t.children[wt];return new kt(t.segments.concat(n.segments),n.children)}return t}(new kt(t.segments,n))}function ol(t){return t instanceof sl}function l7(t,n,e,i,r){if(0===e.length)return Ic(n.root,n.root,n.root,i,r);const s=function YM(t){if("string"==typeof t[0]&&1===t.length&&"/"===t[0])return new KM(!0,0,t);let n=0,e=!1;const i=t.reduce((r,s,a)=>{if("object"==typeof s&&null!=s){if(s.outlets){const o={};return Ti(s.outlets,(l,u)=>{o[u]="string"==typeof l?l.split("/"):l}),[...r,{outlets:o}]}if(s.segmentPath)return[...r,s.segmentPath]}return"string"!=typeof s?[...r,s]:0===a?(s.split("/").forEach((o,l)=>{0==l&&"."===o||(0==l&&""===o?e=!0:".."===o?n++:""!=o&&r.push(o))}),r):[...r,s]},[]);return new KM(e,n,i)}(e);return s.toRoot()?Ic(n.root,n.root,new kt([],{}),i,r):function a(l){const u=function u7(t,n,e,i){if(t.isAbsolute)return new Mc(n.root,!0,0);if(-1===i)return new Mc(e,e===n.root,0);return function qM(t,n,e){let i=t,r=n,s=e;for(;s>r;){if(s-=r,i=i.parent,!i)throw new ne(4005,!1);r=i.segments.length}return new Mc(i,!1,r-s)}(e,i+(kd(t.commands[0])?0:1),t.numberOfDoubleDots)}(s,n,t.snapshot?._urlSegment,l),h=u.processChildren?Md(u.segmentGroup,u.index,s.commands):gb(u.segmentGroup,u.index,s.commands);return Ic(n.root,u.segmentGroup,h,i,r)}(t.snapshot?._lastPathIndex)}function kd(t){return"object"==typeof t&&null!=t&&!t.outlets&&!t.segmentPath}function Id(t){return"object"==typeof t&&null!=t&&t.outlets}function Ic(t,n,e,i,r){let a,s={};i&&Ti(i,(l,u)=>{s[u]=Array.isArray(l)?l.map(h=>`${h}`):`${l}`}),a=t===n?e:WM(t,n,e);const o=fb(og(a));return new sl(o,s,r)}function WM(t,n,e){const i={};return Ti(t.children,(r,s)=>{i[s]=r===n?e:WM(r,n,e)}),new kt(t.segments,i)}class KM{constructor(n,e,i){if(this.isAbsolute=n,this.numberOfDoubleDots=e,this.commands=i,n&&i.length>0&&kd(i[0]))throw new ne(4003,!1);const r=i.find(Id);if(r&&r!==PM(i))throw new ne(4004,!1)}toRoot(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]}}class Mc{constructor(n,e,i){this.segmentGroup=n,this.processChildren=e,this.index=i}}function gb(t,n,e){if(t||(t=new kt([],{})),0===t.segments.length&&t.hasChildren())return Md(t,n,e);const i=function h7(t,n,e){let i=0,r=n;const s={match:!1,pathIndex:0,commandIndex:0};for(;r<t.segments.length;){if(i>=e.length)return s;const a=t.segments[r],o=e[i];if(Id(o))break;const l=`${o}`,u=i<e.length-1?e[i+1]:null;if(r>0&&void 0===l)break;if(l&&u&&"object"==typeof u&&void 0===u.outlets){if(!QM(l,u,a))return s;i+=2}else{if(!QM(l,{},a))return s;i++}r++}return{match:!0,pathIndex:r,commandIndex:i}}(t,n,e),r=e.slice(i.commandIndex);if(i.match&&i.pathIndex<t.segments.length){const s=new kt(t.segments.slice(0,i.pathIndex),{});return s.children[wt]=new kt(t.segments.slice(i.pathIndex),t.children),Md(s,0,r)}return i.match&&0===r.length?new kt(t.segments,{}):i.match&&!t.hasChildren()?mb(t,n,e):i.match?Md(t,0,r):mb(t,n,e)}function Md(t,n,e){if(0===e.length)return new kt(t.segments,{});{const i=function d7(t){return Id(t[0])?t[0].outlets:{[wt]:t}}(e),r={};return Ti(i,(s,a)=>{"string"==typeof s&&(s=[s]),null!==s&&(r[a]=gb(t.children[a],n,s))}),Ti(t.children,(s,a)=>{void 0===i[a]&&(r[a]=s)}),new kt(t.segments,r)}}function mb(t,n,e){const i=t.segments.slice(0,n);let r=0;for(;r<e.length;){const s=e[r];if(Id(s)){const l=f7(s.outlets);return new kt(i,l)}if(0===r&&kd(e[0])){i.push(new wd(t.segments[n].path,XM(e[0]))),r++;continue}const a=Id(s)?s.outlets[wt]:`${s}`,o=r<e.length-1?e[r+1]:null;a&&o&&kd(o)?(i.push(new wd(a,XM(o))),r+=2):(i.push(new wd(a,{})),r++)}return new kt(i,{})}function f7(t){const n={};return Ti(t,(e,i)=>{"string"==typeof e&&(e=[e]),null!==e&&(n[i]=mb(new kt([],{}),0,e))}),n}function XM(t){const n={};return Ti(t,(e,i)=>n[i]=`${e}`),n}function QM(t,n,e){return t==e.path&&Ls(n,e.parameters)}class _a{constructor(n,e){this.id=n,this.url=e}}class _b extends _a{constructor(n,e,i="imperative",r=null){super(n,e),this.type=0,this.navigationTrigger=i,this.restoredState=r}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class ll extends _a{constructor(n,e,i){super(n,e),this.urlAfterRedirects=i,this.type=1}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}class lg extends _a{constructor(n,e,i,r){super(n,e),this.reason=i,this.code=r,this.type=2}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class ZM extends _a{constructor(n,e,i,r){super(n,e),this.error=i,this.target=r,this.type=3}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class p7 extends _a{constructor(n,e,i,r){super(n,e),this.urlAfterRedirects=i,this.state=r,this.type=4}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class g7 extends _a{constructor(n,e,i,r){super(n,e),this.urlAfterRedirects=i,this.state=r,this.type=7}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class m7 extends _a{constructor(n,e,i,r,s){super(n,e),this.urlAfterRedirects=i,this.state=r,this.shouldActivate=s,this.type=8}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class _7 extends _a{constructor(n,e,i,r){super(n,e),this.urlAfterRedirects=i,this.state=r,this.type=5}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class y7 extends _a{constructor(n,e,i,r){super(n,e),this.urlAfterRedirects=i,this.state=r,this.type=6}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class A7{constructor(n){this.route=n,this.type=9}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class v7{constructor(n){this.route=n,this.type=10}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class b7{constructor(n){this.snapshot=n,this.type=11}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class C7{constructor(n){this.snapshot=n,this.type=12}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class T7{constructor(n){this.snapshot=n,this.type=13}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class E7{constructor(n){this.snapshot=n,this.type=14}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class $M{constructor(n,e,i){this.routerEvent=n,this.position=e,this.anchor=i,this.type=15}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}class JM{constructor(n){this._root=n}get root(){return this._root.value}parent(n){const e=this.pathFromRoot(n);return e.length>1?e[e.length-2]:null}children(n){const e=yb(n,this._root);return e?e.children.map(i=>i.value):[]}firstChild(n){const e=yb(n,this._root);return e&&e.children.length>0?e.children[0].value:null}siblings(n){const e=Ab(n,this._root);return e.length<2?[]:e[e.length-2].children.map(r=>r.value).filter(r=>r!==n)}pathFromRoot(n){return Ab(n,this._root).map(e=>e.value)}}function yb(t,n){if(t===n.value)return n;for(const e of n.children){const i=yb(t,e);if(i)return i}return null}function Ab(t,n){if(t===n.value)return[n];for(const e of n.children){const i=Ab(t,e);if(i.length)return i.unshift(n),i}return[]}class ya{constructor(n,e){this.value=n,this.children=e}toString(){return`TreeNode(${this.value})`}}function Rc(t){const n={};return t&&t.children.forEach(e=>n[e.value.outlet]=e),n}class eR extends JM{constructor(n,e){super(n),this.snapshot=e,vb(this,n)}toString(){return this.snapshot.toString()}}function tR(t,n){const e=function D7(t,n){const a=new cg([],{},{},"",{},wt,n,null,t.root,-1,{});return new iR("",new ya(a,[]))}(t,n),i=new ki([new wd("",{})]),r=new ki({}),s=new ki({}),a=new ki({}),o=new ki(""),l=new cl(i,r,a,o,s,wt,n,e.root);return l.snapshot=e.root,new eR(new ya(l,[]),e)}class cl{constructor(n,e,i,r,s,a,o,l){this.url=n,this.params=e,this.queryParams=i,this.fragment=r,this.data=s,this.outlet=a,this.component=o,this.title=this.data?.pipe(Le(u=>u[Dd]))??ye(void 0),this._futureSnapshot=l}get routeConfig(){return this._futureSnapshot.routeConfig}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=this.params.pipe(Le(n=>kc(n)))),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe(Le(n=>kc(n)))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function nR(t,n="emptyOnly"){const e=t.pathFromRoot;let i=0;if("always"!==n)for(i=e.length-1;i>=1;){const r=e[i],s=e[i-1];if(r.routeConfig&&""===r.routeConfig.path)i--;else{if(s.component)break;i--}}return function w7(t){return t.reduce((n,e)=>({params:{...n.params,...e.params},data:{...n.data,...e.data},resolve:{...e.data,...n.resolve,...e.routeConfig?.data,...e._resolvedData}}),{params:{},data:{},resolve:{}})}(e.slice(i))}class cg{constructor(n,e,i,r,s,a,o,l,u,h,p,C){this.url=n,this.params=e,this.queryParams=i,this.fragment=r,this.data=s,this.outlet=a,this.component=o,this.title=this.data?.[Dd],this.routeConfig=l,this._urlSegment=u,this._lastPathIndex=h,this._correctedLastPathIndex=C??h,this._resolve=p}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=kc(this.params)),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=kc(this.queryParams)),this._queryParamMap}toString(){return`Route(url:'${this.url.map(i=>i.toString()).join("/")}', path:'${this.routeConfig?this.routeConfig.path:""}')`}}class iR extends JM{constructor(n,e){super(e),this.url=n,vb(this,e)}toString(){return rR(this._root)}}function vb(t,n){n.value._routerState=t,n.children.forEach(e=>vb(t,e))}function rR(t){const n=t.children.length>0?` { ${t.children.map(rR).join(", ")} } `:"";return`${t.value}${n}`}function bb(t){if(t.snapshot){const n=t.snapshot,e=t._futureSnapshot;t.snapshot=e,Ls(n.queryParams,e.queryParams)||t.queryParams.next(e.queryParams),n.fragment!==e.fragment&&t.fragment.next(e.fragment),Ls(n.params,e.params)||t.params.next(e.params),function j9(t,n){if(t.length!==n.length)return!1;for(let e=0;e<t.length;++e)if(!Ls(t[e],n[e]))return!1;return!0}(n.url,e.url)||t.url.next(e.url),Ls(n.data,e.data)||t.data.next(e.data)}else t.snapshot=t._futureSnapshot,t.data.next(t._futureSnapshot.data)}function Cb(t,n){const e=Ls(t.params,n.params)&&function K9(t,n){return al(t,n)&&t.every((e,i)=>Ls(e.parameters,n[i].parameters))}(t.url,n.url);return e&&!(!t.parent!=!n.parent)&&(!t.parent||Cb(t.parent,n.parent))}function Rd(t,n,e){if(e&&t.shouldReuseRoute(n.value,e.value.snapshot)){const i=e.value;i._futureSnapshot=n.value;const r=function k7(t,n,e){return n.children.map(i=>{for(const r of e.children)if(t.shouldReuseRoute(i.value,r.value.snapshot))return Rd(t,i,r);return Rd(t,i)})}(t,n,e);return new ya(i,r)}{if(t.shouldAttach(n.value)){const s=t.retrieve(n.value);if(null!==s){const a=s.route;return a.value._futureSnapshot=n.value,a.children=n.children.map(o=>Rd(t,o)),a}}const i=function I7(t){return new cl(new ki(t.url),new ki(t.params),new ki(t.queryParams),new ki(t.fragment),new ki(t.data),t.outlet,t.component,t)}(n.value),r=n.children.map(s=>Rd(t,s));return new ya(i,r)}}const Tb="ngNavigationCancelingError";function sR(t,n){const{redirectTo:e,navigationBehaviorOptions:i}=ol(n)?{redirectTo:n,navigationBehaviorOptions:void 0}:n,r=aR(!1,0,n);return r.url=e,r.navigationBehaviorOptions=i,r}function aR(t,n,e){const i=new Error("NavigationCancelingError: "+(t||""));return i[Tb]=!0,i.cancellationCode=n,e&&(i.url=e),i}function oR(t){return lR(t)&&ol(t.url)}function lR(t){return t&&t[Tb]}class M7{constructor(){this.outlet=null,this.route=null,this.resolver=null,this.injector=null,this.children=new Od,this.attachRef=null}}let Od=(()=>{class t{constructor(){this.contexts=new Map}onChildOutletCreated(e,i){const r=this.getOrCreateContext(e);r.outlet=i,this.contexts.set(e,r)}onChildOutletDestroyed(e){const i=this.getContext(e);i&&(i.outlet=null,i.attachRef=null)}onOutletDeactivated(){const e=this.contexts;return this.contexts=new Map,e}onOutletReAttached(e){this.contexts=e}getOrCreateContext(e){let i=this.getContext(e);return i||(i=new M7,this.contexts.set(e,i)),i}getContext(e){return this.contexts.get(e)||null}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const ug=!1;let cR=(()=>{class t{constructor(e,i,r,s,a){this.parentContexts=e,this.location=i,this.changeDetector=s,this.environmentInjector=a,this.activated=null,this._activatedRoute=null,this.activateEvents=new Ae,this.deactivateEvents=new Ae,this.attachEvents=new Ae,this.detachEvents=new Ae,this.name=r||wt,e.onChildOutletCreated(this.name,this)}ngOnDestroy(){this.parentContexts.getContext(this.name)?.outlet===this&&this.parentContexts.onChildOutletDestroyed(this.name)}ngOnInit(){if(!this.activated){const e=this.parentContexts.getContext(this.name);e&&e.route&&(e.attachRef?this.attach(e.attachRef,e.route):this.activateWith(e.route,e.injector))}}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new ne(4012,ug);return this.activated.instance}get activatedRoute(){if(!this.activated)throw new ne(4012,ug);return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new ne(4012,ug);this.location.detach();const e=this.activated;return this.activated=null,this._activatedRoute=null,this.detachEvents.emit(e.instance),e}attach(e,i){this.activated=e,this._activatedRoute=i,this.location.insert(e.hostView),this.attachEvents.emit(e.instance)}deactivate(){if(this.activated){const e=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(e)}}activateWith(e,i){if(this.isActivated)throw new ne(4013,ug);this._activatedRoute=e;const r=this.location,a=e._futureSnapshot.component,o=this.parentContexts.getOrCreateContext(this.name).children,l=new R7(e,o,r.injector);if(i&&function O7(t){return!!t.resolveComponentFactory}(i)){const u=i.resolveComponentFactory(a);this.activated=r.createComponent(u,r.length,l)}else this.activated=r.createComponent(a,{index:r.length,injector:l,environmentInjector:i??this.environmentInjector});this.changeDetector.markForCheck(),this.activateEvents.emit(this.activated.instance)}}return t.\u0275fac=function(e){return new(e||t)(_(Od),_(ci),As("name"),_(Kn),_(Va))},t.\u0275dir=G({type:t,selectors:[["router-outlet"]],outputs:{activateEvents:"activate",deactivateEvents:"deactivate",attachEvents:"attach",detachEvents:"detach"},exportAs:["outlet"],standalone:!0}),t})();class R7{constructor(n,e,i){this.route=n,this.childContexts=e,this.parent=i}get(n,e){return n===cl?this.route:n===Od?this.childContexts:this.parent.get(n,e)}}let Eb=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["ng-component"]],standalone:!0,features:[LD],decls:1,vars:0,template:function(e,i){1&e&&le(0,"router-outlet")},dependencies:[cR],encapsulation:2}),t})();function uR(t,n){return t.providers&&!t._injector&&(t._injector=_f(t.providers,n,`Route: ${t.path}`)),t._injector??n}function Db(t){const n=t.children&&t.children.map(Db),e=n?{...t,children:n}:{...t};return!e.component&&!e.loadComponent&&(n||e.loadChildren)&&e.outlet&&e.outlet!==wt&&(e.component=Eb),e}function jr(t){return t.outlet||wt}function dR(t,n){const e=t.filter(i=>jr(i)===n);return e.push(...t.filter(i=>jr(i)!==n)),e}function Ld(t){if(!t)return null;if(t.routeConfig?._injector)return t.routeConfig._injector;for(let n=t.parent;n;n=n.parent){const e=n.routeConfig;if(e?._loadedInjector)return e._loadedInjector;if(e?._injector)return e._injector}return null}class B7{constructor(n,e,i,r){this.routeReuseStrategy=n,this.futureState=e,this.currState=i,this.forwardEvent=r}activate(n){const e=this.futureState._root,i=this.currState?this.currState._root:null;this.deactivateChildRoutes(e,i,n),bb(this.futureState.root),this.activateChildRoutes(e,i,n)}deactivateChildRoutes(n,e,i){const r=Rc(e);n.children.forEach(s=>{const a=s.value.outlet;this.deactivateRoutes(s,r[a],i),delete r[a]}),Ti(r,(s,a)=>{this.deactivateRouteAndItsChildren(s,i)})}deactivateRoutes(n,e,i){const r=n.value,s=e?e.value:null;if(r===s)if(r.component){const a=i.getContext(r.outlet);a&&this.deactivateChildRoutes(n,e,a.children)}else this.deactivateChildRoutes(n,e,i);else s&&this.deactivateRouteAndItsChildren(e,i)}deactivateRouteAndItsChildren(n,e){n.value.component&&this.routeReuseStrategy.shouldDetach(n.value.snapshot)?this.detachAndStoreRouteSubtree(n,e):this.deactivateRouteAndOutlet(n,e)}detachAndStoreRouteSubtree(n,e){const i=e.getContext(n.value.outlet),r=i&&n.value.component?i.children:e,s=Rc(n);for(const a of Object.keys(s))this.deactivateRouteAndItsChildren(s[a],r);if(i&&i.outlet){const a=i.outlet.detach(),o=i.children.onOutletDeactivated();this.routeReuseStrategy.store(n.value.snapshot,{componentRef:a,route:n,contexts:o})}}deactivateRouteAndOutlet(n,e){const i=e.getContext(n.value.outlet),r=i&&n.value.component?i.children:e,s=Rc(n);for(const a of Object.keys(s))this.deactivateRouteAndItsChildren(s[a],r);i&&i.outlet&&(i.outlet.deactivate(),i.children.onOutletDeactivated(),i.attachRef=null,i.resolver=null,i.route=null)}activateChildRoutes(n,e,i){const r=Rc(e);n.children.forEach(s=>{this.activateRoutes(s,r[s.value.outlet],i),this.forwardEvent(new E7(s.value.snapshot))}),n.children.length&&this.forwardEvent(new C7(n.value.snapshot))}activateRoutes(n,e,i){const r=n.value,s=e?e.value:null;if(bb(r),r===s)if(r.component){const a=i.getOrCreateContext(r.outlet);this.activateChildRoutes(n,e,a.children)}else this.activateChildRoutes(n,e,i);else if(r.component){const a=i.getOrCreateContext(r.outlet);if(this.routeReuseStrategy.shouldAttach(r.snapshot)){const o=this.routeReuseStrategy.retrieve(r.snapshot);this.routeReuseStrategy.store(r.snapshot,null),a.children.onOutletReAttached(o.contexts),a.attachRef=o.componentRef,a.route=o.route.value,a.outlet&&a.outlet.attach(o.componentRef,o.route.value),bb(o.route.value),this.activateChildRoutes(n,null,a.children)}else{const o=Ld(r.snapshot),l=o?.get(Zs)??null;a.attachRef=null,a.route=r,a.resolver=l,a.injector=o,a.outlet&&a.outlet.activateWith(r,a.injector),this.activateChildRoutes(n,null,a.children)}}else this.activateChildRoutes(n,null,i)}}class hR{constructor(n){this.path=n,this.route=this.path[this.path.length-1]}}class dg{constructor(n,e){this.component=n,this.route=e}}function V7(t,n,e){const i=t._root;return Pd(i,n?n._root:null,e,[i.value])}function Oc(t,n){const e=Symbol(),i=n.get(t,e);return i===e?"function"!=typeof t||function vh(t){return null!==Oa(t)}(t)?n.get(t):t:i}function Pd(t,n,e,i,r={canDeactivateChecks:[],canActivateChecks:[]}){const s=Rc(n);return t.children.forEach(a=>{(function j7(t,n,e,i,r={canDeactivateChecks:[],canActivateChecks:[]}){const s=t.value,a=n?n.value:null,o=e?e.getContext(t.value.outlet):null;if(a&&s.routeConfig===a.routeConfig){const l=function z7(t,n,e){if("function"==typeof e)return e(t,n);switch(e){case"pathParamsChange":return!al(t.url,n.url);case"pathParamsOrQueryParamsChange":return!al(t.url,n.url)||!Ls(t.queryParams,n.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!Cb(t,n)||!Ls(t.queryParams,n.queryParams);default:return!Cb(t,n)}}(a,s,s.routeConfig.runGuardsAndResolvers);l?r.canActivateChecks.push(new hR(i)):(s.data=a.data,s._resolvedData=a._resolvedData),Pd(t,n,s.component?o?o.children:null:e,i,r),l&&o&&o.outlet&&o.outlet.isActivated&&r.canDeactivateChecks.push(new dg(o.outlet.component,a))}else a&&Nd(n,o,r),r.canActivateChecks.push(new hR(i)),Pd(t,null,s.component?o?o.children:null:e,i,r)})(a,s[a.value.outlet],e,i.concat([a.value]),r),delete s[a.value.outlet]}),Ti(s,(a,o)=>Nd(a,e.getContext(o),r)),r}function Nd(t,n,e){const i=Rc(t),r=t.value;Ti(i,(s,a)=>{Nd(s,r.component?n?n.children.getContext(a):null:n,e)}),e.canDeactivateChecks.push(new dg(r.component&&n&&n.outlet&&n.outlet.isActivated?n.outlet.component:null,r))}function Fd(t){return"function"==typeof t}function wb(t){return t instanceof Jp||"EmptyError"===t?.name}const hg=Symbol("INITIAL_VALUE");function Lc(){return Wi(t=>Wv(t.map(n=>n.pipe(gn(1),Ms(hg)))).pipe(Le(n=>{for(const e of n)if(!0!==e){if(e===hg)return hg;if(!1===e||e instanceof sl)return e}return!0}),Tn(n=>n!==hg),gn(1)))}function fR(t){return function Qg(...t){return rh(t)}(Mn(n=>{if(ol(n))throw sR(0,n)}),Le(n=>!0===n))}const xb={matched:!1,consumedSegments:[],remainingSegments:[],parameters:{},positionalParamSegments:{}};function pR(t,n,e,i,r){const s=kb(t,n,e);return s.matched?function sK(t,n,e,i){const r=n.canMatch;return r&&0!==r.length?ye(r.map(a=>{const o=Oc(a,t);return eo(function q7(t){return t&&Fd(t.canMatch)}(o)?o.canMatch(n,e):t.runInContext(()=>o(n,e)))})).pipe(Lc(),fR()):ye(!0)}(i=uR(n,i),n,e).pipe(Le(a=>!0===a?s:{...xb})):ye(s)}function kb(t,n,e){if(""===n.path)return"full"===n.pathMatch&&(t.hasChildren()||e.length>0)?{...xb}:{matched:!0,consumedSegments:[],remainingSegments:e,parameters:{},positionalParamSegments:{}};const r=(n.matcher||U9)(e,t,n);if(!r)return{...xb};const s={};Ti(r.posParams,(o,l)=>{s[l]=o.path});const a=r.consumed.length>0?{...s,...r.consumed[r.consumed.length-1].parameters}:s;return{matched:!0,consumedSegments:r.consumed,remainingSegments:e.slice(r.consumed.length),parameters:a,positionalParamSegments:r.posParams??{}}}function fg(t,n,e,i,r="corrected"){if(e.length>0&&function lK(t,n,e){return e.some(i=>pg(t,n,i)&&jr(i)!==wt)}(t,e,i)){const a=new kt(n,function oK(t,n,e,i){const r={};r[wt]=i,i._sourceSegment=t,i._segmentIndexShift=n.length;for(const s of e)if(""===s.path&&jr(s)!==wt){const a=new kt([],{});a._sourceSegment=t,a._segmentIndexShift=n.length,r[jr(s)]=a}return r}(t,n,i,new kt(e,t.children)));return a._sourceSegment=t,a._segmentIndexShift=n.length,{segmentGroup:a,slicedSegments:[]}}if(0===e.length&&function cK(t,n,e){return e.some(i=>pg(t,n,i))}(t,e,i)){const a=new kt(t.segments,function aK(t,n,e,i,r,s){const a={};for(const o of i)if(pg(t,e,o)&&!r[jr(o)]){const l=new kt([],{});l._sourceSegment=t,l._segmentIndexShift="legacy"===s?t.segments.length:n.length,a[jr(o)]=l}return{...r,...a}}(t,n,e,i,t.children,r));return a._sourceSegment=t,a._segmentIndexShift=n.length,{segmentGroup:a,slicedSegments:e}}const s=new kt(t.segments,t.children);return s._sourceSegment=t,s._segmentIndexShift=n.length,{segmentGroup:s,slicedSegments:e}}function pg(t,n,e){return(!(t.hasChildren()||n.length>0)||"full"!==e.pathMatch)&&""===e.path}function gR(t,n,e,i){return!!(jr(t)===i||i!==wt&&pg(n,e,t))&&("**"===t.path||kb(n,t,e).matched)}function mR(t,n,e){return 0===n.length&&!t.children[e]}const gg=!1;class mg{constructor(n){this.segmentGroup=n||null}}class _R{constructor(n){this.urlTree=n}}function Bd(t){return rl(new mg(t))}function yR(t){return rl(new _R(t))}class fK{constructor(n,e,i,r,s){this.injector=n,this.configLoader=e,this.urlSerializer=i,this.urlTree=r,this.config=s,this.allowRedirects=!0}apply(){const n=fg(this.urlTree.root,[],[],this.config).segmentGroup,e=new kt(n.segments,n.children);return this.expandSegmentGroup(this.injector,this.config,e,wt).pipe(Le(s=>this.createUrlTree(og(s),this.urlTree.queryParams,this.urlTree.fragment))).pipe(br(s=>{if(s instanceof _R)return this.allowRedirects=!1,this.match(s.urlTree);throw s instanceof mg?this.noMatchError(s):s}))}match(n){return this.expandSegmentGroup(this.injector,this.config,n.root,wt).pipe(Le(r=>this.createUrlTree(og(r),n.queryParams,n.fragment))).pipe(br(r=>{throw r instanceof mg?this.noMatchError(r):r}))}noMatchError(n){return new ne(4002,gg)}createUrlTree(n,e,i){const r=fb(n);return new sl(r,e,i)}expandSegmentGroup(n,e,i,r){return 0===i.segments.length&&i.hasChildren()?this.expandChildren(n,e,i).pipe(Le(s=>new kt([],s))):this.expandSegment(n,i,e,i.segments,r,!0)}expandChildren(n,e,i){const r=[];for(const s of Object.keys(i.children))"primary"===s?r.unshift(s):r.push(s);return vn(r).pipe(da(s=>{const a=i.children[s],o=dR(e,s);return this.expandSegmentGroup(n,o,a,s).pipe(Le(l=>({segment:l,outlet:s})))}),IM((s,a)=>(s[a.outlet]=a.segment,s),{}),MM())}expandSegment(n,e,i,r,s,a){return vn(i).pipe(da(o=>this.expandSegmentAgainstRoute(n,e,i,o,r,s,a).pipe(br(u=>{if(u instanceof mg)return ye(null);throw u}))),Ja(o=>!!o),br((o,l)=>{if(wb(o))return mR(e,r,s)?ye(new kt([],{})):Bd(e);throw o}))}expandSegmentAgainstRoute(n,e,i,r,s,a,o){return gR(r,e,s,a)?void 0===r.redirectTo?this.matchSegmentAgainstRoute(n,e,r,s,a):o&&this.allowRedirects?this.expandSegmentAgainstRouteUsingRedirect(n,e,i,r,s,a):Bd(e):Bd(e)}expandSegmentAgainstRouteUsingRedirect(n,e,i,r,s,a){return"**"===r.path?this.expandWildCardWithParamsAgainstRouteUsingRedirect(n,i,r,a):this.expandRegularSegmentAgainstRouteUsingRedirect(n,e,i,r,s,a)}expandWildCardWithParamsAgainstRouteUsingRedirect(n,e,i,r){const s=this.applyRedirectCommands([],i.redirectTo,{});return i.redirectTo.startsWith("/")?yR(s):this.lineralizeSegments(i,s).pipe(xn(a=>{const o=new kt(a,{});return this.expandSegment(n,o,e,a,r,!1)}))}expandRegularSegmentAgainstRouteUsingRedirect(n,e,i,r,s,a){const{matched:o,consumedSegments:l,remainingSegments:u,positionalParamSegments:h}=kb(e,r,s);if(!o)return Bd(e);const p=this.applyRedirectCommands(l,r.redirectTo,h);return r.redirectTo.startsWith("/")?yR(p):this.lineralizeSegments(r,p).pipe(xn(C=>this.expandSegment(n,e,i,C.concat(u),a,!1)))}matchSegmentAgainstRoute(n,e,i,r,s){return"**"===i.path?(n=uR(i,n),i.loadChildren?(i._loadedRoutes?ye({routes:i._loadedRoutes,injector:i._loadedInjector}):this.configLoader.loadChildren(n,i)).pipe(Le(o=>(i._loadedRoutes=o.routes,i._loadedInjector=o.injector,new kt(r,{})))):ye(new kt(r,{}))):pR(e,i,r,n).pipe(Wi(({matched:a,consumedSegments:o,remainingSegments:l})=>a?this.getChildConfig(n=i._injector??n,i,r).pipe(xn(h=>{const p=h.injector??n,C=h.routes,{segmentGroup:w,slicedSegments:k}=fg(e,o,l,C),L=new kt(w.segments,w.children);if(0===k.length&&L.hasChildren())return this.expandChildren(p,C,L).pipe(Le(X=>new kt(o,X)));if(0===C.length&&0===k.length)return ye(new kt(o,{}));const U=jr(i)===s;return this.expandSegment(p,L,C,k,U?wt:s,!0).pipe(Le(ie=>new kt(o.concat(ie.segments),ie.children)))})):Bd(e)))}getChildConfig(n,e,i){return e.children?ye({routes:e.children,injector:n}):e.loadChildren?void 0!==e._loadedRoutes?ye({routes:e._loadedRoutes,injector:e._loadedInjector}):function rK(t,n,e,i){const r=n.canLoad;return void 0===r||0===r.length?ye(!0):ye(r.map(a=>{const o=Oc(a,t);return eo(function G7(t){return t&&Fd(t.canLoad)}(o)?o.canLoad(n,e):t.runInContext(()=>o(n,e)))})).pipe(Lc(),fR())}(n,e,i).pipe(xn(r=>r?this.configLoader.loadChildren(n,e).pipe(Mn(s=>{e._loadedRoutes=s.routes,e._loadedInjector=s.injector})):function dK(t){return rl(aR(gg,3))}())):ye({routes:[],injector:n})}lineralizeSegments(n,e){let i=[],r=e.root;for(;;){if(i=i.concat(r.segments),0===r.numberOfChildren)return ye(i);if(r.numberOfChildren>1||!r.children[wt])return rl(new ne(4e3,gg));r=r.children[wt]}}applyRedirectCommands(n,e,i){return this.applyRedirectCreateUrlTree(e,this.urlSerializer.parse(e),n,i)}applyRedirectCreateUrlTree(n,e,i,r){const s=this.createSegmentGroup(n,e.root,i,r);return new sl(s,this.createQueryParams(e.queryParams,this.urlTree.queryParams),e.fragment)}createQueryParams(n,e){const i={};return Ti(n,(r,s)=>{if("string"==typeof r&&r.startsWith(":")){const o=r.substring(1);i[s]=e[o]}else i[s]=r}),i}createSegmentGroup(n,e,i,r){const s=this.createSegments(n,e.segments,i,r);let a={};return Ti(e.children,(o,l)=>{a[l]=this.createSegmentGroup(n,o,i,r)}),new kt(s,a)}createSegments(n,e,i,r){return e.map(s=>s.path.startsWith(":")?this.findPosParam(n,s,r):this.findOrReturn(s,i))}findPosParam(n,e,i){const r=i[e.path.substring(1)];if(!r)throw new ne(4001,gg);return r}findOrReturn(n,e){let i=0;for(const r of e){if(r.path===n.path)return e.splice(i),r;i++}return n}}class gK{}class yK{constructor(n,e,i,r,s,a,o,l){this.injector=n,this.rootComponentType=e,this.config=i,this.urlTree=r,this.url=s,this.paramsInheritanceStrategy=a,this.relativeLinkResolution=o,this.urlSerializer=l}recognize(){const n=fg(this.urlTree.root,[],[],this.config.filter(e=>void 0===e.redirectTo),this.relativeLinkResolution).segmentGroup;return this.processSegmentGroup(this.injector,this.config,n,wt).pipe(Le(e=>{if(null===e)return null;const i=new cg([],Object.freeze({}),Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,{},wt,this.rootComponentType,null,this.urlTree.root,-1,{}),r=new ya(i,e),s=new iR(this.url,r);return this.inheritParamsAndData(s._root),s}))}inheritParamsAndData(n){const e=n.value,i=nR(e,this.paramsInheritanceStrategy);e.params=Object.freeze(i.params),e.data=Object.freeze(i.data),n.children.forEach(r=>this.inheritParamsAndData(r))}processSegmentGroup(n,e,i,r){return 0===i.segments.length&&i.hasChildren()?this.processChildren(n,e,i):this.processSegment(n,e,i,i.segments,r)}processChildren(n,e,i){return vn(Object.keys(i.children)).pipe(da(r=>{const s=i.children[r],a=dR(e,r);return this.processSegmentGroup(n,a,s,r)}),IM((r,s)=>r&&s?(r.push(...s),r):null),function B9(t,n=!1){return ln((e,i)=>{let r=0;e.subscribe(Zt(i,s=>{const a=t(s,r++);(a||n)&&i.next(s),!a&&i.complete()}))})}(r=>null!==r),eg(null),MM(),Le(r=>{if(null===r)return null;const s=AR(r);return function AK(t){t.sort((n,e)=>n.value.outlet===wt?-1:e.value.outlet===wt?1:n.value.outlet.localeCompare(e.value.outlet))}(s),s}))}processSegment(n,e,i,r,s){return vn(e).pipe(da(a=>this.processSegmentAgainstRoute(a._injector??n,a,i,r,s)),Ja(a=>!!a),br(a=>{if(wb(a))return mR(i,r,s)?ye([]):ye(null);throw a}))}processSegmentAgainstRoute(n,e,i,r,s){if(e.redirectTo||!gR(e,i,r,s))return ye(null);let a;if("**"===e.path){const o=r.length>0?PM(r).parameters:{},l=bR(i)+r.length;a=ye({snapshot:new cg(r,o,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,TR(e),jr(e),e.component??e._loadedComponent??null,e,vR(i),l,ER(e),l),consumedSegments:[],remainingSegments:[]})}else a=pR(i,e,r,n).pipe(Le(({matched:o,consumedSegments:l,remainingSegments:u,parameters:h})=>{if(!o)return null;const p=bR(i)+l.length;return{snapshot:new cg(l,h,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,TR(e),jr(e),e.component??e._loadedComponent??null,e,vR(i),p,ER(e),p),consumedSegments:l,remainingSegments:u}}));return a.pipe(Wi(o=>{if(null===o)return ye(null);const{snapshot:l,consumedSegments:u,remainingSegments:h}=o;n=e._injector??n;const p=e._loadedInjector??n,C=function vK(t){return t.children?t.children:t.loadChildren?t._loadedRoutes:[]}(e),{segmentGroup:w,slicedSegments:k}=fg(i,u,h,C.filter(U=>void 0===U.redirectTo),this.relativeLinkResolution);if(0===k.length&&w.hasChildren())return this.processChildren(p,C,w).pipe(Le(U=>null===U?null:[new ya(l,U)]));if(0===C.length&&0===k.length)return ye([new ya(l,[])]);const L=jr(e)===s;return this.processSegment(p,C,w,k,L?wt:s).pipe(Le(U=>null===U?null:[new ya(l,U)]))}))}}function bK(t){const n=t.value.routeConfig;return n&&""===n.path&&void 0===n.redirectTo}function AR(t){const n=[],e=new Set;for(const i of t){if(!bK(i)){n.push(i);continue}const r=n.find(s=>i.value.routeConfig===s.value.routeConfig);void 0!==r?(r.children.push(...i.children),e.add(r)):n.push(i)}for(const i of e){const r=AR(i.children);n.push(new ya(i.value,r))}return n.filter(i=>!e.has(i))}function vR(t){let n=t;for(;n._sourceSegment;)n=n._sourceSegment;return n}function bR(t){let n=t,e=n._segmentIndexShift??0;for(;n._sourceSegment;)n=n._sourceSegment,e+=n._segmentIndexShift??0;return e-1}function TR(t){return t.data||{}}function ER(t){return t.resolve||{}}function SR(t){return"string"==typeof t.title||null===t.title}function Ib(t){return Wi(n=>{const e=t(n);return e?vn(e).pipe(Le(()=>n)):ye(n)})}let DR=(()=>{class t{buildTitle(e){let i,r=e.root;for(;void 0!==r;)i=this.getResolvedTitleForRoute(r)??i,r=r.children.find(s=>s.outlet===wt);return i}getResolvedTitleForRoute(e){return e.data[Dd]}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:function(){return nn(wR)},providedIn:"root"}),t})(),wR=(()=>{class t extends DR{constructor(e){super(),this.title=e}updateTitle(e){const i=this.buildTitle(e);void 0!==i&&this.title.setTitle(i)}}return t.\u0275fac=function(e){return new(e||t)(R(V0))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();class kK{}class MK extends class IK{shouldDetach(n){return!1}store(n,e){}shouldAttach(n){return!1}retrieve(n){return null}shouldReuseRoute(n,e){return n.routeConfig===e.routeConfig}}{}const yg=new Z("",{providedIn:"root",factory:()=>({})}),Mb=new Z("ROUTES");let Rb=(()=>{class t{constructor(e,i){this.injector=e,this.compiler=i,this.componentLoaders=new WeakMap,this.childrenLoaders=new WeakMap}loadComponent(e){if(this.componentLoaders.get(e))return this.componentLoaders.get(e);if(e._loadedComponent)return ye(e._loadedComponent);this.onLoadStartListener&&this.onLoadStartListener(e);const i=eo(e.loadComponent()).pipe(Mn(s=>{this.onLoadEndListener&&this.onLoadEndListener(e),e._loadedComponent=s}),tg(()=>{this.componentLoaders.delete(e)})),r=new lb(i,()=>new pe).pipe(ob());return this.componentLoaders.set(e,r),r}loadChildren(e,i){if(this.childrenLoaders.get(i))return this.childrenLoaders.get(i);if(i._loadedRoutes)return ye({routes:i._loadedRoutes,injector:i._loadedInjector});this.onLoadStartListener&&this.onLoadStartListener(i);const s=this.loadModuleFactoryOrRoutes(i.loadChildren).pipe(Le(o=>{this.onLoadEndListener&&this.onLoadEndListener(i);let l,u,h=!1;Array.isArray(o)?u=o:(l=o.create(e).injector,u=LM(l.get(Mb,[],We.Self|We.Optional)));return{routes:u.map(Db),injector:l}}),tg(()=>{this.childrenLoaders.delete(i)})),a=new lb(s,()=>new pe).pipe(ob());return this.childrenLoaders.set(i,a),a}loadModuleFactoryOrRoutes(e){return eo(e()).pipe(xn(i=>i instanceof RD||Array.isArray(i)?ye(i):vn(this.compiler.compileModuleAsync(i))))}}return t.\u0275fac=function(e){return new(e||t)(R(Fn),R(Ry))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();class OK{}class LK{shouldProcessUrl(n){return!0}extract(n){return n}merge(n,e){return n}}function PK(t){throw t}function NK(t,n,e){return n.parse("/")}const FK={paths:"exact",fragment:"ignored",matrixParams:"ignored",queryParams:"exact"},BK={paths:"subset",fragment:"ignored",matrixParams:"ignored",queryParams:"subset"};function kR(){const t=nn(jM),n=nn(Od),e=nn(qu),i=nn(Fn),r=nn(Ry),s=nn(Mb,{optional:!0})??[],a=nn(yg,{optional:!0})??{},o=nn(wR),l=nn(DR,{optional:!0}),u=nn(OK,{optional:!0}),h=nn(kK,{optional:!0}),p=new Ei(null,t,n,e,i,r,LM(s));return u&&(p.urlHandlingStrategy=u),h&&(p.routeReuseStrategy=h),p.titleStrategy=l??o,function VK(t,n){t.errorHandler&&(n.errorHandler=t.errorHandler),t.malformedUriErrorHandler&&(n.malformedUriErrorHandler=t.malformedUriErrorHandler),t.onSameUrlNavigation&&(n.onSameUrlNavigation=t.onSameUrlNavigation),t.paramsInheritanceStrategy&&(n.paramsInheritanceStrategy=t.paramsInheritanceStrategy),t.relativeLinkResolution&&(n.relativeLinkResolution=t.relativeLinkResolution),t.urlUpdateStrategy&&(n.urlUpdateStrategy=t.urlUpdateStrategy),t.canceledNavigationResolution&&(n.canceledNavigationResolution=t.canceledNavigationResolution)}(a,p),p}let Ei=(()=>{class t{constructor(e,i,r,s,a,o,l){this.rootComponentType=e,this.urlSerializer=i,this.rootContexts=r,this.location=s,this.config=l,this.lastSuccessfulNavigation=null,this.currentNavigation=null,this.disposed=!1,this.navigationId=0,this.currentPageId=0,this.isNgZoneEnabled=!1,this.events=new pe,this.errorHandler=PK,this.malformedUriErrorHandler=NK,this.navigated=!1,this.lastSuccessfulId=-1,this.afterPreactivation=()=>ye(void 0),this.urlHandlingStrategy=new LK,this.routeReuseStrategy=new MK,this.onSameUrlNavigation="ignore",this.paramsInheritanceStrategy="emptyOnly",this.urlUpdateStrategy="deferred",this.relativeLinkResolution="corrected",this.canceledNavigationResolution="replace",this.configLoader=a.get(Rb),this.configLoader.onLoadEndListener=C=>this.triggerEvent(new v7(C)),this.configLoader.onLoadStartListener=C=>this.triggerEvent(new A7(C)),this.ngModule=a.get(Oo),this.console=a.get(IV);const p=a.get(He);this.isNgZoneEnabled=p instanceof He&&He.isInAngularZone(),this.resetConfig(l),this.currentUrlTree=function z9(){return new sl(new kt([],{}),{},null)}(),this.rawUrlTree=this.currentUrlTree,this.browserUrlTree=this.currentUrlTree,this.routerState=tR(this.currentUrlTree,this.rootComponentType),this.transitions=new ki({id:0,targetPageId:0,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,extractedUrl:this.urlHandlingStrategy.extract(this.currentUrlTree),urlAfterRedirects:this.urlHandlingStrategy.extract(this.currentUrlTree),rawUrl:this.currentUrlTree,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:"imperative",restoredState:null,currentSnapshot:this.routerState.snapshot,targetSnapshot:null,currentRouterState:this.routerState,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.navigations=this.setupNavigations(this.transitions),this.processNavigations()}get browserPageId(){return this.location.getState()?.\u0275routerPageId}setupNavigations(e){const i=this.events;return e.pipe(Tn(r=>0!==r.id),Le(r=>({...r,extractedUrl:this.urlHandlingStrategy.extract(r.rawUrl)})),Wi(r=>{let s=!1,a=!1;return ye(r).pipe(Mn(o=>{this.currentNavigation={id:o.id,initialUrl:o.rawUrl,extractedUrl:o.extractedUrl,trigger:o.source,extras:o.extras,previousNavigation:this.lastSuccessfulNavigation?{...this.lastSuccessfulNavigation,previousNavigation:null}:null}}),Wi(o=>{const l=this.browserUrlTree.toString(),u=!this.navigated||o.extractedUrl.toString()!==l||l!==this.currentUrlTree.toString();if(("reload"===this.onSameUrlNavigation||u)&&this.urlHandlingStrategy.shouldProcessUrl(o.rawUrl))return IR(o.source)&&(this.browserUrlTree=o.extractedUrl),ye(o).pipe(Wi(p=>{const C=this.transitions.getValue();return i.next(new _b(p.id,this.serializeUrl(p.extractedUrl),p.source,p.restoredState)),C!==this.transitions.getValue()?wr:Promise.resolve(p)}),function pK(t,n,e,i){return Wi(r=>function hK(t,n,e,i,r){return new fK(t,n,e,i,r).apply()}(t,n,e,r.extractedUrl,i).pipe(Le(s=>({...r,urlAfterRedirects:s}))))}(this.ngModule.injector,this.configLoader,this.urlSerializer,this.config),Mn(p=>{this.currentNavigation={...this.currentNavigation,finalUrl:p.urlAfterRedirects},r.urlAfterRedirects=p.urlAfterRedirects}),function TK(t,n,e,i,r,s){return xn(a=>function _K(t,n,e,i,r,s,a="emptyOnly",o="legacy"){return new yK(t,n,e,i,r,a,o,s).recognize().pipe(Wi(l=>null===l?function mK(t){return new Ct(n=>n.error(t))}(new gK):ye(l)))}(t,n,e,a.urlAfterRedirects,i.serialize(a.urlAfterRedirects),i,r,s).pipe(Le(o=>({...a,targetSnapshot:o}))))}(this.ngModule.injector,this.rootComponentType,this.config,this.urlSerializer,this.paramsInheritanceStrategy,this.relativeLinkResolution),Mn(p=>{if(r.targetSnapshot=p.targetSnapshot,"eager"===this.urlUpdateStrategy){if(!p.extras.skipLocationChange){const w=this.urlHandlingStrategy.merge(p.urlAfterRedirects,p.rawUrl);this.setBrowserUrl(w,p)}this.browserUrlTree=p.urlAfterRedirects}const C=new p7(p.id,this.serializeUrl(p.extractedUrl),this.serializeUrl(p.urlAfterRedirects),p.targetSnapshot);i.next(C)}));if(u&&this.rawUrlTree&&this.urlHandlingStrategy.shouldProcessUrl(this.rawUrlTree)){const{id:C,extractedUrl:w,source:k,restoredState:L,extras:U}=o,z=new _b(C,this.serializeUrl(w),k,L);i.next(z);const ie=tR(w,this.rootComponentType).snapshot;return ye(r={...o,targetSnapshot:ie,urlAfterRedirects:w,extras:{...U,skipLocationChange:!1,replaceUrl:!1}})}return this.rawUrlTree=o.rawUrl,o.resolve(null),wr}),Mn(o=>{const l=new g7(o.id,this.serializeUrl(o.extractedUrl),this.serializeUrl(o.urlAfterRedirects),o.targetSnapshot);this.triggerEvent(l)}),Le(o=>r={...o,guards:V7(o.targetSnapshot,o.currentSnapshot,this.rootContexts)}),function Q7(t,n){return xn(e=>{const{targetSnapshot:i,currentSnapshot:r,guards:{canActivateChecks:s,canDeactivateChecks:a}}=e;return 0===a.length&&0===s.length?ye({...e,guardsResult:!0}):function Z7(t,n,e,i){return vn(t).pipe(xn(r=>function iK(t,n,e,i,r){const s=n&&n.routeConfig?n.routeConfig.canDeactivate:null;return s&&0!==s.length?ye(s.map(o=>{const l=Ld(n)??r,u=Oc(o,l);return eo(function Y7(t){return t&&Fd(t.canDeactivate)}(u)?u.canDeactivate(t,n,e,i):l.runInContext(()=>u(t,n,e,i))).pipe(Ja())})).pipe(Lc()):ye(!0)}(r.component,r.route,e,n,i)),Ja(r=>!0!==r,!0))}(a,i,r,t).pipe(xn(o=>o&&function H7(t){return"boolean"==typeof t}(o)?function $7(t,n,e,i){return vn(n).pipe(da(r=>Go(function eK(t,n){return null!==t&&n&&n(new b7(t)),ye(!0)}(r.route.parent,i),function J7(t,n){return null!==t&&n&&n(new T7(t)),ye(!0)}(r.route,i),function nK(t,n,e){const i=n[n.length-1],s=n.slice(0,n.length-1).reverse().map(a=>function U7(t){const n=t.routeConfig?t.routeConfig.canActivateChild:null;return n&&0!==n.length?{node:t,guards:n}:null}(a)).filter(a=>null!==a).map(a=>gc(()=>ye(a.guards.map(l=>{const u=Ld(a.node)??e,h=Oc(l,u);return eo(function K7(t){return t&&Fd(t.canActivateChild)}(h)?h.canActivateChild(i,t):u.runInContext(()=>h(i,t))).pipe(Ja())})).pipe(Lc())));return ye(s).pipe(Lc())}(t,r.path,e),function tK(t,n,e){const i=n.routeConfig?n.routeConfig.canActivate:null;if(!i||0===i.length)return ye(!0);const r=i.map(s=>gc(()=>{const a=Ld(n)??e,o=Oc(s,a);return eo(function W7(t){return t&&Fd(t.canActivate)}(o)?o.canActivate(n,t):a.runInContext(()=>o(n,t))).pipe(Ja())}));return ye(r).pipe(Lc())}(t,r.route,e))),Ja(r=>!0!==r,!0))}(i,s,t,n):ye(o)),Le(o=>({...e,guardsResult:o})))})}(this.ngModule.injector,o=>this.triggerEvent(o)),Mn(o=>{if(r.guardsResult=o.guardsResult,ol(o.guardsResult))throw sR(0,o.guardsResult);const l=new m7(o.id,this.serializeUrl(o.extractedUrl),this.serializeUrl(o.urlAfterRedirects),o.targetSnapshot,!!o.guardsResult);this.triggerEvent(l)}),Tn(o=>!!o.guardsResult||(this.restoreHistory(o),this.cancelNavigationTransition(o,"",3),!1)),Ib(o=>{if(o.guards.canActivateChecks.length)return ye(o).pipe(Mn(l=>{const u=new _7(l.id,this.serializeUrl(l.extractedUrl),this.serializeUrl(l.urlAfterRedirects),l.targetSnapshot);this.triggerEvent(u)}),Wi(l=>{let u=!1;return ye(l).pipe(function EK(t,n){return xn(e=>{const{targetSnapshot:i,guards:{canActivateChecks:r}}=e;if(!r.length)return ye(e);let s=0;return vn(r).pipe(da(a=>function SK(t,n,e,i){const r=t.routeConfig,s=t._resolve;return void 0!==r?.title&&!SR(r)&&(s[Dd]=r.title),function DK(t,n,e,i){const r=function wK(t){return[...Object.keys(t),...Object.getOwnPropertySymbols(t)]}(t);if(0===r.length)return ye({});const s={};return vn(r).pipe(xn(a=>function xK(t,n,e,i){const r=Ld(n)??i,s=Oc(t,r);return eo(s.resolve?s.resolve(n,e):r.runInContext(()=>s(n,e)))}(t[a],n,e,i).pipe(Ja(),Mn(o=>{s[a]=o}))),cb(1),RM(s),br(a=>wb(a)?wr:rl(a)))}(s,t,n,i).pipe(Le(a=>(t._resolvedData=a,t.data=nR(t,e).resolve,r&&SR(r)&&(t.data[Dd]=r.title),null)))}(a.route,i,t,n)),Mn(()=>s++),cb(1),xn(a=>s===r.length?ye(e):wr))})}(this.paramsInheritanceStrategy,this.ngModule.injector),Mn({next:()=>u=!0,complete:()=>{u||(this.restoreHistory(l),this.cancelNavigationTransition(l,"",2))}}))}),Mn(l=>{const u=new y7(l.id,this.serializeUrl(l.extractedUrl),this.serializeUrl(l.urlAfterRedirects),l.targetSnapshot);this.triggerEvent(u)}))}),Ib(o=>{const l=u=>{const h=[];u.routeConfig?.loadComponent&&!u.routeConfig._loadedComponent&&h.push(this.configLoader.loadComponent(u.routeConfig).pipe(Mn(p=>{u.component=p}),Le(()=>{})));for(const p of u.children)h.push(...l(p));return h};return Wv(l(o.targetSnapshot.root)).pipe(eg(),gn(1))}),Ib(()=>this.afterPreactivation()),Le(o=>{const l=function x7(t,n,e){const i=Rd(t,n._root,e?e._root:void 0);return new eR(i,n)}(this.routeReuseStrategy,o.targetSnapshot,o.currentRouterState);return r={...o,targetRouterState:l}}),Mn(o=>{this.currentUrlTree=o.urlAfterRedirects,this.rawUrlTree=this.urlHandlingStrategy.merge(o.urlAfterRedirects,o.rawUrl),this.routerState=o.targetRouterState,"deferred"===this.urlUpdateStrategy&&(o.extras.skipLocationChange||this.setBrowserUrl(this.rawUrlTree,o),this.browserUrlTree=o.urlAfterRedirects)}),((t,n,e)=>Le(i=>(new B7(n,i.targetRouterState,i.currentRouterState,e).activate(t),i)))(this.rootContexts,this.routeReuseStrategy,o=>this.triggerEvent(o)),Mn({next(){s=!0},complete(){s=!0}}),tg(()=>{s||a||this.cancelNavigationTransition(r,"",1),this.currentNavigation?.id===r.id&&(this.currentNavigation=null)}),br(o=>{if(a=!0,lR(o)){oR(o)||(this.navigated=!0,this.restoreHistory(r,!0));const l=new lg(r.id,this.serializeUrl(r.extractedUrl),o.message,o.cancellationCode);if(i.next(l),oR(o)){const u=this.urlHandlingStrategy.merge(o.url,this.rawUrlTree),h={skipLocationChange:r.extras.skipLocationChange,replaceUrl:"eager"===this.urlUpdateStrategy||IR(r.source)};this.scheduleNavigation(u,"imperative",null,h,{resolve:r.resolve,reject:r.reject,promise:r.promise})}else r.resolve(!1)}else{this.restoreHistory(r,!0);const l=new ZM(r.id,this.serializeUrl(r.extractedUrl),o,r.targetSnapshot??void 0);i.next(l);try{r.resolve(this.errorHandler(o))}catch(u){r.reject(u)}}return wr}))}))}resetRootComponentType(e){this.rootComponentType=e,this.routerState.root.component=this.rootComponentType}setTransition(e){this.transitions.next({...this.transitions.value,...e})}initialNavigation(){this.setUpLocationChangeListener(),0===this.navigationId&&this.navigateByUrl(this.location.path(!0),{replaceUrl:!0})}setUpLocationChangeListener(){this.locationSubscription||(this.locationSubscription=this.location.subscribe(e=>{const i="popstate"===e.type?"popstate":"hashchange";"popstate"===i&&setTimeout(()=>{const r={replaceUrl:!0},s=e.state?.navigationId?e.state:null;if(s){const o={...s};delete o.navigationId,delete o.\u0275routerPageId,0!==Object.keys(o).length&&(r.state=o)}const a=this.parseUrl(e.url);this.scheduleNavigation(a,i,s,r)},0)}))}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return this.currentNavigation}triggerEvent(e){this.events.next(e)}resetConfig(e){this.config=e.map(Db),this.navigated=!1,this.lastSuccessfulId=-1}ngOnDestroy(){this.dispose()}dispose(){this.transitions.complete(),this.locationSubscription&&(this.locationSubscription.unsubscribe(),this.locationSubscription=void 0),this.disposed=!0}createUrlTree(e,i={}){const{relativeTo:r,queryParams:s,fragment:a,queryParamsHandling:o,preserveFragment:l}=i,u=r||this.routerState.root,h=l?this.currentUrlTree.fragment:a;let p=null;switch(o){case"merge":p={...this.currentUrlTree.queryParams,...s};break;case"preserve":p=this.currentUrlTree.queryParams;break;default:p=s||null}return null!==p&&(p=this.removeEmptyProps(p)),l7(u,this.currentUrlTree,e,p,h??null)}navigateByUrl(e,i={skipLocationChange:!1}){const r=ol(e)?e:this.parseUrl(e),s=this.urlHandlingStrategy.merge(r,this.rawUrlTree);return this.scheduleNavigation(s,"imperative",null,i)}navigate(e,i={skipLocationChange:!1}){return function UK(t){for(let n=0;n<t.length;n++){if(null==t[n])throw new ne(4008,false)}}(e),this.navigateByUrl(this.createUrlTree(e,i),i)}serializeUrl(e){return this.urlSerializer.serialize(e)}parseUrl(e){let i;try{i=this.urlSerializer.parse(e)}catch(r){i=this.malformedUriErrorHandler(r,this.urlSerializer,e)}return i}isActive(e,i){let r;if(r=!0===i?{...FK}:!1===i?{...BK}:i,ol(e))return FM(this.currentUrlTree,e,r);const s=this.parseUrl(e);return FM(this.currentUrlTree,s,r)}removeEmptyProps(e){return Object.keys(e).reduce((i,r)=>{const s=e[r];return null!=s&&(i[r]=s),i},{})}processNavigations(){this.navigations.subscribe(e=>{this.navigated=!0,this.lastSuccessfulId=e.id,this.currentPageId=e.targetPageId,this.events.next(new ll(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(this.currentUrlTree))),this.lastSuccessfulNavigation=this.currentNavigation,this.titleStrategy?.updateTitle(this.routerState.snapshot),e.resolve(!0)},e=>{this.console.warn(`Unhandled Navigation Error: ${e}`)})}scheduleNavigation(e,i,r,s,a){if(this.disposed)return Promise.resolve(!1);let o,l,u;a?(o=a.resolve,l=a.reject,u=a.promise):u=new Promise((C,w)=>{o=C,l=w});const h=++this.navigationId;let p;return"computed"===this.canceledNavigationResolution?(0===this.currentPageId&&(r=this.location.getState()),p=r&&r.\u0275routerPageId?r.\u0275routerPageId:s.replaceUrl||s.skipLocationChange?this.browserPageId??0:(this.browserPageId??0)+1):p=0,this.setTransition({id:h,targetPageId:p,source:i,restoredState:r,currentUrlTree:this.currentUrlTree,currentRawUrl:this.rawUrlTree,rawUrl:e,extras:s,resolve:o,reject:l,promise:u,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),u.catch(C=>Promise.reject(C))}setBrowserUrl(e,i){const r=this.urlSerializer.serialize(e),s={...i.extras.state,...this.generateNgRouterState(i.id,i.targetPageId)};this.location.isCurrentPathEqualTo(r)||i.extras.replaceUrl?this.location.replaceState(r,"",s):this.location.go(r,"",s)}restoreHistory(e,i=!1){if("computed"===this.canceledNavigationResolution){const r=this.currentPageId-e.targetPageId;"popstate"!==e.source&&"eager"!==this.urlUpdateStrategy&&this.currentUrlTree!==this.currentNavigation?.finalUrl||0===r?this.currentUrlTree===this.currentNavigation?.finalUrl&&0===r&&(this.resetState(e),this.browserUrlTree=e.currentUrlTree,this.resetUrlToCurrentUrlTree()):this.location.historyGo(r)}else"replace"===this.canceledNavigationResolution&&(i&&this.resetState(e),this.resetUrlToCurrentUrlTree())}resetState(e){this.routerState=e.currentRouterState,this.currentUrlTree=e.currentUrlTree,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,e.rawUrl)}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.rawUrlTree),"",this.generateNgRouterState(this.lastSuccessfulId,this.currentPageId))}cancelNavigationTransition(e,i,r){const s=new lg(e.id,this.serializeUrl(e.extractedUrl),i,r);this.triggerEvent(s),e.resolve(!1)}generateNgRouterState(e,i){return"computed"===this.canceledNavigationResolution?{navigationId:e,\u0275routerPageId:i}:{navigationId:e}}}return t.\u0275fac=function(e){Ua()},t.\u0275prov=q({token:t,factory:function(){return kR()},providedIn:"root"}),t})();function IR(t){return"imperative"!==t}let vg=(()=>{class t{constructor(e,i,r){this.router=e,this.route=i,this.locationStrategy=r,this._preserveFragment=!1,this._skipLocationChange=!1,this._replaceUrl=!1,this.commands=null,this.href=null,this.onChanges=new pe,this.subscription=e.events.subscribe(s=>{s instanceof ll&&this.updateTargetUrlAndHref()})}set preserveFragment(e){this._preserveFragment=ra(e)}get preserveFragment(){return this._preserveFragment}set skipLocationChange(e){this._skipLocationChange=ra(e)}get skipLocationChange(){return this._skipLocationChange}set replaceUrl(e){this._replaceUrl=ra(e)}get replaceUrl(){return this._replaceUrl}set routerLink(e){this.commands=null!=e?Array.isArray(e)?e:[e]:null}ngOnChanges(e){this.updateTargetUrlAndHref(),this.onChanges.next(this)}ngOnDestroy(){this.subscription.unsubscribe()}onClick(e,i,r,s,a){return!!(0!==e||i||r||s||a||"string"==typeof this.target&&"_self"!=this.target||null===this.urlTree)||(this.router.navigateByUrl(this.urlTree,{skipLocationChange:this.skipLocationChange,replaceUrl:this.replaceUrl,state:this.state}),!1)}updateTargetUrlAndHref(){this.href=null!==this.urlTree?this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.urlTree)):null}get urlTree(){return null===this.commands?null:this.router.createUrlTree(this.commands,{relativeTo:void 0!==this.relativeTo?this.relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,queryParamsHandling:this.queryParamsHandling,preserveFragment:this.preserveFragment})}}return t.\u0275fac=function(e){return new(e||t)(_(Ei),_(cl),_(Bo))},t.\u0275dir=G({type:t,selectors:[["a","routerLink",""],["area","routerLink",""]],hostVars:2,hostBindings:function(e,i){1&e&&ee("click",function(s){return i.onClick(s.button,s.ctrlKey,s.shiftKey,s.altKey,s.metaKey)}),2&e&&Me("target",i.target)("href",i.href,Qr)},inputs:{target:"target",queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",state:"state",relativeTo:"relativeTo",preserveFragment:"preserveFragment",skipLocationChange:"skipLocationChange",replaceUrl:"replaceUrl",routerLink:"routerLink"},standalone:!0,features:[$n]}),t})();class MR{}let HK=(()=>{class t{constructor(e,i,r,s,a){this.router=e,this.injector=r,this.preloadingStrategy=s,this.loader=a}setUpPreloading(){this.subscription=this.router.events.pipe(Tn(e=>e instanceof ll),da(()=>this.preload())).subscribe(()=>{})}preload(){return this.processRoutes(this.injector,this.router.config)}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}processRoutes(e,i){const r=[];for(const s of i){s.providers&&!s._injector&&(s._injector=_f(s.providers,e,`Route: ${s.path}`));const a=s._injector??e,o=s._loadedInjector??a;s.loadChildren&&!s._loadedRoutes&&void 0===s.canLoad||s.loadComponent&&!s._loadedComponent?r.push(this.preloadConfig(a,s)):(s.children||s._loadedRoutes)&&r.push(this.processRoutes(o,s.children??s._loadedRoutes))}return vn(r).pipe(Hs())}preloadConfig(e,i){return this.preloadingStrategy.preload(i,()=>{let r;r=i.loadChildren&&void 0===i.canLoad?this.loader.loadChildren(e,i):ye(null);const s=r.pipe(xn(a=>null===a?ye(void 0):(i._loadedRoutes=a.routes,i._loadedInjector=a.injector,this.processRoutes(a.injector??e,a.routes))));return i.loadComponent&&!i._loadedComponent?vn([s,this.loader.loadComponent(i)]).pipe(Hs()):s})}}return t.\u0275fac=function(e){return new(e||t)(R(Ei),R(Ry),R(Va),R(MR),R(Rb))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const Lb=new Z("");let RR=(()=>{class t{constructor(e,i,r={}){this.router=e,this.viewportScroller=i,this.options=r,this.lastId=0,this.lastSource="imperative",this.restoredId=0,this.store={},r.scrollPositionRestoration=r.scrollPositionRestoration||"disabled",r.anchorScrolling=r.anchorScrolling||"disabled"}init(){"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration("manual"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.router.events.subscribe(e=>{e instanceof _b?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=e.navigationTrigger,this.restoredId=e.restoredState?e.restoredState.navigationId:0):e instanceof ll&&(this.lastId=e.id,this.scheduleScrollEvent(e,this.router.parseUrl(e.urlAfterRedirects).fragment))})}consumeScrollEvents(){return this.router.events.subscribe(e=>{e instanceof $M&&(e.position?"top"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0]):"enabled"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(e.position):e.anchor&&"enabled"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(e.anchor):"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0]))})}scheduleScrollEvent(e,i){this.router.triggerEvent(new $M(e,"popstate"===this.lastSource?this.store[this.restoredId]:null,i))}ngOnDestroy(){this.routerEventsSubscription&&this.routerEventsSubscription.unsubscribe(),this.scrollEventsSubscription&&this.scrollEventsSubscription.unsubscribe()}}return t.\u0275fac=function(e){Ua()},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();function Pc(t,n){return{\u0275kind:t,\u0275providers:n}}function Pb(t){return[{provide:Mb,multi:!0,useValue:t}]}function LR(){const t=nn(Fn);return n=>{const e=t.get(Po);if(n!==e.components[0])return;const i=t.get(Ei),r=t.get(PR);1===t.get(Nb)&&i.initialNavigation(),t.get(NR,null,We.Optional)?.setUpPreloading(),t.get(Lb,null,We.Optional)?.init(),i.resetRootComponentType(e.componentTypes[0]),r.closed||(r.next(),r.unsubscribe())}}const PR=new Z("",{factory:()=>new pe}),Nb=new Z("",{providedIn:"root",factory:()=>1});const NR=new Z("");function YK(t){return Pc(0,[{provide:NR,useExisting:HK},{provide:MR,useExisting:t}])}const FR=new Z("ROUTER_FORROOT_GUARD"),qK=[qu,{provide:jM,useClass:db},{provide:Ei,useFactory:kR},Od,{provide:cl,useFactory:function OR(t){return t.routerState.root},deps:[Ei]},Rb];function XK(){return new Dw("Router",Ei)}let QK=(()=>{class t{constructor(e){}static forRoot(e,i){return{ngModule:t,providers:[qK,[],Pb(e),{provide:FR,useFactory:eY,deps:[[Ei,new fr,new Xr]]},{provide:yg,useValue:i||{}},i?.useHash?{provide:Bo,useClass:yU}:{provide:Bo,useClass:Zw},{provide:Lb,useFactory:()=>{const t=nn(Ei),n=nn(k3),e=nn(yg);return e.scrollOffset&&n.setOffset(e.scrollOffset),new RR(t,n,e)}},i?.preloadingStrategy?YK(i.preloadingStrategy).\u0275providers:[],{provide:Dw,multi:!0,useFactory:XK},i?.initialNavigation?tY(i):[],[{provide:BR,useFactory:LR},{provide:My,multi:!0,useExisting:BR}]]}}static forChild(e){return{ngModule:t,providers:[Pb(e)]}}}return t.\u0275fac=function(e){return new(e||t)(R(FR,8))},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[Eb]}),t})();function eY(t){return"guarded"}function tY(t){return["disabled"===t.initialNavigation?Pc(3,[{provide:Cf,multi:!0,useFactory:()=>{const n=nn(Ei);return()=>{n.setUpLocationChangeListener()}}},{provide:Nb,useValue:2}]).\u0275providers:[],"enabledBlocking"===t.initialNavigation?Pc(2,[{provide:Nb,useValue:0},{provide:Cf,multi:!0,deps:[Fn],useFactory:n=>{const e=n.get(mU,Promise.resolve());let i=!1;return()=>e.then(()=>new Promise(s=>{const a=n.get(Ei),o=n.get(PR);(function r(s){n.get(Ei).events.pipe(Tn(o=>o instanceof ll||o instanceof lg||o instanceof ZM),Le(o=>o instanceof ll||o instanceof lg&&(0===o.code||1===o.code)&&null),Tn(o=>null!==o),gn(1)).subscribe(()=>{s()})})(()=>{s(!0),i=!0}),a.afterPreactivation=()=>(s(!0),i||o.closed?ye(void 0):o),a.initialNavigation()}))}}]).\u0275providers:[]]}const BR=new Z("");function iY(t,n){if(1&t&&(S(0,"span",2),F(1,"translate"),V(2),D()),2&t){const e=I();Mt("order-end",e.message.iconPosition===e.END_ICON_POSITION),E("matTooltip",e.message.iconTooltip?bn(1,4,e.message.iconTooltip,e.message.localizationParams):""),b(2),re(e.iconName)}}function rY(t,n){if(1&t&&(le(0,"div",5),F(1,"translate")),2&t){const e=I(2);E("innerHtml",bn(1,1,e.message.title,e.message.localizationParams),dn)}}function sY(t,n){if(1&t&&(le(0,"p",6),F(1,"translate")),2&t){const e=I(2);E("innerHtml",bn(1,1,e.message.description,e.message.localizationParams),dn)}}function aY(t,n){if(1&t&&(S(0,"section"),O(1,rY,2,4,"div",3),O(2,sY,2,4,"p",4),D()),2&t){const e=I();b(1),E("ngIf",e.message.title),b(1),E("ngIf",e.message.description)}}const oY=["clearButton"];function lY(t,n){if(1&t&&(le(0,"h1",9),F(1,"translate")),2&t){const e=I();E("innerHtml",bn(1,1,e.message.title,e.message.localizationParams),dn)}}function cY(t,n){if(1&t&&(le(0,"span",11),F(1,"translate")),2&t){const e=I(2);E("innerHtml",bn(1,1,e.message.support,e.message.localizationParams),dn)}}function uY(t,n){if(1&t&&(S(0,"p",10),le(1,"span",11),F(2,"translate"),O(3,cY,2,4,"span",12),D()),2&t){const e=I();b(1),E("innerHtml",bn(2,2,e.message.body,e.message.localizationParams),dn),b(2),E("ngIf",e.message.support)}}function dY(t,n){if(1&t){const e=Fe();S(0,"tld-close-button",13),ee("tldClick",function(){return me(e),_e(I().closeClick())}),D()}}function hY(t,n){if(1&t){const e=Fe();S(0,"button",18),ee("click",function(){return me(e),_e(I(2).buttonClick())}),V(1),F(2,"translate"),D()}if(2&t){const e=I(2);b(1),Ve("",j(2,1,e.message.buttonText)," ")}}function fY(t,n){if(1&t){const e=Fe();S(0,"a",19),ee("click",function(){return me(e),_e(I(2).linkClick())}),V(1),F(2,"translate"),D()}if(2&t){const e=I(2);Me("href",e.message.linkHref,Qr),b(1),re(j(2,2,e.message.linkText))}}const Vd=function(t){return[t]};function pY(t,n){if(1&t){const e=Fe();S(0,"a",20),ee("click",function(){return me(e),_e(I(2).linkClick())}),V(1),F(2,"translate"),D()}if(2&t){const e=I(2);E("routerLink",fn(4,Vd,e.message.routerLink)),b(1),re(j(2,2,e.message.linkText))}}function gY(t,n){if(1&t&&(S(0,"div",14),O(1,hY,3,3,"button",15),O(2,fY,3,4,"a",16),O(3,pY,3,6,"a",17),D()),2&t){const e=I();b(1),E("ngIf",e.message.buttonText),b(1),E("ngIf",e.message.linkHref&&e.message.linkText),b(1),E("ngIf",e.message.routerLink&&e.message.linkText)}}typeof localStorage<"u"&&localStorage,typeof window<"u"&&window;var Ud=(()=>{return(t=Ud||(Ud={}))[t.START=0]="START",t[t.END=1]="END",Ud;var t})();let VR=(()=>{class t{constructor(){this.END_ICON_POSITION=Ud.END,this.iconName="info"}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["lib-inline-message"]],inputs:{iconName:"iconName",message:"message"},decls:3,vars:5,consts:[["class","material-icons",3,"order-end","matTooltip",4,"ngIf"],[4,"ngIf"],[1,"material-icons",3,"matTooltip"],["class","text-s-semi-bold title",3,"innerHtml",4,"ngIf"],["class","text-s description",3,"innerHtml",4,"ngIf"],[1,"text-s-semi-bold","title",3,"innerHtml"],[1,"text-s","description",3,"innerHtml"]],template:function(e,i){1&e&&(S(0,"div"),O(1,iY,3,7,"span",0),O(2,aY,3,2,"section",1),D()),2&e&&(hf("tld-inline-message ",i.message.type,""),b(1),E("ngIf",i.iconName),b(1),E("ngIf",i.message))},dependencies:[xt,as,Lt],styles:["[_nghost-%COMP%]{display:block}.tld-inline-message[_ngcontent-%COMP%]{display:flex;flex-direction:row}.tld-inline-message.error[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{color:var(--error-dark)}.tld-inline-message.info[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{color:var(--base-40)}.tld-inline-message.warning[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{color:var(--warning-dark)}.tld-inline-message[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{font-size:16px;margin-right:.5rem;display:inline-block}.tld-inline-message[_ngcontent-%COMP%] .material-icons.order-end[_ngcontent-%COMP%]{order:2}.tld-inline-message[_ngcontent-%COMP%] .title[_ngcontent-%COMP%], .tld-inline-message[_ngcontent-%COMP%] .description[_ngcontent-%COMP%]{margin:0}.tld-inline-message[_ngcontent-%COMP%] .title[_ngcontent-%COMP%] + .description[_ngcontent-%COMP%]{margin-top:.5rem}"]}),t})(),UR=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[[sn,Ar,nl]]}),t})();var jd=(()=>{return(t=jd||(jd={})).INFO="info",t.WARNING="warning",t.ERROR="error",jd;var t})();let TY=(()=>{class t{transform(e,i,r){if(!i.length)return[...e];const s=[],a=new RegExp(i,"gi");for(let o of e){const l=r?o[r]:o;if(!l.match(a))continue;let h;const p=l.replace(a,C=>`<span class="filter-highlight">${C}</span>`);r?(h={...o},h[r]=p):o=p,s.push(h??o)}return s}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275pipe=Pn({name:"filterWithHighlight",type:t,pure:!0}),t})(),EY=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[[sn]]}),t})(),jR=(()=>{class t{constructor(e){this.translate=e}transform(e,i,r=null,s,a=null){const o=[...e];return i?new Ct(l=>{this.translate.get(i??"").subscribe(u=>{const h=this.sortObjects(o,r,u);l.next(h),l.complete()})}):ye(this.sortObjects(o,r))}sortObjects(e,i,r){return e.sort((s,a)=>{const o=i?s[i]:s,l=r?r[o.toUpperCase()]:o,u=i?a[i]:a,h=r?r[u.toUpperCase()]:u;return l<h?-1:l>h?1:0})}}return t.\u0275fac=function(e){return new(e||t)(_(gi,16))},t.\u0275pipe=Pn({name:"sortTranslations",type:t,pure:!0}),t})(),zR=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[[sn]]}),t})(),SY=(()=>{class t{constructor(e){this.elementRef=e,this.clickOutside=new Ae}onClick(e){this.elementRef.nativeElement.contains(e)||this.clickOutside.emit()}}return t.\u0275fac=function(e){return new(e||t)(_(be))},t.\u0275dir=G({type:t,selectors:[["","clickOutside",""]],hostBindings:function(e,i){1&e&&ee("click",function(s){return i.onClick(s.target)},0,w_)},outputs:{clickOutside:"clickOutside"}}),t})(),DY=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[[sn]]}),t})(),to=(()=>{class t{constructor(){this.tldClick=new Ae,this.ariaCode="CLOSE_BUTTON"}clicked(){this.tldClick.emit(null)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["tld-close-button"]],viewQuery:function(e,i){if(1&e&&it(oY,5),2&e){let r;xe(r=ke())&&(i.clearButton=r.first)}},inputs:{ariaCode:"ariaCode",disabled:"disabled",tooltip:"tooltip"},outputs:{tldClick:"tldClick"},decls:6,vars:7,consts:[["mat-icon-button","",3,"matTooltip","disabled","click"],["clearButton",""],[1,"material-icons"]],template:function(e,i){1&e&&(S(0,"button",0,1),ee("click",function(){return i.clicked()}),F(2,"translate"),F(3,"translate"),S(4,"span",2),V(5," close "),D()()),2&e&&(E("matTooltip",j(2,3,i.tooltip))("disabled",i.disabled),Me("aria-label",j(3,5,"ARIA_LABELS."+i.ariaCode)))},dependencies:[En,as,Lt],encapsulation:2}),t})(),ul=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[[sn,pa,Ar,nl]]}),t})(),wY=(()=>{class t{constructor(){this.buttonClicked=new Ae,this.closeClicked=new Ae,this.linkClicked=new Ae,this.iconNames={BASIC:"info",ERROR:"error",SUCCESS:"check_circle",WARNING:"info"}}ngOnInit(){this.className=this.message.type.toLocaleLowerCase()}buttonClick(){this.buttonClicked.next(null)}closeClick(){this.closeClicked.next(null)}linkClick(){this.linkClicked.next(null)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["lib-tld-notification-message"]],inputs:{message:"message",inline:"inline"},outputs:{buttonClicked:"buttonClicked",closeClicked:"closeClicked",linkClicked:"linkClicked"},decls:11,vars:12,consts:[["fxLayout","row","fxLayoutAlign","start start","aria-live","polite","fxLayout","row",1,"notification-message-container","tld-default-border",3,"ngClass.lt-md"],[1,"material-icons","message-icon"],["fxFlex","",1,"items-container"],["fxLayout","row"],["fxFlex","",1,"text-container"],["class","message-title",3,"innerHtml",4,"ngIf"],["class","message-body",4,"ngIf"],["class","close-button",3,"tldClick",4,"ngIf"],["fxLayout","row","fxLayoutGap","16px","fxLayoutAlign","start center",4,"ngIf"],[1,"message-title",3,"innerHtml"],[1,"message-body"],[3,"innerHtml"],[3,"innerHtml",4,"ngIf"],[1,"close-button",3,"tldClick"],["fxLayout","row","fxLayoutGap","16px","fxLayoutAlign","start center"],["class","message-action-button","color","accent","mat-flat-button","",3,"click",4,"ngIf"],["class","message-action-link",3,"click",4,"ngIf"],["class","message-action-link",3,"routerLink","click",4,"ngIf"],["color","accent","mat-flat-button","",1,"message-action-button",3,"click"],[1,"message-action-link",3,"click"],[1,"message-action-link",3,"routerLink","click"]],template:function(e,i){1&e&&(S(0,"div")(1,"div",0)(2,"span",1),V(3),D(),S(4,"div",2)(5,"div",3)(6,"div",4),O(7,lY,2,4,"h1",5),O(8,uY,4,5,"p",6),D(),O(9,dY,1,0,"tld-close-button",7),D(),O(10,gY,4,3,"div",8),D()()()),2&e&&(hf("notification-message ",i.className,""),b(1),Mt("inline",i.inline),E("ngClass.lt-md","mobile"),Me("id",i.message.id),b(2),Ve(" ",i.iconNames[i.message.type]," "),b(4),E("ngIf",i.message.title),b(1),E("ngIf",i.message.body),b(1),E("ngIf",!i.message.hideClose),b(1),E("ngIf",i.message.buttonText||i.message.linkHref||i.message.routerLink))},dependencies:[to,En,Dn,Xn,Ii,qi,xt,$a,vg,Lt],styles:[".notification-message.basic[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%]{background-color:var(--base-100);border-color:var(--base-100)}.notification-message.basic[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%] .message-icon[_ngcontent-%COMP%]{color:var(--base-40)}.notification-message.basic[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%] .message-action-button[_ngcontent-%COMP%]{background-color:var(--base-40)}.notification-message.error[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%]{background-color:var(--error-light);border-color:var(--base-100)}.notification-message.error[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%] .message-icon[_ngcontent-%COMP%]{color:var(--error-dark)}.notification-message.error[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%] .message-action-button[_ngcontent-%COMP%]{background-color:var(--base-40)}.notification-message.warning[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%]{background-color:var(--warning-light);border-color:var(--base-100)}.notification-message.warning[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%] .message-icon[_ngcontent-%COMP%]{color:var(--warning-dark)}.notification-message.warning[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%] .message-action-button[_ngcontent-%COMP%]{background-color:var(--base-40)}.notification-message.success[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%]{background-color:var(--success-light);border-color:var(--base-100)}.notification-message.success[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%] .message-icon[_ngcontent-%COMP%]{color:var(--success-dark)}.notification-message.success[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%] .message-action-button[_ngcontent-%COMP%]{background-color:var(--base-40)}.notification-message[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%]{border:1px solid var(--base-95);border-radius:.5em}.notification-message[_ngcontent-%COMP%] .notification-message-container.mobile[_ngcontent-%COMP%]{padding:.6em .4em!important}.notification-message[_ngcontent-%COMP%] .notification-message-container.mobile[_ngcontent-%COMP%] .items-container[_ngcontent-%COMP%]{margin-left:.4em!important}.notification-message[_ngcontent-%COMP%] .notification-message-container.mobile[_ngcontent-%COMP%] .items-container[_ngcontent-%COMP%] div[_ngcontent-%COMP%] + div[_ngcontent-%COMP%]{margin-top:.2em!important}.notification-message[_ngcontent-%COMP%] .notification-message-container.mobile[_ngcontent-%COMP%] .items-container[_ngcontent-%COMP%] .message-title[_ngcontent-%COMP%] + .message-body[_ngcontent-%COMP%]{margin-top:0!important}.notification-message[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%] .text-container[_ngcontent-%COMP%]:first-child{line-height:1.5em}.notification-message[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%] .text-container[_ngcontent-%COMP%] .message-title[_ngcontent-%COMP%]{font-weight:500;margin:0}.notification-message[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%] .text-container[_ngcontent-%COMP%] .message-body[_ngcontent-%COMP%]{margin:0}.notification-message[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%]:not(.inline){padding:1.5em}.notification-message[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%]:not(.inline) .items-container[_ngcontent-%COMP%]{margin-left:1em}.notification-message[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%]:not(.inline) .items-container[_ngcontent-%COMP%] div[_ngcontent-%COMP%] + div[_ngcontent-%COMP%], .notification-message[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%]:not(.inline) .items-container[_ngcontent-%COMP%] .message-title[_ngcontent-%COMP%] + .message-body[_ngcontent-%COMP%]{margin-top:1em}.notification-message[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%]:not(.inline) .message-title[_ngcontent-%COMP%]{font-size:1.25em}.notification-message[_ngcontent-%COMP%] .notification-message-container[_ngcontent-%COMP%]:not(.inline) .message-body[_ngcontent-%COMP%]{line-height:1.5em}.notification-message[_ngcontent-%COMP%] .notification-message-container.inline[_ngcontent-%COMP%]{padding:.75em 1em}.notification-message[_ngcontent-%COMP%] .notification-message-container.inline[_ngcontent-%COMP%] .items-container[_ngcontent-%COMP%]{margin-left:.75em}.notification-message[_ngcontent-%COMP%] .notification-message-container.inline[_ngcontent-%COMP%] .items-container[_ngcontent-%COMP%] div[_ngcontent-%COMP%] + div[_ngcontent-%COMP%]{margin-top:.5em}.notification-message[_ngcontent-%COMP%] .notification-message-container.inline[_ngcontent-%COMP%] .items-container[_ngcontent-%COMP%] .message-title[_ngcontent-%COMP%] + .message-body[_ngcontent-%COMP%]{margin-top:.2em}.notification-message[_ngcontent-%COMP%] .notification-message-container.inline[_ngcontent-%COMP%] .message-title[_ngcontent-%COMP%]{font-size:1em}"]}),t})(),xY=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[[sn,xc,ul,pa,Ar,QK]]}),t})();var no=(()=>{return(t=no||(no={})).BASIC="BASIC",t.WARNING="WARNING",t.SUCCESS="SUCCESS",t.ERROR="ERROR",no;var t})(),ls=(()=>{return(t=ls||(ls={}))[t.V1=0]="V1",t[t.V2=1]="V2",ls;var t})();class Ht{static getCookie(n){const e=document.cookie.split(";"),i=e.length,r=`${n}=`;let s;for(let a=0;a<i;a+=1)if(s=e[a].replace(/^\s+/g,""),0===s.indexOf(r))return s.substring(r.length,s.length)}static getAuthHeaders(n){const e={};if(!n?.coreConfig?.apiIsInTheSameDomain){const i=this.getCookie("smts");i&&(e["website-auth-cookie"]=i)}return n?.coreConfig?.clientId&&(e["client-id"]=n.coreConfig.clientId),e["Content-Type"]="application/json",e}static GetApiV2AuthHeaders(n){const e={};return n?.apiV2Config?.xApiKey&&(e["x-api-key"]=n.apiV2Config.xApiKey),e}static getFileExtension(n){return n.slice(n.lastIndexOf(".")+1).toLowerCase()}static escapeHtmlString(n){return n.replace(new RegExp("&","g"),"&").replace(new RegExp("<","g"),"<").replace(new RegExp(">","g"),">").replace(new RegExp('"',"g"),""").replace(new RegExp("'","g"),"'")}static encodeHtmlString(n){return n.replace(new RegExp("&","g"),"&").replace(new RegExp("<","g"),"<").replace(new RegExp(">","g"),">").replace(new RegExp(""","g"),'"').replace(new RegExp("'","g"),"'")}static splitInParagraphs(n){return n.split("\n")}static joinParagraphs(n){return n.join("\n")}static toCamelCase(n,e="-"){return n.split(e).map((s,a)=>a?s.charAt(0).toUpperCase()+s.slice(1).toLowerCase():s.toLowerCase()).join("")}static bytesToMb(n){return Math.round(n/1048576)}static pascalCaseToEnum(n){return n.replace(new RegExp("([a-z])([A-Z])","g"),"$1_$2").toUpperCase()}static isTextUrl(n){const i=/\b((?:https?:(?:\/{1,3}|[a-z0-9%])|[a-z0-9.\-]+[.](?:com|net|org|edu|gov|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|post|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|Ja|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw)\/)(?:[^\s()<>{}\[\]]+|\([^\s()]*?\([^\s()]+\)[^\s()]*?\)|\([^\s]+?\))+(?:\([^\s()]*?\([^\s()]+\)[^\s()]*?\)|\([^\s]+?\)|[^\s`!() \[\]{};: '".,<>?\xab\xbb\u201c\u201d\u2018\u2019])|(?:[a-z0-9]+(?:[.\-][a-z0-9]+)*[.](?:com|net|org|edu|gov|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|post|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|Ja|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw)\b\/?(?!@)))/gi.exec(n);if(i){const r=i[0];if(r.length/n.trim().length>.8)return r}return null}static getWordCount(n){return n.match(/\b(\w+)\b/g)?.length}static sortByArray(n,e,i){n.sort((r,s)=>{const a=e.indexOf(r[i]);return a<e.indexOf(s[i])&&-1!==a?-1:1})}}var Tg=(()=>{return(t=Tg||(Tg={})).SOURCE="SOURCE",t.TRANSLATED="TRANSLATED",Tg;var t})();const kY='\n<svg width="24" height="22" viewBox="0 0 24 22" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M21.128 2.75H7.872C7.3905 2.75 7 3.10796 7 3.54933V6.87637H22V3.54933C22 3.10796 21.6095 2.75 21.128 2.75Z" fill="#2D92D4"/>\n<path d="M7 15.1499V18.4508C7 18.8922 7.3905 19.2502 7.8715 19.2502H21.128C21.6095 19.2502 22 18.8922 22 18.4508V15.1499H7Z" fill="#2150A9"/>\n<path d="M7 6.87646H22V11.0024H7V6.87646Z" fill="#2D83D4"/>\n<path d="M7 11.0024H22V15.1504H7V11.0024Z" fill="#2E70C9"/>\n<path d="M11.1595 15.5832H2.8405C2.3765 15.5832 2 15.238 2 14.8127V7.18696C2 6.76163 2.3765 6.4165 2.8405 6.4165H11.1595C11.6235 6.4165 12 6.76163 12 7.18696V14.8127C12 15.238 11.6235 15.5832 11.1595 15.5832Z" fill="#00488D"/>\n<path d="M9.20131 8.7085L8.42831 12.0378L7.57181 8.7085H6.47831L5.59481 12.141L4.79831 8.7085H3.82031L4.99231 13.2918H6.16831L7.02481 9.7677L7.88181 13.2918H9.00731L10.1793 8.7085H9.20131Z" fill="white"/>\n</svg>\n',IY='\n<svg width="24" height="22" viewBox="0 0 24 22" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M8 15H16V17H8V15ZM8 11H16V13H8V11ZM14 1H6C4.9 1 4 1.9 4 3V19C4 20.1 4.89 21 5.99 21H18C19.1 21 20 20.1 20 19V7L14 1ZM18 19H6V3H13V8H18V19Z" fill="#DF9BA4"/>\n</svg>\n',MY='\n<svg width="24" height="22" viewBox="0 0 24 22" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M8 15H16V17H8V15ZM8 11H16V13H8V11ZM14 1H6C4.9 1 4 1.9 4 3V19C4 20.1 4.89 21 5.99 21H18C19.1 21 20 20.1 20 19V7L14 1ZM18 19H6V3H13V8H18V19Z" fill="#245A30"/>\n</svg>\n',RY='\n<svg width="24" height="22" viewBox="0 0 24 22" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M4 11C4 15.5563 8.0295 19.25 13 19.25C17.9705 19.25 22 15.5563 22 11H13H4Z" fill="#DC4C2C"/>\n<path d="M13 2.75V11H22C22 6.44371 17.9705 2.75 13 2.75Z" fill="#F7A278"/>\n<path d="M13 2.75C8.0295 2.75 4 6.44371 4 11H13V2.75Z" fill="#C06346"/>\n<path d="M11.1595 15.5832H2.8405C2.3765 15.5832 2 15.238 2 14.8127V7.18696C2 6.76163 2.3765 6.4165 2.8405 6.4165H11.1595C11.6235 6.4165 12 6.76163 12 7.18696V14.8127C12 15.238 11.6235 15.5832 11.1595 15.5832Z" fill="#9B341F"/>\n<path d="M7.3365 8.71387H5V13.2972H6.012V11.6834H7.15C8.088 11.6834 8.8485 10.9863 8.8485 10.1265V10.0999C8.8485 9.33445 8.1715 8.71387 7.3365 8.71387ZM7.785 10.2475C7.785 10.6412 7.4365 10.9606 7.007 10.9606H6.012V9.43666H7.007C7.4365 9.43666 7.785 9.75612 7.785 10.1498V10.2475Z" fill="white"/>\n</svg>\n',OY='\n<svg width="24" height="22" viewBox="0 0 24 22" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\n<rect x="4" y="1" width="16.2822" height="20" fill="url(#pattern0)"/>\n<defs>\n<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">\n<use xlink:href="#image0_1791_18185" transform="scale(0.000833333 0.000678426)"/>\n</pattern>\n<image id="image0_1791_18185" width="1200" height="1474" xlink:href="data:image/png;base64,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ffZ/fq9///6x7LLLxiqrrBKrrrpqrLrqqh9fOgYdoa2tLUaPHh2jR4+OBx988ONf79u3byy33HKx3HLLxfLLLx9rrbVWLLzwwgoGADAHAiwAGs6/d8888cQTERGRy+ViyJAhseaaa8Z6660Xa6+9tnOO6BRTp06Np59+Op5++umPf23xxRePddZZJ9Zdd91Ye+21o2/fvgoFAPAJAiwAGl61Wo2RI0fGyJEj45ZbbolisRirrrpqbLjhhrHlllvGoosuqkh0mnfeeSfeeeeduP322yOXy8Wyyy4ba6+9dmy22WaxyiqrRJIkigQANDwBFgB8QqlUimeeeSaeeeaZuOCCC2K11VaLrbbaKrbcckvnZ9GpqtVqvPrqq/Hqq6/Gb37zmxg4cGBsuummsfnmm8dqq60mzAIAGpYACwA+Q5qm8dxzz8Vzzz0X55xzTmy55Zbxne98J5ZaainFodONGzcubrrpprjpppti0KBBseWWW8Z2220XSy+9tOIAAA0lpwQAMHdKpVLce++98bWvfS2OPfbYePXVVxWFLjN27Ni4/vrr4xvf+Ebsvffecc8990SlUlEYAKAhCLAA4HOqVqvxwAMPxN577x0//elPY9KkSYpCl3rllVfipJNOiq985Stx+eWXx5QpUxQFAKhrAiwAmEdpmsa9994bu+++e9x4441RLpcVhS41ceLEuOKKK+IrX/lKnH766TF+/HhFAQDqkgALAObTRx99FOecc07sv//+8dZbbykIXa6trS1uu+222GWXXeK0006LyZMnKwoAUFcEWADQQV5++eXYe++94/bbb1cMukWpVIrbb789dtlll7jgggti+vTpigIA1AUBFgB0oOnTp8dpp50WJ554YrS1tSkI3bYOr7/++thjjz3i3nvvVRAAoOYJsACgE/zxj3+Mgw8+2KVcdKsJEybET3/60zj44INd3goA1DQBFgB0khdffDH23XffePPNNxWDbvXMM8/Et771rbj++uujWq0qCABQcwRYANCJ3n333TjggANi+PDhikG3am1tjQsuuCAOOOCAGDlypIIAADVFgAUAnWzq1Klx2GGHxUsvvaQYdLvhw4fHPvvs48sGAICaIsACgC4wbdq0OPTQQ+PVV19VDLpdW1tbnHbaafHTn/40WltbFQQAyDwBFgB0kY8++igOP/zwGD16tGKQCffee28ccMAB8fbbbysGAJBpAiwA6EKTJ0+OI444wrcTkhmvvfZa7L333vHII48oBgCQWQIsAOhiY8eOjWOOOSba29sVg0yYNm1aHH300XHDDTcoBgCQSQIsAOgGzz//fJx++ukKQWakaRrnnntuXHDBBYoBAGSOAAsAusndd98dN910k0KQKddff32cfPLJUalUFAMAyAwBFgB0o/POOy9eeuklhSBT7r777vjRj34UbW1tigEAZIIACwC6UblcjpNOOilaW1sVg0x55JFH4qijjnJWGwCQCQIsAOhmo0ePdu4QmfTUU0/FCSecENVqVTEAgG4lwAKADLjlllvi0UcfVQgy58EHH4xf/OIXCgEAdCsBFgBkQJqmccYZZ8T06dMVg8y59dZb46KLLlIIAKDbFJQAgDnZZZddYu211+7Q2yyVSv9z7tO0adOiWq3Ghx9+GB988MGn/j1x4sS6P1B63LhxcdVVV8X3vvc9i47Mufbaa6OlpSW+8Y1vKAYA0OUEWADM0YorrhhbbLFFt44hTdOYOHFijBkzJt59990YM2ZMjB49Op5//vl4//3366bWN954Y+ywww4xdOhQC28u9OrVK44//vgOua22trZob2//n/D0/fffjwkTJsT48ePrap3Nq/PPPz+GDh0aG2ywgcXXzfbdd99YccUVFaKTrLDCCooAkDECLABqQpIkMWDAgBgwYECsscYa//N7b731Vvzzn/+Mv//97/HXv/41Pvzww5qdZ7lcjjPPPDMuuuiiSJJE4+f0RqZQ6LJwtb29PUaPHh2jRo2KkSNHxmuvvRYvvvhiTJ06tWHqXa1W4yc/+Ulcc801scQSS1iA3WiVVVaJDTfcUCEAaJz3fUoAQK0bPHhwDB48OHbYYYcolUrxyCOPxHXXXRevvPJKTc7nmWeeiQcffDA233xzzc2QpqamWG655WK55Zb7n1//d4D65JNPxpNPPhlTpkyp6zp8+OGHccwxx8QVV1wRPXv2tDAAgC7hEHcA6kqxWIwtttgirr322jjttNNiwIABNTmPK664IqrVqobWgH+HpyeffHLce++9cdVVV8U3v/nNWHTRRet2zm+88Uaceuqpmg8AdBkBFgB1a/PNN4+bbroptt1225ob+4gRI+LBBx/UxFp7Y5XLxcorrxyHHXZY3H777XHZZZfFDjvsEM3NzXU31z/96U9xww03aDoA0DXvs5QAgHrWu3fvOOmkk+Koo46KXK62XvauvPJKu7BqWJIksdpqq8UJJ5wQd911Vxx22GE1uyNwdi6++OIYOXKkZgMAnU6ABUBD2H333ePUU0+NpqammhmzXVj1Y8EFF4xvfvObceutt8YxxxwTgwYNqot5tbe3x0knnRSVSkWTAYBOJcACoGFsttlmceaZZ0ahUDvfYfLb3/5W4+pIU1NT7LLLLnHLLbfEkUceGb179675Ob3yyitx7bXXai4A0KkEWAA0lA022CBOOOGEmrmc8IUXXogRI0ZoXJ0pFArxta99LW699dbYcccdI0mSmp7PVVddFa+//rrGAgCdRoAFQMPZZptt4oADDqiZ8d52222aVqdaWlriJz/5SVx88cWx5JJL1uw8SqVSnHTSSVEqlTQVAOgUAiwAGtJ3vvOd2GyzzWpirPfcc0/MmDFD0+rYGmusEdddd11svfXWNTuH119/PW688UbNBAA6hQALgIaUJEkcf/zxMXDgwMyPddq0afHAAw9oWp3r1atXnHLKKXHiiSdGjx49anIOV199dUycOFEzAYAOJ8ACoGH16dMnTjjhhJo4f+j+++/XsAax/fbbx0UXXRQLLbRQzY19+vTpcdlll2kiANDhBFgANLS11147dt1118yP8+9//3tMmzZNwxrEyiuvHNdee20st9xyNTf2P/zhD/HKK69oIgDQoQRYADS8Qw45JPr375/pMZZKpXj00Uc1q4EsssgicfHFF8cqq6xSU+OuVqtx7rnnaiAA0KEEWAA0vN69e8dBBx2U+XE+9NBDmtVg+vTpE+edd16suuqqNTXuZ555Jh5++GENBAA6jAALACJixx13jKWWWirTY3z88cejra1NsxpM796949xzz43ll1++psZ98cUXR7Va1UAAoEMIsAAgInK5XOy9996ZHuP06dPjpZde0qwG1Lt37zjvvPNi8ODBNTPmUaNGxSOPPKJ5AEDHvF9XAgCYaZtttolFF10002N87rnnNKpBtbS0xNlnnx19+/atmTFfc801GgcAdAgBFgD8S6FQiB133DHTY3zhhRc0qoEtueSSceqpp0Y+n6+J8b788svx5JNPahwAMN8EWADwX3bcccfI5bL78vj88887V6jBrb322nHIIYfUzHjtwgIAOoIACwD+y6BBg2L11VfP7PimTZsWI0aM0KgG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ySefzOz4nH8FAMwtARYAQJ16/vnn46OPPsrs+Jx/BQDMLQEWAECduu+++zI9vnXXXVeTAIC5IsACAKhDbW1tcf/992d2fEOHDo3BgwdrFAAwVwRYAAB16JFHHsn05YMbb7yxJgEAc02ABQBQh+65555Mj2+TTTbRJABgrgmwAADqzKRJkzL97YP9+vWLlVdeWaMAgLkmwAIAqDN//OMfo1KpZHZ8G2+8ceRy3oYCAHPPOwcAgDqSpmn84Q9/yPQYnX8FAHxeAiwAgDry1FNPxciRIzM7vt69e8d6662nUQDA5yLAAgCoIzfeeGOmx7fFFltEc3OzRgEAn4sACwCgTowaNSqeeOKJTI9xu+220ygA4HMTYAEA1Imrrroq0jTN7PgWXXTRWH311TUKAPjcBFgAAHXgrbfeigceeCDTY9x22219+yAAME+8gwAAqANXXnllVCqVTI/R5YMAwLwSYAEA1LjXX389/vSnP2V6jCuvvHIMGTJEswCAeSLAAgCoceeff35Uq9VMj3G33XbTKABgngmwAABq2OOPPx5PPvlkpsfYr1+/2HLLLTULAJhnAiwAgBpVKpXiV7/6VebHucsuu0RTU5OGAQDzTIAFAFCjrrvuunjzzTczPcZCoRA777yzZgEA80WABQBQg95666249tprMz/OzTffPAYMGKBhAMB8EWABANSYSqUSJ598crS1tWV+rHvssYeGAQDzTYAFAFBjrrrqqvjnP/+Z+XGutdZaseqqq2oYADDfBFgAADXkueeei6uvvromxnrggQdqGADQIQRYAAA1YuLEiXH88cdHpVLJ/FjXWWedWH311TUNAOgQAiwAgBrQ1tYWRx99dEyYMKEmxmv3FQDQkQRYAAAZV61W46STTooXX3yxJsa7wQYbxBe+8AWNAwA6jAALACDD0jSN0047LR544IGaGG+SJLH//vtrHADQoQRYAAAZlaZpnHPOOXHnnXfWzJi33nrrWGWVVTQPAOhQBSUAAMiearUap59+etxxxx01M+ZevXrFoYceqnkAQIcTYAEAZExbW1ucfPLJcf/999fUuPfbb78YMGCABgIAHU6ABQCQIRMmTIhjjjmmZg5s/7fBgwfHHnvsoYEAQKdwBhYAQEY899xzsc8++9RceBURcfTRR0dTU5MmAgCdwg4sAIBuVi6X44orrohrr702qtVqzY1/q622inXWWUcjAYBOI8ACAOhGr7/+epx22mk1uesqImLhhReOo446SiMBgE4lwAIA6AYzZsyIK6+8Mm644YaoVCo1O49jjz02WlpaNBQA6FQCLACALtTW1ha33XZbXHPNNTF58uSansvOO+8cG264oaYCAJ1OgAUA0AVaW1vj7rvvjmuvvTbGjRtX8/NZcskl47DDDtNYAKBLCLAAADrR2LFj4/e//33ccccd8cEHH9TFnHK5XJxwwgnRq1cvDQYAuoQACwCgg02bNi0efvjheOCBB+Kxxx6ryW8W/CyHHnpofOELX9BoAKDLCLAAADrAu+++G0899VT89a9/jaeffjra2trqcp5bb711fOMb39BwAKBLCbAAAD6n1tbWGDVqVAwfPjz++c9/xnPPPVcX51rNyfLLLx/HHXecBQAAdDkBFgDAJ0yfPj0+/PDDmDJlSowbNy7Gjh0b7733XrzzzjsxYsSIePfdd+vussA5aWlpiTPOOCN69OhhgQAAXU6ABQDUrGnTpsXee+89X7fx0UcfRZqmERHxwQcfxIwZM6JcLivuf8nn83HqqafGoEGDFAMA6BYCLACgZlUqlXjllVcUohMlSRI//vGPY6211lIMAKDb5JQAAIDZOeyww+LLX/6yQgAA3UqABQDALO23336+cRAAyAQBFgAAn7LbbrvFgQceqBAAQCYIsAAA+B/bbrtt/OAHP1AIACAzHOIOAMDHtt9++zj++OMjl/P3nABAdgiwAACIiIg999wzjjzyyEiSRDEAgEwRYAEAEN/61rfie9/7nkIAAJkkwAIAaGBJksQRRxwRX/va1xQDAMgsARYAQIPq1atXnHjiibHpppsqBgCQaQIsAIAGNHDgwPjFL34Ryy+/vGIAAJnn62UAABrM6quvHtdee63wCgCoGXZgAQA0kJ122il++MMfRqHgbSAAUDu8cwEAaAC9e/eOo48+OrbddlvFAABqjgALAKDOrbzyynHSSSfFkksuqRgAQE0SYAEA1Knm5ubYf//945vf/Gbk83kFAQBqlgALAKAOrbnmmvHjH/84Bg8erBgAQM0TYAEA1JFFFlkkDj744Nhuu+0iSRIFAQDqggALAKAOLLDAAvHtb3879txzz2hublYQAKCuCLAAAGpYr169Ytddd4199tkn+vTpoyAAQF0SYAEA1KBFF100dt9999h5552j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"/>\n</defs>\n</svg>\n',LY='\n<svg width="24" height="22" viewBox="0 0 24 22" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M8 15H16V17H8V15ZM8 11H16V13H8V11ZM14 1H6C4.9 1 4 1.9 4 3V19C4 20.1 4.89 21 5.99 21H18C19.1 21 20 20.1 20 19V7L14 1ZM18 19H6V3H13V8H18V19Z" fill="#4D7498"/>\n</svg>\n',PY='\n<svg width="24" height="22" viewBox="0 0 24 22" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M8 15H16V17H8V15ZM8 11H16V13H8V11ZM14 1H6C4.9 1 4 1.9 4 3V19C4 20.1 4.89 21 5.99 21H18C19.1 21 20 20.1 20 19V7L14 1ZM18 19H6V3H13V8H18V19Z" fill="#8E80DB"/>\n</svg>\n',NY='\n<svg width="24" height="22" viewBox="0 0 24 22" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M8 15H16V17H8V15ZM8 11H16V13H8V11ZM14 1H6C4.9 1 4 1.9 4 3V19C4 20.1 4.89 21 5.99 21H18C19.1 21 20 20.1 20 19V7L14 1ZM18 19H6V3H13V8H18V19Z" fill="#B85547"/>\n</svg>\n',FY='\n<svg width="24" height="22" viewBox="0 0 24 22" fill="none" xmlns="http://www.w3.org/2000/svg">\n<path d="M22 6.875H14V11H22V6.875Z" fill="#21A366"/>\n<path d="M22 11H6V18.3333C6 18.8398 6.4475 19.25 7 19.25H21C21.5525 19.25 22 18.8398 22 18.3333V11Z" fill="#185C37"/>\n<path d="M22 11H14V15.125H22V11Z" fill="#107C42"/>\n<path d="M14 6.875H6V11H14V6.875Z" fill="#3FA071"/>\n<path d="M21 2.75H14V6.875H22V3.66667C22 3.16021 21.5525 2.75 21 2.75Z" fill="#33C481"/>\n<path d="M7 2.75H14V6.875H6V3.66667C6 3.16021 6.4475 2.75 7 2.75Z" fill="#21A366"/>\n<path opacity="0.05" d="M11.1595 5.9585H6V16.9585H11.1595C12.176 16.9585 13 16.2032 13 15.2714V7.64562C13 6.71383 12.176 5.9585 11.1595 5.9585Z" fill="black"/>\n<path opacity="0.07" d="M11.1065 16.4999H6V6.11084H11.1065C11.9685 6.11084 12.667 6.75113 12.667 7.5413V15.0694C12.6665 15.8596 11.968 16.4999 11.1065 16.4999Z" fill="black"/>\n<path opacity="0.09" d="M11.053 16.0418H6V6.26416H11.053C11.76 6.26416 12.333 6.78941 12.333 7.43749V14.8685C12.3335 15.5165 11.76 16.0418 11.053 16.0418Z" fill="black"/>\n<path d="M11 15.5832H3C2.4475 15.5832 2 15.173 2 14.6665V7.33317C2 6.82671 2.4475 6.4165 3 6.4165H11C11.5525 6.4165 12 6.82671 12 7.33317V14.6665C12 15.173 11.5525 15.5832 11 15.5832Z" fill="url(#paint0_linear_1791_17641)"/>\n<path d="M4.9032 8.7085H6.09619L7.06419 10.4291L8.08719 8.7085H9.20169L7.66619 11.0002L9.23669 13.2918H8.06119L7.00619 11.4906L5.95569 13.2918H4.7627L6.35919 10.9919L4.9032 8.7085Z" fill="white"/>\n<defs>\n<linearGradient id="paint0_linear_1791_17641" x1="2.3625" y1="6.7488" x2="10.732" y2="15.8792" gradientUnits="userSpaceOnUse">\n<stop stop-color="#18884F"/>\n<stop offset="1" stop-color="#0B6731"/>\n</linearGradient>\n</defs>\n</svg>\n',BY='\n<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"\n\t viewBox="0 0 50.3 63.7" style="enable-background:new 0 0 50.3 63.7;" xml:space="preserve">\n<g>\n\t<path class="st0" d="M16,18.2c0.1,0,0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.2-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.1,0-0.3-0.1-0.4\n\t\ts-0.1-0.2-0.2-0.2s-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.4,0h-1v1.4h1.1C15.8,18.2,15.9,18.2,16,18.2z"/>\n\t<path class="st0" d="M25.1,6.7C16,6.7,8.6,14.2,8.6,23.2c0,9.1,7.4,16.6,16.5,16.6s16.5-7.4,16.5-16.5S34.3,6.7,25.1,6.7z\n\t\t M15.6,15.5c0.3,0,0.6,0,0.9,0.1c0.3,0,0.6,0.1,0.8,0.3c0.2,0.1,0.4,0.3,0.6,0.5s0.2,0.5,0.2,0.9s-0.1,0.7-0.3,1\n\t\tc-0.2,0.3-0.5,0.4-0.9,0.6c0.2,0,0.4,0.1,0.6,0.2s0.3,0.2,0.5,0.4c0.1,0.1,0.2,0.3,0.3,0.5c0.1,0.2,0.1,0.4,0.1,0.6\n\t\tc0,0.4-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.6c-0.2,0.1-0.5,0.3-0.8,0.3s-0.6,0.1-0.9,0.1h-2.8v-7\n\t\tC13.1,15.5,15.6,15.5,15.6,15.5z M19.6,31.2h-2l-3-4.9v4.9h-1.5v-6.9h2.1l2.9,4.8v-4.8h1.5V31.2z M19.6,15.5L19.6,15.5h4.8v1.4\n\t\th-3.2v1.3h3v1.4h-3V21h3.3v1.4h-4.9V15.5z M29.6,31.2h-1.5V26l-1.8,5.3h-1.2L23.3,26v5.3h-1.5v-6.9h2.3l1.6,4.5l1.6-4.5h2.3\n\t\tC29.6,24.4,29.6,31.2,29.6,31.2z M30.3,21.2c-0.1,0.3-0.3,0.5-0.6,0.7s-0.5,0.3-0.9,0.4s-0.7,0.1-1,0.1c-0.5,0-0.9-0.1-1.3-0.2\n\t\ts-0.7-0.4-1.1-0.7l1.1-1.2c0.2,0.2,0.4,0.4,0.6,0.5s0.5,0.2,0.7,0.2c0.1,0,0.2,0,0.4,0s0.2-0.1,0.3-0.1c0.1-0.1,0.2-0.1,0.2-0.2\n\t\tc0.1-0.1,0.1-0.2,0.1-0.3c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.4-0.2-0.6-0.3c-0.2-0.1-0.5-0.2-0.8-0.3c-0.3-0.1-0.5-0.2-0.8-0.3\n\t\tc-0.2-0.1-0.4-0.3-0.6-0.6c-0.2-0.2-0.2-0.5-0.2-0.9s0.1-0.7,0.2-1s0.3-0.5,0.6-0.7c0.2-0.2,0.5-0.3,0.8-0.4s0.6-0.1,1-0.1\n\t\ts0.8,0.1,1.1,0.2c0.4,0.1,0.7,0.3,1,0.6L29.4,17c-0.1-0.2-0.3-0.3-0.5-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.1,0-0.2,0-0.3,0\n\t\tc-0.1,0-0.2,0.1-0.3,0.1c-0.2,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.2,0.1,0.4,0.2,0.5c0.2,0.1,0.4,0.2,0.6,0.3\n\t\tc0.2,0.1,0.5,0.2,0.8,0.2s0.5,0.2,0.8,0.3c0.2,0.1,0.4,0.3,0.6,0.6c0.2,0.2,0.2,0.6,0.2,1C30.5,20.7,30.4,21,30.3,21.2z M36.6,25.7\n\t\th-2v5.6h-1.5v-5.6h-2v-1.3h5.5V25.7z M36.7,16.7h-2v5.6h-1.5v-5.6h-2v-1.3h5.5V16.7z"/>\n\t<path class="st0" d="M16.4,21c0.1,0,0.2-0.1,0.3-0.1c0.1,0,0.2-0.1,0.2-0.3c0.1-0.1,0.1-0.2,0.1-0.4s0-0.3-0.1-0.4\n\t\ts-0.2-0.2-0.3-0.2c-0.1-0.1-0.3-0.1-0.4-0.1s-0.3,0-0.4,0h-1.2V21H16C16.1,21,16.2,21,16.4,21z"/>\n</g>\n<g>\n\t<path class="st0" d="M9,40.3L0.5,55c-0.2,0.2-0.2,0.5,0,0.7S0.9,56,1.2,56l8.7-1.5l3.9,8c0.1,0.2,0.3,0.4,0.6,0.4\n\t\tc0.2,0,0.5-0.1,0.7-0.5l8.8-15.7C18.2,46.4,13,44,9,40.3z"/>\n\t<path class="st0" d="M49.8,55.2l-8.6-14.9c-3.9,3.7-9.1,6.1-14.8,6.4l8.9,16c0.1,0.2,0.4,0.3,0.6,0.3c0.2,0,0.5-0.2,0.6-0.2l3.9-8\n\t\tl8.7,1.5c0.3,0,0.5-0.1,0.7-0.3C49.9,55.7,49.9,55.5,49.8,55.2z"/>\n\t<path class="st0" d="M47.1,23.3c0-12.1-9.9-22-22-22s-22,9.9-22,22s9.9,22,22,22S47.1,35.4,47.1,23.3z M25.1,41.2\n\t\tc-9.9,0-17.9-8-17.9-17.9c0-9.9,8.1-17.9,17.9-17.9c9.8,0,17.9,8,17.9,17.9C43,33.2,35,41.2,25.1,41.2z"/>\n</g>\n</svg>\n',VY='\n<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"\n\t viewBox="0 0 15.9 20.3" style="enable-background:new 0 0 15.9 20.3;" xml:space="preserve">\n<g id="Layer_1_00000122707316528403919840000013038058684751510177_">\n</g>\n<g id="Layer_2_00000016758538246796687430000000356337115434427298_">\n\t<polygon class="st0" points="6.4,5.1 7.6,5.1 7,2.9 \t"/>\n\t<path class="st0" d="M15.7,0H3C1.3,0,0,1.3,0,2.9v12.2c0.6-0.5,1.4-0.9,2.3-0.9h13.6v-14C15.9,0.1,15.8,0,15.7,0z M9.1,7.2\n\t\tC8.9,7.3,8.8,7.3,8.6,7.3S8.2,7.2,8.2,7.1l-0.3-1H6.2l-0.3,1c0,0.2-0.2,0.2-0.4,0.2c-0.2,0-0.4-0.1-0.6-0.2c-0.2,0-0.3-0.2-0.2-0.4\n\t\tl1.5-5C6.3,1.3,6.8,1.3,7,1.3s0.7,0,0.8,0.4l1.5,5C9.4,6.9,9.3,7.1,9.1,7.2z M13.2,13.1h-2.9c-0.6,0-0.9-0.6-0.6-1.1l2.1-3.3h-1.5\n\t\tC10,8.7,9.7,8.4,9.7,8c0-0.4,0.3-0.7,0.7-0.7h2.8c0.5,0,0.9,0.6,0.6,1.1l-2.1,3.3h1.6c0.4,0,0.7,0.3,0.7,0.7\n\t\tC13.9,12.8,13.6,13.1,13.2,13.1z"/>\n</g>\n<path class="st0" d="M2.3,15.4c-0.4,0-0.8,0.1-1.1,0.4c-0.7,0.4-1.2,1.1-1.2,2c0,1.1,0.8,2.1,1.9,2.2C2,20,2,20,2.1,20\n\tc0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0h13.4c0.1,0,0.2-0.1,0.2-0.2v-4.4H2.3z"/>\n</svg>\n',UY=["*"];let Eg;function zd(t){return function jY(){if(void 0===Eg&&(Eg=null,typeof window<"u")){const t=window;void 0!==t.trustedTypes&&(Eg=t.trustedTypes.createPolicy("angular#components",{createHTML:n=>n}))}return Eg}()?.createHTML(t)||t}function HR(t){return Error(`Unable to find icon with the name "${t}"`)}function GR(t){return Error(`The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was "${t}".`)}function WR(t){return Error(`The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was "${t}".`)}class dl{constructor(n,e,i){this.url=n,this.svgText=e,this.options=i}}let Hd=(()=>{class t{constructor(e,i,r,s){this._httpClient=e,this._sanitizer=i,this._errorHandler=s,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._resolvers=[],this._defaultFontSetClass=["material-icons","mat-ligature-font"],this._document=r}addSvgIcon(e,i,r){return this.addSvgIconInNamespace("",e,i,r)}addSvgIconLiteral(e,i,r){return this.addSvgIconLiteralInNamespace("",e,i,r)}addSvgIconInNamespace(e,i,r,s){return this._addSvgIconConfig(e,i,new dl(r,null,s))}addSvgIconResolver(e){return this._resolvers.push(e),this}addSvgIconLiteralInNamespace(e,i,r,s){const a=this._sanitizer.sanitize(Qt.HTML,r);if(!a)throw WR(r);const o=zd(a);return this._addSvgIconConfig(e,i,new dl("",o,s))}addSvgIconSet(e,i){return this.addSvgIconSetInNamespace("",e,i)}addSvgIconSetLiteral(e,i){return this.addSvgIconSetLiteralInNamespace("",e,i)}addSvgIconSetInNamespace(e,i,r){return this._addSvgIconSetConfig(e,new dl(i,null,r))}addSvgIconSetLiteralInNamespace(e,i,r){const s=this._sanitizer.sanitize(Qt.HTML,i);if(!s)throw WR(i);const a=zd(s);return this._addSvgIconSetConfig(e,new dl("",a,r))}registerFontClassAlias(e,i=e){return this._fontCssClassesByAlias.set(e,i),this}classNameForFontAlias(e){return this._fontCssClassesByAlias.get(e)||e}setDefaultFontSetClass(...e){return this._defaultFontSetClass=e,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(e){const i=this._sanitizer.sanitize(Qt.RESOURCE_URL,e);if(!i)throw GR(e);const r=this._cachedIconsByUrl.get(i);return r?ye(Sg(r)):this._loadSvgIconFromConfig(new dl(e,null)).pipe(Mn(s=>this._cachedIconsByUrl.set(i,s)),Le(s=>Sg(s)))}getNamedSvgIcon(e,i=""){const r=KR(i,e);let s=this._svgIconConfigs.get(r);if(s)return this._getSvgFromConfig(s);if(s=this._getIconConfigFromResolvers(i,e),s)return this._svgIconConfigs.set(r,s),this._getSvgFromConfig(s);const a=this._iconSetConfigs.get(i);return a?this._getSvgFromIconSetConfigs(e,a):rl(HR(r))}ngOnDestroy(){this._resolvers=[],this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(e){return e.svgText?ye(Sg(this._svgElementFromConfig(e))):this._loadSvgIconFromConfig(e).pipe(Le(i=>Sg(i)))}_getSvgFromIconSetConfigs(e,i){const r=this._extractIconWithNameFromAnySet(e,i);return r?ye(r):hp(i.filter(a=>!a.svgText).map(a=>this._loadSvgIconSetFromConfig(a).pipe(br(o=>{const u=`Loading icon set URL: ${this._sanitizer.sanitize(Qt.RESOURCE_URL,a.url)} failed: ${o.message}`;return this._errorHandler.handleError(new Error(u)),ye(null)})))).pipe(Le(()=>{const a=this._extractIconWithNameFromAnySet(e,i);if(!a)throw HR(e);return a}))}_extractIconWithNameFromAnySet(e,i){for(let r=i.length-1;r>=0;r--){const s=i[r];if(s.svgText&&s.svgText.toString().indexOf(e)>-1){const a=this._svgElementFromConfig(s),o=this._extractSvgIconFromSet(a,e,s.options);if(o)return o}}return null}_loadSvgIconFromConfig(e){return this._fetchIcon(e).pipe(Mn(i=>e.svgText=i),Le(()=>this._svgElementFromConfig(e)))}_loadSvgIconSetFromConfig(e){return e.svgText?ye(null):this._fetchIcon(e).pipe(Mn(i=>e.svgText=i))}_extractSvgIconFromSet(e,i,r){const s=e.querySelector(`[id="${i}"]`);if(!s)return null;const a=s.cloneNode(!0);if(a.removeAttribute("id"),"svg"===a.nodeName.toLowerCase())return this._setSvgAttributes(a,r);if("symbol"===a.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(a),r);const o=this._svgElementFromString(zd("<svg></svg>"));return o.appendChild(a),this._setSvgAttributes(o,r)}_svgElementFromString(e){const i=this._document.createElement("DIV");i.innerHTML=e;const r=i.querySelector("svg");if(!r)throw Error("<svg> tag not found");return r}_toSvgElement(e){const i=this._svgElementFromString(zd("<svg></svg>")),r=e.attributes;for(let s=0;s<r.length;s++){const{name:a,value:o}=r[s];"id"!==a&&i.setAttribute(a,o)}for(let s=0;s<e.childNodes.length;s++)e.childNodes[s].nodeType===this._document.ELEMENT_NODE&&i.appendChild(e.childNodes[s].cloneNode(!0));return i}_setSvgAttributes(e,i){return e.setAttribute("fit",""),e.setAttribute("height","100%"),e.setAttribute("width","100%"),e.setAttribute("preserveAspectRatio","xMidYMid meet"),e.setAttribute("focusable","false"),i&&i.viewBox&&e.setAttribute("viewBox",i.viewBox),e}_fetchIcon(e){const{url:i,options:r}=e,s=r?.withCredentials??!1;if(!this._httpClient)throw function zY(){return Error("Could not find HttpClient provider for use with Angular Material icons. Please include the HttpClientModule from @angular/common/http in your app imports.")}();if(null==i)throw Error(`Cannot fetch icon from URL "${i}".`);const a=this._sanitizer.sanitize(Qt.RESOURCE_URL,i);if(!a)throw GR(i);const o=this._inProgressUrlFetches.get(a);if(o)return o;const l=this._httpClient.get(a,{responseType:"text",withCredentials:s}).pipe(Le(u=>zd(u)),tg(()=>this._inProgressUrlFetches.delete(a)),mo());return this._inProgressUrlFetches.set(a,l),l}_addSvgIconConfig(e,i,r){return this._svgIconConfigs.set(KR(e,i),r),this}_addSvgIconSetConfig(e,i){const r=this._iconSetConfigs.get(e);return r?r.push(i):this._iconSetConfigs.set(e,[i]),this}_svgElementFromConfig(e){if(!e.svgElement){const i=this._svgElementFromString(e.svgText);this._setSvgAttributes(i,e.options),e.svgElement=i}return e.svgElement}_getIconConfigFromResolvers(e,i){for(let r=0;r<this._resolvers.length;r++){const s=this._resolvers[r](i,e);if(s)return GY(s)?new dl(s.url,null,s.options):new dl(s,null)}}}return t.\u0275fac=function(e){return new(e||t)(R(Ki,8),R(fc),R(Ye,8),R(Js))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function Sg(t){return t.cloneNode(!0)}function KR(t,n){return t+":"+n}function GY(t){return!(!t.url||!t.options)}const WY=Ec(class{constructor(t){this._elementRef=t}}),KY=new Z("MAT_ICON_DEFAULT_OPTIONS"),YY=new Z("mat-icon-location",{providedIn:"root",factory:function qY(){const t=nn(Ye),n=t?t.location:null;return{getPathname:()=>n?n.pathname+n.search:""}}}),YR=["clip-path","color-profile","src","cursor","fill","filter","marker","marker-start","marker-mid","marker-end","mask","stroke"],XY=YR.map(t=>`[${t}]`).join(", "),QY=/^url\(['"]?#(.*?)['"]?\)$/;let Gd=(()=>{class t extends WY{constructor(e,i,r,s,a,o){super(e),this._iconRegistry=i,this._location=s,this._errorHandler=a,this._inline=!1,this._previousFontSetClass=[],this._currentIconFetch=ae.EMPTY,o&&(o.color&&(this.color=this.defaultColor=o.color),o.fontSet&&(this.fontSet=o.fontSet)),r||e.nativeElement.setAttribute("aria-hidden","true")}get inline(){return this._inline}set inline(e){this._inline=zt(e)}get svgIcon(){return this._svgIcon}set svgIcon(e){e!==this._svgIcon&&(e?this._updateSvgIcon(e):this._svgIcon&&this._clearSvgElement(),this._svgIcon=e)}get fontSet(){return this._fontSet}set fontSet(e){const i=this._cleanupFontValue(e);i!==this._fontSet&&(this._fontSet=i,this._updateFontIconClasses())}get fontIcon(){return this._fontIcon}set fontIcon(e){const i=this._cleanupFontValue(e);i!==this._fontIcon&&(this._fontIcon=i,this._updateFontIconClasses())}_splitIconName(e){if(!e)return["",""];const i=e.split(":");switch(i.length){case 1:return["",i[0]];case 2:return i;default:throw Error(`Invalid icon name: "${e}"`)}}ngOnInit(){this._updateFontIconClasses()}ngAfterViewChecked(){const e=this._elementsWithExternalReferences;if(e&&e.size){const i=this._location.getPathname();i!==this._previousPath&&(this._previousPath=i,this._prependPathToReferences(i))}}ngOnDestroy(){this._currentIconFetch.unsubscribe(),this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(e){this._clearSvgElement();const i=this._location.getPathname();this._previousPath=i,this._cacheChildrenWithExternalReferences(e),this._prependPathToReferences(i),this._elementRef.nativeElement.appendChild(e)}_clearSvgElement(){const e=this._elementRef.nativeElement;let i=e.childNodes.length;for(this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear();i--;){const r=e.childNodes[i];(1!==r.nodeType||"svg"===r.nodeName.toLowerCase())&&r.remove()}}_updateFontIconClasses(){if(!this._usingFontIcon())return;const e=this._elementRef.nativeElement,i=(this.fontSet?this._iconRegistry.classNameForFontAlias(this.fontSet).split(/ +/):this._iconRegistry.getDefaultFontSetClass()).filter(r=>r.length>0);this._previousFontSetClass.forEach(r=>e.classList.remove(r)),i.forEach(r=>e.classList.add(r)),this._previousFontSetClass=i,this.fontIcon!==this._previousFontIconClass&&!i.includes("mat-ligature-font")&&(this._previousFontIconClass&&e.classList.remove(this._previousFontIconClass),this.fontIcon&&e.classList.add(this.fontIcon),this._previousFontIconClass=this.fontIcon)}_cleanupFontValue(e){return"string"==typeof e?e.trim().split(" ")[0]:e}_prependPathToReferences(e){const i=this._elementsWithExternalReferences;i&&i.forEach((r,s)=>{r.forEach(a=>{s.setAttribute(a.name,`url('${e}#${a.value}')`)})})}_cacheChildrenWithExternalReferences(e){const i=e.querySelectorAll(XY),r=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let s=0;s<i.length;s++)YR.forEach(a=>{const o=i[s],l=o.getAttribute(a),u=l?l.match(QY):null;if(u){let h=r.get(o);h||(h=[],r.set(o,h)),h.push({name:a,value:u[1]})}})}_updateSvgIcon(e){if(this._svgNamespace=null,this._svgName=null,this._currentIconFetch.unsubscribe(),e){const[i,r]=this._splitIconName(e);i&&(this._svgNamespace=i),r&&(this._svgName=r),this._currentIconFetch=this._iconRegistry.getNamedSvgIcon(r,i).pipe(gn(1)).subscribe(s=>this._setSvgElement(s),s=>{this._errorHandler.handleError(new Error(`Error retrieving icon ${i}:${r}! ${s.message}`))})}}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(Hd),As("aria-hidden"),_(YY),_(Js),_(KY,8))},t.\u0275cmp=ce({type:t,selectors:[["mat-icon"]],hostAttrs:["role","img",1,"mat-icon","notranslate"],hostVars:8,hostBindings:function(e,i){2&e&&(Me("data-mat-icon-type",i._usingFontIcon()?"font":"svg")("data-mat-icon-name",i._svgName||i.fontIcon)("data-mat-icon-namespace",i._svgNamespace||i.fontSet)("fontIcon",i._usingFontIcon()?i.fontIcon:null),Mt("mat-icon-inline",i.inline)("mat-icon-no-color","primary"!==i.color&&"accent"!==i.color&&"warn"!==i.color))},inputs:{color:"color",inline:"inline",svgIcon:"svgIcon",fontSet:"fontSet",fontIcon:"fontIcon"},exportAs:["matIcon"],features:[J],ngContentSelectors:UY,decls:1,vars:0,template:function(e,i){1&e&&(Ci(),rn(0))},styles:[".mat-icon{-webkit-user-select:none;user-select:none;background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px;overflow:hidden}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}.mat-icon.mat-ligature-font[fontIcon]::before{content:attr(fontIcon)}[dir=rtl] .mat-icon-rtl-mirror{transform:scale(-1, 1)}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon{display:block}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-icon{margin:auto}"],encapsulation:2,changeDetection:0}),t})(),Fb=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[At,At]}),t})(),ZY=(()=>{class t{constructor(e,i){this.iconRegistry=e,this.sanitizer=i}registerIcons(){if(!this.iconsRegistered){this.iconsRegistered=!0;for(const e in Qn)this.iconRegistry.addSvgIconLiteral(e.toLowerCase(),this.sanitizer.bypassSecurityTrustHtml(Qn[e]))}}}return t.\u0275fac=function(e){return new(e||t)(R(Hd),R(fc))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const io={de:{APP_NAME:"Tilde MT",TLD_TRANSLATE:{PREPARING_TRANSLATION:"\xdcbersetzung beginnt",SOURCE_TOOLTIP_ONLY_TEXT:"Geben Sie den Text ein, den Sie \xfcbersetzen m\xf6chten.",SOURCE_TOOLTIP_SENSITIVE_INFO:"Verwenden Sie {{appName}} nicht, um geheime oder vertrauliche Informationen oder Texte zu \xfcbersetzen, die besondere Kategorien personenbezogener Daten wie Gesundheitsdaten enthalten.",REGISTERED_FORMATS_LOGGED_IN:"Registrierte Benutzer haben Zugriff auf die folgenden Dokumentformate zur \xdcbersetzung: {{formats}}.",REGISTERED_FORMATS:'Registrierte Benutzer haben Zugriff auf die folgenden Dokumentformate zur \xdcbersetzung: {{formats}}. Bitte fordern Sie Ihren Zugang <a class="accent-color" target="blank" href="{{registerLink}}"> hier</a>an.',SOURCE_FORMATS:"Der sichere \xf6ffentliche \xdcbersetzungsdienst unterst\xfctzt folgende Dokumentformate: {{formats}};",BEST_NMT:"Drei Jahre in Folge stolzer Gewinner des WMT-Wettbewerbs f\xfcr die beste maschinelle \xdcbersetzungstechnologie.",BEST_NMT_MORE:"Mehr lernen",CANCEL_TRANSLATION:"Abbreche",FILE_TARGET_PREVIEW_MESSAGE:"Dies ist eine Vorschauprobe des \xfcbersetzten Dokuments. Bitte laden Sie es herunter, um die vollst\xe4ndige \xdcbersetzung zu erhalten.",FROM:"Von:",SOURCE_WORD_LIMIT:" Der \xdcbersetzungsumfang ist auf {{limit}} W\xf6rter begrenzt.",SOURCE_TOOLTIP:"Geben Sie den Text oder die Webseite ein, die Sie \xfcbersetzen m\xf6chten.",TARGET_DESCRIPTION:"Eine maschinelle \xdcbersetzung wird ein gutes Verst\xe4ndnis des Ausgangstextes vermitteln, kann aber eine von einem Menschen erstellte \xdcbersetzung nicht ersetzen.",TO:"An:",SUGGEST_BUTTON:"\xdcbersetzung vorschlagen",SUGGEST_ORIGINAL_LABEL:"Originalsatz",SUGGEST_SUBMIT_BUTTON:"Beitragen",SUGGEST_TRANSLATION_LABEL:"\xdcbersetzung",SUGGEST_USAGE_INFO:"Wir werden Ihren \xdcbersetzungsvorschlag verwenden, um die Qualit\xe4t der maschinellen \xdcbersetzung zu verbessern.",TEXT_COPIED:"Kopierte \xdcbersetzung",TOOLTIP_ACTION:"\xdcbersetzung",UPLOAD_FILE_BUTTON:"Hochladen oder Ziehen einer Datei",DICTIONARY_EXAMPLES:"Beispiele",DOMAINS_ARIA_LABEL:"Dom\xe4nen",FILE_DOWNLOAD_SOURCE:"Konvertierte PDF-Quelldatei herunterladen",FILE_TANSLATION_STATUSS_INITIALIZING:"\xdcbersetzungsprozess wird initialisiert...",FILE_TANSLATION_STATUSS_EXTRACTING:"\xdcbersetzbarer Inhalt wird extrahiert...",FILE_TANSLATION_STATUSS_WAITING:"Translator wird gestartet...",FILE_TANSLATION_STATUSS_TRANSLATING:"\xdcbersetzung wird durchgef\xfchrt...",FILE_TANSLATION_STATUSS_SAVING:"\xdcbersetzung wird gespeichert...",FILE_TANSLATION_STATUSS_QUEUING:"\xdcbersetzung beginnt...",PDF_DISCLAIMER_LINK:"Informationen zur PDF-Konvertierung lesen.",UPLOAD_FILES_BUTTON:"Dateien hochladen oder ziehen",VENDORS_ARIA_LABEL:"Provider",WORD_TYPE_ADJECTIVE:"Adjektiv",WORD_TYPE_NOUN:"Nomen",WORD_TYPE_VERB:"Verb",WORD_TYPE_ADVERB:"Adverb",WORD_TYPE_CONJUNCTION:"Konjunktion",WORD_TYPE_INTERJECTION:"Interjektion",WORD_TYPE_PRONOUN:"Pronomen",DOWNLOAD_TRANSLATED:"Download",FILE_DOWNLOAD_SOURCE_IMAGE:"Konvertiertes Quellbild herunterladen",FILE_DOWNLOAD_SOURCE_IMAGE_HELP:"Eine Bildkonvertierung kann zu Formatierungsfehlern oder Textverzerrung f\xfchren. Bitte \xfcberpr\xfcfen Sie die konvertierte Datei und beheben Sie die Fehler, bevor die Datei neu zur \xdcbersetzung hochgeladen wird.",FILE_TANSLATION_STATUSS_UPLOADING:"Daten werden hochgeladen...",FILE_TANSLATION_STATUSS_UPLOADED:"Hochgeladen",IMAGE_DISCLAIMER_LINK:"Informationen zur Bildkonvertierung lesen.",DOC_WORD_CNT_LIMIT_MSG_TITLE:"\xdcbersetzungslimit",DOC_WORD_CNT_LIMIT_MSG:'Nur die ersten {{wordCount}} W\xf6rter werden \xfcbersetzt. Sie ben\xf6tigen ein Tilde MT-Abonnement, um Dateien vollst\xe4ndig zu \xfcbersetzen. <a href="{{registerLink}}?{{queryString}}">Beginnen Sie mit einer kostenlosen Testphase.</a>',ERROR_NO_SYSTEMS_LOADED_TITLE:"Keine \xdcbersetzungs-Engines geladen",ERROR_NO_SYSTEMS_LOADED:"Fehler beim Laden der Engines f\xfcr die maschinelle \xdcbersetzung.",ERROR_NO_SYSTEMS_LOADED_SUPPORT:' Bitte laden Sie die Seite neu oder wenden Sie sich an den <a href="mailto:{{email}}"><strong>Support</strong></a>.',PDF_PAGE_LIMIT_MSG_TITLE:"\xdcbersetzungslimit",PDF_PAGE_LIMIT_MSG:'Nur die erste Seite wird \xfcbersetzt. Sie ben\xf6tigen ein Tilde MT-Abonnement, um PDF-Dateien vollst\xe4ndig zu \xfcbersetzen. <a href="{{registerLink}}?{{queryString}}">Beginnen Sie mit einer kostenlosen Testphase.</a>',CLEAR_SOURCE_TOOLTIP:"Text l\xf6schen"},LANGUAGES:{AR:"Arabisch",EN:"Englisch",LV:"Lettisch",LT:"Litauisch",FR:"Franz\xf6sisch",RU:"Russisch",ET:"Estnisch",BG:"Bulgarisch",DE:"Deutsch",CS:"Tschechisch",DA:"D\xe4nisch",EL:"Griechisch",ES:"Spanisch",FI:"Finnisch",GA:"Irisch",HR:"Kroatisch",HU:"Ungarisch",IS:"Isl\xe4ndisch",IT:"Italienisch",MT:"Maltesisch",NB:"Norwegisch",NL:"Niederl\xe4ndisch",PT:"Portugiesisch",PL:"Polnisch",RO:"Rum\xe4nisch",SK:"Slowakisch",SL:"Slowenisch",SV:"Schwedisch",KA:"Georgisch",BE:"Wei\xdfrussisch",MO:"Moldawisch",UK:"Ukrainisch",SR:"Serbisch",ZH:"Chinesisch",JA:"Japanisch",KO:"Koreanisch",TR:"T\xfcrkisch"},MULTIPLE_FILES:{CLEAR_ALL:"Abbrechen",DOWNLOAD:"Download",STATUSS_INITIALIZING:"Initialisierung l\xe4uft",STATUSS_EXTRACTING:"Extraktion l\xe4uft",STATUSS_WAITING:"Translator wird gestartet",STATUSS_TRANSLATING:"\xdcbersetzung wird durchgef\xfchrt",STATUSS_SAVING:"Speichervorgang l\xe4uft",STATUSS_COMPLETED:"Abgeschlossen",STATUSS_ERROR:"Fehler",STATUSS_QUEUING:"In Warteschlange",STATUSS_NOT_STARTED:"Hochgeladen",TITLE_FILE_NAME:"Datei",TITLE_STATUSS:"Status",TRANSLATION_STATUSS_LABEL:"Status",PDF_DISCLAIMER_LINK:"Informationen zur PDF-Konvertierung lesen.",APPEND:"Dateien hinzuf\xfcgen",STATUSS_UPLOADING:"Daten werden hochgeladen...",STATUSS_UPLOADED:"Hochgeladen",PDF_DISCLAIMER:"Eine PDF-Konvertierung kann zu Formatierungsfehlern oder Textverzerrung f\xfchren. W\xe4hlen Sie nach der \xdcbersetzung aus den Download-Optionen die Option \u201eKonvertierte PDF-Quelldatei herunterladen\u201c, \xfcberpr\xfcfen Sie die heruntergeladene Datei und beheben Sie die Fehler, bevor die Datei neu zur \xdcbersetzung hochgeladen wird.",IMAGE_DISCLAIMER:"Eine Bildkonvertierung kann zu Formatierungsfehlern oder Textverzerrung f\xfchren.",IMAGE_DISCLAIMER_LINK:"Informationen zur Bildkonvertierung lesen.",SCREEN_READER_ANNOUNCEMENT:"{{translated}} von {{total}} Dateien wurden \xfcbersetzt.",REMOVE_FILE_TOOLTIP:"Datei l\xf6schen"},ERRORS:{UANUTHORIZED_401:"Sie sind nicht berechtigt, die maschinelle \xdcbersetzung zu verwenden.",UANUTHORIZED_401_SUPPORT:' Bitte kontaktieren Sie den <a href="mailto:{{email}}"><strong> Support</strong></a>.',E_UNKNOWN_FILE_TYPE:"Unbekannter Dateityp.",E_UNKNOWN_ERROR:"Ein unbekannter Fehler ist aufgetreten.",E_UNAUTHORIZED:"Die \xdcbersetzung des Dokuments wurde verweigert.",E_11:"Das t\xe4gliche \xdcbersetzungslimit wurde erreicht.",E_11_SUPPORT:' Um das Tageslimit zu erh\xf6hen, wenden Sie sich bitte an den <a href="mailto:{{email}}"><strong>Support</strong></a>.',ERROR_DEFAULT_TITLE:"Unerwarteter Fehler",ERROR_DEFAULT:"Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es erneut.",ERROR_DEFAULT_SUPPORT:' Falls das Problem weiterhin besteht, wenden Sie sich an den <a href="mailto:{{email}}"><strong>Support</strong></a>.',MAX_CHAR_LENGTH_TITLE:"\xdcbersetzungslimit",MAX_CHAR_LENGTH:'Es werden nur {{maxCharLength}}/{{totalSymbols}} Zeichen \xfcbersetzt. Sie ben\xf6tigen ein Tilde MT-Abonnement f\xfcr unbegrenzte Text\xfcbersetzungen. <a href="{{registerLink}}?{{queryString}}">Beginnen Sie mit einer kostenlosen Testphase.</a>',MAX_NUMBER_OF_FILES_TITLE:"Upload-Limit",MAX_NUMBER_OF_FILES:"Es k\xf6nnen nur {{limit}} Dateien auf einmal \xfcbersetzt werden.",FILE_ALREADY_ADDED_TITLE:"Datei wurde bereits hinzugef\xfcgt",FILE_ALREADY_ADDED:"Die Datei \u201e{{fileName}}\u201c wurde bereits hinzugef\xfcgt.",UANUTHORIZED_401_TITLE:"Nicht autorisiert",E_CANNOT_READ_FILE_TITLE:"Fehler beim Lesen der Datei",E_CANNOT_READ_FILE:"Die Datei \u201e{{fileName}}\u201c ist besch\xe4digt und konnte nicht \xfcbersetzt werden. \xdcberpr\xfcfen Sie die Datei und versuchen Sie es erneut.",E_FAILED_IN_TRANSLATION_TITLE:"\xdcbersetzung fehlgeschlagen",E_FAILED_IN_TRANSLATION:"Beim \xdcbersetzen ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.",E_FAILED_IN_TRANSLATION_SUPPORT:' Falls das Problem weiterhin besteht, wenden Sie sich an den <a href="mailto:{{email}}"><strong>Support</strong></a>.',E_FORMAT_TRACK_CHANGES_TITLE:"\xdcbersetzung fehlgeschlagen, da '\xc4nderungen verfolgen' aktiviert ist",E_FORMAT_TRACK_CHANGES:"Bevor Sie Office-Dateien \xfcbersetzen k\xf6nnen, m\xfcssen Sie alle vorhandenen \xc4nderungen annehmen und die Funktion \u201e\xc4nderungen verfolgen\u201c deaktivieren.",E_UNKNOWN_ERROR_TITLE:"Unbekannter Fehler",E_UNAUTHORIZED_TITLE:"Nicht autorisiert",COLLECTION_CREATE_TITLE:"Fehler bei der Erstellung eines Glossars",COLLECTION_CREATE:"Fehler bei der Erstellung eines neuen Glossars. Bitte versuchen Sie es erneut.",COLLECTION_CREATE_SUPPORT:' Falls das Problem weiterhin besteht, wenden Sie sich an den <a href="mailto:{{email}}"><strong>Support</strong></a>.',COLLECTION_IMPORT_TITLE:"Fehler beim Anh\xe4ngen des Glossars",COLLECTION_IMPORT:"Die Begriffssammlung mit der ID: {{termId}} kann nicht an die Engine f\xfcr maschinelle \xdcbersetzung angeh\xe4ngt werden. Bitte versuchen Sie es erneut.",E_12_TITLE:"Limit der Textgr\xf6\xdfe",E_12:"Das Limit f\xfcr die Textgr\xf6\xdfe wurde erreicht. Senden Sie die Anfrage mit weniger Text.",E_12_SUPPORT:' Um das Limit f\xfcr die Textgr\xf6\xdfe zu erh\xf6hen, wenden Sie sich bitte an den <a href="mailto:{{email}}"><strong>Support</strong></a>.',E_21_TITLE:"Engine f\xfcr maschinelle \xdcbersetzung wird gestartet",E_21:"Sie werden in wenigen Augenblicken \xfcbersetzen k\xf6nnen.",E_22_TITLE:"Engine f\xfcr maschinelle \xdcbersetzung nicht gefunden",E_22:"Die Engine f\xfcr maschinelle \xdcbersetzung wurde nicht gefunden.",E_22_SUPPORT:' Bitte kontaktieren Sie den <a href="mailto:{{email}}"><strong> Support</strong></a>.',E_23:"Die Engine f\xfcr maschinelle \xdcbersetzung wird nicht gestartet.",E_23_SUPPORT:' Wenden Sie sich an den <a href="mailto:{{email}}"><strong>Support</strong></a>.',E_41:"Unbekannte Termkorpus-ID angegeben. Der Termkorpus muss mit der Engine f\xfcr maschinelle \xdcbersetzung verkn\xfcpft sein.",E_504:"Die Zeit f\xfcr die Aktion wurde \xfcberschritten.",FILE_UPLOAD:{FILE_UPLOAD_EMPTY_TITLE:"Die Datei ist leer",FILE_UPLOAD_EMPTY:"Die hochgeladene Datei \u201e{{fileName}}\u201c ist leer. W\xe4hlen Sie eine Datei mit Inhalt.",FILE_UPLOAD_MAX_SIZE_TITLE:"Limit der Dateigr\xf6\xdfe",FILE_UPLOAD_MAX_SIZE:"Die hochgeladene Datei \u201e{{fileName}}\u201c ist zu gro\xdf. Maximale Gr\xf6\xdfe {{maxSizeMB}} MB",FILE_UPLOAD_UNSUPPORTED_FORMAT_TITLE:"Nicht unterst\xfctztes Dateiformat",FILE_UPLOAD_UNSUPPORTED_FORMAT:"Das Format der hochgeladenen Datei \u201e{{fileName}}\u201c wird nicht unterst\xfctzt. Die \xdcbersetzung folgender Dokumentformate wird unterst\xfctzt: {{formats}}.",FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER_TITLE:"Nicht unterst\xfctztes Dateiformat",FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER:'Sie ben\xf6tigen ein Tilde MT-Abonnement, um die Datei \u201e{{fileName}}\u201c zu \xfcbersetzen. <a href="{{registerLink}}?{{queryString}}">Beginnen Sie mit einer kostenlosen Testphase.</a>',E_404_TITLE:"Datei nicht gefunden",E_404:"Die angeforderte Datei ist nicht vorhanden"},FILE_TRANSLATION_SUBSTATUS:{BAD_FILE_ERROR_TITLE:"Fehler bei der \xdcbersetzung der Datei",BAD_FILE_ERROR:"Die Datei ist besch\xe4digt und konnte nicht \xfcbersetzt werden. \xdcberpr\xfcfen Sie die Datei und versuchen Sie es erneut.",NO_TEXT_EXTRACTED_ERROR_TITLE:"Fehler beim Extrahieren eines Textes",NO_TEXT_EXTRACTED_ERROR:"Die Datei ist m\xf6glicherweise leer. \xdcberpr\xfcfen Sie die Datei und versuchen Sie es erneut.",TRACK_CHANGES_ENABLED_ERROR_TITLE:"\xdcbersetzung fehlgeschlagen, da '\xc4nderungen verfolgen' aktiviert ist",TRACK_CHANGES_ENABLED_ERROR:"Bevor Sie Office-Dateien \xfcbersetzen k\xf6nnen, m\xfcssen Sie alle vorhandenen \xc4nderungen annehmen und die Funktion \u201e\xc4nderungen verfolgen\u201c deaktivieren.",UNKNOWN_FILE_TYPE_ERROR_TITLE:"Unbekannter Dateityp",UNKNOWN_FILE_TYPE_ERROR:"Dateityp wurde nicht erkannt. Die Dateierweiterung ist m\xf6glicherweise falsch oder die Datei ist besch\xe4digt."},AUDIO:{NO_SPEECH_TITLE:"Keine Sprachdaten",NO_SPEECH:"Ihre Aufnahme wurde beendet. Wir konnten Sie nicht h\xf6ren.",MAX_TIME_EXCEEDED_TITLE:"Limit f\xfcr Sprachdaten",MAX_TIME_EXCEEDED:"Ihre Aufnahme wurde beendet. Die Spracheingabe ist auf {{timeString}} beschr\xe4nkt.",MIC_NOT_ALLOWED_TITLE:"Zugriff auf Mikrofon verweigert",MIC_NOT_ALLOWED:"Sie haben den Zugriff auf das Mikrofon verweigert. \xc4ndern Sie die Berechtigungen in den Einstellungen des Browsers.",MAX_SIZE_EXCEEDED_TITLE:"Limit f\xfcr Sprachdaten",MAX_SIZE_EXCEEDED:"Ihre Aufnahme wurde beendet und zur Bearbeitung weitergeleitet. Die Spracheingabe ist auf eine Gr\xf6\xdfe von {{maxSizeMB}} MB begrenzt.",CANT_START_RECORDING_TITLE:"Fehler beim Starten der Aufnahme",CANT_START_RECORDING:"Die Aufnahme konnte nicht gestartet werden. Bitte versuchen Sie es erneut.",NO_TEXT_RECOGNIZED_Title:"Keine Sprachdaten erkannt",NO_TEXT_RECOGNIZED:"Es konnten keine Sprachdaten erkannt werden. \xdcberpr\xfcfen Sie Ihr Mikrofon und versuchen Sie es erneut."}},ARIA_LABELS:{CLOSE_BUTTON:"L\xf6schen",CLEAR_NOTIFICATION:"Alarmmeldung schlie\xdfen",CLEAR_SOURCE:"Eingegebenen Text l\xf6schen",CLOSE_DIALOG:"Dialog schlie\xdfen",CLEAR_FILES:"Hochgeladene Dateien l\xf6schen",SHOW_EXTENSIONS:"Weitere Download-Optionen zeigen",COPY:"In Zwischenablage kopieren",OPEN_IN_NEW:"In neuer Registerkarte \xf6ffnen",SWAP_LANGUAGES:"Sprachen tauschen",OTHER_LANGUAGES_TRIGGER:"Andere Sprachen anzeigen"},TOOLTIPS:{COPY:"In Zwischenablage kopieren",SWAP_LANGUAGES:"Sprachen tauschen"},PDF_CONVERSION:{CLOSE:"Dialog schlie\xdfen",TITLE_1:"PDF-\xdcbersetzung",PARAGRAPH_1_1:"Wenn eine .pdf-Datei zur \xdcbersetzung hochgeladen wird, erfolgt zuerst eine Konvertierung in ein \xfcbersetzbares Format. Es werden sowohl gescannte als auch native .pdf-Dateien unterst\xfctzt. \xdcbersetzungen k\xf6nnen in den Formaten .docx, .tmx oder .pdf heruntergeladen werden und behalten ihre grundlegende Formatierung bei. Die Formatierung der \xfcbersetzten .docx- und .pdf-Dateien kann leicht vom Original abweichen. ",PARAGRAPH_1_2:"Da eine Konvertierung Zeit kostet, sollten Sie zur Beschleunigung des Vorgangs Ihre .pdfs aufteilen und Seiten mit nicht \xfcbersetzbaren Informationen daraus entfernen. Faktoren wie Seitenanzahl, Qualit\xe4t und Textdichte wirken sich auf die Verarbeitungsdauer aus.",PARAGRAPH_1_3:"Zur Verbesserung der \xdcbersetzungsleistung empfehlen wir, das Dokument nach der Konvertierung in der Originalsprache herunterzuladen und Fehler von Hand zu beheben, bevor es neu zur \xdcbersetzung hochgeladen wird.",IMAGE_ALT_1:"Beispiel zum Herunterladen einer Quell-PDF",TITLE_2:"PDF-Konvertierung",PARAGRAPH_2_1:"Das Dokument wird analysiert und sein Inhalt wird in Bereiche mit Text, Tabellen und Bildern/Hintergrundbildern aufgeteilt. Diese Bereiche werden weiter analysiert, um festzustellen, welche Inhalte als Text erkannt werden sollten.",PARAGRAPH_2_2:"Textdaten werden mit Hilfe von OCR-Verfahren (Optical Character Recognition = Optische Zeichenerkennung) erhalten. Dabei wird jedes Zeichen abh\xe4ngig on seinen optischen Eigenschaften erkannt und dann zu W\xf6rtern und S\xe4tzen zusammengef\xfcgt.",PARAGRAPH_2_3:"Die Erkennung wird unter anderem durch folgende Faktoren beeinflusst:",LI_1_1:"Qualit\xe4t des eingescannten Dokuments (unscharfer oder deformierter Text, Bildrauschen, Bildaufl\xf6sung, Kontrast usw.). F\xfcr beste Ergebnisse sollten .pdf-Dateien eine Aufl\xf6sung von mindestens 300 dpi haben sowie klar und rauschfrei sein.",LI_1_2:"Schriftgr\xf6\xdfe. Gr\xf6\xdfen unter 9 Punkten sind eventuell schlecht erkennbar. ",LI_1_3:"Seltene und Originalschriftarten. Weniger gebr\xe4uchliche Schriftarten werden eventuell gar nicht oder nur schlecht erkannt.",LI_1_4:"Komplexit\xe4t von Dokumentstruktur und -formatierung.",TITLE_3:"Verbesserung der \xdcbersetzungsleistung",PARAGRAPH_3_1:"Der Konvertierungsprozess ist sehr komplex und kann zu verschiedenen Fehlern f\xfchren, die auf das eingegebene Dokument zur\xfcckzuf\xfchren sind. ",PARAGRAPH_3_2:"Worauf Sie achten sollten:",LI_2_1:"Falsch erkannte W\xf6rter.",LI_2_2:"Falsche Wortgrenzen.",LI_2_3:"S\xe4tze, die \xfcber mehrere Spalten verlaufen, Zeilen oder Seiten, die in mehrere Textobjekte aufgeteilt wurden.",LI_2_4:"Falsch platzierte Fu\xdf- oder Kopfzeilen.",LI_2_5:"Falsche Nummerierung.",LI_2_6:"Tabellen, die als Hintergrundbilder erkannt wurden und deren Zelleninhalte in verschiedenen Textobjekten platziert wurden.",LI_2_7:"Diagramme wurden als Bilder erkannt und enthalten keine Textelemente.",LI_2_8:"Trennzeichen, R\xe4nder oder andere horizontale Linien wurden als durchgestrichener oder unterstrichener Text erkannt.",LI_2_9:"Die Formatierung des Inhaltsverzeichnisses oder \xe4hnlicher Listen wurde zusammengeschoben oder als durchgestrichener oder unterstrichener Text erkannt.",PARAGRAPH_4_1:"<b>Beachten Sie, dass das Ergebnisdokument nicht alle Details der Originalformatierung beh\xe4lt.</b> Einige Bilder, Tabellen oder Diagramme k\xf6nnen verzerrt oder vereinfacht dargestellt werden. Schriftarten im \xfcbersetzten Dokument sind nicht dieselben wie im Original, sondern \xe4hnliche Schriften. Es werden eventuell falsche Schriftgr\xf6\xdfen erkannt. Spezifische Word-Formatierungen, zum Beispiel \xdcberschriften, Inhaltsverzeichnisse, Kopf- und Fu\xdfzeilen, Beschriftungen, Formulare usw., erhalten einen Stil, der dem Original \xe4hnelt, entsprechen diesem aber nicht vollst\xe4ndig. (Das hei\xdft beispielsweise, Titel werden fett und gr\xf6\xdfer dargestellt, sind aber nicht als \xdcberschrift formatiert.)"},IMAGE_CONVERSION:{TITLE_1:"Bild\xfcbersetzung",PARAGRAPH_1_1:"Wenn eine Bilddatei zur \xdcbersetzung hochgeladen wird, erfolgt zuerst eine Konvertierung in ein \xfcbersetzbares Format. \xdcbersetzungen k\xf6nnen in den Formaten .docx oder .tmx heruntergeladen werden und behalten ihre grundlegende Formatierung bei.",PARAGRAPH_1_2:"<b>Unterst\xfctzte Bildformate:</b> .jpg, .jpeg, .png und .bmp.",PARAGRAPH_1_3:"Zur Verbesserung der \xdcbersetzungsleistung empfehlen wir, das Dokument nach der Konvertierung in der Originalsprache herunterzuladen und Fehler von Hand zu beheben, bevor es neu zur \xdcbersetzung hochgeladen wird.",IMAGE_ALT_1:"Beispiel f\xfcr den Download eines Quellbildes",TITLE_2:"Bildkonvertierung",PARAGRAPH_2_1:"Das Bild wird analysiert und sein Inhalt wird in Bereiche mit Text, Tabellen und Bildern/Hintergrundbildern aufgeteilt. Diese Bereiche werden weiter analysiert, um festzustellen, welche Inhalte als Text erkannt werden sollten.",PARAGRAPH_2_2:"Textdaten werden mit Hilfe von OCR-Verfahren (Optical Character Recognition = Optische Zeichenerkennung) erhalten. Dabei wird jedes Zeichen abh\xe4ngig von seinen optischen Eigenschaften erkannt und dann zu W\xf6rtern und S\xe4tzen zusammengef\xfcgt.",PARAGRAPH_2_3:"Die Erkennung wird unter anderem durch folgende Faktoren beeinflusst:",LI_1_1:"Qualit\xe4t des eingescannten Bildes (unscharfer oder deformierter Text, Bildrauschen, Bildaufl\xf6sung, Kontrast usw.). F\xfcr beste Ergebnisse sollten Bilder eine Aufl\xf6sung von mindestens 300 dpi haben sowie klar und rauschfrei sein.",LI_1_2:"Schriftgr\xf6\xdfe. Gr\xf6\xdfen unter 9 Punkten sind eventuell schlecht erkennbar. ",LI_1_3:"Seltene und Originalschriftarten. Weniger gebr\xe4uchliche Schriftarten werden eventuell gar nicht oder nur schlecht erkannt.",LI_1_4:"Komplexit\xe4t von Dokumentstruktur und -formatierung.",TITLE_3:"Verbesserung der \xdcbersetzungsleistung",PARAGRAPH_3_1:"Der Konvertierungsprozess ist sehr komplex und kann zu verschiedenen Fehlern f\xfchren, die auf das eingegebene Dokument zur\xfcckzuf\xfchren sind. ",PARAGRAPH_3_2:"Worauf Sie achten sollten:",LI_2_1:"Falsch erkannte W\xf6rter.",LI_2_2:"Falsche Wortgrenzen.",LI_2_3:"S\xe4tze, die \xfcber mehrere Spalten verlaufen, Zeilen oder Seiten, die in mehrere Textobjekte aufgeteilt wurden.",LI_2_4:"Falsch platzierte Fu\xdf- oder Kopfzeilen.",LI_2_5:"Falsche Nummerierung.",LI_2_6:"Tabellen, die als Hintergrundbilder erkannt wurden und deren Zelleninhalte in verschiedenen Textobjekten platziert wurden.",LI_2_7:"Diagramme wurden als Bilder erkannt und enthalten keine Textelemente.",LI_2_8:"Trennzeichen, R\xe4nder oder andere horizontale Linien wurden als durchgestrichener oder unterstrichener Text erkannt.",PARAGRAPH_4_1:"<b>Beachten Sie, dass das Ergebnisdokument nicht alle Details der Originalformatierung beh\xe4lt.</b> Einige Bilder, Tabellen oder Diagramme k\xf6nnen verzerrt oder vereinfacht dargestellt werden. Schriftarten im \xfcbersetzten Dokument sind nicht dieselben wie im Original, sondern \xe4hnliche Schriften. Es werden eventuell falsche Schriftgr\xf6\xdfen erkannt.",CLOSE:"Dialog schlie\xdfen"},WEBTRANSLATE:{BACK:"Zur\xfcck zum \xdcbersetzer",ADDRESS:"Adresse",LOAD_PAGE:"Seite laden",RESTORE:"Wiederherstellen",CANCEL:"Abbrechen"},TERM_COLLECTIONS:{GLOSSARY:"Glossar: ",SELECTED_NONE:"Keines",EDIT:"Bearbeiten",CREATE:"Neues Glossar",ENTRY_COUNT:"Eintr\xe4ge: {{count}}",ENTRY_COUNT_WITH_LANGUGAES:"Eintr\xe4ge: {{count}} [{{languages}}]",DEFAULT_COLLECTION_NAME:"Meine Begriffssammlung",SYNC:"Synchronisieren",SYNC_ERROR:"Erneut versuchen",MT_ENTRY_COUNT:"Importiert: {{count}}",TITLE:"Glossare ausw\xe4hlen, bearbeiten und verwalten",TITLE_EMPTY:"Ein erstes Glossar erstellen",TITLE_MOBILE:"Glossare ausw\xe4hlen",DESCRIPTION_1:"W\xe4hlen Sie aus, welche Begriffssammlung Sie f\xfcr dieses Projekt verwenden m\xf6chten. ",DESCRIPTION_2:" Sie k\xf6nnen neue Sammlungen hinzuf\xfcgen und bestehende bearbeiten",DESCRIPTION_2_MOBILE:" Mit der Desktop-Version k\xf6nnen Sie neue Sammlungen anlegen oder bestehende bearbeiten.",DESCRIPTION_EMPTY:"Sie k\xf6nnen genau festlegen, wie {{appName}} W\xf6rter und Ausdr\xfccke, die f\xfcr Ihr Unternehmen oder Ihre Branche spezifisch sind, \xfcbersetzen soll, indem Sie sie zu Ihren individuellen Begriffssammlungen hinzuf\xfcgen.",DESCRIPTION_EMPTY_MOBILE:"Indem Sie bestimmte W\xf6rter und Ausdr\xfccke, die f\xfcr Ihr Unternehmen oder Ihre Branche spezifisch sind, zu Ihren individuellen Begriffssammlungen hinzuf\xfcgen, k\xf6nnen Sie genau festlegen, wie {{appName}} diese \xfcbersetzen soll.",PROMOTION:{TITLE:"Glossare anlegen, bearbeiten und verwalten",DESCRIPTION:"F\xfcr Tilde MT-Mitglieder sind Glossare verf\xfcgbar.",START_TRIAL:"Mit kostenloser Testversion beginnen",LEARN_MORE:"Weitere Informationen \xfcber Glossare"},ARIA_LABELS:{RADIO_GROUP:"Begriffssammlung ausw\xe4hlen",OTHER_COLLECTIONS:"Sammlungsmen\xfc \xf6ffnen",MT_ENTRY_COUNT:"Anzahl der f\xfcr die maschinelle \xdcbersetzung verwendeten Eintr\xe4ge"},CREATE_DIALOG:{CANCEL:"Abbrechen",COLLECTION_NAME_LABEL:"Name der Begriffssammlung",CREATE:"Erstellen",DESCRIPTION_1:"Nachdem Sie Ihre Begriffssammlung benannt haben, werden Sie zu Tilde Term weitergeleitet, um neue Begriffe hinzuzuf\xfcgen. Sobald Sie fertig sind, kehren Sie zu Tilde MT zur\xfcck, um sie in Ihren \xdcbersetzungsprojekten zu verwenden.",DESCRIPTION_2:"<i>* KI ist nicht perfekt und kann gelegentlich Fehler machen. Ihre einzigartigen Begriffe werden mit 95%iger Genauigkeit korrekt verwendet.</i>",TITLE:"Neues Glossar erstellen",COLLECTION_NAME_ERROR:"Der Titel sollte mindestens {{minLength}} Zeichen und nicht l\xe4nger als {{maxLength}} Zeichen lang sein."},TOOLTIPS:{EDIT:"Sie werden zum Terminologieportal weitergeleitet, das in einem neuen Tab ge\xf6ffnet wird",ENTRY_COUNT:"Anzahl der hinzugef\xfcgten Eintr\xe4ge in der Begriffssammlung",IMPORTING:"Die Begriffssammlung wird gerade importiert und kann nicht verwendet werden, solange der Import nicht abgeschlossen ist.",NO_ENTRIES:"Begriffssammlung kann nicht verwendet werden, da es keine Begriffe f\xfcr die Ausgangssprache gibt.",SYNC:"Begriffssammlung aktualisieren",SYNCING:"Die Begriffssammlung wird gerade synchronisiert, und die zuletzt synchronisierte Version der Sammlung wird verwendet.",ATTACH_TO_SYSTEM_ERROR:"Beim Import der Begriffssammlung ist ein Fehler aufgetreten."}},DOMAINS:{LAW:"Recht",DYNAMIC_LEARNING:"Dynamisches Lernen",BUSINESS:"Wirtschaft",OPEN_LIST_ARIA_LABEL:"Domainliste \xf6ffnen",TITLE:"Domain:",GENERAL:"Allgemein",AUTO:"Automatische Erkennung"},GRAMMAR_CHECK_MENU:{TITLE:"Wechsel in Betracht ziehen zu:"},AUDIO:{CANCEL:"Abbrechen",DESCRIBE_STATE_RECORDING:"Bitte sprechen Sie, um Sprachdaten aufzunehmen...",DESCRIBE_STATE_PROCESSING:"Daten werden verarbeitet...",MIC_NOT_FOUND:"Mikrofon nicht gefunden",STOP:"Aufnahme beenden",START:"Gesprochene Sprache \xfcbersetzen",PUNCTUATION_MESSAGE_TITLE:"Zeichensetzung hinzuf\xfcgen",PUNCTUATION_MESSAGE:"Bitte f\xfcgen Sie dem erkannten Text Satzzeichen hinzu. Lange Texte ohne Zeichensetzung k\xf6nnen eine geringere \xdcbersetzungsqualit\xe4t aufweisen oder nicht \xfcbersetzt werden."},EXTENSION_POPUP:{OPEN:"Alle unterst\xfctzten Formate anzeigen",TITLE:"Unterst\xfctzte Dateiformate",DESCRIPTION:"UTF-8- oder UTF-16-Kodierung erforderlich, um eine korrekte Datei\xfcbersetzung zu gew\xe4hrleisten",OFFICE:"Office",SCANNED:"Gescannte Dateien",INTERCHANGE:"Austauschformate",WEB:"Web",OTHER:"Sonstiges"},FILE_UPLOAD:{UPLOAD:"Ausw\xe4hlen",DRAG_AND_DROP:"oder per Drag & Drop ",FILE:"eine Datei",FILES:"Dateien",LIMITS:" ({{visibleExtensions}}. Max. {{maxSizeMB}} MB"},TEXT_TO_SPEECH:{PLAY:"Anh\xf6ren"}},en:{APP_NAME:"Tilde MT",TLD_TRANSLATE:{BEST_NMT:"Proud winner of the best machine translation technology at WMT Competition for three years in a row.",BEST_NMT_MORE:"Learn more",CANCEL_TRANSLATION:"Cancel",DICTIONARY_EXAMPLES:"examples",DOWNLOAD_TRANSLATED:"Download",DOMAINS_ARIA_LABEL:"Domains",FILE_DOWNLOAD_SOURCE:"Download converted source PDF",FILE_DOWNLOAD_SOURCE_HELP:"PDF conversion may cause formatting errors or text distortion. Please check the converted file and fix the errors before re-uploading the file for translation",FILE_DOWNLOAD_SOURCE_IMAGE:"Download converted source image",FILE_DOWNLOAD_SOURCE_IMAGE_HELP:"Image conversion may cause formatting errors or text distortion. Please check the converted file and fix the errors before re-uploading the file for translation",FILE_TANSLATION_STATUSS_INITIALIZING:"Initializing translation process...",FILE_TANSLATION_STATUSS_EXTRACTING:"Extracting translatable content...",FILE_TANSLATION_STATUSS_WAITING:"Starting translator...",FILE_TANSLATION_STATUSS_TRANSLATING:"Translating...",FILE_TANSLATION_STATUSS_SAVING:"Saving translation...",FILE_TANSLATION_STATUSS_COMPLETED:"",FILE_TANSLATION_STATUSS_ERROR:"",FILE_TANSLATION_STATUSS_QUEUING:"Translation is starting...",FILE_TANSLATION_STATUSS_UPLOADING:"Uploading...",FILE_TANSLATION_STATUSS_UPLOADED:"Uploaded",FILE_TARGET_PREVIEW_MESSAGE:"This is a preview of the translated document, please download to receive a complete translation.",FROM:"From:",PDF_DISCLAIMER_LINK:"See how to fix it",IMAGE_DISCLAIMER_LINK:"Read about image conversion.",PREPARING_TRANSLATION:"Translation is starting",REGISTERED_FORMATS_LOGGED_IN:"Registered users have access to the following document formats translation: {{formats}}.",REGISTERED_FORMATS:'Registered users have access to the following document formats translation: {{formats}}. Request your access <a class="accent-color" target="blank" href="{{registerLink}}">here</a>.',SOURCE_FORMATS:"Secure public translation service supports following document formats: {{formats}};",SOURCE_WORD_LIMIT:" translation amount is limited up to {{limit}} words.",SOURCE_TOOLTIP:"Enter the text or homepage you would like to translate.",SOURCE_TOOLTIP_ONLY_TEXT:"Enter the text you would like to translate.",SOURCE_TOOLTIP_SENSITIVE_INFO:"Do not use {{appName}} to translate confidential or classified information or texts that contain special categories of personal data, such as medical data",TARGET_DESCRIPTION:"Machine translation allows to understand the meaning of a source text, but cannot substitute a human translation.",TO:"To:",TEXT_COPIED:"Translation copied",SUGGEST_BUTTON:"Suggest translation",SUGGEST_ORIGINAL_LABEL:"Original sentence",SUGGEST_SUBMIT_BUTTON:"Contribute",SUGGEST_TRANSLATION_LABEL:"Translation",SUGGEST_USAGE_INFO:"Your anonymized translation suggestion will be used to improve the quality of machine translation.",TOOLTIP_ACTION:"Translate",VENDORS_ARIA_LABEL:"Providers",WORD_TYPE_ADJECTIVE:"adjective",WORD_TYPE_NOUN:"noun",WORD_TYPE_VERB:"verb",WORD_TYPE_ADVERB:"adverb",WORD_TYPE_CONJUNCTION:"conjunction",WORD_TYPE_INTERJECTION:"interjection",WORD_TYPE_PRONOUN:"pronoun",DOC_WORD_CNT_LIMIT_MSG_TITLE:"Translation limit",DOC_WORD_CNT_LIMIT_MSG:'Only the first {{wordCount}} words will be translated. You need a Tilde MT subscription to translate full files. <a href="{{registerLink}}?{{queryString}}">start with a free trial</a>',ERROR_NO_SYSTEMS_LOADED_TITLE:"No translation engines were loaded",ERROR_NO_SYSTEMS_LOADED:"Failed to load the machine translation engines.",ERROR_NO_SYSTEMS_LOADED_SUPPORT:' Please reload the page or contact <a href="mailto:{{email}}"><strong> support</strong></a>.',PDF_PAGE_LIMIT_MSG_TITLE:"Translation limit",PDF_PAGE_LIMIT_MSG:'Only the first page will be translated. You need a Tilde MT subscription to translate full PDF files. <a href="{{registerLink}}?{{queryString}}">start with a free trial</a>',CLEAR_SOURCE_TOOLTIP:"Clear text"},MULTIPLE_FILES:{APPEND:"Add files",CLEAR_ALL:"Cancel",DOWNLOAD:"Download",STATUSS_INITIALIZING:"Initializing",STATUSS_EXTRACTING:"Extracting",STATUSS_WAITING:"Starting translator",STATUSS_TRANSLATING:"Translating {{percent}}%",STATUSS_SAVING:"Saving",STATUSS_COMPLETED:"Completed",STATUSS_ERROR:"Error",STATUSS_QUEUING:"Queuing",STATUSS_NOT_STARTED:"Uploaded",STATUSS_UPLOADING:"Uploading...",STATUSS_UPLOADED:"Uploaded",TITLE_FILE_NAME:"File",TITLE_STATUSS:"Status",TRANSLATION_STATUSS_LABEL:"Status",PDF_DISCLAIMER:"PDF documents may have formatting or translation errors.",PDF_DISCLAIMER_LINK:"Read about pdf conversion.",IMAGE_DISCLAIMER:"Image conversion may cause formatting errors or text distortion.",IMAGE_DISCLAIMER_LINK:"Read about image conversion.",SCREEN_READER_ANNOUNCEMENT:"{{translated}} out of {{total}} files are translated.",REMOVE_FILE_TOOLTIP:"Clear file"},ERRORS:{ERROR_DEFAULT_TITLE:"Unexpected error",ERROR_DEFAULT:"An unexpected error occurred. Please try again.",ERROR_DEFAULT_SUPPORT:' If the problem continues, contact <a href="mailto:{{email}}"><strong>support</strong></a>.',MAX_CHAR_LENGTH_TITLE:"Translation limit",MAX_CHAR_LENGTH:'Only {{maxCharLength}}/{{totalSymbols}} characters will be translated. You need a Tilde MT subscription for unlimited text translation. <a href="{{registerLink}}?{{queryString}}">start with a free trial</a>',MAX_NUMBER_OF_FILES_TITLE:"Upload limit",MAX_NUMBER_OF_FILES:"Only {{limit}} files can be translated at once.",INCREASE_MAX_NUMBER_OF_FILES_TITLE:"Upload limit",INCREASE_MAX_NUMBER_OF_FILES:'Only 1 file can be translated at once. You need a Tilde MT subscription to increase limit. <a href="{{registerLink}}?{{queryString}}">start with a free trial</a>',FILE_ALREADY_ADDED_TITLE:"File has already been added",FILE_ALREADY_ADDED:'File "{{fileName}}" has already been added.',UANUTHORIZED_401_TITLE:"Unauthorized",UANUTHORIZED_401:"You don't have permission to use machine translation.",UANUTHORIZED_401_SUPPORT:' Please contact <a href="mailto:{{email}}"><strong> support</strong></a>.',E_UNKNOWN_FILE_TYPE:"Unknown file type.",E_CANNOT_READ_FILE_TITLE:"Unable to read file",E_CANNOT_READ_FILE:'The file "{{fileName}}" is corrupted and couldn\'t be translated. Check the file and try again.',E_FAILED_IN_TRANSLATION_TITLE:"Translation failed",E_FAILED_IN_TRANSLATION:"Error occurred while translating. Please try again.",E_FAILED_IN_TRANSLATION_SUPPORT:' If the problem continues, contact <a href="mailto:{{email}}"><strong> support</strong></a>.',E_FORMAT_TRACK_CHANGES_TITLE:"Translation failed, because \u2018track changes\u2019 is turned on",E_FORMAT_TRACK_CHANGES:"Changes must first be accepted or \u2018track changes\u2019 turned off before translating Office files.",E_UNKNOWN_ERROR_TITLE:"Unknown error",E_UNKNOWN_ERROR:"An unknown error occurred.",E_UNAUTHORIZED_TITLE:"Unauthorized",E_UNAUTHORIZED:"Document translation was denied.",COLLECTION_CREATE_TITLE:"Failed to create a glossary",COLLECTION_CREATE:"Failed to create a new glossary. Please try again.",COLLECTION_CREATE_SUPPORT:' If the problem continues, contact <a href="mailto:{{email}}"><strong>support</strong></a>.',COLLECTION_IMPORT_TITLE:"Failed to attach the glossary",COLLECTION_IMPORT:"Failed to attach the term collection with ID: {{termId}} to the machine translation engine. Please try again.",E_11:"Daily translation limit has been reached.",E_11_SUPPORT:' To increase the daily limit, please contact <a href="mailto:{{email}}"><strong>support</strong></a>.',E_12_TITLE:"Text size limit",E_12:"Text size limit reached. Send less text in the request.",E_12_SUPPORT:' To increase the text size limit, please contact <a href="mailto:{{email}}"><strong>support</strong></a>.',E_21_TITLE:"Machine translation engine is starting",E_21:"You will be able to translate in a few moments.",E_22_TITLE:"Machine translation engine not found",E_22:"Machine translation engine not found.",E_22_SUPPORT:' Please contact <a href="mailto:{{email}}"><strong>support</strong></a>.',E_23:"Machine translation engine is not started.",E_23_SUPPORT:' Contact <a href="mailto:{{email}}"><strong>support</strong></a>.',E_41:"Unknown term corpus ID provided. Term corpus must be linked to the machine translation engine",E_504:"Translation has timed out. Try again later.",E_504_TITLE:"Translation timeout",TRANSLATION_FAILED_TITLE:"Translation failed",TRANSLATION_FAILED:"An unexpected error occurred.",TRANSLATION_FAILED_SUPPORT:' If the problem continues, contact <a href="mailto:{{email}}"><strong>support</strong></a>.',FILE_TRANSLATION_SUBSTATUS:{BAD_FILE_ERROR_TITLE:"Failed to translate the file",BAD_FILE_ERROR:"The file is corrupted and couldn't be translated. Check the file and try again.",NO_TEXT_EXTRACTED_ERROR_TITLE:"Failed to extract any text",NO_TEXT_EXTRACTED_ERROR:"The file may be empty. Check the file and try again.",TRACK_CHANGES_ENABLED_ERROR_TITLE:"Translation failed, because \u2018track changes\u2019 is turned on",TRACK_CHANGES_ENABLED_ERROR:"Changes must first be accepted or \u2018track changes\u2019 turned off before translating Office files.",UNKNOWN_FILE_TYPE_ERROR_TITLE:"Unknown file type",UNKNOWN_FILE_TYPE_ERROR:"File type not recognized. The file extension may be incorrect, or the file may be corrupted."},FILE_UPLOAD:{FILE_UPLOAD_EMPTY_TITLE:"The file is empty",FILE_UPLOAD_EMPTY:'The uploaded file "{{fileName}}" is empty. Select a file with content.',FILE_UPLOAD_MAX_SIZE_TITLE:"File size limit",FILE_UPLOAD_MAX_SIZE:'The uploaded file "{{fileName}}" is too big. Maximum size {{maxSizeMB}}MB',FILE_UPLOAD_UNSUPPORTED_FORMAT_TITLE:"Unsupported file format",FILE_UPLOAD_UNSUPPORTED_FORMAT:'The uploaded file "{{fileName}}" format is not supported. Translation is supported for these document formats: {{formats}}.',FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER_TITLE:"Unsupported file format",FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER:'You need Tilde MT subscription to translate "{{fileName}}" file. <a href="{{registerLink}}?{{queryString}}">start with a free trial</a>',E_404_TITLE:"File not found",E_404:"The requested file doesn't exist",E_404_REMOVE_TITLE:"Failed to delete the file",E_404_REMOVE:"File has already been deleted"},AUDIO:{NO_SPEECH_TITLE:"No speech",NO_SPEECH:"Your recording was stopped. We couldn't hear you.",MAX_TIME_EXCEEDED_TITLE:"Speech limit",MAX_TIME_EXCEEDED:"Your recording was stopped. Speech input is limited to {{timeString}}.",MIC_NOT_ALLOWED_TITLE:"Microphone access denied",MIC_NOT_ALLOWED:"You have denied access to the microphone. Change permissions in browser's settings.",MAX_SIZE_EXCEEDED_TITLE:"Speech limit",MAX_SIZE_EXCEEDED:"Your recording was stopped and sent to processing. Speech input is limited to ({{maxSizeMb}}MB) size.",CANT_START_RECORDING_TITLE:"Failed to start recording",CANT_START_RECORDING:"Unable to start recording. Please try again.",NO_TEXT_RECOGNIZED_Title:"No speech recognized",NO_TEXT_RECOGNIZED:"No speech could be recognized. Check your microphone and try again."}},RATING:{},LANGUAGES:{AR:"Arabic",LV:"Latvian",ET:"Estonian",DA:"Danish",FI:"Finnish",IS:"Icelandic",LT:"Lithuanian",NB:"Norwegian",SV:"Swedish",BE:"Belorussian",BG:"Bulgarian",CS:"Czech",HU:"Hungarian",RU:"Russian",MO:"Moldavian",PL:"Polish",SK:"Slovak",UK:"Ukrainian",NL:"Dutch",EN:"English",FR:"French",DE:"German",GA:"Irish",EL:"Greek",IT:"Italian",MT:"Maltese",PT:"Portuguese",SR:"Serbian",SL:"Slovenian",ES:"Spanish",ZH:"Chinese",JA:"Japanese",KO:"Korean",TR:"Turkish",HR:"Croatian",RO:"Romanian"},ARIA_LABELS:{CLOSE_BUTTON:"Clear",CLEAR_NOTIFICATION:"Close alert",CLEAR_SOURCE:"Clear entered text",CLOSE_DIALOG:"Close dialog",CLEAR_FILES:"Clear uploaded files",SHOW_EXTENSIONS:"Show other download options",COPY:"Copy to clipboard",OPEN_IN_NEW:"Open in new tab",SWAP_LANGUAGES:"Swap languages",OTHER_LANGUAGES_TRIGGER:"Show other languages"},TOOLTIPS:{COPY:"Copy to clipboard",SWAP_LANGUAGES:"Swap languages"},PDF_CONVERSION:{TITLE_1:"PDF translation",PARAGRAPH_1_1:"When a .pdf file is uploaded for translation it is converted into a translatable format. Both scanned and native .pdfs are supported. Translations can be downloaded in .docx, .tmx or .pdf formats and will retain the basic formatting. Formatting in the translated .docx and .pdf files may slightly differ. ",PARAGRAPH_1_2:"As conversion takes time, to speed things up split your .pdfs and delete the pages with no translatable information. Factors like the number of pages, quality and text density affect the processing time.",PARAGRAPH_1_3:"To improve translation performance, we recommend to download the converted document in the original language and fix it manually before re-uploading for translation.",IMAGE_ALT_1:"Source PDF download example",TITLE_2:"PDF conversion",PARAGRAPH_2_1:"The document is analysed and its content is split in text, table and image/background image areas. They are analysed further to determine which content should be recognized as text.",PARAGRAPH_2_2:"Textual data are acquired by means of OCR or optical character recognition. Every character is recognized depending on its visual characteristics, then assembled into words and sentences.",PARAGRAPH_2_3:"Recognition is affected by many factors, including:",LI_1_1:"Quality of the scanned document (blurred or deformed text, image noise, image resolution, contrast etc.). For the best result, .pdfs should be at least 300 dpi, unskewed and noise free.",LI_1_2:"Font size. Sizes smaller than 9 points might be poorly recognized. ",LI_1_3:"Rare and original fonts. Less common fonts may be unrecognizable or perform worse.",LI_1_4:"Complexity of the document structure and formatting.",TITLE_3:"Improving translation performance",PARAGRAPH_3_1:"The conversion process is very complex and may be affected by various errors resulting from the input document. ",PARAGRAPH_3_2:"Issues to look for:",LI_2_1:"Incorrectly recognized words.",LI_2_2:"Incorrect word boundaries.",LI_2_3:"Sentences spanning multiple columns, lines or pages split into different textual objects.",LI_2_4:"Misplaced page footers and headers.",LI_2_5:"Incorrect numbering.",LI_2_6:"Tables recognized as background images with textual content placed into different textual objects.",LI_2_7:"Some diagrams recognized as images without any textual content.",LI_2_8:"Separators, borders or other horizontal lines recognized as strikethrough or underlined text.",LI_2_9:"Formatting of the table of contents or similar lists collapsed or recognized as strikethrough or underlined text.",PARAGRAPH_4_1:"<b>Note that the resulting document will not retain all details of the original formatting.</b> Some images, tables or diagrams may become distorted or simplified. Fonts in the translated document will not be the same as in the original, but may be similar. Incorrect font size may be recognized. Specific Word formatting like headings, tables of content, headers and footers, labels, forms etc. will be styled to look like the original, but will not match the original completely (e.g. titles will be bold and in larger font, but will not be set to the heading style).",CLOSE:"Close dialog"},IMAGE_CONVERSION:{TITLE_1:"Image translation",PARAGRAPH_1_1:"When an image file is uploaded for translation it is converted into a translatable format. Translations can be downloaded in .docx or .tmx formats and will retain the basic formatting.",PARAGRAPH_1_2:"<b>Supported image formats:</b> .jpg, .jpeg, .png and .bmp.",PARAGRAPH_1_3:"To improve translation performance, we recommend to download the converted document in the original language and fix it manually before re-uploading for translation.",IMAGE_ALT_1:"Source image download example",TITLE_2:"Image conversion",PARAGRAPH_2_1:"The image is analysed and its content is split in text, table and image/background image areas. They are analysed further to determine which content should be recognized as text.",PARAGRAPH_2_2:"Textual data are acquired by means of OCR or optical character recognition. Every character is recognized depending on its visual characteristics, then assembled into words and sentences.",PARAGRAPH_2_3:"Recognition is affected by many factors, including:",LI_1_1:"Quality of the scanned image (blurred or deformed text, image noise, image resolution, contrast etc.). For the best result, images should be at least 300 dpi, unskewed and noise free.",LI_1_2:"Font size. Sizes smaller than 9 points might be poorly recognized. ",LI_1_3:"Rare and original fonts. Less common fonts may be unrecognizable or perform worse.",LI_1_4:"Complexity of the document structure and formatting.",TITLE_3:"Improving translation performance",PARAGRAPH_3_1:"The conversion process is very complex and may be affected by various errors resulting from the input document. ",PARAGRAPH_3_2:"Issues to look for:",LI_2_1:"Incorrectly recognized words.",LI_2_2:"Incorrect word boundaries.",LI_2_3:"Sentences spanning multiple columns, lines or pages split into different textual objects.",LI_2_4:"Misplaced page footers and headers.",LI_2_5:"Incorrect numbering.",LI_2_6:"Tables recognized as background images with textual content placed into different textual objects.",LI_2_7:"Some diagrams recognized as images without any textual content.",LI_2_8:"Separators, borders or other horizontal lines recognized as strikethrough or underlined text.",PARAGRAPH_4_1:"<b>Note that the resulting document will not retain all details of the original formatting.</b> Some images, tables or diagrams may become distorted or simplified. Fonts in the translated document will not be the same as in the original, but may be similar. Incorrect font size may be recognized.",CLOSE:"Close dialog"},WEBTRANSLATE:{BACK:"Back to Translator",ADDRESS:"Address",LOAD_PAGE:"Load page",RESTORE:"Restore",CANCEL:"Cancel"},TERM_COLLECTIONS:{TITLE:"Select, edit and manage glossaries",TITLE_EMPTY:"Create your first glossary",TITLE_MOBILE:"Select glossaries",DESCRIPTION_1:"Select which term collection to use for this project. ",DESCRIPTION_2:" You can add new collections and edit existing ones",DESCRIPTION_2_MOBILE:" Use the desktop version to create new collections or edit existing ones.",GLOSSARY:"Glossary: ",SELECTED_NONE:"None",EDIT:"Edit",CREATE:"New glossary",DESCRIPTION_EMPTY:"You can set up exactly how you want {{appName}} to translate words and phrases specific to your company or industry by adding them to your unique term collections.",DESCRIPTION_EMPTY_MOBILE:"Use the desktop version to set up exactly how you want Tilde MT to translate words and phrases specific to your company or industry by adding them to your unique term collections.",ENTRY_COUNT:"Entries: {{count}}",ENTRY_COUNT_WITH_LANGUGAES:"Entries: {{count}} [{{languages}}]",MT_ENTRY_COUNT:"Imported: {{count}}",DEFAULT_COLLECTION_NAME:"My term collection",SYNC:"Sync",SYNC_ERROR:"Retry",ARIA_LABELS:{RADIO_GROUP:"Select a term collection",OTHER_COLLECTIONS:"Open the collection menu"},CREATE_DIALOG:{CANCEL:"Cancel",COLLECTION_NAME_LABEL:"Term collection name",CREATE:"Create",DESCRIPTION_1:"After naming your term collection, you will be redirected to Tilde Term to add new terms. After completion, return to Tilde MT to use the new terms in your translation projects.",DESCRIPTION_2:"<i>*AI is not perfect and can make occasional mistakes. Your unique terms will be used correctly with 95% accuracy.</i>",TITLE:"Create a new glossary",COLLECTION_NAME_ERROR:"Title should be at least {{minLength}} symbols long and not longer than {{maxLength}} symbols"},TOOLTIPS:{EDIT:"You will be redirected to terminology portal that will be opened in a new tab",ENTRY_COUNT:"Number of entries added to the term collection",MT_ENTRY_COUNT:"Number of entries used for machine translation",IMPORTING:"Import of the term collection in progress, the collection will not be available until it is completed.",NO_ENTRIES:"Term collection cannot be used: no terms in source language",SYNC:"Update the term collection",SYNCING:"Term collection is synced, the latest version of the collection will be used",ATTACH_TO_SYSTEM_ERROR:"An error has occured while importing the term collection"},PROMOTION:{TITLE:"Create, edit and manage glossaries",DESCRIPTION:"Glossaries are available for Tilde MT members.",START_TRIAL:"Start with a free trial",LEARN_MORE:"Learn more about glossaries"}},DOMAINS:{OPEN_LIST_ARIA_LABEL:"Open domain list",TITLE:"Domain:",LAW:"Law",DYNAMIC_LEARNING:"Dynamic learning",BUSINESS:"Business",GENERAL:"General",AUTO:"Autodetect",SPD:"EU Formal Language",GEN:"General Text",ECB:"Finance",ECJ:"European Court of Justice",PUBHEALTH:"Public Health",BUBA:"Deutsche Bundesbank",BERCY:"Minist\xe8re des Finances",EUROPEANA:"Europeana",IPO:"IP Case Law",TRIS:"Engines built using data from the technical regulation information system",VK:"Valtioneuvoston Kanslia",BUBA_NMTTEST:"Deutsche Bundesbank Test"},GRAMMAR_CHECK_MENU:{TITLE:"Consider changing to:"},AUDIO:{CANCEL:"Cancel",DESCRIBE_STATE_RECORDING:"Please speak to record...",DESCRIBE_STATE_PROCESSING:"Processing...",MIC_NOT_FOUND:"Microphone not found",STOP:"Stop recording",START:"Translate speech",PUNCTUATION_MESSAGE_TITLE:"Add punctuation",PUNCTUATION_MESSAGE:"Please add punctuation to the recognized text. Long text without punctuation may have lower translation quality or not be translated."},EXTENSION_POPUP:{OPEN:"see all supported formats",TITLE:"Supported file formats",DESCRIPTION:"UTF-8 or UTF-16 coding required to ensure correct file translation",OFFICE:"Office",SCANNED:"Scanned files",INTERCHANGE:"Interchange formats",WEB:"Web",OTHER:"Other"},FILE_UPLOAD:{UPLOAD:"Upload",DRAG_AND_DROP:"or drag and drop ",FILE:"a file",FILES:"files",LIMITS:" ({{visibleExtensions}}. Max {{maxSizeMB}}MB)",CLEAR:"Clear file"},SYSTEM_PICKER:{SOURCE:"Translate from",TARGET:"Translate to",SEARCH_PLACEHOLDER:"Search languages",RECENT_SYSTEM_TITLE:"Recent translation directions",SELECT_DOMAIN:"Select domain",FILTER_NO_RESULTS:"No results",ALL_LANGUAGES:"All languages",CLEAR_SEARCH:"Clear search text",OPEN_SOURCE_ARIA_LABEL:"Select source language",OPEN_TARGET_ARIA_LABEL:"Select target language and domain"},TEXT_TRANSLATION_PROGRESS_INDICATOR:{TITLE:"Translation provided by {{provider}}",TRANSLATING:"Translating...",CLOSE_BUTTON_TOOLTIP:"Remove progress bar",CLOSE_BUTTON_ARIA_LABEL:"Remove progress bar"},VENDOR_MESSAGE:{TEXT:"Translation provided by {{vendor}}",ICON_TOOLTIP:"Systems offered by {{vendor}} are used by a huge number of users. They may be slow at time due to the heavy work load."},VENDORS:{ETRANSLATION:"eTranslation"},TEXT_TO_SPEECH:{PLAY:"Listen",PAUSE:"Pause"}},et:{APP_NAME:"Tilde MT",TLD_TRANSLATE:{DOWNLOAD_TRANSLATED:"Laadi alla",FILE_DOWNLOAD_SOURCE_IMAGE:"Laadi alla teisendatud l\xe4htepilt",FILE_DOWNLOAD_SOURCE_IMAGE_HELP:"Pildifaili teisendamine v\xf5ib p\xf5hjustada vormindusvigu v\xf5i tekstimoonutusi. Enne kui laadite faili t\xf5lkimiseks uuesti \xfcles, kontrollige teisendatud faili ja parandage vead",FILE_TANSLATION_STATUSS_UPLOADING:"\xdcleslaadimine ...",FILE_TANSLATION_STATUSS_UPLOADED:"\xdcles laaditud",IMAGE_DISCLAIMER_LINK:"Lugege teavet pildifaili teisendamise kohta.",DOC_WORD_CNT_LIMIT_MSG_TITLE:"T\xf5lkepiirang",DOC_WORD_CNT_LIMIT_MSG:'T\xf5lgitakse ainult esimesed {{wordCount}} s\xf5na. Failide tervikuna t\xf5lkimiseks on vaja Tilde MT tellimust. <a href="{{registerLink}}?{{queryString}}">Alustage tasuta prooviperioodi</a>',ERROR_NO_SYSTEMS_LOADED_TITLE:"T\xf5lkemootoreid ei laaditud",ERROR_NO_SYSTEMS_LOADED:"Masint\xf5lkemootoreid ei saanud laadida.",ERROR_NO_SYSTEMS_LOADED_SUPPORT:' Laadige leht uuesti v\xf5i v\xf5tke \xfchendust <a href="mailto:{{email}}"><strong>kasutajatoega</strong></a>.',PDF_PAGE_LIMIT_MSG_TITLE:"T\xf5lkepiirang",PDF_PAGE_LIMIT_MSG:'T\xf5lgitakse ainult esimene lehek\xfclg. PDF-failide tervikuna t\xf5lkimiseks on vaja Tilde MT tellimust. <a href="{{registerLink}}?{{queryString}}">Alustage tasuta prooviperioodi</a>',CLEAR_SOURCE_TOOLTIP:"Eemalda tekst",BEST_NMT:"Parima masint\xf5lketehnoloogia auhinna uhke v\xf5itja WMT v\xf5istlusel kolm aastat j\xe4rjest.",BEST_NMT_MORE:"Lisateave",CANCEL_TRANSLATION:"Loobu",FILE_TARGET_PREVIEW_MESSAGE:"See on t\xf5lgitud dokumendi eelvaaten\xe4idis. T\xe4ieliku t\xf5lke saamiseks laadige see alla.",FROM:"L\xe4htekeel:",PREPARING_TRANSLATION:"Algab dokumendi t\xf5lkimine...",SOURCE_WORD_LIMIT:" t\xf5lkemaht on piiratud {{limit}} s\xf5naga.",SOURCE_TOOLTIP:"Sisestage tekst v\xf5i t\xf5lgitav veebileht.",TARGET_DESCRIPTION:"Masint\xf5lge aitab l\xe4hteteksti sisust aru saada, kuid ei asenda inimt\xf5lget.",TRANSLATION_PREPARE:"Algab dokumendi t\xf5lkimine...",TO:"Sihtkeel:",TEXT_COPIED:"T\xf5lge kopeeritud",SUGGEST_BUTTON:"Soovitage t\xf5lget",SUGGEST_ORIGINAL_LABEL:"Algne lause",SUGGEST_SUBMIT_BUTTON:"Andke oma panus",SUGGEST_TRANSLATION_LABEL:"T\xf5lge",SUGGEST_USAGE_INFO:"Teie t\xf5lkesoovitust kasutatakse masint\xf5lke kvaliteedi parandamiseks.",TOOLTIP_ACTION:"T\xf5lgi",UPLOAD_FILE_BUTTON:"Faili \xfcleslaadimine v\xf5i lohistamine",DICTIONARY_EXAMPLES:"n\xe4ited",DOMAINS_ARIA_LABEL:"Domeenid",FILE_DOWNLOAD_SOURCE:"Laadige alla teisendatud l\xe4hte-PDF",FILE_TANSLATION_STATUSS_INITIALIZING:"T\xf5lkeprotsessi algatamine...",FILE_TANSLATION_STATUSS_EXTRACTING:"T\xf5lgitava sisu v\xe4ljav\xf5tmine...",FILE_TANSLATION_STATUSS_WAITING:"T\xf5lket\xf6\xf6riista k\xe4ivitamine...",FILE_TANSLATION_STATUSS_TRANSLATING:"T\xf5lkimine...",FILE_TANSLATION_STATUSS_SAVING:"T\xf5lke salvestamine...",FILE_TANSLATION_STATUSS_QUEUING:"T\xf5lkimine algab...",PDF_DISCLAIMER_LINK:"Lugege teavet PDF-i teisendamise kohta.",UPLOAD_FILES_BUTTON:"Failide \xfcleslaadimine v\xf5i lohistamine",VENDORS_ARIA_LABEL:"Teenusepakkujad",WORD_TYPE_ADJECTIVE:"omaduss\xf5na",WORD_TYPE_NOUN:"nimis\xf5na",WORD_TYPE_VERB:"tegus\xf5na",WORD_TYPE_ADVERB:"m\xe4\xe4rs\xf5na",WORD_TYPE_CONJUNCTION:"sides\xf5na",WORD_TYPE_INTERJECTION:"h\xfc\xfcds\xf5na",WORD_TYPE_PRONOUN:"ases\xf5na",SOURCE_TOOLTIP_ONLY_TEXT:"Sisestage tekst, mille soovite t\xf5lkida.",SOURCE_TOOLTIP_SENSITIVE_INFO:"\xc4rge t\xf5lkige rakendusega {{appName}} salastatud teavet v\xf5i tekste, mis sisaldavad spetsiaalseid isikuandmete kategooriaid (nt terviseandmeid).",REGISTERED_FORMATS_LOGGED_IN:"Registreeritud kasutajatel on juurdep\xe4\xe4s j\xe4rgmiste dokumendivormingutega t\xf5lgetele: {{formats}}.",REGISTERED_FORMATS:'Registreeritud kasutajatel on juurdep\xe4\xe4s j\xe4rgmiste dokumendivormingutega t\xf5lgetele: {{formats}}. Taotlege juurdep\xe4\xe4su <a class="accent-color" target="blank" href="{{registerLink}}">siin</a>.',SOURCE_FORMATS:"Turvaline avalik t\xf5lketeenus toetab j\xe4rgmisi dokumendivorminguid: {{formats}}."},LANGUAGES:{AR:"Araabia",LV:"L\xe4ti",ET:"Eesti",DA:"Taani",FI:"Soome",IS:"Islandi",LT:"Leedu",NB:"Norra",SV:"Rootsi",BE:"Valgevene",BG:"Bulgaaria",CS:"T\u0161ehhi",HU:"Ungari",RU:"Vene",MO:"Moldova",PL:"Poola",SK:"Slovaki",UK:"Ukraina",NL:"Hollandi",EN:"Inglise",FR:"Prantsuse",DE:"Saksa",GA:"Iiri",EL:"Kreeka",IT:"Itaalia",MT:"Malta",PT:"Portugali",SR:"Serbia",SL:"Sloveeni",ES:"Hispaania",ZH:"Hiina",JA:"Jaapani",KO:"Korea",TR:"T\xfcrgi",HR:"Horvaatia",RO:"Rumeenia"},MULTIPLE_FILES:{APPEND:"Lisa failid",STATUSS_UPLOADING:"\xdcleslaadimine ...",STATUSS_UPLOADED:"\xdcles laaditud",PDF_DISCLAIMER:"PDF-faili teisendamine v\xf5ib p\xf5hjustada vormindusvigu v\xf5i tekstimoonutusi. P\xe4rast t\xf5lkimist valige allalaadimisvalikute hulgast k\xe4sk \u201eLaadige alla teisendatud l\xe4hte-PDF\u201c, kontrollige allalaaditud faili ja parandage vead, enne kui laadite faili t\xf5lkimiseks uuesti \xfcles.",IMAGE_DISCLAIMER:"Pildifaili teisendamine v\xf5ib p\xf5hjustada vormindusvigu v\xf5i tekstimoonutusi.",IMAGE_DISCLAIMER_LINK:"Lugege teavet pildifaili teisendamise kohta.",SCREEN_READER_ANNOUNCEMENT:"{{total}} failist on t\xf5lgitud {{translated}} faili.",REMOVE_FILE_TOOLTIP:"Eemalda fail",CLEAR_ALL:"Loobu",DOWNLOAD:"Laadi alla",STATUSS_INITIALIZING:"Algatamine",STATUSS_EXTRACTING:"V\xe4ljav\xf5tmine",STATUSS_WAITING:"T\xf5lket\xf6\xf6riista k\xe4ivitamine",STATUSS_TRANSLATING:"T\xf5lkimine",STATUSS_SAVING:"Salvestamine",STATUSS_COMPLETED:"L\xf5pule viidud",STATUSS_ERROR:"Viga",STATUSS_QUEUING:"J\xe4rjekorras",STATUSS_NOT_STARTED:"\xdcles laaditud",TITLE_FILE_NAME:"Fail",TITLE_STATUSS:"Olek",TRANSLATION_STATUSS_LABEL:"Olek",PDF_DISCLAIMER_LINK:"Lugege teavet PDF-i teisendamise kohta."},ERRORS:{ERROR_DEFAULT_TITLE:"Ootamatu t\xf5rge",ERROR_DEFAULT:"Ilmnes ootamatu t\xf5rge. Proovige uuesti.",ERROR_DEFAULT_SUPPORT:' Kui probleem ei lahene, v\xf5tke \xfchendust <a href="mailto:{{email}}"><strong>kasutajatoega</strong></a>.',MAX_CHAR_LENGTH_TITLE:"T\xf5lkepiirang",MAX_CHAR_LENGTH:'{{totalSymbols}} m\xe4rgist t\xf5lgitakse ainult {{maxCharLength}} m\xe4rki. Teksti piiranguta t\xf5lkimiseks on vaja Tilde MT tellimust. <a href="{{registerLink}}?{{queryString}}">Alustage tasuta prooviperioodi</a>',MAX_NUMBER_OF_FILES_TITLE:"\xdcleslaadimispiirang",MAX_NUMBER_OF_FILES:"Korraga saab t\xf5lkida ainult {{limit}} faili.",FILE_ALREADY_ADDED_TITLE:"Fail on juba lisatud",FILE_ALREADY_ADDED:"Fail \u201e{{fileName}}\u201c on juba lisatud.",UANUTHORIZED_401_TITLE:"Luba puudub",E_CANNOT_READ_FILE_TITLE:"Faili ei saa lugeda",E_CANNOT_READ_FILE:"Fail \u201e{{fileName}}\u201c on rikutud ja seda ei saanud t\xf5lkida. Kontrollige faili ja proovige uuesti.",E_FAILED_IN_TRANSLATION_TITLE:"T\xf5lkimine nurjus",E_FAILED_IN_TRANSLATION:"T\xf5lkimisel ilmnes t\xf5rge. Proovige uuesti.",E_FAILED_IN_TRANSLATION_SUPPORT:' Kui probleem ei lahene, v\xf5tke \xfchendust <a href="mailto:{{email}}"><strong>kasutajatoega</strong></a>.',E_FORMAT_TRACK_CHANGES_TITLE:"T\xf5lkimine nurjus, kuna muutuste j\xe4lituse funktsioon on sisse l\xfclitatud",E_FORMAT_TRACK_CHANGES:"Enne Office'i failide t\xf5lkimist tuleb muudatused esmalt aktsepteerida v\xf5i muutuste j\xe4lituse funktsioon v\xe4lja l\xfclitada.",E_UNKNOWN_ERROR_TITLE:"Tundmatu t\xf5rge",E_UNAUTHORIZED_TITLE:"Luba puudub",COLLECTION_CREATE_TITLE:"S\xf5nastikku ei saanud luua",COLLECTION_CREATE:"Uut s\xf5nastikku ei saanud luua. Proovige uuesti.",COLLECTION_CREATE_SUPPORT:' Kui probleem ei lahene, v\xf5tke \xfchendust <a href="mailto:{{email}}"><strong>kasutajatoega</strong></a>.',COLLECTION_IMPORT_TITLE:"S\xf5nastikku ei saanud lisada",COLLECTION_IMPORT:"Terminikogu, mille ID on {{termId}}, ei saanud masint\xf5lkemootorile lisada. Proovige uuesti.",E_12_TITLE:"Tekstimahupiirang",E_12:"Tekstimahulimiit on t\xe4is. Saatke taotluses v\xe4hem teksti.",E_12_SUPPORT:' Tekstimahulimiidi suurendamiseks v\xf5tke \xfchendust <a href="mailto:{{email}}"><strong>kasutajatoega</strong></a>.',E_21_TITLE:"Masint\xf5lkemootor k\xe4ivitub",E_21:"M\xf5ne hetke p\xe4rast saate t\xf5lkima hakata.",E_22_TITLE:"Masint\xf5lkemootorit ei leitud",E_22:"Masint\xf5lkemootorit ei leitud.",E_22_SUPPORT:' V\xf5tke \xfchendust <a href="mailto:{{email}}"><strong>kasutajatoega</strong></a>.',E_23:"Masint\xf5lkemootor ei k\xe4ivitunud.",E_23_SUPPORT:' V\xf5tke \xfchendust <a href="mailto:{{email}}"><strong>kasutajatoega</strong></a>.',E_41:"Esitatud on tundmatu terminikorpuse ID. Terminikorpus peab olema seotud masint\xf5lkemootoriga",E_504:"Toimingu ajal\xf5pp.",UANUTHORIZED_401:"Teil pole masint\xf5lke kasutamise luba.",UANUTHORIZED_401_SUPPORT:' V\xf5tke \xfchendust <a href="mailto:{{email}}"><strong> toega</strong></a>.',E_UNKNOWN_FILE_TYPE:"Tundmatu failit\xfc\xfcp.",E_UNKNOWN_ERROR:"Ilmnes tundmatu t\xf5rge.",E_UNAUTHORIZED:"Dokumendi t\xf5lkimine keelati.",E_11:"P\xe4evane t\xf5lkelimiit on t\xe4is.",E_11_SUPPORT:' P\xe4evase limiidi t\xf5stmiseks v\xf5tke \xfchendust <a href="mailto:{{email}}"><strong>kasutajatoega</strong></a>.',FILE_UPLOAD:{FILE_UPLOAD_EMPTY_TITLE:"Fail on t\xfchi",FILE_UPLOAD_EMPTY:"\xdcleslaaditud fail \u201e{{fileName}}\u201c on t\xfchi. Valige sisuga fail.",FILE_UPLOAD_MAX_SIZE_TITLE:"Failimahupiirang",FILE_UPLOAD_MAX_SIZE:"\xdcleslaaditud fail \u201e{{fileName}}\u201c on liiga mahukas. Maksimummaht on {{maxSizeMB}} MB",FILE_UPLOAD_UNSUPPORTED_FORMAT_TITLE:"Toetuseta failivorming",FILE_UPLOAD_UNSUPPORTED_FORMAT:"\xdcleslaaditud faili \u201e{{fileName}}\u201c vormingut ei toetata. T\xf5lkida saab sellistes vormingutes dokumente: {{formats}}.",FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER_TITLE:"Toetuseta failivorming",FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER:'Faili \u201e{{fileName}}\u201c t\xf5lkimiseks on vaja Tilde MT tellimust. <a href="{{registerLink}}?{{queryString}}">Alustage tasuta prooviperioodi</a>',E_404_TITLE:"Faili ei leitud",E_404:"Taotletud faili pole olemas"},AUDIO:{NO_SPEECH_TITLE:"K\xf5net pole kuulda",NO_SPEECH:"Teie salvestus on peatatud. Me ei kuulnud teid.",MAX_TIME_EXCEEDED_TITLE:"K\xf5nesisestuspiirang",MAX_TIME_EXCEEDED:"Teie salvestus on peatatud. K\xf5nesisestuslimiit on {{timeString}}.",MIC_NOT_ALLOWED_TITLE:"Juurep\xe4\xe4s mikrofonile on keelatud",MIC_NOT_ALLOWED:"Olete keelanud juurdep\xe4\xe4su mikrofonile. \xd5igusi saate muuta brauseri s\xe4tetes.",MAX_SIZE_EXCEEDED_TITLE:"K\xf5nesisestuspiirang",MAX_SIZE_EXCEEDED:"Salvestus on peatatud ja salvestis on saadetud t\xf6\xf6tlusse. K\xf5nesisestuslimiit on {{maxSizeMb}} MB.",CANT_START_RECORDING_TITLE:"Salvestust ei saanud k\xe4ivitada",CANT_START_RECORDING:"Salvestust ei saa k\xe4ivitada. Proovige uuesti.",NO_TEXT_RECOGNIZED_Title:"K\xf5net ei tuvastatud",NO_TEXT_RECOGNIZED:"K\xf5net ei saanud tuvastada. Kontrollige mikrofoni ja proovige uuesti."},FILE_TRANSLATION_SUBSTATUS:{BAD_FILE_ERROR_TITLE:"Faili ei saanud t\xf5lkida",BAD_FILE_ERROR:"Fail on rikutud ja seda ei saanud t\xf5lkida. Kontrollige faili ja proovige uuesti.",NO_TEXT_EXTRACTED_ERROR_TITLE:"Teksti ei saanud ekstraktida",NO_TEXT_EXTRACTED_ERROR:"Fail v\xf5ib olla t\xfchi. Kontrollige faili ja proovige uuesti.",TRACK_CHANGES_ENABLED_ERROR_TITLE:"T\xf5lkimine nurjus, kuna muutuste j\xe4lituse funktsioon on sisse l\xfclitatud",TRACK_CHANGES_ENABLED_ERROR:"Enne Office'i failide t\xf5lkimist tuleb muudatused esmalt aktsepteerida v\xf5i muutuste j\xe4lituse funktsioon v\xe4lja l\xfclitada.",UNKNOWN_FILE_TYPE_ERROR_TITLE:"Tundmatu failit\xfc\xfcp",UNKNOWN_FILE_TYPE_ERROR:"Failit\xfc\xfcpi ei tuvastatud. Failinimelaiend v\xf5ib olla vale v\xf5i fail v\xf5ib olla rikutud."}},ARIA_LABELS:{COPY:"Kopeeri l\xf5ikelauale",OPEN_IN_NEW:"Ava uuel vahekaardil",SWAP_LANGUAGES:"Vaheta keeli",OTHER_LANGUAGES_TRIGGER:"Kuva muud keeled",CLOSE_BUTTON:"Eemalda",CLEAR_NOTIFICATION:"Sulge hoiatus",CLEAR_SOURCE:"Eemalda sisestatud tekst",CLOSE_DIALOG:"Sulge dialoog",CLEAR_FILES:"Eemalda \xfcleslaaditud failid",SHOW_EXTENSIONS:"Kuva muud allalaadimisvalikud"},TOOLTIPS:{COPY:"Kopeerige l\xf5ikelauale",SWAP_LANGUAGES:"Vaheta keeli"},PDF_CONVERSION:{TITLE_1:"PDF-i t\xf5lkimine",PARAGRAPH_1_1:"Kui PDF-fail laaditakse t\xf5lkimiseks \xfcles, teisendatakse see t\xf5lgitavasse vormingusse. Toetatud on nii skannitud kui ka kohe PDF-vormingus loodud PDF-failid. T\xf5lked saab alla laadida DOCX-, TMX- ja PDF-vormingus ning nende p\xf5hivormindus s\xe4ilib. T\xf5lgitud DOCX- ja PDF-failide vormindus v\xf5ib veidi erineda. ",PARAGRAPH_1_2:"Kuna teisendamine v\xf5tab aega, jagage oma PDF-failid teisenduse kiirendamiseks osadeks ja kustutage lehed, kus pole t\xf5lgitavat teavet. T\xf6\xf6tlusaega m\xf5jutavad sellised tegurid nagu lehtede arv, kvaliteet ja teksti tihedus.",PARAGRAPH_1_3:"T\xf5lkimisj\xf5udluse suurendamiseks soovitame teisendatud l\xe4htekeelse dokumendi alla laadida ja vead k\xe4sitsi parandada ning seej\xe4rel laadida selle uuesti t\xf5lkimiseks \xfcles.",IMAGE_ALT_1:"L\xe4htekeelse PDF-faili allalaadimise n\xe4ide",TITLE_2:"PDF-i teisendamine",PARAGRAPH_2_1:"Dokumenti anal\xfc\xfcsitakse ja selle sisu jagatakse teksti-, tabeli- ja pildi-/taustapildialadeks. Neid anal\xfc\xfcsitakse edasi, et teha kindlaks, millist sisu tuleks tekstina \xe4ra tunda.",PARAGRAPH_2_2:"Tekstiandmed saadakse OCR-i ehk optilise m\xe4rgituvastuse abil. Iga t\xe4hem\xe4rk tuvastatakse vastavalt selle visuaalsetele omadustele, seej\xe4rel \xfchendatakse see s\xf5nadeks ja lauseteks.",PARAGRAPH_2_3:"Tuvastamist m\xf5jutavad mitmed tegurid, sealhulgas:",LI_1_1:"Skannitud dokumendi kvaliteet (h\xe4gune v\xf5i moondunud tekst, pildim\xfcra, pildi eraldusv\xf5ime, kontrastsus jne). Parima tulemuse saavutamiseks peaksid PDF-failid olema v\xe4hemalt 300 dpi eraldusv\xf5imega, mittevildakad ja m\xfcravabad.",LI_1_2:"Fondi suurus. V\xe4iksemaid kui 9-punktilisi suurusi v\xf5idakse halvasti tuvastada. ",LI_1_3:"Haruldased ja algup\xe4rased fondid. V\xe4hem levinud fonte v\xf5idakse mitte tuvastada v\xf5i tulemus v\xf5ib olla kehvem.",LI_1_4:"Dokumendi struktuuri ja vorminduse keerukus.",TITLE_3:"T\xf5lkej\xf5udluse suurendamine",PARAGRAPH_3_1:"Teisendusprotsess on v\xe4ga keeruline ja seda v\xf5ivad m\xf5jutada erinevad sisenddokumendist tulenevad vead. ",PARAGRAPH_3_2:"J\xe4rgida tasub j\xe4rgmisi ilminguid:",LI_2_1:"Valesti tuvastatud s\xf5nad.",LI_2_2:"Valed s\xf5napiirid.",LI_2_3:"Mitmesse veergu jagatud laused, erinevateks tekstobjektideks jagatud read v\xf5i lehek\xfcljed.",LI_2_4:"Valesti paigutatud lehejalused ja- p\xe4ised.",LI_2_5:"Vale nummerdus.",LI_2_6:"Taustpiltidena tuvastatud tabelid, mille tekstisisu on paigutatud erinevatesse tekstiobjektidesse.",LI_2_7:"M\xf5nede diagrammmide tuvastamine piltidena, millel puudub tekstisisu.",LI_2_8:"Eraldajate, \xe4\xe4riste v\xf5i muude horisontaaljoonte tuvastamine l\xe4bikriipsutatud v\xf5i allajoonitud tekstina.",LI_2_9:"Sisukorra v\xf5i sarnaste loendite vormindamine ahendatuna v\xf5i tuvastamine l\xe4bikriipsutatud v\xf5i allajoonitud tekstina.",PARAGRAPH_4_1:"<b>Pange t\xe4hele, et saadavas dokumendis ei s\xe4ili k\xf5iki algse vorminduse \xfcksikasjad.</b> M\xf5ned pildid, tabelid v\xf5i diagrammid v\xf5ivad moonduda v\xf5i lihtsustuda. T\xf5lgitud dokumendi fondid erinevad algsest, kuid v\xf5ivad olla sarnased. Tuvastatud fondisuurus v\xf5ib olla vale. Spetsiifilist Wordi vormindust (n\xe4iteks pealkirjad, sisukorrad, p\xe4ised ja jalused, sildid, vormid jne) kujutatakse algse v\xe4limusega sarnaselt, kuid see ei \xfchti algsega t\xe4ielikult (nt pealkirjad on paksus kirjas ja suurema fondiga, kuid ei ole vormindatud pealkirjalaadiga).",CLOSE:"Sulge dialoog"},WEBTRANSLATE:{BACK:"Tagasi t\xf5lket\xf6\xf6riista",ADDRESS:"Aadress",LOAD_PAGE:"Laadi leht",RESTORE:"Taasta",CANCEL:"Loobu"},TERM_COLLECTIONS:{MT_ENTRY_COUNT:"Imporditud: {{count}}",TITLE:"S\xf5nastike valimine, redigeerimine ja haldamine",TITLE_EMPTY:"Looge oma esimene s\xf5nastik",TITLE_MOBILE:"Valige s\xf5nastikud",DESCRIPTION_1:"Valige selle projekti jaoks kasutatav terminikogu. ",DESCRIPTION_2:" Saate lisada uusi kogusid ja redigeerida olemasolevaid",DESCRIPTION_2_MOBILE:" T\xf6\xf6lauaversiooni abil saate luua uusi kogusid v\xf5i redigeerida olemasolevaid.",DESCRIPTION_EMPTY:"Saate t\xe4pselt h\xe4\xe4lestada, kuidas peaks {{appName}} teie ettev\xf5ttele v\xf5i valdkonnale omaseid s\xf5nu ja fraase t\xf5lkima. Selleks lisage need oma kordumatutesse terminikogudesse.",DESCRIPTION_EMPTY_MOBILE:"T\xf6\xf6lauaversiooni kasutades saate t\xe4pselt h\xe4\xe4lestada, kuidas peaks Tilde MT teie ettev\xf5ttele v\xf5i valdkonnale omaseid s\xf5nu ja fraase t\xf5lkima. Selleks lisage need oma kordumatutesse terminikogudesse.",GLOSSARY:"S\xf5nastik: ",SELECTED_NONE:"Puudub",EDIT:"Redigeeri",CREATE:"Uus s\xf5nastik",ENTRY_COUNT:"Kirjeid: {{count}}",ENTRY_COUNT_WITH_LANGUGAES:"Kirjeid: {{count}} [{{languages}}]",DEFAULT_COLLECTION_NAME:"Minu terminikogu",SYNC:"S\xfcnkrooni",SYNC_ERROR:"Proovi uuesti",PROMOTION:{TITLE:"S\xf5nastike loomine, redigeerimine ja haldamine",DESCRIPTION:"S\xf5nastikud on saadaval Tilde MT liikmetele.",START_TRIAL:"Alusta tasuta prooviperioodi",LEARN_MORE:"Lisateave s\xf5nastike kohta"},ARIA_LABELS:{RADIO_GROUP:"Valige terminikogu",OTHER_COLLECTIONS:"Ava kogumen\xfc\xfc"},CREATE_DIALOG:{CANCEL:"Loobu",COLLECTION_NAME_LABEL:"Terminikogu nimi",CREATE:"Loo",DESCRIPTION_1:"P\xe4rast terminikogu nimetamist suunatakse teid uute terminite lisamiseks \xfcmber keskkonda Tilde Term. Kui olete valmis, naaske Tilde MT-sse ja saate neid t\xf5lkeprojektides kasutada.",DESCRIPTION_2:"<i>* AI ei ole t\xe4iuslik ja v\xf5ib vahel vigu teha. Teie kordumatuid termineid kasutatakse \xf5igesti 95% t\xe4psusega.</i>",TITLE:"Loo uus s\xf5nastik",COLLECTION_NAME_ERROR:"Pealkiri peaks olema v\xe4hemalt {{minLength}} s\xfcmbolit pikk ja mitte pikem kui {{maxLength}} s\xfcmbolit"},TOOLTIPS:{MT_ENTRY_COUNT:"Masint\xf5lkes kasutatavate kirjete arv",EDIT:"Teid suunatakse \xfcmber terminoloogiaportaali, mis avatakse uuel vahekaardil",ENTRY_COUNT:"Terminikogusse lisatud kirjete arv",IMPORTING:"Terminikogu imporditakse ja seda ei kasutata, kui importimine veel kestab.",NO_ENTRIES:"Terminikogu ei saa kasutada. L\xe4htekeeles pole termineid.",SYNC:"V\xe4rskenda terminikogu",SYNCING:"Terminikogu s\xfcnkroonitakse ja kasutatakse kogu viimast s\xfcnkroonitud versiooni",ATTACH_TO_SYSTEM_ERROR:"Terminikogu importimisel ilmnes t\xf5rge"}},DOMAINS:{OPEN_LIST_ARIA_LABEL:"Ava domeeniloend",TITLE:"Domeen:",GENERAL:"\xdcldine",AUTO:"Automaattuvastus",LAW:"Juura",DYNAMIC_LEARNING:"D\xfcnaamiline \xf5pe",BUSINESS:"\xc4ri"},IMAGE_CONVERSION:{TITLE_1:"Pildifaili t\xf5lge",PARAGRAPH_1_1:"Kui pildifail laaditakse t\xf5lkimiseks \xfcles, teisendatakse see t\xf5lgitavasse vormingusse. T\xf5lked saab alla laadida DOCX- v\xf5i TMX-vormingus ning nende p\xf5hivormindus s\xe4ilib.",PARAGRAPH_1_2:"<b>Toetatud pildivormingud:</b> .jpg,.jpeg, .png ja .bmp.",PARAGRAPH_1_3:"T\xf5lkimisj\xf5udluse suurendamiseks soovitame teisendatud l\xe4htekeelse dokumendi alla laadida ja vead k\xe4sitsi parandada ning seej\xe4rel laadida selle t\xf5lkimiseks uuesti \xfcles.",IMAGE_ALT_1:"L\xe4htepildi allalaadimise n\xe4ide",TITLE_2:"Pildifaili teisendamine",PARAGRAPH_2_1:"Pildifaili anal\xfc\xfcsitakse ning selle sisu jagatakse teksti-, tabeli- ja pildi-/taustapildialadeks. Neid anal\xfc\xfcsitakse edasi, et teha kindlaks, millist sisu tuleks pidada tekstiks.",PARAGRAPH_2_2:"Tekstandmed saadakse OCR-i ehk optilise m\xe4rgituvastuse abil. Iga t\xe4hem\xe4rk tuvastatakse selle visuaalsete omaduste j\xe4rgi, seej\xe4rel \xfchendatakse m\xe4rgid s\xf5nadeks ja lauseteks.",PARAGRAPH_2_3:"Tuvastamist m\xf5jutavad mitu tegurit, sealhulgas j\xe4rgmised.",LI_1_1:"Skannitud pildi kvaliteet (h\xe4gune v\xf5i moondunud tekst, pildim\xfcra, pildi eraldusv\xf5ime, kontrastsus jne). Parima tulemuse saavutamiseks peaks piltide eraldusv\xf5ime olema v\xe4hemalt 300 dpi, pildid ei tohiks olla vildakad ega sisaldada pildim\xfcra.",LI_1_2:"Fondi suurus. V\xe4iksemaid kui 9-punktilisi suurusi v\xf5idakse halvasti tuvastada. ",LI_1_3:"Haruldased ja algup\xe4rased fondid. V\xe4hem levinud fonte v\xf5idakse mitte tuvastada v\xf5i tulemus v\xf5ib olla kehvem.",LI_1_4:"Dokumendi struktuuri ja vorminduse keerukus.",TITLE_3:"T\xf5lkej\xf5udluse suurendamine",PARAGRAPH_3_1:"Teisendusprotsess on v\xe4ga keeruline ja seda v\xf5ivad m\xf5jutada mitmesugused sisenddokumendist tulenevad vead. ",PARAGRAPH_3_2:"T\xe4helepanu tuleks p\xf6\xf6rata j\xe4rgmistele probleemidele.",LI_2_1:"Valesti tuvastatud s\xf5nad.",LI_2_2:"Valed s\xf5napiirid.",LI_2_3:"Mitmesse veergu ja mitmele reale v\xf5i lehek\xfcljele ulatuvad ning eri tekstobjektideks jagatud laused.",LI_2_4:"Valesti paigutatud lehek\xfcljejalused ja -p\xe4ised.",LI_2_5:"Vale nummerdus.",LI_2_6:"Taustpiltidena tuvastatud tabelid, mille tekstsisu on paigutatud eri tekstobjektidesse.",LI_2_7:"M\xf5ned tekstsisuta piltidena tuvastatud diagrammid.",LI_2_8:"L\xe4bikriipsutatud v\xf5i allajoonitud tekstina tuvastatud eraldajad, \xe4\xe4rised v\xf5i muud horisontaaljooned.",PARAGRAPH_4_1:"<b>Pange t\xe4hele, et tulemdokumendis ei s\xe4ili k\xf5ik algse vorminduse \xfcksikasjad.</b> M\xf5ni pilt, tabel v\xf5i diagramm v\xf5ib olla moonutatud v\xf5i lihtsustatud. T\xf5lgitud dokumendi fondid on teistsugused kui algdokumendis, kuid need v\xf5ivad olla sarnased. Tuvastatud fondisuurus v\xf5ib olla vale.",CLOSE:"Sule dialoog"},GRAMMAR_CHECK_MENU:{TITLE:"Kaaluge sellega asendamist:"},AUDIO:{CANCEL:"Loobu",DESCRIBE_STATE_RECORDING:"R\xe4\xe4kige salvestamiseks...",DESCRIBE_STATE_PROCESSING:"T\xf6\xf6tlemine...",MIC_NOT_FOUND:"Mikrofoni ei leitud",STOP:"L\xf5peta salvestus",START:"T\xf5lgi k\xf5ne",PUNCTUATION_MESSAGE_TITLE:"Lisage kirjavahem\xe4rgid",PUNCTUATION_MESSAGE:"Lisage tuvastatud tekstile kirjavahem\xe4rgid. Kirjavahem\xe4rkideta pikal tekstil v\xf5ib olla kehvem t\xf5lkekvaliteet v\xf5i seda ei pruugita t\xf5lkida"},EXTENSION_POPUP:{OPEN:"kuva k\xf5ik toetatud vormingud",TITLE:"Toetatud failivormingud",DESCRIPTION:"Faili \xf5ige t\xf5lke tagamiseks on vaja kodeeringut UTF-8 v\xf5i UTF-16",OFFICE:"Office",SCANNED:"Skannitud failid",INTERCHANGE:"Vahetusvormingud",WEB:"Veeb",OTHER:"Muu"},FILE_UPLOAD:{UPLOAD:"Valige",DRAG_AND_DROP:"v\xf5i pukseerige ",FILE:"fail",FILES:"failid",LIMITS:" ({{visibleExtensions}}. Max {{maxSizeMB}}MB)"},TEXT_TO_SPEECH:{PLAY:"Kuulake"}},fi:{APP_NAME:"Tilde MT",TLD_TRANSLATE:{DOWNLOAD_TRANSLATED:"Lataa",FILE_DOWNLOAD_SOURCE_IMAGE:"Lataa muunnettu l\xe4hdekuva",FILE_DOWNLOAD_SOURCE_IMAGE_HELP:"Kuvan muuntaminen voi aiheuttaa muotoiluvirheit\xe4 tai tekstin v\xe4\xe4ristymist\xe4. Tarkista muunnettu tiedosto ja korjaa virheet, ennen kuin lataat tiedoston uudelleen k\xe4\xe4nt\xe4mist\xe4 varten.",FILE_TANSLATION_STATUSS_UPLOADING:"Ladataan...",FILE_TANSLATION_STATUSS_UPLOADED:"Ladattu",IMAGE_DISCLAIMER_LINK:"Lis\xe4tietoja kuvan muuntamisesta.",DOC_WORD_CNT_LIMIT_MSG_TITLE:"K\xe4\xe4nn\xf6srajoitus",DOC_WORD_CNT_LIMIT_MSG:'Vain ensimm\xe4iset {{wordCount}} sanaa k\xe4\xe4nnet\xe4\xe4n. Tarvitset Tilde MT -tilauksen, jos haluat k\xe4\xe4nt\xe4\xe4 kokonaisia tiedostoja. <a href="{{registerLink}}?{{queryString}}">aloita ilmainen kokeilu</a>',ERROR_NO_SYSTEMS_LOADED_TITLE:"Yht\xe4\xe4n k\xe4\xe4nn\xf6sohjelmaa ei ladattu",ERROR_NO_SYSTEMS_LOADED:"Konek\xe4\xe4nn\xf6sohjelmien lataaminen ep\xe4onnistui.",ERROR_NO_SYSTEMS_LOADED_SUPPORT:' Lataa sivu uudelleen tai ota yhteytt\xe4 <a href="mailto:{{email}}"><strong>tukipalveluun</strong></a>.',PDF_PAGE_LIMIT_MSG_TITLE:"K\xe4\xe4nn\xf6srajoitus",PDF_PAGE_LIMIT_MSG:'Vain ensimm\xe4inen sivu k\xe4\xe4nnet\xe4\xe4n. Tarvitset Tilde MT -tilauksen, jos haluat k\xe4\xe4nt\xe4\xe4 kokonaisia PDF-tiedostoja. <a href="{{registerLink}}?{{queryString}}">aloita ilmainen kokeilu</a>',CLEAR_SOURCE_TOOLTIP:"Poista teksti",BEST_NMT:"WMT Competition -kilpailun parhaan konek\xe4\xe4nn\xf6steknologian ylpe\xe4 voittaja kolmena per\xe4kk\xe4isen\xe4 vuotena.",BEST_NMT_MORE:"Lis\xe4tietoja",CANCEL_TRANSLATION:"Peruuta",DICTIONARY_EXAMPLES:"esimerkkej\xe4",DOMAINS_ARIA_LABEL:"Toimialueet",FILE_DOWNLOAD_SOURCE:"Lataa muunnettu l\xe4hde-PDF",FILE_TANSLATION_STATUSS_INITIALIZING:"K\xe4\xe4nn\xf6sprosessi alkaa...",FILE_TANSLATION_STATUSS_EXTRACTING:"Puretaan k\xe4\xe4nnett\xe4v\xe4\xe4 sis\xe4lt\xf6\xe4...",FILE_TANSLATION_STATUSS_WAITING:"K\xe4ynnistet\xe4\xe4n k\xe4\xe4nnin...",FILE_TANSLATION_STATUSS_TRANSLATING:"K\xe4\xe4nnet\xe4\xe4n...",FILE_TANSLATION_STATUSS_SAVING:"Tallennetaan k\xe4\xe4nn\xf6st\xe4...",FILE_TANSLATION_STATUSS_COMPLETED:"",FILE_TANSLATION_STATUSS_ERROR:"",FILE_TANSLATION_STATUSS_QUEUING:"K\xe4\xe4nt\xe4minen alkaa...",FILE_TARGET_PREVIEW_MESSAGE:"T\xe4m\xe4 on k\xe4\xe4nnetyn asiakirjan esikatselun\xe4yte. Lataa, jotta saat kokonaisen k\xe4\xe4nn\xf6ksen.",FROM:"L\xe4ht\xf6kieli:",PDF_DISCLAIMER_LINK:"Lue pdf-tiedostojen muuntamisesta.",PREPARING_TRANSLATION:"K\xe4\xe4nt\xe4minen alkaa",SOURCE_WORD_LIMIT:" k\xe4\xe4nn\xf6sten m\xe4\xe4r\xe4 on rajoitettu {{limit}} sanaan.",SOURCE_TOOLTIP:"Lis\xe4\xe4 t\xe4h\xe4n k\xe4\xe4nnett\xe4v\xe4 teksti tai verkkosivun osoite.",SOURCE_TOOLTIP_SENSITIVE_INFO:"\xc4l\xe4 k\xe4\xe4nn\xe4 {{appName}}-konek\xe4\xe4nn\xf6spalvelussa salassa pidett\xe4v\xe4\xe4 tai turvallisuusluokiteltua tietoa tai erityisi\xe4 henkil\xf6tietoja (esim. terveystietoja) sis\xe4lt\xe4vi\xe4 tekstej\xe4.",TARGET_DESCRIPTION:"Konek\xe4\xe4nn\xf6s auttaa ymm\xe4rt\xe4m\xe4\xe4n tekstin merkityksen, mutta se ei vastaa ammattik\xe4\xe4nt\xe4j\xe4n tekem\xe4\xe4 k\xe4\xe4nn\xf6st\xe4.",TO:"Kohdekieli:",TEXT_COPIED:"K\xe4\xe4nn\xf6s kopioitu",SUGGEST_BUTTON:"Ehdota k\xe4\xe4nn\xf6st\xe4",SUGGEST_ORIGINAL_LABEL:"L\xe4ht\xf6teksti",SUGGEST_SUBMIT_BUTTON:"Osallistu",SUGGEST_TRANSLATION_LABEL:"K\xe4\xe4nn\xf6s",SUGGEST_USAGE_INFO:"Anonyymi\xe4 k\xe4\xe4nn\xf6sehdotustasi k\xe4ytet\xe4\xe4n konek\xe4\xe4nn\xf6ksen laadun parantamiseen.",TOOLTIP_ACTION:"K\xe4\xe4nn\xe4",UPLOAD_FILE_BUTTON:"Lataa tai pudota tiedosto",UPLOAD_FILES_BUTTON:"Lataa tai pudota tiedostoja",VENDORS_ARIA_LABEL:"Palveluntarjoajat",WORD_TYPE_ADJECTIVE:"adjektiivi",WORD_TYPE_NOUN:"substantiivi",WORD_TYPE_VERB:"verbi",WORD_TYPE_ADVERB:"adverbi",WORD_TYPE_CONJUNCTION:"konjunktio",WORD_TYPE_INTERJECTION:"interjektio",WORD_TYPE_PRONOUN:"pronomini",SOURCE_TOOLTIP_ONLY_TEXT:"Kirjoita k\xe4\xe4nnett\xe4v\xe4 teksti.",REGISTERED_FORMATS_LOGGED_IN:"Rekister\xf6idyill\xe4 k\xe4ytt\xe4jill\xe4 on oikeus k\xe4\xe4nt\xe4\xe4 seuraavia tiedostomuotoja: {{formats}}.",REGISTERED_FORMATS:'Rekister\xf6idyill\xe4 k\xe4ytt\xe4jill\xe4 on oikeus k\xe4\xe4nt\xe4\xe4 seuraavia tiedostomuotoja: {{formats}}. Pyyd\xe4 k\xe4ytt\xf6oikeutta <a class="accent-color" target="blank" href="{{registerLink}}">t\xe4\xe4lt\xe4</a>.',SOURCE_FORMATS:"Suojattu julkinen k\xe4\xe4nn\xf6spalvelu tukee seuraavia tiedostomuotoja: {{formats}};"},MULTIPLE_FILES:{APPEND:"Lis\xe4\xe4 tiedostoja",STATUSS_UPLOADING:"Ladataan...",STATUSS_UPLOADED:"Ladattu",PDF_DISCLAIMER:'PDF-tiedoston muuntaminen voi aiheuttaa muotoiluvirheit\xe4 tai tekstin v\xe4\xe4ristymist\xe4. Kun k\xe4\xe4nn\xf6s on valmis, valitse latausvaihtoehdoista "Lataa muunnettu l\xe4hde-PDF\u201d, tarkista ladattu tiedosto ja korjaa virheet ennen tiedoston lataamista uudelleen k\xe4\xe4nnett\xe4v\xe4ksi.',IMAGE_DISCLAIMER:"Kuvan muuntaminen voi aiheuttaa muotoiluvirheit\xe4 tai tekstin v\xe4\xe4ristymist\xe4.",IMAGE_DISCLAIMER_LINK:"Lis\xe4tietoja kuvan muuntamisesta.",SCREEN_READER_ANNOUNCEMENT:"{{translated}}/{{total}} tiedostosta on k\xe4\xe4nnetty.",REMOVE_FILE_TOOLTIP:"Poista tiedosto",CLEAR_ALL:"Peruuta",DOWNLOAD:"Lataa",STATUSS_INITIALIZING:"Aloitetaan",STATUSS_EXTRACTING:"Puretaan",STATUSS_WAITING:"K\xe4ynnistet\xe4\xe4n k\xe4\xe4nnin",STATUSS_TRANSLATING:"K\xe4\xe4nnet\xe4\xe4n",STATUSS_SAVING:"Tallennetaan",STATUSS_COMPLETED:"Valmis",STATUSS_ERROR:"Virhe",STATUSS_QUEUING:"Jonossa",STATUSS_NOT_STARTED:"Ladattu",TITLE_FILE_NAME:"Tiedosto",TITLE_STATUSS:"Status",TRANSLATION_STATUSS_LABEL:"Status",PDF_DISCLAIMER_LINK:"Lue pdf-tiedostojen muuntamisesta."},ERRORS:{ERROR_DEFAULT_TITLE:"Odottamaton virhe",ERROR_DEFAULT:"Tapahtui odottamaton virhe. Yrit\xe4 uudelleen.",ERROR_DEFAULT_SUPPORT:' Jos ongelma jatkuu, ota yhteytt\xe4 <a href="mailto:{{email}}"><strong>tukipalveluun</strong></a>.',MAX_CHAR_LENGTH_TITLE:"K\xe4\xe4nn\xf6srajoitus",MAX_CHAR_LENGTH:'Vain {{maxCharLength}}/{{totalSymbols}} merkki\xe4 k\xe4\xe4nnet\xe4\xe4n. Tarvitset Tilde MT -tilauksen, jos haluat k\xe4\xe4nt\xe4\xe4 teksti\xe4 ilman merkkirajoituksia. <a href="{{registerLink}}?{{queryString}}">aloita ilmainen kokeilu</a>',MAX_NUMBER_OF_FILES_TITLE:"Latausraja",MAX_NUMBER_OF_FILES:"Vain {{limit}} tiedostoa voidaan k\xe4\xe4nt\xe4\xe4 kerralla.",FILE_ALREADY_ADDED_TITLE:"Tiedosto on jo lis\xe4tty",FILE_ALREADY_ADDED:'Tiedosto "{{fileName}}" on jo lis\xe4tty.',UANUTHORIZED_401_TITLE:"Ei sallittu",E_CANNOT_READ_FILE_TITLE:"Tiedostoa ei voi lukea",E_CANNOT_READ_FILE:'Tiedosto "{{fileName}}" on viallinen, eik\xe4 sit\xe4 voitu k\xe4\xe4nt\xe4\xe4. Tarkista tiedosto ja yrit\xe4 uudelleen.',E_FAILED_IN_TRANSLATION_TITLE:"K\xe4\xe4nn\xf6s ep\xe4onnistui",E_FAILED_IN_TRANSLATION:"K\xe4\xe4nn\xf6ksen aikana tapahtui virhe. Yrit\xe4 uudelleen.",E_FAILED_IN_TRANSLATION_SUPPORT:' Jos ongelma jatkuu, ota yhteytt\xe4 <a href="mailto:{{email}}"><strong>tukipalveluun</strong></a>.',E_FORMAT_TRACK_CHANGES_TITLE:"K\xe4\xe4nn\xf6s ep\xe4onnistui, koska \u201dJ\xe4ljit\xe4 muutokset\u201d on k\xe4yt\xf6ss\xe4",E_FORMAT_TRACK_CHANGES:"Muutokset on ensin hyv\xe4ksytt\xe4v\xe4 tai muutosten j\xe4ljitys on otettava pois k\xe4yt\xf6st\xe4 ennen Office-tiedostojen k\xe4\xe4nt\xe4mist\xe4.",E_UNKNOWN_ERROR_TITLE:"Tuntematon virhe",E_UNAUTHORIZED_TITLE:"Ei sallittu",COLLECTION_CREATE_TITLE:"Sanaston luominen ep\xe4onnistui",COLLECTION_CREATE:"Uuden sanaston luominen ep\xe4onnistui. Yrit\xe4 uudelleen.",COLLECTION_CREATE_SUPPORT:' Jos ongelma jatkuu, ota yhteytt\xe4 <a href="mailto:{{email}}"><strong>tukipalveluun</strong></a>.',COLLECTION_IMPORT_TITLE:"Sanaston liitt\xe4minen ep\xe4onnistui",COLLECTION_IMPORT:"Termikokoelman, jonka tunnus on {{termId}}, liitt\xe4minen konek\xe4\xe4nn\xf6sohjelmaan ep\xe4onnistui. Yrit\xe4 uudelleen.",E_12_TITLE:"Tekstin kokorajoitus",E_12:"Tekstin kokorajoitus saavutettu. L\xe4het\xe4 pyynt\xf6, joka sis\xe4lt\xe4\xe4 v\xe4hemm\xe4n teksti\xe4.",E_12_SUPPORT:' Voit suurentaa tekstin kokorajoitusta ottamalla yhteytt\xe4 <a href="mailto:{{email}}"><strong>tukipalveluun</strong></a>.',E_21_TITLE:"Konek\xe4\xe4nn\xf6sohjelma k\xe4ynnistyy",E_21:"Voit k\xe4\xe4nt\xe4\xe4 hetken kuluttua.",E_22_TITLE:"Konek\xe4\xe4nn\xf6sohjelmaa ei l\xf6ydy",E_22:"Konek\xe4\xe4nn\xf6sohjelmaa ei l\xf6ydy.",E_22_SUPPORT:' Ota yhteytt\xe4 <a href="mailto:{{email}}"><strong>tukeen</strong></a>.',E_23:"Konek\xe4\xe4nn\xf6sohjelmaa ei ole k\xe4ynnistetty.",E_23_SUPPORT:' Ota yhteytt\xe4 <a href="mailto:{{email}}"><strong>tukeen</strong></a>.',E_41:"Tuntematon termikorpuksen tunniste annettu. Termikorpus on linkitett\xe4v\xe4 konek\xe4\xe4nn\xf6sohjelmaan",E_504:"Toiminto on aikakatkaistu.",UANUTHORIZED_401:"Sinulla ei ole oikeutta k\xe4ytt\xe4\xe4 konek\xe4\xe4nnint\xe4.",UANUTHORIZED_401_SUPPORT:' Ota yhteytt\xe4 <a href="mailto:{{email}}"><strong>tukipalveluun</strong></a>.',E_UNKNOWN_FILE_TYPE:"Tuntematon tiedostotyyppi.",E_UNKNOWN_ERROR:"Ilmeni tuntematon virhe.",E_UNAUTHORIZED:"Asiakirjan k\xe4\xe4nn\xf6s estettiin.",E_11:"P\xe4ivitt\xe4inen k\xe4\xe4nn\xf6sraja on t\xe4yttynyt.",E_11_SUPPORT:' Ota yhteytt\xe4 <a href="mailto:{{email}}"><strong>tukeen</strong></a>, jos haluat nostaa p\xe4ivitt\xe4ist\xe4 rajaa.',FILE_TRANSLATION_SUBSTATUS:{BAD_FILE_ERROR_TITLE:"Tiedoston k\xe4\xe4nt\xe4minen ep\xe4onnistui",BAD_FILE_ERROR:"Tiedosto on viallinen, eik\xe4 sit\xe4 voitu k\xe4\xe4nt\xe4\xe4. Tarkista tiedosto ja yrit\xe4 uudelleen.",NO_TEXT_EXTRACTED_ERROR_TITLE:"Tekstin purkaminen ep\xe4onnistui",NO_TEXT_EXTRACTED_ERROR:"Tiedosto saattaa olla tyhj\xe4. Tarkista tiedosto ja yrit\xe4 uudelleen.",TRACK_CHANGES_ENABLED_ERROR_TITLE:"K\xe4\xe4nn\xf6s ep\xe4onnistui, koska \u201dJ\xe4ljit\xe4 muutokset\u201d on k\xe4yt\xf6ss\xe4",TRACK_CHANGES_ENABLED_ERROR:"Muutokset on ensin hyv\xe4ksytt\xe4v\xe4 tai muutosten j\xe4ljitys on otettava pois k\xe4yt\xf6st\xe4 ennen Office-tiedostojen k\xe4\xe4nt\xe4mist\xe4.",UNKNOWN_FILE_TYPE_ERROR_TITLE:"Tuntematon tiedostotyyppi",UNKNOWN_FILE_TYPE_ERROR:"Tiedostotyyppi\xe4 ei tunnisteta. Tiedostop\xe4\xe4te voi olla virheellinen tai tiedosto voi olla viallinen."},FILE_UPLOAD:{FILE_UPLOAD_EMPTY_TITLE:"Tiedosto on tyhj\xe4",FILE_UPLOAD_EMPTY:'Ladattu tiedosto "{{fileName}}" on tyhj\xe4. Valitse tiedosto, jossa on sis\xe4lt\xf6\xe4.',FILE_UPLOAD_MAX_SIZE_TITLE:"Tiedoston kokorajoitus",FILE_UPLOAD_MAX_SIZE:'Ladattu tiedosto "{{fileName}}" on liian suuri. Enimm\xe4iskoko {{maxSizeMB}} Mt',FILE_UPLOAD_UNSUPPORTED_FORMAT_TITLE:"Tiedostomuotoa ei tueta",FILE_UPLOAD_UNSUPPORTED_FORMAT:'Ladatun tiedoston "{{fileName}}" tiedostomuotoa ei tueta. K\xe4\xe4nn\xf6s on tuettu seuraaville asiakirjamuodoille: {{formats}}.',FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER_TITLE:"Tiedostomuotoa ei tueta",FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER:'Tarvitset Tilde MT -tilauksen "{{fileName}}" -tiedoston k\xe4\xe4nt\xe4miseen. <a href="{{registerLink}}?{{queryString}}">aloita ilmainen kokeilu</a>',E_404_TITLE:"Tiedostoa ei l\xf6ytynyt",E_404:"Pyydetty\xe4 tiedostoa ei ole olemassa"},AUDIO:{NO_SPEECH_TITLE:"Ei puhetta",NO_SPEECH:"Tallennuksesi lopetettiin. Emme kuulleet sinua.",MAX_TIME_EXCEEDED_TITLE:"Puherajoitus",MAX_TIME_EXCEEDED:"Tallennuksesi lopetettiin. Puheensy\xf6tt\xf6 on rajoitettu aikaan {{timeString}}.",MIC_NOT_ALLOWED_TITLE:"Mikrofonin k\xe4ytt\xf6 estetty",MIC_NOT_ALLOWED:"Olet est\xe4nyt mikrofonin k\xe4yt\xf6n. Muuta k\xe4ytt\xf6oikeuksia selaimen asetuksista.",MAX_SIZE_EXCEEDED_TITLE:"Puherajoitus",MAX_SIZE_EXCEEDED:"Tallennuksesi lopetettiin ja l\xe4hetettiin k\xe4sitelt\xe4v\xe4ksi. Puhesy\xf6t\xf6n enimm\xe4iskoko on {{maxSizeMb}} Mt.",CANT_START_RECORDING_TITLE:"Tallennuksen aloittaminen ep\xe4onnistui",CANT_START_RECORDING:"Tallennuksen aloittaminen ei onnistu. Yrit\xe4 uudelleen.",NO_TEXT_RECOGNIZED_Title:"Puhetta ei tunnistettu",NO_TEXT_RECOGNIZED:"Puhetta ei voitu tunnistaa. Tarkista mikrofonisi ja yrit\xe4 uudelleen."}},RATING:{},LANGUAGES:{AR:"Arabia",BE:"Valkoven\xe4j\xe4",BG:"Bulgaria",CS:"Tsekki",DA:"Tanska",DE:"Saksa",EL:"Kreikka",EN:"Englanti",ES:"Espanja",ET:"Viro",FI:"Suomi",FR:"Ranska",GA:"Irlanti",HR:"Kroatia",HU:"Unkari",IS:"Islanti",IT:"Italia",JA:"Japani",KA:"Georgia",KO:"Korea",LT:"Liettua",LV:"Latvia",MO:"Moldova",MT:"Malta",NB:"Norja",NL:"Hollanti",PL:"Puola",PT:"Portugali",RO:"Romania",RU:"Ven\xe4j\xe4",SK:"Slovakki",SR:"Serbia",SL:"Sloveeni",SV:"Ruotsi",TR:"Turkki",UK:"Ukraina",ZH:"Kiina"},ARIA_LABELS:{COPY:"Kopioi leikep\xf6yd\xe4lle",OPEN_IN_NEW:"Avaa uudessa v\xe4lilehdess\xe4",SWAP_LANGUAGES:"Vaihda kielet",OTHER_LANGUAGES_TRIGGER:"N\xe4yt\xe4 muut kielet",CLOSE_BUTTON:"Tyhjenn\xe4",CLEAR_NOTIFICATION:"Sulje ilmoitus",CLEAR_SOURCE:"Poista annettu teksti",CLOSE_DIALOG:"Sulje valintaikkuna",CLEAR_FILES:"Poista ladatut tiedostot",SHOW_EXTENSIONS:"N\xe4yt\xe4 muut latausvalinnat"},TOOLTIPS:{COPY:"Kopioi leikep\xf6yd\xe4lle",SWAP_LANGUAGES:"Vaihda kielt\xe4"},PDF_CONVERSION:{CLOSE:"Sulje valintaikkuna",TITLE_1:"PDF-k\xe4\xe4nn\xf6s",PARAGRAPH_1_1:"Kun PDF-tiedosto ladataan k\xe4\xe4nnett\xe4v\xe4ksi, se muunnetaan k\xe4\xe4nnett\xe4v\xe4\xe4n muotoon. Ohjelma tukee sek\xe4 skannattuja (kuvamuotoisia) ett\xe4 alkuper\xe4isi\xe4 (esim. Word-asiakirjasta pdf-muotoon tallennettuja) PDF-tiedostoja. K\xe4\xe4nnetyt asiakirjat voidaan ladata seuraavissa muodoissa: .docx, .tmx tai .pdf. Asiakirjojen perusmuotoilu s\xe4ilyy. K\xe4\xe4nnettyjen .docx ja .pdf-tiedostojen muotoilu voi hieman erota toisistaan. ",PARAGRAPH_1_2:"Voit nopeuttaa tiedostojen muuntamista jakamalla .pdf-tiedostot osiin ja poistamalla sivut, joissa ei ole k\xe4\xe4nnett\xe4v\xe4\xe4 sis\xe4lt\xf6\xe4 (esim. kuvasivut). Sivujen m\xe4\xe4r\xe4, laatu ja tekstin tiivis asettelu vaikuttavat k\xe4sittelyaikaan.",PARAGRAPH_1_3:"K\xe4\xe4ntimen suorituskyvyn parantamiseksi suosittelemme, ett\xe4 Aura-konek\xe4\xe4nn\xf6spalvelun muuntama pdf ladataan (pudotusvalikon kohta Lataa muunnettu l\xe4hde-pdf, ks. kuva alla) ja se korjataan manuaalisesti ennen kuin se ladataan uudelleen k\xe4\xe4nnett\xe4v\xe4ksi.",IMAGE_ALT_1:"Esimerkki l\xe4hde-PDF:n lataamisesta",TITLE_2:"PDF-tiedoston muuntaminen",PARAGRAPH_2_1:"Asiakirja analysoidaan ja sen sis\xe4lt\xf6 jaetaan teksti-, taulukko- ja kuva/taustakuva-alueisiin. Niit\xe4 analysoidaan tarkemmin sen m\xe4\xe4ritt\xe4miseksi, mik\xe4 osa sis\xe4ll\xf6st\xe4 pit\xe4\xe4 tunnistaa tekstiksi.",PARAGRAPH_2_2:"Kuvista teksti tunnistetaan optisella merkkien tunnistuksella. Kirjaimet ja numerot tunnistetaan ulkomuodon mukaan ja kootaan sitten sanoiksi ja lauseiksi.",PARAGRAPH_2_3:"Tekstin tunnistukseen vaikuttavat monet tekij\xe4t, mm.:",LI_1_1:"Skannatun asiakirjan laatu (ep\xe4selv\xe4 tai v\xe4\xe4ristynyt teksti, kuvakohina, kuvaresoluutio, kontrasti jne.). Parhaan tuloksen saavuttamiseksi PDF-tiedoston on oltava v\xe4hint\xe4\xe4n 300 dpi, suoristettu ja kohinaton.",LI_1_2:"Fontin koko. Tekstin tunnistaminen on vaikeampaa, jos fontin koko on alle 9. ",LI_1_3:"Harvinaiset ja erikoiset fontit. Harvinaisempia fontteja ei v\xe4ltt\xe4m\xe4tt\xe4 tunnisteta.",LI_1_4:"Tiedoston rakenteen ja muotoilun monimutkaisuus.",TITLE_3:"K\xe4\xe4ntimen suorituskyvyn parantaminen",PARAGRAPH_3_1:"Muuntamisprosessi on hyvin monimutkainen, ja siihen voivat vaikuttaa erilaiset muunnettavasta asiakirjasta johtuvat virheet. ",PARAGRAPH_3_2:"Mahdollisia tekstin tunnistusvirheit\xe4:",LI_2_1:"Sanoja on tunnistettu v\xe4\xe4rin.",LI_2_2:"Sanarajoja on tunnistettu v\xe4\xe4rin.",LI_2_3:"Eri riveille, sarakkeisiin tai sivuille ulottuvia lauseita on jaettu eri tekstiobjekteiksi.",LI_2_4:"Sivun ala- ja yl\xe4tunnisteita on sijoitettu v\xe4\xe4rin.",LI_2_5:"Numerointi on virheellist\xe4.",LI_2_6:"Taulukoita tunnistettu teksti\xe4 sis\xe4lt\xe4viksi taustakuviksi ja niiden tekstisis\xe4lt\xf6 on sijoitettu eri tekstiobjekteihin.",LI_2_7:"Kaavioita on tunnistettu kuviksi joissa ei ole teksti\xe4.",LI_2_8:"Erottimia, reunaviivoja tai muita vaakaviivoja on tunnistettu yliviivatuksi tai alleviivatuksi tekstiksi.",LI_2_9:"Sis\xe4llysluettelo tai vastaavia luetteloita on kutistettu tai ne on tunnistettu yliviivatuksi tai alleviivatuksi tekstiksi.",PARAGRAPH_4_1:"<b>Huomaa, ett\xe4 tuotettu asiakirja ei t\xe4ysin s\xe4ilyt\xe4 alkuper\xe4ist\xe4 muotoilua.</b> Kuvat, taulukot tai kaaviot voivat v\xe4\xe4risty\xe4 tai menett\xe4\xe4 yksityiskohtia. Fontit k\xe4\xe4nnetyss\xe4 asiakirjassa eiv\xe4t v\xe4ltt\xe4m\xe4tt\xe4 ole samoja kuin alkuper\xe4isess\xe4 tiedostossa. Fontin koko voidaan tunnistaa virheellisesti. Tietyt Word -muotoilut, kuten otsikot, sis\xe4llysluettelot, yl\xe4- ja alatunnisteet, merkit, lomakkeet jne., muotoillaan niin, ett\xe4 ne n\xe4ytt\xe4v\xe4t alkuper\xe4iselt\xe4, mutta ne eiv\xe4t t\xe4ysin vastaa alkuper\xe4ist\xe4 muotoilua (esimerkiksi otsikot ovat lihavoituja ja suuremmalla fontilla, mutta ne eiv\xe4t ole Otsikko-tyyli\xe4.)."},WEBTRANSLATE:{BACK:"Takaisin konek\xe4\xe4ntimeen",ADDRESS:"Osoite",LOAD_PAGE:"Lataa sivu",RESTORE:"Palauta",CANCEL:"Peruuta",ORIGINAL:"Alkuper\xe4inen",CLOSE:"Sulje"},TERM_COLLECTIONS:{MT_ENTRY_COUNT:"Tuotu: {{count}}",TITLE:"Valitse, muokkaa ja hallinnoi sanastoja",TITLE_EMPTY:"Luo ensimm\xe4inen sanasto",TITLE_MOBILE:"Valitse sanastot",DESCRIPTION_1:"Valitse t\xe4ss\xe4 projektissa k\xe4ytett\xe4v\xe4 termikokoelma. ",DESCRIPTION_2:" Voit lis\xe4t\xe4 uusia kokoelmia ja muokata olemassa olevia kokoelmia",DESCRIPTION_2_MOBILE:" K\xe4yt\xe4 ty\xf6p\xf6yt\xe4versiota uusien kokoelmien luomiseen tai olemassa olevien kokoelmien muokkaamiseen.",DESCRIPTION_EMPTY:"Voit m\xe4\xe4ritt\xe4\xe4 tarkasti, miten {{appName}} k\xe4\xe4nt\xe4\xe4 yrityksellesi tai toimialallesi ominaisia sanoja ja ilmauksia lis\xe4\xe4m\xe4ll\xe4 ne termikokoelmiisi.",DESCRIPTION_EMPTY_MOBILE:"Ty\xf6p\xf6yt\xe4versiossa voit m\xe4\xe4ritt\xe4\xe4, miten haluat Tilde MT:n k\xe4\xe4nt\xe4v\xe4n yrityksellesi tai toimialallesi ominaisia sanoja ja lauseita lis\xe4\xe4m\xe4ll\xe4 ne termikokoelmiisi.",PROMOTION:{TITLE:"Luo, muokkaa ja hallitse sanastoja",DESCRIPTION:"Sanastot ovat Tilde MT:n j\xe4senien k\xe4ytett\xe4viss\xe4.",START_TRIAL:"Aloita ilmainen kokeilu",LEARN_MORE:"Lis\xe4tietoja sanastoista"},GLOSSARY:"Sanasto: ",SELECTED_NONE:"Ei mit\xe4\xe4n",EDIT:"Muokkaa",CREATE:"Uusi sanasto",ENTRY_COUNT:"Merkinn\xe4t: {{count}}",ENTRY_COUNT_WITH_LANGUGAES:"Merkinn\xe4t: {{count}} [{{languages}}]",DEFAULT_COLLECTION_NAME:"Termikokoelmani",SYNC:"Synkronoi",SYNC_ERROR:"Yrit\xe4 uudelleen",ARIA_LABELS:{RADIO_GROUP:"Valitse termikokoelma",OTHER_COLLECTIONS:"Avaa kokoelmavalikko"},CREATE_DIALOG:{CANCEL:"Peruuta",COLLECTION_NAME_LABEL:"Termikokoelman nimi",CREATE:"Luo",DESCRIPTION_1:"Kun olet nimennyt termikokoelmasi, sinut ohjataan Tilde Termiin lis\xe4\xe4m\xe4\xe4n uusia termej\xe4. Kun olet valmis, palaa Tilde MT:hen, niin voit k\xe4ytt\xe4\xe4 termikokoelmia k\xe4\xe4nn\xf6sprojekteissasi.",DESCRIPTION_2:"<i>*Teko\xe4ly ei ole t\xe4ydellinen, ja se voi joskus tehd\xe4 virheit\xe4. Yksil\xf6llisi\xe4 termej\xe4si k\xe4ytet\xe4\xe4n oikein 95 prosentin tarkkuudella.</i>",TITLE:"Luo uusi sanasto",COLLECTION_NAME_ERROR:"Otsikon tulee olla v\xe4hint\xe4\xe4n {{minLength}} ja enint\xe4\xe4n {{maxLength}} merkki\xe4 pitk\xe4"},TOOLTIPS:{MT_ENTRY_COUNT:"Konek\xe4\xe4nn\xf6kseen k\xe4ytettyjen merkint\xf6jen m\xe4\xe4r\xe4",EDIT:"Sinut ohjataan uudelleen termiportaaliin, joka avautuu uudessa v\xe4lilehdess\xe4",ENTRY_COUNT:"Termikokoelmaan lis\xe4ttyjen merkint\xf6jen m\xe4\xe4r\xe4",IMPORTING:"Termikokoelmaa tuodaan. Sit\xe4 ei voida k\xe4ytt\xe4\xe4, ennen kuin tuonti on valmis.",NO_ENTRIES:"Termikokoelmaa ei voida k\xe4ytt\xe4\xe4, koska l\xe4hdekielell\xe4 ei ole termej\xe4",SYNC:"P\xe4ivit\xe4 termikokoelma",SYNCING:"Termikokoelmaa synkronoidaan. Kokoelman uusinta synkronoitua versiota k\xe4ytet\xe4\xe4n",ATTACH_TO_SYSTEM_ERROR:"Virhe termikokoelman tuonnissa"}},DOMAINS:{OPEN_LIST_ARIA_LABEL:"Avaa merkitysalueluettelo",TITLE:"Merkitysalue:",GENERAL:"Yleinen",AUTO:"Automaattinen tunnistaminen",LAW:"Laki",DYNAMIC_LEARNING:"Dynaaminen oppiminen",BUSINESS:"Liiketoiminta"},IMAGE_CONVERSION:{TITLE_1:"Kuvan k\xe4\xe4nn\xf6s",PARAGRAPH_1_1:"Kun kuvatiedosto ladataan k\xe4\xe4nnett\xe4v\xe4ksi, se muunnetaan k\xe4\xe4nnett\xe4v\xe4\xe4n muotoon. K\xe4\xe4nn\xf6kset voidaan ladata .docx- tai .tmx-muodossa, ja ne s\xe4ilytt\xe4v\xe4t perusmuotoilun.",PARAGRAPH_1_2:"<b>Tuetut kuvamuodot:</b>.jpg, .jpeg, .png ja .bmp.",PARAGRAPH_1_3:"Jos haluat tehostaa k\xe4\xe4nn\xf6sprosessia, suosittelemme, ett\xe4 lataat muunnetun asiakirjan alkuper\xe4isell\xe4 kielell\xe4 ja korjaat sen manuaalisesti, ennen kuin lataat sen uudelleen k\xe4\xe4nt\xe4mist\xe4 varten.",IMAGE_ALT_1:"L\xe4hdekuvan latausesimerkki",TITLE_2:"Kuvan muunnos",PARAGRAPH_2_1:"Kuva analysoidaan ja sen sis\xe4lt\xf6 jaetaan teksti-, taulukko- ja kuva-/taustakuva-alueisiin. N\xe4m\xe4 alueet analysoidaan tarkemmin ja m\xe4\xe4ritet\xe4\xe4n, mik\xe4 sis\xe4lt\xf6 tulisi tunnistaa tekstiksi.",PARAGRAPH_2_2:"Tekstitiedot saadaan OCR-tekstintunnistuksen avulla. Jokainen merkki tunnistetaan sen visuaalisten ominaisuuksien perusteella, mink\xe4 j\xe4lkeen teksti kootaan sanoiksi ja lauseiksi.",PARAGRAPH_2_3:"Tunnistukseen vaikuttavat useat tekij\xe4t, mukaan lukien:",LI_1_1:"Skannatun kuvan laatu (ep\xe4tarkka tai v\xe4\xe4ristynyt teksti, kuvan kohina, kuvan tarkkuus, kontrasti jne.). Parhaan tuloksen saavuttamiseksi kuvien tulee olla v\xe4hint\xe4\xe4n 300 dpi, v\xe4\xe4ristym\xe4tt\xf6mi\xe4 ja kohinattomia.",LI_1_2:"Fonttikoko. 9 pistett\xe4 pienempien fonttikokojen tunnistamisessa voi olla ongelmia. ",LI_1_3:"Harvinaiset ja erikoiset fontit. Harvinaisempia fontteja ei ehk\xe4 tunnisteta, tai ne voivat toimia huonommin.",LI_1_4:"Asiakirjan rakenteen ja muotoilun monimutkaisuus.",TITLE_3:"K\xe4\xe4nn\xf6sprosessin tehostaminen",PARAGRAPH_3_1:"Muuntoprosessi on eritt\xe4in monimutkainen, ja erilaiset, l\xe4hdetiedostosta johtuvat virheet voivat vaikuttaa siihen. ",PARAGRAPH_3_2:"Tarkistettavia asioita:",LI_2_1:"V\xe4\xe4rin tunnistetut sanat.",LI_2_2:"Virheelliset sanojen rajat.",LI_2_3:"Usean sarakkeen, rivin tai sivun pituiset lauseet jaettu erilaisiksi tekstiobjekteiksi.",LI_2_4:"V\xe4\xe4rin sijoitetut ala- ja yl\xe4tunnisteet.",LI_2_5:"Virheellinen numerointi.",LI_2_6:"Taulukot tunnistettu taustakuviksi ja tekstisis\xe4lt\xf6 sijoitettu eri tekstiobjekteihin.",LI_2_7:"Jotkin kaaviot tunnistettu kuviksi ilman tekstisis\xe4lt\xf6\xe4.",LI_2_8:"Erottimet, reunat tai muut vaakaviivat tunnistettu yli- tai alleviivatuksi tekstiksi.",PARAGRAPH_4_1:"<b>Huomaa, ett\xe4 kaikki alkuper\xe4isen muotoilun yksityiskohdat eiv\xe4t s\xe4ily lopullisessa asiakirjassa.</b> Jotkin kuvat, taulukot tai kaaviot voivat olla v\xe4\xe4ristyneit\xe4 ja yksinkertaistettuja. K\xe4\xe4nnetyn asiakirjan fontit eiv\xe4t ole samoja kuin alkuper\xe4isess\xe4 tiedostossa, mutta ne voivat olla samankaltaisia. Fonttikoko voi olla virheellinen.",CLOSE:"Sulje valintaikkuna"},GRAMMAR_CHECK_MENU:{TITLE:"Harkitse vaihtamista muotoon:"},AUDIO:{CANCEL:"Peruuta",DESCRIBE_STATE_RECORDING:"Ala puhua \xe4\xe4nitallennetta...",DESCRIBE_STATE_PROCESSING:"K\xe4sitell\xe4\xe4n...",MIC_NOT_FOUND:"Mikrofonia ei l\xf6ydy",STOP:"Lopeta tallennus",START:"K\xe4\xe4nn\xe4 puhe",PUNCTUATION_MESSAGE_TITLE:"Lis\xe4\xe4 v\xe4limerkit",PUNCTUATION_MESSAGE:"Lis\xe4\xe4 tunnistettuun tekstiin v\xe4limerkit. Pitk\xe4 teksti ilman v\xe4limerkkej\xe4 voi heikent\xe4\xe4 k\xe4\xe4nn\xf6slaatua tai est\xe4\xe4 k\xe4\xe4nt\xe4misen"},EXTENSION_POPUP:{OPEN:"katso kaikki tuetut muodot",TITLE:"Tuetut tiedostomuodot",DESCRIPTION:"Tiedoston k\xe4\xe4nt\xe4minen oikein edellytt\xe4\xe4 UTF-8- tai UTF-16-koodausta",OFFICE:"Office",SCANNED:"Skannatut tiedostot",INTERCHANGE:"Vaihtomuodot",WEB:"Verkkosivusto",OTHER:"Muu"},FILE_UPLOAD:{UPLOAD:"Valitse",DRAG_AND_DROP:"tai ved\xe4 ja pudota ",FILE:"tiedosto",FILES:"tiedostot",LIMITS:" ({{visibleExtensions}}. Enint\xe4\xe4n {{maxSizeMB}}Mt)"},TEXT_TO_SPEECH:{PLAY:"Kuuntele"}},lv:{APP_NAME:"Tilde\xa0MT",TLD_TRANSLATE:{DOWNLOAD_TRANSLATED:"Lejupiel\u0101d\u0113t",FILE_DOWNLOAD_SOURCE_IMAGE:"Lejupiel\u0101d\u0113t p\u0101rveidotu avota att\u0113lu",FILE_DOWNLOAD_SOURCE_IMAGE_HELP:"Att\u0113la p\u0101rveido\u0161ana var rad\u012bt format\u0113juma k\u013c\u016bdas vai teksta krop\u013cojumus. L\u016bdzu, p\u0101rbaudiet p\u0101rveidoto failu un labojiet k\u013c\u016bdas, pirms v\u0113lreiz aug\u0161upiel\u0101d\u0113jat failu tulko\u0161anai",FILE_TANSLATION_STATUSS_UPLOADING:"Notiek aug\u0161upiel\u0101de...",FILE_TANSLATION_STATUSS_UPLOADED:"Aug\u0161upiel\u0101d\u0113ts",FILE_TANSLATION_STATUSS_COMPLETED:"",FILE_TANSLATION_STATUSS_ERROR:"",IMAGE_DISCLAIMER_LINK:"Lasiet par att\u0113la p\u0101rveido\u0161anu.",DOC_WORD_CNT_LIMIT_MSG_TITLE:"Tulko\u0161anas ierobe\u017eojums",DOC_WORD_CNT_LIMIT_MSG:'Tiks tulkoti tikai pirmie {{wordCount}} v\u0101rdi. Lai tulkotu pilnus failus, nepiecie\u0161ams Tilde MT abonements. <a href="{{registerLink}}?{{queryString}}">S\u0101ciet ar bezmaksas izm\u0113\u0123in\u0101jumu</a>',ERROR_NO_SYSTEMS_LOADED_TITLE:"Netika iel\u0101d\u0113ta neviena tulko\u0161anas sist\u0113ma",ERROR_NO_SYSTEMS_LOADED:"Neizdev\u0101s iel\u0101d\u0113t ma\u0161\u012bntulko\u0161anas sist\u0113mas.",ERROR_NO_SYSTEMS_LOADED_SUPPORT:' L\u016bdzu, atk\u0101rtoti iel\u0101d\u0113jiet lapu vai sazinieties ar <a href="mailto:{{email}}"><strong> atbalsta dienestu</strong></a>.',PDF_PAGE_LIMIT_MSG_TITLE:"Tulko\u0161anas ierobe\u017eojums",PDF_PAGE_LIMIT_MSG:'Tiks tulkota tikai pirm\u0101 lappuse. Lai tulkotu pilnus PDF failus, nepiecie\u0161ams Tilde MT abonements. <a href="{{registerLink}}?{{queryString}}">S\u0101ciet ar bezmaksas izm\u0113\u0123in\u0101jumu</a>',CLEAR_SOURCE_TOOLTIP:"Not\u012br\u012bt tekstu",PREPARING_TRANSLATION:"Tiek s\u0101kta tulko\u0161ana",SOURCE_TOOLTIP_ONLY_TEXT:"Ievadiet tulkojamo tekstu.",SOURCE_TOOLTIP_SENSITIVE_INFO:"Neizmantojiet programmu {{appName}}, lai tulkotu konfidenci\u0101lu vai slepenu inform\u0101ciju vai tekstus, kuros ir \u012bpa\u0161u kategoriju personas dati, piem\u0113ram, vesel\u012bbas dati",REGISTERED_FORMATS_LOGGED_IN:"Re\u0123istr\u0113tajiem lietot\u0101jiem ir piek\u013cuve \u0161\u0101du form\u0101tu dokumentu tulko\u0161anai: {{formats}}.",REGISTERED_FORMATS:'Re\u0123istr\u0113tajiem lietot\u0101jiem ir piek\u013cuve \u0161\u0101du form\u0101tu dokumentu tulko\u0161anai: {{formats}}. Pieprasiet piek\u013cuvi <a class="accent-color" target="blank" href="{{registerLink}}">\u0161eit</a>.',SOURCE_FORMATS:"Dro\u0161ais publiskais tulko\u0161anas pakalpojums atbalsta \u0161\u0101du form\u0101tu dokumentus: {{formats}};",BEST_NMT:"Godalga par lab\u0101ko ma\u0161\u012bntulko\u0161anas tehnolo\u0123iju WMT konkurs\u0101 tr\u012bs gadus p\u0113c k\u0101rtas.",BEST_NMT_MORE:"Papildinform\u0101cija",CANCEL_TRANSLATION:"Atcelt",DICTIONARY_EXAMPLES:"piem\u0113ri",FILE_TARGET_PREVIEW_MESSAGE:"\u0160is ir tulkot\u0101 dokumenta priek\u0161skat\u012bjuma paraugs. L\u016bdzu, lejupiel\u0101d\u0113jiet, lai sa\u0146emtu pilnu tulkojumu.",FROM:"No:",SOURCE_WORD_LIMIT:" tulkojuma apjoma ierobe\u017eojums ir {{limit}} v\u0101rdi.",SOURCE_TOOLTIP:"Ievadiet tulkojamo tekstu vai s\u0101kumlapas adresi.",TARGET_DESCRIPTION:"Izmantojot ma\u0161\u012bntulko\u0161anu, var saprast avota teksta noz\u012bmi, bet t\u0101 nevar aizst\u0101t cilv\u0113ka veiktu tulkojumu.",TRANSLATION_PREPARE:"Tiek s\u0101kta dokumenta tulko\u0161ana...",TO:"Uz:",SUGGEST_BUTTON:"Ierosin\u0101t tulkojumu",SUGGEST_ORIGINAL_LABEL:"S\u0101kotn\u0113jais teikums",SUGGEST_SUBMIT_BUTTON:"Ieteikt",SUGGEST_TRANSLATION_LABEL:"Tulkojums",SUGGEST_USAGE_INFO:"J\u016bsu tulkojuma ieteikums tiks izmantots tulko\u0161anas kvalit\u0101tes uzlabo\u0161anai.",TEXT_COPIED:"Tulkojums nokop\u0113ts",TOOLTIP_ACTION:"Tulkot",UPLOAD_FILE_BUTTON:"Aug\u0161upiel\u0101d\u0113jiet vai velciet failu",DOMAINS_ARIA_LABEL:"Dom\u0113ni",FILE_DOWNLOAD_SOURCE:"Lejupiel\u0101d\u0113t p\u0101rveidotu avota PDF failu",FILE_TANSLATION_STATUSS_INITIALIZING:"Notiek tulko\u0161anas procesa inicializ\u0113\u0161ana...",FILE_TANSLATION_STATUSS_EXTRACTING:"Notiek tulkojam\u0101 satura izvilk\u0161ana...",FILE_TANSLATION_STATUSS_WAITING:"Notiek tulkot\u0101ja aktiviz\u0113\u0161ana...",FILE_TANSLATION_STATUSS_TRANSLATING:"Notiek tulko\u0161ana...",FILE_TANSLATION_STATUSS_SAVING:"Notiek tulkojuma saglab\u0101\u0161ana...",FILE_TANSLATION_STATUSS_QUEUING:"Tiek s\u0101kta tulko\u0161ana...",PDF_DISCLAIMER_LINK:"Lasiet par PDF failu p\u0101rveido\u0161anu.",UPLOAD_FILES_BUTTON:"Aug\u0161upiel\u0101d\u0113jiet vai ievelciet failus",VENDORS_ARIA_LABEL:"Nodro\u0161in\u0101t\u0101ji",WORD_TYPE_ADJECTIVE:"\u012bpa\u0161\u012bbas v\u0101rds",WORD_TYPE_NOUN:"lietv\u0101rds",WORD_TYPE_VERB:"darb\u012bbas v\u0101rds",WORD_TYPE_ADVERB:"apst\u0101k\u013ca v\u0101rds",WORD_TYPE_CONJUNCTION:"saiklis",WORD_TYPE_INTERJECTION:"izsauksmes v\u0101rds",WORD_TYPE_PRONOUN:"vietniekv\u0101rds"},RATING:{WILL_BE_EVALUATED:"\nTulkotais teksts tiks nos\u016bt\u012bts izv\u0113rt\u0113\u0161anai",VERY_BAD:"\u013coti slikts",BAD:"slikts",AVERAGE:"vid\u0113js",GOOD:"labs",VERY_GOOD:"\u013coti labs",RATINGS_RECEIVED:"Nov\u0113rt\u0113jums ir sa\u0146emts. Tulkojums tiks izv\u0113rt\u0113ts.",RATING:"V\u0113rt\u0113jums",RECEIVED:"sa\u0146emts"},LANGUAGES:{AR:"Ar\u0101bu",LV:"Latvie\u0161u",ET:"Igau\u0146u",DA:"D\u0101\u0146u",FI:"Somu",IS:"Islandie\u0161u",LT:"Lietuvie\u0161u",NB:"Norv\u0113\u0123u",SV:"Zviedru",BE:"Baltkrievu",BG:"Bulg\u0101ru",CS:"\u010cehu",HU:"Ung\u0101ru",RU:"Krievu",MO:"Mold\u0101vu",PL:"Po\u013cu",SK:"Slov\u0101ku",UK:"Ukrai\u0146u",NL:"Holandie\u0161u",EN:"Ang\u013cu",FR:"Fran\u010du",DE:"V\u0101cu",GA:"\u012aru",EL:"Grie\u0137u",IT:"It\u0101lie\u0161u",MT:"Maltie\u0161u",PT:"Portug\u0101\u013cu",SR:"Serbu",SL:"Slov\u0113\u0146u",ES:"Sp\u0101\u0146u",ZH:"\u0136\u012bnie\u0161u",JA:"Jap\u0101\u0146u",KO:"Korejie\u0161u",TR:"Turku",HR:"Horv\u0101tu",RO:"Rum\u0101\u0146u"},MULTIPLE_FILES:{APPEND:"Pievienot failus",STATUSS_UPLOADING:"Notiek aug\u0161upiel\u0101de...",STATUSS_UPLOADED:"Aug\u0161upiel\u0101d\u0113ts",PDF_DISCLAIMER:"PDF faila p\u0101rveido\u0161ana var rad\u012bt format\u0113juma k\u013c\u016bdas vai teksta krop\u013cojumus. P\u0113c tulko\u0161anas lejupiel\u0101\u017eu opcij\u0101s atlasiet opciju \u201cLejupiel\u0101d\u0113t p\u0101rveidotu avota PDF failu\u201d, p\u0101rbaudiet lejupiel\u0101d\u0113to failu un labojiet k\u013c\u016bdas, pirms v\u0113lreiz aug\u0161upiel\u0101d\u0113jat failu tulko\u0161anai.",IMAGE_DISCLAIMER:"Att\u0113la p\u0101rv\u0113r\u0161ana var rad\u012bt format\u0113juma k\u013c\u016bdas vai teksta krop\u013cojumus.",IMAGE_DISCLAIMER_LINK:"Lasiet par att\u0113la p\u0101rveido\u0161anu.",SCREEN_READER_ANNOUNCEMENT:"Iztulkoti {{translated}}\xa0faili no {{total}}.",REMOVE_FILE_TOOLTIP:"Not\u012br\u012bt failu",CLEAR_ALL:"Atcelt",DOWNLOAD:"Lejupiel\u0101d\u0113t",STATUSS_INITIALIZING:"Notiek inicializ\u0113\u0161ana",STATUSS_EXTRACTING:"Notiek izvilk\u0161ana",STATUSS_WAITING:"Notiek tulkot\u0101ja aktiviz\u0113\u0161ana",STATUSS_TRANSLATING:"Notiek tulko\u0161ana",STATUSS_SAVING:"Notiek saglab\u0101\u0161ana",STATUSS_COMPLETED:"Pabeigts",STATUSS_ERROR:"K\u013c\u016bda",STATUSS_QUEUING:"Atrodas rind\u0101",STATUSS_NOT_STARTED:"Aug\u0161upiel\u0101d\u0113ts",TITLE_FILE_NAME:"Fails",TITLE_STATUSS:"Statuss",TRANSLATION_STATUSS_LABEL:"Statuss",PDF_DISCLAIMER_LINK:"Lasiet par PDF failu p\u0101rveido\u0161anu."},ERRORS:{ERROR_DEFAULT_TITLE:"Neparedz\u0113ta k\u013c\u016bda",ERROR_DEFAULT:"Rad\u0101s neparedz\u0113ta k\u013c\u016bda. L\u016bdzu, m\u0113\u0123iniet v\u0113lreiz.",ERROR_DEFAULT_SUPPORT:' Ja probl\u0113ma joproj\u0101m past\u0101v, sazinieties ar <a href="mailto:{{email}}"><strong>atbalsta dienestu</strong></a>.',MAX_CHAR_LENGTH_TITLE:"Tulko\u0161anas ierobe\u017eojums",MAX_CHAR_LENGTH:'Tiks tulkotas tikai {{maxCharLength}}/{{totalSymbols}} rakstz\u012bmes. Neierobe\u017eotai teksta tulko\u0161anai ir nepiecie\u0161ams Tilde\xa0MT abonements. <a href="{{registerLink}}?{{queryString}}">S\u0101ciet ar bezmaksas izm\u0113\u0123in\u0101jumu</a>',MAX_NUMBER_OF_FILES_TITLE:"Aug\u0161upiel\u0101des ierobe\u017eojums",MAX_NUMBER_OF_FILES:"Vienlaikus var tulkot tikai {{limit}} failus.",FILE_ALREADY_ADDED_TITLE:"Fails jau ir pievienots",FILE_ALREADY_ADDED:"Fails \u201c{{fileName}}\u201d jau ir pievienots.",UANUTHORIZED_401_TITLE:"Nav at\u013caujas",E_CANNOT_READ_FILE_TITLE:"Nevar nolas\u012bt failu",E_CANNOT_READ_FILE:"Fails \u201c{{fileName}}\u201d ir boj\u0101ts, un to nevar\u0113ja tulkot. P\u0101rbaudiet failu un m\u0113\u0123iniet v\u0113lreiz.",E_FAILED_IN_TRANSLATION_TITLE:"Tulko\u0161ana neizdev\u0101s",E_FAILED_IN_TRANSLATION:"Tulkojot rad\u0101s k\u013c\u016bda. L\u016bdzu, m\u0113\u0123iniet v\u0113lreiz.",E_FAILED_IN_TRANSLATION_SUPPORT:' Ja probl\u0113ma joproj\u0101m past\u0101v, sazinieties ar <a href="mailto:{{email}}"><strong>atbalsta dienestu</strong></a>.',E_FORMAT_TRACK_CHANGES_TITLE:"Tulko\u0161ana neizdev\u0101s, jo ir iesl\u0113gta izmai\u0146u re\u0123istr\u0113\u0161anas opcija",E_FORMAT_TRACK_CHANGES:"Pirms Office failu tulko\u0161anas vispirms ir j\u0101akcept\u0113 izmai\u0146as vai j\u0101izsl\u0113dz izmai\u0146u re\u0123istr\u0113\u0161anas opcija.",E_UNKNOWN_ERROR_TITLE:"Nezin\u0101ma k\u013c\u016bda",E_UNAUTHORIZED_TITLE:"Nav at\u013caujas",COLLECTION_CREATE_TITLE:"Neizdev\u0101s izveidot glos\u0101riju",COLLECTION_CREATE:"Neizdev\u0101s izveidot jaunu glos\u0101riju. L\u016bdzu, m\u0113\u0123iniet v\u0113lreiz.",COLLECTION_CREATE_SUPPORT:' Ja probl\u0113ma joproj\u0101m past\u0101v, sazinieties ar <a href="mailto:{{email}}"><strong>atbalsta dienestu</strong></a>.',COLLECTION_IMPORT_TITLE:"Neizdev\u0101s pievienot glos\u0101riju",COLLECTION_IMPORT:"Ma\u0161\u012bntulko\u0161anas sist\u0113mai neizdev\u0101s pievienot terminu kolekciju ar ID: {{termId}}. L\u016bdzu, m\u0113\u0123iniet v\u0113lreiz.",E_12_TITLE:"Teksta lieluma ierobe\u017eojums",E_12:"Sasniegts teksta lieluma ierobe\u017eojums. S\u016btiet maz\u0101k teksta piepras\u012bjum\u0101.",E_12_SUPPORT:' Lai palielin\u0101tu teksta lieluma ierobe\u017eojumu, sazinieties ar <a href="mailto:{{email}}"><strong>atbalsta dienestu</strong></a>.',E_21_TITLE:"Tiek start\u0113ta ma\u0161\u012bntulko\u0161anas sist\u0113ma",E_21:"P\u0113c br\u012b\u017ea var\u0113sit s\u0101kt tulko\u0161anu.",E_22_TITLE:"Ma\u0161\u012bntulko\u0161anas sist\u0113ma nav atrasta",E_22:"Ma\u0161\u012bntulko\u0161anas sist\u0113ma nav atrasta.",E_22_SUPPORT:' L\u016bdzu, sazinieties ar <a href="mailto:{{email}}"><strong>atbalsta dienestu</strong></a>.',E_23:"Ma\u0161\u012bntulko\u0161anas sist\u0113ma nav start\u0113ta.",E_23_SUPPORT:' Sazinieties ar <a href="mailto:{{email}}"><strong>atbalsta dienestu</strong></a>.',E_41:"Nor\u0101d\u012bts nezin\u0101ms terminu korpusa\xa0ID. Terminu korpusam j\u0101b\u016bt saist\u012btam ar ma\u0161\u012bntulko\u0161anas programmu",E_504:"Iest\u0101jies darb\u012bbas taimauts.",UANUTHORIZED_401:"Jums nav at\u013caujas izmantot ma\u0161\u012bntulko\u0161anu.",UANUTHORIZED_401_SUPPORT:' L\u016bdzu, sazinieties ar <a href="mailto:{{email}}"><strong>atbalsta dienestu</strong></a>.',E_UNKNOWN_FILE_TYPE:"Nezin\u0101ms faila tips.",E_UNKNOWN_ERROR:"Rad\u0101s nezin\u0101ma k\u013c\u016bda.",E_UNAUTHORIZED:"Document translation was denied.",E_11:"Ir sasniegts dienai noteiktais tulko\u0161anas limits.",E_11_SUPPORT:' Lai palielin\u0101tu dienai noteikto limitu, l\u016bdzu, sazinieties ar <a href="mailto:{{email}}"><strong>atbalsta dienestu</strong></a>.',FILE_UPLOAD:{FILE_UPLOAD_EMPTY_TITLE:"Fails ir tuk\u0161s",FILE_UPLOAD_EMPTY:"Aug\u0161upiel\u0101d\u0113tais fails \u201c{{fileName}}\u201d ir tuk\u0161s. Atlasiet failu ar saturu.",FILE_UPLOAD_MAX_SIZE_TITLE:"Faila lieluma ierobe\u017eojums",FILE_UPLOAD_MAX_SIZE:"Aug\u0161upiel\u0101d\u0113tais fails {{fileName}} ir p\u0101r\u0101k liels. Maksim\u0101lais lielums {{maxSizeMB}}MB",FILE_UPLOAD_UNSUPPORTED_FORMAT_TITLE:"Neatbalst\u012bts faila form\u0101ts",FILE_UPLOAD_UNSUPPORTED_FORMAT:"Aug\u0161upiel\u0101d\u0113t\u0101 faila \u201c{{fileName}}\u201d form\u0101ts netiek atbalst\u012bts. Tiek atbalst\u012bta \u0161\u0101du form\u0101tu dokumentu tulko\u0161ana: {{formats}}.",FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER_TITLE:"Neatbalst\u012bts faila form\u0101ts",FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER:'Lai tulkotu failu {{fileName}}, ir nepiecie\u0161ams Tilde MT abonements. <a href="{{registerLink}}?{{queryString}}">S\u0101ciet ar bezmaksas izm\u0113\u0123in\u0101jumu</a>',E_404_TITLE:"Fails nav atrasts",E_404:"Piepras\u012btais fails nepast\u0101v"},FILE_TRANSLATION_SUBSTATUS:{BAD_FILE_ERROR_TITLE:"Neizdev\u0101s iztulkot failu",BAD_FILE_ERROR:"Fails ir boj\u0101ts, un to nevar\u0113ja tulkot. P\u0101rbaudiet failu un m\u0113\u0123iniet v\u0113lreiz.",NO_TEXT_EXTRACTED_ERROR_TITLE:"Neizdev\u0101s izvilkt tekstu",NO_TEXT_EXTRACTED_ERROR:"Iesp\u0113jams, fails ir tuk\u0161s. P\u0101rbaudiet failu un m\u0113\u0123iniet v\u0113lreiz.",TRACK_CHANGES_ENABLED_ERROR_TITLE:"Tulko\u0161ana neizdev\u0101s, jo ir iesl\u0113gta izmai\u0146u re\u0123istr\u0113\u0161anas opcija",TRACK_CHANGES_ENABLED_ERROR:"Pirms Office failu tulko\u0161anas vispirms ir j\u0101akcept\u0113 izmai\u0146as vai j\u0101izsl\u0113dz izmai\u0146u re\u0123istr\u0113\u0161anas opcija.",UNKNOWN_FILE_TYPE_ERROR_TITLE:"Nezin\u0101ms faila tips",UNKNOWN_FILE_TYPE_ERROR:"Faila tips nav atpaz\u012bts. Iesp\u0113jams, faila papla\u0161in\u0101jums nav pareizs vai fails ir boj\u0101ts."},AUDIO:{NO_SPEECH_TITLE:"Nav runas",NO_SPEECH:"Ieraksts tika aptur\u0113ts. M\u0113s j\u016bs nedzird\u0113j\u0101m.",MAX_TIME_EXCEEDED_TITLE:"Runas ierobe\u017eojums",MAX_TIME_EXCEEDED:"Ieraksts tika aptur\u0113ts. Runas ievade ir ierobe\u017eota l\u012bdz {{timeString}}.",MIC_NOT_ALLOWED_TITLE:"Liegta piek\u013cuve mikrofonam",MIC_NOT_ALLOWED:"J\u016bs liedz\u0101t piek\u013cuvi mikrofonam. Mainiet at\u013caujas p\u0101rl\u016bkprogrammas iestat\u012bjumos.",MAX_SIZE_EXCEEDED_TITLE:"Runas ierobe\u017eojums",MAX_SIZE_EXCEEDED:"Ieraksts tika aptur\u0113ts un nos\u016bt\u012bts apstr\u0101dei. Runas ievade ir ierobe\u017eota l\u012bdz ({{maxSizeMb}}MB).",CANT_START_RECORDING_TITLE:"Neizdev\u0101s s\u0101kt ierakst\u012b\u0161anu",CANT_START_RECORDING:"Nevar s\u0101kt ierakst\u012b\u0161anu. L\u016bdzu, m\u0113\u0123iniet v\u0113lreiz.",NO_TEXT_RECOGNIZED_Title:"Runa nav atpaz\u012bta",NO_TEXT_RECOGNIZED:"Runu nevar\u0113ja atpaz\u012bt. P\u0101rbaudiet mikrofonu un m\u0113\u0123iniet v\u0113lreiz."}},ARIA_LABELS:{COPY:"Kop\u0113t starpliktuv\u0113",OPEN_IN_NEW:"Atv\u0113rt jaun\u0101 ciln\u0113",SWAP_LANGUAGES:"P\u0101rsl\u0113gt valodas",OTHER_LANGUAGES_TRIGGER:"R\u0101d\u012bt citas valodas",CLOSE_BUTTON:"Not\u012br\u012bt",CLEAR_NOTIFICATION:"Aizv\u0113rt br\u012bdin\u0101jumu",CLEAR_SOURCE:"Not\u012br\u012bt ievad\u012bto tekstu",CLOSE_DIALOG:"Aizv\u0113rt dialoglodzi\u0146u",CLEAR_FILES:"Not\u012br\u012bt aug\u0161upiel\u0101d\u0113tos failus",SHOW_EXTENSIONS:"R\u0101d\u012bt citas lejupiel\u0101des iesp\u0113jas"},TOOLTIPS:{COPY:"Kop\u0113t starpliktuv\u0113",SWAP_LANGUAGES:"P\u0101rsl\u0113gt valodas"},PDF_CONVERSION:{TITLE_1:"PDF failu tulko\u0161ana",PARAGRAPH_1_1:"Kad PDF fails tiek aug\u0161upiel\u0101d\u0113ts tulko\u0161anai, tas tiek p\u0101rveidots tulkojam\u0101 form\u0101t\u0101. Tiek atbalst\u012bti gan sken\u0113ti, gan ori\u0123in\u0101li PDF faili. Tulkojumus var lejupiel\u0101d\u0113t .docx, .tmx vai .pdf form\u0101t\u0101, un tajos tiek saglab\u0101ts pamata format\u0113jums. Tulkotajos .docx un .pdf failos format\u0113jums var nedaudz at\u0161\u0137irties. ",PARAGRAPH_1_2:"P\u0101rveido\u0161anai ir nepiecie\u0161ams laiks, t\u0101p\u0113c, lai \u0161o procesu pa\u0101trin\u0101tu, sadaliet .pdf failus un izdz\u0113siet lapas, kur\u0101s nav tulkojamas inform\u0101cijas. Apstr\u0101des laiku ietekm\u0113 t\u0101di faktori k\u0101 lapu skaits, kvalit\u0101te un teksta bl\u012bvums.",PARAGRAPH_1_3:"Lai uzlabotu tulko\u0161anas veiktsp\u0113ju, m\u0113s iesak\u0101m lejupiel\u0101d\u0113t p\u0101rveidoto dokumentu ori\u0123in\u0101lvalod\u0101 un manu\u0101li veikt labojumus, bet p\u0113c tam v\u0113lreiz aug\u0161upiel\u0101d\u0113t failu tulko\u0161anai.",IMAGE_ALT_1:"Avota PDF faila lejupiel\u0101des piem\u0113rs",TITLE_2:"PDF failu p\u0101rveido\u0161ana",PARAGRAPH_2_1:"Dokuments tiek analiz\u0113ts, un t\u0101 saturs tiek sadal\u012bts teksta, tabulu un att\u0113lu/fona att\u0113lu zon\u0101s. T\u0101s tiek papildus analiz\u0113tas, lai noteiktu, kur\u0161 saturs ir j\u0101atpaz\u012bst k\u0101 teksts.",PARAGRAPH_2_2:"Tekstu\u0101li dati tiek ieg\u016bti, izmantojot OCR jeb optisku rakstz\u012bmju atpaz\u012b\u0161anu. Katra rakstz\u012bme tiek atpaz\u012bta atkar\u012bb\u0101 no t\u0101s vizu\u0101laj\u0101m paz\u012bm\u0113m, un p\u0113c tam no rakstz\u012bm\u0113m tiek izveidoti v\u0101rdi un teikumi.",PARAGRAPH_2_3:"Atpaz\u012b\u0161anu ietekm\u0113 da\u017e\u0101di faktori, tostarp \u0161ie:",LI_1_1:"Sken\u0113t\u0101 dokumenta kvalit\u0101te (izpl\u016bdis vai deform\u0113ts teksts, att\u0113la troksnis, att\u0113la iz\u0161\u0137irtsp\u0113ja, kontrasts u.\xa0c.). Optim\u0101lam rezult\u0101tam PDF failu iz\u0161\u0137irtsp\u0113jai j\u0101b\u016bt vismaz 300\xa0dpi, tiem j\u0101b\u016bt nesa\u0161\u0137iebtiem un bez trok\u0161\u0146iem.",LI_1_2:"Fonta lielums. Rakstz\u012bm\u0113m, kuru lielums ir maz\u0101ks par 9\xa0punktiem, atpaz\u012b\u0161ana var b\u016bt apgr\u016btin\u0101ta. ",LI_1_3:"Reti un ori\u0123in\u0101li fonti. Ret\u0101k izmantoti fonti var b\u016bt neatpaz\u012bstami vai ar\u012b to atpaz\u012b\u0161ana var b\u016bt apgr\u016btin\u0101ta.",LI_1_4:"Dokumenta strukt\u016bras un format\u0113juma sare\u017e\u0123\u012bt\u012bba.",TITLE_3:"Tulko\u0161anas veiktsp\u0113jas uzlabo\u0161ana",PARAGRAPH_3_1:"P\u0101rveido\u0161anas process ir \u013coti sare\u017e\u0123\u012bts, un to var ietekm\u0113t da\u017e\u0101das ievad\u012bt\u0101 dokumenta k\u013c\u016bdas. ",PARAGRAPH_3_2:"Iesp\u0113jam\u0101s probl\u0113mas:",LI_2_1:"Nepareizi atpaz\u012bti v\u0101rdi.",LI_2_2:"Nepareizas v\u0101rdu robe\u017eas.",LI_2_3:"Teikumi, kas atrodas vair\u0101k\u0101s kolonn\u0101s, rind\u0101s vai lap\u0101s, tiek sadal\u012bti da\u017e\u0101dos teksta objektos.",LI_2_4:"Nepareizi novietotas k\u0101jenes un galvenes.",LI_2_5:"Nepareiza numer\u0101cija.",LI_2_6:"Tabulas, kas atpaz\u012btas k\u0101 fona att\u0113li ar tekstu\u0101lu saturu, tiek sadal\u012btas da\u017e\u0101dos teksta objektos.",LI_2_7:"Da\u017eas diagrammas tiek atpaz\u012btas k\u0101 att\u0113li bez tekstu\u0101la satura.",LI_2_8:"Atdal\u012bt\u0101ji, apmales vai citas horizont\u0101las l\u012bnijas tiek atpaz\u012btas k\u0101 p\u0101rsv\u012btrots vai pasv\u012btrots teksts.",LI_2_9:"Satura r\u0101d\u012bt\u0101ju vai l\u012bdz\u012bgu sarakstu format\u0113jums tiek sak\u013cauts vai atpaz\u012bts k\u0101 p\u0101rsv\u012btrots vai pasv\u012btrots teksts.",PARAGRAPH_4_1:"<b>\u0145emiet v\u0113r\u0101, ka ieg\u016btaj\u0101 dokument\u0101 netiks saglab\u0101tas visas ori\u0123in\u0101l\u0101 format\u0113juma deta\u013cas.</b> Da\u017ei att\u0113li, tabulas vai diagrammas var tikt izkrop\u013cotas vai vienk\u0101r\u0161otas. Tulkotaj\u0101 dokument\u0101 fonti neb\u016bs t\u0101di pa\u0161i k\u0101 s\u0101kotn\u0113j\u0101 dokument\u0101, bet tie var b\u016bt l\u012bdz\u012bgi. Var tikt atpaz\u012bts nepareizs fonta lielums. Noteiktiem programmas Word format\u0113juma elementiem, piem\u0113ram, virsrakstiem, satura r\u0101d\u012bt\u0101jiem, galven\u0113m un k\u0101jen\u0113m, eti\u0137et\u0113m, veidlap\u0101m u.\xa0c., izskats tiek veidots l\u012bdz\u012bgi ori\u0123in\u0101lam, bet tie nav tie\u0161i t\u0101di k\u0101 ori\u0123in\u0101l\u0101 (piem\u0113ram, virsrakstiem tiek lietots treknraksts un liel\u0101ks fonts, bet tiem netiek lietots virsraksta stils).",CLOSE:"Aizv\u0113rt dialoglodzi\u0146u"},IMAGE_CONVERSION:{TITLE_1:"Att\u0113lu tulko\u0161ana",PARAGRAPH_1_1:"Kad att\u0113la fails tiek aug\u0161upiel\u0101d\u0113ts tulko\u0161anai, tas tiek p\u0101rveidots tulkojam\u0101 form\u0101t\u0101. Tulkojumus var lejupiel\u0101d\u0113t .docx vai .tmx form\u0101t\u0101, un tajos tiek saglab\u0101ts pamata format\u0113jums.",PARAGRAPH_1_2:"<b>Atbalst\u012btie att\u0113lu form\u0101ti:</b> .jpg, .jpeg, .png un .bmp.",PARAGRAPH_1_3:"Lai uzlabotu tulko\u0161anas sniegumu, m\u0113s iesak\u0101m lejupiel\u0101d\u0113t p\u0101veidoto dokumentu ori\u0123in\u0101lvalod\u0101 un manu\u0101li veikt labojumus, pirms v\u0113lreiz aug\u0161upiel\u0101d\u0113jat failu tulko\u0161anai.",IMAGE_ALT_1:"Avota att\u0113la lejupiel\u0101des piem\u0113rs",TITLE_2:"Att\u0113la p\u0101rv\u0113r\u0161ana",PARAGRAPH_2_1:"Att\u0113ls tiek analiz\u0113ts, un t\u0101 saturs tiek sadal\u012bts teksta, tabulu un att\u0113lu/fona att\u0113lu zon\u0101s. T\u0101s tiek papildus analiz\u0113tas, lai noteiktu, kur\u0161 saturs ir j\u0101atpaz\u012bst k\u0101 teksts.",PARAGRAPH_2_2:"Tekstu\u0101li dati tiek ieg\u016bti, izmantojot OCR jeb optisku rakstz\u012bmju atpaz\u012b\u0161anu. Katra rakstz\u012bme tiek atpaz\u012bta atkar\u012bb\u0101 no t\u0101s vizu\u0101laj\u0101m paz\u012bm\u0113m, un p\u0113c tam no rakstz\u012bm\u0113m tiek izveidoti v\u0101rdi un teikumi.",PARAGRAPH_2_3:"Atpaz\u012b\u0161anu ietekm\u0113 da\u017e\u0101di faktori, tostarp t\u0101l\u0101k nor\u0101d\u012btie.",LI_1_1:"Sken\u0113t\u0101 att\u0113la kvalit\u0101te (izpl\u016bdis vai deform\u0113ts teksts, att\u0113la troksnis, att\u0113la iz\u0161\u0137irtsp\u0113ja, kontrasts u.\xa0c.). Optim\u0101lam rezult\u0101tam att\u0113lu iz\u0161\u0137irtsp\u0113jai j\u0101b\u016bt vismaz 300\xa0dpi, tiem j\u0101b\u016bt nesa\u0161\u0137iebtiem un bez trok\u0161\u0146iem.",LI_1_2:"Fonta lielums. Rakstz\u012bm\u0113m, kuru lielums ir maz\u0101ks par 9\xa0punktiem, atpaz\u012b\u0161ana var b\u016bt apgr\u016btin\u0101ta. ",LI_1_3:"Reti un ori\u0123in\u0101li fonti. Ret\u0101k izmantoti fonti var neb\u016bt atpaz\u012bstami, vai ar\u012b to atpaz\u012b\u0161ana var b\u016bt apgr\u016btin\u0101ta.",LI_1_4:"Dokumenta strukt\u016bras un format\u0113juma sare\u017e\u0123\u012bt\u012bba.",TITLE_3:"Tulko\u0161anas snieguma uzlabo\u0161ana",PARAGRAPH_3_1:"P\u0101rveido\u0161anas process ir \u013coti sare\u017e\u0123\u012bts, un to var ietekm\u0113t da\u017e\u0101das ievad\u012bt\u0101 dokumenta k\u013c\u016bdas. ",PARAGRAPH_3_2:"Iesp\u0113jam\u0101s probl\u0113mas:",LI_2_1:"Nepareizi atpaz\u012bti v\u0101rdi.",LI_2_2:"Nepareizas v\u0101rdu robe\u017eas.",LI_2_3:"Teikumi, kas atrodas vair\u0101k\u0101s kolonn\u0101s, rind\u0101s vai lap\u0101s, tiek sadal\u012bti da\u017e\u0101dos teksta objektos.",LI_2_4:"Nepareizi novietotas k\u0101jenes un galvenes.",LI_2_5:"Nepareiza numer\u0101cija.",LI_2_6:"Tabulas, kas atpaz\u012btas k\u0101 fona att\u0113li ar tekstu\u0101lu saturu, tiek sadal\u012btas da\u017e\u0101dos teksta objektos.",LI_2_7:"Da\u017eas diagrammas tiek atpaz\u012btas k\u0101 att\u0113li bez tekstu\u0101la satura.",LI_2_8:"Atdal\u012bt\u0101ji, apmales vai citas horizont\u0101las l\u012bnijas tiek atpaz\u012btas k\u0101 p\u0101rsv\u012btrots vai pasv\u012btrots teksts.",PARAGRAPH_4_1:"<b>\u0145emiet v\u0113r\u0101, ka ieg\u016btaj\u0101 dokument\u0101 netiks saglab\u0101tas visas ori\u0123in\u0101l\u0101 format\u0113juma deta\u013cas.</b> Da\u017ei att\u0113li, tabulas vai diagrammas var tikt izkrop\u013cotas vai vienk\u0101r\u0161otas. Tulkotaj\u0101 dokument\u0101 fonti neb\u016bs t\u0101di pa\u0161i k\u0101 s\u0101kotn\u0113j\u0101 dokument\u0101, bet tie var b\u016bt l\u012bdz\u012bgi. Var tikt atpaz\u012bts nepareizs fonta lielums.",CLOSE:"Aizv\u0113rt dialoglodzi\u0146u"},WEBTRANSLATE:{BACK:"Atgriezties sada\u013c\u0101 Tulkot\u0101js",ADDRESS:"Adrese",LOAD_PAGE:"Iel\u0101d\u0113t lapu",RESTORE:"Atjaunot",CANCEL:"Atcelt"},TERM_COLLECTIONS:{MT_ENTRY_COUNT:"Import\u0113ts: {{count}}",TITLE:"Glos\u0101riju atlase, redi\u0123\u0113\u0161ana un p\u0101rvald\u012bba",TITLE_EMPTY:"Sava pirm\u0101 glos\u0101rija izveide",TITLE_MOBILE:"Glos\u0101riju atlase",DESCRIPTION_1:"Atlasiet, kuru terminu kolekciju izmantot \u0161im projektam. ",DESCRIPTION_2:" Varat pievienot jaunas kolekcijas un redi\u0123\u0113t eso\u0161\u0101s",DESCRIPTION_2_MOBILE:" Izmantojiet darbvirsmas versiju, lai izveidotu jaunas kolekcijas vai redi\u0123\u0113tu eso\u0161\u0101s.",DESCRIPTION_EMPTY:"Varat iestat\u012bt, k\u0101 programmai {{appName}} tulkot v\u0101rdus un fr\u0101zes, kas rakstur\u012bgas j\u016bsu uz\u0146\u0113mumam vai nozarei, pievienojot t\u0101s unik\u0101laj\u0101m terminu kolekcij\u0101m.",DESCRIPTION_EMPTY_MOBILE:"Izmantojiet darbvirsmas versiju, lai iestat\u012btu, k\u0101 programmai Tilde MT tulkot v\u0101rdus un fr\u0101zes, kas rakstur\u012bgas j\u016bsu uz\u0146\u0113mumam vai nozarei, pievienojot t\u0101s unik\u0101laj\u0101m terminu kolekcij\u0101m.",PROMOTION:{TITLE:"Glos\u0101riju izveide, redi\u0123\u0113\u0161ana un p\u0101rvald\u012bba",DESCRIPTION:"Tilde MT dal\u012bbniekiem pieejami glos\u0101riji.",START_TRIAL:"S\u0101kt bezmaksas izm\u0113\u0123in\u0101jumu",LEARN_MORE:"Uzziniet vair\u0101k par glos\u0101rijiem"},GLOSSARY:"Glos\u0101rijs: ",SELECTED_NONE:"Neviens",EDIT:"Redi\u0123\u0113t",CREATE:"Jauns glos\u0101rijs",ENTRY_COUNT:"Ieraksti:\xa0{{count}}",ENTRY_COUNT_WITH_LANGUGAES:"Ieraksti:\xa0{{count}} [{{languages}}]",DEFAULT_COLLECTION_NAME:"Mana terminu kolekcija",SYNC:"Sinhroniz\u0113t",SYNC_ERROR:"M\u0113\u0123in\u0101t v\u0113lreiz",ARIA_LABELS:{RADIO_GROUP:"Atlas\u012bt terminu kolekciju",OTHER_COLLECTIONS:"Atv\u0113rt kolekciju izv\u0113lni"},CREATE_DIALOG:{CANCEL:"Atcelt",COLLECTION_NAME_LABEL:"Terminu kolekcijas nosaukums",CREATE:"Izveidot",DESCRIPTION_1:"P\u0113c nosaukuma pie\u0161\u0137ir\u0161anas terminu kolekcijai tiks atv\u0113rts port\u0101ls Tilde\xa0Term, kur var\u0113sit pievienot jaunus terminus. P\u0113c tam atgriezieties platform\u0101 Tilde\xa0MT, lai izmantotu \u0161os terminus savos tulko\u0161anas projektos.",DESCRIPTION_2:"<i>*\xa0M\u0101ksl\u012bgais intelekts nav nevainojams un reiz\u0113m pie\u013cauj k\u013c\u016bdas. J\u016bsu unik\u0101lie termini tiks izmantoti pareizi ar 95%\xa0precizit\u0101ti.</i>",TITLE:"Jauna glos\u0101rija izveide",COLLECTION_NAME_ERROR:"Rakstz\u012bmju skaits virsrakst\u0101 nedr\u012bkst b\u016bt maz\u0101ks par\xa0{{minLength}} vai liel\u0101ks par\xa0{{maxLength}}"},TOOLTIPS:{MT_ENTRY_COUNT:"Ma\u0161\u012bntulko\u0161anai izmantoto ierakstu skaits",EDIT:"J\u016bs tiksit novirz\u012bts uz terminolo\u0123ijas port\u0101lu, kas tiks atv\u0113rts jaun\u0101 ciln\u0113",ENTRY_COUNT:"Terminu kolekcij\u0101 pievienoto ierakstu skaits",IMPORTING:"Terminu kolekcija tiek import\u0113ta un netiks izmantota l\u012bdz import\u0113\u0161anas beig\u0101m.",NO_ENTRIES:"Terminu kolekciju nevar izmantot, jo avotvalod\u0101 nav terminu",SYNC:"Atjaunin\u0101t terminu kolekciju",SYNCING:"Terminu kolekcija tiek sinhroniz\u0113ta, un tiks izmantota kolekcijas jaun\u0101k\u0101 sinhroniz\u0113t\u0101 versija",ATTACH_TO_SYSTEM_ERROR:"Import\u0113jot terminu kolekciju, rad\u0101s k\u013c\u016bda"}},DOMAINS:{OPEN_LIST_ARIA_LABEL:"Atv\u0113rt dom\u0113nu sarakstu",TITLE:"Dom\u0113ns:",GENERAL:"Visp\u0101r\u012bgi",AUTO:"Autom\u0101tisk\u0101 noteik\u0161ana",LAW:"Jurisprudence",DYNAMIC_LEARNING:"Dinamisk\u0101 m\u0101c\u012b\u0161an\u0101s",BUSINESS:"Uz\u0146\u0113m\u0113jdarb\u012bba"},GRAMMAR_CHECK_MENU:{TITLE:"Apsveriet iesp\u0113ju main\u012bt uz:"},AUDIO:{CANCEL:"Atcelt",DESCRIBE_STATE_RECORDING:"L\u016bdzu, run\u0101jiet, lai ierakst\u012btu...",DESCRIBE_STATE_PROCESSING:"Notiek apstr\u0101de...",MIC_NOT_FOUND:"Mikrofons nav atrasts",STOP:"P\u0101rtraukt ierakst\u012b\u0161anu",START:"Tulkot runu",PUNCTUATION_MESSAGE_TITLE:"Pieturz\u012bmju pievieno\u0161ana",PUNCTUATION_MESSAGE:"L\u016bdzu, pievienojiet atpaz\u012btajam tekstam pieturz\u012bmes. Garam tekstam bez pieturz\u012bm\u0113m var b\u016bt zem\u0101ka tulkojuma kvalit\u0101te, vai ar\u012b tas var neb\u016bt tulkots"},EXTENSION_POPUP:{OPEN:"skat\u012bt visus atbalst\u012btos form\u0101tus",TITLE:"Atbalst\u012btie failu form\u0101ti",DESCRIPTION:"Nepiecie\u0161ama UTF-8 vai UTF-16 kod\u0113\u0161ana, lai nodro\u0161in\u0101tu pareizu failu tulko\u0161anu",OFFICE:"Office",SCANNED:"Sken\u0113tie faili",INTERCHANGE:"Apmai\u0146as form\u0101ti",WEB:"T\u012bmeklis",OTHER:"Cits"},FILE_UPLOAD:{UPLOAD:"Atlasiet",DRAG_AND_DROP:"vai velciet un nometiet ",FILE:"failu",FILES:"failus",LIMITS:" ({{visibleExtensions}}. Maks. {{maxSizeMB}}MB)"},TEXT_TO_SPEECH:{PLAY:"Klaus\u012bties"}},lt:{APP_NAME:"Tilde MT",TLD_TRANSLATE:{DOWNLOAD_TRANSLATED:"Atsisi\u0173sti",FILE_DOWNLOAD_SOURCE_IMAGE:"Atsisi\u0173sti konvertuot\u0105 \u0161altinio vaizd\u0105",FILE_DOWNLOAD_SOURCE_IMAGE_HELP:"Konvertuojant vaizd\u0105 gali atsirasti formatavimo klaid\u0173 arba teksto i\u0161kraipym\u0173. Patikrinkite konvertuot\u0105 fail\u0105 ir prie\u0161 i\u0161 naujo \u012fkeldami fail\u0105 versti, pataisykite klaidas",FILE_TANSLATION_STATUSS_UPLOADING:"\u012ekeliama...",FILE_TANSLATION_STATUSS_UPLOADED:"\u012ekelta",IMAGE_DISCLAIMER_LINK:"Skaitykite apie vaizd\u0173 konvertavim\u0105.",DOC_WORD_CNT_LIMIT_MSG_TITLE:"Vertimo limitas",DOC_WORD_CNT_LIMIT_MSG:'Bus i\u0161versti tik pirmieji {{wordCount}} \u017eod\u017ei\u0173. Jei norite versti vis\u0105 fail\u0105, reikia \u201eTilde MT\u201c prenumeratos. <a href="{{registerLink}}?{{queryString}}">Prad\u0117ti naudoti nemokam\u0105 bandom\u0105j\u0105 versij\u0105</a>',ERROR_NO_SYSTEMS_LOADED_TITLE:"Ne\u012fkelti jokie vertimo moduliai",ERROR_NO_SYSTEMS_LOADED:"Nepavyko \u012fkelti ma\u0161ininio vertimo moduli\u0173.",ERROR_NO_SYSTEMS_LOADED_SUPPORT:' I\u0161 naujo \u012fkelkite puslap\u012f arba kreipkit\u0117s \u012f<a href="mailto:{{email}}"><strong>pagalbos tarnyb\u0105</strong></a>.',PDF_PAGE_LIMIT_MSG_TITLE:"Vertimo limitas",PDF_PAGE_LIMIT_MSG:'Bus i\u0161verstas tik pirmasis puslapis. Jei norite versti vis\u0105 PDF fail\u0105, reikalinga \u201eTilde MT\u201c prenumerata. <a href="{{registerLink}}?{{queryString}}">Prad\u0117ti naudoti nemokam\u0105 bandom\u0105j\u0105 versij\u0105</a>',CLEAR_SOURCE_TOOLTIP:"Valyti tekst\u0105",FILE_TARGET_PREVIEW_MESSAGE:"Tai yra i\u0161versto dokumento per\u017ei\u016bros pavyzdys; nor\u0117dami gauti vis\u0105 vertim\u0105, atsisi\u0173skite.",PREPARING_TRANSLATION:"Pradedamas vertimas",SOURCE_TOOLTIP_ONLY_TEXT:"\u012eveskite tekst\u0105, kur\u012f norite i\u0161versti.",SOURCE_TOOLTIP_SENSITIVE_INFO:"Nenaudokite \u201e{{appName}}\u201c slaptai ar \u012fslaptintai informacijai arba tekstams, kuriuose yra tam tikr\u0173 kategorij\u0173 asmens duomen\u0173, pvz., sveikatos duomen\u0173, versti",TEXT_COPIED:"Nukopijuotas vertimas",REGISTERED_FORMATS_LOGGED_IN:"Registruotieji vartotojai turi prieig\u0105 prie \u0161i\u0173 dokument\u0173 format\u0173 vertimo: {{formats}}.",REGISTERED_FORMATS:'Registruotieji vartotojai turi prieig\u0105 prie \u0161i\u0173 dokument\u0173 format\u0173 vertimo: {{formats}}. Pra\u0161ykite savo prieigos <a class="accent-color" target="blank" href="{{registerLink}}">\u010dia</a>.',SOURCE_FORMATS:"Saugi vie\u0161a vertimo paslauga palaiko \u0161iuos dokument\u0173 formatus: {{formats}}.",BEST_NMT:"Did\u017eiuojam\u0117s tris metus i\u0161 eil\u0117s tap\u0119 nugal\u0117tojais WMP konkurso geriausios ma\u0161ininio vertimo technologijos srityje.",BEST_NMT_MORE:"Su\u017einokite daugiau",CANCEL_TRANSLATION:"At\u0161aukti",FROM:"Nuo:",SOURCE_WORD_LIMIT:" vertimo kiekis ribojamas iki {{limit}} \u017eod\u017ei\u0173.",SOURCE_TOOLTIP:"\u012eveskite tekst\u0105 arba svetain\u0119, kuri\u0105 nor\u0117tum\u0117te i\u0161versti.",TARGET_DESCRIPTION:"Ma\u0161ininis vertimas leid\u017eia suprasti \u0161altinio teksto reik\u0161m\u0119, ta\u010diau negali pakeisti \u017emogaus atlikto vertimo.",TO:"Iki:",SUGGEST_BUTTON:"Si\u016blyti vertim\u0105",SUGGEST_ORIGINAL_LABEL:"Originalo sakinys",SUGGEST_SUBMIT_BUTTON:"Si\u016blyti",SUGGEST_TRANSLATION_LABEL:"Vertimas",SUGGEST_USAGE_INFO:"J\u016bs\u0173 vertimo pasi\u016blym\u0105 naudosime, kad pagerintume ma\u0161ininio vertimo kokyb\u0119.",TOOLTIP_ACTION:"I\u0161versti",UPLOAD_FILE_BUTTON:"\u012ekelkite arba nuvilkite fail\u0105",DICTIONARY_EXAMPLES:"pavyzd\u017eiai",DOMAINS_ARIA_LABEL:"Domenai",FILE_DOWNLOAD_SOURCE:"Atsisi\u0173sti konvertuot\u0105 \u0161altinio PDF",FILE_TANSLATION_STATUSS_INITIALIZING:"Inicijuojamas vertimo procesas...",FILE_TANSLATION_STATUSS_EXTRACTING:"I\u0161gaunamas ver\u010diamas turinys...",FILE_TANSLATION_STATUSS_WAITING:"Paleid\u017eiamas vert\u0117jas...",FILE_TANSLATION_STATUSS_TRANSLATING:"Ver\u010diama...",FILE_TANSLATION_STATUSS_SAVING:"\u012era\u0161omas vertimas...",FILE_TANSLATION_STATUSS_QUEUING:"Pradedamas vertimas...",PDF_DISCLAIMER_LINK:"Skaitykite apie pdf konvertavim\u0105.",UPLOAD_FILES_BUTTON:"\u012ekelti arba nuvilkti failus",VENDORS_ARIA_LABEL:"Teik\u0117jai",WORD_TYPE_ADJECTIVE:"b\u016bdvardis",WORD_TYPE_NOUN:"daiktavardis",WORD_TYPE_VERB:"veiksma\u017eodis",WORD_TYPE_ADVERB:"prieveiksmis",WORD_TYPE_CONJUNCTION:"jungtukas",WORD_TYPE_INTERJECTION:"jaustukas",WORD_TYPE_PRONOUN:"\u012fvardis"},LANGUAGES:{AR:"Arab\u0173",BG:"Bulgar\u0173",HR:"Kroat\u0173",CS:"\u010cek\u0173",DA:"Dan\u0173",NL:"Oland\u0173",EN:"Angl\u0173",ET:"Est\u0173",FI:"Suomi\u0173",FR:"Pranc\u016bz\u0173",DE:"Vokie\u010di\u0173",EL:"Graik\u0173",HU:"Vengr\u0173",GA:"Airi\u0173",IS:"Island\u0173",IT:"Ital\u0173",LV:"Latvi\u0173",LT:"Lietuvi\u0173",MT:"Maltie\u010di\u0173",NB:"Norveg\u0173",PL:"Lenk\u0173",PT:"Portugal\u0173",RO:"Rumun\u0173",RU:"Rus\u0173",SK:"Slovak\u0173",SL:"Slov\u0117n\u0173",ES:"Ispan\u0173",SV:"\u0160ved\u0173",KA:"Gruzin\u0173",BE:"Baltarusi\u0173",MO:"Moldav\u0173",UK:"Ukrainie\u010di\u0173",SR:"Serb\u0173",ZH:"Kin\u0173",JA:"Japon\u0173",KO:"Kor\u0117jie\u010di\u0173",TR:"Turk\u0173"},MULTIPLE_FILES:{APPEND:"Prid\u0117ti failus",STATUSS_UPLOADING:"\u012ekeliama...",STATUSS_UPLOADED:"\u012ekelta",PDF_DISCLAIMER:"Konvertuojant PDF gali atsirasti formatavimo klaid\u0173 arba teksto i\u0161kraipym\u0173. Kai bus i\u0161versta, atsisiuntimo parinktyse pasirinkite \u201eAtsisi\u0173sti konvertuot\u0105 \u0161altinio PDF\u201c, patikrinkite atsisi\u0173st\u0105 fail\u0105, pataisykite klaidas ir v\u0117l \u012fkelkite fail\u0105 versti.",IMAGE_DISCLAIMER:"Konvertuojant vaizd\u0105 gali atsirasti formatavimo klaid\u0173 arba teksto i\u0161kraipym\u0173.",IMAGE_DISCLAIMER_LINK:"Skaitykite apie vaizd\u0173 konvertavim\u0105.",SCREEN_READER_ANNOUNCEMENT:"I\u0161versta fail\u0173: {{translated}} i\u0161 {{total}}.",REMOVE_FILE_TOOLTIP:"Valyti fail\u0105",CLEAR_ALL:"At\u0161aukti",DOWNLOAD:"Atsisi\u0173sti",STATUSS_INITIALIZING:"Inicijuojama",STATUSS_EXTRACTING:"I\u0161gaunama",STATUSS_WAITING:"Paleid\u017eiamas vert\u0117jas",STATUSS_TRANSLATING:"Ver\u010diama",STATUSS_SAVING:"\u012era\u0161oma",STATUSS_COMPLETED:"Baigta",STATUSS_ERROR:"Klaida",STATUSS_QUEUING:"Eil\u0117je",STATUSS_NOT_STARTED:"Nusi\u0173sta",TITLE_FILE_NAME:"Failas",TITLE_STATUSS:"B\u016bsena",TRANSLATION_STATUSS_LABEL:"B\u016bsena",PDF_DISCLAIMER_LINK:"Skaitykite apie pdf konvertavim\u0105."},ERRORS:{ERROR_DEFAULT_TITLE:"Netik\u0117ta klaida",ERROR_DEFAULT:"\u012evyko netik\u0117ta klaida. Bandykite dar kart\u0105.",ERROR_DEFAULT_SUPPORT:' Jei problema kartojasi, kreipkit\u0117s \u012f <a href="mailto:{{email}}"><strong>pagalbos tarnyb\u0105</strong></a>.',MAX_CHAR_LENGTH_TITLE:"Vertimo limitas",MAX_CHAR_LENGTH:'Bus i\u0161versta tik {{maxCharLength}}/{{totalSymbols}} \u017eenkl\u0173. Jei norite versti tekst\u0105 be apribojim\u0173, reikia \u201eTilde MT\u201c prenumeratos. <a href="{{registerLink}}?{{queryString}}">Prad\u0117ti naudoti nemokam\u0105 bandom\u0105j\u0105 versij\u0105</a>',MAX_NUMBER_OF_FILES_TITLE:"\u012ek\u0117limo limitas",MAX_NUMBER_OF_FILES:"Vienu metu galima i\u0161versti tik tiek fail\u0173: {{limit}}.",FILE_ALREADY_ADDED_TITLE:"Failas jau prid\u0117tas",FILE_ALREADY_ADDED:"Failas \u201e{{fileName}}\u201c jau prid\u0117tas.",UANUTHORIZED_401_TITLE:"Ne\u012fgaliotas",E_CANNOT_READ_FILE_TITLE:"Nepavyksta perskaityti failo",E_CANNOT_READ_FILE:"Failas \u201e{{fileName}}\u201c sugadintas ir jo negalima i\u0161versti. Patikrinkite fail\u0105 ir bandykite dar kart\u0105.",E_FAILED_IN_TRANSLATION_TITLE:"I\u0161versti nepavyko",E_FAILED_IN_TRANSLATION:"Ver\u010diant \u012fvyko klaida. Bandykite dar kart\u0105.",E_FAILED_IN_TRANSLATION_SUPPORT:' Jei problema kartojasi, kreipkit\u0117s \u012f <a href="mailto:{{email}}"><strong> pagalbos tarnyb\u0105</strong></a>.',E_FORMAT_TRACK_CHANGES_TITLE:"I\u0161versti nepavyko, nes \u012fjungtas pakeitim\u0173 \u017eym\u0117jimas",E_FORMAT_TRACK_CHANGES:"Prie\u0161 ver\u010diant \u201eOffice\u201c failus, pirmiausia reikia priimti pakeitimus arba i\u0161jungti pakeitim\u0173 \u017eym\u0117jim\u0105.",E_UNKNOWN_ERROR_TITLE:"Ne\u017einoma klaida",E_UNAUTHORIZED_TITLE:"Ne\u012fgaliotas",COLLECTION_CREATE_TITLE:"Nepavyko sukurti \u017eodyno",COLLECTION_CREATE:"Nepavyko sukurti naujo \u017eodyno. Bandykite dar kart\u0105.",COLLECTION_CREATE_SUPPORT:' Jei problema kartojasi, kreipkit\u0117s \u012f <a href="mailto:{{email}}"><strong>pagalbos tarnyb\u0105</strong></a>.',COLLECTION_IMPORT_TITLE:"Nepavyko prid\u0117ti \u017eodyno",COLLECTION_IMPORT:"Prie ma\u0161ininio vertimo modulio nepavyko prid\u0117ti termin\u0173 rinkinio, kurio ID: {{termId}}. Bandykite dar kart\u0105.",E_12_TITLE:"Teksto dyd\u017eio limitas",E_12:"Pasiektas teksto dyd\u017eio limitas. U\u017eklausoje si\u0173skite ma\u017eiau teksto.",E_12_SUPPORT:' Jei norite padidinti teksto dyd\u017eio limit\u0105, kreipkit\u0117s \u012f <a href="mailto:{{email}}"><strong>pagalbos tarnyb\u0105</strong></a>.',E_21_TITLE:"Paleid\u017eiamas ma\u0161ininio vertimo modulis",E_21:"Gal\u0117site versti po keli\u0173 akimirk\u0173.",E_22_TITLE:"Nerastas ma\u0161ininio vertimo modulis",E_22:"Nerastas ma\u0161ininio vertimo modulis.",E_22_SUPPORT:' Susisiekite su <a href="mailto:{{email}}"><strong>pagalbos tarnyba</strong></a>.',E_23:"Ma\u0161ininio vertimo modulis nepaleistas.",E_23_SUPPORT:' Kreipkit\u0117s \u012f <a href="mailto:{{email}}"><strong>pagalbos tarnyb\u0105</strong></a>.',E_41:"Pateiktas ne\u017einomas termin\u0173 tekstyno ID. Termin\u0173 tekstynas turi b\u016bti susietas su ma\u0161ininio vertimo moduliu",E_504:"Baig\u0117si veiksmui skirtas laikas.",UANUTHORIZED_401:"Neturite teis\u0117s naudoti ma\u0161inin\u012f vertim\u0105.",UANUTHORIZED_401_SUPPORT:' Susisiekite su <a href="mailto:{{email}}"><strong>palaikymo tarnyba</strong></a>.',E_UNKNOWN_FILE_TYPE:"Ne\u017einomas failo tipas.",E_UNKNOWN_ERROR:"Aptikta nenustatyta klaida.",E_UNAUTHORIZED:"Dokumento vertimas atmestas.",E_11:"Pasiektas dienos vertimo limitas.",E_11_SUPPORT:' Jei norite padidinti dienos limit\u0105, kreipkit\u0117s \u012f <a href="mailto:{{email}}"><strong>palaikymo tarnyb\u0105</strong></a>.',FILE_TRANSLATION_SUBSTATUS:{BAD_FILE_ERROR_TITLE:"Nepavyko i\u0161versti failo",BAD_FILE_ERROR:"Failas sugadintas ir jo negalima i\u0161versti. Patikrinkite fail\u0105 ir bandykite dar kart\u0105.",NO_TEXT_EXTRACTED_ERROR_TITLE:"Nepavyko i\u0161skleisti jokio teksto",NO_TEXT_EXTRACTED_ERROR:"Failas gali b\u016bti tu\u0161\u010dias. Patikrinkite fail\u0105 ir bandykite dar kart\u0105.",TRACK_CHANGES_ENABLED_ERROR_TITLE:"I\u0161versti nepavyko, nes \u012fjungtas pakeitim\u0173 \u017eym\u0117jimas",TRACK_CHANGES_ENABLED_ERROR:"Prie\u0161 ver\u010diant \u201eOffice\u201c failus, pirmiausia reikia priimti pakeitimus arba i\u0161jungti pakeitim\u0173 \u017eym\u0117jim\u0105.",UNKNOWN_FILE_TYPE_ERROR_TITLE:"Ne\u017einomas failo tipas",UNKNOWN_FILE_TYPE_ERROR:"Neatpa\u017eintas failo tipas. Gali b\u016bti, kad failo pl\u0117tinys neteisingas arba failas sugadintas."},FILE_UPLOAD:{FILE_UPLOAD_EMPTY_TITLE:"Failas tu\u0161\u010dias",FILE_UPLOAD_EMPTY:"\u012ekeltas \u201e{{fileName}}\u201c yra tu\u0161\u010dias. Pasirinkite fail\u0105, kuriame yra turinio.",FILE_UPLOAD_MAX_SIZE_TITLE:"Failo dyd\u017eio limitas",FILE_UPLOAD_MAX_SIZE:"\u012ekeltas \u201e{{fileName}}\u201c yra per didelis. Maksimalus dydis yra {{maxSizeMB}} MB",FILE_UPLOAD_UNSUPPORTED_FORMAT_TITLE:"Nepalaikomas failo formatas",FILE_UPLOAD_UNSUPPORTED_FORMAT:"\u012ekelto failo \u201e{{fileName}}\u201c formatas nepalaikomas. Galima versti \u0161i\u0173 format\u0173 dokumentus: {{formatai}}.",FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER_TITLE:"Nepalaikomas failo formatas",FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER:'Jei norite versti fail\u0105 \u201e{{fileName}}\u201c, reikia \u201eTilde MT\u201c prenumeratos. <a href="{{registerLink}}?{{queryString}}">Prad\u0117ti naudoti nemokam\u0105 bandom\u0105j\u0105 versij\u0105</a>',E_404_TITLE:"Failas nerastas",E_404:"Pageidaujamo failo n\u0117ra"},AUDIO:{NO_SPEECH_TITLE:"N\u0117ra kalb\u0117jimo duomen\u0173",NO_SPEECH:"J\u016bs\u0173 \u012fra\u0161as buvo sustabdytas. Mes j\u016bs\u0173 negird\u0117jome.",MAX_TIME_EXCEEDED_TITLE:"Kalb\u0117jimo limitas",MAX_TIME_EXCEEDED:"J\u016bs\u0173 \u012fra\u0161as buvo sustabdytas. Kalb\u0117jimo \u012fvesties limitas: {{timeString}}.",MIC_NOT_ALLOWED_TITLE:"Prieiga prie mikrofono u\u017edrausta",MIC_NOT_ALLOWED:"J\u016bs u\u017edraud\u0117te prieig\u0105 prie mikrofono. Pakeiskite teises nar\u0161ykl\u0117s parametruose.",MAX_SIZE_EXCEEDED_TITLE:"Kalb\u0117jimo limitas",MAX_SIZE_EXCEEDED:"J\u016bs\u0173 \u012fra\u0161as buvo sustabdytas ir i\u0161si\u0173stas apdoroti. Kalb\u0117jimo \u012fvestis dyd\u017eio limitas: ({{maxSizeMb}} MB).",CANT_START_RECORDING_TITLE:"Nepavyko prad\u0117ti \u012fra\u0161ymo",CANT_START_RECORDING:"Nepavyksta prad\u0117ti \u012fra\u0161ymo. Bandykite dar kart\u0105.",NO_TEXT_RECOGNIZED_Title:"Neatpa\u017eintas kalb\u0117jimas",NO_TEXT_RECOGNIZED:"Nepavyko atpa\u017einti jokio kalb\u0117jimo. Patikrinkite mikrofon\u0105 ir bandykite dar kart\u0105."}},ARIA_LABELS:{COPY:"Kopijuoti \u012f main\u0173 srit\u012f",OPEN_IN_NEW:"Atidaryti naujame skirtuke",SWAP_LANGUAGES:"Sukeisti kalbas",OTHER_LANGUAGES_TRIGGER:"Rodyti kitas kalbas",CLOSE_BUTTON:"Valyti",CLEAR_NOTIFICATION:"U\u017edaryti \u012fsp\u0117jim\u0105",CLEAR_SOURCE:"Valyti \u012fvest\u0105 tekst\u0105",CLOSE_DIALOG:"U\u017edaryti dialogo lang\u0105",CLEAR_FILES:"Valyti nusi\u0173stus failus",SHOW_EXTENSIONS:"Rodyti kitas atsisiuntimo parinktis"},TOOLTIPS:{COPY:"Kopijuoti \u012f main\u0173 srit\u012f",SWAP_LANGUAGES:"Sukeisti kalbas"},PDF_CONVERSION:{TITLE_1:"PDF vertimas",PARAGRAPH_1_1:"Versti nusi\u0173stas .pdf failas konvertuojamas \u012f ver\u010diam\u0105 format\u0105. Palaikomas ir nuskaitytas, ir savasis .pdf failai. Vertimus galima atsisi\u0173sti .docx, .tmx arba .pdf formatais ir bus i\u0161laikytas pagrindinis formatavimas. Formatavimas i\u0161verstuose .docx ir .pdf failuose gali \u0161iek tiek skirtis. ",PARAGRAPH_1_2:"Konvertavimas u\u017eima laiko, nor\u0117dami paspartinti darb\u0105, i\u0161skaidykite .pdf failus ir panaikinkite puslapius, kuriuose n\u0117ra ver\u010diamos informacijos. Apdorojimo laikui tur\u012f \u012ftakos \u012fvair\u016bs veiksniai, pavyzd\u017eiui, puslapi\u0173 skai\u010dius, teksto kokyb\u0117 ir tankumas.",PARAGRAPH_1_3:"Norint padidinti vertimo na\u0161um\u0105, rekomenduojame atsisi\u0173sti konvertuot\u0105 dokument\u0105 originalo kalba ir, prie\u0161 pakartotinai nusiun\u010diant versti, pataisyti j\u012f rankiniu b\u016bdu.",IMAGE_ALT_1:"\u0160altinio PDF atsisiuntimo pavyzdys",TITLE_2:"PDF konvertavimas",PARAGRAPH_2_1:"Dokumentas analizuojamas ir jo turinys i\u0161skaidomas \u012f teksto, lenteli\u0173 ir vaizdo / fono sritis. Jos toliau analizuojamos, siekiant nustatyti, kur\u012f turin\u012f reikia atpa\u017einti kaip tekst\u0105.",PARAGRAPH_2_2:"Tekstiniai duomenys gaunami naudojant OCR optin\u012f simboli\u0173 atpa\u017einim\u0105. Kiekvienas simbolis atpa\u017e\u012fstamas atsi\u017evelgiant \u012f jo vizualines savybes, tada sud\u0117liojami \u017eod\u017eiai ir sakiniai.",PARAGRAPH_2_3:"Atpa\u017einim\u0105 veikia daug veiksni\u0173, \u012fskaitant:",LI_1_1:"Nuskaityto dokumento kokyb\u0117 (nery\u0161kus arba deformuotas tekstas, vaizdo triuk\u0161mas, vaizdo rai\u0161ka, kontrastas ir pan.). Siekiant geriausi\u0173 rezultat\u0173, .pdf failai turi b\u016bti ma\u017eiausiai 300 dpi, nei\u0161kraipyti ir be triuk\u0161mo.",LI_1_2:"\u0160rifto dydis. Ma\u017eesn\u012f nei 9 ta\u0161k\u0173 \u0161riftai atpa\u017e\u012fstami sunkiai. ",LI_1_3:"Reti ir original\u016bs \u0161riftai. Re\u010diau naudojami \u0161riftai gali b\u016bti neatpa\u017e\u012fstami ir atpa\u017e\u012fstami pras\u010diau.",LI_1_4:"Dokumento strukt\u016bros ir formatavimo sud\u0117tingumas.",TITLE_3:"Vertimo na\u0161umo didinimas",PARAGRAPH_3_1:"Konvertavimo procesas yra labai sud\u0117tingas ir gali priklausyti nuo \u012fvairi\u0173 klaid\u0173, atsiradusi\u0173 d\u0117l \u012fvesties dokumento. ",PARAGRAPH_3_2:"Problemos, \u012f kurias reikia atkreipti d\u0117mes\u012f:",LI_2_1:"Netinkamai atpa\u017einti \u017eod\u017eiai.",LI_2_2:"Netinkamo \u017eod\u017ei\u0173 ribos.",LI_2_3:"Keliuose stulpeliuose, eilut\u0117se arba puslapiuose i\u0161sid\u0117st\u0119 sakiniai i\u0161skaidomi \u012f skirtingus tekstinius objektus.",LI_2_4:"Ne vietoje i\u0161d\u0117stytos pora\u0161t\u0117s ir antra\u0161t\u0117s.",LI_2_5:"Netinkamas numeravimas.",LI_2_6:"Lentel\u0117s atpa\u017e\u012fstamos kaip fono vaizdai, o tekstinis turinys i\u0161d\u0117stomas skirtinguose tekstiniuose objektuose.",LI_2_7:"Kai kurios diagramos atpa\u017e\u012fstamos kaip vaizdai be jokio tekstinio turinio.",LI_2_8:"Skyrikliai, kra\u0161tin\u0117s ar kitos horizontalios linijos atpa\u017e\u012fstamos kaip perbrauktas arba pabrauktas tekstas.",LI_2_9:"Nepavyk\u0119s turinio ar pana\u0161i\u0173 s\u0105ra\u0161\u0173 formatavimas arba atpa\u017einimas kaip perbraukto arba pabraukto teksto.",PARAGRAPH_4_1:"<b>Atminkite, kad gautame dokumente i\u0161liks ne visos originalaus formatavimo detal\u0117s.</b> Kai kurie vaizdai, lentel\u0117s arba diagramos gali i\u0161sikraipyti arba tapti paprastesni. \u0160riftai i\u0161vertame dokumente bus ne tokie patys kaip originale, bet gali b\u016bti pana\u0161\u016bs. Gali b\u016bti netinkamai atpa\u017eintas \u0161rifto dydis. Specifinis \u201eWord\u201c formatavimas, pvz., antra\u0161t\u0117s, turiniai, antra\u0161t\u0117s ir pora\u0161t\u0117s, etiket\u0117s, formos ir pan., atrodys pana\u0161iai kaip originalios, ta\u010diau ne visi\u0161kai atitiks originalias (pvz., pavadinimai bus pary\u0161kinti ir didesnio \u0161rifto, bet antra\u0161t\u0117s stilius nebus nustatytas).",CLOSE:"U\u017edaryti dialogo lang\u0105"},IMAGE_CONVERSION:{TITLE_1:"Vaizd\u0173 vertimas",PARAGRAPH_1_1:"Versti nusi\u0173stas vaizdo failas konvertuotas \u012f ver\u010diam\u0105 format\u0105. Vertimus galima atsisi\u0173sti .docx arba .tmx formatais, bus i\u0161laikytas pagrindinis formatavimas.",PARAGRAPH_1_2:"<b>Palaikomi vaizdo formatai:</b> .jpg, .jpeg, .png ir .bmp.",PARAGRAPH_1_3:"Jei norite padidinti vertimo na\u0161um\u0105, rekomenduojame atsisi\u0173sti konvertuot\u0105 dokument\u0105 originalo kalba ir, prie\u0161 pakartotinai nusiun\u010diant versti, pataisyti j\u012f rankiniu b\u016bdu.",IMAGE_ALT_1:"\u0160altinio vaizdo atsisiuntimo pavyzdys",TITLE_2:"Vaizdo konvertavimas",PARAGRAPH_2_1:"Vaizdas analizuojamas ir jo turinys i\u0161skaidomas \u012f teksto, lenteli\u0173 ir vaizdo / fono sritis. Jos toliau analizuojamos, siekiant nustatyti, kok\u012f turin\u012f reikia atpa\u017einti kaip tekst\u0105.",PARAGRAPH_2_2:"Tekstiniai duomenys gaunami naudojant OCR optin\u012f \u017eenkl\u0173 atpa\u017einim\u0105. Kiekvienas \u017eenklas atpa\u017e\u012fstamas atsi\u017evelgiant \u012f jo vizualines savybes, tada sud\u0117liojami \u017eod\u017eiai ir sakiniai.",PARAGRAPH_2_3:"Atpa\u017einimui \u012ftakos turi daug veiksni\u0173, \u012fskaitant:",LI_1_1:"Nuskaityto vaizdo kokyb\u0117 (nery\u0161kus arba deformuotas tekstas, vaizdo triuk\u0161mas, vaizdo rai\u0161ka, kontrastas ir pan.). Geriausi rezultatai gaunami, kai vaizdai yra bent 300 dpi dyd\u017eio, nei\u0161kraipyti ir be triuk\u0161mo.",LI_1_2:"\u0160rifto dydis. Ma\u017eesni nei 9 punkt\u0173 \u0161riftai atpa\u017e\u012fstami sunkiai. ",LI_1_3:"Reti ir original\u016bs \u0161riftai. Re\u010diau naudojami \u0161riftai gali b\u016bti neatpa\u017e\u012fstami ir atpa\u017e\u012fstami pras\u010diau.",LI_1_4:"Dokumento strukt\u016bros ir formatavimo sud\u0117tingumas.",TITLE_3:"Vertimo na\u0161umo didinimas",PARAGRAPH_3_1:"Konvertavimo procesas yra labai sud\u0117tingas ir gali priklausyti nuo \u012fvairi\u0173 klaid\u0173, atsiradusi\u0173 d\u0117l \u012fvesties dokumento. ",PARAGRAPH_3_2:"Problemos, \u012f kurias reikia atkreipti d\u0117mes\u012f:",LI_2_1:"Netinkamai atpa\u017einti \u017eod\u017eiai.",LI_2_2:"Netinkamos \u017eod\u017ei\u0173 ribos.",LI_2_3:"Keliuose stulpeliuose, eilut\u0117se arba puslapiuose i\u0161sid\u0117st\u0119 sakiniai i\u0161skaidomi \u012f skirtingus tekstinius objektus.",LI_2_4:"Ne vietoje i\u0161d\u0117stytos pora\u0161t\u0117s ir antra\u0161t\u0117s.",LI_2_5:"Netinkamas numeravimas.",LI_2_6:"Lentel\u0117s atpa\u017e\u012fstamos kaip fono vaizdai, o tekstinis turinys i\u0161d\u0117stomas skirtinguose tekstiniuose objektuose.",LI_2_7:"Kai kurios diagramos atpa\u017e\u012fstamos kaip vaizdai be jokio tekstinio turinio.",LI_2_8:"Skyrikliai, kra\u0161tin\u0117s ar kitos horizontalios linijos atpa\u017e\u012fstamos kaip perbrauktasis arba pabrauktasis tekstas.",PARAGRAPH_4_1:"<b>Atminkite, kad gautame dokumente i\u0161liks ne visos originalaus formatavimo ypatyb\u0117s.</b> Kai kurie vaizdai, lentel\u0117s arba diagramos gali i\u0161sikraipyti arba tapti paprastesni. \u0160riftai i\u0161vertame dokumente bus ne tokie patys kaip originale, bet gali b\u016bti pana\u0161\u016bs. Gali b\u016bti netinkamai atpa\u017eintas \u0161rifto dydis.",CLOSE:"U\u017edaryti dialogo lang\u0105"},WEBTRANSLATE:{BACK:"Atgal \u012f vert\u0117j\u0105",ADDRESS:"Adresas",LOAD_PAGE:"\u012ekelti puslap\u012f",RESTORE:"Atkurti",CANCEL:"At\u0161aukti"},TERM_COLLECTIONS:{MT_ENTRY_COUNT:"Importuota: {{count}}",TITLE:"Pasirinkite, redaguokite ir tvarkykite \u017eodynus",TITLE_EMPTY:"Sukurkite pirm\u0105j\u012f savo \u017eodyn\u0105",TITLE_MOBILE:"Pasirinkite \u017eodynus",DESCRIPTION_1:"Pasirinkite, kok\u012f termin\u0173 rinkin\u012f naudoti \u0161iam projektui. ",DESCRIPTION_2:" Galite \u012ftraukti nauj\u0173 rinkini\u0173 ir redaguoti esamus",DESCRIPTION_2_MOBILE:" Naudokite kompiuteriui skirt\u0105 versij\u0105, jei norite sukurti naujus rinkinius arba redaguoti esamus.",DESCRIPTION_EMPTY:"Jei norite tiksliai nustatyti, kaip \u201e{{appName}}\u201c tur\u0117t\u0173 i\u0161versti j\u016bs\u0173 \u012fmonei ar pramon\u0117s \u0161akai b\u016bdingus \u017eod\u017eius ir frazes, \u012ftraukite juos \u012f unikalius termin\u0173 rinkinius.",DESCRIPTION_EMPTY_MOBILE:"Jei norite tiksliai nustatyti, kaip {{appName}} tur\u0117t\u0173 i\u0161versti j\u016bs\u0173 \u012fmonei ar pramon\u0117s \u0161akai b\u016bdingus \u017eod\u017eius ir frazes, naudodami kompiuteriui skirt\u0105 versij\u0105 \u012ftraukite juos \u012f unikalius termin\u0173 rinkinius.",PROMOTION:{TITLE:"Kurkite, redaguokite ir tvarkykite \u017eodynus",DESCRIPTION:"\u201eTilde MT\u201c nariai gali naudotis \u017eodynais.",START_TRIAL:"Prad\u0117ti naudoti nemokam\u0105 bandom\u0105j\u0105 versij\u0105",LEARN_MORE:"Su\u017einokite daugiau apie \u017eodynus"},GLOSSARY:"\u017dodynas: ",SELECTED_NONE:"N\u0117ra",EDIT:"Redaguoti",CREATE:"Naujas \u017eodynas",ENTRY_COUNT:"\u012era\u0161\u0173: {{count}}",ENTRY_COUNT_WITH_LANGUGAES:"\u012era\u0161\u0173: {{count}} [{{languages}}]",DEFAULT_COLLECTION_NAME:"Mano termin\u0173 rinkinys",SYNC:"Sinchronizuoti",SYNC_ERROR:"Kartoti",ARIA_LABELS:{RADIO_GROUP:"Pasirinkite termin\u0173 rinkin\u012f",OTHER_COLLECTIONS:"Atidaryti rinkinio meniu"},CREATE_DIALOG:{CANCEL:"At\u0161aukti",COLLECTION_NAME_LABEL:"Termin\u0173 rinkinio pavadinimas",CREATE:"Kurti",DESCRIPTION_1:"Pavadin\u0119 termin\u0173 rinkin\u012f, b\u016bsite nukreipti \u012f \u201eTilde Term\u201c, kad \u012ftrauktum\u0117te nauj\u0173 termin\u0173. Kai baigsite, gr\u012f\u017ekite \u012f \u201eTilde MT\u201c ir naudokite juos savo vertimo projektuose.",DESCRIPTION_2:"<i>* Dirbtinis intelektas n\u0117ra tobulas ir kartais gali klysti. J\u016bs\u0173 unikal\u016bs terminai bus naudojami teisingai 95 % tikslumu.</i>",TITLE:"Kurti nauj\u0105 \u017eodyn\u0105",COLLECTION_NAME_ERROR:"Pavadinimas tur\u0117t\u0173 b\u016bti bent tiek simboli\u0173 ilgio: {{minLength}} ir ne ilgesnis nei tiek simboli\u0173: {{maxLength}}"},TOOLTIPS:{MT_ENTRY_COUNT:"Ma\u0161ininio vertimo \u012fra\u0161\u0173 skai\u010dius",EDIT:"B\u016bsite nukreipti \u012f terminologijos portal\u0105, kuris bus atidarytas naujame skirtuke",ENTRY_COUNT:"\u012e termin\u0173 rinkin\u012f \u012ftraukt\u0173 \u012fra\u0161\u0173 skai\u010dius",IMPORTING:"Termin\u0173 rinkinys importuojamas ir nebus naudojamas, kol nebaigta importuoti.",NO_ENTRIES:"Termin\u0173 rinkinio naudoti negalima, nes n\u0117ra \u0161altinio kalbos termin\u0173",SYNC:"Atnaujinti termin\u0173 rinkin\u012f",SYNCING:"Termin\u0173 rinkinys sinchronizuojamas ir bus naudojama paskutin\u0117 sinchronizuota rinkinio versija",ATTACH_TO_SYSTEM_ERROR:"Importuojant termin\u0173 rinkin\u012f \u012fvyko klaida"}},DOMAINS:{OPEN_LIST_ARIA_LABEL:"Atidaryti domen\u0173 s\u0105ra\u0161\u0105",TITLE:"Domenas:",GENERAL:"Bendrasis",AUTO:"Automatinis aptikimas",LAW:"Teis\u0117",DYNAMIC_LEARNING:"Dinaminis mokymasis",BUSINESS:"Verslas"},GRAMMAR_CHECK_MENU:{TITLE:"Apsvarstykite galimyb\u0119 pakeisti \u012f:"},AUDIO:{CANCEL:"At\u0161aukti",DESCRIBE_STATE_RECORDING:"Kalb\u0117kite, kad \u012fra\u0161ytum\u0117te...",DESCRIBE_STATE_PROCESSING:"Apdorojama...",MIC_NOT_FOUND:"Mikrofonas nerastas",STOP:"Stabdyti \u012fra\u0161ym\u0105",START:"Versti kalb\u0117jim\u0105",PUNCTUATION_MESSAGE_TITLE:"\u012etraukti skyrybos \u017eenklus",PUNCTUATION_MESSAGE:"Atpa\u017eintame tekste sud\u0117kite skyrybos \u017eenklus. Ilgo teksto be skyrybos \u017eenkl\u0173 vertimo kokyb\u0117 gali b\u016bti prastesn\u0117 arba jo gali nepavykti i\u0161versti"},EXTENSION_POPUP:{OPEN:"per\u017ei\u016br\u0117ti visus palaikomus formatus",TITLE:"Palaikomi fail\u0173 formatai",DESCRIPTION:"Norint u\u017etikrinti teising\u0105 failo vertim\u0105, koduot\u0117 turi b\u016bti UTF-8 arba UTF-16",OFFICE:"\u201eOffice\u201c",SCANNED:"Nuskaityti failai",INTERCHANGE:"Apsikeitimo formatai",WEB:"\u017diniatinklis",OTHER:"Kiti"},FILE_UPLOAD:{UPLOAD:"Pasirinkite",DRAG_AND_DROP:"arba nuvilkite ",FILE:"failas",FILES:"failai",LIMITS:" ({{visibleExtensions}}. Maks. {{maxSizeMB}} MB)"},TEXT_TO_SPEECH:{PLAY:"Klausyti"}},pl:{APP_NAME:"Tilde MT",TLD_TRANSLATE:{DOWNLOAD_TRANSLATED:"Pobierz",FILE_DOWNLOAD_SOURCE_IMAGE:"Pobierz przekonwertowany obraz \u017ar\xf3d\u0142owy",FILE_DOWNLOAD_SOURCE_IMAGE_HELP:"Konwersja obrazu mo\u017ce powodowa\u0107 b\u0142\u0119dy formatowania lub zniekszta\u0142cenia tekstu. Sprawd\u017a skonwertowany plik i popraw b\u0142\u0119dy przed ponownym wys\u0142aniem pliku do t\u0142umaczenia",FILE_TANSLATION_STATUSS_UPLOADING:"Przesy\u0142anie\u2026",FILE_TANSLATION_STATUSS_UPLOADED:"Przes\u0142ano",IMAGE_DISCLAIMER_LINK:"Przeczytaj o konwersji obrazu.",DOC_WORD_CNT_LIMIT_MSG_TITLE:"Limit t\u0142umaczenia",DOC_WORD_CNT_LIMIT_MSG:'Przet\u0142umaczone b\u0119d\u0105 tylko pierwsze {{wordcount}} s\u0142\xf3w. Do przet\u0142umaczenia pe\u0142nych plik\xf3w potrzebna jest subskrypcja Tilde MT. <a href="{{registerLink}}?{{queryString}}">na pocz\u0105tek skorzystaj z bezp\u0142atnej wersji pr\xf3bnej</a>',ERROR_NO_SYSTEMS_LOADED_TITLE:"Nie za\u0142adowano \u017cadnych silnik\xf3w t\u0142umaczenia",ERROR_NO_SYSTEMS_LOADED:"Nie mo\u017cna za\u0142adowa\u0107 silnik\xf3w t\u0142umaczenia maszynowego.",ERROR_NO_SYSTEMS_LOADED_SUPPORT:' Za\u0142aduj ponownie stron\u0119 lub skontaktuj si\u0119 z <a href="mailto:{{email}}"><strong>dzia\u0142em wsparcia</strong></a>.',PDF_PAGE_LIMIT_MSG_TITLE:"Limit t\u0142umaczenia",PDF_PAGE_LIMIT_MSG:'Przet\u0142umaczona zostanie tylko pierwsza strona. Do przet\u0142umaczenia pe\u0142nych plik\xf3w PDF potrzebna jest subskrypcja Tilde MT. <a href="{{registerLink}}?{{queryString}}">na pocz\u0105tek skorzystaj z bezp\u0142atnej wersji pr\xf3bnej</a>',CLEAR_SOURCE_TOOLTIP:"Usu\u0144 tekst",PREPARING_TRANSLATION:"Rozpoczynanie t\u0142umaczenia",SOURCE_TOOLTIP_ONLY_TEXT:"Wprowad\u017a tekst, kt\xf3ry chcesz przet\u0142umaczy\u0107.",SOURCE_TOOLTIP_SENSITIVE_INFO:"Nie u\u017cywaj {{appName}} do t\u0142umaczenia tajnych lub poufnych informacji lub tekst\xf3w, kt\xf3re zawieraj\u0105 specjalne kategorie danych osobowych, takich jak dane dotycz\u0105ce zdrowia.",REGISTERED_FORMATS_LOGGED_IN:"Zarejestrowani u\u017cytkownicy maj\u0105 dost\u0119p do t\u0142umaczenia dokument\xf3w o nast\u0119puj\u0105cych formatach: {{formats}}.",REGISTERED_FORMATS:'Zarejestrowani u\u017cytkownicy maj\u0105 dost\u0119p do t\u0142umaczenia dokument\xf3w o nast\u0119puj\u0105cych formatach: {{formats}}. Uzyskaj dost\u0119p <a class="accent-color" target="blank" href="{{registerLink}}">tutaj</a>.',SOURCE_FORMATS:"Bezpieczna publiczna us\u0142uga t\u0142umacze\u0144 obs\u0142uguje nast\u0119puj\u0105ce formaty dokument\xf3w: {{formats}};",BEST_NMT:"Dumny zwyci\u0119zca w kategorii najlepszej technologii t\u0142umaczenia maszynowego w konkursie WMT przez trzy lata z rz\u0119du.",BEST_NMT_MORE:"Dowiedz si\u0119 wi\u0119cej",CANCEL_TRANSLATION:"Anuluj",FILE_TARGET_PREVIEW_MESSAGE:"To jest przyk\u0142adowy podgl\u0105d przet\u0142umaczonego dokumentu. Pobierz, aby uzyska\u0107 pe\u0142ne t\u0142umaczenie.",FROM:"Z:",SOURCE_WORD_LIMIT:" liczba s\u0142\xf3w t\u0142umaczenia jest ograniczona do {{limit}}.",SOURCE_TOOLTIP:"Wprowad\u017a tekst lub adres strony, kt\xf3r\u0105 chcesz przet\u0142umaczy\u0107.",TARGET_DESCRIPTION:"T\u0142umaczenie maszynowe pozwala na zrozumienie znaczenia tekstu \u017ar\xf3d\u0142owego, ale nie mo\u017ce zast\u0105pi\u0107 t\u0142umaczenia wykonanego przez cz\u0142owieka.",TO:"Na:",TEXT_COPIED:"T\u0142umaczenie skopiowane",SUGGEST_BUTTON:"Zaproponuj t\u0142umaczenie",SUGGEST_ORIGINAL_LABEL:"Zdanie wej\u015bciowe",SUGGEST_SUBMIT_BUTTON:"Miej sw\xf3j wk\u0142ad",SUGGEST_TRANSLATION_LABEL:"T\u0142umaczenie",SUGGEST_USAGE_INFO:"Twoja zanonimizowana sugestia dotycz\u0105ca t\u0142umacze\u0144 zostanie wykorzystana w celu poprawy jako\u015bci t\u0142umaczenia maszynowego.",TOOLTIP_ACTION:"Przet\u0142umacz",UPLOAD_FILE_BUTTON:"Prze\u015blij lub przeci\u0105gnij pliki",DICTIONARY_EXAMPLES:"przyk\u0142ady",DOMAINS_ARIA_LABEL:"Domeny",FILE_DOWNLOAD_SOURCE:"Pobierz przekonwertowany \u017ar\xf3d\u0142owy plik PDF",FILE_TANSLATION_STATUSS_INITIALIZING:"Inicjalizacja procesu t\u0142umaczenia...",FILE_TANSLATION_STATUSS_EXTRACTING:"Ekstrakcja przet\u0142umaczonej zawarto\u015bci...",FILE_TANSLATION_STATUSS_WAITING:"Uruchamianie translatora...",FILE_TANSLATION_STATUSS_TRANSLATING:"T\u0142umaczenie...",FILE_TANSLATION_STATUSS_SAVING:"Zapisywanie t\u0142umaczenia...",FILE_TANSLATION_STATUSS_QUEUING:"Rozpoczynanie t\u0142umaczenia...",PDF_DISCLAIMER_LINK:"Przeczytaj o konwersji plik\xf3w pdf.",UPLOAD_FILES_BUTTON:"Prze\u015blij lub przeci\u0105gnij pliki",VENDORS_ARIA_LABEL:"Dostawcy us\u0142ug",WORD_TYPE_ADJECTIVE:"przymiotnik",WORD_TYPE_NOUN:"rzeczownik",WORD_TYPE_VERB:"czasownik",WORD_TYPE_ADVERB:"przys\u0142\xf3wek",WORD_TYPE_CONJUNCTION:"\u0142\u0105cznik",WORD_TYPE_INTERJECTION:"wtr\u0105cenie",WORD_TYPE_PRONOUN:"przyimek"},LANGUAGES:{AR:"Arabski",BG:"Bu\u0142garski",HR:"Chorwacki",CS:"Czeski",DA:"Du\u0144ski",NL:"Niderlandzki",EN:"Angielski",ET:"Esto\u0144ski",FI:"Fi\u0144ski",FR:"Francuski",DE:"Niemiecki",EL:"Grecki",HU:"W\u0119gierski",GA:"Irlandzki",IS:"Islandzki",IT:"W\u0142oski",LV:"\u0141otewski",LT:"Litewski",MT:"Malta\u0144ski",NB:"Norweski",PL:"Polski",PT:"Portugalski",RO:"Rumu\u0144ski",RU:"Rosyjski",SK:"S\u0142owacki",SL:"S\u0142owe\u0144ski",ES:"Hiszpa\u0144ski",SV:"Szwedzki",KA:"Gruzi\u0144ski",BE:"Bia\u0142oruski",MO:"Mo\u0142dawski",UK:"Ukrai\u0144ski",SR:"Serbski",ZH:"Chi\u0144ski",JA:"Japo\u0144ski",KO:"Korea\u0144ski",TR:"Turecki"},MULTIPLE_FILES:{APPEND:"Dodaj pliki",STATUSS_UPLOADING:"Przesy\u0142anie\u2026",STATUSS_UPLOADED:"Przes\u0142ano",PDF_DISCLAIMER:"Konwersja PDF mo\u017ce powodowa\u0107 b\u0142\u0119dy formatowania lub zniekszta\u0142cenia tekstu. Po przet\u0142umaczeniu wybierz \u201ePobierz przekonwertowany \u017ar\xf3d\u0142owy plik PDF\u201d z rozwijanego menu, sprawd\u017a pobrany plik i popraw b\u0142\u0119dy przed ponownym przes\u0142aniem pliku do t\u0142umaczenia.",IMAGE_DISCLAIMER:"Konwersja obrazu mo\u017ce powodowa\u0107 b\u0142\u0119dy formatowania lub zniekszta\u0142cenia tekstu.",IMAGE_DISCLAIMER_LINK:"Przeczytaj o konwersji obrazu.",SCREEN_READER_ANNOUNCEMENT:"Przet\u0142umaczono {{translated}} z {{total}} plik\xf3w.",REMOVE_FILE_TOOLTIP:"Usu\u0144 plik",CLEAR_ALL:"Anuluj",DOWNLOAD:"Pobierz",STATUSS_INITIALIZING:"Inicjalizacja",STATUSS_EXTRACTING:"Ekstrakcja",STATUSS_WAITING:"Uruchamianie translatora",STATUSS_TRANSLATING:"T\u0142umaczenie",STATUSS_SAVING:"Zapisywanie",STATUSS_COMPLETED:"Uko\u0144czono",STATUSS_ERROR:"B\u0142\u0105d",STATUSS_QUEUING:"Oczekuje",STATUSS_NOT_STARTED:"Przes\u0142ano",TITLE_FILE_NAME:"Plik",TITLE_STATUSS:"Status",TRANSLATION_STATUSS_LABEL:"Status",PDF_DISCLAIMER_LINK:"Przeczytaj o konwersji plik\xf3w pdf."},ERRORS:{ERROR_DEFAULT_TITLE:"Nieoczekiwany b\u0142\u0105d",ERROR_DEFAULT:"Wyst\u0105pi\u0142 nieoczekiwany b\u0142\u0105d. Spr\xf3buj ponownie.",ERROR_DEFAULT_SUPPORT:' Je\u015bli problem b\u0119dzie si\u0119 powtarza\u0142, skontaktuj si\u0119 z <a href="mailto:{{email}}"><strong>dzia\u0142em wsparcia</strong></a>.',MAX_CHAR_LENGTH_TITLE:"Limit t\u0142umaczenia",MAX_CHAR_LENGTH:'Przet\u0142umaczona zostanie tylko nast\u0119puj\u0105ca liczba znak\xf3w: {{maxCharLength}}/{{totalSymbols}}. Do przet\u0142umaczenia nieograniczonej ilo\u015bci tekstu potrzebna jest subskrypcja Tilde MT. <a href="{{registerLink}}?{{queryString}}">na pocz\u0105tek skorzystaj z bezp\u0142atnej wersji pr\xf3bnej</a>',MAX_NUMBER_OF_FILES_TITLE:"Limit przesy\u0142ania",MAX_NUMBER_OF_FILES:"Jednocze\u015bnie mo\u017cna przet\u0142umaczy\u0107 tylko nast\u0119puj\u0105c\u0105 liczb\u0119 plik\xf3w: {{limit}}.",FILE_ALREADY_ADDED_TITLE:"Plik zosta\u0142 ju\u017c dodany",FILE_ALREADY_ADDED:"Plik \u201e{{fileName}}\u201d zosta\u0142 ju\u017c dodany.",UANUTHORIZED_401_TITLE:"Brak pozwolenia",E_CANNOT_READ_FILE_TITLE:"Nie mo\u017cna odczyta\u0107 pliku",E_CANNOT_READ_FILE:"Plik \u201e{{fileName}}\u201d jest uszkodzony i nie mo\u017cna go przet\u0142umaczy\u0107. Sprawd\u017a plik i spr\xf3buj ponownie.",E_FAILED_IN_TRANSLATION_TITLE:"T\u0142umaczenie nie powiod\u0142o si\u0119",E_FAILED_IN_TRANSLATION:"W trakcie t\u0142umaczenia wyst\u0105pi\u0142 b\u0142\u0105d. Spr\xf3buj ponownie.",E_FAILED_IN_TRANSLATION_SUPPORT:' Je\u015bli problem b\u0119dzie si\u0119 powtarza\u0142, skontaktuj si\u0119 z <a href="mailto:{{email}}"><strong>dzia\u0142em wsparcia</strong></a>.',E_FORMAT_TRACK_CHANGES_TITLE:"T\u0142umaczenie nie powiod\u0142o si\u0119, poniewa\u017c w\u0142\u0105czono \u201ezmiany \u015bcie\u017cki\u201d",E_FORMAT_TRACK_CHANGES:"Przed t\u0142umaczeniem plik\xf3w pakietu Office nale\u017cy najpierw zaakceptowa\u0107 zmiany lub wy\u0142\u0105czy\u0107 opcj\u0119 \u201e\u015aled\u017a zmiany\u201d.",E_UNKNOWN_ERROR_TITLE:"Nieznany b\u0142\u0105d",E_UNAUTHORIZED_TITLE:"Brak pozwolenia",COLLECTION_CREATE_TITLE:"Nie mo\u017cna utworzy\u0107 s\u0142ownika",COLLECTION_CREATE:"Nie mo\u017cna utworzy\u0107 nowego s\u0142ownika. Spr\xf3buj ponownie.",COLLECTION_CREATE_SUPPORT:' Je\u015bli problem b\u0119dzie si\u0119 powtarza\u0142, skontaktuj si\u0119 z <a href="mailto:{{email}}"><strong>dzia\u0142em wsparcia</strong></a>.',COLLECTION_IMPORT_TITLE:"Nie mo\u017cna do\u0142\u0105czy\u0107 s\u0142ownika",COLLECTION_IMPORT:"Nie mo\u017cna do\u0142\u0105czy\u0107 zbioru termin\xf3w o identyfikatorze {{termId}} do silnika t\u0142umaczenia maszynowego. Spr\xf3buj ponownie.",E_12_TITLE:"Limit rozmiaru tekstu",E_12:"Osi\u0105gni\u0119to limit rozmiaru tekstu. Wy\u015blij mniej tekstu w \u017c\u0105daniu.",E_12_SUPPORT:' Aby zwi\u0119kszy\u0107 limit rozmiaru tekstu, skontaktuj si\u0119 z <a href="mailto:{{email}}"><strong>dzia\u0142em wsparcia</strong></a>.',E_21_TITLE:"Uruchamianie silnika t\u0142umaczenia maszynowego",E_21:"Za chwil\u0119 b\u0119dziesz w stanie t\u0142umaczy\u0107.",E_22_TITLE:"Nie znaleziono silnika t\u0142umaczenia maszynowego",E_22:"Nie znaleziono silnika t\u0142umaczenia maszynowego.",E_22_SUPPORT:' Skontaktuj si\u0119 z <a href="mailto:{{email}}"><strong>dzia\u0142em wsparcia</strong></a>.',E_23:"Silnik t\u0142umaczenia maszynowego nie zosta\u0142 uruchomiony.",E_23_SUPPORT:' Skontaktuj si\u0119 z <a href="mailto:{{email}}"><strong>dzia\u0142em wsparcia</strong></a>.',E_41:"Podano nieznane ID korpusu termin\xf3w. Korpus termin\xf3w musi by\u0107 po\u0142\u0105czony z silnikiem t\u0142umaczenia maszynowego",E_504:"Czynno\u015b\u0107 przekroczy\u0142a limit czasu.",UANUTHORIZED_401:"Nie masz uprawnie\u0144 do korzystania z t\u0142umaczenia maszynowego.",UANUTHORIZED_401_SUPPORT:' Skontaktuj si\u0119 ze<a href="mailto:{{email}}"><strong> wsparciem</strong></a>.',E_UNKNOWN_FILE_TYPE:"Nieznany typ pliku.",E_UNKNOWN_ERROR:"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d.",E_UNAUTHORIZED:"Odmowa t\u0142umaczenia dokumentu.",E_11:"Dzienny limit t\u0142umacze\u0144 zosta\u0142 osi\u0105gni\u0119ty.",E_11_SUPPORT:' Aby zwi\u0119kszy\u0107 dzienny limit, skontaktuj si\u0119 z <a href="mailto:{{email}}"><strong>pomoc\u0105 techniczn\u0105</strong></a>.',FILE_TRANSLATION_SUBSTATUS:{BAD_FILE_ERROR_TITLE:"Nie mo\u017cna przet\u0142umaczy\u0107 pliku",BAD_FILE_ERROR:"Plik jest uszkodzony i nie mo\u017cna go przet\u0142umaczy\u0107. Sprawd\u017a plik i spr\xf3buj ponownie.",NO_TEXT_EXTRACTED_ERROR_TITLE:"Nie mo\u017cna wyodr\u0119bni\u0107 \u017cadnego tekstu",NO_TEXT_EXTRACTED_ERROR:"Plik mo\u017ce by\u0107 pusty. Sprawd\u017a plik i spr\xf3buj ponownie.",TRACK_CHANGES_ENABLED_ERROR_TITLE:"T\u0142umaczenie nie powiod\u0142o si\u0119, poniewa\u017c w\u0142\u0105czono \u201ezmiany \u015bcie\u017cki\u201d",TRACK_CHANGES_ENABLED_ERROR:"Przed t\u0142umaczeniem plik\xf3w pakietu Office nale\u017cy najpierw zaakceptowa\u0107 zmiany lub wy\u0142\u0105czy\u0107 opcj\u0119 \u201e\u015aled\u017a zmiany\u201d.",UNKNOWN_FILE_TYPE_ERROR_TITLE:"Nieznany typ pliku",UNKNOWN_FILE_TYPE_ERROR:"Nie rozpoznano typu pliku. Rozszerzenie pliku mo\u017ce by\u0107 nieprawid\u0142owe lub plik mo\u017ce by\u0107 uszkodzony."},FILE_UPLOAD:{FILE_UPLOAD_EMPTY_TITLE:"Plik jest pusty",FILE_UPLOAD_EMPTY:"Przes\u0142any plik \u201e{{fileName}}\u201d jest pusty. Wybierz plik zawieraj\u0105cy tre\u015b\u0107.",FILE_UPLOAD_MAX_SIZE_TITLE:"Limit rozmiaru pliku",FILE_UPLOAD_MAX_SIZE:"Przes\u0142any plik \u201e{{fileName}}\u201d jest za du\u017cy. Maksymalny rozmiar to {{maxSizeMB}} MB",FILE_UPLOAD_UNSUPPORTED_FORMAT_TITLE:"Nieobs\u0142ugiwany format pliku",FILE_UPLOAD_UNSUPPORTED_FORMAT:"Przes\u0142any plik \u201e{{fileName}}\u201d nie jest obs\u0142ugiwany. Mo\u017cliwe jest t\u0142umaczenie dokument\xf3w w nast\u0119puj\u0105cych formatach: {{formats}}.",FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER_TITLE:"Nieobs\u0142ugiwany format pliku",FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER:'Do przet\u0142umaczenia pliku \u201e{{fileName}}\u201d potrzebna jest subskrypcja Tilde MT. <a href="{{registerLink}}?{{queryString}}">na pocz\u0105tek skorzystaj z bezp\u0142atnej wersji pr\xf3bnej</a>',E_404_TITLE:"Nie znaleziono pliku",E_404:"\u017b\u0105dany plik nie istnieje"},AUDIO:{NO_SPEECH_TITLE:"Brak tekstu m\xf3wionego",NO_SPEECH:"Nagranie zosta\u0142o zatrzymane. Nie s\u0142yszeli\u015bmy ci\u0119.",MAX_TIME_EXCEEDED_TITLE:"Limit tekstu m\xf3wionego",MAX_TIME_EXCEEDED:"Nagranie zosta\u0142o zatrzymane. Limit tekstu m\xf3wionego wynosi {{timeString}}.",MIC_NOT_ALLOWED_TITLE:"Odmowa dost\u0119pu do mikrofonu",MIC_NOT_ALLOWED:"Pojawi\u0142a si\u0119 odmowa dost\u0119pu do mikrofonu. Zmie\u0144 uprawnienia w ustawieniach przegl\u0105darki.",MAX_SIZE_EXCEEDED_TITLE:"Limit tekstu m\xf3wionego",MAX_SIZE_EXCEEDED:"Nagranie zosta\u0142o zatrzymane i wys\u0142ane do przetwarzania. Limit rozmiaru tekstu m\xf3wionego wynosi ({{maxSizeMb}} MB).",CANT_START_RECORDING_TITLE:"Nie mo\u017cna rozpocz\u0105\u0107 nagrywania",CANT_START_RECORDING:"Nie uda\u0142o si\u0119 rozpocz\u0105\u0107 nagrywania. Spr\xf3buj ponownie.",NO_TEXT_RECOGNIZED_Title:"Nie rozpoznano mowy",NO_TEXT_RECOGNIZED:"Nie mo\u017cna rozpozna\u0107 mowy. Sprawd\u017a mikrofon i spr\xf3buj ponownie."}},ARIA_LABELS:{CLOSE_BUTTON:"Wyczy\u015b\u0107",CLEAR_NOTIFICATION:"Zamknij powiadomienie",CLEAR_SOURCE:"Wyczy\u015b\u0107 wprowadzony tekst",CLOSE_DIALOG:"Zamknij okno dialogowe",CLEAR_FILES:"Wyczy\u015b\u0107 przes\u0142ane pliki",SHOW_EXTENSIONS:"Poka\u017c inne opcje pobierania",COPY:"Kopiuj do schowka",OPEN_IN_NEW:"Otw\xf3rz w nowej karcie",SWAP_LANGUAGES:"Zamie\u0144 j\u0119zyki",OTHER_LANGUAGES_TRIGGER:"Poka\u017c inne j\u0119zyki"},TOOLTIPS:{COPY:"Kopiuj do schowka",SWAP_LANGUAGES:"Zamie\u0144 j\u0119zyki"},PDF_CONVERSION:{TITLE_1:"T\u0142umaczenie PDF",PARAGRAPH_1_1:"Kiedy plik .pdf przesy\u0142any do t\u0142umaczenia jest konwertowany na format, kt\xf3ry mo\u017cna przet\u0142umaczy\u0107. Obs\u0142ugiwane s\u0105 zar\xf3wno zeskanowane, jak i natywne pliki .pdf. T\u0142umaczenia mog\u0105 by\u0107 pobrane w formatach .docx, .tmx lub .pdf i zachowaj\u0105 podstawowe formatowanie. Formatowanie w przet\u0142umaczonych plikach .docx i .pdf mo\u017ce si\u0119 nieznacznie r\xf3\u017cni\u0107. ",PARAGRAPH_1_2:"Poniewa\u017c konwersja wymaga czasu, aby j\u0105 przyspieszy\u0107, podziel swoje pliki .pdf i usu\u0144 strony, na kt\xf3rych nie ma informacji, kt\xf3re mo\u017cna przet\u0142umaczy\u0107. Na czas przetwarzania wp\u0142ywaj\u0105 czynniki, takie jak liczba stron, jako\u015b\u0107 i g\u0119sto\u015b\u0107 tekstu.",PARAGRAPH_1_3:"Aby poprawi\u0107 wydajno\u015b\u0107 t\u0142umaczenia, zalecamy pobranie przekonwertowanego dokumentu w oryginalnym j\u0119zyku i r\u0119czne poprawienie go przed ponownym przes\u0142aniem do t\u0142umaczenia.",IMAGE_ALT_1:"Przyk\u0142ad pobrania \u017ar\xf3d\u0142owego pliku PDF",TITLE_2:"Konwersja PDF",PARAGRAPH_2_1:"Dokument jest analizowany, a jego zawarto\u015b\u0107 dzielona na obszary tekstu, tabeli i obrazu/obrazu t\u0142a. Nast\u0119pnie ca\u0142o\u015b\u0107 jest analizowana w celu okre\u015blenia, kt\xf3re tre\u015bci powinny by\u0107 rozpoznawane jako tekst.",PARAGRAPH_2_2:"Dane tekstowe s\u0105 pozyskiwane za pomoc\u0105 OCR, czyli optycznego rozpoznawania znak\xf3w. Ka\u017cdy znak jest rozpoznawany w zale\u017cno\u015bci od jego wizualnej charakterystyki, a nast\u0119pnie sk\u0142adany w s\u0142owa i zdania.",PARAGRAPH_2_3:"Na rozpoznawanie ma wp\u0142yw wiele czynnik\xf3w, w tym:",LI_1_1:"Jako\u015b\u0107 zeskanowanego dokumentu (zamazany lub zniekszta\u0142cony tekst, szumy w obrazie, rozdzielczo\u015b\u0107 obrazu, kontrast itp.) Aby uzyska\u0107 najlepszy wynik, pliki .pdf powinny mie\u0107 rozdzielczo\u015b\u0107 co najmniej 300 dpi, by\u0107 symetryczne i pozbawione szum\xf3w.",LI_1_2:"Rozmiar czcionki. Rozmiary mniejsze ni\u017c 9 punkt\xf3w mog\u0105 by\u0107 s\u0142abo rozpoznawane. ",LI_1_3:"Rzadkie i oryginalne czcionki. Mniej popularne czcionki mog\u0105 by\u0107 nierozpoznawalne lub dzia\u0142a\u0107 gorzej.",LI_1_4:"Z\u0142o\u017cono\u015b\u0107 struktury i formatowania dokumentu",TITLE_3:"Poprawa wydajno\u015bci t\u0142umaczenia",PARAGRAPH_3_1:"Proces konwersji jest bardzo z\u0142o\u017cony i mog\u0105 na niego wp\u0142ywa\u0107 r\xf3\u017cne b\u0142\u0119dy wynikaj\u0105ce z dokumentu wej\u015bciowego. ",PARAGRAPH_3_2:"Kwestie, na kt\xf3re nale\u017cy zwr\xf3ci\u0107 uwag\u0119:",LI_2_1:"Nieprawid\u0142owo rozpoznane s\u0142owa.",LI_2_2:"Nieprawid\u0142owe granice wyraz\xf3w.",LI_2_3:"Zdania obejmuj\u0105ce wiele kolumn, wierszy lub stron podzielone na r\xf3\u017cne obiekty tekstowe.",LI_2_4:"B\u0142\u0119dnie rozmieszczone stopki i nag\u0142\xf3wki stron.",LI_2_5:"Nieprawid\u0142owa numeracja.",LI_2_6:"Tabele rozpoznane jako obrazy t\u0142a z zawarto\u015bci\u0105 tekstow\u0105 umieszczon\u0105 w r\xf3\u017cnych obiektach tekstowych.",LI_2_7:"Niekt\xf3re wykresy rozpoznane jako obrazy bez zawarto\u015bci tekstowej.",LI_2_8:"Separatory, obramowania lub inne linie poziome rozpoznawane jako przekre\u015blenie lub podkre\u015blenie tekstu.",LI_2_9:"Formatowanie spisu tre\u015bci lub podobnych list zawalonych lub rozpoznawanych jako przekre\u015blenie lub podkre\u015blenie tekstu.",PARAGRAPH_4_1:"<b>Nale\u017cy pami\u0119ta\u0107, \u017ce w dokumencie docelowym nie zostan\u0105 zachowane wszystkie szczeg\xf3\u0142y oryginalnego formatowania.</b> Niekt\xf3re obrazy, tabele lub diagramy mog\u0105 zosta\u0107 zniekszta\u0142cone lub uproszczone. Czcionki w przet\u0142umaczonym dokumencie nie b\u0119d\u0105 takie same jak w oryginale, ale mog\u0105 by\u0107 podobne. Rozpoznany mo\u017ce by\u0107 nieprawid\u0142owy rozmiar czcionki. Specyficzne formatowanie Worda obejmuj\u0105ce dzia\u0142y, spisy tre\u015bci, nag\u0142\xf3wki i stopki, etykiety, formularze itp. b\u0119d\u0105 stylizowane tak, aby wygl\u0105da\u0142y jak orygina\u0142, ale nie b\u0119d\u0105 ca\u0142kowicie zgodne z orygina\u0142em (np. tytu\u0142y b\u0119d\u0105 pogrubione i zapisane wi\u0119ksz\u0105 czcionk\u0105, ale nie b\u0119d\u0105 ustawione jako styl nag\u0142\xf3wka).",CLOSE:"Zamknij okno dialogowe"},IMAGE_CONVERSION:{TITLE_1:"T\u0142umaczenie obrazu",PARAGRAPH_1_1:"Obraz przesy\u0142any do t\u0142umaczenia jest konwertowany na format, kt\xf3ry mo\u017cna przet\u0142umaczy\u0107. T\u0142umaczenia mog\u0105 by\u0107 pobrane w formatach .docx, lub .tmx i zachowaj\u0105 podstawowe formatowanie.",PARAGRAPH_1_2:"<b>Obs\u0142ugiwane formaty obraz\xf3w: </b> jpg,. jpeg,. png i. bmp.",PARAGRAPH_1_3:"Aby poprawi\u0107 wydajno\u015b\u0107 t\u0142umaczenia, zalecamy pobranie przekonwertowanego dokumentu w oryginalnym j\u0119zyku i r\u0119czne poprawienie go przed ponownym przes\u0142aniem do t\u0142umaczenia.",IMAGE_ALT_1:"Przyk\u0142ad pobierania obrazu \u017ar\xf3d\u0142owego",TITLE_2:"Konwersja obrazu",PARAGRAPH_2_1:"Obraz jest analizowany, a jego zawarto\u015b\u0107 dzielona na obszary tekstu, tabeli i obrazu/obrazu t\u0142a. Nast\u0119pnie ca\u0142o\u015b\u0107 jest analizowana w celu okre\u015blenia, kt\xf3re tre\u015bci powinny by\u0107 rozpoznawane jako tekst.",PARAGRAPH_2_2:"Dane tekstowe s\u0105 pozyskiwane za pomoc\u0105 OCR, czyli optycznego rozpoznawania znak\xf3w. Ka\u017cdy znak jest rozpoznawany w zale\u017cno\u015bci od jego wizualnej charakterystyki, a nast\u0119pnie sk\u0142adany w s\u0142owa i zdania.",PARAGRAPH_2_3:"Na rozpoznawanie ma wp\u0142yw wiele czynnik\xf3w, w tym:",LI_1_1:"Jako\u015b\u0107 zeskanowanego obrazu (zamazany lub zniekszta\u0142cony tekst, szumy w obrazie, rozdzielczo\u015b\u0107 obrazu, kontrast itp.). Aby uzyska\u0107 najlepszy wynik, obrazy powinny mie\u0107 rozdzielczo\u015b\u0107 co najmniej 300 dpi, by\u0107 symetryczne i pozbawione szum\xf3w.",LI_1_2:"Rozmiar czcionki. Rozmiary mniejsze ni\u017c 9 punkt\xf3w mog\u0105 by\u0107 s\u0142abo rozpoznawane. ",LI_1_3:"Rzadkie i oryginalne czcionki. Mniej popularne czcionki mog\u0105 by\u0107 nierozpoznawalne lub dzia\u0142a\u0107 gorzej.",LI_1_4:"Z\u0142o\u017cono\u015b\u0107 struktury i formatowania dokumentu.",TITLE_3:"Poprawa wydajno\u015bci t\u0142umaczenia",PARAGRAPH_3_1:"Proces konwersji jest bardzo z\u0142o\u017cony i mog\u0105 na niego wp\u0142ywa\u0107 r\xf3\u017cne b\u0142\u0119dy wynikaj\u0105ce z dokumentu wej\u015bciowego. ",PARAGRAPH_3_2:"Kwestie, na kt\xf3re nale\u017cy zwr\xf3ci\u0107 uwag\u0119:",LI_2_1:"Nieprawid\u0142owo rozpoznane s\u0142owa.",LI_2_2:"Nieprawid\u0142owe granice wyraz\xf3w.",LI_2_3:"Zdania obejmuj\u0105ce wiele kolumn, wierszy lub stron podzielone na r\xf3\u017cne obiekty tekstowe.",LI_2_4:"B\u0142\u0119dnie rozmieszczone stopki i nag\u0142\xf3wki stron.",LI_2_5:"Nieprawid\u0142owa numeracja.",LI_2_6:"Tabele rozpoznane jako obrazy t\u0142a z zawarto\u015bci\u0105 tekstow\u0105 umieszczon\u0105 w r\xf3\u017cnych obiektach tekstowych.",LI_2_7:"Niekt\xf3re wykresy rozpoznane jako obrazy bez zawarto\u015bci tekstowej.",LI_2_8:"Separatory, obramowania lub inne linie poziome rozpoznawane jako przekre\u015blenie lub podkre\u015blenie tekstu.",PARAGRAPH_4_1:"<b>Nale\u017cy pami\u0119ta\u0107, \u017ce w dokumencie docelowym nie zostan\u0105 zachowane wszystkie szczeg\xf3\u0142y oryginalnego formatowania.</b> Niekt\xf3re obrazy, tabele lub diagramy mog\u0105 zosta\u0107 zniekszta\u0142cone lub uproszczone. Czcionki w przet\u0142umaczonym dokumencie nie b\u0119d\u0105 takie same jak w oryginale, ale mog\u0105 by\u0107 podobne. Rozpoznany mo\u017ce by\u0107 nieprawid\u0142owy rozmiar czcionki.",CLOSE:"Zamknij okno dialogowe"},WEBTRANSLATE:{BACK:"Powr\xf3t do translatora",ADDRESS:"Adres",LOAD_PAGE:"Za\u0142aduj stron\u0119",RESTORE:"Przywr\xf3\u0107",CANCEL:"Anuluj"},TERM_COLLECTIONS:{MT_ENTRY_COUNT:"Zaimportowano: {{count}}",TITLE:"Wybieranie, edytowanie i zarz\u0105dzanie s\u0142ownikami",TITLE_EMPTY:"Utw\xf3rz sw\xf3j pierwszy s\u0142ownik",TITLE_MOBILE:"Wybierz s\u0142owniki",DESCRIPTION_1:"Wybierz zbi\xf3r termin\xf3w, kt\xf3ra ma by\u0107 u\u017cywana w tym projekcie. ",DESCRIPTION_2:" Mo\u017cesz doda\u0107 nowe zbiory i edytowa\u0107 istniej\u0105ce",DESCRIPTION_2_MOBILE:" U\u017cyj wersji komputerowej do tworzenia nowych zbior\xf3w lub edycji istniej\u0105cych.",DESCRIPTION_EMPTY:"Mo\u017cesz precyzyjnie skonfigurowa\u0107 spos\xf3b, w jaki aplikacja {{appName}} ma przet\u0142umaczy\u0107 s\u0142owa i frazy specyficzne dla Twojej firmy lub bran\u017cy, dodaj\u0105c je do unikatowych zbior\xf3w termin\xf3w.",DESCRIPTION_EMPTY_MOBILE:"U\u017cyj wersji komputerowej, aby skonfigurowa\u0107 dok\u0142adnie spos\xf3b, w jaki Tilde MT ma przet\u0142umaczy\u0107 s\u0142owa i frazy specyficzne dla Twojej firmy lub bran\u017cy, dodaj\u0105c je do unikatowych zbior\xf3w termin\xf3w.",PROMOTION:{TITLE:"Tworzenie, edytowanie i zarz\u0105dzanie s\u0142ownikami",DESCRIPTION:"Cz\u0142onkowie Tilde MT maj\u0105 dost\u0119p do s\u0142ownik\xf3w.",START_TRIAL:"Na pocz\u0105tek skorzystaj z bezp\u0142atnego okresu pr\xf3bnego",LEARN_MORE:"Dowiedz si\u0119 wi\u0119cej o s\u0142ownikach"},GLOSSARY:"Glosariusz: ",SELECTED_NONE:"Brak",EDIT:"Edytuj",CREATE:"Nowy glosariusz",ENTRY_COUNT:"Wpisy: {{count}}",ENTRY_COUNT_WITH_LANGUGAES:"Wpisy: {{count}} [{{languages}}]",DEFAULT_COLLECTION_NAME:"M\xf3j zbi\xf3r termin\xf3w",SYNC:"Synchronizuj",SYNC_ERROR:"Spr\xf3buj ponownie",ARIA_LABELS:{RADIO_GROUP:"Wybierz zbi\xf3r termin\xf3w",OTHER_COLLECTIONS:"Otw\xf3rz menu zbioru"},CREATE_DIALOG:{CANCEL:"Anuluj",COLLECTION_NAME_LABEL:"Nazwa zbioru termin\xf3w",CREATE:"Utw\xf3rz",DESCRIPTION_1:"Po nazwaniu swojego zbioru termin\xf3w nast\u0105pi przekierowanie do Tilde Term, aby doda\u0107 nowe terminy. Po wykonaniu tej czynno\u015bci wr\xf3\u0107 do Tilde MT, aby u\u017cywa\u0107 ich w swoich projektach t\u0142umaczeniowych.",DESCRIPTION_2:"<i>* SI nie jest idealna i mog\u0105 wyst\u0119powa\u0107 b\u0142\u0119dy. Twoje unikalne terminy b\u0119d\u0105 u\u017cywane prawid\u0142owo z dok\u0142adno\u015bci\u0105 na poziomie 95%.</i>",TITLE:"Utw\xf3rz nowy glosariusz",COLLECTION_NAME_ERROR:"Tytu\u0142 powinien mie\u0107 minimaln\u0105 liczb\u0119 symboli wynosz\u0105c\u0105 {{minLength}} oraz nie wi\u0119ksz\u0105 ni\u017c {{maxLength}}"},TOOLTIPS:{MT_ENTRY_COUNT:"Liczba wpis\xf3w u\u017cywanych do t\u0142umaczenia maszynowego",EDIT:"Nast\u0105pi przekierowanie do portalu z terminologi\u0105, kt\xf3ry otworzy si\u0119 w nowej zak\u0142adce",ENTRY_COUNT:"Liczba wpis\xf3w dodana w zbiorze termin\xf3w",IMPORTING:"Zbi\xf3r termin\xf3w jest importowany i do momentu zako\u0144czenia importu nie mo\u017cna z niego korzysta\u0107.",NO_ENTRIES:"Nie mo\u017cna korzysta\u0107 ze zbioru termin\xf3w, poniewa\u017c dla j\u0119zyka \u017ar\xf3d\u0142owego nie ma termin\xf3w",SYNC:"Zaktualizuj zbi\xf3r termin\xf3w",SYNCING:"Zbi\xf3r termin\xf3w jest synchronizowany i zostanie u\u017cyta ostatnia zsynchronizowana wersja zbioru",ATTACH_TO_SYSTEM_ERROR:"Wyst\u0105pi\u0142 b\u0142\u0105d podczas importowania zbioru termin\xf3w"}},DOMAINS:{OPEN_LIST_ARIA_LABEL:"Otw\xf3rz list\u0119 domen",TITLE:"Domena:",GENERAL:"Og\xf3lne",AUTO:"Automatyczne wykrywanie",LAW:"Prawo",DYNAMIC_LEARNING:"Dynamiczne uczenie si\u0119",BUSINESS:"Biznes"},GRAMMAR_CHECK_MENU:{TITLE:"Rozwa\u017c zmian\u0119 na:"},AUDIO:{CANCEL:"Anuluj",DESCRIBE_STATE_RECORDING:"Zacznij nagrywa\u0107 mow\u0119\u2026",DESCRIBE_STATE_PROCESSING:"Trwa przetwarzanie\u2026",MIC_NOT_FOUND:"Nie znaleziono mikrofonu",STOP:"Zatrzymaj nagrywanie",START:"T\u0142umacz mow\u0119",PUNCTUATION_MESSAGE_TITLE:"Dodaj interpunkcj\u0119",PUNCTUATION_MESSAGE:"Dodaj interpunkcj\u0119 do rozpoznanego tekstu. D\u0142ugi tekst bez interpunkcji mo\u017ce mie\u0107 ni\u017csz\u0105 jako\u015b\u0107 t\u0142umaczenia lub nie zosta\u0107 przet\u0142umaczony"},EXTENSION_POPUP:{OPEN:"zobacz wszystkie obs\u0142ugiwane formaty",TITLE:"Obs\u0142ugiwane formaty plik\xf3w",DESCRIPTION:"Konieczne jest kodowanie UTF-8 lub UTF-16 w celu zapewnienia prawid\u0142owego t\u0142umaczenia pliku",OFFICE:"Office",SCANNED:"Zeskanowane pliki",INTERCHANGE:"Formaty wymiany",WEB:"Sie\u0107 Web",OTHER:"Inne"},FILE_UPLOAD:{UPLOAD:"Wybierz",DRAG_AND_DROP:"lub przeci\u0105gnij i upu\u015b\u0107 ",FILE:"plik",FILES:"pliki",LIMITS:" ({{visibleExtensions}}. Maks. {{maxSizeMB}} MB)"},TEXT_TO_SPEECH:{PLAY:"S\u0142uchaj"}},sv:{APP_NAME:"Tilde MT",TLD_TRANSLATE:{PDF_PAGE_LIMIT_MSG:'I pdf-filer kommer endast den f\xf6rsta sidan att \xf6vers\xe4ttas. \xd6vers\xe4ttning av ett helt dokument st\xf6ds f\xf6r registrerade anv\xe4ndare, beg\xe4r \xe5tkomst <a href="{{registerLink}}">h\xe4r</a>.',SOURCE_TOOLTIP_ONLY_TEXT:"Skriv in texten du vill \xf6vers\xe4tta.",REGISTERED_FORMATS_LOGGED_IN:"Registrerade anv\xe4ndare har tillg\xe5ng till \xf6vers\xe4ttning av f\xf6ljande dokumentformat: {{formats}}.",REGISTERED_FORMATS:'Registrerade anv\xe4ndare har tillg\xe5ng till \xf6vers\xe4ttning av f\xf6ljande dokumentformat: {{formats}}. Beg\xe4r \xe5tkomst <a class="accent-color" target="blank" href="{{registerLink}}">h\xe4r</a>.',SOURCE_FORMATS:"S\xe4ker offentlig \xf6vers\xe4ttningstj\xe4nst st\xf6der f\xf6ljande dokumentformat: {{formats}};",BEST_NMT:"Stolt vinnare av t\xe4vlingen WMT Competition f\xf6r b\xe4sta maskin\xf6vers\xe4ttningsteknik tre \xe5r i rad.",BEST_NMT_MORE:"L\xe4s mer",CANCEL_TRANSLATION:"Avbryt",DICTIONARY_EXAMPLES:"exempel",DOC_WORD_CNT_LIMIT_MSG:'Du har \xf6verskridit antalet gratis \xf6vers\xe4ttningsord ({{wordCount}} ord) Registrera dig som anv\xe4ndare f\xf6r att kunna \xf6vers\xe4tta ett helt dokument. <a href="{{registerLink}}">Beg\xe4r anv\xe4ndarr\xe4ttigheter</a>',DOWNLOAD_TRANSLATED:"Ladda ned",DOMAINS_ARIA_LABEL:"\xc4mnesomr\xe5den",ERROR_NO_SYSTEMS_LOADED:"Inget system kunde laddas.",FILE_DOWNLOAD_SOURCE:"Ladda ned konverterad k\xe4lltext",FILE_TANSLATION_STATUSS_INITIALIZING:"F\xf6rbereds",FILE_TANSLATION_STATUSS_EXTRACTING:"Extraheras",FILE_TANSLATION_STATUSS_WAITING:"V\xe4ntar",FILE_TANSLATION_STATUSS_TRANSLATING:"\xd6vers\xe4tts",FILE_TANSLATION_STATUSS_SAVING:"Sparas",FILE_TANSLATION_STATUSS_COMPLETED:"Klar",FILE_TANSLATION_STATUSS_ERROR:"Fel",FILE_TANSLATION_STATUSS_QUEUING:"I k\xf6",FILE_TARGET_PREVIEW_MESSAGE:"Detta \xe4r en f\xf6rhandsvisning av det \xf6versatta dokumentet. Ladda ned hela \xf6vers\xe4ttningen.",FROM:"Fr\xe5n:",PDF_DISCLAIMER_LINK:"L\xe4s om konvertering av pdf-dokument.",PREPARING_TRANSLATION:"F\xf6rbereder \xf6vers\xe4ttning",SOURCE_WORD_LIMIT:" \xd6vers\xe4ttningsm\xe4ngden \xe4r begr\xe4nsad till {{limit}} ord.",SOURCE_TOOLTIP:"Fyll i text eller adressen till en webbsida som du vill \xf6vers\xe4tta.",SOURCE_TOOLTIP_SENSITIVE_INFO:"Anv\xe4nd inte {{appName}} f\xf6r att \xf6vers\xe4tta texter som inneh\xe5ller sekretessbelagd eller s\xe4kerhetsklassificerad information eller s\xe4rskilda kategorier av personuppgifter (t.ex. h\xe4lsouppgifter).",TARGET_DESCRIPTION:"En maskin\xf6vers\xe4ttning kan g\xf6ra det m\xf6jligt att f\xf6rst\xe5 en k\xe4lltexts inneh\xe5ll, men den kan inte ers\xe4tta en \xf6vers\xe4ttning gjord av en m\xe4nniska.",TO:"Till:",TEXT_COPIED:"\xd6vers\xe4ttningen kopierad",SUGGEST_BUTTON:"F\xf6resl\xe5 \xf6vers\xe4ttning",SUGGEST_ORIGINAL_LABEL:"Ursprunglig mening",SUGGEST_SUBMIT_BUTTON:"S\xe4nd",SUGGEST_TRANSLATION_LABEL:"\xd6vers\xe4ttning",SUGGEST_USAGE_INFO:"Ditt anonyma \xf6vers\xe4ttningsf\xf6rslag anv\xe4nds f\xf6r att f\xf6rb\xe4ttra maskin\xf6vers\xe4ttningarnas kvalitet.",TOOLTIP_ACTION:"\xd6vers\xe4tt",UPLOAD_FILE_BUTTON:"Ladda upp eller dra fil hit",UPLOAD_FILES_BUTTON:"Ladda upp eller dra filer hit",VENDORS_ARIA_LABEL:"Tj\xe4nsteleverant\xf6rer",WORD_TYPE_ADJECTIVE:"adjektiv",WORD_TYPE_NOUN:"substantiv",WORD_TYPE_VERB:"verb",WORD_TYPE_ADVERB:"adverb",WORD_TYPE_CONJUNCTION:"konjunktion",WORD_TYPE_INTERJECTION:"interjektion",WORD_TYPE_PRONOUN:"pronomen"},MULTIPLE_FILES:{APPEND:"L\xe4gg till filer",CLEAR_ALL:"Avbryt",DOWNLOAD:"Ladda ned",STATUSS_INITIALIZING:"F\xf6rbereds",STATUSS_EXTRACTING:"Extraheras",STATUSS_WAITING:"V\xe4ntar",STATUSS_TRANSLATING:"\xd6vers\xe4tts",STATUSS_SAVING:"Sparas",STATUSS_COMPLETED:"Klar",STATUSS_ERROR:"Fel",STATUSS_QUEUING:"I k\xf6",STATUSS_NOT_STARTED:"Uppladdad",TITLE_FILE_NAME:"Fil",TITLE_STATUSS:"Status",TRANSLATION_STATUSS_LABEL:"Status",PDF_DISCLAIMER:"Konverteringen av pdf-dokument kan orsaka formateringsfel eller f\xf6rvr\xe4ngning av texten. N\xe4r texten \xe4r \xf6versatt, v\xe4lj \u201dLadda ned konverterad k\xe4lltext\u201d i menyn, kontrollera texten och korrigera eventuella fel innan du laddar upp texten p\xe5 nytt f\xf6r \xf6vers\xe4ttning.",PDF_DISCLAIMER_LINK:"L\xe4s mer om konvertering av pdf-dokument.",SCREEN_READER_ANNOUNCEMENT:"{{translated}} av {{total}} filer har \xf6versatts."},ERRORS:{ERROR_DEFAULT:"Ett ov\xe4ntat fel intr\xe4ffade. F\xf6rs\xf6k p\xe5 nytt.",ERROR_DEFAULT_SUPPORT:' Om problemet kvarst\xe5r, kontakta <a href="mailto:{{email}}"><strong>supporten</strong></a>.',MAX_CHAR_LENGTH:"Du har lagt till {{totalSymbols}} tecken, men det h\xf6gsta till\xe5tna teckenantalet \xe4r {{maxCharLength}}. Din text f\xf6rkortas.",FILE_ALREADY_ADDED:"En fil med namnet {{fileName}} har redan lagts till.",UANUTHORIZED_401:"Du saknar r\xe4ttigheter att anv\xe4nda maskin\xf6vers\xe4ttningsverktyget.",UANUTHORIZED_401_SUPPORT:' Kontakta <a href="mailto:{{email}}"><strong>supporten</strong></a>.',E_UNKNOWN_FILE_TYPE:"Ok\xe4nt filformat.",E_CANNOT_READ_FILE:"Filen kunde inte l\xe4sas. Filen kan vara skadad.",E_FAILED_IN_TRANSLATION:"Det uppstod ett fel under \xf6vers\xe4ttningen.",E_FORMAT_TRACK_CHANGES:"\xd6vers\xe4ttningen misslyckades, eftersom sp\xe5ra \xe4ndringar-funktionen var p\xe5kopplad. Alla \xe4ndringar m\xe5ste f\xf6rst godk\xe4nnas.",E_UNKNOWN_ERROR:"Ett ok\xe4nt fel uppstod.",E_UNAUTHORIZED:"\xd6vers\xe4ttningen av dokumentet hindrades.",COLLECTION_CREATE:"Det gick inte att skapa en ny termbank. F\xf6rs\xf6k igen.",COLLECTION_CREATE_SUPPORT:' Kontakta <a href="mailto:{{email}}"><strong>support</strong></a> om problemet kvarst\xe5r.',COLLECTION_IMPORT:"Det gick inte att bifoga termbanken med id: {{termId}}.",E_11:"Daglig \xf6vers\xe4ttningsgr\xe4ns har n\xe5tts.",E_11_SUPPORT:' F\xf6r att h\xf6ja den dagliga gr\xe4nsen, kontakta <a href="mailto:{{email}}"><strong>support</strong></a>.',E_12:"Maximal textm\xe4ngd har uppn\xe5tts. Skicka kortare text i en f\xf6rfr\xe5gan.",E_12_SUPPORT:' Om du vill h\xf6ja gr\xe4nsen f\xf6r textm\xe4ngden kontaktar du <a href="mailto:{{email}}"><strong>support</strong></a>.',E_21:"Systemet startar. Du kommer att kunna \xf6vers\xe4tta alldeles strax.",E_22:"\xd6vers\xe4ttningssystem hittades inte.",E_22_SUPPORT:' Kontakta <a href="mailto:{{email}}"><strong>support</strong></a>.',E_23:"Systemet har inte startats.",E_23_SUPPORT:' Starta systemet f\xf6r att \xf6vers\xe4tta eller kontakta <a href="mailto:{{email}}"><strong>support</strong></a>.',E_41:"Ok\xe4nt termbank-ID har angetts.",E_41_SUPPORT:' Ange det termbank-ID som tillh\xf6r systemet eller kontakta <a href="mailto:{{email}}"><strong>support</strong></a>.',FILE_UPLOAD:{FILE_UPLOAD_EMPTY:'Filen "{{fileName}}\u201d \xe4r tom. V\xe4lj en fil som inte \xe4r tom.',FILE_UPLOAD_MAX_SIZE:'Filen "{{fileName}}\u201d \xe4r f\xf6r stor. Den maximala filstorleken \xe4r {{maxSizeMB}}.',FILE_UPLOAD_UNSUPPORTED_FORMAT:'Filformatet f\xf6r filen "{{fileName}}\u201d kunde inte identifieras. \xd6vers\xe4ttningsverktyget st\xf6der f\xf6ljande filformat: {{formats}}.'}},RATING:{},LANGUAGES:{AR:"Arabiska",BE:"Belarusiska",BG:"Bulgariska",CS:"Tjeckiska",DA:"Danska",DE:"Tyska",EL:"Grekiska",EN:"Engelska",ES:"Spanska",ET:"Estniska",FI:"Finska",FR:"Franska",GA:"Iriska",HR:"Kroatiska",HU:"Ungerska",IS:"Isl\xe4ndska",IT:"Italienska",JA:"Japanska",KA:"Georgiska",KO:"Koreanska",LT:"Litauiska",LV:"Lettiska",MO:"Moldaviska",MT:"Maltesiska",NB:"Norska",NL:"Nederl\xe4ndska",PL:"Polska",PT:"Portugisiska",RO:"Rum\xe4nska",RU:"Ryska",SK:"Slovakiska",SR:"Serbiska",SL:"Slovenska",SV:"Svenska",TR:"Turkiska",UK:"Ukrainska",ZH:"Kinesiska"},ARIA_LABELS:{CLOSE_BUTTON:"St\xe4ng",CLEAR_NOTIFICATION:"St\xe4ng",CLEAR_SOURCE:"Rensa text",CLOSE_DIALOG:"St\xe4ng",CLEAR_FILES:"Rensa filer",SHOW_EXTENSIONS:"Visa andra nedladdningsalternativ"},TOOLTIPS:{COPY:"Kopiera till urklipp",SWAP_LANGUAGES:"Byt spr\xe5kriktning"},PDF_CONVERSION:{TITLE_1:"\xd6vers\xe4ttning av pdf-dokument",PARAGRAPH_1_1:"N\xe4r en pdf-fil laddas upp f\xf6r att \xf6vers\xe4ttas, konverteras den f\xf6rst till ett format som sj\xe4lva \xf6vers\xe4ttningsverktyget kan hantera. B\xe5de pdf-filer med skannad text och vanliga textdokument sparade i pdf-format kan konverteras. Den f\xe4rdiga \xf6vers\xe4ttningen kan laddas ned i docx-, tmx- eller pdf-format och bevarar grundl\xe4ggande formatering. Formateringen kan skilja sig lite mellan docx- och pdf-filer. ",PARAGRAPH_1_2:"Konverteringen av pdf-filerna g\xe5r snabbare, om du delar upp filerna i mindre delar och tar bort sidor som inte beh\xf6ver \xf6vers\xe4ttas. Antalet sidor samt textens kvalitet och t\xe4thet inverkar p\xe5 hur l\xe5ng tid det tar.",PARAGRAPH_1_3:"F\xf6r att maskin\xf6vers\xe4ttningen ska bli s\xe5 bra som m\xf6jligt rekommenderar vi att du efter konverteringen laddar ned den konverterade k\xe4lltexten, korrigerar texten manuellt och sedan laddar upp det korrigerade dokumentet f\xf6r att \xf6vers\xe4ttas.",IMAGE_ALT_1:"Exempel p\xe5 nedladdning av konverterad k\xe4lltext",TITLE_2:"Konvertering av pdf-fil",PARAGRAPH_2_1:"Dokumentet analyseras och dess inneh\xe5ll delas upp i text, tabeller och bilder/bakgrundsbild. Dessa analyseras n\xe4rmare f\xf6r att best\xe4mma vilken del av inneh\xe5llet som ska k\xe4nnas igen som text.",PARAGRAPH_2_2:"Texten l\xe4ses med hj\xe4lp av optisk teckenigenk\xe4nning (OCR). Varje tecken k\xe4nns igen utifr\xe5n dess visuella egenskaper, och tecknen s\xe4tts sedan samman till ord och meningar.",PARAGRAPH_2_3:"Igenk\xe4nningen p\xe5verkas av m\xe5nga faktorer, bland annat f\xf6ljande:",LI_1_1:"Ett skannat dokuments kvalitet (otydlig eller deformerad text, brus, resolution, kontrast osv.) F\xf6r b\xe4sta m\xf6jliga resultat ska pdf-dokument ha en resolution p\xe5 minst 300 dpi samt vara raka och brusfria.",LI_1_2:"Teckenstorlek. Igenk\xe4nningen fungerar s\xe4mre, om teckenstorleken \xe4r mindre \xe4n 9. ",LI_1_3:"Ovanliga och s\xe4regna teckensnitt. Med mindre vanliga teckensnitt kan teckenigenk\xe4nningen fungera s\xe4mre eller inte alls.",LI_1_4:"Hur komplex dokumentets struktur och formatering \xe4r.",TITLE_3:"Att notera f\xf6r b\xe4ttre \xf6vers\xe4ttningsresultat",PARAGRAPH_3_1:"Konverteringsprocessen \xe4r mycket komplex, och den kan p\xe5verkas av olika slags fel i det ursprungliga dokumentet. ",PARAGRAPH_3_2:"M\xf6jliga fel som kan uppkomma under processen:",LI_2_1:"Ord identifieras p\xe5 ett felaktigt s\xe4tt.",LI_2_2:"Gr\xe4nserna mellan ord blir felaktiga.",LI_2_3:"Meningar str\xe4cker sig \xf6ver flera kolumner, eller rader och sidor delas upp i olika textobjekt.",LI_2_4:"Sidhuvuden och sidf\xf6tter blir felplacerade.",LI_2_5:"Numreringen blir felaktig.",LI_2_6:"Textinneh\xe5ll i tabeller som har identifierats som bakgrundsbilder placeras i olika textobjekt.",LI_2_7:"Vissa diagram identifieras som bilder utan textinneh\xe5ll.",LI_2_8:"Avgr\xe4nsare, kanter eller andra v\xe5gr\xe4ta linjer identifieras som \xf6verstruken eller understruken text.",LI_2_9:"Inneh\xe5llsf\xf6rteckningar eller andra f\xf6rteckningar krymps ihop eller identifieras som \xf6verstruken eller understruken text.",PARAGRAPH_4_1:"<b>Notera att det konverterade dokumentet inte helt och h\xe5llet beh\xe5ller sin ursprungliga formatering.</b> Bilder, tabeller eller figurer kan f\xf6rvr\xe4ngas eller f\xf6renklas. Teckensnittet i \xf6vers\xe4ttningen \xe4r inte detsamma som i det ursprungliga dokumentet, men det kan vara likartat. Teckenstorleken kan \xe4ndras. Vissa formateringar i Word, s\xe5som rubriker, inneh\xe5llsf\xf6rteckningar, sidhuvuden och sidf\xf6tter, symboler, blanketter osv. formateras s\xe5 att de ser ut som i det ursprungliga dokumentet, men inte helt motsvarar den ursprungliga formateringen (till exempel rubriker \xe4r skrivna med fet stil och st\xf6rre teckenstorlek, men inte med s\xe4rskilt rubrikformat).",CLOSE:"St\xe4ng "},WEBTRANSLATE:{BACK:"\xc5terg\xe5 till maskin\xf6vers\xe4ttaren",ADDRESS:"Adress",LOAD_PAGE:"Ladda sidan",RESTORE:"\xc5terst\xe4ll",CANCEL:"Avbryt",ORIGINAL:"Original",CLOSE:"St\xe4ng"},TERM_COLLECTIONS:{TITLE:"Hantera ordlistor",TITLE_EMPTY:"Skapa ordlistor",DESCRIPTION_1:"V\xe4lj vilken termbank som ska anv\xe4ndas f\xf6r detta \xf6vers\xe4ttningsprojekt. ",DESCRIPTION_2:"Du kan ocks\xe5 redigera befintliga termbanker och l\xe4gga till nya.",GLOSSARY:"Ordlista: ",SELECTED_NONE:"Ingen",EDIT:"Redigera",CREATE:"Ny ordlista",DESCRIPTION_EMPTY:"Du kan skapa unika termbanker f\xf6r varje dom\xe4n och projekt f\xf6r att definiera hur specifika ord och fraser \xf6vers\xe4tts.",DESCRIPTION_EMPTY_MOBILE:"Anv\xe4nd skrivbordsversionen f\xf6r att skapa unika termbanker f\xf6r varje dom\xe4n och projekt f\xf6r att definiera hur specifika ord och fraser \xf6vers\xe4tts. N\xe4r du \xe4r klar kommer du att kunna anv\xe4nda dem i dina \xf6vers\xe4ttningsprojekt.",ENTRY_COUNT:"Poster: {{count}}",ENTRY_COUNT_WITH_LANGUGAES:"Poster: {{count}} [{{languages}}]",DEFAULT_COLLECTION_NAME:"Min termbank",SYNC:"Synkronisera",SYNC_ERROR:"F\xf6rs\xf6k igen",ARIA_LABELS:{RADIO_GROUP:"V\xe4lj termbank",OTHER_COLLECTIONS:"\xd6ppna termbanksmenyn"},CREATE_DIALOG:{CANCEL:"Avbryt",COLLECTION_NAME_LABEL:"Termbankens namn",CREATE:"Skapa",DESCRIPTION_1:"Efter att ha namngett din termbank kommer du att omdirigeras till Tilde Term f\xf6r att l\xe4gga till nya termer. N\xe4r du \xe4r klar, \xe5terv\xe4nd till Tilde MT f\xf6r att anv\xe4nda dem i dina \xf6vers\xe4ttningsprojekt.",DESCRIPTION_2:"<i>*AI \xe4r inte perfekt och det kan f\xf6rekomma enstaka misstag. Dina unika termer kommer att anv\xe4ndas korrekt med 95 % noggrannhet.</i>",TITLE:"Skapa ny ordlista",COLLECTION_NAME_ERROR:"Titeln b\xf6r vara minst {{minLength}} tecken l\xe5ng och f\xe5r inte vara l\xe4ngre \xe4n {{maxLength}} tecken"},TOOLTIPS:{EDIT:"Du kommer att omdirigeras till terminologiportalen som kommer att \xf6ppnas i en ny flik",ENTRY_COUNT:"Antal poster som lagts till i termbanken",IMPORTING:"Termbanken importeras och kommer inte att anv\xe4ndas f\xf6rr\xe4n importen \xe4r klar.",NO_ENTRIES:"Termbanken kan inte anv\xe4ndas eftersom det inte finns n\xe5gra termer f\xf6r k\xe4llspr\xe5ket",SYNC:"Uppdatera termbank",SYNCING:"Termbanken synkroniseras och den senaste synkroniserade versionen av banken kommer att anv\xe4ndas",ATTACH_TO_SYSTEM_ERROR:"Det uppstod ett fel vid importering av termbanken"}},DOMAINS:{LAW:"Juridik",DYNAMIC_LEARNING:"Dynamiskt l\xe4rande",BUSINESS:"N\xe4ringsliv",GENERAL:"Allm\xe4nt"}}},Nc="TranslationApiVersion",qR="TldTranslateConfig";var Fc=(()=>{return(t=Fc||(Fc={}))[t.V1=0]="V1",t[t.V2=1]="V2",Fc;var t})();let Gt=(()=>{class t{constructor(e,i){this.apiVersion=e,this.config=i,this._coreConfig={appId:null,clientId:null},this._textConfig={},this._fileConfig={},this._webtranslateConfig={},this._termConfig={},this._apiV2Config={},this._audioConfig={appId:null,appSecret:null},this._textToSpeechConfig={},this.initConfigs()}get coreConfig(){return this._coreConfig}get textConfig(){return this._textConfig}get fileConfig(){return this._fileConfig}get webtranslateConfig(){return this._webtranslateConfig}get termConfig(){return this._termConfig}get apiV2Config(){return this._apiV2Config}get audioConfig(){return this._audioConfig}get textToSpeechConfig(){return this._textToSpeechConfig}initConfigs(e){const i=e??this.config??{},r=i?.core,s=i?.file,a=i?.text,o=i?.audio,l=i?.webTranslate,u=i?.term,h=i?.apiV2,p=i?.textToSpeech;this._coreConfig={appId:r?.appId,clientId:r?.clientId},this._coreConfig.apiIsInTheSameDomain=r?.apiIsInTheSameDomain||!1,this._coreConfig.appName=r?.appName||"Tilde MT",this._coreConfig.hideAchievement=r?.hideAchievement||!1,this._coreConfig.isAuth=r?.isAuth||!1,this._coreConfig.jwtAuth=r?.jwtAuth||!1,this._coreConfig.translateAppName=r?.translateAppName??!0,this._coreConfig.registerLink=r?.registerLink||"https://tilde.com/products-and-services/machine-translation",this._coreConfig.supportEmail=r?.supportEmail||"mt@tilde.lv",this._coreConfig.sourceLanguageOrder=r?.sourceLanguageOrder||{en:["en","lv","ru","lt","et","fi","pl","de","it","bg","hr"],lv:["en","lv","ru","lt","et","fi","pl","de","it","bg","hr"],lt:["en","lt","ru","lv","et","fi","pl","de","it","bg","hr"],et:["en","et","fi","ru","lv","lt","pl","de","it","bg","hr"],fi:["fi","en","et","ru","lv","lt","pl","de","it","bg","hr"],pl:["pl","en","de","lv","et","ru","lt","fi","it","bg","hr"],de:["en","bg","da","et","fi","fr","de","el","ga","is","it","hr","lv","lt","ru","mt","nl","nb","pl","pt","pt-pt","ro","sv","sk","sl","es","cs","hu"]},this._coreConfig.targetLanguageOrder=r?.targetLanguageOrder||{en:["en","lv","ru","lt","et","fi","ar","pl","de","bg","hr","es","nb","ro"],lv:["en","lv","lt","et","ru","fi","ar","pl","de","bg","hr","es","nb","ro"],lt:["en","lt","lv","et","ru","fi","ar","pl","de","bg","hr","es","nb","ro"],et:["en","et","lv","lt","ru","fi","ar","pl","de","bg","hr","es","nb","ro"],fi:["et","fi","en","lv","lt","ru","ar","pl","de","bg","hr","es","nb","ro"],pl:["en","pl","de","lv","ru","et","fi","lt","ar","bg","hr","es","nb","ro"],de:["de","en","fr","bg","da","et","fi","el","ga","is","it","hr","lv","lt","ru","mt","nl","nb","pl","pt","pt-pt","ro","sv","sk","sl","es","cs","hu","ar"]},this._coreConfig.hideLangMenuLabels=r?.hideLangMenuLabels||!1,this._coreConfig.showVendors=r?.showVendors||!1,this._coreConfig.unauthorizedRedirectLink=r?.unauthorizedRedirectLink,this._coreConfig.allowedSystemStatuses=r?.allowedSystemStatuses??["running","standby","queuingtransl"],this._coreConfig.maxDisplayedLanguages=r?.maxDisplayedLanguages??3,this._coreConfig.debug=r?.debug,this._coreConfig.showDomainsWithLanguageName=r?.showDomainsWithLanguageName||!1,this._coreConfig.showDomains=r?.showDomains??!0,this._coreConfig.defaultVendor=r?.defaultVendor??"Tilde",this._coreConfig.defaultSystemId=r?.defaultSystemId,this._coreConfig.showDomainTitle=r?.showDomainTitle,this._coreConfig.domainSide=r?.domainSide??"trg",this._coreConfig.swapIconPosition=r?.swapIconPosition??"src",this._coreConfig.languageMenuVersion=r?.languageMenuVersion??Fc.V1,this._coreConfig.maxRecentSystemCount=r?.maxRecentSystemCount??4,this._coreConfig.defaultDomains=r?.defaultDomains??["GEN","general"],this._coreConfig.contactSupport=r?.contactSupport??!0,this._fileConfig.allowedFileTypes=s?.allowedFileTypes||[".doc",".docx",".xlsx",".pdf",".pptx",".odt",".odp",".ods",".txt"],this._fileConfig.extendedFileTypes=s?.extendedFileTypes||[".doc",".docx",".xlsx",".pptx",".odt",".odp",".ods",".txt",".html",".htm",".xhtml",".xht",".tmx",".xlf",".xlif",".xliff",".sdlxliff",".sdlxlf",".ttx",".rtf",".pages",".tex",".xml",".json",".sxw",".pdf",".csv",".ttl",".srt",".png",".jpg",".jpeg",".bmp"],this._fileConfig.allowTmxAuth=s?.allowTmxAuth??!0,this._fileConfig.allowTmxUnauth=s?.allowTmxUnauth??!1,this._fileConfig.fileApiUrl=s?.fileApiUrl||"https://letsmt.eu/ws/Files/",this._fileConfig.fileDownloadTimeouts=s?.fileDownloadTimeouts||{initializing:1e3,extracting:1e3,waiting:1e4,translating:1e3,saving:1e3,completed:1e3,error:1e3,queuing:1e3},this._fileConfig.maxSize=s?.maxSize||3072e4,this._fileConfig.wordLimit=s?.wordLimit??1250,this._fileConfig.fileUpload=s?.fileUpload??!0,this._fileConfig.ocrPageLimit=s?.ocrPageLimit??1,this._fileConfig.allowPDFSourceDownload=s?.allowPDFSourceDownload??!0,this._fileConfig.allowImageSourceDownload=s?.allowImageSourceDownload??!0,this._fileConfig.sourceDownloadExtensions=s?.sourceDownloadExtensions||["pdf","png","jpg","jpeg","bmp"],this._fileConfig.targetDownloadExtensionOrder=s?.targetDownloadExtensionOrder,this._fileConfig.numberOfFilesAllowed=s?.numberOfFilesAllowed>0?s.numberOfFilesAllowed:1,this._fileConfig.showTranslationLimits=s?.showTranslationLimits??!0,this._fileConfig.useMultipleFileUpload=s?.useMultipleFileUpload,this._fileConfig.progressIndicatorTitleVisibleForVendors=s?.progressIndicatorTitleVisibleForVendors??["ETranslation"],this._textConfig.dictionaryUrl=a?.dictionaryUrl||"https://letsmt.eu/api/dictionary/GetDictionaryEntry/",this._textConfig.maxCharLength=a?.maxCharLength??5e3,this._textConfig.webWidgetRedirectUrlPosfix=a?.webWidgetRedirectUrlPosfix||"/webtranslate?url=",this._textConfig.webWidgetRedirectUrlPrefix=a?.webWidgetRedirectUrlPrefix||"",this._textConfig.useDictionary=a?.useDictionary??!1,this._textConfig.showAvailableExtensions=null==a?.showAvailableExtensions||a.showAvailableExtensions,this._textConfig.showAuthExtensions=null==a?.showAuthExtensions||a.showAuthExtensions,this._textConfig.autoFocuss=a?.autoFocuss,this._textConfig.showExtensionsUnauthOnly=a?.showExtensionsUnauthOnly,this._textConfig.showSensitiveInfoTooltip=a?.showSensitiveInfoTooltip,this._textConfig.allowWebsiteTranslation=a?.allowWebsiteTranslation??!0,this._textConfig.showSuggestions=a?.showSuggestions??!0,this._textConfig.autoRedirectToWebTranslate=a?.autoRedirectToWebTranslate??!1,this._textConfig.highlight=a?.highlight??!0,this._textConfig.checkSourceGrammar=a?.checkSourceGrammar??!1,this._textConfig.grammarCheckLanguages=a?.grammarCheckLanguages??[],this._textConfig.showTargetPlaceholder=a?.showTargetPlaceholder,this._textConfig.showExtensionPopup=a?.showExtensionPopup,this._textConfig.visibleExtensionCount=a?.visibleExtensionCount??3,this._textConfig.hideSourceActionsWhenHasTextMobile=a?.hideSourceActionsWhenHasTextMobile??!0,this._textConfig.progressIndicatorTimeoutMiliSeconds=a?.progressIndicatorTimeoutMiliSeconds??2e3,this._textConfig.progressIndicatorTitleVisibleForVendors=a?.progressIndicatorTitleVisibleForVendors??["ETranslation"],this._textConfig.progressIndicatorVisible=a?.progressIndicatorVisible??!1,this._audioConfig.audioTextInput=o?.audioTextInput??!1,this._audioConfig.audioApiUrl=o?.audioApiUrl,this._audioConfig.audioMaxSizeBytes=o?.audioMaxSizeBytes??1e7,this._audioConfig.sourceLanguages=o?.sourceLanguages??[],this._audioConfig.dataUpdateTimeFrame=o?.dataUpdateTimeFrame??5e3,this._audioConfig.maximumRecordTime=o?.maximumRecordTime??300,this._audioConfig.dictateApiUrl=o?.dictateApiUrl??"runa.tilde.lv",this._audioConfig.appId=o?.appId,this._audioConfig.appSecret=o?.appSecret,this._audioConfig.punctuationMessage=o?.punctuationMessage??!0,this._audioConfig.disableAutomaticTranslation=o?.disableAutomaticTranslation??!0,this._webtranslateConfig.logoLocation=l?.logoLocation||"assets/webtranslate/tilde_logo.png",this._webtranslateConfig.translatePagePath=l?.translatePagePath,this._webtranslateConfig.debug=l?.debug||!1,this._webtranslateConfig.webLangAutodetect=l?.webLangAutodetect||!0,this._webtranslateConfig.allowSuggestions=l?.allowSuggestions||!1,this._webtranslateConfig.hidePopup=l?.hidePopup||!1,this._webtranslateConfig.sandbox=l?.sandbox??"allow-forms allow-scripts allow-same-origin",this._termConfig.apiUrl=u?.apiUrl||"https://term.tilde.com",this._termConfig.canCreateCollection=u?.canCreateCollection,this._termConfig.isCollectionsActivated=u?.isCollectionsActivated,this._termConfig.isTermPortalSupported=u?.isTermPortalSupported??!1,this._termConfig.collectionNameMinLength=u?.collectionNameMinLength??8,this._termConfig.collectionNameMaxLength=u?.collectionNameMaxLength??300,this._termConfig.refreshTimeoutMs=u?.refreshTimeoutMs??1e4,this._termConfig.refreshTimeoutMsWhenImporting=u?.refreshTimeoutMsWhenImporting??5e3,this._termConfig.freeTrialUrl=u?.freeTrialUrl??"https://tilde.com/products-and-services/machine-translation/pricing/Tilde-MT",this._termConfig.learnMoreUrl=u?.learnMoreUrl??"https://www.tilde.com/products-and-services/machine-translation/Tilde-MT-features-glossary",this._coreConfig.translationServiceUrl=r?.translationServiceUrl||"https://www.letsmt.eu/ws/service.svc/json/",this._textConfig.translationUrl=a?.translationUrl??this._coreConfig.translationServiceUrl+"TranslateEx",this._textConfig.updateTranslationUrl=a?.updateTranslationUrl??this._coreConfig.translationServiceUrl+"UpdateTranslation",this._coreConfig.systemListUrl=r?.systemListUrl??this._coreConfig.translationServiceUrl+"GetSystemList",this._apiV2Config.xApiKey=h?.xApiKey,this._apiV2Config.mtApiUrl=h?.mtApiUrl??"api/translate/",this._apiV2Config.systemListUrl=h?.systemListUrl??this._apiV2Config.mtApiUrl+"language-directions",this._apiV2Config.translationUrl=h?.translationUrl??this._apiV2Config.mtApiUrl+"text",this._apiV2Config.fileTranslationUrl=h?.fileTranslationUrl??this._apiV2Config.mtApiUrl+"file",this._apiV2Config.grammarCheckUrl=h?.grammarCheckUrl??"https://mt.cs.ut.ee/api/grammar",this._apiV2Config.autoDomainDetection=h?.autoDomainDetection??!1,this._textToSpeechConfig.languages=p?.languages??{},this._textToSpeechConfig.maxCharsInText=p?.maxCharsInText??3e3,this.editPropertiesBasedOnApi()}editPropertiesBasedOnApi(){this.apiVersion===ls.V2&&(this.textConfig.showSuggestions=!1,this.textConfig.useDictionary=!1)}}return t.\u0275fac=function(e){return new(e||t)(R(Nc),R(qR,8))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),Ps=(()=>{class t{constructor(e){this.config=e,this.messageSubject=new pe,this.defaultErrorKey="ERROR_DEFAULT",this.errorKey="ERRORS.",this.numericErrorKeyPrefix="E_",this.errorTranslationSubKeys=["FILE_TRANSLATION_SUBSTATUS","FILE_UPLOAD","AUDIO"],this.titlePostFix="_TITLE",this.supportPostFix="_SUPPORT"}get defaultParams(){return{email:this.config.coreConfig.supportEmail,registerLink:this.config.coreConfig.registerLink}}defaultError(e){e&&console.error(e),this.error(`${this.errorKey}${this.defaultErrorKey}`,e,this.defaultParams)}getMessages(){return this.messageSubject.asObservable()}info(e,i){this.emit(no.SUCCESS,e,null,i)}error(e,i,r){console.error(i),this.emit(no.ERROR,e,i,r)}warning(e,i){this.emit(no.WARNING,e,null,i)}unhandeledError(e,i){if(e){const r=this.findErrorKey(e);if(r)return void this.error(r,e,i??this.defaultParams)}this.defaultError(e)}findErrorTitleAndLocalizationKey(e){const i=this.findErrorKey(e);let r=null;return i&&(r=this.findPostfix(i,this.titlePostFix)),{description:i,title:r}}findErrorKey(e){if(!e)return null;let i=null;const r=io.en.ERRORS;if(e instanceof ev&&r[this.numericErrorKeyPrefix+e.status]?i=this.numericErrorKeyPrefix+e.status:r[e.ErrorCode]?i=e.ErrorCode:r[this.numericErrorKeyPrefix+e.ErrorCode]?i=this.numericErrorKeyPrefix+e.ErrorCode:r[e.error?.ErrorCode]?i=e.error?.ErrorCode:r[e.error]?i=e.error:r[this.numericErrorKeyPrefix+e.error?.ErrorCode]&&(i=this.numericErrorKeyPrefix+e.error?.ErrorCode),!i)for(let s=0;s<this.errorTranslationSubKeys.length;s++){const a=this.errorTranslationSubKeys[s];if(r[a][e.ErrorCode]){i=`${a}.${e.ErrorCode}`;break}}return this.errorKey+(i??this.defaultErrorKey)}emit(e,i,r,s){const a={body:i,title:this.findPostfix(i,this.titlePostFix),type:e,localizationParams:{...this.defaultParams,...s},support:this.config.coreConfig.contactSupport?this.findPostfix(i,this.supportPostFix):null};r&&(a.error=r),this.messageSubject.next(a)}findPostfix(e,i){const r=e.split(".");let s=io.en;for(let o=0;o<r.length;o++)if(o>0&&(s=s[r[o-1]]),!s[r[o]])return null;return s[r[r.length-1]+i]?e+i:null}}return t.\u0275fac=function(e){return new(e||t)(R(Gt))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),Bb=(()=>{class t{constructor(){this.selectedTargetSentence$=new pe}onChangeSelectedTargetSentence(){return this.selectedTargetSentence$.asObservable()}changeSelectedTargetSentence(e){const i={previous:this.selectedTargetSentence,next:e};this.selectedTargetSentence=e,this.selectedTargetSentence$.next(i)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),$Y=(()=>{class t{constructor(e,i){this.http=e,this.config=i}get url(){return this.config.apiV2Config.fileTranslationUrl}translatedDocumentPreview(e){return ye({success:!0})}download(e){const i=Ht.GetApiV2AuthHeaders(this.config);return this.http.get(`${this.url}/${e.id}/${e.fileMeta.id}`,{responseType:"blob",headers:i})}startTranslation(e){const i=new FormData;i.append("file",e.file.file),i.append("fileName",e.file.originalFileName),i.append("sourceLanguage",e.system.sourceLanguage),i.append("targetLanguage",e.system.targetLanguage),e.system.domain&&i.append("domain",e.system.domain);const r=Ht.GetApiV2AuthHeaders(this.config);return this.http.post(this.url,i,{headers:r}).pipe(Le(s=>s.id))}remove(e){if(e.file.translationStartedOnServer){const i=Ht.GetApiV2AuthHeaders(this.config);return this.http.delete(`${this.url}/${e.file.id}`,{headers:i})}return ye()}sourceFilePreview(e){const i=e.originalExtension.toLowerCase(),r=`<div id="docPreviewContent" class="no-preview type-${i}"><div class="type">${i.toUpperCase()}</div></div>`;return ye({isFilePreviewLoaded:!0,sourcePreviewHasHtml:!1,tmpName:e.originalFileName,name:e.originalFileName,sourcePreview:r})}getStatus(e){const i=Ht.GetApiV2AuthHeaders(this.config);return this.http.get(`${this.url}/${e.file.id}`,{headers:i}).pipe(Le(r=>{const s=[];r.files.forEach(o=>{if(o.category.toUpperCase()===Tg.TRANSLATED){const l=`${e.file.originalFileName.slice(0,e.file.originalFileName.lastIndexOf("."))}${o.extension}`;s.push({extension:o.extension,fileName:l,id:o.id})}});const a={name:r.fileName,progress:Math.floor(r.translatedSegments/r.segments*100),translationStatuss:r.status.toUpperCase(),sourceDownloadAvailable:!1,extensions:s};return r.substatus&&(a.substatus=Ht.pascalCaseToEnum(r.substatus)),a}))}}return t.\u0275fac=function(e){return new(e||t)(R(Ki),R(Gt))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();var ro=(()=>{return(t=ro||(ro={})).COLLECTION_IMPORT="COLLECTION_IMPORT",t.COLLECTION_CREATE="COLLECTION_CREATE",t.NO_FILE_ADDED="NO_FILE_ADDED",t.CANT_START_FILE_TRANSLATION="CANT_START_FILE_TRANSLATION",t.CANT_START_RECORDING="CANT_START_RECORDING",t.TRANSLATION_FAILED="TRANSLATION_FAILED",t.E_UNKNOWN_FILE_TYPE="E_UNKNOWN_FILE_TYPE",t.E_CANNOT_READ_FILE="E_CANNOT_READ_FILE",t.E_FAILED_IN_TRANSLATION="E_FAILED_IN_TRANSLATION",t.E_FORMAT_TRACK_CHANGES="E_FORMAT_TRACK_CHANGES",t.E_UNKNOWN_ERROR="E_UNKNOWN_ERROR",t.E_UNAUTHORIZED="E_UNAUTHORIZED",t.E_504="E_504",t.E_11="E_11",t.E_12="E_12",t.E_21="E_21",t.E_22="E_22",t.E_23="E_23",t.E_41="E_41",ro;var t})(),wn=(()=>{return(t=wn||(wn={})).INITIALIZING="INITIALIZING",t.EXTRACTING="EXTRACTING",t.WAITING="WAITING",t.TRANSLATING="TRANSLATING",t.SAVING="SAVING",t.COMPLETED="COMPLETED",t.ERROR="ERROR",t.QUEUING="QUEUING",t.UPLOADING="UPLOADING",t.UPLOADED="UPLOADED",wn;var t})(),Ns=(()=>{return(t=Ns||(Ns={}))[t.Term=0]="Term",t[t.MT=1]="MT",Ns;var t})(),rr=(()=>{return(t=rr||(rr={})).READY="Ready",t.PROCESSING="Processing",t.ERROR="Error",rr;var t})(),Bc=(()=>{return(t=Bc||(Bc={})).NO_ENTRIES="NO_ENTRIES",t.IMPORTING="IMPORTING",t.SYNCING="SYNCING",Bc;var t})();class Vc{constructor(n,e,i){this.sourceLanguageCode=e,this.targetLanguageCode=i,this.isSynchronized=!0,this.isTldCorpus(n)?this.fromTldMTCollection(n):this.fromTermApi(n)}get syncButtonVissible(){return!this.isSynchronized||this.termModifiedDate&&this.mtStatus===rr.ERROR}get isImporting(){return this.mtStatus===rr.PROCESSING}static findExistingCollectionFromList(n,e){for(const i of n)if(i.id&&i.id===e.id||e.termId&&i.termId===e.termId)return i;return null}update(n){n.importedFrom===Ns.MT?(n.mtStatus!==rr.ERROR&&(this.errorKey=null),this.id=n.id,this.mtStatus=n.mtStatus,this.mtAttachmentDateTime=n.mtAttachmentDateTime,this.mtEntryCount=n.mtEntryCount):n.importedFrom===Ns.Term&&(this.termId=n.termId,this.languagesString=n.languagesString,this.termModifiedDate=n.termModifiedDate,this.entryCount=n.entryCount,this.title=n.title),this.isSynchronized=this.isTermSynchronizedWithMT(),this.tooltipKey=0===this.entryCount&&null!==this.termId?Bc.NO_ENTRIES:this.isImporting&&0===this.mtEntryCount?Bc.IMPORTING:this.isImporting?Bc.SYNCING:null}deletedFromTermApi(){this.termId=null,this.languagesString=null,this.termModifiedDate=null,this.entryCount=null}static convertCollections(n,e,i){const r=[];return n.forEach(s=>{r.push(new Vc(s,e,i))}),r}fromTermApi(n){this.termId=n.id.toString(),this.title=n.name,this.importedFrom=Ns.Term,this.termModifiedDate=new Date(n.modifyDate);const e=n.languages?.find(i=>i.id.toLowerCase()===this.sourceLanguageCode.toLowerCase());this.entryCount=e?.count??0,this.languagesString=n.languages.filter(i=>i.id!==this.sourceLanguageCode&&i.count>0).map(i=>i.id.toUpperCase()).join(", ")}fromTldMTCollection(n){this.id=n.CorpusId,this.title=n.Title,this.importedFrom=Ns.MT,this.mtAttachmentDateTime=new Date(n.AttachmentDateTime),this.termId=n.TildeTermId,this.mtStatus=n.Status,this.mtPreparedDateTime=n.PreparedDateTime,this.mtEntryCount=n.Count}isTldCorpus(n){return void 0!==n.TildeTermId}isTermSynchronizedWithMT(){let n=!0;return this.termModifiedDate&&this.mtAttachmentDateTime&&(n=this.termModifiedDate<this.mtAttachmentDateTime),n}}const XR="TldSystemApiService";let Xi=(()=>{class t{constructor(e,i,r){this.config=e,this.api=i,this.apiVersion=r,this.noSystemsError=!1,this.systems=[],this.widgetInitialized=!1,this.sysList=new _A(1),this.domains=[],this.vendors=[],this.sourceLangList=[],this.targetLangList=[],this.recentSystems=[],this.recentSystemKey="recentSystems",this.active=new ki(null),this.lastUsedSystemKey="lastUsedSystem"}get activeVendor(){return this.activeSystem.vendor||this.defaultVendor}get defaultVendor(){return this.config.coreConfig.defaultVendor}get defaultDomains(){return this.config.coreConfig.defaultDomains}get recentSystemsMaxCount(){return this.config.coreConfig.maxRecentSystemCount}getSystems(){return this.systems}changeLanguage(e,i){const r=this.findCorrectSystem(e,i);this.changeSystem(r)}getActiveData(){return this.active.asObservable()}getActiveSystemObj(){return this.activeSystem}getActiveVendorsAndDomains(){if(!this.sourceLanguage||!this.targetLanguage)return;const e=[],i=[];for(const r of this.systems){if(r.sourceLanguage!==this.sourceLanguage||r.targetLanguage!==this.targetLanguage)continue;const s={domain:r.id,title:r.domain};i.push(s);const a={systemId:r.id,title:r.vendor};e.includes(a)||e.push(a),s.domain===this.activeSystem.id&&(this.activeDomain=s)}this.domains=i,this.vendors=e}getLastUsedSystem(){return localStorage.getItem(this.lastUsedSystemKey)}getUniqueLanguages(e){if(!e)return[];const i=[];return e.forEach(r=>{const s=r.lang;-1==i.indexOf(s)&&i.push(s)}),i}init(e){this.api.getSystemList().subscribe(i=>{if(this.systems=i,0==i.length&&(this.noSystemsError=!0),!this.systemExists(e,this.systems)){e=this.systems[0].id;for(let r of this.systems)if(r.vendor===this.defaultVendor){e=r.id;break}}this.createRecentSystemArray(),this.sourceLangList=this.createLangList(this.systems),this.changeSystem(e),this.widgetInitialized=!0,this.sysList.next(this.systems)})}setLastUsedSystem(e){return localStorage.setItem(this.lastUsedSystemKey,e)}swapSystemLanguages(){this.changeLanguage(this.targetLanguage,this.sourceLanguage)}changeSystem(e,i=!0){if(this.activeSystem?.id===e)return;let r;for(const s of this.systems)if(s.id===e){r=s;break}this.targetLangList=this.createLangList(this.systems,r.sourceLanguage),this.targetLanguage=r.targetLanguage,this.sourceLanguage=r.sourceLanguage,this.activeSystem=r,this.getActiveVendorsAndDomains(),this.onActiveSystemChange(i),this.setLastUsedSystem(r.id)}systemExists(e,i){const r=i??this.systems;for(let s of r)if(s.id===e)return!0;return!1}isTerminologySupported(e){return e.includesTerminology}changeSourceLanguage(e){this.changeLanguage(e,e===this.activeSystem.targetLanguage?this.activeSystem.sourceLanguage:this.activeSystem.targetLanguage)}changeTargetLanguage(e){this.changeLanguage(e===this.activeSystem.sourceLanguage?this.activeSystem.targetLanguage:this.activeSystem.sourceLanguage,e)}createRecentSystemArray(){let e;const i=[];try{e=JSON.parse(localStorage.getItem(this.recentSystemKey)??"[]")}catch{return}e.forEach(r=>{const s=this.systems.find(a=>a.id===r);s&&!this.recentSystems.includes(s)&&i.push(s)}),this.recentSystems=i}addToRecentSystemArray(e){const i=this.recentSystems.find(r=>r.id===e.id);if(i){const r=this.recentSystems.indexOf(i);r>0&&(this.recentSystems.splice(r,1),this.recentSystems.splice(0,0,e))}else{for(;this.recentSystems.length>=this.recentSystemsMaxCount;)this.recentSystems.pop();this.recentSystems.splice(0,0,e)}localStorage.setItem(this.recentSystemKey,JSON.stringify(this.recentSystems.map(r=>r.id)))}canSwapSystemLanguages(){let e=!1;for(const i of this.systems){const r=i;if(r.sourceLanguage==this.targetLanguage&&r.targetLanguage==this.sourceLanguage){e=!0;break}}return this.canSwapLanguages=e,e}createLangList(e,i){const r=[];return e.forEach(s=>{(!i||i===s.sourceLanguage)&&r.push({domain:s.domain,lang:i?s.targetLanguage:s.sourceLanguage,systemId:s.id,vendor:s.vendor})}),r}findCorrectSystem(e,i){const s=this.systems.filter(l=>l.sourceLanguage===e&&i===l.targetLanguage);if(0===s.length)return this.systems.find(l=>l.sourceLanguage===e)?.id;let a=s.filter(l=>(l.vendor||this.defaultVendor)===this.defaultVendor);0===a.length&&(a=s);let o=a.filter(l=>this.defaultDomains.includes(l.domain));return 0===o.length&&(o=a),Ht.sortByArray(o,this.defaultDomains,"domain"),this.apiVersion===ls.V1&&Ht.sortByArray(a,["running","queuingtransl","standby"],"status"),o[0].id}onActiveSystemChange(e=!0){const i=this.activeSystem;this.addToRecentSystemArray(i);const r=this.activeSystem.vendor;this.active.next({sourceLang:{lang:this.sourceLanguage,domain:i.domain,vendor:r,systemId:i.id},sourceLangList:this.sourceLangList,systemId:i.id,targetLang:{domain:i.domain,vendor:r,systemId:i.id,lang:this.targetLanguage},targetLangList:this.targetLangList,vendors:this.vendors,domains:{active:this.activeDomain,domains:this.domains},swapLangActive:this.canSwapSystemLanguages(),system:i,retranslate:e,recentSystems:this.recentSystems})}}return t.\u0275fac=function(e){return new(e||t)(R(Gt),R(XR),R(Nc))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),JY=(()=>{class t{constructor(e,i){this.config=e,this.http=i}get url(){return`${this.config.termConfig.apiUrl}/api/termservice/collection`}createCollection(e,i){return this.http.post(this.url,{name:i,defaultLanguages:e})}getCollectionList(e,i){return this.http.get(this.url).pipe(Le(r=>Vc.convertCollections(r,e,i)))}}return t.\u0275fac=function(e){return new(e||t)(R(Gt),R(Ki))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),eq=(()=>{class t{constructor(e,i){this.http=e,this.config=i}attachTermsFromTildeTerm(e,i){return this.http.get(`${this.config.coreConfig.translationServiceUrl}AttachTermsFromTildeTerm`,{params:{systemID:e,tildeTermColectionID:i}})}loadMTCollections(e,i,r){const s=Ht.getAuthHeaders(this.config);return this.http.get(`${this.config.coreConfig.translationServiceUrl}GetDetailedSystemTermCorpora`,{headers:s,params:{systemID:e}}).pipe(Le(l=>Vc.convertCollections(l,i,r)))}}return t.\u0275fac=function(e){return new(e||t)(R(Ki),R(Gt))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),hl=(()=>{class t{constructor(e,i,r,s){this.config=e,this.tldSystem=i,this.termApi=r,this.mtApi=s,this._selected=null,this.LOCAL_STORAGE_KEY="systemLastCollections",this.tldSystem.getActiveData().subscribe(a=>{this.sourceLanguageCode=a?.sourceLang.lang,this.targetLanguageCode=a?.targetLang.lang,this.activeSystemId=a?.systemId||null,this._collections=new Set,this._selected=null,a&&this.tldSystem.isTerminologySupported(a?.system)&&this.refreshCollections(!0)})}get selected(){return this._selected}set selected(e){this._selected=e,this.storeSelectedInLocalStorage(),this._selected&&(this._selected.id||this.addCollectionToSystem(this._selected))}get collections(){return this._collections}get isRefreshingCollections(){return this._isRefreshingCollections}get canCreateCollections(){return this.config.termConfig.canCreateCollection}get hasEditPermissions(){return this.config?.coreConfig.isAuth&&this.canCreateCollections&&this.config.termConfig.isTermPortalSupported}get hasAnyCollections(){return this._hasAnyCollections}get shouldShowPromotion(){return!this.hasAnyCollections&&!this.hasEditPermissions}onMenuOpen(){this.menuOpened=!0,this.shouldShowPromotion||this.startAutoRefresh()}onMenuClose(){this.menuOpened=!1,this.selected?.mtStatus!==rr.PROCESSING&&this.stopAutoRefresh()}addCollectionToSystem(e){e&&e.termId?(e.mtStatus=rr.PROCESSING,e.isSynchronized=!0,this.mtApi.attachTermsFromTildeTerm(this.activeSystemId,e.termId).subscribe(()=>{},()=>{e.mtStatus=rr.ERROR,e.errorKey=ro.COLLECTION_IMPORT})):console.error("Trying to attach collection that has no tilde term id.")}create(e,i){return this.termApi.createCollection(e,i).pipe(Le(r=>new Vc(r,this.sourceLanguageCode,this.targetLanguageCode)),Mn(r=>{this._collections.add(r),this._hasAnyCollections=!0}))}refreshCollections(e=!1){this.activeSystemId&&this.config.termConfig.isCollectionsActivated&&(this._isRefreshingCollections=!0,hp([this.termApi.getCollectionList(this.sourceLanguageCode,this.targetLanguageCode),this.mtApi.loadMTCollections(this.activeSystemId,this.sourceLanguageCode,this.targetLanguageCode)]).subscribe(r=>{this.isAnyImporting=!1,this.removeDeletedFromTerms(r[0]),this.updateCollections([...r[0],...r[1]]),e&&this.setSelectedFromLocalStorage(),this._isRefreshingCollections=!1,this.scheduleRefresh()},r=>{this._isRefreshingCollections=!1,console.error(r)}))}selectedIdForTranslation(){return this.selected&&(this.selected.mtPreparedDateTime||this.selected.mtStatus===rr.READY)?this.selected.id:null}startAutoRefresh(){this.isAutoRefreshingOn=!0,this.scheduleRefresh(0)}stopAutoRefresh(){this.refreshTimeout&&(clearTimeout(this.refreshTimeout),this.refreshTimeout=null),this.isAutoRefreshingOn=!1}scheduleRefresh(e){this.menuOpened||this.selected?.isImporting||!this.isAutoRefreshingOn?this.refreshTimeout||!this.isAutoRefreshingOn&&!this.selected?.isImporting||(this.refreshTimeout=setTimeout(()=>{this.refreshTimeout=null,this.refreshCollections()},e??(this.isAnyImporting?this.config.termConfig.refreshTimeoutMsWhenImporting:this.config.termConfig.refreshTimeoutMs))):this.stopAutoRefresh()}removeDeletedFromTerms(e){for(const i of this.collections)i.termId&&(e.find(s=>s.importedFrom===Ns.Term&&s.termId===i.termId)||(i.id?i.deletedFromTermApi():this.collections.delete(i)))}updateCollections(e){const i=new Set;for(let r of e){if(!this.hasEditPermissions&&r.importedFrom===Ns.MT&&r.mtStatus===rr.ERROR)continue;r.isImporting&&(this.isAnyImporting=!0);let s=Vc.findExistingCollectionFromList(this.collections,r);if(r.importedFrom===Ns.MT){if(!(r.mtStatus===rr.READY||r.mtStatus===rr.PROCESSING&&r.mtPreparedDateTime||s))continue;r.termId=null}s?s.update(r):this.collections.add(r),i.add(s??r)}this._collections=i,this._hasAnyCollections=i.size>0}setSelectedFromLocalStorage(){if(0===this.collections?.size||this.selected)return;const e=this.readLocalStorage()?.[this.activeSystemId];if(!e)return;const i=Array.from(this.collections).find(r=>r.id===e||r.termId===e);this.selected=i}storeSelectedInLocalStorage(){let e=this.readLocalStorage();e||(e={}),e[this.activeSystemId]=this.selected?this.selected.termId??this.selected.id:null,localStorage.setItem(this.LOCAL_STORAGE_KEY,JSON.stringify(e))}readLocalStorage(){const e=localStorage.getItem(this.LOCAL_STORAGE_KEY);try{return JSON.parse(e)}catch{return null}}}return t.\u0275fac=function(e){return new(e||t)(R(Gt),R(Xi),R(JY),R(eq))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),tq=(()=>{class t{constructor(e,i,r,s){this.http=e,this.config=i,this.collectionService=r,this.alerts=s,this._segmentLimit=-1,this._sourceDownloadStatusses=[wn.WAITING,wn.SAVING,wn.COMPLETED,wn.TRANSLATING]}translatedDocumentPreview(e){const r={docId:e.translationDocId,fileName:e.fileName},s=this.config.fileConfig.fileApiUrl+"GetDocumentPreview",a=this.getAuthHeaders();return this.http.post(s,r,{headers:a})}download(e){const r=this.config.fileConfig.fileApiUrl+"Download",s={docId:e.id,fileName:e.fileMeta.fileName},a=Ht.getAuthHeaders(this.config);return this.http.get(r,{params:s,headers:a,responseType:"blob"})}startTranslation(e){const i=this.getAuthHeaders(),s=this.config.fileConfig.fileApiUrl+"StartTranslation",a={systemId:e.system.id,appId:this.config.coreConfig.appId,fileName:e.file.originalFileName,tmpname:e.file.tmpName,wordLimit:this.config.fileConfig.wordLimit,segmentLimit:this._segmentLimit,ocrPageLimit:this.config.fileConfig.ocrPageLimit},o=this.collectionService.selectedIdForTranslation();return o&&(a.termCorpusId=o),this.http.post(s,a,{headers:i}).pipe(Le(l=>{if(l.success){const u={ErrorCode:ro.CANT_START_FILE_TRANSLATION};throw this.alerts.unhandeledError(u),u}return l}))}remove(e){if(!e.file.id)return ye(!0);const r=this.config.fileConfig.fileApiUrl+"Delete",s={docId:e.file.id},a=Ht.getAuthHeaders(this.config);return this.http.get(r,{params:s,headers:a})}sourceFilePreview(e){const r=this.config.fileConfig.fileApiUrl+"Upload",s=this.getAuthHeaders();delete s["Content-Type"];const a=new FormData;return a.append("file",e.file),this.http.post(r,a,{headers:new ks(s),reportProgress:!0,observe:"events"}).pipe(Le(o=>{const l={};if(o.type===Vn.Response){const u=o.body;if(!u.success)throw console.error(u.error),"Failed to load translation preview";l.isFilePreviewLoaded=u.success,l.tmpName=u.filename,l.sourcePreviewHasHtml=!u.preview.includes('class="no-preview'),l.sourcePreview=u.preview,l.wordCount=u.wordcount}else o.type===Vn.UploadProgress&&(l.percentDone=Math.round(100*o.loaded/o.total));return l}))}getStatus(e){return this.http.post(this.config.fileConfig.fileApiUrl+"GetStatus",{docId:e.file.id},{headers:this.getAuthHeaders()}).pipe(Le(s=>{if("string"==typeof s){const o={ErrorCode:s};throw this.alerts.unhandeledError(o),o}const a={name:s.filename,progress:s.completed,translationStatuss:s.status.toUpperCase(),extensions:this.getExtensionArray(s.translations,s.filename)};return this._sourceDownloadStatusses.includes(a.translationStatuss)&&this.config.fileConfig.sourceDownloadExtensions?.includes(e.file.originalExtension)&&(a.sourceDownloadAvailable=!0),a}))}getExtensionArray(e,i){if(!e||!i)return[];const r=[];for(const u in e)"tmx"==u&&!(this.config.coreConfig.isAuth&&this.config.fileConfig.allowTmxAuth||!this.config.coreConfig.isAuth&&this.config.fileConfig.allowTmxUnauth)||r.push({extension:u,fileName:e[u]});const s=i.slice(i.lastIndexOf(".")+1).toLowerCase(),a=this.config.fileConfig.targetDownloadExtensionOrder,l=a&&a[s]?a[s]:[s,"tmx"];return r.sort((u,h)=>{let p=l.indexOf(u.extension),C=l.indexOf(h.extension);return p<0&&(p=100),C<0&&(C=100),p-C}),r}getAuthHeaders(){return Ht.getAuthHeaders(this.config)}}return t.\u0275fac=function(e){return new(e||t)(R(Ki),R(Gt),R(hl),R(Ps))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function nq(t,n,e,i,r){return t===ls.V2?new $Y(e,n):new tq(e,n,i,r)}let iq=(()=>{class t{constructor(e,i){this.config=e,this.http=i}getSystemList(){const e=Ht.GetApiV2AuthHeaders(this.config);return this.http.get(this.config?.apiV2Config?.systemListUrl,{headers:e}).pipe(Le(i=>{const r=[],s=[],a=[];return i.languageDirections.forEach(o=>{const l=`${o.srcLang}-${o.trgLang}`;if(r.push({domain:o.domain,id:o.id,sourceLanguage:o.srcLang,targetLanguage:o.trgLang,translationApiVersion:ls.V2,vendor:o.vendor}),this.config.apiV2Config?.autoDomainDetection&&!s.includes(l)){s.push(l);const h=this.createSystemFromLanguageDirection(o);h.domain=null,h.id=l,a.push(h)}}),a.concat(r)}))}createSystemFromLanguageDirection(e){return{sourceLanguage:e.srcLang,targetLanguage:e.trgLang,domain:e.domain,translationApiVersion:ls.V2,id:`${e.srcLang}-${e.trgLang}-${e.domain}`,vendor:e.vendor}}}return t.\u0275fac=function(e){return new(e||t)(R(Gt),R(Ki))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();var Uc=(()=>{return(t=Uc||(Uc={})).VENDOR="vendor",t.STATUS="status",t.INCLUDE_TERMINOLOGY_WORKFLOW="include-terminology-workflow",Uc;var t})();let rq=(()=>{class t{constructor(e,i){this.config=e,this.http=i}getSystemList(){const e=Ht.getAuthHeaders(this.config);return this.http.get(this.config?.coreConfig?.systemListUrl,{headers:e,params:{appID:this.config.coreConfig.appId}}).pipe(Le(r=>{const s=[];return r.System.forEach(a=>{const o={sourceLanguage:a.SourceLanguage.Code,targetLanguage:a.TargetLanguage.Code,id:a.ID,domain:a.Domain,vendor:this.findMetaDataValue(a,Uc.VENDOR)??this.config.coreConfig.defaultVendor,includesTerminology:this.findMetaDataValue(a,Uc.INCLUDE_TERMINOLOGY_WORKFLOW),status:this.findMetaDataValue(a,Uc.STATUS),translationApiVersion:ls.V1,title:a.Title.Text};-1!==this.config.coreConfig.allowedSystemStatuses.indexOf(o.status)&&s.push(o)}),s}))}findMetaDataValue(e,i){for(const r of e.Metadata)if(r.Key===i)return r.Value;return null}}return t.\u0275fac=function(e){return new(e||t)(R(Gt),R(Ki))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function sq(t,n,e){return t===ls.V2?new iq(n,e):new rq(n,e)}let jn=(()=>{class t{}return t.invalidPhraseClass="tld-invalid-phrase",t.wordClass="tld-word",t.siblingClass="tld-sibling",t.sentenceClass="tld-sentence",t.sourceHighlightClass="textarea-highlight-background",t.targetHighlightClass="translated-source",t.hoveredClassName="hovered",t.multipleWordWrapper="multiple-word-wrapper",t})();var On=(()=>{return(t=On||(On={}))[t.WORD=0]="WORD",t[t.SENTENCE=1]="SENTENCE",t[t.PARAGRAPH=2]="PARAGRAPH",t[t.OTHER=3]="OTHER",t[t.HYPEN=4]="HYPEN",t[t.WORD_WRAPPER=5]="WORD_WRAPPER",On;var t})();let aq=(()=>{class t{constructor(e,i){this.http=e,this.config=i}translateParagraph(e){const i={domain:e.system.domain,srcLang:e.system.sourceLanguage,text:[e.text],trgLang:e.system.targetLanguage},r=e.text,s={text:Ht.escapeHtmlString(r),paragraphIx:e.paragraphIx,type:On.PARAGRAPH,root:null,originalText:r},a=Ht.GetApiV2AuthHeaders(this.config);return this.config.textConfig.checkSourceGrammar&&this.config.textConfig.grammarCheckLanguages.includes(e.system.sourceLanguage)&&this.checkAndAttachGrammarToTree(e.text,e.system.sourceLanguage,s),this.http.post(this.config.apiV2Config.translationUrl,i,{headers:a}).pipe(Le(o=>{const l=`${i.srcLang}-${i.trgLang}-${o.domain}`,u=o.translations[0].translation,h={text:Ht.escapeHtmlString(u),paragraphIx:e.paragraphIx,type:On.PARAGRAPH,root:null,originalText:u};return{sourceTree:s,targetTree:h,systemId:l}}))}checkGrammar(e,i){return this.http.post(this.config.apiV2Config.grammarCheckUrl,{text:e,language:i})}checkAndAttachGrammarToTree(e,i,r){this.checkGrammar(e,i).pipe(br(s=>(console.error(s),ye(null)))).subscribe(s=>{if(s?.corrections?.length>0){r.children=[];let a=0;if(s.corrections.forEach(o=>{const l=o.span.start,u=o.span.end;if(a<l){const C=e.slice(a,l),w=Ht.escapeHtmlString(C);r.children.push({text:w,originalText:C,type:On.OTHER,root:r})}const h=e.slice(l,u),p={text:Ht.escapeHtmlString(e.slice(l,u)),class:`${jn.invalidPhraseClass}`,grammarMeta:{startIx:l,endIx:u,replacements:o.replacements.map(C=>C.value)},type:On.OTHER,root:r,originalText:h};r.children.push(p),a=u}),a!=e.length-1){const o=e.slice(a,e.length-1);r.children.push({text:Ht.escapeHtmlString(o),type:On.OTHER,root:r,originalText:o})}r.children.push()}})}}return t.\u0275fac=function(e){return new(e||t)(R(Ki),R(Gt))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),oq=(()=>{class t{constructor(e,i,r,s){this.collectionService=e,this.http=i,this.config=r,this.alerts=s}updateTranslation(e,i,r,s){const a=this.config.textConfig.updateTranslationUrl,o=Ht.getAuthHeaders(this.config);return this.http.post(a,{appID:this.config.coreConfig.appId,options:e,systemID:i,text:r,translation:s},{headers:o})}dictionaryTranslation(e,i,r){const s=Ht.getAuthHeaders(this.config);return this.http.get(this.config.textConfig.dictionaryUrl,{headers:s,params:{word:e,sourceLanguage:i,targetLanguage:r}})}translateParagraph(e){const i=Ht.getAuthHeaders(this.config),r={appID:this.config.coreConfig.appId,options:"widget=text,alignment,markSentences",systemID:e.system.id,text:e.text},s=this.collectionService.selectedIdForTranslation();return s&&(r.options+=`,termCorpusId=${s}`),this.http.get(this.config?.textConfig?.translationUrl,{headers:i,params:r}).pipe(Le(a=>{if(a.ErrorMessage)throw this.alerts.unhandeledError(a.ErrorMessage),a.ErrorMessage;return this.convertParagraphResponse(e,a)}))}convertParagraphResponse(e,i){return this.config.textConfig.highlight?this.createHighlightTrees(e.text,i,e.paragraphIx):{sourceTree:{text:e.text,paragraphIx:e.paragraphIx,type:On.PARAGRAPH,root:null,originalText:e.text},targetTree:{text:i.translation,paragraphIx:e.paragraphIx,type:On.PARAGRAPH,root:null,originalText:i.translation}}}createHighlightTrees(e,i,r){const s=this.getSentence(i.translation,i.translationSentenceRanges,i.targetWordRanges,r),a=this.getSentence(e,i.originalSentenceRanges,i.sourceWordRanges,r);return this.findSiblings(i.wordAlignment,a.words,s.words),{sourceTree:a.tree,targetTree:s.tree}}getSentence(e,i,r,s){const a={text:e,children:[],paragraphIx:s,type:On.PARAGRAPH,root:null,originalText:e},o=[];let l=-1,u=0;return i.forEach((h,p)=>{const C=this.getSentenceFromRange(h,e);a.children[p]={text:C,children:[],class:`${jn.sentenceClass} ${jn.sentenceClass}-${s}-${p}`,elementId:p.toString(),type:On.SENTENCE,root:a,originalText:C};const w=h[0],k=w+h[1];let L;for(let U=l+1;U<r.length;U++){const z=r[U][0],ie=r[U][1],X=r[U+1]?.[0];if(!(z>=w&&ie<=k))break;{if(l=U,u<z){L=null;const Ri=e.slice(u,z),Qi=Ht.escapeHtmlString(Ri);a.children[p].children.push({text:Qi,type:On.OTHER,root:a,originalText:Ri}),u=z}const Ce=e.slice(z,ie),mt=Ht.escapeHtmlString(Ce),It=`${s}-${p}-${U}`,on={text:mt,class:`${jn.wordClass} ${jn.wordClass}-${It}`,elementId:It,type:"-"===Ce?On.HYPEN:On.WORD,root:a,originalText:Ce};on.type===On.HYPEN?L=null:ie===X&&(L||(L={originalText:"",root:a,text:"",type:On.WORD_WRAPPER,children:[],class:jn.multipleWordWrapper},a.children[p].children.push(L))),L?(L.originalText+=Ce,L.text+=mt,L.children.push(on)):a.children[p].children.push(on),o.push(on),u=ie}}}),{tree:a,words:o}}getSentenceFromRange(e,i){const r=0==e[0]?e[0]:e[0]+1;return i.slice(r,r+e[1])}findSiblings(e,i,r){e.forEach(s=>{const l=i[s[0]],u=r[s[1]];l&&u&&(l.class+=` ${jn.siblingClass}-${u.elementId}`,u.class+=` ${jn.siblingClass}-${l.elementId}`)})}}return t.\u0275fac=function(e){return new(e||t)(R(hl),R(Ki),R(Gt),R(Ps))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function lq(t,n,e,i,r){return t===ls.V2?new aq(e,n):new oq(i,e,n,r)}const QR="TldTranslateTextApiService",ZR="TldTranslateFileApiService";let cq=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[At,At]}),t})(),eO=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({}),t})(),Tq=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[Sc,At,jp,eO,At,eO]}),t})();const Eq=["connectionContainer"],Sq=["inputContainer"],Dq=["label"];function wq(t,n){1&t&&(je(0),S(1,"div",14),le(2,"div",15)(3,"div",16)(4,"div",17),D(),S(5,"div",18),le(6,"div",15)(7,"div",16)(8,"div",17),D(),ze())}function xq(t,n){if(1&t){const e=Fe();S(0,"div",19),ee("cdkObserveContent",function(){return me(e),_e(I().updateOutlineGap())}),rn(1,1),D()}2&t&&E("cdkObserveContentDisabled","outline"!=I().appearance)}function kq(t,n){if(1&t&&(je(0),rn(1,2),S(2,"span"),V(3),D(),ze()),2&t){const e=I(2);b(3),re(e._control.placeholder)}}function Iq(t,n){1&t&&rn(0,3,["*ngSwitchCase","true"])}function Mq(t,n){1&t&&(S(0,"span",23),V(1," *"),D())}function Rq(t,n){if(1&t){const e=Fe();S(0,"label",20,21),ee("cdkObserveContent",function(){return me(e),_e(I().updateOutlineGap())}),O(2,kq,4,1,"ng-container",12),O(3,Iq,1,0,"ng-content",12),O(4,Mq,2,0,"span",22),D()}if(2&t){const e=I();Mt("mat-empty",e._control.empty&&!e._shouldAlwaysFloat())("mat-form-field-empty",e._control.empty&&!e._shouldAlwaysFloat())("mat-accent","accent"==e.color)("mat-warn","warn"==e.color),E("cdkObserveContentDisabled","outline"!=e.appearance)("id",e._labelId)("ngSwitch",e._hasLabel()),Me("for",e._control.id)("aria-owns",e._control.id),b(2),E("ngSwitchCase",!1),b(1),E("ngSwitchCase",!0),b(1),E("ngIf",!e.hideRequiredMarker&&e._control.required&&!e._control.disabled)}}function Oq(t,n){1&t&&(S(0,"div",24),rn(1,4),D())}function Lq(t,n){if(1&t&&(S(0,"div",25),le(1,"span",26),D()),2&t){const e=I();b(1),Mt("mat-accent","accent"==e.color)("mat-warn","warn"==e.color)}}function Pq(t,n){1&t&&(S(0,"div"),rn(1,5),D()),2&t&&E("@transitionMessages",I()._subscriptAnimationState)}function Nq(t,n){if(1&t&&(S(0,"div",30),V(1),D()),2&t){const e=I(2);E("id",e._hintLabelId),b(1),re(e.hintLabel)}}function Fq(t,n){if(1&t&&(S(0,"div",27),O(1,Nq,2,2,"div",28),rn(2,6),le(3,"div",29),rn(4,7),D()),2&t){const e=I();E("@transitionMessages",e._subscriptAnimationState),b(1),E("ngIf",e.hintLabel)}}const Bq=["*",[["","matPrefix",""]],[["mat-placeholder"]],[["mat-label"]],[["","matSuffix",""]],[["mat-error"]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],Vq=["*","[matPrefix]","mat-placeholder","mat-label","[matSuffix]","mat-error","mat-hint:not([align='end'])","mat-hint[align='end']"];let Uq=0;const tO=new Z("MatError");let jq=(()=>{class t{constructor(e,i){this.id="mat-error-"+Uq++,e||i.nativeElement.setAttribute("aria-live","polite")}}return t.\u0275fac=function(e){return new(e||t)(As("aria-live"),_(be))},t.\u0275dir=G({type:t,selectors:[["mat-error"]],hostAttrs:["aria-atomic","true",1,"mat-error"],hostVars:1,hostBindings:function(e,i){2&e&&Me("id",i.id)},inputs:{id:"id"},features:[$e([{provide:tO,useExisting:t}])]}),t})();const zq={transitionMessages:di("transitionMessages",[Jt("enter",Ne({opacity:1,transform:"translateY(0%)"})),Wt("void => enter",[Ne({opacity:0,transform:"translateY(-5px)"}),$t("300ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let Vb=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275dir=G({type:t}),t})();const Hq=new Z("MatHint");let Ub=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275dir=G({type:t,selectors:[["mat-label"]]}),t})(),Gq=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275dir=G({type:t,selectors:[["mat-placeholder"]]}),t})();const nO=new Z("MatPrefix");let Wq=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275dir=G({type:t,selectors:[["","matPrefix",""]],features:[$e([{provide:nO,useExisting:t}])]}),t})();const iO=new Z("MatSuffix");let Kq=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275dir=G({type:t,selectors:[["","matSuffix",""]],features:[$e([{provide:iO,useExisting:t}])]}),t})(),rO=0;const qq=Ec(class{constructor(t){this._elementRef=t}},"primary"),Xq=new Z("MAT_FORM_FIELD_DEFAULT_OPTIONS"),jb=new Z("MatFormField");let zb=(()=>{class t extends qq{constructor(e,i,r,s,a,o,l){super(e),this._changeDetectorRef=i,this._dir=r,this._defaults=s,this._platform=a,this._ngZone=o,this._outlineGapCalculationNeededImmediately=!1,this._outlineGapCalculationNeededOnStable=!1,this._destroyed=new pe,this._hideRequiredMarker=!1,this._showAlwaysAnimate=!1,this._subscriptAnimationState="",this._hintLabel="",this._hintLabelId="mat-hint-"+rO++,this._labelId="mat-form-field-label-"+rO++,this.floatLabel=this._getDefaultFloatLabelState(),this._animationsEnabled="NoopAnimations"!==l,this.appearance=s?.appearance||"legacy",s&&(this._hideRequiredMarker=Boolean(s.hideRequiredMarker),s.color&&(this.color=this.defaultColor=s.color))}get appearance(){return this._appearance}set appearance(e){const i=this._appearance;this._appearance=e||this._defaults?.appearance||"legacy","outline"===this._appearance&&i!==e&&(this._outlineGapCalculationNeededOnStable=!0)}get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(e){this._hideRequiredMarker=zt(e)}_shouldAlwaysFloat(){return"always"===this.floatLabel&&!this._showAlwaysAnimate}_canLabelFloat(){return"never"!==this.floatLabel}get hintLabel(){return this._hintLabel}set hintLabel(e){this._hintLabel=e,this._processHints()}get floatLabel(){return"legacy"!==this.appearance&&"never"===this._floatLabel?"auto":this._floatLabel}set floatLabel(e){e!==this._floatLabel&&(this._floatLabel=e||this._getDefaultFloatLabelState(),this._changeDetectorRef.markForCheck())}get _control(){return this._explicitFormFieldControl||this._controlNonStatic||this._controlStatic}set _control(e){this._explicitFormFieldControl=e}getLabelId(){return this._hasFloatingLabel()?this._labelId:null}getConnectedOverlayOrigin(){return this._connectionContainerRef||this._elementRef}ngAfterContentInit(){this._validateControlChild();const e=this._control;e.controlType&&this._elementRef.nativeElement.classList.add(`mat-form-field-type-${e.controlType}`),e.stateChanges.pipe(Ms(null)).subscribe(()=>{this._validatePlaceholders(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),e.ngControl&&e.ngControl.valueChanges&&e.ngControl.valueChanges.pipe(dt(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck()),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe(dt(this._destroyed)).subscribe(()=>{this._outlineGapCalculationNeededOnStable&&this.updateOutlineGap()})}),ar(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._outlineGapCalculationNeededOnStable=!0,this._changeDetectorRef.markForCheck()}),this._hintChildren.changes.pipe(Ms(null)).subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.pipe(Ms(null)).subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._dir&&this._dir.change.pipe(dt(this._destroyed)).subscribe(()=>{"function"==typeof requestAnimationFrame?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>this.updateOutlineGap())}):this.updateOutlineGap()})}ngAfterContentChecked(){this._validateControlChild(),this._outlineGapCalculationNeededImmediately&&this.updateOutlineGap()}ngAfterViewInit(){this._subscriptAnimationState="enter",this._changeDetectorRef.detectChanges()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_shouldForward(e){const i=this._control?this._control.ngControl:null;return i&&i[e]}_hasPlaceholder(){return!!(this._control&&this._control.placeholder||this._placeholderChild)}_hasLabel(){return!(!this._labelChildNonStatic&&!this._labelChildStatic)}_shouldLabelFloat(){return this._canLabelFloat()&&(this._control&&this._control.shouldLabelFloat||this._shouldAlwaysFloat())}_hideControlPlaceholder(){return"legacy"===this.appearance&&!this._hasLabel()||this._hasLabel()&&!this._shouldLabelFloat()}_hasFloatingLabel(){return this._hasLabel()||"legacy"===this.appearance&&this._hasPlaceholder()}_getDisplayedMessages(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"}_animateAndLockLabel(){this._hasFloatingLabel()&&this._canLabelFloat()&&(this._animationsEnabled&&this._label&&(this._showAlwaysAnimate=!0,qo(this._label.nativeElement,"transitionend").pipe(gn(1)).subscribe(()=>{this._showAlwaysAnimate=!1})),this.floatLabel="always",this._changeDetectorRef.markForCheck())}_validatePlaceholders(){}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){}_getDefaultFloatLabelState(){return this._defaults&&this._defaults.floatLabel||"auto"}_syncDescribedByIds(){if(this._control){let e=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&e.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getDisplayedMessages()){const i=this._hintChildren?this._hintChildren.find(s=>"start"===s.align):null,r=this._hintChildren?this._hintChildren.find(s=>"end"===s.align):null;i?e.push(i.id):this._hintLabel&&e.push(this._hintLabelId),r&&e.push(r.id)}else this._errorChildren&&e.push(...this._errorChildren.map(i=>i.id));this._control.setDescribedByIds(e)}}_validateControlChild(){}updateOutlineGap(){const e=this._label?this._label.nativeElement:null,i=this._connectionContainerRef.nativeElement,r=".mat-form-field-outline-start",s=".mat-form-field-outline-gap";if("outline"!==this.appearance||!this._platform.isBrowser)return;if(!e||!e.children.length||!e.textContent.trim()){const h=i.querySelectorAll(`${r}, ${s}`);for(let p=0;p<h.length;p++)h[p].style.width="0";return}if(!this._isAttachedToDOM())return void(this._outlineGapCalculationNeededImmediately=!0);let a=0,o=0;const l=i.querySelectorAll(r),u=i.querySelectorAll(s);if(this._label&&this._label.nativeElement.children.length){const h=i.getBoundingClientRect();if(0===h.width&&0===h.height)return this._outlineGapCalculationNeededOnStable=!0,void(this._outlineGapCalculationNeededImmediately=!1);const p=this._getStartEnd(h),C=e.children,w=this._getStartEnd(C[0].getBoundingClientRect());let k=0;for(let L=0;L<C.length;L++)k+=C[L].offsetWidth;a=Math.abs(w-p)-5,o=k>0?.75*k+10:0}for(let h=0;h<l.length;h++)l[h].style.width=`${a}px`;for(let h=0;h<u.length;h++)u[h].style.width=`${o}px`;this._outlineGapCalculationNeededOnStable=this._outlineGapCalculationNeededImmediately=!1}_getStartEnd(e){return this._dir&&"rtl"===this._dir.value?e.right:e.left}_isAttachedToDOM(){const e=this._elementRef.nativeElement;if(e.getRootNode){const i=e.getRootNode();return i&&i!==e}return document.documentElement.contains(e)}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(Kn),_(Is,8),_(Xq,8),_(hi),_(He),_(nr,8))},t.\u0275cmp=ce({type:t,selectors:[["mat-form-field"]],contentQueries:function(e,i,r){if(1&e&&(Cn(r,Vb,5),Cn(r,Vb,7),Cn(r,Ub,5),Cn(r,Ub,7),Cn(r,Gq,5),Cn(r,tO,5),Cn(r,Hq,5),Cn(r,nO,5),Cn(r,iO,5)),2&e){let s;xe(s=ke())&&(i._controlNonStatic=s.first),xe(s=ke())&&(i._controlStatic=s.first),xe(s=ke())&&(i._labelChildNonStatic=s.first),xe(s=ke())&&(i._labelChildStatic=s.first),xe(s=ke())&&(i._placeholderChild=s.first),xe(s=ke())&&(i._errorChildren=s),xe(s=ke())&&(i._hintChildren=s),xe(s=ke())&&(i._prefixChildren=s),xe(s=ke())&&(i._suffixChildren=s)}},viewQuery:function(e,i){if(1&e&&(it(Eq,7),it(Sq,5),it(Dq,5)),2&e){let r;xe(r=ke())&&(i._connectionContainerRef=r.first),xe(r=ke())&&(i._inputContainerRef=r.first),xe(r=ke())&&(i._label=r.first)}},hostAttrs:[1,"mat-form-field"],hostVars:40,hostBindings:function(e,i){2&e&&Mt("mat-form-field-appearance-standard","standard"==i.appearance)("mat-form-field-appearance-fill","fill"==i.appearance)("mat-form-field-appearance-outline","outline"==i.appearance)("mat-form-field-appearance-legacy","legacy"==i.appearance)("mat-form-field-invalid",i._control.errorState)("mat-form-field-can-float",i._canLabelFloat())("mat-form-field-should-float",i._shouldLabelFloat())("mat-form-field-has-label",i._hasFloatingLabel())("mat-form-field-hide-placeholder",i._hideControlPlaceholder())("mat-form-field-disabled",i._control.disabled)("mat-form-field-autofilled",i._control.autofilled)("mat-focused",i._control.focused)("ng-untouched",i._shouldForward("untouched"))("ng-touched",i._shouldForward("touched"))("ng-pristine",i._shouldForward("pristine"))("ng-dirty",i._shouldForward("dirty"))("ng-valid",i._shouldForward("valid"))("ng-invalid",i._shouldForward("invalid"))("ng-pending",i._shouldForward("pending"))("_mat-animation-noopable",!i._animationsEnabled)},inputs:{color:"color",appearance:"appearance",hideRequiredMarker:"hideRequiredMarker",hintLabel:"hintLabel",floatLabel:"floatLabel"},exportAs:["matFormField"],features:[$e([{provide:jb,useExisting:t}]),J],ngContentSelectors:Vq,decls:15,vars:8,consts:[[1,"mat-form-field-wrapper"],[1,"mat-form-field-flex",3,"click"],["connectionContainer",""],[4,"ngIf"],["class","mat-form-field-prefix",3,"cdkObserveContentDisabled","cdkObserveContent",4,"ngIf"],[1,"mat-form-field-infix"],["inputContainer",""],[1,"mat-form-field-label-wrapper"],["class","mat-form-field-label",3,"cdkObserveContentDisabled","id","mat-empty","mat-form-field-empty","mat-accent","mat-warn","ngSwitch","cdkObserveContent",4,"ngIf"],["class","mat-form-field-suffix",4,"ngIf"],["class","mat-form-field-underline",4,"ngIf"],[1,"mat-form-field-subscript-wrapper",3,"ngSwitch"],[4,"ngSwitchCase"],["class","mat-form-field-hint-wrapper",4,"ngSwitchCase"],[1,"mat-form-field-outline"],[1,"mat-form-field-outline-start"],[1,"mat-form-field-outline-gap"],[1,"mat-form-field-outline-end"],[1,"mat-form-field-outline","mat-form-field-outline-thick"],[1,"mat-form-field-prefix",3,"cdkObserveContentDisabled","cdkObserveContent"],[1,"mat-form-field-label",3,"cdkObserveContentDisabled","id","ngSwitch","cdkObserveContent"],["label",""],["class","mat-placeholder-required mat-form-field-required-marker","aria-hidden","true",4,"ngIf"],["aria-hidden","true",1,"mat-placeholder-required","mat-form-field-required-marker"],[1,"mat-form-field-suffix"],[1,"mat-form-field-underline"],[1,"mat-form-field-ripple"],[1,"mat-form-field-hint-wrapper"],["class","mat-hint",3,"id",4,"ngIf"],[1,"mat-form-field-hint-spacer"],[1,"mat-hint",3,"id"]],template:function(e,i){1&e&&(Ci(Bq),S(0,"div",0)(1,"div",1,2),ee("click",function(s){return i._control.onContainerClick&&i._control.onContainerClick(s)}),O(3,wq,9,0,"ng-container",3),O(4,xq,2,1,"div",4),S(5,"div",5,6),rn(7),S(8,"span",7),O(9,Rq,5,16,"label",8),D()(),O(10,Oq,2,0,"div",9),D(),O(11,Lq,2,4,"div",10),S(12,"div",11),O(13,Pq,2,1,"div",12),O(14,Fq,5,2,"div",13),D()()),2&e&&(b(3),E("ngIf","outline"==i.appearance),b(1),E("ngIf",i._prefixChildren.length),b(5),E("ngIf",i._hasFloatingLabel()),b(1),E("ngIf",i._suffixChildren.length),b(1),E("ngIf","outline"!=i.appearance),b(1),E("ngSwitch",i._getDisplayedMessages()),b(1),E("ngSwitchCase","error"),b(1),E("ngSwitchCase","hint"))},dependencies:[xt,Zu,iA,vI],styles:[".mat-form-field{display:inline-block;position:relative;text-align:left}[dir=rtl] .mat-form-field{text-align:right}.mat-form-field-wrapper{position:relative}.mat-form-field-flex{display:inline-flex;align-items:baseline;box-sizing:border-box;width:100%}.mat-form-field-prefix,.mat-form-field-suffix{white-space:nowrap;flex:none;position:relative}.mat-form-field-infix{display:block;position:relative;flex:auto;min-width:0;width:180px}.cdk-high-contrast-active .mat-form-field-infix{border-image:linear-gradient(transparent, transparent)}.mat-form-field-label-wrapper{position:absolute;left:0;box-sizing:content-box;width:100%;height:100%;overflow:hidden;pointer-events:none}[dir=rtl] .mat-form-field-label-wrapper{left:auto;right:0}.mat-form-field-label{position:absolute;left:0;font:inherit;pointer-events:none;width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;transform-origin:0 0;transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1),color 400ms cubic-bezier(0.25, 0.8, 0.25, 1),width 400ms cubic-bezier(0.25, 0.8, 0.25, 1);display:none}[dir=rtl] .mat-form-field-label{transform-origin:100% 0;left:auto;right:0}.cdk-high-contrast-active .mat-form-field-disabled .mat-form-field-label{color:GrayText}.mat-form-field-empty.mat-form-field-label,.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label{display:block}.mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{display:none}.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{display:block;transition:none}.mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label,.mat-input-server[placeholder]:not(:placeholder-shown)+.mat-form-field-label-wrapper .mat-form-field-label{display:none}.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label,.mat-form-field-can-float .mat-input-server[placeholder]:not(:placeholder-shown)+.mat-form-field-label-wrapper .mat-form-field-label{display:block}.mat-form-field-label:not(.mat-form-field-empty){transition:none}.mat-form-field-underline{position:absolute;width:100%;pointer-events:none;transform:scale3d(1, 1.0001, 1)}.mat-form-field-ripple{position:absolute;left:0;width:100%;transform-origin:50%;transform:scaleX(0.5);opacity:0;transition:background-color 300ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-form-field.mat-focused .mat-form-field-ripple,.mat-form-field.mat-form-field-invalid .mat-form-field-ripple{opacity:1;transform:none;transition:transform 300ms cubic-bezier(0.25, 0.8, 0.25, 1),opacity 100ms cubic-bezier(0.25, 0.8, 0.25, 1),background-color 300ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-form-field-subscript-wrapper{position:absolute;box-sizing:border-box;width:100%;overflow:hidden}.mat-form-field-subscript-wrapper .mat-icon,.mat-form-field-label-wrapper .mat-icon{width:1em;height:1em;font-size:inherit;vertical-align:baseline}.mat-form-field-hint-wrapper{display:flex}.mat-form-field-hint-spacer{flex:1 0 1em}.mat-error{display:block}.mat-form-field-control-wrapper{position:relative}.mat-form-field-hint-end{order:1}.mat-form-field._mat-animation-noopable .mat-form-field-label,.mat-form-field._mat-animation-noopable .mat-form-field-ripple{transition:none}",'.mat-form-field-appearance-fill .mat-form-field-flex{border-radius:4px 4px 0 0;padding:.75em .75em 0 .75em}.cdk-high-contrast-active .mat-form-field-appearance-fill .mat-form-field-flex{outline:solid 1px}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{outline-color:GrayText}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-focused .mat-form-field-flex{outline:dashed 3px}.mat-form-field-appearance-fill .mat-form-field-underline::before{content:"";display:block;position:absolute;bottom:0;height:1px;width:100%}.mat-form-field-appearance-fill .mat-form-field-ripple{bottom:0;height:2px}.cdk-high-contrast-active .mat-form-field-appearance-fill .mat-form-field-ripple{height:0}.mat-form-field-appearance-fill:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-underline .mat-form-field-ripple{opacity:1;transform:none;transition:opacity 600ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-form-field-appearance-fill._mat-animation-noopable:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-underline .mat-form-field-ripple{transition:none}.mat-form-field-appearance-fill .mat-form-field-subscript-wrapper{padding:0 1em}','.mat-input-element{font:inherit;background:rgba(0,0,0,0);color:currentColor;border:none;outline:none;padding:0;margin:0;width:100%;max-width:100%;vertical-align:bottom;text-align:inherit;box-sizing:content-box}.mat-input-element:-moz-ui-invalid{box-shadow:none}.mat-input-element,.mat-input-element::-webkit-search-cancel-button,.mat-input-element::-webkit-search-decoration,.mat-input-element::-webkit-search-results-button,.mat-input-element::-webkit-search-results-decoration{-webkit-appearance:none}.mat-input-element::-webkit-contacts-auto-fill-button,.mat-input-element::-webkit-caps-lock-indicator,.mat-input-element:not([type=password])::-webkit-credentials-auto-fill-button{visibility:hidden}.mat-input-element[type=date],.mat-input-element[type=datetime],.mat-input-element[type=datetime-local],.mat-input-element[type=month],.mat-input-element[type=week],.mat-input-element[type=time]{line-height:1}.mat-input-element[type=date]::after,.mat-input-element[type=datetime]::after,.mat-input-element[type=datetime-local]::after,.mat-input-element[type=month]::after,.mat-input-element[type=week]::after,.mat-input-element[type=time]::after{content:" ";white-space:pre;width:1px}.mat-input-element::-webkit-inner-spin-button,.mat-input-element::-webkit-calendar-picker-indicator,.mat-input-element::-webkit-clear-button{font-size:.75em}.mat-input-element::placeholder{-webkit-user-select:none;user-select:none;transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-input-element::-moz-placeholder{-webkit-user-select:none;user-select:none;transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-input-element::-webkit-input-placeholder{-webkit-user-select:none;user-select:none;transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-input-element:-ms-input-placeholder{-webkit-user-select:none;user-select:none;transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-form-field-hide-placeholder .mat-input-element::placeholder{color:rgba(0,0,0,0) !important;-webkit-text-fill-color:rgba(0,0,0,0);transition:none}.cdk-high-contrast-active .mat-form-field-hide-placeholder .mat-input-element::placeholder{opacity:0}.mat-form-field-hide-placeholder .mat-input-element::-moz-placeholder{color:rgba(0,0,0,0) !important;-webkit-text-fill-color:rgba(0,0,0,0);transition:none}.cdk-high-contrast-active .mat-form-field-hide-placeholder .mat-input-element::-moz-placeholder{opacity:0}.mat-form-field-hide-placeholder .mat-input-element::-webkit-input-placeholder{color:rgba(0,0,0,0) !important;-webkit-text-fill-color:rgba(0,0,0,0);transition:none}.cdk-high-contrast-active .mat-form-field-hide-placeholder .mat-input-element::-webkit-input-placeholder{opacity:0}.mat-form-field-hide-placeholder .mat-input-element:-ms-input-placeholder{color:rgba(0,0,0,0) !important;-webkit-text-fill-color:rgba(0,0,0,0);transition:none}.cdk-high-contrast-active .mat-form-field-hide-placeholder .mat-input-element:-ms-input-placeholder{opacity:0}._mat-animation-noopable .mat-input-element::placeholder{transition:none}._mat-animation-noopable .mat-input-element::-moz-placeholder{transition:none}._mat-animation-noopable .mat-input-element::-webkit-input-placeholder{transition:none}._mat-animation-noopable .mat-input-element:-ms-input-placeholder{transition:none}textarea.mat-input-element{resize:vertical;overflow:auto}textarea.mat-input-element.cdk-textarea-autosize{resize:none}textarea.mat-input-element{padding:2px 0;margin:-2px 0}select.mat-input-element{-moz-appearance:none;-webkit-appearance:none;position:relative;background-color:rgba(0,0,0,0);display:inline-flex;box-sizing:border-box;padding-top:1em;top:-1em;margin-bottom:-1em}select.mat-input-element::-moz-focus-inner{border:0}select.mat-input-element:not(:disabled){cursor:pointer}.mat-form-field-type-mat-native-select .mat-form-field-infix::after{content:"";width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-top:5px solid;position:absolute;top:50%;right:0;margin-top:-2.5px;pointer-events:none}[dir=rtl] .mat-form-field-type-mat-native-select .mat-form-field-infix::after{right:auto;left:0}.mat-form-field-type-mat-native-select .mat-input-element{padding-right:15px}[dir=rtl] .mat-form-field-type-mat-native-select .mat-input-element{padding-right:0;padding-left:15px}.mat-form-field-type-mat-native-select .mat-form-field-label-wrapper{max-width:calc(100% - 10px)}.mat-form-field-type-mat-native-select.mat-form-field-appearance-outline .mat-form-field-infix::after{margin-top:-5px}.mat-form-field-type-mat-native-select.mat-form-field-appearance-fill .mat-form-field-infix::after{margin-top:-10px}',".mat-form-field-appearance-legacy .mat-form-field-label{transform:perspective(100px)}.mat-form-field-appearance-legacy .mat-form-field-prefix .mat-icon,.mat-form-field-appearance-legacy .mat-form-field-suffix .mat-icon{width:1em}.mat-form-field-appearance-legacy .mat-form-field-prefix .mat-icon-button,.mat-form-field-appearance-legacy .mat-form-field-suffix .mat-icon-button{font:inherit;vertical-align:baseline}.mat-form-field-appearance-legacy .mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field-appearance-legacy .mat-form-field-suffix .mat-icon-button .mat-icon{font-size:inherit}.mat-form-field-appearance-legacy .mat-form-field-underline{height:1px}.cdk-high-contrast-active .mat-form-field-appearance-legacy .mat-form-field-underline{height:0;border-top:solid 1px}.mat-form-field-appearance-legacy .mat-form-field-ripple{top:0;height:2px;overflow:hidden}.cdk-high-contrast-active .mat-form-field-appearance-legacy .mat-form-field-ripple{height:0;border-top:solid 2px}.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-position:0;background-color:rgba(0,0,0,0)}.cdk-high-contrast-active .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{border-top-style:dotted;border-top-width:2px;border-top-color:GrayText}.mat-form-field-appearance-legacy.mat-form-field-invalid:not(.mat-focused) .mat-form-field-ripple{height:1px}",".mat-form-field-appearance-outline .mat-form-field-wrapper{margin:.25em 0}.mat-form-field-appearance-outline .mat-form-field-flex{padding:0 .75em 0 .75em;margin-top:-0.25em;position:relative}.mat-form-field-appearance-outline .mat-form-field-prefix,.mat-form-field-appearance-outline .mat-form-field-suffix{top:.25em}.mat-form-field-appearance-outline .mat-form-field-outline{display:flex;position:absolute;top:.25em;left:0;right:0;bottom:0;pointer-events:none}.mat-form-field-appearance-outline .mat-form-field-outline-start,.mat-form-field-appearance-outline .mat-form-field-outline-end{border:1px solid currentColor;min-width:5px}.mat-form-field-appearance-outline .mat-form-field-outline-start{border-radius:5px 0 0 5px;border-right-style:none}[dir=rtl] .mat-form-field-appearance-outline .mat-form-field-outline-start{border-right-style:solid;border-left-style:none;border-radius:0 5px 5px 0}.mat-form-field-appearance-outline .mat-form-field-outline-end{border-radius:0 5px 5px 0;border-left-style:none;flex-grow:1}[dir=rtl] .mat-form-field-appearance-outline .mat-form-field-outline-end{border-left-style:solid;border-right-style:none;border-radius:5px 0 0 5px}.mat-form-field-appearance-outline .mat-form-field-outline-gap{border-radius:.000001px;border:1px solid currentColor;border-left-style:none;border-right-style:none}.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-outline-gap{border-top-color:rgba(0,0,0,0)}.mat-form-field-appearance-outline .mat-form-field-outline-thick{opacity:0}.mat-form-field-appearance-outline .mat-form-field-outline-thick .mat-form-field-outline-start,.mat-form-field-appearance-outline .mat-form-field-outline-thick .mat-form-field-outline-end,.mat-form-field-appearance-outline .mat-form-field-outline-thick .mat-form-field-outline-gap{border-width:2px}.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline,.mat-form-field-appearance-outline.mat-form-field-invalid .mat-form-field-outline{opacity:0;transition:opacity 100ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick,.mat-form-field-appearance-outline.mat-form-field-invalid .mat-form-field-outline-thick{opacity:1}.cdk-high-contrast-active .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{border:3px dashed}.mat-form-field-appearance-outline:not(.mat-form-field-disabled) .mat-form-field-flex:hover .mat-form-field-outline{opacity:0;transition:opacity 600ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-form-field-appearance-outline:not(.mat-form-field-disabled) .mat-form-field-flex:hover .mat-form-field-outline-thick{opacity:1}.mat-form-field-appearance-outline .mat-form-field-subscript-wrapper{padding:0 1em}.cdk-high-contrast-active .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:GrayText}.mat-form-field-appearance-outline._mat-animation-noopable:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-outline,.mat-form-field-appearance-outline._mat-animation-noopable .mat-form-field-outline,.mat-form-field-appearance-outline._mat-animation-noopable .mat-form-field-outline-start,.mat-form-field-appearance-outline._mat-animation-noopable .mat-form-field-outline-end,.mat-form-field-appearance-outline._mat-animation-noopable .mat-form-field-outline-gap{transition:none}",".mat-form-field-appearance-standard .mat-form-field-flex{padding-top:.75em}.mat-form-field-appearance-standard .mat-form-field-underline{height:1px}.cdk-high-contrast-active .mat-form-field-appearance-standard .mat-form-field-underline{height:0;border-top:solid 1px}.mat-form-field-appearance-standard .mat-form-field-ripple{bottom:0;height:2px}.cdk-high-contrast-active .mat-form-field-appearance-standard .mat-form-field-ripple{height:0;border-top:solid 2px}.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-position:0;background-color:rgba(0,0,0,0)}.cdk-high-contrast-active .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{border-top-style:dotted;border-top-width:2px}.mat-form-field-appearance-standard:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-underline .mat-form-field-ripple{opacity:1;transform:none;transition:opacity 600ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-form-field-appearance-standard._mat-animation-noopable:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-underline .mat-form-field-ripple{transition:none}"],encapsulation:2,data:{animation:[zq.transitionMessages]},changeDetection:0}),t})(),Dg=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[sn,At,jp,At]}),t})();const aO=Xo({passive:!0});let Qq=(()=>{class t{constructor(e,i){this._platform=e,this._ngZone=i,this._monitoredElements=new Map}monitor(e){if(!this._platform.isBrowser)return wr;const i=fa(e),r=this._monitoredElements.get(i);if(r)return r.subject;const s=new pe,a="cdk-text-field-autofilled",o=l=>{"cdk-text-field-autofill-start"!==l.animationName||i.classList.contains(a)?"cdk-text-field-autofill-end"===l.animationName&&i.classList.contains(a)&&(i.classList.remove(a),this._ngZone.run(()=>s.next({target:l.target,isAutofilled:!1}))):(i.classList.add(a),this._ngZone.run(()=>s.next({target:l.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{i.addEventListener("animationstart",o,aO),i.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(i,{subject:s,unlisten:()=>{i.removeEventListener("animationstart",o,aO)}}),s}stopMonitoring(e){const i=fa(e),r=this._monitoredElements.get(i);r&&(r.unlisten(),r.subject.complete(),i.classList.remove("cdk-text-field-autofill-monitored"),i.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(i))}ngOnDestroy(){this._monitoredElements.forEach((e,i)=>this.stopMonitoring(i))}}return t.\u0275fac=function(e){return new(e||t)(R(hi),R(He))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),Zq=(()=>{class t{constructor(e,i,r,s){this._elementRef=e,this._platform=i,this._ngZone=r,this._destroyed=new pe,this._enabled=!0,this._previousMinRows=-1,this._isViewInited=!1,this._handleFocusEvent=a=>{this._hasFocus="focus"===a.type},this._document=s,this._textareaElement=this._elementRef.nativeElement}get minRows(){return this._minRows}set minRows(e){this._minRows=ss(e),this._setMinHeight()}get maxRows(){return this._maxRows}set maxRows(e){this._maxRows=ss(e),this._setMaxHeight()}get enabled(){return this._enabled}set enabled(e){e=zt(e),this._enabled!==e&&((this._enabled=e)?this.resizeToFitContent(!0):this.reset())}get placeholder(){return this._textareaElement.placeholder}set placeholder(e){this._cachedPlaceholderHeight=void 0,e?this._textareaElement.setAttribute("placeholder",e):this._textareaElement.removeAttribute("placeholder"),this._cacheTextareaPlaceholderHeight()}_setMinHeight(){const e=this.minRows&&this._cachedLineHeight?this.minRows*this._cachedLineHeight+"px":null;e&&(this._textareaElement.style.minHeight=e)}_setMaxHeight(){const e=this.maxRows&&this._cachedLineHeight?this.maxRows*this._cachedLineHeight+"px":null;e&&(this._textareaElement.style.maxHeight=e)}ngAfterViewInit(){this._platform.isBrowser&&(this._initialHeight=this._textareaElement.style.height,this.resizeToFitContent(),this._ngZone.runOutsideAngular(()=>{qo(this._getWindow(),"resize").pipe(kv(16),dt(this._destroyed)).subscribe(()=>this.resizeToFitContent(!0)),this._textareaElement.addEventListener("focus",this._handleFocusEvent),this._textareaElement.addEventListener("blur",this._handleFocusEvent)}),this._isViewInited=!0,this.resizeToFitContent(!0))}ngOnDestroy(){this._textareaElement.removeEventListener("focus",this._handleFocusEvent),this._textareaElement.removeEventListener("blur",this._handleFocusEvent),this._destroyed.next(),this._destroyed.complete()}_cacheTextareaLineHeight(){if(this._cachedLineHeight)return;let e=this._textareaElement.cloneNode(!1);e.rows=1,e.style.position="absolute",e.style.visibility="hidden",e.style.border="none",e.style.padding="0",e.style.height="",e.style.minHeight="",e.style.maxHeight="",e.style.overflow="hidden",this._textareaElement.parentNode.appendChild(e),this._cachedLineHeight=e.clientHeight,e.remove(),this._setMinHeight(),this._setMaxHeight()}_measureScrollHeight(){const e=this._textareaElement,i=e.style.marginBottom||"",r=this._platform.FIREFOX,s=r&&this._hasFocus,a=r?"cdk-textarea-autosize-measuring-firefox":"cdk-textarea-autosize-measuring";s&&(e.style.marginBottom=`${e.clientHeight}px`),e.classList.add(a);const o=e.scrollHeight-4;return e.classList.remove(a),s&&(e.style.marginBottom=i),o}_cacheTextareaPlaceholderHeight(){if(!this._isViewInited||null!=this._cachedPlaceholderHeight)return;if(!this.placeholder)return void(this._cachedPlaceholderHeight=0);const e=this._textareaElement.value;this._textareaElement.value=this._textareaElement.placeholder,this._cachedPlaceholderHeight=this._measureScrollHeight(),this._textareaElement.value=e}ngDoCheck(){this._platform.isBrowser&&this.resizeToFitContent()}resizeToFitContent(e=!1){if(!this._enabled||(this._cacheTextareaLineHeight(),this._cacheTextareaPlaceholderHeight(),!this._cachedLineHeight))return;const i=this._elementRef.nativeElement,r=i.value;if(!e&&this._minRows===this._previousMinRows&&r===this._previousValue)return;const s=this._measureScrollHeight(),a=Math.max(s,this._cachedPlaceholderHeight||0);i.style.height=`${a}px`,this._ngZone.runOutsideAngular(()=>{typeof requestAnimationFrame<"u"?requestAnimationFrame(()=>this._scrollToCaretPosition(i)):setTimeout(()=>this._scrollToCaretPosition(i))}),this._previousValue=r,this._previousMinRows=this._minRows}reset(){void 0!==this._initialHeight&&(this._textareaElement.style.height=this._initialHeight)}_noopInputHandler(){}_getDocument(){return this._document||document}_getWindow(){return this._getDocument().defaultView||window}_scrollToCaretPosition(e){const{selectionStart:i,selectionEnd:r}=e;!this._destroyed.isStopped&&this._hasFocus&&e.setSelectionRange(i,r)}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(hi),_(He),_(Ye,8))},t.\u0275dir=G({type:t,selectors:[["textarea","cdkTextareaAutosize",""]],hostAttrs:["rows","1",1,"cdk-textarea-autosize"],hostBindings:function(e,i){1&e&&ee("input",function(){return i._noopInputHandler()})},inputs:{minRows:["cdkAutosizeMinRows","minRows"],maxRows:["cdkAutosizeMaxRows","maxRows"],enabled:["cdkTextareaAutosize","enabled"],placeholder:"placeholder"},exportAs:["cdkTextareaAutosize"]}),t})(),oO=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({}),t})();const lO=new Z("MAT_INPUT_VALUE_ACCESSOR"),$q=["button","checkbox","file","hidden","image","radio","range","reset","submit"];let Jq=0;const eX=r8(class{constructor(t,n,e,i){this._defaultErrorStateMatcher=t,this._parentForm=n,this._parentFormGroup=e,this.ngControl=i,this.stateChanges=new pe}});let wg=(()=>{class t extends eX{constructor(e,i,r,s,a,o,l,u,h,p){super(o,s,a,r),this._elementRef=e,this._platform=i,this._autofillMonitor=u,this._formField=p,this._uid="mat-input-"+Jq++,this.focused=!1,this.stateChanges=new pe,this.controlType="mat-input",this.autofilled=!1,this._disabled=!1,this._type="text",this._readonly=!1,this._neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(k=>sI().has(k)),this._iOSKeyupListener=k=>{const L=k.target;!L.value&&0===L.selectionStart&&0===L.selectionEnd&&(L.setSelectionRange(1,1),L.setSelectionRange(0,0))};const C=this._elementRef.nativeElement,w=C.nodeName.toLowerCase();this._inputValueAccessor=l||C,this._previousNativeValue=this.value,this.id=this.id,i.IOS&&h.runOutsideAngular(()=>{e.nativeElement.addEventListener("keyup",this._iOSKeyupListener)}),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===w,this._isTextarea="textarea"===w,this._isInFormField=!!p,this._isNativeSelect&&(this.controlType=C.multiple?"mat-native-select-multiple":"mat-native-select")}get disabled(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled}set disabled(e){this._disabled=zt(e),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(e){this._id=e||this._uid}get required(){return this._required??this.ngControl?.control?.hasValidator(cd.required)??!1}set required(e){this._required=zt(e)}get type(){return this._type}set type(e){this._type=e||"text",this._validateType(),!this._isTextarea&&sI().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get value(){return this._inputValueAccessor.value}set value(e){e!==this.value&&(this._inputValueAccessor.value=e,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(e){this._readonly=zt(e)}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(e=>{this.autofilled=e.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement),this._platform.IOS&&this._elementRef.nativeElement.removeEventListener("keyup",this._iOSKeyupListener)}ngDoCheck(){this.ngControl&&this.updateErrorState(),this._dirtyCheckNativeValue(),this._dirtyCheckPlaceholder()}focus(e){this._elementRef.nativeElement.focus(e)}_focusChanged(e){e!==this.focused&&(this.focused=e,this.stateChanges.next())}_onInput(){}_dirtyCheckPlaceholder(){const e=this._formField,i=e&&"legacy"===e.appearance&&!e._hasLabel?.()?null:this.placeholder;if(i!==this._previousPlaceholder){const r=this._elementRef.nativeElement;this._previousPlaceholder=i,i?r.setAttribute("placeholder",i):r.removeAttribute("placeholder")}}_dirtyCheckNativeValue(){const e=this._elementRef.nativeElement.value;this._previousNativeValue!==e&&(this._previousNativeValue=e,this.stateChanges.next())}_validateType(){$q.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let e=this._elementRef.nativeElement.validity;return e&&e.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const e=this._elementRef.nativeElement,i=e.options[0];return this.focused||e.multiple||!this.empty||!!(e.selectedIndex>-1&&i&&i.label)}return this.focused||!this.empty}setDescribedByIds(e){e.length?this._elementRef.nativeElement.setAttribute("aria-describedby",e.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const e=this._elementRef.nativeElement;return this._isNativeSelect&&(e.multiple||e.size>1)}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(hi),_(ha,10),_(xp,8),_(pd,8),_(FI),_(lO,10),_(Qq),_(He),_(jb,8))},t.\u0275dir=G({type:t,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-input-element","mat-form-field-autofill-control"],hostVars:12,hostBindings:function(e,i){1&e&&ee("focus",function(){return i._focusChanged(!0)})("blur",function(){return i._focusChanged(!1)})("input",function(){return i._onInput()}),2&e&&(Mo("disabled",i.disabled)("required",i.required),Me("id",i.id)("data-placeholder",i.placeholder)("name",i.name||null)("readonly",i.readonly&&!i._isNativeSelect||null)("aria-invalid",i.empty&&i.required?null:i.errorState)("aria-required",i.required),Mt("mat-input-server",i._isServer)("mat-native-select-inline",i._isInlineSelect()))},inputs:{disabled:"disabled",id:"id",placeholder:"placeholder",name:"name",required:"required",type:"type",errorStateMatcher:"errorStateMatcher",userAriaDescribedBy:["aria-describedby","userAriaDescribedBy"],value:"value",readonly:"readonly"},exportAs:["matInput"],features:[$e([{provide:Vb,useExisting:t}]),J,$n]}),t})(),tX=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[FI],imports:[oO,Dg,At,oO,Dg]}),t})(),rX=(()=>{class t{constructor(){this.changes=new pe,this.calendarLabel="Calendar",this.openCalendarLabel="Open calendar",this.closeCalendarLabel="Close calendar",this.prevMonthLabel="Previous month",this.nextMonthLabel="Next month",this.prevYearLabel="Previous year",this.nextYearLabel="Next year",this.prevMultiYearLabel="Previous 24 years",this.nextMultiYearLabel="Next 24 years",this.switchToMonthViewLabel="Choose date",this.switchToMultiYearViewLabel="Choose month and year",this.startDateLabel="Start date",this.endDateLabel="End date"}formatYearRange(e,i){return`${e} \u2013 ${i}`}formatYearRangeLabel(e,i){return`${e} to ${i}`}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const pX={provide:new Z("mat-datepicker-scroll-strategy"),deps:[Ur],useFactory:function fX(t){return()=>t.scrollStrategies.reposition()}};let AX=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[rX,pX],imports:[sn,pa,el,qp,$o,At,bc]}),t})();function vX(t,n){}class Mg{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.closeOnNavigation=!0,this.closeOnDestroy=!0}}let hO=(()=>{class t extends Fv{constructor(e,i,r,s,a,o,l,u){super(),this._elementRef=e,this._focusTrapFactory=i,this._config=s,this._interactivityChecker=a,this._ngZone=o,this._overlayRef=l,this._focusMonitor=u,this._elementFocusedBeforeDialogWasOpened=null,this._closeInteractionType=null,this.attachDomPortal=h=>{this._portalOutlet.hasAttached();const p=this._portalOutlet.attachDomPortal(h);return this._contentAttached(),p},this._ariaLabelledBy=this._config.ariaLabelledBy||null,this._document=r}_contentAttached(){this._initializeFocusTrap(),this._handleBackdropClicks(),this._captureInitialFocus()}_captureInitialFocus(){this._trapFocus()}ngOnDestroy(){this._restoreFocus()}attachComponentPortal(e){this._portalOutlet.hasAttached();const i=this._portalOutlet.attachComponentPortal(e);return this._contentAttached(),i}attachTemplatePortal(e){this._portalOutlet.hasAttached();const i=this._portalOutlet.attachTemplatePortal(e);return this._contentAttached(),i}_recaptureFocus(){this._containsFocus()||this._trapFocus()}_forceFocus(e,i){this._interactivityChecker.isFocusable(e)||(e.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const r=()=>{e.removeEventListener("blur",r),e.removeEventListener("mousedown",r),e.removeAttribute("tabindex")};e.addEventListener("blur",r),e.addEventListener("mousedown",r)})),e.focus(i)}_focusByCssSelector(e,i){let r=this._elementRef.nativeElement.querySelector(e);r&&this._forceFocus(r,i)}_trapFocus(){const e=this._elementRef.nativeElement;switch(this._config.autoFocus){case!1:case"dialog":this._containsFocus()||e.focus();break;case!0:case"first-tabbable":this._focusTrap.focusInitialElementWhenReady().then(i=>{i||this._focusDialogContainer()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this._config.autoFocus)}}_restoreFocus(){const e=this._config.restoreFocus;let i=null;if("string"==typeof e?i=this._document.querySelector(e):"boolean"==typeof e?i=e?this._elementFocusedBeforeDialogWasOpened:null:e&&(i=e),this._config.restoreFocus&&i&&"function"==typeof i.focus){const r=Rv(),s=this._elementRef.nativeElement;(!r||r===this._document.body||r===s||s.contains(r))&&(this._focusMonitor?(this._focusMonitor.focusVia(i,this._closeInteractionType),this._closeInteractionType=null):i.focus())}this._focusTrap&&this._focusTrap.destroy()}_focusDialogContainer(){this._elementRef.nativeElement.focus&&this._elementRef.nativeElement.focus()}_containsFocus(){const e=this._elementRef.nativeElement,i=Rv();return e===i||e.contains(i)}_initializeFocusTrap(){this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._document&&(this._elementFocusedBeforeDialogWasOpened=Rv())}_handleBackdropClicks(){this._overlayRef.backdropClick().subscribe(()=>{this._config.disableClose&&this._recaptureFocus()})}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(qv),_(Ye,8),_(Mg),_(Kp),_(He),_(bd),_(Rs))},t.\u0275cmp=ce({type:t,selectors:[["cdk-dialog-container"]],viewQuery:function(e,i){if(1&e&&it(Bv,7),2&e){let r;xe(r=ke())&&(i._portalOutlet=r.first)}},hostAttrs:["tabindex","-1",1,"cdk-dialog-container"],hostVars:6,hostBindings:function(e,i){2&e&&Me("id",i._config.id||null)("role",i._config.role)("aria-modal",i._config.ariaModal)("aria-labelledby",i._config.ariaLabel?null:i._ariaLabelledBy)("aria-label",i._config.ariaLabel)("aria-describedby",i._config.ariaDescribedBy||null)},features:[J],decls:1,vars:0,consts:[["cdkPortalOutlet",""]],template:function(e,i){1&e&&O(0,vX,0,0,"ng-template",0)},dependencies:[Bv],styles:[".cdk-dialog-container{display:block;width:100%;height:100%;min-height:inherit;max-height:inherit}"],encapsulation:2}),t})();class Hb{constructor(n,e){this.overlayRef=n,this.config=e,this.closed=new pe,this.disableClose=e.disableClose,this.backdropClick=n.backdropClick(),this.keydownEvents=n.keydownEvents(),this.outsidePointerEvents=n.outsidePointerEvents(),this.id=e.id,this.keydownEvents.subscribe(i=>{27===i.keyCode&&!this.disableClose&&!Cd(i)&&(i.preventDefault(),this.close(void 0,{focusOrigin:"keyboard"}))}),this.backdropClick.subscribe(()=>{this.disableClose||this.close(void 0,{focusOrigin:"mouse"})})}close(n,e){if(this.containerInstance){const i=this.closed;this.containerInstance._closeInteractionType=e?.focusOrigin||"program",this.overlayRef.dispose(),i.next(n),i.complete(),this.componentInstance=this.containerInstance=null}}updatePosition(){return this.overlayRef.updatePosition(),this}updateSize(n="",e=""){return this.overlayRef.updateSize({width:n,height:e}),this}addPanelClass(n){return this.overlayRef.addPanelClass(n),this}removePanelClass(n){return this.overlayRef.removePanelClass(n),this}}const fO=new Z("DialogScrollStrategy"),bX=new Z("DialogData"),CX=new Z("DefaultDialogConfig"),EX={provide:fO,deps:[Ur],useFactory:function TX(t){return()=>t.scrollStrategies.block()}};let SX=0,pO=(()=>{class t{constructor(e,i,r,s,a,o){this._overlay=e,this._injector=i,this._defaultOptions=r,this._parentDialog=s,this._overlayContainer=a,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new pe,this._afterOpenedAtThisLevel=new pe,this._ariaHiddenElements=new Map,this.afterAllClosed=gc(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe(Ms(void 0))),this._scrollStrategy=o}get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}open(e,i){(i={...this._defaultOptions||new Mg,...i}).id=i.id||"cdk-dialog-"+SX++,i.id&&this.getDialogById(i.id);const s=this._getOverlayConfig(i),a=this._overlay.create(s),o=new Hb(a,i),l=this._attachContainer(a,o,i);return o.containerInstance=l,this._attachDialogContent(e,o,l,i),this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(o),o.closed.subscribe(()=>this._removeOpenDialog(o,!0)),this.afterOpened.next(o),o}closeAll(){Gb(this.openDialogs,e=>e.close())}getDialogById(e){return this.openDialogs.find(i=>i.id===e)}ngOnDestroy(){Gb(this._openDialogsAtThisLevel,e=>{!1===e.config.closeOnDestroy&&this._removeOpenDialog(e,!1)}),Gb(this._openDialogsAtThisLevel,e=>e.close()),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete(),this._openDialogsAtThisLevel=[]}_getOverlayConfig(e){const i=new Uv({positionStrategy:e.positionStrategy||this._overlay.position().global().centerHorizontally().centerVertically(),scrollStrategy:e.scrollStrategy||this._scrollStrategy(),panelClass:e.panelClass,hasBackdrop:e.hasBackdrop,direction:e.direction,minWidth:e.minWidth,minHeight:e.minHeight,maxWidth:e.maxWidth,maxHeight:e.maxHeight,width:e.width,height:e.height,disposeOnNavigation:e.closeOnNavigation});return e.backdropClass&&(i.backdropClass=e.backdropClass),i}_attachContainer(e,i,r){const s=r.injector||r.viewContainerRef?.injector,a=[{provide:Mg,useValue:r},{provide:Hb,useValue:i},{provide:bd,useValue:e}];let o;r.container?"function"==typeof r.container?o=r.container:(o=r.container.type,a.push(...r.container.providers(r))):o=hO;const l=new Fp(o,r.viewContainerRef,Fn.create({parent:s||this._injector,providers:a}),r.componentFactoryResolver);return e.attach(l).instance}_attachDialogContent(e,i,r,s){if(e instanceof li){const a=this._createInjector(s,i,r,void 0);let o={$implicit:s.data,dialogRef:i};s.templateContext&&(o={...o,..."function"==typeof s.templateContext?s.templateContext():s.templateContext}),r.attachTemplatePortal(new Nv(e,null,o,a))}else{const a=this._createInjector(s,i,r,this._injector),o=r.attachComponentPortal(new Fp(e,s.viewContainerRef,a,s.componentFactoryResolver));i.componentInstance=o.instance}}_createInjector(e,i,r,s){const a=e.injector||e.viewContainerRef?.injector,o=[{provide:bX,useValue:e.data},{provide:Hb,useValue:i}];return e.providers&&("function"==typeof e.providers?o.push(...e.providers(i,e,r)):o.push(...e.providers)),e.direction&&(!a||!a.get(Is,null,We.Optional))&&o.push({provide:Is,useValue:{value:e.direction,change:ye()}}),Fn.create({parent:a||s,providers:o})}_removeOpenDialog(e,i){const r=this.openDialogs.indexOf(e);r>-1&&(this.openDialogs.splice(r,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((s,a)=>{s?a.setAttribute("aria-hidden",s):a.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),i&&this._getAfterAllClosed().next()))}_hideNonDialogContentFromAssistiveTechnology(){const e=this._overlayContainer.getContainerElement();if(e.parentElement){const i=e.parentElement.children;for(let r=i.length-1;r>-1;r--){const s=i[r];s!==e&&"SCRIPT"!==s.nodeName&&"STYLE"!==s.nodeName&&!s.hasAttribute("aria-live")&&(this._ariaHiddenElements.set(s,s.getAttribute("aria-hidden")),s.setAttribute("aria-hidden","true"))}}}_getAfterAllClosed(){const e=this._parentDialog;return e?e._getAfterAllClosed():this._afterAllClosedAtThisLevel}}return t.\u0275fac=function(e){return new(e||t)(R(Ur),R(Fn),R(CX,8),R(t,12),R(Bp),R(fO))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})();function Gb(t,n){let e=t.length;for(;e--;)n(t[e])}let DX=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[pO,EX],imports:[el,$o,qp,$o]}),t})();function wX(t,n){}const zc={params:{enterAnimationDuration:"150ms",exitAnimationDuration:"75ms"}},xX={dialogContainer:di("dialogContainer",[Jt("void, exit",Ne({opacity:0,transform:"scale(0.7)"})),Jt("enter",Ne({transform:"none"})),Wt("* => enter",G0([$t("{{enterAnimationDuration}} cubic-bezier(0, 0, 0.2, 1)",Ne({transform:"none",opacity:1})),Xf("@*",qf(),{optional:!0})]),zc),Wt("* => void, * => exit",G0([$t("{{exitAnimationDuration}} cubic-bezier(0.4, 0.0, 0.2, 1)",Ne({opacity:0})),Xf("@*",qf(),{optional:!0})]),zc)])};class Wd{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.maxWidth="80vw",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.delayFocusTrap=!0,this.closeOnNavigation=!0,this.enterAnimationDuration=zc.params.enterAnimationDuration,this.exitAnimationDuration=zc.params.exitAnimationDuration}}let kX=(()=>{class t extends hO{constructor(e,i,r,s,a,o,l,u){super(e,i,r,s,a,o,l,u),this._animationStateChanged=new Ae}_captureInitialFocus(){this._config.delayFocusTrap||this._trapFocus()}_openAnimationDone(e){this._config.delayFocusTrap&&this._trapFocus(),this._animationStateChanged.next({state:"opened",totalTime:e})}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(qv),_(Ye,8),_(Wd),_(Kp),_(He),_(bd),_(Rs))},t.\u0275cmp=ce({type:t,selectors:[["ng-component"]],features:[J],decls:0,vars:0,template:function(e,i){},encapsulation:2}),t})(),IX=(()=>{class t extends kX{constructor(e,i,r,s,a,o,l,u,h){super(e,i,r,s,a,o,l,h),this._changeDetectorRef=u,this._state="enter"}_onAnimationDone({toState:e,totalTime:i}){"enter"===e?this._openAnimationDone(i):"exit"===e&&this._animationStateChanged.next({state:"closed",totalTime:i})}_onAnimationStart({toState:e,totalTime:i}){"enter"===e?this._animationStateChanged.next({state:"opening",totalTime:i}):("exit"===e||"void"===e)&&this._animationStateChanged.next({state:"closing",totalTime:i})}_startExitAnimation(){this._state="exit",this._changeDetectorRef.markForCheck()}_getAnimationState(){return{value:this._state,params:{enterAnimationDuration:this._config.enterAnimationDuration||zc.params.enterAnimationDuration,exitAnimationDuration:this._config.exitAnimationDuration||zc.params.exitAnimationDuration}}}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(qv),_(Ye,8),_(Wd),_(Kp),_(He),_(bd),_(Kn),_(Rs))},t.\u0275cmp=ce({type:t,selectors:[["mat-dialog-container"]],hostAttrs:["tabindex","-1",1,"mat-dialog-container"],hostVars:7,hostBindings:function(e,i){1&e&&ry("@dialogContainer.start",function(s){return i._onAnimationStart(s)})("@dialogContainer.done",function(s){return i._onAnimationDone(s)}),2&e&&(Mo("id",i._config.id),Me("aria-modal",i._config.ariaModal)("role",i._config.role)("aria-labelledby",i._config.ariaLabel?null:i._ariaLabelledBy)("aria-label",i._config.ariaLabel)("aria-describedby",i._config.ariaDescribedBy||null),ly("@dialogContainer",i._getAnimationState()))},features:[J],decls:1,vars:0,consts:[["cdkPortalOutlet",""]],template:function(e,i){1&e&&O(0,wX,0,0,"ng-template",0)},dependencies:[Bv],styles:[".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}.cdk-high-contrast-active .mat-dialog-container{outline:solid 1px}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;box-sizing:content-box;margin-bottom:-24px}.mat-dialog-actions.mat-dialog-actions-align-center,.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions.mat-dialog-actions-align-end,.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions .mat-button-base+.mat-button-base,.mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}"],encapsulation:2,data:{animation:[xX.dialogContainer]}}),t})();class Kd{constructor(n,e,i){this._ref=n,this._containerInstance=i,this._afterOpened=new pe,this._beforeClosed=new pe,this._state=0,this.disableClose=e.disableClose,this.id=n.id,i._animationStateChanged.pipe(Tn(r=>"opened"===r.state),gn(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),i._animationStateChanged.pipe(Tn(r=>"closed"===r.state),gn(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._finishDialogClose()}),n.overlayRef.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._finishDialogClose()}),ar(this.backdropClick(),this.keydownEvents().pipe(Tn(r=>27===r.keyCode&&!this.disableClose&&!Cd(r)))).subscribe(r=>{this.disableClose||(r.preventDefault(),gO(this,"keydown"===r.type?"keyboard":"mouse"))})}close(n){this._result=n,this._containerInstance._animationStateChanged.pipe(Tn(e=>"closing"===e.state),gn(1)).subscribe(e=>{this._beforeClosed.next(n),this._beforeClosed.complete(),this._ref.overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>this._finishDialogClose(),e.totalTime+100)}),this._state=1,this._containerInstance._startExitAnimation()}afterOpened(){return this._afterOpened}afterClosed(){return this._ref.closed}beforeClosed(){return this._beforeClosed}backdropClick(){return this._ref.backdropClick}keydownEvents(){return this._ref.keydownEvents}updatePosition(n){let e=this._ref.config.positionStrategy;return n&&(n.left||n.right)?n.left?e.left(n.left):e.right(n.right):e.centerHorizontally(),n&&(n.top||n.bottom)?n.top?e.top(n.top):e.bottom(n.bottom):e.centerVertically(),this._ref.updatePosition(),this}updateSize(n="",e=""){return this._ref.updateSize(n,e),this}addPanelClass(n){return this._ref.addPanelClass(n),this}removePanelClass(n){return this._ref.removePanelClass(n),this}getState(){return this._state}_finishDialogClose(){this._state=2,this._ref.close(this._result,{focusOrigin:this._closeInteractionType}),this.componentInstance=null}}function gO(t,n,e){return t._closeInteractionType=n,t.close(e)}const Rg=new Z("MatDialogData"),MX=new Z("mat-dialog-default-options"),mO=new Z("mat-dialog-scroll-strategy"),OX={provide:mO,deps:[Ur],useFactory:function RX(t){return()=>t.scrollStrategies.block()}};let LX=0,PX=(()=>{class t{constructor(e,i,r,s,a,o,l,u,h,p){this._overlay=e,this._defaultOptions=r,this._parentDialog=s,this._dialogRefConstructor=l,this._dialogContainerType=u,this._dialogDataToken=h,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new pe,this._afterOpenedAtThisLevel=new pe,this._idPrefix="mat-dialog-",this.afterAllClosed=gc(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe(Ms(void 0))),this._scrollStrategy=o,this._dialog=i.get(pO)}get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}_getAfterAllClosed(){const e=this._parentDialog;return e?e._getAfterAllClosed():this._afterAllClosedAtThisLevel}open(e,i){let r;(i={...this._defaultOptions||new Wd,...i}).id=i.id||`${this._idPrefix}${LX++}`,i.scrollStrategy=i.scrollStrategy||this._scrollStrategy();const s=this._dialog.open(e,{...i,positionStrategy:this._overlay.position().global().centerHorizontally().centerVertically(),disableClose:!0,closeOnDestroy:!1,container:{type:this._dialogContainerType,providers:()=>[{provide:Wd,useValue:i},{provide:Mg,useValue:i}]},templateContext:()=>({dialogRef:r}),providers:(a,o,l)=>(r=new this._dialogRefConstructor(a,i,l),r.updatePosition(i?.position),[{provide:this._dialogContainerType,useValue:l},{provide:this._dialogDataToken,useValue:o.data},{provide:this._dialogRefConstructor,useValue:r}])});return r.componentInstance=s.componentInstance,this.openDialogs.push(r),this.afterOpened.next(r),r.afterClosed().subscribe(()=>{const a=this.openDialogs.indexOf(r);a>-1&&(this.openDialogs.splice(a,1),this.openDialogs.length||this._getAfterAllClosed().next())}),r}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(e){return this.openDialogs.find(i=>i.id===e)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_closeDialogs(e){let i=e.length;for(;i--;)e[i].close()}}return t.\u0275fac=function(e){Ua()},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})(),Aa=(()=>{class t extends PX{constructor(e,i,r,s,a,o,l,u){super(e,i,s,o,l,a,Kd,IX,Rg,u)}}return t.\u0275fac=function(e){return new(e||t)(R(Ur),R(Fn),R(qu,8),R(MX,8),R(mO),R(t,12),R(Bp),R(nr,8))},t.\u0275prov=q({token:t,factory:t.\u0275fac}),t})(),NX=0,Yd=(()=>{class t{constructor(e,i,r){this.dialogRef=e,this._elementRef=i,this._dialog=r,this.type="button"}ngOnInit(){this.dialogRef||(this.dialogRef=_O(this._elementRef,this._dialog.openDialogs))}ngOnChanges(e){const i=e._matDialogClose||e._matDialogCloseResult;i&&(this.dialogResult=i.currentValue)}_onButtonClick(e){gO(this.dialogRef,0===e.screenX&&0===e.screenY?"keyboard":"mouse",this.dialogResult)}}return t.\u0275fac=function(e){return new(e||t)(_(Kd,8),_(be),_(Aa))},t.\u0275dir=G({type:t,selectors:[["","mat-dialog-close",""],["","matDialogClose",""]],hostVars:2,hostBindings:function(e,i){1&e&&ee("click",function(s){return i._onButtonClick(s)}),2&e&&Me("aria-label",i.ariaLabel||null)("type",i.type)},inputs:{ariaLabel:["aria-label","ariaLabel"],type:"type",dialogResult:["mat-dialog-close","dialogResult"],_matDialogClose:["matDialogClose","_matDialogClose"]},exportAs:["matDialogClose"],features:[$n]}),t})(),FX=(()=>{class t{constructor(e,i,r){this._dialogRef=e,this._elementRef=i,this._dialog=r,this.id="mat-dialog-title-"+NX++}ngOnInit(){this._dialogRef||(this._dialogRef=_O(this._elementRef,this._dialog.openDialogs)),this._dialogRef&&Promise.resolve().then(()=>{const e=this._dialogRef._containerInstance;e&&!e._ariaLabelledBy&&(e._ariaLabelledBy=this.id)})}}return t.\u0275fac=function(e){return new(e||t)(_(Kd,8),_(be),_(Aa))},t.\u0275dir=G({type:t,selectors:[["","mat-dialog-title",""],["","matDialogTitle",""]],hostAttrs:[1,"mat-dialog-title"],hostVars:1,hostBindings:function(e,i){2&e&&Mo("id",i.id)},inputs:{id:"id"},exportAs:["matDialogTitle"]}),t})(),qd=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275dir=G({type:t,selectors:[["","mat-dialog-content",""],["mat-dialog-content"],["","matDialogContent",""]],hostAttrs:[1,"mat-dialog-content"]}),t})(),Og=(()=>{class t{constructor(){this.align="start"}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275dir=G({type:t,selectors:[["","mat-dialog-actions",""],["mat-dialog-actions"],["","matDialogActions",""]],hostAttrs:[1,"mat-dialog-actions"],hostVars:4,hostBindings:function(e,i){2&e&&Mt("mat-dialog-actions-align-center","center"===i.align)("mat-dialog-actions-align-end","end"===i.align)},inputs:{align:"align"}}),t})();function _O(t,n){let e=t.nativeElement.parentElement;for(;e&&!e.classList.contains("mat-dialog-container");)e=e.parentElement;return e?n.find(i=>i.id===e.id):null}let yO=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[Aa,OX],imports:[DX,el,$o,At,At]}),t})(),AO=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[At,At]}),t})();function vO(t,n){return n?e=>Go(n.pipe(gn(1),function BX(){return ln((t,n)=>{t.subscribe(Zt(n,Xe))})}()),e.pipe(vO(t))):xn((e,i)=>Hn(t(e,i)).pipe(gn(1),RM(e)))}function bO(t,n=Op){const e=yd(t,n);return vO(()=>e)}const VX=["mat-menu-item",""];function UX(t,n){1&t&&(To(),S(0,"svg",2),le(1,"polygon",3),D())}const CO=["*"];function jX(t,n){if(1&t){const e=Fe();S(0,"div",0),ee("keydown",function(r){return me(e),_e(I()._handleKeydown(r))})("click",function(){return me(e),_e(I().closed.emit("click"))})("@transformMenu.start",function(r){return me(e),_e(I()._onAnimationStart(r))})("@transformMenu.done",function(r){return me(e),_e(I()._onAnimationDone(r))}),S(1,"div",1),rn(2),D()()}if(2&t){const e=I();E("id",e.panelId)("ngClass",e._classList)("@transformMenu",e._panelAnimationState),Me("aria-label",e.ariaLabel||null)("aria-labelledby",e.ariaLabelledby||null)("aria-describedby",e.ariaDescribedby||null)}}const Lg={transformMenu:di("transformMenu",[Jt("void",Ne({opacity:0,transform:"scale(0.8)"})),Wt("void => enter",$t("120ms cubic-bezier(0, 0, 0.2, 1)",Ne({opacity:1,transform:"scale(1)"}))),Wt("* => void",$t("100ms 25ms linear",Ne({opacity:0})))]),fadeInItems:di("fadeInItems",[Jt("showing",Ne({opacity:1})),Wt("void => *",[Ne({opacity:0}),$t("400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])},zX=new Z("MatMenuContent"),Wb=new Z("MAT_MENU_PANEL"),HX=Xp($v(class{}));let Hc=(()=>{class t extends HX{constructor(e,i,r,s,a){super(),this._elementRef=e,this._document=i,this._focusMonitor=r,this._parentMenu=s,this._changeDetectorRef=a,this.role="menuitem",this._hovered=new pe,this._focused=new pe,this._highlighted=!1,this._triggersSubmenu=!1,s?.addItem?.(this)}focus(e,i){this._focusMonitor&&e?this._focusMonitor.focusVia(this._getHostElement(),e,i):this._getHostElement().focus(i),this._focused.next(this)}ngAfterViewInit(){this._focusMonitor&&this._focusMonitor.monitor(this._elementRef,!1)}ngOnDestroy(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._elementRef.nativeElement}_checkDisabled(e){this.disabled&&(e.preventDefault(),e.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const e=this._elementRef.nativeElement.cloneNode(!0),i=e.querySelectorAll("mat-icon, .material-icons");for(let r=0;r<i.length;r++)i[r].remove();return e.textContent?.trim()||""}_setHighlighted(e){this._highlighted=e,this._changeDetectorRef?.markForCheck()}_hasFocus(){return this._document&&this._document.activeElement===this._getHostElement()}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(Ye),_(Rs),_(Wb,8),_(Kn))},t.\u0275cmp=ce({type:t,selectors:[["","mat-menu-item",""]],hostAttrs:[1,"mat-focus-indicator"],hostVars:10,hostBindings:function(e,i){1&e&&ee("click",function(s){return i._checkDisabled(s)})("mouseenter",function(){return i._handleMouseEnter()}),2&e&&(Me("role",i.role)("tabindex",i._getTabIndex())("aria-disabled",i.disabled.toString())("disabled",i.disabled||null),Mt("mat-menu-item",!0)("mat-menu-item-highlighted",i._highlighted)("mat-menu-item-submenu-trigger",i._triggersSubmenu))},inputs:{disabled:"disabled",disableRipple:"disableRipple",role:"role"},exportAs:["matMenuItem"],features:[J],attrs:VX,ngContentSelectors:CO,decls:3,vars:3,consts:[["matRipple","",1,"mat-menu-ripple",3,"matRippleDisabled","matRippleTrigger"],["class","mat-menu-submenu-icon","viewBox","0 0 5 10","focusable","false",4,"ngIf"],["viewBox","0 0 5 10","focusable","false",1,"mat-menu-submenu-icon"],["points","0,0 5,5 0,10"]],template:function(e,i){1&e&&(Ci(),rn(0),le(1,"div",0),O(2,UX,2,0,"svg",1)),2&e&&(b(1),E("matRippleDisabled",i.disableRipple||i.disabled)("matRippleTrigger",i._getHostElement()),b(1),E("ngIf",i._triggersSubmenu))},dependencies:[xt,tl],encapsulation:2,changeDetection:0}),t})();const TO=new Z("mat-menu-default-options",{providedIn:"root",factory:function GX(){return{overlapTrigger:!1,xPosition:"after",yPosition:"below",backdropClass:"cdk-overlay-transparent-backdrop"}}});let WX=0,Xd=(()=>{class t{constructor(e,i,r,s){this._elementRef=e,this._ngZone=i,this._defaultOptions=r,this._changeDetectorRef=s,this._xPosition=this._defaultOptions.xPosition,this._yPosition=this._defaultOptions.yPosition,this._directDescendantItems=new lc,this._tabSubscription=ae.EMPTY,this._classList={},this._panelAnimationState="void",this._animationDone=new pe,this.overlayPanelClass=this._defaultOptions.overlayPanelClass||"",this.backdropClass=this._defaultOptions.backdropClass,this._overlapTrigger=this._defaultOptions.overlapTrigger,this._hasBackdrop=this._defaultOptions.hasBackdrop,this.closed=new Ae,this.close=this.closed,this.panelId="mat-menu-panel-"+WX++}get xPosition(){return this._xPosition}set xPosition(e){this._xPosition=e,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(e){this._yPosition=e,this.setPositionClasses()}get overlapTrigger(){return this._overlapTrigger}set overlapTrigger(e){this._overlapTrigger=zt(e)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(e){this._hasBackdrop=zt(e)}set panelClass(e){const i=this._previousPanelClass;i&&i.length&&i.split(" ").forEach(r=>{this._classList[r]=!1}),this._previousPanelClass=e,e&&e.length&&(e.split(" ").forEach(r=>{this._classList[r]=!0}),this._elementRef.nativeElement.className="")}get classList(){return this.panelClass}set classList(e){this.panelClass=e}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new N4(this._directDescendantItems).withWrap().withTypeAhead().withHomeAndEnd(),this._tabSubscription=this._keyManager.tabOut.subscribe(()=>this.closed.emit("tab")),this._directDescendantItems.changes.pipe(Ms(this._directDescendantItems),Wi(e=>ar(...e.map(i=>i._focused)))).subscribe(e=>this._keyManager.updateActiveItem(e)),this._directDescendantItems.changes.subscribe(e=>{const i=this._keyManager;if("enter"===this._panelAnimationState&&i.activeItem?._hasFocus()){const r=e.toArray(),s=Math.max(0,Math.min(r.length-1,i.activeItemIndex||0));r[s]&&!r[s].disabled?i.setActiveItem(s):i.setNextItemActive()}})}ngOnDestroy(){this._directDescendantItems.destroy(),this._tabSubscription.unsubscribe(),this.closed.complete()}_hovered(){return this._directDescendantItems.changes.pipe(Ms(this._directDescendantItems),Wi(i=>ar(...i.map(r=>r._hovered))))}addItem(e){}removeItem(e){}_handleKeydown(e){const i=e.keyCode,r=this._keyManager;switch(i){case 27:Cd(e)||(e.preventDefault(),this.closed.emit("keydown"));break;case 37:this.parentMenu&&"ltr"===this.direction&&this.closed.emit("keydown");break;case 39:this.parentMenu&&"rtl"===this.direction&&this.closed.emit("keydown");break;default:return(38===i||40===i)&&r.setFocusOrigin("keyboard"),void r.onKeydown(e)}e.stopPropagation()}focusFirstItem(e="program"){this._ngZone.onStable.pipe(gn(1)).subscribe(()=>{let i=null;if(this._directDescendantItems.length&&(i=this._directDescendantItems.first._getHostElement().closest('[role="menu"]')),!i||!i.contains(document.activeElement)){const r=this._keyManager;r.setFocusOrigin(e).setFirstItemActive(),!r.activeItem&&i&&i.focus()}})}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(e){const i=Math.min(this._baseElevation+e,24),r=`${this._elevationPrefix}${i}`,s=Object.keys(this._classList).find(a=>a.startsWith(this._elevationPrefix));(!s||s===this._previousElevation)&&(this._previousElevation&&(this._classList[this._previousElevation]=!1),this._classList[r]=!0,this._previousElevation=r)}setPositionClasses(e=this.xPosition,i=this.yPosition){const r=this._classList;r["mat-menu-before"]="before"===e,r["mat-menu-after"]="after"===e,r["mat-menu-above"]="above"===i,r["mat-menu-below"]="below"===i,this._changeDetectorRef?.markForCheck()}_startAnimation(){this._panelAnimationState="enter"}_resetAnimation(){this._panelAnimationState="void"}_onAnimationDone(e){this._animationDone.next(e),this._isAnimating=!1}_onAnimationStart(e){this._isAnimating=!0,"enter"===e.toState&&0===this._keyManager.activeItemIndex&&(e.element.scrollTop=0)}_updateDirectDescendants(){this._allItems.changes.pipe(Ms(this._allItems)).subscribe(e=>{this._directDescendantItems.reset(e.filter(i=>i._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(He),_(TO),_(Kn))},t.\u0275dir=G({type:t,contentQueries:function(e,i,r){if(1&e&&(Cn(r,zX,5),Cn(r,Hc,5),Cn(r,Hc,4)),2&e){let s;xe(s=ke())&&(i.lazyContent=s.first),xe(s=ke())&&(i._allItems=s),xe(s=ke())&&(i.items=s)}},viewQuery:function(e,i){if(1&e&&it(li,5),2&e){let r;xe(r=ke())&&(i.templateRef=r.first)}},inputs:{backdropClass:"backdropClass",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],xPosition:"xPosition",yPosition:"yPosition",overlapTrigger:"overlapTrigger",hasBackdrop:"hasBackdrop",panelClass:["class","panelClass"],classList:"classList"},outputs:{closed:"closed",close:"close"}}),t})(),so=(()=>{class t extends Xd{constructor(e,i,r,s){super(e,i,r,s),this._elevationPrefix="mat-elevation-z",this._baseElevation=4}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(He),_(TO),_(Kn))},t.\u0275cmp=ce({type:t,selectors:[["mat-menu"]],hostVars:3,hostBindings:function(e,i){2&e&&Me("aria-label",null)("aria-labelledby",null)("aria-describedby",null)},exportAs:["matMenu"],features:[$e([{provide:Wb,useExisting:t}]),J],ngContentSelectors:CO,decls:1,vars:0,consts:[["tabindex","-1","role","menu",1,"mat-menu-panel",3,"id","ngClass","keydown","click"],[1,"mat-menu-content"]],template:function(e,i){1&e&&(Ci(),O(0,jX,3,6,"ng-template"))},dependencies:[oa],styles:['mat-menu{display:none}.mat-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;max-height:calc(100vh - 48px);border-radius:4px;outline:0;min-height:64px;position:relative}.mat-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-menu-panel{outline:solid 1px}.mat-menu-content:not(:empty){padding-top:8px;padding-bottom:8px}.mat-menu-item{-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative}.mat-menu-item::-moz-focus-inner{border:0}.mat-menu-item[disabled]{cursor:default}[dir=rtl] .mat-menu-item{text-align:right}.mat-menu-item .mat-icon{margin-right:16px;vertical-align:middle}.mat-menu-item .mat-icon svg{vertical-align:top}[dir=rtl] .mat-menu-item .mat-icon{margin-left:16px;margin-right:0}.mat-menu-item[disabled]::after{display:block;position:absolute;content:"";top:0;left:0;bottom:0;right:0}.cdk-high-contrast-active .mat-menu-item{margin-top:1px}.mat-menu-item-submenu-trigger{padding-right:32px}[dir=rtl] .mat-menu-item-submenu-trigger{padding-right:16px;padding-left:32px}.mat-menu-submenu-icon{position:absolute;top:50%;right:16px;transform:translateY(-50%);width:5px;height:10px;fill:currentColor}[dir=rtl] .mat-menu-submenu-icon{right:auto;left:16px;transform:translateY(-50%) scaleX(-1)}.cdk-high-contrast-active .mat-menu-submenu-icon{fill:CanvasText}button.mat-menu-item{width:100%}.mat-menu-item .mat-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}'],encapsulation:2,data:{animation:[Lg.transformMenu,Lg.fadeInItems]},changeDetection:0}),t})();const EO=new Z("mat-menu-scroll-strategy"),YX={provide:EO,deps:[Ur],useFactory:function KX(t){return()=>t.scrollStrategies.reposition()}},SO=Xo({passive:!0});let qX=(()=>{class t{constructor(e,i,r,s,a,o,l,u,h){this._overlay=e,this._element=i,this._viewContainerRef=r,this._menuItemInstance=o,this._dir=l,this._focusMonitor=u,this._ngZone=h,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=ae.EMPTY,this._hoverSubscription=ae.EMPTY,this._menuCloseSubscription=ae.EMPTY,this._handleTouchStart=p=>{Qv(p)||(this._openedBy="touch")},this._openedBy=void 0,this.restoreFocus=!0,this.menuOpened=new Ae,this.onMenuOpen=this.menuOpened,this.menuClosed=new Ae,this.onMenuClose=this.menuClosed,this._scrollStrategy=s,this._parentMaterialMenu=a instanceof Xd?a:void 0,i.nativeElement.addEventListener("touchstart",this._handleTouchStart,SO),o&&(o._triggersSubmenu=this.triggersSubmenu())}get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(e){this.menu=e}get menu(){return this._menu}set menu(e){e!==this._menu&&(this._menu=e,this._menuCloseSubscription.unsubscribe(),e&&(this._menuCloseSubscription=e.close.subscribe(i=>{this._destroyMenu(i),("click"===i||"tab"===i)&&this._parentMaterialMenu&&this._parentMaterialMenu.closed.emit(i)})))}ngAfterContentInit(){this._handleHover()}ngOnDestroy(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener("touchstart",this._handleTouchStart,SO),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}get menuOpen(){return this._menuOpen}get dir(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}triggersSubmenu(){return!(!this._menuItemInstance||!this._parentMaterialMenu)}toggleMenu(){return this._menuOpen?this.closeMenu():this.openMenu()}openMenu(){const e=this.menu;if(this._menuOpen||!e)return;const i=this._createOverlay(e),r=i.getConfig(),s=r.positionStrategy;this._setPosition(e,s),r.hasBackdrop=e.hasBackdrop??!this.triggersSubmenu(),i.attach(this._getPortal(e)),e.lazyContent&&e.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this.closeMenu()),this._initMenu(e),e instanceof Xd&&(e._startAnimation(),e._directDescendantItems.changes.pipe(dt(e.close)).subscribe(()=>{s.withLockedPosition(!1).reapplyLastPosition(),s.withLockedPosition(!0)}))}closeMenu(){this.menu?.close.emit()}focus(e,i){this._focusMonitor&&e?this._focusMonitor.focusVia(this._element,e,i):this._element.nativeElement.focus(i)}updatePosition(){this._overlayRef?.updatePosition()}_destroyMenu(e){if(!this._overlayRef||!this.menuOpen)return;const i=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this.restoreFocus&&("keydown"===e||!this._openedBy||!this.triggersSubmenu())&&this.focus(this._openedBy),this._openedBy=void 0,i instanceof Xd?(i._resetAnimation(),i.lazyContent?i._animationDone.pipe(Tn(r=>"void"===r.toState),gn(1),dt(i.lazyContent._attached)).subscribe({next:()=>i.lazyContent.detach(),complete:()=>this._setIsMenuOpen(!1)}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),i?.lazyContent?.detach())}_initMenu(e){e.parentMenu=this.triggersSubmenu()?this._parentMaterialMenu:void 0,e.direction=this.dir,this._setMenuElevation(e),e.focusFirstItem(this._openedBy||"program"),this._setIsMenuOpen(!0)}_setMenuElevation(e){if(e.setElevation){let i=0,r=e.parentMenu;for(;r;)i++,r=r.parentMenu;e.setElevation(i)}}_setIsMenuOpen(e){this._menuOpen=e,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&this._menuItemInstance._setHighlighted(e)}_createOverlay(e){if(!this._overlayRef){const i=this._getOverlayConfig(e);this._subscribeToPositions(e,i.positionStrategy),this._overlayRef=this._overlay.create(i),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}_getOverlayConfig(e){return new Uv({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withGrowAfterOpen().withTransformOriginOn(".mat-menu-panel, .mat-mdc-menu-panel"),backdropClass:e.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:e.overlayPanelClass,scrollStrategy:this._scrollStrategy(),direction:this._dir})}_subscribeToPositions(e,i){e.setPositionClasses&&i.positionChanges.subscribe(r=>{const s="start"===r.connectionPair.overlayX?"after":"before",a="top"===r.connectionPair.overlayY?"below":"above";this._ngZone?this._ngZone.run(()=>e.setPositionClasses(s,a)):e.setPositionClasses(s,a)})}_setPosition(e,i){let[r,s]="before"===e.xPosition?["end","start"]:["start","end"],[a,o]="above"===e.yPosition?["bottom","top"]:["top","bottom"],[l,u]=[a,o],[h,p]=[r,s],C=0;if(this.triggersSubmenu()){if(p=r="before"===e.xPosition?"start":"end",s=h="end"===r?"start":"end",this._parentMaterialMenu){if(null==this._parentInnerPadding){const w=this._parentMaterialMenu.items.first;this._parentInnerPadding=w?w._getHostElement().offsetTop:0}C="bottom"===a?this._parentInnerPadding:-this._parentInnerPadding}}else e.overlapTrigger||(l="top"===a?"bottom":"top",u="top"===o?"bottom":"top");i.withPositions([{originX:r,originY:l,overlayX:h,overlayY:a,offsetY:C},{originX:s,originY:l,overlayX:p,overlayY:a,offsetY:C},{originX:r,originY:u,overlayX:h,overlayY:o,offsetY:-C},{originX:s,originY:u,overlayX:p,overlayY:o,offsetY:-C}])}_menuClosingActions(){const e=this._overlayRef.backdropClick(),i=this._overlayRef.detachments();return ar(e,this._parentMaterialMenu?this._parentMaterialMenu.closed:ye(),this._parentMaterialMenu?this._parentMaterialMenu._hovered().pipe(Tn(a=>a!==this._menuItemInstance),Tn(()=>this._menuOpen)):ye(),i)}_handleMousedown(e){Xv(e)||(this._openedBy=0===e.button?"mouse":void 0,this.triggersSubmenu()&&e.preventDefault())}_handleKeydown(e){const i=e.keyCode;(13===i||32===i)&&(this._openedBy="keyboard"),this.triggersSubmenu()&&(39===i&&"ltr"===this.dir||37===i&&"rtl"===this.dir)&&(this._openedBy="keyboard",this.openMenu())}_handleClick(e){this.triggersSubmenu()?(e.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){!this.triggersSubmenu()||!this._parentMaterialMenu||(this._hoverSubscription=this._parentMaterialMenu._hovered().pipe(Tn(e=>e===this._menuItemInstance&&!e.disabled),bO(0,xv)).subscribe(()=>{this._openedBy="mouse",this.menu instanceof Xd&&this.menu._isAnimating?this.menu._animationDone.pipe(gn(1),bO(0,xv),dt(this._parentMaterialMenu._hovered())).subscribe(()=>this.openMenu()):this.openMenu()}))}_getPortal(e){return(!this._portal||this._portal.templateRef!==e.templateRef)&&(this._portal=new Nv(e.templateRef,this._viewContainerRef)),this._portal}}return t.\u0275fac=function(e){return new(e||t)(_(Ur),_(be),_(ci),_(EO),_(Wb,8),_(Hc,10),_(Is,8),_(Rs),_(He))},t.\u0275dir=G({type:t,hostVars:3,hostBindings:function(e,i){1&e&&ee("click",function(s){return i._handleClick(s)})("mousedown",function(s){return i._handleMousedown(s)})("keydown",function(s){return i._handleKeydown(s)}),2&e&&Me("aria-haspopup",i.menu?"menu":null)("aria-expanded",i.menuOpen||null)("aria-controls",i.menuOpen?i.menu.panelId:null)},inputs:{_deprecatedMatMenuTriggerFor:["mat-menu-trigger-for","_deprecatedMatMenuTriggerFor"],menu:["matMenuTriggerFor","menu"],menuData:["matMenuTriggerData","menuData"],restoreFocus:["matMenuTriggerRestoreFocus","restoreFocus"]},outputs:{menuOpened:"menuOpened",onMenuOpen:"onMenuOpen",menuClosed:"menuClosed",onMenuClose:"onMenuClose"}}),t})(),Qd=(()=>{class t extends qX{}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275dir=G({type:t,selectors:[["","mat-menu-trigger-for",""],["","matMenuTriggerFor",""]],hostAttrs:[1,"mat-menu-trigger"],exportAs:["matMenuTrigger"],features:[J]}),t})(),DO=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[YX],imports:[sn,At,Sc,el,bc,At]}),t})();const JX={provide:new Z("mat-select-scroll-strategy"),deps:[Ur],useFactory:function $X(t){return()=>t.scrollStrategies.reposition()}};let xO=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[JX],imports:[sn,el,jI,At,bc,Dg,jI,At]}),t})(),Kb=(()=>{class t{constructor(){this.changes=new pe,this.itemsPerPageLabel="Items per page:",this.nextPageLabel="Next page",this.previousPageLabel="Previous page",this.firstPageLabel="First page",this.lastPageLabel="Last page",this.getRangeLabel=(e,i,r)=>{if(0==r||0==i)return`0 of ${r}`;const s=e*i;return`${s+1} \u2013 ${s<(r=Math.max(r,0))?Math.min(s+i,r):s+i} of ${r}`}}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const rQ={provide:Kb,deps:[[new fr,new Xr,Kb]],useFactory:function iQ(t){return t||new Kb}};let sQ=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[rQ],imports:[sn,pa,xO,nl,At]}),t})();const aQ=["primaryValueBar"],oQ=Ec(class{constructor(t){this._elementRef=t}},"primary"),lQ=new Z("mat-progress-bar-location",{providedIn:"root",factory:function cQ(){const t=nn(Ye),n=t?t.location:null;return{getPathname:()=>n?n.pathname+n.search:""}}}),uQ=new Z("MAT_PROGRESS_BAR_DEFAULT_OPTIONS");let dQ=0,Yb=(()=>{class t extends oQ{constructor(e,i,r,s,a,o){super(e),this._ngZone=i,this._animationMode=r,this._changeDetectorRef=o,this._isNoopAnimation=!1,this._value=0,this._bufferValue=0,this.animationEnd=new Ae,this._animationEndSubscription=ae.EMPTY,this.mode="determinate",this.progressbarId="mat-progress-bar-"+dQ++;const l=s?s.getPathname().split("#")[0]:"";this._rectangleFillValue=`url('${l}#${this.progressbarId}')`,this._isNoopAnimation="NoopAnimations"===r,a&&(a.color&&(this.color=this.defaultColor=a.color),this.mode=a.mode||this.mode)}get value(){return this._value}set value(e){this._value=kO(ss(e)||0),this._changeDetectorRef?.markForCheck()}get bufferValue(){return this._bufferValue}set bufferValue(e){this._bufferValue=kO(e||0),this._changeDetectorRef?.markForCheck()}_primaryTransform(){return{transform:`scale3d(${this.value/100}, 1, 1)`}}_bufferTransform(){return"buffer"===this.mode?{transform:`scale3d(${this.bufferValue/100}, 1, 1)`}:null}ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{const e=this._primaryValueBar.nativeElement;this._animationEndSubscription=qo(e,"transitionend").pipe(Tn(i=>i.target===e)).subscribe(()=>{0!==this.animationEnd.observers.length&&("determinate"===this.mode||"buffer"===this.mode)&&this._ngZone.run(()=>this.animationEnd.next({value:this.value}))})})}ngOnDestroy(){this._animationEndSubscription.unsubscribe()}}return t.\u0275fac=function(e){return new(e||t)(_(be),_(He),_(nr,8),_(lQ,8),_(uQ,8),_(Kn))},t.\u0275cmp=ce({type:t,selectors:[["mat-progress-bar"]],viewQuery:function(e,i){if(1&e&&it(aQ,5),2&e){let r;xe(r=ke())&&(i._primaryValueBar=r.first)}},hostAttrs:["role","progressbar","aria-valuemin","0","aria-valuemax","100","tabindex","-1",1,"mat-progress-bar"],hostVars:4,hostBindings:function(e,i){2&e&&(Me("aria-valuenow","indeterminate"===i.mode||"query"===i.mode?null:i.value)("mode",i.mode),Mt("_mat-animation-noopable",i._isNoopAnimation))},inputs:{color:"color",value:"value",bufferValue:"bufferValue",mode:"mode"},outputs:{animationEnd:"animationEnd"},exportAs:["matProgressBar"],features:[J],decls:10,vars:4,consts:[["aria-hidden","true"],["width","100%","height","4","focusable","false",1,"mat-progress-bar-background","mat-progress-bar-element"],["x","4","y","0","width","8","height","4","patternUnits","userSpaceOnUse",3,"id"],["cx","2","cy","2","r","2"],["width","100%","height","100%"],[1,"mat-progress-bar-buffer","mat-progress-bar-element",3,"ngStyle"],[1,"mat-progress-bar-primary","mat-progress-bar-fill","mat-progress-bar-element",3,"ngStyle"],["primaryValueBar",""],[1,"mat-progress-bar-secondary","mat-progress-bar-fill","mat-progress-bar-element"]],template:function(e,i){1&e&&(S(0,"div",0),To(),S(1,"svg",1)(2,"defs")(3,"pattern",2),le(4,"circle",3),D()(),le(5,"rect",4),D(),function Mm(){!function WL(){ht.lFrame.currentNamespace=null}()}(),le(6,"div",5)(7,"div",6,7)(9,"div",8),D()),2&e&&(b(3),E("id",i.progressbarId),b(2),Me("fill",i._rectangleFillValue),b(1),E("ngStyle",i._bufferTransform()),b(1),E("ngStyle",i._primaryTransform()))},dependencies:[Bf],styles:['.mat-progress-bar{display:block;height:4px;overflow:hidden;position:relative;transition:opacity 250ms linear;width:100%}.mat-progress-bar._mat-animation-noopable{transition:none !important;animation:none !important}.mat-progress-bar .mat-progress-bar-element,.mat-progress-bar .mat-progress-bar-fill::after{height:100%;position:absolute;width:100%}.mat-progress-bar .mat-progress-bar-background{width:calc(100% + 10px)}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-background{display:none}.mat-progress-bar .mat-progress-bar-buffer{transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-buffer{border-top:solid 5px;opacity:.5}.mat-progress-bar .mat-progress-bar-secondary{display:none}.mat-progress-bar .mat-progress-bar-fill{animation:none;transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-fill{border-top:solid 4px}.mat-progress-bar .mat-progress-bar-fill::after{animation:none;content:"";display:inline-block;left:0}.mat-progress-bar[dir=rtl],[dir=rtl] .mat-progress-bar{transform:rotateY(180deg)}.mat-progress-bar[mode=query]{transform:rotateZ(180deg)}.mat-progress-bar[mode=query][dir=rtl],[dir=rtl] .mat-progress-bar[mode=query]{transform:rotateZ(180deg) rotateY(180deg)}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-fill,.mat-progress-bar[mode=query] .mat-progress-bar-fill{transition:none}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary,.mat-progress-bar[mode=query] .mat-progress-bar-primary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-translate 2000ms infinite linear;left:-145.166611%}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-primary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary,.mat-progress-bar[mode=query] .mat-progress-bar-secondary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-translate 2000ms infinite linear;left:-54.888891%;display:block}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-secondary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=buffer] .mat-progress-bar-background{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-background-scroll 250ms infinite linear;display:block}.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-buffer,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-background{animation:none;transition-duration:1ms}@keyframes mat-progress-bar-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mat-progress-bar-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mat-progress-bar-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-background-scroll{to{transform:translateX(-8px)}}'],encapsulation:2,changeDetection:0}),t})();function kO(t,n=0,e=100){return Math.max(n,Math.min(e,t))}let IO=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[sn,At,At]}),t})(),hQ=(()=>{class t{constructor(){this._listeners=[]}notify(e,i){for(let r of this._listeners)r(e,i)}listen(e){return this._listeners.push(e),()=>{this._listeners=this._listeners.filter(i=>e!==i)}}ngOnDestroy(){this._listeners=[]}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const fQ=["input"],pQ=function(t){return{enterDuration:t}},gQ=["*"],mQ=new Z("mat-radio-default-options",{providedIn:"root",factory:function _Q(){return{color:"accent"}}});let OO=0;const yQ={provide:vr,useExisting:Ft(()=>NO),multi:!0};class LO{constructor(n,e){this.source=n,this.value=e}}const PO=new Z("MatRadioGroup");let AQ=(()=>{class t{constructor(e){this._changeDetector=e,this._value=null,this._name="mat-radio-group-"+OO++,this._selected=null,this._isInitialized=!1,this._labelPosition="after",this._disabled=!1,this._required=!1,this._controlValueAccessorChangeFn=()=>{},this.onTouched=()=>{},this.change=new Ae}get name(){return this._name}set name(e){this._name=e,this._updateRadioButtonNames()}get labelPosition(){return this._labelPosition}set labelPosition(e){this._labelPosition="before"===e?"before":"after",this._markRadiosForCheck()}get value(){return this._value}set value(e){this._value!==e&&(this._value=e,this._updateSelectedRadioFromValue(),this._checkSelectedRadioButton())}_checkSelectedRadioButton(){this._selected&&!this._selected.checked&&(this._selected.checked=!0)}get selected(){return this._selected}set selected(e){this._selected=e,this.value=e?e.value:null,this._checkSelectedRadioButton()}get disabled(){return this._disabled}set disabled(e){this._disabled=zt(e),this._markRadiosForCheck()}get required(){return this._required}set required(e){this._required=zt(e),this._markRadiosForCheck()}ngAfterContentInit(){this._isInitialized=!0}_touch(){this.onTouched&&this.onTouched()}_updateRadioButtonNames(){this._radios&&this._radios.forEach(e=>{e.name=this.name,e._markForCheck()})}_updateSelectedRadioFromValue(){this._radios&&(null===this._selected||this._selected.value!==this._value)&&(this._selected=null,this._radios.forEach(i=>{i.checked=this.value===i.value,i.checked&&(this._selected=i)}))}_emitChangeEvent(){this._isInitialized&&this.change.emit(new LO(this._selected,this._value))}_markRadiosForCheck(){this._radios&&this._radios.forEach(e=>e._markForCheck())}writeValue(e){this.value=e,this._changeDetector.markForCheck()}registerOnChange(e){this._controlValueAccessorChangeFn=e}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this.disabled=e,this._changeDetector.markForCheck()}}return t.\u0275fac=function(e){return new(e||t)(_(Kn))},t.\u0275dir=G({type:t,inputs:{color:"color",name:"name",labelPosition:"labelPosition",value:"value",selected:"selected",disabled:"disabled",required:"required"},outputs:{change:"change"}}),t})(),NO=(()=>{class t extends AQ{}return t.\u0275fac=function(){let n;return function(i){return(n||(n=Ee(t)))(i||t)}}(),t.\u0275dir=G({type:t,selectors:[["mat-radio-group"]],contentQueries:function(e,i,r){if(1&e&&Cn(r,FO,5),2&e){let s;xe(s=ke())&&(i._radios=s)}},hostAttrs:["role","radiogroup",1,"mat-radio-group"],exportAs:["matRadioGroup"],features:[$e([yQ,{provide:PO,useExisting:t}]),J]}),t})();class vQ{constructor(n){this._elementRef=n}}const bQ=Xp(PI(vQ));let CQ=(()=>{class t extends bQ{constructor(e,i,r,s,a,o,l,u){super(i),this._changeDetector=r,this._focusMonitor=s,this._radioDispatcher=a,this._providerOverride=l,this._uniqueId="mat-radio-"+ ++OO,this.id=this._uniqueId,this.change=new Ae,this._checked=!1,this._value=null,this._removeUniqueSelectionListener=()=>{},this.radioGroup=e,this._noopAnimations="NoopAnimations"===o,u&&(this.tabIndex=ss(u,0)),this._removeUniqueSelectionListener=a.listen((h,p)=>{h!==this.id&&p===this.name&&(this.checked=!1)})}get checked(){return this._checked}set checked(e){const i=zt(e);this._checked!==i&&(this._checked=i,i&&this.radioGroup&&this.radioGroup.value!==this.value?this.radioGroup.selected=this:!i&&this.radioGroup&&this.radioGroup.value===this.value&&(this.radioGroup.selected=null),i&&this._radioDispatcher.notify(this.id,this.name),this._changeDetector.markForCheck())}get value(){return this._value}set value(e){this._value!==e&&(this._value=e,null!==this.radioGroup&&(this.checked||(this.checked=this.radioGroup.value===e),this.checked&&(this.radioGroup.selected=this)))}get labelPosition(){return this._labelPosition||this.radioGroup&&this.radioGroup.labelPosition||"after"}set labelPosition(e){this._labelPosition=e}get disabled(){return this._disabled||null!==this.radioGroup&&this.radioGroup.disabled}set disabled(e){this._setDisabled(zt(e))}get required(){return this._required||this.radioGroup&&this.radioGroup.required}set required(e){this._required=zt(e)}get color(){return this._color||this.radioGroup&&this.radioGroup.color||this._providerOverride&&this._providerOverride.color||"accent"}set color(e){this._color=e}get inputId(){return`${this.id||this._uniqueId}-input`}focus(e,i){i?this._focusMonitor.focusVia(this._inputElement,i,e):this._inputElement.nativeElement.focus(e)}_markForCheck(){this._changeDetector.markForCheck()}ngOnInit(){this.radioGroup&&(this.checked=this.radioGroup.value===this._value,this.checked&&(this.radioGroup.selected=this),this.name=this.radioGroup.name)}ngDoCheck(){this._updateTabIndex()}ngAfterViewInit(){this._updateTabIndex(),this._focusMonitor.monitor(this._elementRef,!0).subscribe(e=>{!e&&this.radioGroup&&this.radioGroup._touch()})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._removeUniqueSelectionListener()}_emitChangeEvent(){this.change.emit(new LO(this,this._value))}_isRippleDisabled(){return this.disableRipple||this.disabled}_onInputClick(e){e.stopPropagation()}_onInputInteraction(e){if(e.stopPropagation(),!this.checked&&!this.disabled){const i=this.radioGroup&&this.value!==this.radioGroup.value;this.checked=!0,this._emitChangeEvent(),this.radioGroup&&(this.radioGroup._controlValueAccessorChangeFn(this.value),i&&this.radioGroup._emitChangeEvent())}}_setDisabled(e){this._disabled!==e&&(this._disabled=e,this._changeDetector.markForCheck())}_updateTabIndex(){const e=this.radioGroup;let i;if(i=e&&e.selected&&!this.disabled?e.selected===this?this.tabIndex:-1:this.tabIndex,i!==this._previousTabIndex){const r=this._inputElement?.nativeElement;r&&(r.setAttribute("tabindex",i+""),this._previousTabIndex=i)}}}return t.\u0275fac=function(e){Ua()},t.\u0275dir=G({type:t,viewQuery:function(e,i){if(1&e&&it(fQ,5),2&e){let r;xe(r=ke())&&(i._inputElement=r.first)}},inputs:{id:"id",name:"name",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],checked:"checked",value:"value",labelPosition:"labelPosition",disabled:"disabled",required:"required",color:"color"},outputs:{change:"change"},features:[J]}),t})(),FO=(()=>{class t extends CQ{constructor(e,i,r,s,a,o,l,u){super(e,i,r,s,a,o,l,u)}}return t.\u0275fac=function(e){return new(e||t)(_(PO,8),_(be),_(Kn),_(Rs),_(hQ),_(nr,8),_(mQ,8),As("tabindex"))},t.\u0275cmp=ce({type:t,selectors:[["mat-radio-button"]],hostAttrs:[1,"mat-radio-button"],hostVars:17,hostBindings:function(e,i){1&e&&ee("focus",function(){return i._inputElement.nativeElement.focus()}),2&e&&(Me("tabindex",null)("id",i.id)("aria-label",null)("aria-labelledby",null)("aria-describedby",null),Mt("mat-radio-checked",i.checked)("mat-radio-disabled",i.disabled)("_mat-animation-noopable",i._noopAnimations)("mat-primary","primary"===i.color)("mat-accent","accent"===i.color)("mat-warn","warn"===i.color))},inputs:{disableRipple:"disableRipple",tabIndex:"tabIndex"},exportAs:["matRadioButton"],features:[J],ngContentSelectors:gQ,decls:13,vars:19,consts:[[1,"mat-radio-label"],["label",""],[1,"mat-radio-container"],[1,"mat-radio-outer-circle"],[1,"mat-radio-inner-circle"],["type","radio",1,"mat-radio-input",3,"id","checked","disabled","required","change","click"],["input",""],["mat-ripple","",1,"mat-radio-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered","matRippleRadius","matRippleAnimation"],[1,"mat-ripple-element","mat-radio-persistent-ripple"],[1,"mat-radio-label-content"],[2,"display","none"]],template:function(e,i){if(1&e&&(Ci(),S(0,"label",0,1)(2,"span",2),le(3,"span",3)(4,"span",4),S(5,"input",5,6),ee("change",function(s){return i._onInputInteraction(s)})("click",function(s){return i._onInputClick(s)}),D(),S(7,"span",7),le(8,"span",8),D()(),S(9,"span",9)(10,"span",10),V(11,"\xa0"),D(),rn(12),D()()),2&e){const r=vt(1);Me("for",i.inputId),b(5),E("id",i.inputId)("checked",i.checked)("disabled",i.disabled)("required",i.required),Me("name",i.name)("value",i.value)("aria-label",i.ariaLabel)("aria-labelledby",i.ariaLabelledby)("aria-describedby",i.ariaDescribedby),b(2),E("matRippleTrigger",r)("matRippleDisabled",i._isRippleDisabled())("matRippleCentered",!0)("matRippleRadius",20)("matRippleAnimation",fn(17,pQ,i._noopAnimations?0:150)),b(2),Mt("mat-radio-label-before","before"==i.labelPosition)}},dependencies:[tl],styles:['.mat-radio-button{display:inline-block;-webkit-tap-highlight-color:rgba(0,0,0,0);outline:0}.mat-radio-label{-webkit-user-select:none;user-select:none;cursor:pointer;display:inline-flex;align-items:center;white-space:nowrap;vertical-align:middle;width:100%}.mat-radio-container{box-sizing:border-box;display:inline-block;position:relative;width:20px;height:20px;flex-shrink:0}.mat-radio-outer-circle{box-sizing:border-box;display:block;height:20px;left:0;position:absolute;top:0;transition:border-color ease 280ms;width:20px;border-width:2px;border-style:solid;border-radius:50%}._mat-animation-noopable .mat-radio-outer-circle{transition:none}.mat-radio-inner-circle{border-radius:50%;box-sizing:border-box;display:block;height:20px;left:0;position:absolute;top:0;opacity:0;transition:transform ease 280ms,background-color ease 280ms,opacity linear 1ms 280ms;width:20px;transform:scale(0.001);-webkit-print-color-adjust:exact;color-adjust:exact}.mat-radio-checked .mat-radio-inner-circle{transform:scale(0.5);opacity:1;transition:transform ease 280ms,background-color ease 280ms}.cdk-high-contrast-active .mat-radio-checked .mat-radio-inner-circle{border:solid 10px}._mat-animation-noopable .mat-radio-inner-circle{transition:none}.mat-radio-label-content{-webkit-user-select:auto;user-select:auto;display:inline-block;order:0;line-height:inherit;padding-left:8px;padding-right:0}[dir=rtl] .mat-radio-label-content{padding-right:8px;padding-left:0}.mat-radio-label-content.mat-radio-label-before{order:-1;padding-left:0;padding-right:8px}[dir=rtl] .mat-radio-label-content.mat-radio-label-before{padding-right:0;padding-left:8px}.mat-radio-disabled,.mat-radio-disabled .mat-radio-label{cursor:default}.mat-radio-button .mat-radio-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.mat-radio-button .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple){opacity:.16}.mat-radio-persistent-ripple{width:100%;height:100%;transform:none;top:0;left:0}.mat-radio-container:hover .mat-radio-persistent-ripple{opacity:.04}.mat-radio-button:not(.mat-radio-disabled).cdk-keyboard-focused .mat-radio-persistent-ripple,.mat-radio-button:not(.mat-radio-disabled).cdk-program-focused .mat-radio-persistent-ripple{opacity:.12}.mat-radio-persistent-ripple,.mat-radio-disabled .mat-radio-container:hover .mat-radio-persistent-ripple{opacity:0}@media(hover: none){.mat-radio-container:hover .mat-radio-persistent-ripple{display:none}}.mat-radio-input{opacity:0;position:absolute;top:0;left:0;margin:0;width:100%;height:100%;cursor:inherit;z-index:-1}.mat-radio-input:focus~.mat-focus-indicator::before{content:""}.cdk-high-contrast-active .mat-radio-disabled{opacity:.5}'],encapsulation:2,changeDetection:0}),t})(),BO=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[Sc,At,At]}),t})(),SQ=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[el,$o,sn,pa,At,At]}),t})(),Xb=(()=>{class t{constructor(){this.changes=new pe}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();const xQ={provide:Xb,deps:[[new fr,new Xr,Xb]],useFactory:function wQ(t){return t||new Xb}};let kQ=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[xQ],imports:[sn,At]}),t})(),HQ=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[Lv]}),t})(),aZ=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[HQ,At,At]}),t})(),hZ=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[sn,At,$o,Sc,jp,qp,At]}),t})(),fZ=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[At,At]}),t})(),Yc=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[pa,cq,AO,Fb,tX,DO,sQ,IO,kQ,aZ,hZ,fZ,nl,xO,Tq,AX,BO,yO,xc,SQ,Dg]}),t})(),XO=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[sn,pa,Ar,nl]}),t})(),eh=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[gd,sn,Yc,Ar,ul,zR,XO]}),t})(),QO=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[sn,UR]}),t})(),pZ=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[sn,eh,Ar,xc,Yc,ul,UR,QO]}),t})();function gZ(t,n){if(1&t&&(S(0,"button",2),F(1,"translate"),S(2,"span",3)(3,"span",4),rn(4),D(),S(5,"span",5),V(6),D()()()),2&t){const e=I();E("disableRipple",!0)("ngClass.lt-md","open-close-button-tablet")("disabled",e.disabled),Me("aria-label",j(1,5,e.ariaLabelCode)),b(6),Ve(" ",e.isOpened?"arrow_drop_up":"arrow_drop_down"," ")}}function mZ(t,n){if(1&t&&(S(0,"button",6),F(1,"translate"),S(2,"span",5),V(3),D()()),2&t){const e=I();E("disabled",e.disabled),Me("aria-label",j(1,3,e.ariaLabelCode)),b(3),Ve(" ",e.isOpened?"arrow_drop_up":"arrow_drop_down"," ")}}const _Z=["*"];let th=(()=>{class t{get isOpened(){return this._isOpened}set isOpened(e){this._isOpened&&!e&&!this.disableFocusOnAction&&this.focus(),this._isOpened=e}focus(){this.button.focus()}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["tld-open-close-button"]],viewQuery:function(e,i){if(1&e&&it(En,5),2&e){let r;xe(r=ke())&&(i.button=r.first)}},inputs:{disableFocusOnAction:"disableFocusOnAction",isOpened:"isOpened",disabled:"disabled",isIcon:"isIcon",ariaLabelCode:"ariaLabelCode"},ngContentSelectors:_Z,decls:2,vars:2,consts:[["mat-button","",3,"disableRipple","ngClass.lt-md","disabled",4,"ngIf"],["mat-icon-button","","fxLayoutAlign","center center",3,"disabled",4,"ngIf"],["mat-button","",3,"disableRipple","ngClass.lt-md","disabled"],["fxLayout","row","fxLayoutAlign","center center"],["fxLayoutAlign","center center",1,"open-close-button-content"],[1,"material-icons"],["mat-icon-button","","fxLayoutAlign","center center",3,"disabled"]],template:function(e,i){1&e&&(Ci(),O(0,gZ,7,7,"button",0),O(1,mZ,4,5,"button",1)),2&e&&(E("ngIf",!i.isIcon),b(1),E("ngIf",i.isIcon))},dependencies:[xt,En,Dn,Xn,Ii,Lt],styles:["button[_ngcontent-%COMP%]{font-size:16px}"]}),t})(),aC=(()=>{class t{constructor(e){this.translate=e}transform(e){const i="Auto",r=(e??i).toUpperCase().replace(" ","_").replace("-","_");return(io[this.translate.currentLang]?.DOMAINS??io[this.translate.defaultLang]?.DOMAINS)?.[r]??e??i}}return t.\u0275fac=function(e){return new(e||t)(_(gi,16))},t.\u0275pipe=Pn({name:"translateDomain",type:t,pure:!0}),t})();const yZ=["wrapper"];function AZ(t,n){}const ZO=function(t){return{"active accent-color":t}},Gg=function(t){return{language:t}};function vZ(t,n){if(1&t&&(S(0,"div",13),O(1,AZ,0,0,"ng-template",14),D()),2&t){const e=n.$implicit,i=I(2),r=vt(16);E("ngClass",fn(3,ZO,i.isActive(e))),b(1),E("ngTemplateOutlet",r)("ngTemplateOutletContext",fn(5,Gg,e))}}function bZ(t,n){}const CZ=function(){return{isIcon:!0}};function TZ(t,n){1&t&&O(0,bZ,0,0,"ng-template",14),2&t&&(I(2),E("ngTemplateOutlet",vt(14))("ngTemplateOutletContext",_y(2,CZ)))}function EZ(t,n){if(1&t&&(je(0),O(1,vZ,2,7,"div",11),F(2,"async"),F(3,"sortTranslations"),O(4,TZ,1,3,null,12),ze()),2&t){const e=I();b(1),E("ngForOf",j(2,2,yf(3,4,e.visibleLanguageList,e.languageLocalizationKey,e.languageCodePropertyName,e.currentLanguage))),b(3),E("ngIf",e.menuLanguageList.length>0)}}function SZ(t,n){}function DZ(t,n){if(1&t&&(je(0),O(1,SZ,0,0,"ng-template",14),ze()),2&t){const e=n.$implicit;I();const i=vt(16);b(1),E("ngTemplateOutlet",i)("ngTemplateOutletContext",fn(2,Gg,e))}}function wZ(t,n){}const xZ=function(){return{isIcon:!1}};function kZ(t,n){if(1&t&&(je(0),O(1,wZ,0,0,"ng-template",14),ze()),2&t){I(2);const e=vt(14);b(1),E("ngTemplateOutlet",e)("ngTemplateOutletContext",_y(2,xZ))}}function IZ(t,n){if(1&t&&O(0,kZ,2,3,"ng-container",2),2&t){const e=I(),i=vt(12);E("ngIf",e.menuLanguageList.length>0)("ngIfElse",i)}}function MZ(t,n){}function RZ(t,n){if(1&t&&(S(0,"button",16),F(1,"translate"),F(2,"uppercase"),O(3,MZ,0,0,"ng-template",14),D()),2&t){const e=I(2),i=vt(18);Me("aria-label",j(1,3,"LANGUAGES."+j(2,5,e.firstVisible.code))),b(3),E("ngTemplateOutlet",i)("ngTemplateOutletContext",fn(7,Gg,e.firstVisible))}}function OZ(t,n){1&t&&O(0,RZ,4,9,"button",15),2&t&&E("ngIf",I().firstVisible)}function LZ(t,n){}function PZ(t,n){if(1&t&&O(0,LZ,0,0,"ng-template",14),2&t){const e=I(2);E("ngTemplateOutlet",vt(18))("ngTemplateOutletContext",fn(2,Gg,e.firstVisible))}}const NZ=function(t){return{"language-title no-highlight":t}};function FZ(t,n){if(1&t){const e=Fe();S(0,"tld-open-close-button",17,18),ee("menuOpened",function(){return me(e),_e(I().onMenuOpen())}),O(2,PZ,1,4,null,12),D()}if(2&t){const e=n.isIcon,i=vt(1),r=I(),s=vt(5);E("isIcon",e)("ngClass",fn(7,NZ,!e))("disabled",r.disabled)("matMenuTriggerFor",s)("isOpened",i.menuOpen)("ariaLabelCode",r.menuTriggerAriaCode),b(2),E("ngIf",!e)}}function BZ(t,n){if(1&t&&(S(0,"span",22),V(1),F(2,"translateDomain"),D()),2&t){const e=I(2).language;b(1),Ve(" (",j(2,1,e.domain),")")}}function VZ(t,n){if(1&t){const e=Fe();S(0,"button",20),ee("click",function(){me(e);const r=I().language;return _e(I().selectLanguage(r))}),F(1,"translate"),F(2,"uppercase"),S(3,"span"),V(4),F(5,"translate"),F(6,"uppercase"),D(),V(7,"\xa0 "),O(8,BZ,3,3,"span",21),D()}if(2&t){const e=I().language,i=I();E("ngClass",fn(13,ZO,i.isActive(e)))("disabled",i.disabled),Me("aria-label",j(1,5,i.languageLocalizationKey+"."+j(2,7,e.code))),b(4),re(j(5,9,i.languageLocalizationKey+"."+j(6,11,e.code))),b(4),E("ngIf",e.showDomain)}}function UZ(t,n){1&t&&O(0,VZ,9,15,"button",19),2&t&&E("ngIf",n.language)}function jZ(t,n){if(1&t&&(S(0,"span",24)(1,"span"),V(2,"\xa0("),D(),S(3,"span",22),V(4),F(5,"translateDomain"),D(),S(6,"span"),V(7,")"),D()()),2&t){const e=I().language;b(4),re(j(5,1,e.domain))}}function zZ(t,n){if(1&t&&(S(0,"span"),V(1),F(2,"translate"),F(3,"uppercase"),D(),O(4,jZ,8,3,"span",23)),2&t){const e=n.language,i=I();b(1),re(j(2,2,i.languageLocalizationKey+"."+j(3,4,e.code))),b(3),E("ngIf",e.showDomain)}}const HZ=function(t){return{"single-element-list":t}},GZ=["*"];let WZ=(()=>{class t{constructor(e){this.translate=e,this.pxPerLanguage=100,this.onLanguageChange=new Ae,this.onDomainChange=new Ae,this.menuLanguageList=[],this.visibleLanguageList=[],this.menuTriggerAriaCode="ARIA_LABELS.OTHER_LANGUAGES_TRIGGER",this.languageLocalizationKey="LANGUAGES",this.languageCodePropertyName="code",this.duplicateCodes=[],this.languageList=[],this.destroy$=new pe}set languages(e){setTimeout(()=>{this.languageList=e||[],this.recreateLanguageLists()},0)}set selected(e){this._selected=e,this.ensureSelectedIsVisible()}get selected(){return this._selected}set maxDisplayedLanguages(e){this._maxDisplayedLanguages!==e&&(this._maxDisplayedLanguages=e,this.recreateLanguageLists())}get maxDisplayedLanguages(){return this._maxDisplayedLanguages}get firstVisible(){return this.visibleLanguageList?.[0]}ngAfterViewInit(){this.menu.overlayPanelClass="language-menu-overlay",this.translate.onLangChange.pipe(dt(this.destroy$)).subscribe(e=>{this.currentLanguage=e.lang,this.toogleDomainVisibility()})}ngOnDestroy(){this.destroy$.next(null),this.destroy$.complete()}onMenuOpen(){const e=document.getElementById(this.menu.panelId);e.setAttribute("translate","no"),this.testId&&e.setAttribute("data-test-id",this.testId)}isActive(e){return this.isEqualWithSelected(e)}selectLanguage(e){this.isEqualWithSelected(e)||(this.showDomainsWithLanguageName?this.onDomainChange.emit(e.systemId):this.onLanguageChange.emit(e.code))}recreateLanguageLists(){const e=[],i=[],r=[];this.duplicateCodes=[];for(var s=0;s<this.languageList.length;s++){const a=this.languageList[s];if(r.indexOf(a.lang)>=0&&(this.duplicateCodes.push(a.lang),!this.showDomainsWithLanguageName))continue;r.push(a.lang);const o={code:a.lang,showDomain:!1,domain:a.domain,systemId:a.systemId};e.length<this.maxDisplayedLanguages&&e.push(o),(1===this.maxDisplayedLanguages||e.length>=this.maxDisplayedLanguages)&&i.push(o)}this.visibleLanguageList=e,this.menuLanguageList=i,this.toogleDomainVisibility(),this.ensureSelectedIsVisible()}ensureSelectedIsVisible(){for(var e=0;e<this.visibleLanguageList.length;e++)if(this.isEqualWithSelected(this.visibleLanguageList[e]))return;for(e=0;e<this.menuLanguageList.length;e++){const r=this.menuLanguageList[e];if(this.isEqualWithSelected(r)){const s=this.visibleLanguageList.splice(0,1,r)[0];return void(1!==this.maxDisplayedLanguages&&this.menuLanguageList.splice(e,1,s))}}}isEqualWithSelected(e){return e&&(!this.showDomainsWithLanguageName&&e.code===this.selected.code||this.showDomainsWithLanguageName&&e.systemId===this.selected.systemId)}toogleDomainVisibility(){[...this.visibleLanguageList,...this.menuLanguageList].forEach(e=>{e.showDomain=!(!this.showDomainsWithLanguageName||!this.duplicateCodes.includes(e.code))})}}return t.\u0275fac=function(e){return new(e||t)(_(gi))},t.\u0275cmp=ce({type:t,selectors:[["tld-lang-list"]],viewQuery:function(e,i){if(1&e&&(it(yZ,5),it(so,5),it(th,5)),2&e){let r;xe(r=ke())&&(i.wrapper=r.first),xe(r=ke())&&(i.menu=r.first),xe(r=ke())&&(i.openCloseButton=r.first)}},inputs:{disabled:"disabled",pxPerLanguage:"pxPerLanguage",languages:"languages",testId:"testId",selected:"selected",maxDisplayedLanguages:"maxDisplayedLanguages",showDomainsWithLanguageName:"showDomainsWithLanguageName"},outputs:{onLanguageChange:"onLanguageChange",onDomainChange:"onDomainChange"},ngContentSelectors:GZ,decls:19,vars:13,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"tld-lang-list-wrapper"],["fxLayout","row","fxLayoutAlign","center center","role","list",1,"tld-lang-list",3,"ngClass"],[4,"ngIf","ngIfElse"],["fxLayout","column",1,"language-menu"],["languageMenu","matMenu"],[4,"ngFor","ngForOf"],["singleLanguageList",""],["UnclickableLanguage",""],["menuDropDown",""],["languageButton",""],["languageNameWithDomain",""],["role","listitem","class","tld-language-list-element",3,"ngClass",4,"ngFor","ngForOf"],[4,"ngIf"],["role","listitem",1,"tld-language-list-element",3,"ngClass"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["color","primary","class","language-title no-highlight no-action",4,"ngIf"],["color","primary",1,"language-title","no-highlight","no-action"],[3,"isIcon","ngClass","disabled","matMenuTriggerFor","isOpened","ariaLabelCode","menuOpened"],["state","matMenuTrigger"],["fxLayoutAlign","start center","mat-menu-item","","class","language-title",3,"ngClass","disabled","click",4,"ngIf"],["fxLayoutAlign","start center","mat-menu-item","",1,"language-title",3,"ngClass","disabled","click"],["class","domain",4,"ngIf"],[1,"domain"],["fxHide.lt-sm","",4,"ngIf"],["fxHide.lt-sm",""]],template:function(e,i){if(1&e&&(Ci(),S(0,"div",0)(1,"div",1),O(2,EZ,5,9,"ng-container",2),D(),rn(3),S(4,"mat-menu",3,4),O(6,DZ,2,4,"ng-container",5),F(7,"async"),F(8,"sortTranslations"),D()(),O(9,IZ,1,2,"ng-template",null,6,pi),O(11,OZ,1,1,"ng-template",null,7,pi),O(13,FZ,3,9,"ng-template",null,8,pi),O(15,UZ,1,1,"ng-template",null,9,pi),O(17,zZ,5,6,"ng-template",null,10,pi)),2&e){const r=vt(10);b(1),E("ngClass",fn(11,HZ,1===i.visibleLanguageList.length)),b(1),E("ngIf",i.visibleLanguageList.length>1)("ngIfElse",r),b(4),E("ngForOf",j(7,4,yf(8,6,i.menuLanguageList,i.languageLocalizationKey,i.languageCodePropertyName,i.currentLanguage)))}},dependencies:[oa,Gi,xt,Vo,so,Hc,Qd,Dn,Xn,Os,Ii,th,Vf,$u,Lt,jR,aC],styles:['.tld-lang-list-wrapper[_ngcontent-%COMP%]{max-width:100%}.tld-lang-list-wrapper[_ngcontent-%COMP%] .tld-language-list-element[_ngcontent-%COMP%]{padding:0 12px}.tld-lang-list[_ngcontent-%COMP%]:not(.single-element-list) .active[_ngcontent-%COMP%] .language-title[_ngcontent-%COMP%]:after{position:absolute;bottom:-8px;left:50%;transform:translate(-50%);content:"";display:block;width:16px;height:2px}.tld-language-list-element.active[_ngcontent-%COMP%] .span-block[_ngcontent-%COMP%]{display:block}.tld-language-list-element.active[_ngcontent-%COMP%] .domain[_ngcontent-%COMP%]{display:inline-block;max-width:90px;overflow-x:hidden;text-overflow:ellipsis}.language-title[_ngcontent-%COMP%]{cursor:pointer;font-size:16px;font-weight:500;position:relative;background-color:transparent;border:none;font-family:Inter,sans-serif}.language-title.no-highlight.no-action[_ngcontent-%COMP%]{cursor:default}']}),t})();const KZ=di("pulse",[Jt("true",Ne({})),Jt("false",Ne({})),Wt("false <=> true",$t("1.5s ease",function Wa(t){return{type:5,steps:t}}([Ne({offset:0}),Ne({boxShadow:"0 0 0 15px rgb(173, 35, 74, 10%)",offset:.7}),Ne({boxShadow:"0 0 0 0",offset:1})])))]);let oC=(()=>{class t{constructor(){this.onClick=new pe,this.pulseAnimation=new Ae}actionButtonClicked(){this.onClick.next(null)}getActionClick(){return this.onClick.asObservable()}pulseButton(){this.pulseAnimation.next(null)}onPulseAnimation(){return this.pulseAnimation.asObservable()}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),lC=(()=>{class t{constructor(e){this.service=e,this.clicked=new Ae,this.maxPulseCount=3,this.animationState=!1}ngOnInit(){this.subscription=this.translateButtonAnimation()}ngOnDestroy(){this.subscription.unsubscribe()}actionClick(){this.service.actionButtonClicked(),this.clicked.next(null)}onAnimationEnd(){this.pulse()}translateButtonAnimation(){return this.service.onPulseAnimation().subscribe(()=>{this.enablePulseAnimation&&(this.pulseCounter=0,this.pulse())})}pulse(){this.pulseCounter<this.maxPulseCount&&(0===this.pulseCounter||!this.disabled)&&(this.animationState=!this.animationState,this.pulseCounter+=1)}}return t.\u0275fac=function(e){return new(e||t)(_(oC))},t.\u0275cmp=ce({type:t,selectors:[["tld-translate-button"]],inputs:{disabled:"disabled",enablePulseAnimation:"enablePulseAnimation"},outputs:{clicked:"clicked"},decls:3,vars:5,consts:[["id","tld-translate-button","mat-flat-button","","color","accent",1,"translate-button","text-l",3,"disabled","click"]],template:function(e,i){1&e&&(S(0,"button",0),ee("@pulse.done",function(){return i.onAnimationEnd()})("click",function(){return i.actionClick()}),V(1),F(2,"translate"),D()),2&e&&(E("@pulse",i.animationState)("disabled",i.disabled),b(1),re(j(2,3,"TLD_TRANSLATE.TOOLTIP_ACTION")))},dependencies:[En,Lt],styles:[".semi-bold[_ngcontent-%COMP%], .text-s-semi-bold[_ngcontent-%COMP%], .text-m-semi-bold[_ngcontent-%COMP%], .text-l-semi-bold[_ngcontent-%COMP%], .text-xl-semi-bold[_ngcontent-%COMP%], .text-2-xl[_ngcontent-%COMP%], .text-3-xl[_ngcontent-%COMP%], .text-4-xl[_ngcontent-%COMP%]{font-weight:600}@media (min-width: 600px){.text-4-xl[_ngcontent-%COMP%]{font-size:2.75rem;line-height:3.375rem}}@media (min-width: 0) and (max-width: 599.9px){.text-4-xl[_ngcontent-%COMP%]{font-size:2rem;line-height:2.625rem}}.text-3-xl[_ngcontent-%COMP%]{font-size:2rem;line-height:2.625rem}.text-2-xl[_ngcontent-%COMP%]{font-size:1.5rem;line-height:2.125rem}.text-xl[_ngcontent-%COMP%], .text-xl-semi-bold[_ngcontent-%COMP%]{font-size:1.25rem;line-height:2rem}.text-l[_ngcontent-%COMP%], .translate-button[_ngcontent-%COMP%], .text-l-semi-bold[_ngcontent-%COMP%]{font-size:1rem;line-height:1.625rem}.text-m[_ngcontent-%COMP%], .text-m-semi-bold[_ngcontent-%COMP%]{font-size:.875rem;line-height:1.4375rem}.text-s[_ngcontent-%COMP%], .text-s-semi-bold[_ngcontent-%COMP%]{font-size:.75rem;line-height:1.25rem}.translate-button[_ngcontent-%COMP%]{width:100%;height:100%;padding:.4375rem 1.5rem}"],data:{animation:[KZ]}}),t})(),$O=(()=>{class t{constructor(){}get isPaused(){return this.audio?.paused}get settings(){return this._settings}set settings(e){this._settings=e,this.disposeAudio(),this.audio=new Audio}clicked(){this.isPaused?this.play():this.pause()}pause(){this.audio.pause()}play(){if(!this.audio.src){this.audio=new Audio;const e=this.settings?.maxCharsInText&&this.settings.maxCharsInText<this.settings.text.length?this.settings.text.slice(0,this.settings.maxCharsInText):this.settings.text;let i=`${this.settings.url}?text=${e}`;this.settings.voice&&(i+=`&voice=${this.settings.voice}`),this.settings.langBpc47&&(i+=`&lang=${this.settings.langBpc47}`),this.audio.src=i,this.audio.load()}this.audio.play()}ngOnDestroy(){this.disposeAudio()}disposeAudio(){this.audio&&(this.audio.src=null,this.audio=null)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["tld-text-to-speech"]],inputs:{settings:"settings"},decls:4,vars:4,consts:[["mat-icon-button","",3,"matTooltip","click"],[1,"material-icons"]],template:function(e,i){1&e&&(S(0,"button",0),ee("click",function(){return i.clicked()}),F(1,"translate"),S(2,"span",1),V(3),D()()),2&e&&(E("matTooltip",j(1,2,i.isPaused?"TEXT_TO_SPEECH.PLAY":"TEXT_TO_SPEECH.PAUSE")),b(3),Ve(" ",i.isPaused?"volume_up":"pause"," "))},dependencies:[En,as,Lt]}),t})(),YZ=(()=>{class t{constructor(){this.link="https://tilde.com/news/tilde-machine-translation-technology-announced-worlds-most-accurate-wmt-competition"}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["tld-translate-achievement"]],decls:10,vars:7,consts:[["fxLayout","row"],["svgIcon","best_mt","color","accent","aria-hidden","false","aria-label","",1,"nmt-icon"],["fxLayout","column","fxLayoutAlign","center start",1,"best-mt"],[1,"d-none","d-lg-block"],["target","_blank",1,"achievement-link"]],template:function(e,i){1&e&&(S(0,"div")(1,"div",0),le(2,"mat-icon",1),S(3,"div",2),V(4),F(5,"translate"),le(6,"br",3),S(7,"a",4),V(8),F(9,"translate"),D()()()()),2&e&&(b(4),Ve(" ",j(5,3,"TLD_TRANSLATE.BEST_NMT")," "),b(3),Me("href",i.link,Qr),b(1),Ve(" ",j(9,5,"TLD_TRANSLATE.BEST_NMT_MORE")," "))},dependencies:[Gd,Dn,Xn,Lt],styles:["a[_ngcontent-%COMP%]{text-decoration:none}a[_ngcontent-%COMP%]:hover{text-decoration:underline}.nmt-icon[_ngcontent-%COMP%]{height:70px;width:100px}.achievement-link[_ngcontent-%COMP%]{font-size:.8em;font-weight:500}.best-mt[_ngcontent-%COMP%]{color:#5a6672;font-size:12px;font-weight:400}"]}),t})();const qZ=["clearButton"];function XZ(t,n){if(1&t){const e=Fe();S(0,"tld-close-button",11,12),ee("tldClick",function(){return me(e),_e(I().clearSource())}),D()}if(2&t){const e=I();E("tooltip",e.clearSourceTooltip)("disabled",e.clearDisabled)}}function QZ(t,n){1&t&&le(0,"tld-text-to-speech",13),2&t&&E("settings",I().textToSpeechSourceSettings)}function ZZ(t,n){1&t&&le(0,"tld-translate-achievement")}const $Z=[[["","sourceMain",""]],[["","sourceActions",""]],[["","targetMain",""]],[["","targetActions",""]]],JZ=["[sourceMain]","[sourceActions]","[targetMain]","[targetActions]"];let cC=(()=>{class t{constructor(){this.onSourceClear=new Ae}ngOnInit(){}clearSource(){this.onSourceClear.emit()}focusClearButton(){this.clearButton?.clearButton.focus()}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["tld-source-and-target-wrapper"]],viewQuery:function(e,i){if(1&e&&it(qZ,5),2&e){let r;xe(r=ke())&&(i.clearButton=r.first)}},inputs:{clearSourceVisible:"clearSourceVisible",clearSourceTooltip:"clearSourceTooltip",clearDisabled:"clearDisabled",hideAchievement:"hideAchievement",textToSpeechSourceSettings:"textToSpeechSourceSettings"},outputs:{onSourceClear:"onSourceClear"},ngContentSelectors:JZ,decls:15,vars:5,consts:[["fxLayout","row","fxLayout.lt-md","column",1,"source-target-wrapper"],["fxFlex","","fxLayout","column",1,"source-wrapper",3,"ngClass.gt-sm","ngClass.lt-md"],["fxLayout","column",1,"source-wrapper-action-buttons"],[3,"tooltip","disabled","tldClick",4,"ngIf"],[3,"settings",4,"ngIf"],["fxFlex","",1,"source-container"],[1,"source-action-wrapper"],["fxLayout","column","fxFlex","50",1,"target-wrapper"],["fxFlex","","cdkScrollable","",1,"target-container"],[1,"target-action-wrapper"],[4,"ngIf"],[3,"tooltip","disabled","tldClick"],["clearButton",""],[3,"settings"]],template:function(e,i){1&e&&(Ci($Z),S(0,"div",0)(1,"div",1)(2,"div",2),O(3,XZ,2,2,"tld-close-button",3),O(4,QZ,1,1,"tld-text-to-speech",4),D(),S(5,"div",5),rn(6),D(),S(7,"div",6),rn(8,1),D()(),S(9,"div",7)(10,"div",8),rn(11,2),D(),S(12,"div",9),rn(13,3),D(),O(14,ZZ,1,0,"tld-translate-achievement",10),D()()),2&e&&(b(1),E("ngClass.gt-sm","tld-default-border-right")("ngClass.lt-md","tld-default-border-bottom"),b(2),E("ngIf",i.clearSourceVisible),b(1),E("ngIf",i.textToSpeechSourceSettings),b(10),E("ngIf",!i.hideAchievement))},dependencies:[xt,lI,Dn,qi,Ii,to,$O,YZ],styles:[".source-wrapper[_ngcontent-%COMP%]{position:relative}.source-wrapper[_ngcontent-%COMP%] .source-wrapper-action-buttons[_ngcontent-%COMP%]{position:absolute;top:0;right:0;z-index:2}tld-translate-achievement[_ngcontent-%COMP%]{padding:1em}.target-container[_ngcontent-%COMP%], .source-container[_ngcontent-%COMP%]{flex:1 1 0!important}.source-container-wrapper[_ngcontent-%COMP%], .target-container-wrapper[_ngcontent-%COMP%], .source-target-wrapper[_ngcontent-%COMP%]{height:100%}.source-container[_ngcontent-%COMP%], .target-container[_ngcontent-%COMP%]{overflow-y:auto}.target-wrapper[_ngcontent-%COMP%]{background:#ffffff;position:relative}[_nghost-%COMP%]{height:100%;max-height:100%}.empty-target[_nghost-%COMP%] .target-wrapper[_ngcontent-%COMP%]{background:#ffffff}"]}),t})();var JO=fi(327),Ca=(()=>{return(t=Ca||(Ca={})).FILE_UPLOAD_UNSUPPORTED_FORMAT="FILE_UPLOAD_UNSUPPORTED_FORMAT",t.FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER="FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER",t.MAX_SIZE="FILE_UPLOAD_MAX_SIZE",t.FILE_EMPTY="FILE_UPLOAD_EMPTY",t.E_404="E_404",t.E_404_REMOVE="E_404_REMOVE",Ca;var t})(),Cr=(()=>{return(t=Cr||(Cr={})).PDF="PDF",t.IMAGE="IMAGE",Cr;var t})();let Ta=(()=>{class t{constructor(e,i,r,s,a){this.fileApi=e,this.alerts=i,this.sanitizer=r,this.config=s,this.tldSystem=a,this.translationFiles=[],this.fileNames=[],this.translatedCount=0,this.multipleFileUploadActive=!1,this._onFilesUploaded=new pe,this._defaultStatusCheckTimeout=1e3,this._retryErrorCodes=[0],this._networkErrorMaxRetries=2,this._statusTimeouts={},this._onClear=new pe,this._supportedImageExtensions=["png","jpg","jpeg","bmp"],this.filesUploading=[],this._statusTimeouts[wn.EXTRACTING]=1e3,this._statusTimeouts[wn.EXTRACTING]=1e3,this._statusTimeouts[wn.INITIALIZING]=1e3,this._statusTimeouts[wn.QUEUING]=1e3,this._statusTimeouts[wn.SAVING]=1e3,this._statusTimeouts[wn.TRANSLATING]=1e3,this._statusTimeouts[wn.WAITING]=1e4}get isUploadingFile(){return this.filesUploading.length>0}get disableTranslateButton(){return this.translationStarted||this.isUploadingFile}clear(){this.translationFiles.forEach(i=>{i.translating=!1,this.remove(i)}),this.clearParams()}onClear(){return this._onClear.asObservable()}onFilesUploaded(){return this._onFilesUploaded.asObservable()}remove(e){e.translating=!1;const i=this.translationFiles.indexOf(e);if(i<0)throw"Can't remove file";this.fileApi.remove({file:e}).pipe(br(s=>(404===s.status&&this.alerts.unhandeledError({ErrorCode:Ca.E_404_REMOVE}),ye()))).subscribe(),this.translationFiles.splice(i,1),this.fileNames.splice(i,1),0==this.translationFiles.length?this.clear():this.hasAnyImageOrPdf()}downloadTarget(e,i){e.isDownloading||(e.isDownloading=!0,this.fileApi.download({id:e.id,fileMeta:i}).subscribe(s=>{e.isDownloading=!1,(0,JO.saveAs)(s,i?i.fileName:e.originalFileName)},s=>{this.onError(s,e)}))}downloadSource(e){if(!e.sourceDownloadAvailable)return void console.error("Source download unavailable.");const i=this.convertedSourceFileName(e.originalFileName);e.isDownloadingSource=!0,this.fileApi.download({id:e.id,fileMeta:{fileName:i}}).subscribe(s=>{e.isDownloadingSource=!1,(0,JO.saveAs)(s,i)},s=>{this.onError(s,e)})}loadFilePreview(e){const i=this.config.fileConfig.numberOfFilesAllowed,r=e.name;if(this.translationFiles.length>=i)return this.alerts.error("ERRORS."+(i>1?"MAX_NUMBER_OF_FILES":"INCREASE_MAX_NUMBER_OF_FILES"),null,{link:this.config.coreConfig.registerLink,limit:i}),null;if(this.fileNames.includes(r))return this.alerts.error("ERRORS.FILE_ALREADY_ADDED",null,{fileName:e.name}),null;this.filesUploading.push(r);const s={originalFileName:r,originalExtension:Ht.getFileExtension(r),translationStatuss:wn.UPLOADING,file:e,messages:[]};this.translationFiles.push(s),this.fileNames.push(r),this._supportedImageExtensions.includes(Ht.getFileExtension(s.originalFileName))&&(this.anyImageFileLoaded=!0,s.fileType=Cr.IMAGE);const o="pdf"===Ht.getFileExtension(s.originalFileName);return o&&(this.anyPdfFileLoaded=!0,s.fileType=Cr.PDF),this.fileApi.sourceFilePreview(s).subscribe(l=>{l.isFilePreviewLoaded&&(s.translationStatuss=wn.UPLOADED,this.fileUploaded(r),this.filePreviewAlerts(o,l.wordCount)),this.onFilePreviewLoad(l,s)},l=>{throw this.remove(s),this.alerts.unhandeledError(l),l}),s}translateButtonClick(e){this.translationStarted=!0,this.translationFiles.forEach(i=>{this.startFileTranslation(e,i)})}startFileTranslation(e,i){this.canStartTranslation(i)?(this.activeSystem=this.tldSystem.getActiveSystemObj(),i.translationStarted=!0,i.translating=!0,this.fileApi.startTranslation({file:i,system:e.system}).pipe(br(s=>(this.fileApiError(i,s),ye(null)))).subscribe(s=>{!s||(i.id=s,i.translationStartedOnServer=!0,this.checkTranslationProgress(i))})):console.error("Could not start file translation!")}convertedSourceFileName(e){return(e=e.slice(0,e.lastIndexOf(".")))+"_converted.docx"}fileUploadError(e){const i={fileName:e.fileName,maxSizeMB:Ht.bytesToMb(this.config.fileConfig.maxSize),formats:this.config.fileConfig.allowedFileTypes.join(", "),registerLink:this.config.coreConfig.registerLink};this.alerts.error(`ERRORS.FILE_UPLOAD.${e.code}`,null,i),console.error(e)}canStartTranslation(e){return e.tmpName&&!e.translating}checkTranslationProgress(e){const i=wn.COMPLETED;this.fileApi.getStatus({file:e,srcLang:this.activeSystem.sourceLanguage,trgLang:this.activeSystem.targetLanguage}).pipe(function e$(t){return ln((n,e)=>{let i,s,r=!1;const a=()=>{i=n.subscribe(Zt(e,void 0,void 0,o=>{s||(s=new pe,Hn(t(s)).subscribe(Zt(e,()=>i?a():r=!0))),s&&s.next(o)})),r&&(i.unsubscribe(),i=null,r=!1,a())};a()})}(s=>s.pipe(xn((a,o)=>o<this._networkErrorMaxRetries&&this._retryErrorCodes.includes(a.status)?yd(this._defaultStatusCheckTimeout):rl(a))))).subscribe(s=>{if(s.systemId&&s.systemId!==this.activeSystem.id&&(this.tldSystem.changeSystem(s.systemId,!1),this.activeSystem=this.tldSystem.getActiveSystemObj()),e.translationStatuss=s.translationStatuss,e.sourceDownloadAvailable=s.sourceDownloadAvailable,e.progress=s.progress,e.availableExtensions=s.extensions,e.translationStatuss==wn.ERROR)this.fileApiError(e,{ErrorCode:s.substatus??ro.E_FAILED_IN_TRANSLATION});else if(e.translationStatuss===i)this.translatedCount+=1,e.downloadAvailable=!0,this.multipleFileUploadActive||this.translatedDocPreview(e);else{let a=this._defaultStatusCheckTimeout;this.config.fileConfig.fileDownloadTimeouts&&this.config.fileConfig.fileDownloadTimeouts[e.translationStatuss]?a=this.config.fileConfig.fileDownloadTimeouts[e.translationStatuss]:this._statusTimeouts&&this._statusTimeouts[e.translationStatuss]&&(a=this._statusTimeouts[e.translationStatuss]),setTimeout(()=>{!e.translating||this.checkTranslationProgress(e)},a)}},s=>{e.translationStatuss=wn.ERROR,this.onTranslationFileError(e,s)})}onFilePreviewLoad(e,i){i.isFilePreviewLoaded=e.isFilePreviewLoaded,i.tmpName=e.tmpName,i.sourcePreviewHasHtml=e.sourcePreviewHasHtml,i.sourcePreview=this.sanitizer.bypassSecurityTrustHtml(e.sourcePreview),i.filePreviewProgress=e.percentDone}translatedDocPreview(e){this.fileApi.translatedDocumentPreview({fileName:e.originalFileName,translationDocId:e.id}).subscribe(r=>{e.translating=!1,r.success||(console.error(r.error),this.alerts.unhandeledError(r.error)),e.translatedPreview=r.preview?this.sanitizer.bypassSecurityTrustHtml(r.preview):null})}fileApiError(e,i){console.error(i),e.translating=!1,e.translationStatuss=wn.ERROR,this.onTranslationFileError(e,i)}filePreviewAlerts(e,i){const r=this.config.fileConfig.wordLimit,s={registerLink:this.config.coreConfig.registerLink,wordCount:r,appName:this.config.coreConfig.appName};this.config.fileConfig.showTranslationLimits&&(e&&this.config.fileConfig.ocrPageLimit&&this.alerts.warning("TLD_TRANSLATE.PDF_PAGE_LIMIT_MSG",s),i&&r&&i>r&&this.alerts.warning("TLD_TRANSLATE.DOC_WORD_CNT_LIMIT_MSG",s))}onError(e,i){i&&(i.isDownloading=!1),this.onTranslationFileError(i,404===e.status?{ErrorCode:Ca.E_404}:e)}fileUploaded(e){const i=this.filesUploading.indexOf(e);i>=0&&this.filesUploading.splice(i,1),0===this.filesUploading.length&&this._onFilesUploaded.next(null)}hasAnyImageOrPdf(){let e=!1,i=!1;for(let r=0;r<this.translationFiles.length&&(!i||!e);r++){const s=this.translationFiles[r];s.fileType===Cr.IMAGE?e=!0:s.fileType===Cr.PDF&&(i=!0)}this.anyImageFileLoaded=e,this.anyPdfFileLoaded=i}clearParams(){this.translationStarted=!1,this.translationFiles=[],this.anyPdfFileLoaded=!1,this.anyImageFileLoaded=!1,this.fileNames=[],this.translatedCount=0,this.filesUploading=[],this._onClear.next(null)}onTranslationFileError(e,i){const r=this.alerts.findErrorTitleAndLocalizationKey(i),s={title:r.title,description:r.description,type:jd.ERROR,localizationParams:{fileName:e.originalFileName,...this.alerts.defaultParams}};e.messages.push(s)}}return t.\u0275fac=function(e){return new(e||t)(R(ZR),R(Ps),R(fc),R(Gt),R(Xi))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function t$(t,n){if(1&t&&(le(0,"img"),F(1,"translate")),2&t){const e=I();Me("src",e.imageSrc+"_"+e.selectedLanguage+e.helpImageExtension,Qr)("alt",j(1,2,"IMAGE_CONVERSION.IMAGE_ALT_1"))}}let n$=(()=>{class t{constructor(e,i,r){this.config=e,this.files=i,this.translate=r,this.closeDialogAreaCode="CLOSE_IMAGE_CONVERSION_DIALOG",this.singleFileImageDownloadHelpImageSrc="/assets/images/image_help/image_source_download_help",this.multipleFileImageDownloadHelpImageSrc="/assets/images/image_help/image_source_download_help_multiple",this.helpImageExtension=".png"}ngOnInit(){this.selectedLanguage=this.translate.currentLang,this.showImage=!this.config.coreConfig.isWebComponent,this.imageSrc=this.files.translationFiles?.length>1||this.config.fileConfig.useMultipleFileUpload?this.multipleFileImageDownloadHelpImageSrc:this.singleFileImageDownloadHelpImageSrc}}return t.\u0275fac=function(e){return new(e||t)(_(Gt),_(Ta),_(gi))},t.\u0275cmp=ce({type:t,selectors:[["lib-image-conversion-help"]],decls:79,vars:76,consts:[["id","image-disclaimer-title"],[3,"innerHtml"],[4,"ngIf"],["align","center"],["mat-button","","mat-dialog-close","","color","accent"]],template:function(e,i){1&e&&(S(0,"mat-dialog-content")(1,"section")(2,"h1",0),V(3),F(4,"translate"),D(),S(5,"p"),V(6),F(7,"translate"),D(),le(8,"p",1),F(9,"translate"),S(10,"p"),V(11),F(12,"translate"),D(),O(13,t$,2,4,"img",2),S(14,"h2"),V(15),F(16,"translate"),D(),S(17,"p"),V(18),F(19,"translate"),D(),S(20,"p"),V(21),F(22,"translate"),D(),S(23,"p"),V(24),F(25,"translate"),D(),S(26,"ul")(27,"li"),V(28),F(29,"translate"),D(),S(30,"li"),V(31),F(32,"translate"),D(),S(33,"li"),V(34),F(35,"translate"),D(),S(36,"li"),V(37),F(38,"translate"),D()(),S(39,"h2"),V(40),F(41,"translate"),D(),S(42,"p"),V(43),F(44,"translate"),D(),S(45,"p"),V(46),F(47,"translate"),D(),S(48,"ul")(49,"li"),V(50),F(51,"translate"),D(),S(52,"li"),V(53),F(54,"translate"),D(),S(55,"li"),V(56),F(57,"translate"),D(),S(58,"li"),V(59),F(60,"translate"),D(),S(61,"li"),V(62),F(63,"translate"),D(),S(64,"li"),V(65),F(66,"translate"),D(),S(67,"li"),V(68),F(69,"translate"),D(),S(70,"li"),V(71),F(72,"translate"),D()(),le(73,"p",1),F(74,"translate"),D()(),S(75,"mat-dialog-actions",3)(76,"button",4),V(77),F(78,"translate"),D()()),2&e&&(b(3),re(j(4,26,"IMAGE_CONVERSION.TITLE_1")),b(3),re(j(7,28,"IMAGE_CONVERSION.PARAGRAPH_1_1")),b(2),E("innerHtml",j(9,30,"IMAGE_CONVERSION.PARAGRAPH_1_2"),dn),b(3),re(j(12,32,"IMAGE_CONVERSION.PARAGRAPH_1_3")),b(2),E("ngIf",i.showImage),b(2),re(j(16,34,"IMAGE_CONVERSION.TITLE_2")),b(3),re(j(19,36,"IMAGE_CONVERSION.PARAGRAPH_2_1")),b(3),re(j(22,38,"IMAGE_CONVERSION.PARAGRAPH_2_2")),b(3),re(j(25,40,"IMAGE_CONVERSION.PARAGRAPH_2_3")),b(4),re(j(29,42,"IMAGE_CONVERSION.LI_1_1")),b(3),re(j(32,44,"IMAGE_CONVERSION.LI_1_2")),b(3),re(j(35,46,"IMAGE_CONVERSION.LI_1_3")),b(3),re(j(38,48,"IMAGE_CONVERSION.LI_1_4")),b(3),re(j(41,50,"IMAGE_CONVERSION.TITLE_3")),b(3),re(j(44,52,"IMAGE_CONVERSION.PARAGRAPH_3_1")),b(3),re(j(47,54,"IMAGE_CONVERSION.PARAGRAPH_3_2")),b(4),re(j(51,56,"IMAGE_CONVERSION.LI_2_1")),b(3),re(j(54,58,"IMAGE_CONVERSION.LI_2_2")),b(3),re(j(57,60,"IMAGE_CONVERSION.LI_2_3")),b(3),re(j(60,62,"IMAGE_CONVERSION.LI_2_4")),b(3),re(j(63,64,"IMAGE_CONVERSION.LI_2_5")),b(3),re(j(66,66,"IMAGE_CONVERSION.LI_2_6")),b(3),re(j(69,68,"IMAGE_CONVERSION.LI_2_7")),b(3),re(j(72,70,"IMAGE_CONVERSION.LI_2_8")),b(2),E("innerHtml",j(74,72,"IMAGE_CONVERSION.PARAGRAPH_4_1"),dn),b(4),re(j(78,74,"IMAGE_CONVERSION.CLOSE")))},dependencies:[xt,En,Yd,qd,Og,Lt],styles:["mat-dialog-content[_ngcontent-%COMP%]{position:relative}img[_ngcontent-%COMP%]{margin-bottom:1em;max-width:550px;border-top:2px solid var(--base-70);border-bottom:2px solid var(--base-70);border-right:2px solid var(--base-70);border-left:2px solid var(--base-70)}"]}),t})();function i$(t,n){if(1&t&&(le(0,"img"),F(1,"translate")),2&t){const e=I();Me("src",e.imageSrc+"_"+e.selectedLanguage+e.helpImageExtension,Qr)("alt",j(1,2,"PDF_CONVERSION.IMAGE_ALT_1"))}}let r$=(()=>{class t{constructor(e,i,r){this.config=e,this.files=i,this.translate=r,this.closeDialogAreaCode="CLOSE_PDF_CONVERSION_DIALOG",this.multipleFilePdfDownloadHelpImageSrc="/assets/images/pdf_help/pdf_source_download_help_multiple",this.singleFilePdfDownloadHelpImageSrc="/assets/images/pdf_help/pdf_source_download_help",this.helpImageExtension=".png"}ngOnInit(){this.selectedLanguage=this.translate.currentLang,this.showImage=!this.config.coreConfig.isWebComponent,this.imageSrc=this.files.translationFiles?.length>1||this.config.fileConfig.useMultipleFileUpload?this.multipleFilePdfDownloadHelpImageSrc:this.singleFilePdfDownloadHelpImageSrc}}return t.\u0275fac=function(e){return new(e||t)(_(Gt),_(Ta),_(gi))},t.\u0275cmp=ce({type:t,selectors:[["tld-translate-pdf-conversion-help"]],decls:83,vars:79,consts:[["id","pdf-disclaimer-title"],[4,"ngIf"],[3,"innerHtml"],["align","center"],["mat-button","","mat-dialog-close","","color","accent"]],template:function(e,i){1&e&&(S(0,"mat-dialog-content")(1,"section")(2,"h1",0),V(3),F(4,"translate"),D(),S(5,"p"),V(6),F(7,"translate"),D(),S(8,"p"),V(9),F(10,"translate"),D(),S(11,"p"),V(12),F(13,"translate"),D(),O(14,i$,2,4,"img",1),S(15,"h2"),V(16),F(17,"translate"),D(),S(18,"p"),V(19),F(20,"translate"),D(),S(21,"p"),V(22),F(23,"translate"),D(),S(24,"p"),V(25),F(26,"translate"),D(),S(27,"ul")(28,"li"),V(29),F(30,"translate"),D(),S(31,"li"),V(32),F(33,"translate"),D(),S(34,"li"),V(35),F(36,"translate"),D(),S(37,"li"),V(38),F(39,"translate"),D()(),S(40,"h2"),V(41),F(42,"translate"),D(),S(43,"p"),V(44),F(45,"translate"),D(),S(46,"p"),V(47),F(48,"translate"),D(),S(49,"ul")(50,"li"),V(51),F(52,"translate"),D(),S(53,"li"),V(54),F(55,"translate"),D(),S(56,"li"),V(57),F(58,"translate"),D(),S(59,"li"),V(60),F(61,"translate"),D(),S(62,"li"),V(63),F(64,"translate"),D(),S(65,"li"),V(66),F(67,"translate"),D(),S(68,"li"),V(69),F(70,"translate"),D(),S(71,"li"),V(72),F(73,"translate"),D(),S(74,"li"),V(75),F(76,"translate"),D()(),le(77,"p",2),F(78,"translate"),D()(),S(79,"mat-dialog-actions",3)(80,"button",4),V(81),F(82,"translate"),D()()),2&e&&(b(3),re(j(4,27,"PDF_CONVERSION.TITLE_1")),b(3),re(j(7,29,"PDF_CONVERSION.PARAGRAPH_1_1")),b(3),re(j(10,31,"PDF_CONVERSION.PARAGRAPH_1_2")),b(3),re(j(13,33,"PDF_CONVERSION.PARAGRAPH_1_3")),b(2),E("ngIf",i.showImage),b(2),re(j(17,35,"PDF_CONVERSION.TITLE_2")),b(3),re(j(20,37,"PDF_CONVERSION.PARAGRAPH_2_1")),b(3),re(j(23,39,"PDF_CONVERSION.PARAGRAPH_2_2")),b(3),re(j(26,41,"PDF_CONVERSION.PARAGRAPH_2_3")),b(4),re(j(30,43,"PDF_CONVERSION.LI_1_1")),b(3),re(j(33,45,"PDF_CONVERSION.LI_1_2")),b(3),re(j(36,47,"PDF_CONVERSION.LI_1_3")),b(3),re(j(39,49,"PDF_CONVERSION.LI_1_4")),b(3),re(j(42,51,"PDF_CONVERSION.TITLE_3")),b(3),re(j(45,53,"PDF_CONVERSION.PARAGRAPH_3_1")),b(3),re(j(48,55,"PDF_CONVERSION.PARAGRAPH_3_2")),b(4),re(j(52,57,"PDF_CONVERSION.LI_2_1")),b(3),re(j(55,59,"PDF_CONVERSION.LI_2_2")),b(3),re(j(58,61,"PDF_CONVERSION.LI_2_3")),b(3),re(j(61,63,"PDF_CONVERSION.LI_2_4")),b(3),re(j(64,65,"PDF_CONVERSION.LI_2_5")),b(3),re(j(67,67,"PDF_CONVERSION.LI_2_6")),b(3),re(j(70,69,"PDF_CONVERSION.LI_2_7")),b(3),re(j(73,71,"PDF_CONVERSION.LI_2_8")),b(3),re(j(76,73,"PDF_CONVERSION.LI_2_9")),b(2),E("innerHtml",j(78,75,"PDF_CONVERSION.PARAGRAPH_4_1"),dn),b(4),re(j(82,77,"PDF_CONVERSION.CLOSE")))},dependencies:[xt,En,Yd,qd,Og,Lt],styles:["mat-dialog-content[_ngcontent-%COMP%]{position:relative}img[_ngcontent-%COMP%]{margin-bottom:1em;max-width:550px;border-top:2px solid var(--base-70);border-bottom:2px solid var(--base-70);border-right:2px solid var(--base-70);border-left:2px solid var(--base-70)}"]}),t})();const s$=["pdfConversionButton"],a$=["imageConversionButton"];let eL=(()=>{class t{constructor(e,i,r){this.dialog=e,this.config=i,this.fileService=r,this.pdfConversion=Cr.PDF,this.imageConversion=Cr.IMAGE,this.translatingStatuss=wn.TRANSLATING,this.errorTranslatingStatuss=wn.ERROR,this.completedTranslatingStatuss=wn.COMPLETED,this.uploadedTranslatingStatuss=wn.UPLOADED}get sourceDownloadPDF(){return this.config.fileConfig.allowPDFSourceDownload&&this.fileService.anyPdfFileLoaded}get sourceDownloadImage(){return this.config.fileConfig.allowImageSourceDownload&&this.fileService.anyImageFileLoaded}conversionDialog(e){const i=new Wd;let r,s;i.minWidth="320px",i.width="80%",i.maxWidth="100%",e==Cr.PDF?(i.ariaLabelledBy="pdf-disclaimer-title",r=r$,s=this.pdfConversionButton):e==Cr.IMAGE&&(i.ariaLabelledBy="image-disclaimer-title",r=n$,s=this.imageConversionButton),this.dialog.open(r,i).afterClosed().subscribe(()=>{s&&s.focus()})}clearAll(){this.fileService.clear()}ngOnDestroy(){this.clearAll()}}return t.\u0275fac=function(e){return new(e||t)(_(Aa),_(Gt),_(Ta))},t.\u0275cmp=ce({type:t,selectors:[["ng-component"]],viewQuery:function(e,i){if(1&e&&(it(s$,5),it(a$,5)),2&e){let r;xe(r=ke())&&(i.pdfConversionButton=r.first),xe(r=ke())&&(i.imageConversionButton=r.first)}},decls:0,vars:0,template:function(e,i){},encapsulation:2}),t})(),tL=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["tld-loader"]],decls:4,vars:0,consts:[["fxLayout","row","fxLayoutGap","10px",1,"tld-loader","accent-color"],[1,"accent-bg-color","tld-loader-element","element-1"],[1,"accent-bg-color","tld-loader-element","element-2"],[1,"accent-bg-color","tld-loader-element","element-3"]],template:function(e,i){1&e&&(S(0,"div",0),le(1,"div",1)(2,"div",2)(3,"div",3),D())},dependencies:[Dn,$a],styles:[".tld-loader[_ngcontent-%COMP%] .tld-loader-element[_ngcontent-%COMP%]{will-change:transform;border-radius:50%;animation:grow .6s ease-in-out infinite alternate;width:24px;height:24px}.tld-loader[_ngcontent-%COMP%] .tld-loader-element.element-2[_ngcontent-%COMP%]{animation-delay:.2s}.tld-loader[_ngcontent-%COMP%] .tld-loader-element.element-3[_ngcontent-%COMP%]{animation-delay:.4s}@keyframes grow{to{transform:translate(-50%) scale(0)}}"]}),t})();function o$(t,n){if(1&t){const e=Fe();S(0,"button",9,10),ee("menuOpened",function(){return me(e),_e(I().onMenuOpen())}),F(2,"translate"),S(3,"span",2),V(4," arrow_drop_down "),D()()}if(2&t){const e=I();E("matMenuTriggerFor",vt(9))("disabled",e.disabled),Me("aria-label",j(2,3,"ARIA_LABELS.SHOW_EXTENSIONS"))}}function l$(t,n){if(1&t){const e=Fe();S(0,"button",11),ee("click",function(){me(e);const r=I().$implicit;return _e(I().onClick(r))}),V(1),D()}if(2&t){const e=I().$implicit;b(1),Ve(" ",e.extension," ")}}function c$(t,n){if(1&t&&(je(0),O(1,l$,2,1,"button",8),ze()),2&t){const e=n.$implicit,i=I();b(1),E("ngIf",i.canDownload(e.extension))}}function u$(t,n){if(1&t){const e=Fe();S(0,"button",11),ee("click",function(){return me(e),_e(I().onSourceClick())}),V(1),F(2,"translate"),D()}2&t&&(b(1),Ve(" ",j(2,1,"TLD_TRANSLATE.FILE_DOWNLOAD_SOURCE")," "))}function d$(t,n){if(1&t){const e=Fe();S(0,"button",11),ee("click",function(){return me(e),_e(I().onSourceClick())}),V(1),F(2,"translate"),D()}2&t&&(b(1),Ve(" ",j(2,1,"TLD_TRANSLATE.FILE_DOWNLOAD_SOURCE_IMAGE")," "))}let nL=(()=>{class t{constructor(e,i){this.fileService=e,this.config=i,this.tldClick=new Ae}get showSourceDownloadPdf(){return this.sourceDownload&&this.file?.sourceDownloadAvailable&&this.config.fileConfig.allowPDFSourceDownload&&this.file.fileType==Cr.PDF}get showSourceDownloadImage(){return this.sourceDownload&&this.file?.sourceDownloadAvailable&&this.config.fileConfig.allowImageSourceDownload&&this.file.fileType==Cr.IMAGE}get extensions(){return this.file?.availableExtensions||[]}ngOnInit(){this.allowTmxAuth=this.config.fileConfig.allowTmxAuth,this.allowTmxUnauth=this.config.fileConfig.allowTmxUnauth,this.isAuth=this.config.coreConfig.isAuth}onClick(e){!e&&this.extensions&&(e=this.extensions[0]),this.tldClick.emit(e)}onSourceClick(){const e=this.fileService.convertedSourceFileName(this.file.originalFileName);this.onClick({fileName:e})}canDownload(e){return!!(!["tmx"].includes(e.toLowerCase())||this.allowTmxUnauth&&!this.isAuth||this.allowTmxAuth&&this.isAuth)}onMenuOpen(){document.getElementById(this.menu.panelId).setAttribute("data-test-id","tld-download-file-list")}}return t.\u0275fac=function(e){return new(e||t)(_(Ta),_(Gt))},t.\u0275cmp=ce({type:t,selectors:[["tld-translate-file-download-button"]],viewQuery:function(e,i){if(1&e&&it(so,5),2&e){let r;xe(r=ke())&&(i.menu=r.first)}},inputs:{file:"file",disabled:"disabled",sourceDownload:"sourceDownload"},outputs:{tldClick:"tldClick"},decls:14,vars:8,consts:[["fxLayout","row"],["mat-stroked-button","","color","accent",1,"action-button","border-accent","download-button",3,"disabled","click"],[1,"material-icons"],[1,"download-btn-text","text-m-semi-bold"],["mat-stroked-button","","color","accent","class","extension-button border-accent","data-test-id","download-other-formats-button","fxLayoutAlign","center center",3,"matMenuTriggerFor","disabled","menuOpened",4,"ngIf"],["extensionMenu","matMenu"],["fxLayout","column"],[4,"ngFor","ngForOf"],["mat-menu-item","","fxLayoutAlign","start center","class","language-title",3,"click",4,"ngIf"],["mat-stroked-button","","color","accent","data-test-id","download-other-formats-button","fxLayoutAlign","center center",1,"extension-button","border-accent",3,"matMenuTriggerFor","disabled","menuOpened"],["menuTrigger","matMenuTrigger"],["mat-menu-item","","fxLayoutAlign","start center",1,"language-title",3,"click"]],template:function(e,i){1&e&&(S(0,"div",0)(1,"button",1),ee("click",function(){return i.onClick()}),S(2,"span",2),V(3," file_download "),D(),S(4,"span",3),V(5),F(6,"translate"),D()(),O(7,o$,5,5,"button",4),D(),S(8,"mat-menu",null,5)(10,"div",6),O(11,c$,2,1,"ng-container",7),O(12,u$,3,3,"button",8),O(13,d$,3,3,"button",8),D()()),2&e&&(b(1),E("disabled",i.disabled),b(4),Ve(" ",j(6,6,"TLD_TRANSLATE.DOWNLOAD_TRANSLATED")," "),b(2),E("ngIf",i.extensions&&i.extensions.length>1),b(4),E("ngForOf",i.extensions),b(1),E("ngIf",i.showSourceDownloadPdf),b(1),E("ngIf",i.showSourceDownloadImage))},dependencies:[Gi,xt,Dn,Xn,En,so,Hc,Qd,Lt],styles:[".action-button[_ngcontent-%COMP%]{width:100%}.download-button[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{margin-right:.5625rem;width:.8125rem}.extension-button[_ngcontent-%COMP%]{padding:0;min-width:38px;margin-left:2px}.action-button.mat-stroked-button.mat-accent[_ngcontent-%COMP%], .extension-button.mat-stroked-button.mat-accent[_ngcontent-%COMP%]{background-color:#fff}"]}),t})();function h$(t,n){if(1&t&&(S(0,"div",12),le(1,"div",13),D()),2&t){const e=I();b(1),E("innerHtml",e.filePreview,dn)}}function f$(t,n){1&t&&le(0,"div",14),2&t&&E("innerHtml",I().translatedPreview,dn)}function p$(t,n){if(1&t&&(S(0,"div",21),V(1),D()),2&t){const e=I(2);b(1),Ve("",e.progress,"%")}}function g$(t,n){1&t&&(S(0,"div"),V(1),F(2,"translate"),D()),2&t&&(b(1),re(j(2,1,"TLD_TRANSLATE.FILE_TANSLATION_STATUSS_QUEUING")))}function m$(t,n){if(1&t&&(S(0,"div",21),V(1),F(2,"translate"),D()),2&t){const e=I(2);b(1),re(j(2,1,"TLD_TRANSLATE.FILE_TANSLATION_STATUSS_"+e.translationStatuss))}}function _$(t,n){if(1&t){const e=Fe();S(0,"div",15)(1,"div",16)(2,"button",17),ee("click",function(){return me(e),_e(I().cancel())}),V(3),F(4,"translate"),D()(),S(5,"div",18),le(6,"tld-loader"),O(7,p$,2,1,"div",19),O(8,g$,3,3,"div",20),O(9,m$,3,3,"div",19),D()()}if(2&t){const e=I();b(3),re(j(4,4,"TLD_TRANSLATE.CANCEL_TRANSLATION")),b(4),E("ngIf",e.translationStatuss===e.translatingStatuss),b(1),E("ngIf",!e.translationStatuss),b(1),E("ngIf",e.translationStatuss)}}function y$(t,n){if(1&t){const e=Fe();S(0,"tld-translate-file-download-button",22),ee("tldClick",function(r){return me(e),_e(I().download(r))}),D()}if(2&t){const e=I();E("file",e.translationFile)("disabled",e.downloading)}}function A$(t,n){1&t&&le(0,"tld-translate-button",23)}function v$(t,n){1&t&&(S(0,"div",24)(1,"p",25),V(2),F(3,"translate"),D()()),2&t&&(b(2),re(j(3,1,"TLD_TRANSLATE.FILE_TARGET_PREVIEW_MESSAGE")))}function b$(t,n){if(1&t){const e=Fe();je(0),S(1,"button",27),ee("click",function(){return me(e),_e(I(3).downloadSource())}),V(2),F(3,"translate"),D(),le(4,"br"),S(5,"div",28),V(6),F(7,"translate"),D(),S(8,"button",29,30),ee("click",function(){me(e);const r=I(3);return _e(r.conversionDialog(r.pdfConversion))}),V(10),F(11,"translate"),D(),ze()}2&t&&(b(2),Ve(" ",j(3,3,"TLD_TRANSLATE.FILE_DOWNLOAD_SOURCE")," "),b(4),Ve(" ",j(7,5,"TLD_TRANSLATE.FILE_DOWNLOAD_SOURCE_HELP")," "),b(4),re(j(11,7,"TLD_TRANSLATE.PDF_DISCLAIMER_LINK")))}function C$(t,n){if(1&t){const e=Fe();je(0),S(1,"button",27),ee("click",function(){return me(e),_e(I(3).downloadSource())}),V(2),F(3,"translate"),D(),le(4,"br"),S(5,"div",28),V(6),F(7,"translate"),D(),S(8,"button",31,32),ee("click",function(){me(e);const r=I(3);return _e(r.conversionDialog(r.imageConversion))}),V(10),F(11,"translate"),D(),ze()}2&t&&(b(2),Ve(" ",j(3,3,"TLD_TRANSLATE.FILE_DOWNLOAD_SOURCE_IMAGE")," "),b(4),Ve(" ",j(7,5,"TLD_TRANSLATE.FILE_DOWNLOAD_SOURCE_IMAGE_HELP")," "),b(4),re(j(11,7,"TLD_TRANSLATE.IMAGE_DISCLAIMER_LINK")))}function T$(t,n){if(1&t&&(je(0),O(1,b$,12,9,"ng-container",20),O(2,C$,12,9,"ng-container",20),ze()),2&t){const e=I(2);b(1),E("ngIf",e.sourceDownloadPDF),b(1),E("ngIf",e.sourceDownloadImage)}}function E$(t,n){if(1&t&&(S(0,"div",26),le(1,"div",14),S(2,"div"),V(3),D(),O(4,T$,3,2,"ng-container",20),D()),2&t){const e=I();b(1),E("innerHtml",e.filePreview,dn),b(2),re(e.loadedFileName),b(1),E("ngIf",e.showSourceDownload)}}let S$=(()=>{class t extends eL{constructor(e,i,r){super(i,r,e),this.fileService=e,this.dialog=i,this.config=r,this.clearButtonAriaCode="CLEAR_FILES"}get achievementVisible(){return!this.config.coreConfig.hideAchievement&&!this.translating&&!this.showPreview}get downloading(){return this.translationFile?.isDownloading}get filePreview(){return this.translationFile?.sourcePreview}get isFilePreviewLoaded(){return this.translationFile?.isFilePreviewLoaded}get progress(){return this.translationFile?.progress}get translatedPreview(){return this.translationFile?.translatedPreview}get translating(){return this.translationFile?.translating}get showPreview(){return this.translationFile?.downloadAvailable}get translationStatuss(){return this.translationFile?.translationStatuss}get sourcePreviewHasHtml(){return this.translationFile?.sourcePreviewHasHtml}get loadedFileName(){return this.translationFile?.originalFileName}get showSourceDownload(){return this.translationFile?.sourceDownloadAvailable}ngAfterViewInit(){this.translatorWrapper.focusClearButton()}cancel(){this.fileService.clear()}clearPreview(){this.fileService.clear()}download(e){this.fileService.downloadTarget(this.translationFile,e)}downloadSource(){this.fileService.downloadSource(this.translationFile)}}return t.\u0275fac=function(e){return new(e||t)(_(Ta),_(Aa),_(Gt))},t.\u0275cmp=ce({type:t,selectors:[["tld-translate-file"]],viewQuery:function(e,i){if(1&e&&it(cC,5),2&e){let r;xe(r=ke())&&(i.translatorWrapper=r.first)}},inputs:{translationFile:"translationFile"},features:[J],decls:13,vars:9,consts:[[1,"wrapper-paddings",3,"clearSourceVisible","hideAchievement","onSourceClear"],["sourceMain",""],["fxLayout","column","fxLayoutAlign","start start",4,"ngIf","ngIfElse"],["targetMain",""],["fxLayout","column",1,"target-main"],[3,"innerHtml",4,"ngIf"],["fxLayout","column","fxFlex","",4,"ngIf"],["class","download-button",3,"file","disabled","tldClick",4,"ngIf"],["class","action-button translate-file-button","fxHide.gt-xs","",4,"ngIf"],["targetActions",""],["class","tld-translate-target-footer","fxLayoutAlign","start center",4,"ngIf"],["noPreviewBlock",""],["fxLayout","column","fxLayoutAlign","start start"],[1,"file-preview",3,"innerHtml"],[3,"innerHtml"],["fxLayout","column","fxFlex",""],["fxLayoutAlign","end center"],["mat-flat-button","","color","accent",1,"action-button","cancel-button",3,"click"],["fxFlex","","fxLayoutAlign","center center","fxLayout","column","role","progressbar"],["aria-live","polite",4,"ngIf"],[4,"ngIf"],["aria-live","polite"],[1,"download-button",3,"file","disabled","tldClick"],["fxHide.gt-xs","",1,"action-button","translate-file-button"],["fxLayoutAlign","start center",1,"tld-translate-target-footer"],[1,"tld-target-preview-message"],["fxLayout","column","fxLayoutAlign","center center",1,"no-preview-wrapper"],["mat-flat-button","",1,"download-source-button",3,"click"],["fxLayout","row","fxLaouytAlign","start start",1,"source-download-help"],["mat-button","","color","accent","data-test-id","pdf-help-button",3,"click"],["pdfConversionButton",""],["mat-button","","color","accent","data-test-id","image-help-button",3,"click"],["imageConversionButton",""]],template:function(e,i){if(1&e&&(S(0,"tld-source-and-target-wrapper",0),ee("onSourceClear",function(){return i.clearPreview()}),je(1,1),O(2,h$,2,1,"div",2),ze(),je(3,3),S(4,"div",4),O(5,f$,1,1,"div",5),O(6,_$,10,6,"div",6),O(7,y$,1,2,"tld-translate-file-download-button",7),O(8,A$,1,0,"tld-translate-button",8),D(),ze(),je(9,9),O(10,v$,4,3,"div",10),ze(),D(),O(11,E$,5,3,"ng-template",null,11,pi)),2&e){const r=vt(12);E("clearSourceVisible",!0)("hideAchievement",!i.achievementVisible),b(2),E("ngIf",i.sourcePreviewHasHtml)("ngIfElse",r),b(3),E("ngIf",i.showPreview),b(1),E("ngIf",i.translating),b(1),E("ngIf",i.showPreview),b(1),E("ngIf",!i.translating&&!i.showPreview),b(2),E("ngIf",i.translatedPreview)}},dependencies:[xt,tL,lC,cC,Dn,Xn,qi,Os,En,nL,Lt],styles:[".target-container[_ngcontent-%COMP%], .source-container[_ngcontent-%COMP%]{position:relative}.tld-translate-target-footer[_ngcontent-%COMP%]{padding:0 1em}.tld-target-preview-message[_ngcontent-%COMP%]{color:#5577a9;font-size:12px}.action-button[_ngcontent-%COMP%]{min-width:100px;max-width:200px}.download-button[_ngcontent-%COMP%], .translate-file-button[_ngcontent-%COMP%]{min-width:100px;max-width:200px;top:5px;position:absolute;left:0;right:0;margin-left:auto;margin-right:auto}.cancel-button[_ngcontent-%COMP%]{margin:1em 0}.tld-translate-mobile [_nghost-%COMP%] .source-download-help{font-size:small}.tld-translate-mobile [_nghost-%COMP%] .no-preview .type{height:100px;width:100px;font-size:1em}.no-preview-wrapper[_ngcontent-%COMP%]{height:100%}[_nghost-%COMP%] .no-preview{display:table;margin:auto}[_nghost-%COMP%] .no-preview .type{color:#434242;font-weight:700;text-align:center;margin:auto;position:relative;height:200px;width:200px;background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C!--%20Generator%3A%20Adobe%20Illustrator%2016.0.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200\\)%20%20--%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20version%3D%221.1%22%0A%09%20id%3D%22svg2%22%20inkscape%3Aversion%3D%220.48.5%20r10040%22%20sodipodi%3Adocname%3D%22filetype.svg%22%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Ardf%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2F02%2F22-rdf-syntax-ns%23%22%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%20xmlns%3Acc%3D%22http%3A%2F%2Fcreativecommons.org%2Fns%23%22%20xmlns%3Adc%3D%22http%3A%2F%2Fpurl.org%2Fdc%2Felements%2F1.1%2F%22%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%0A%09%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%22102.482px%22%0A%09%20height%3D%22136.021px%22%20viewBox%3D%220%200%20102.482%20136.021%22%20enable-background%3D%22new%200%200%20102.482%20136.021%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Csodipodi%3Anamedview%20%20id%3D%22base%22%20fit-margin-bottom%3D%225%22%20fit-margin-right%3D%225%22%20inkscape%3Acurrent-layer%3D%22layer1%22%20inkscape%3Awindow-width%3D%221840%22%20inkscape%3Awindow-x%3D%221271%22%20inkscape%3Apageshadow%3D%222%22%20inkscape%3Apageopacity%3D%220.0%22%20inkscape%3Awindow-height%3D%221051%22%20inkscape%3Awindow-maximized%3D%221%22%20inkscape%3Awindow-y%3D%22-9%22%20inkscape%3Adocument-units%3D%22px%22%20showgrid%3D%22false%22%20inkscape%3Azoom%3D%221.979899%22%20bordercolor%3D%22%23666666%22%20pagecolor%3D%22%23ffffff%22%20inkscape%3Acx%3D%22-15.860958%22%20inkscape%3Acy%3D%22106.2157%22%20borderopacity%3D%221.0%22%20fit-margin-left%3D%225%22%20fit-margin-top%3D%225%22%3E%0A%09%3C%2Fsodipodi%3Anamedview%3E%0A%3Cg%3E%0A%09%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%235D5D5D%22%20stroke-miterlimit%3D%2210%22%20points%3D%2295.116%2C45.071%2065.216%2C45.071%2065.216%2C15.75%20%09%22%2F%3E%0A%09%3Cg%3E%0A%09%09%3Cpath%20fill%3D%22%235D5D5D%22%20d%3D%22M65.151%2C15.834l29.314%2C29.314v75.256H9.085V15.834H65.151%20M65.565%2C14.834H8.085v106.57h87.38v-76.67%0A%09%09%09L65.565%2C14.834L65.565%2C14.834z%22%2F%3E%0A%09%3C%2Fg%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A);background-position:50%;background-repeat:no-repeat;background-size:contain;font-size:2em;display:table-cell;vertical-align:middle}.achievement-badge[_ngcontent-%COMP%]{margin:1em}.download-source-button[_ngcontent-%COMP%]{background-color:#5a6672;color:#fff;margin-top:1em}.source-download-help[_ngcontent-%COMP%]{word-break:break-word}.target-main[_ngcontent-%COMP%]{height:100%}.file-preview[_ngcontent-%COMP%]{word-break:break-word}"]}),t})(),D$=(()=>{class t{constructor(e){this.element=e,this.fileDropped=new Ae}get disabled(){return this.element.nativeElement.disabled}onDragOver(e){e.preventDefault(),e.stopPropagation(),this.active=!this.disabled}onDragLeave(e){e.preventDefault(),e.stopPropagation(),this.active=!1}ondrop(e){if(e.preventDefault(),e.stopPropagation(),this.active=!1,this.disabled)return;let i=e.dataTransfer.files;i.length>0&&this.fileDropped.emit(i)}}return t.\u0275fac=function(e){return new(e||t)(_(be))},t.\u0275dir=G({type:t,selectors:[["","tldDragAndDrop",""]],hostVars:2,hostBindings:function(e,i){1&e&&ee("dragover",function(s){return i.onDragOver(s)})("dragleave",function(s){return i.onDragLeave(s)})("drop",function(s){return i.ondrop(s)}),2&e&&Mt("tld-file-over",i.active)},outputs:{fileDropped:"fileDropped"}}),t})();const w$=["fileInput"],x$=["inputButton"];function k$(t,n){1&t&&le(0,"mat-progress-bar",6),2&t&&E("value",I().filePreviewProgress)}const I$=["*"];let iL=(()=>{class t{constructor(){this.fileChange=new Ae,this.onError=new Ae,this._accept=[],this.multiple=!1}set accept(e){this._accept=e,this.allowedExtensions=e?e.join(","):""}get accept(){return this._accept}handleFileInput(e){this.validate(e.target.files)}onFileDrop(e){this.validate(e)}emit(e){e&&e.length>0&&this.fileChange.emit(e)}emitError(e){this.onError.emit(e)}validate(e){const i=[];for(let r=0;r<e.length;r++){const s=e[r];if(!this.allowEmpty&&0==s.size)return void this.emitError({code:Ca.FILE_EMPTY,error:"File is empty",fileName:s.name});const a=this.getExtensionErrorCode(s.name);a?this.emitError({code:a,error:"Not valid extension.",fileName:s.name}):this.maxSize&&s.size>this.maxSize?this.emitError({code:Ca.MAX_SIZE,error:"Maximum allowed file size exceeded.",fileName:s.name}):i.push(s)}this.emit(i),this.fileInput.nativeElement.value=""}getExtensionErrorCode(e){const i=e.slice(e.lastIndexOf(".")).toLowerCase();return 0==this.accept.length||1==this.accept.length&&"*"==this.accept[0]||this.accept.includes(i)?null:this.extendedAcceptList?.includes(i)?Ca.FILE_UPLOAD_UNSUPPORTED_FORMAT_REGISTER:Ca.FILE_UPLOAD_UNSUPPORTED_FORMAT}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["tld-file-upload"]],viewQuery:function(e,i){if(1&e&&(it(w$,5),it(x$,5,be)),2&e){let r;xe(r=ke())&&(i.fileInput=r.first),xe(r=ke())&&(i.inputButton=r.first)}},inputs:{accept:"accept",maxSize:"maxSize",multiple:"multiple",filePreviewProgress:"filePreviewProgress",allowEmpty:"allowEmpty",disabled:"disabled",extendedAcceptList:"extendedAcceptList"},outputs:{fileChange:"fileChange",onError:"onError"},ngContentSelectors:I$,decls:7,vars:5,consts:[[1,"file-upload",3,"ngClass.lt-sm"],["class","tld-file-upload-progress","color","primary",3,"value",4,"ngIf"],["tldDragAndDrop","","mat-button","","type","button",1,"upload-button",3,"disabled","fileDropped","click"],["inputButton",""],["type","file","name","files",1,"native-file-input",3,"accept","multiple","change"],["fileInput",""],["color","primary",1,"tld-file-upload-progress",3,"value"]],template:function(e,i){if(1&e){const r=Fe();Ci(),S(0,"div",0),O(1,k$,1,1,"mat-progress-bar",1),S(2,"button",2,3),ee("fileDropped",function(a){return i.onFileDrop(a)})("click",function(){return me(r),_e(vt(6).click())}),rn(4),D()(),S(5,"input",4,5),ee("change",function(a){return i.handleFileInput(a)}),D()}2&e&&(E("ngClass.lt-sm","file-upload-mobile"),b(1),E("ngIf",i.filePreviewProgress),b(1),E("disabled",i.disabled),b(3),E("accept",i.allowedExtensions)("multiple",i.multiple))},dependencies:[xt,En,Yb,Ii,D$],styles:[".file-name-list[_ngcontent-%COMP%]{margin-left:15px}.file-name-label[_ngcontent-%COMP%]{word-break:break-all}.file-upload[_ngcontent-%COMP%]{max-width:100%;width:100%}.file-upload[_ngcontent-%COMP%] .upload-button[_ngcontent-%COMP%]{width:100%;font-size:1em;border:1px dashed #9aa5b1;border-radius:16px;background-color:#fff;font-family:Inter,sans-serif;padding:1em;white-space:normal;line-height:normal;text-align:left}.file-upload-mobile[_ngcontent-%COMP%] .upload-button[_ngcontent-%COMP%]{border-top:2px solid var(--base-70);border-bottom:2px solid var(--base-70);border-right:2px solid var(--base-70);border-left:2px solid var(--base-70);padding:.5em 1em!important}.tld-file-over[_ngcontent-%COMP%]{background-color:#e5e7e8!important;border-color:#00f!important}.mat-stroked-button[_ngcontent-%COMP%] .mat-button-wrapper[_ngcontent-%COMP%]{pointer-events:none}.native-file-input[_ngcontent-%COMP%]{display:none}.tld-file-upload-progress[_ngcontent-%COMP%] .mat-progress-bar-fill:after{background-color:#1e457c}.tld-file-upload-progress[_ngcontent-%COMP%] .mat-progress-bar-buffer{background:white}"]}),t})(),rL=(()=>{class t{constructor(e,i){this.systemService=e,this.translateService=i,this.vendorMessage={description:"VENDOR_MESSAGE.TEXT",title:null,localizationParams:null,type:jd.INFO,iconPosition:Ud.END,iconTooltip:"VENDOR_MESSAGE.ICON_TOOLTIP"}}ngOnInit(){this.subscribeToVendorLocalization()}ngOnDestroy(){this.subscription.unsubscribe()}subscribeToVendorLocalization(){this.subscription=this.translateService.stream("VENDORS").subscribe(e=>{const i=e[this.systemService.activeVendor.toUpperCase()]??this.systemService.activeVendor;this.vendorMessage.localizationParams={vendor:i}})}}return t.\u0275fac=function(e){return new(e||t)(_(Xi),_(gi))},t.\u0275cmp=ce({type:t,selectors:[["vendor-disclaimer"]],decls:1,vars:1,consts:[[1,"vendor-notification",3,"message"]],template:function(e,i){1&e&&le(0,"lib-inline-message",0),2&e&&E("message",i.vendorMessage)},dependencies:[VR],styles:[".vendor-notification[_ngcontent-%COMP%]{margin-top:.5rem;margin-bottom:.5rem;color:var(--base-10)}.vendor-notification[_ngcontent-%COMP%] .material-icons{font-size:1.25rem!important}.vendor-notification[_ngcontent-%COMP%] .description{font-size:.875rem}"]}),t})();function M$(t,n){if(1&t){const e=Fe();S(0,"tld-translate-file-download-button",19),ee("tldClick",function(r){me(e);const s=I().$implicit;return _e(I().download(s,r))}),D()}if(2&t){const e=I().$implicit;E("sourceDownload",!0)("disabled",e.isDownloading)("file",e)}}function R$(t,n){1&t&&le(0,"mat-progress-bar",20),2&t&&E("value",I().$implicit.progress)}const O$=function(t){return{percent:t}};function L$(t,n){if(1&t&&(S(0,"div",21),V(1),F(2,"translate"),D()),2&t){const e=I().$implicit;b(1),Ve(" ",bn(2,1,"MULTIPLE_FILES.STATUSS_"+e.translationStatuss,fn(4,O$,e.progress))," ")}}function P$(t,n){1&t&&le(0,"lib-inline-message",23),2&t&&E("message",n.$implicit)}function N$(t,n){if(1&t&&(je(0),O(1,P$,1,1,"lib-inline-message",22),ze()),2&t){const e=I().$implicit;b(1),E("ngForOf",e.messages)}}function F$(t,n){if(1&t){const e=Fe();S(0,"div",10)(1,"div",11)(2,"div",12)(3,"div",13),V(4),D(),S(5,"div",14),O(6,M$,1,3,"tld-translate-file-download-button",15),S(7,"tld-close-button",16),ee("tldClick",function(){const s=me(e).$implicit;return _e(I().remove(s))}),D()()(),O(8,R$,1,1,"mat-progress-bar",17),O(9,L$,3,6,"div",18),O(10,N$,2,1,"ng-container",5),D()()}if(2&t){const e=n.$implicit,i=I();E("ngClass.gt-sm","extra-width"),b(4),Ve(" ",e.originalFileName," "),b(2),E("ngIf",e.downloadAvailable),b(1),E("tooltip","FILE_UPLOAD.CLEAR"),b(1),E("ngIf",e.translationStatuss===i.translatingStatuss),b(1),E("ngIf",e.translationStatuss!==i.errorTranslatingStatuss&&e.translationStatuss!==i.completedTranslatingStatuss&&e.translationStatuss!==i.uploadedTranslatingStatuss),b(1),E("ngIf",e.messages.length>0)}}function B$(t,n){if(1&t){const e=Fe();S(0,"tld-file-upload",24),ee("fileChange",function(r){return me(e),_e(I().fileChange(r))})("onError",function(r){return me(e),_e(I().fileUploadError(r))}),V(1),F(2,"translate"),D()}if(2&t){const e=I();E("accept",e.allowedFileTypes)("maxSize",e.maxFileUploadSize)("multiple",e.multipleFiles)("disabled",e.disableAppendFiles)("extendedAcceptList",e.extendedFileTypes),b(1),oy(" ",j(2,8,"MULTIPLE_FILES.APPEND")," (",e.fileCount,"/",e.maxFileCount,") ")}}function V$(t,n){1&t&&ei(0)}const U$=function(t){return{messageKey:"MULTIPLE_FILES.PDF_DISCLAIMER",dialogParams:t,buttonText:"MULTIPLE_FILES.PDF_DISCLAIMER_LINK"}};function j$(t,n){if(1&t&&(je(0),O(1,V$,1,0,"ng-container",25),ze()),2&t){const e=I(),i=vt(16);b(1),E("ngTemplateOutlet",i)("ngTemplateOutletContext",fn(2,U$,e.pdfConversion))}}function z$(t,n){1&t&&ei(0)}const H$=function(t){return{messageKey:"MULTIPLE_FILES.IMAGE_DISCLAIMER",dialogParams:t,buttonText:"MULTIPLE_FILES.IMAGE_DISCLAIMER_LINK"}};function G$(t,n){if(1&t&&(je(0),O(1,z$,1,0,"ng-container",25),ze()),2&t){const e=I(),i=vt(16);b(1),E("ngTemplateOutlet",i)("ngTemplateOutletContext",fn(2,H$,e.imageConversion))}}function W$(t,n){1&t&&(je(0),le(1,"vendor-disclaimer"),ze())}function K$(t,n){if(1&t){const e=Fe();S(0,"tld-translate-button",26),ee("clicked",function(){return me(e),_e(I().translateButtonClick())}),D()}2&t&&E("disabled",I().disableTranslateButton)}function Y$(t,n){if(1&t){const e=Fe();S(0,"p",27)(1,"span",28),V(2," info "),D(),S(3,"span"),V(4),F(5,"translate"),D(),S(6,"button",29),ee("click",function(){const s=me(e).dialogParams;return _e(I().conversionDialog(s))}),V(7),F(8,"translate"),D()()}if(2&t){const e=n.messageKey,i=n.buttonText;E("ngClass.gt-sm","conversion-info-margins-gt-sm"),b(4),Ve(" ",j(5,3,e)," "),b(3),re(j(8,5,i))}}const q$=function(t,n){return{translated:t,total:n}};let X$=(()=>{class t extends eL{constructor(e,i,r,s,a){super(r,i,e),this.fileService=e,this.config=i,this.dialog=r,this.translateButtonService=s,this.systemService=a}get translationStarted(){return this.fileService.translationStarted}get disableAppendFiles(){return this.fileService?.translationStarted||this.fileService.translationFiles?.length>=this.config.fileConfig.numberOfFilesAllowed}get isAuth(){return this.config?.coreConfig?.isAuth}get translatedFilesCount(){return this.fileService?.translatedCount||0}get maxFileCount(){return this.config.fileConfig.numberOfFilesAllowed}get fileCount(){return this.translationFiles?.length||0}get disableTranslateButton(){return this.fileService.disableTranslateButton}ngOnInit(){this.allowedFileTypes=this.config.fileConfig.allowedFileTypes,this.extendedFileTypes=this.config.fileConfig.extendedFileTypes,this.maxFileUploadSize=this.config.fileConfig.maxSize,this.multipleFiles=this.config.fileConfig.numberOfFilesAllowed>1,this.fileService.onFilesUploaded().pipe(gn(1)).subscribe(()=>{this.translateButtonService.pulseButton()})}download(e,i){i||(i=e.availableExtensions?.[0]),this.fileService.downloadTarget(e,i)}fileChange(e){for(var i=0;i<e.length;i++)this.fileService.loadFilePreview(e[i])}remove(e){1===this.translationFiles.length?this.clearAll():this.fileService.remove(e)}fileUploadError(e){this.fileService.fileUploadError(e)}translateButtonClick(){this.showVendorNotification=this.config.fileConfig.progressIndicatorTitleVisibleForVendors.includes(this.systemService.activeVendor)}}return t.\u0275fac=function(e){return new(e||t)(_(Ta),_(Gt),_(Aa),_(oC),_(Xi))},t.\u0275cmp=ce({type:t,selectors:[["tld-translate-file-multiple"]],inputs:{translationFiles:"translationFiles"},features:[J],decls:17,vars:17,consts:[["fxLayout","column","fxFlex","","fxLayoutAlign","start center",1,"tld-translate-file-container",3,"ngClass.xs"],["aria-live","polite",1,"cdk-visually-hidden"],["fxLayout","column","fxLayoutGap","0.5rem","fxFlex","",1,"multiple-files-body"],["class","file-row","fxLayout","row","fxLayoutAlign","center center","fxLayoutAlign.xs","flex-start center",3,"ngClass.gt-sm",4,"ngFor","ngForOf"],["fxFlex","","class","tld-append-files",3,"accept","maxSize","multiple","disabled","extendedAcceptList","fileChange","onError",4,"ngIf"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","center center","fxLayout.xs","column","fxLayuotGap.xs","1rem",1,"button-container"],["mat-stroked-button","","color","accent",1,"cancel-button","border-accent",3,"click"],[3,"disabled","clicked",4,"ngIf"],["conversionMessage",""],["fxLayout","row","fxLayoutAlign","center center","fxLayoutAlign.xs","flex-start center",1,"file-row",3,"ngClass.gt-sm"],["fxLayout","column","fxFlex",""],["fxLayout","row","fxLayoutAlign.xs","space-between center","fxLayoutAlign","space-between center"],[1,"file-name"],["fxLayout","row",1,"file-actions"],[3,"sourceDownload","disabled","file","tldClick",4,"ngIf"],[3,"tooltip","tldClick"],["color","accent","mode","determinate",3,"value",4,"ngIf"],["class","progress-message text-s",4,"ngIf"],[3,"sourceDownload","disabled","file","tldClick"],["color","accent","mode","determinate",3,"value"],[1,"progress-message","text-s"],[3,"message",4,"ngFor","ngForOf"],[3,"message"],["fxFlex","",1,"tld-append-files",3,"accept","maxSize","multiple","disabled","extendedAcceptList","fileChange","onError"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"disabled","clicked"],[1,"conversion-disclaimer","text=m",3,"ngClass.gt-sm"],[1,"material-icons"],[1,"conversion-message-action","text-m-semi-bold",3,"click"]],template:function(e,i){1&e&&(S(0,"div",0)(1,"div",1),V(2),F(3,"translate"),D(),S(4,"div",2),O(5,F$,11,7,"div",3),O(6,B$,3,10,"tld-file-upload",4),D(),O(7,j$,2,4,"ng-container",5),O(8,G$,2,4,"ng-container",5),O(9,W$,2,0,"ng-container",5),S(10,"div",6)(11,"button",7),ee("click",function(){return i.clearAll()}),V(12),F(13,"translate"),D(),O(14,K$,1,1,"tld-translate-button",8),D()(),O(15,Y$,9,7,"ng-template",null,9,pi)),2&e&&(E("ngClass.xs","tld-multiple-mobile"),b(2),Ve(" ",bn(3,9,"MULTIPLE_FILES.SCREEN_READER_ANNOUNCEMENT",Gu(14,q$,i.translatedFilesCount,i.fileCount))," "),b(3),E("ngForOf",i.translationFiles),b(1),E("ngIf",!i.translationStarted),b(1),E("ngIf",i.sourceDownloadPDF),b(1),E("ngIf",i.sourceDownloadImage),b(1),E("ngIf",i.showVendorNotification),b(3),re(j(13,12,"MULTIPLE_FILES.CLEAR_ALL")),b(2),E("ngIf",!i.translationStarted))},dependencies:[Gi,xt,Vo,iL,lC,Dn,$a,Xn,qi,Ii,En,Yb,to,VR,rL,nL,Lt],styles:[".semi-bold[_ngcontent-%COMP%], .text-s-semi-bold[_ngcontent-%COMP%], .text-m-semi-bold[_ngcontent-%COMP%], .text-l-semi-bold[_ngcontent-%COMP%], .text-xl-semi-bold[_ngcontent-%COMP%], .text-2-xl[_ngcontent-%COMP%], .text-3-xl[_ngcontent-%COMP%], .text-4-xl[_ngcontent-%COMP%]{font-weight:600}@media (min-width: 600px){.text-4-xl[_ngcontent-%COMP%]{font-size:2.75rem;line-height:3.375rem}}@media (min-width: 0) and (max-width: 599.9px){.text-4-xl[_ngcontent-%COMP%]{font-size:2rem;line-height:2.625rem}}.text-3-xl[_ngcontent-%COMP%]{font-size:2rem;line-height:2.625rem}.text-2-xl[_ngcontent-%COMP%]{font-size:1.5rem;line-height:2.125rem}.text-xl[_ngcontent-%COMP%], .text-xl-semi-bold[_ngcontent-%COMP%]{font-size:1.25rem;line-height:2rem}.text-l[_ngcontent-%COMP%], .cancel-button[_ngcontent-%COMP%], .text-l-semi-bold[_ngcontent-%COMP%]{font-size:1rem;line-height:1.625rem}.text-m[_ngcontent-%COMP%], .text-m-semi-bold[_ngcontent-%COMP%]{font-size:.875rem;line-height:1.4375rem}.text-s[_ngcontent-%COMP%], .text-s-semi-bold[_ngcontent-%COMP%]{font-size:.75rem;line-height:1.25rem}.tld-translate-file-container[_ngcontent-%COMP%]{padding:3em;width:100%}.tld-translate-file-container[_ngcontent-%COMP%] .file-row[_ngcontent-%COMP%]{min-height:4rem;width:100%;padding:.5em 0;border-bottom:1px solid var(--base-70)}.tld-translate-file-container[_ngcontent-%COMP%] .file-row[_ngcontent-%COMP%] .file-name[_ngcontent-%COMP%]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.tld-translate-file-container[_ngcontent-%COMP%] .file-row[_ngcontent-%COMP%] lib-inline-message[_ngcontent-%COMP%]{margin-top:.5rem}.tld-translate-file-container[_ngcontent-%COMP%] .file-row[_ngcontent-%COMP%] .file-actions[_ngcontent-%COMP%]{margin-left:.5rem}.tld-append-files[_ngcontent-%COMP%]{font-size:1em;margin-top:1rem}.conversion-disclaimer.conversion-info-margins-gt-sm[_ngcontent-%COMP%]{margin:.5em 20%}.conversion-disclaimer[_ngcontent-%COMP%]:not(.conversion-info-margins-gt-sm){text-align:center}tld-translate-button[_ngcontent-%COMP%]{margin:1em}.tld-multiple-mobile[_ngcontent-%COMP%]{padding:1rem}.tld-multiple-mobile[_ngcontent-%COMP%] tld-translate-button[_ngcontent-%COMP%]{margin:1rem 0 0;width:100%}.tld-multiple-mobile[_ngcontent-%COMP%] .file-row[_ngcontent-%COMP%], .tld-multiple-mobile[_ngcontent-%COMP%] .multiple-files-body[_ngcontent-%COMP%], .tld-multiple-mobile[_ngcontent-%COMP%] .cancel-button[_ngcontent-%COMP%], .tld-multiple-mobile[_ngcontent-%COMP%] .button-container[_ngcontent-%COMP%]{width:100%}.multiple-files-body[_ngcontent-%COMP%] tld-file-upload .file-upload .upload-button{text-align:center}.download-file[_ngcontent-%COMP%]{cursor:pointer}.material-icons[_ngcontent-%COMP%]{vertical-align:middle;color:var(--base-40)}.conversion-message-action[_ngcontent-%COMP%]{background:transparent;color:var(--accent);border:none;cursor:pointer}.extra-width[_ngcontent-%COMP%]{min-width:30rem}.progress-message[_ngcontent-%COMP%]{color:var(--base-40)}mat-progress-bar[_ngcontent-%COMP%]{margin:.375rem 0}.cancel-button[_ngcontent-%COMP%]{padding:.375rem 1.5rem}vendor-disclaimer[_ngcontent-%COMP%]{margin-bottom:1rem}"]}),t})(),Q$=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[sn,pa,Ar,yO,xc,Fb,ul]}),t})(),Z$=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[sn,Ar,nl,Fb,xc,pa]}),t})();var nh=(()=>{return(t=nh||(nh={})).QUEUED="QUEUED",t.COMPLETED="COMPLETED",t.IN_PROGRESS="IN_PROGRESS",nh;var t})();let $$=(()=>{class t{constructor(e,i){this.http=e,this.config=i}get audioConfig(){return this.config.audioConfig}startJob(e){if(!this.audioConfig.audioApiUrl)throw console.error("Speech API url not defined"),null;const i=new FormData;return i.append("file",e.file),i.append("langauge",e.language),this.http.post(this.audioConfig.audioApiUrl,i).pipe(Le(r=>this.mapJob(r)))}getJobInfo(e){return this.http.get(`${this.audioConfig.audioApiUrl}/${e}`).pipe(Le(i=>this.mapJob(i)))}mapJob(e){const i=e.state.toUpperCase().replace(/ /g,"_");return{createdAt:new Date(e.created_at),fileName:e.file_name,jobId:e.job_id,language:e.language,state:i,updatedAt:new Date(e.updated_at),errorMessage:e.error_message,transcription:e.transcription}}}return t.\u0275fac=function(e){return new(e||t)(R(Ki),R(Gt))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),sL=(()=>{class t{constructor(e){this.api=e,this.timeoutMs=1e3,this.transcribtionTextUpdated=new pe}get onTranscribtionTextUpdated(){return this.transcribtionTextUpdated.asObservable()}startTranscribtion(e){this.isProcessing=!0,this.api.startJob(e).subscribe(i=>{this.activeJob=i,this.lastTranscribtion=i.transcription,this.scheduleProgressCheckIfNecessary()})}stopProcessing(){this.isProcessing&&(this.activeJob=null,this.isProcessing=!1)}checkProgress(){!this.activeJob||this.api.getJobInfo(this.activeJob.jobId).subscribe(e=>{this.activeJob=e;const i=nh.COMPLETED===e.state;(e.transcription&&this.lastTranscribtion!==e.transcription||i)&&this.transcribtionTextUpdated.next({text:e.transcription,completed:i}),this.lastTranscribtion=e.transcription,this.scheduleProgressCheckIfNecessary()})}scheduleProgressCheckIfNecessary(){this.activeJob.state===nh.COMPLETED?this.isProcessing=!1:setTimeout(()=>{this.checkProgress()},this.timeoutMs)}}return t.\u0275fac=function(e){return new(e||t)(R($$))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();var aL=fi(415),Mi=(()=>{return(t=Mi||(Mi={})).USER_CONSENT_FAILED="USER_CONSENT_FAILED",t.RECORDER_TIMEOUT="RECORDER_TIMEOUT",t.ALREADY_RECORDING="ALREADY_RECORDING",t.MIC_NOT_ALLOWED="MIC_NOT_ALLOWED",t.CANT_START_RECORDING="CANT_START_RECORDING",t.MAX_SIZE_EXCEEDED="MAX_SIZE_EXCEEDED",t.NO_TEXT_RECOGNIZED="NO_TEXT_RECOGNIZED",t.MAX_TIME_EXCEEDED="MAX_TIME_EXCEEDED",t.NO_SPEECH="NO_SPEECH",Mi;var t})();const iJ=["canvasWrapper"];function rJ(t,n){1&t&&(S(0,"span",4),F(1,"translate"),V(2," mic "),D()),2&t&&E("matTooltip",j(1,1,"AUDIO.START"))}function sJ(t,n){1&t&&(S(0,"span",5),F(1,"translate"),V(2," mic_off "),D()),2&t&&E("matTooltip",j(1,1,"AUDIO.MIC_NOT_FOUND"))}function aJ(t,n){if(1&t){const e=Fe();je(0),S(1,"button",1),ee("click",function(){return me(e),_e(I().startRecording())}),F(2,"translate"),O(3,rJ,3,3,"span",2),O(4,sJ,3,3,"span",3),D(),ze()}if(2&t){const e=I();b(1),E("disabled",!e.hasAnyMicrophone),Me("aria-label",j(2,4,e.hasAnyMicrophone?"AUDIO.START":"AUDIO.MIC_NOT_FOUND")),b(2),E("ngIf",e.hasAnyMicrophone),b(1),E("ngIf",!e.hasAnyMicrophone)}}function oJ(t,n){if(1&t){const e=Fe();je(0),S(1,"div",6)(2,"div",7)(3,"button",8),ee("click",function(){return me(e),_e(I().stopRecording())}),F(4,"translate"),F(5,"translate"),S(6,"span",9),V(7," stop "),D()(),S(8,"div",10),V(9),F(10,"date"),D()(),S(11,"div",11,12),le(13,"canvas",13),D()(),ze()}if(2&t){const e=I();b(3),E("disabled",!e.isRecording)("matTooltip",j(4,6,"AUDIO.STOP")),Me("aria-label",j(5,8,"AUDIO.STOP")),b(6),Ve(" ",bn(10,10,e.recordLength,"mm:ss")," "),b(4),Me("width",e.canvasWidth)("id",e.visualizataionId)}}let lJ=(()=>{class t{constructor(){this.recordLength=new Date(0,0,0,0,0,0),this.visualizataionId="dictate-visualization",this.result=new Ae,this.partialResult=new Ae,this.isDictating=new Ae,this.onError=new Ae}onResize(){this.setCanvasWidth()}get maxLength(){return this.configuration?.maxLength}get isRecording(){return this._isRecording}set isRecording(e){const i=!this.isRecording&&e;this._isRecording=e,this.isDictating.emit(this._isRecording),i&&(this.dictatedText=""),!this.isRecording&&this.interval&&(this.recordLength=new Date(0,0,0,0,0,0),clearInterval(this.interval))}set dictatedText(e){this._dictatedText=e,this.result.emit(this._dictatedText)}get dictatedText(){return this._dictatedText}set language(e){this._language=e,this.asrClient?.changeLanguage(e)}ngOnInit(){this.asrClient=new aL.AsrClient({appId:this.configuration.appId,appSecret:this.configuration.appSecret,language:this._language,apiUrl:this.configuration.apiUrl,visualizerConfig:{visualizerId:this.visualizataionId},onResult:i=>{this.handleResult(i)},onRecordingStartStop:i=>{this.isRecording=i,setTimeout(()=>{this.setCanvasWidth(),this.asrClient.audioVisualizer?.visualizeAudio()},1)},onError:i=>{if("NotAllowedError"!==i.name)throw i;this.emitError(Mi.MIC_NOT_ALLOWED)},onMessage:i=>{i===aL.RecognitionStatus.NoSpeech&&this.emitError(Mi.NO_SPEECH)}}),this.findMic()}startRecording(){this.asrClient.beginVoiceRecognition(),this.interval=setInterval(()=>{const e=this.asrClient?.audioContext?.currentTime??0;if(this.maxLength&&e>this.maxLength)return this.stopRecording(),void this.emitError(Mi.MAX_TIME_EXCEEDED);this.recordLength=new Date(0,0,0,0,0,e)},1e3)}stopRecording(){this.asrClient.endVoiceRecognition()}setCanvasWidth(){this.canvasWidth=this.canvasWrapper?.nativeElement.offsetWidth}findMic(){navigator.mediaDevices.enumerateDevices().then(e=>{this.hasAnyMicrophone=!1;for(const i of e)if("audioinput"===i.kind)return void(this.hasAnyMicrophone=!0)})}handleResult(e){const i=e.hypotheses[0].transcript?.replace("<unk>","");if(e.final){let r=(this.dictatedText.length>0?" ":"")+i+(i.endsWith(".")?"":".");this.dictatedText+=r}else this.partialResult.emit(i)}emitError(e){this.onError.emit(e)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["tld-dictate"]],viewQuery:function(e,i){if(1&e&&it(iJ,5),2&e){let r;xe(r=ke())&&(i.canvasWrapper=r.first)}},hostBindings:function(e,i){1&e&&ee("resize",function(){return i.onResize()},0,D_)},inputs:{configuration:"configuration",language:"language"},outputs:{result:"result",partialResult:"partialResult",isDictating:"isDictating",onError:"onError"},decls:2,vars:2,consts:[[4,"ngIf"],["mat-button","","mat-icon-button","","fxLayoutAlign","center center","color","accent",3,"disabled","click"],["class","material-icons","color","accent",3,"matTooltip",4,"ngIf"],["class","material-icons",3,"matTooltip",4,"ngIf"],["color","accent",1,"material-icons",3,"matTooltip"],[1,"material-icons",3,"matTooltip"],["fxLayout","row","fxLayoutAlign","start end"],["fxLayout","column"],["mat-button","","mat-icon-button","","fxLayoutAlign","center center","color","accent",3,"disabled","matTooltip","click"],[1,"material-icons"],["fxLayoutAlign","center center",1,"tld-audio-timer"],["fxFlex",""],["canvasWrapper",""],["height","60"]],template:function(e,i){1&e&&(O(0,aJ,5,6,"ng-container",0),O(1,oJ,14,13,"ng-container",0)),2&e&&(E("ngIf",!i.isRecording),b(1),E("ngIf",i.isRecording))},dependencies:[xt,as,Dn,Xn,qi,En,p0,Lt],styles:["button[_ngcontent-%COMP%]{border:1px solid rgba(0,0,0,.12);min-width:40px}#dictate-visualization[_ngcontent-%COMP%]{margin-left:1em}.tld-audio-timer[_ngcontent-%COMP%]{font-size:10px}"]}),t})(),cJ=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[sn,Ar,Yc,gd,eh,jx,Z$,ul,Q$,x4,IO,QO,XO]}),t})();class Wg{static findExistingParagraph(n,e,i){const r={hasSameIx:!1,existingParagraph:null};for(var s=0;s<i.length;s++){const a=i[s];if(a.source.originalText==n){if(a.ix===e){r.existingParagraph=a;break}if(r.hasSameIx=!0,r.existingParagraph={searchParagraphIx:e,source:Object.assign({},a.source),target:Object.assign({},a.target)},e>a.ix)break}}return r}static changeRootAndParagraphIx(n,e,i){if(n.paragraphIx=i,e!=n&&(n.root=e),n.children){const r=[];n.children?.forEach(s=>{const a=Object.assign({},s);this.changeRootAndParagraphIx(a,e,i),r.push(a)}),n.children=r}}static createEmptyParagraphInfo(n){return{ix:n,source:{text:"",originalText:"",paragraphIx:n,type:On.PARAGRAPH,root:null},target:{text:"",originalText:"",paragraphIx:n,type:On.PARAGRAPH,root:null}}}}let oL=(()=>{class t{constructor(e){this.scrollDispatcher=e}subscribeToScroll(){this.subscription=this.scrollDispatcher.scrolled().subscribe(e=>{this.syncScrollbars(e)})}unsubscribeToScroll(){this.subscription.unsubscribe()}syncScrollbars(e,i){if(typeof e>"u"&&(!i||0!=i))return;const r="top",s=i||0==i?i:e.measureScrollOffset(r);Array.from(this.scrollDispatcher.scrollContainers.keys()).filter(a=>a&&a!==e).forEach(a=>{if(a.measureScrollOffset(r)!==s){const o={};o[r]=s,a.scrollTo(o)}})}}return t.\u0275fac=function(e){return new(e||t)(R(Pp))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),qc=(()=>{class t{constructor(e,i,r,s,a,o,l){this.api=e,this.systemService=i,this.tldScrollService=r,this.configService=s,this.translate=a,this.highlightService=o,this.alertsService=l,this._sourceChange=new pe,this._sourceScroll=new pe,this._translateButtonClick=new pe,this._onClear=new pe,this.paragraphs=[],this.sourceParagraphs=[],this.targetParagraphs=[],this.paragraphTranslationsSubject=new pe,this.debouncer=new pe,this.CONCURRENT_UPLOADS=5,this.DEBOUNCE_TIME=1e3,this._shouldShowProgressIndicator=!1,this._untranslatedParagraphCount=0}get sourceText(){return this._sourceText}get sourceTextHypothesis(){return this._sourceTextHypothesis}get sourceChange(){return this._sourceChange.asObservable()}get sourceScroll(){return this._sourceScroll.asObservable()}get translateButtonClick(){return this._translateButtonClick.asObservable()}get hasDictionary(){return this._hasDictionary}set hasDictionary(e){this._hasDictionary=e,e||(this._dictionaryEntry=null)}get dictionaryEntry(){return this._dictionaryEntry}set dictionaryEntry(e){this._dictionaryEntry=e,this.dictionaryEntry&&(this.hasDictionary=!0)}get translatedText(){return this.targetParagraphs.map(e=>e.originalText).join("\n")}get firstParagraphTranslated(){return this._firstParagraphTranslated}get shouldShowProgressIndicator(){return this._shouldShowProgressIndicator}get untranslatedParagraphCount(){return this._untranslatedParagraphCount}set untranslatedParagraphCount(e){this._untranslatedParagraphCount=e,0===e&&(this.toggleTextToSpeech(),this.hideProgressIndicator())}get isTranslating(){return this.untranslatedParagraphCount>0}get allowWebsiteTranslation(){return this.configService.textConfig.allowWebsiteTranslation}get autoRedirectToWebTranslate(){return this.configService.textConfig.autoRedirectToWebTranslate}get webWidgetRedirectUrlPrefix(){return this.configService.textConfig.webWidgetRedirectUrlPrefix}get webWidgetRedirectUrlPosfix(){return this.configService.textConfig.webWidgetRedirectUrlPosfix}get useDictionary(){return this.configService.textConfig.useDictionary}get progressIndicatorTimeoutMiliSeconds(){return this.configService.textConfig.progressIndicatorTimeoutMiliSeconds}get activeData(){return this.systemService.getActiveSystemObj()}get translateUrlRedirect(){return""===this.webWidgetRedirectUrlPrefix?`${this.webWidgetRedirectUrlPrefix}${this.webWidgetRedirectUrlPosfix}${encodeURIComponent(this.urlToTranslate)}`:`${this.webWidgetRedirectUrlPrefix}${this.translate.currentLang}${this.webWidgetRedirectUrlPosfix}${this.urlToTranslate}`}dictionaryTranslation(e,i,r){return this.api.dictionaryTranslation(e,i,r)}changeSource(e){this._sourceText=e.phrase,this._sourceChange.next(e),this.debouncer.next(e)}changeSourceHypothesis(e){this._sourceTextHypothesis=e}onSourceScroll(e){this._sourceScroll.next(e)}onTranslateButtonClick(){this._translateButtonClick.next(null),this.retranslate({buttonClicked:!0})}clearSource(){this._onClear.next(null),this.changeSource({phrase:""})}onClear(){return this._onClear.asObservable()}updateTranslation(e,i,r,s){return this.api.updateTranslation(e,i,r,s)}listenOnChanges(){this.debouncerSubscription||(this.debouncerSubscription=this.debouncer.pipe(Up(e=>e.phrase==this.sourceText),function uJ(t){return ln((n,e)=>{let i=!1,r=null,s=null;const a=()=>{if(s?.unsubscribe(),s=null,i){i=!1;const o=r;r=null,e.next(o)}};n.subscribe(Zt(e,o=>{s?.unsubscribe(),i=!0,r=o,s=Zt(e,a,Xe),Hn(t(o)).subscribe(s)},()=>{a(),e.complete()},void 0,()=>{r=s=null}))})}(e=>yd(e.phrase?.length>0?this.DEBOUNCE_TIME:0))).subscribe(e=>{this.highlightService.changeSelectedTargetSentence(null),e.disableAutomaticTranslation||this.retranslate()}))}stopListeningToChanges(){!this.debouncerSubscription||(this.debouncerSubscription.unsubscribe(),this.debouncerSubscription=null)}retranslate(e){if(!this.sourceText||""==this.sourceText)return void this.clearSourceParams();(e?.buttonClicked||e?.systemChanged)&&this.clearSourceParams();const s=Ht.getWordCount(this.sourceText);if(this.urlToTranslate=Ht.isTextUrl(this.sourceText),this.allowWebsiteTranslation&&this.urlToTranslate)return this.paragraphs=[],this.sourceParagraphs=[],this.targetParagraphs=[],void((this.autoRedirectToWebTranslate||e?.buttonClicked)&&window.open(this.translateUrlRedirect,"_blank"));this.urlToTranslate=null,this.useDictionary&&this.sourceText.length<200&&s<=12?this.prepareAndTranslateWords():this.translateText(this.sourceText)}stopTranslation(){this.untranslatedParagraphCount=0,this.paragraphTranslationSubscription&&this.paragraphTranslationSubscription.unsubscribe(),this.dictionarySubscription&&this.dictionarySubscription.unsubscribe()}recreateParagraphTranslationSubject(){this._firstParagraphTranslated=!1,this.paragraphTranslationsSubject=new pe;const e=this.sourceText;this.untranslatedParagraphCount=0,this.paragraphTranslationSubscription=this.paragraphTranslationsSubject.asObservable().pipe(xn(i=>(this.untranslatedParagraphCount+=1,this.translateParagraph(i).pipe(Mn(r=>{e==this.sourceText&&(this.handleTranslatedParagraph(r),this.updateParagraphs(i.ix,r),this.untranslatedParagraphCount-=1)}),br(r=>{throw this.untranslatedParagraphCount-=1,500===r.status&&this.alertsService.unhandeledError({ErrorCode:ro.TRANSLATION_FAILED}),this.alertsService.unhandeledError(r),this.stopTranslation(),this.alertsService.unhandeledError(r),r}))),this.CONCURRENT_UPLOADS)).subscribe()}translateParagraph(e){const i={paragraphIx:e.ix,text:e.line,system:this.activeData};return i.text&&0!==i.text.length?this.api.translateParagraph(i):ye({sourceTree:{text:"",paragraphIx:i.paragraphIx,type:On.PARAGRAPH,root:null,originalText:""},targetTree:{text:"",paragraphIx:i.paragraphIx,type:On.PARAGRAPH,root:null,originalText:""}})}handleTranslatedParagraph(e){e.systemId&&this.activeData.id!==e.systemId&&this.activeData.id===`${this.activeData.sourceLanguage}-${this.activeData.targetLanguage}`&&this.systemService.changeSystem(e.systemId),this._firstParagraphTranslated||e.targetTree.text.trim().length>0&&(this._firstParagraphTranslated=!0,this.tldScrollService.syncScrollbars(null,0))}updateParagraphs(e,i){this.paragraphs.splice(e,1,{ix:e,target:i.targetTree,source:i.sourceTree}),this.sourceParagraphs.splice(e,1,i.sourceTree),this.targetParagraphs.splice(e,1,i.targetTree),this.paragraphs.sort((s,a)=>s.ix>a.ix?1:-1)}clearSourceParams(){this._dictionaryEntry=null,this._hasDictionary=!1,this.paragraphs=[],this.targetParagraphs=[],this.sourceParagraphs=[],this.urlToTranslate=null,this.textToSpeechTargetSettings=null,this.textToSpeechSourceSettings=null,this.stopTranslation()}prepareAndTranslateWords(){const e=this.activeData;this.dictionarySubscription=this.dictionaryTranslation(this.sourceText.trim(),e.sourceLanguage,e.targetLanguage).subscribe(i=>{if(this.dictionarySubscription=null,!i||!i[0]||!i[0].translations||0==i[0].translations.length)return this.translateText(this.sourceText),void(this.hasDictionary=!1);this.dictionaryEntry=i},()=>{this.translateText(this.sourceText),this.hasDictionary=!1})}translateText(e){const i=Ht.splitInParagraphs(e),r=[],s=[],a=[];this.recreateParagraphTranslationSubject(),i.forEach((o,l)=>{const u=Wg.findExistingParagraph(o,l,this.paragraphs),h=u.existingParagraph;if(u.existingParagraph)u.hasSameIx||(Wg.changeRootAndParagraphIx(h.source,h.source,h.ix),Wg.changeRootAndParagraphIx(h.target,h.target,h.ix)),r.splice(l,0,h),a.splice(l,0,h.target),s.splice(l,0,h.source);else{const p=Wg.createEmptyParagraphInfo(l);r.splice(l,0,p),s.splice(l,0,p.source),a.splice(l,0,p.target),this.paragraphTranslationsSubject.next({ix:l,line:o})}}),this.isTranslating&&this.setProgressIndicatorTimeout(),this.paragraphs=r,this.targetParagraphs=a,this.sourceParagraphs=s}setProgressIndicatorTimeout(){null==this.progressIndicatorTimeoutMiliSeconds||this.configService.textConfig.progressIndicatorVisible&&(this.progressIndicatorTimeout=setTimeout(()=>{this.showProgressIndicator()},this.progressIndicatorTimeoutMiliSeconds))}showProgressIndicator(){this._shouldShowProgressIndicator=!0}hideProgressIndicator(){this.progressIndicatorTimeout&&clearTimeout(this.progressIndicatorTimeout),this._shouldShowProgressIndicator=!1}toggleTextToSpeech(){if(!this.targetParagraphs.length)return;const e=this.activeData;this.textToSpeechTargetSettings=this.findTextToSpeechSettings(e.targetLanguage,this.translatedText),this.textToSpeechSourceSettings=this.findTextToSpeechSettings(e.sourceLanguage,this.sourceText)}findTextToSpeechSettings(e,i){const r=this.configService.textToSpeechConfig.languages[e];return r?{text:i,url:r.url,voice:r.voice,langBpc47:r.langBpc47,maxCharsInText:this.configService.textToSpeechConfig.maxCharsInText}:null}}return t.\u0275fac=function(e){return new(e||t)(R(QR),R(Xi),R(oL),R(Gt),R(gi),R(Bb),R(Ps))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),lL=(()=>{class t{constructor(){this.defaultBlobType="audio/wav",this.chunks=[],this.recorderEnded=new Ae,this._onRecordingStatusChange=new pe,this._onRecordStart=new pe,this._onError=new pe,this.appendToChunks=e=>{this.chunks.push(e.data),this.currentFileSizeBytes+=e.data.size,"inactive"!==this.recorder.state&&this.maxFileSizeBytes&&this.maxFileSizeBytes<this.currentFileSizeBytes&&this.throwError(Mi.MAX_SIZE_EXCEEDED)},this.recordingStopped=()=>{const e=new Blob(this.chunks,{type:this.blobType??this.defaultBlobType});this.blobType=null,this.chunks=[],this.recorderEnded.emit(e),this.clear()}}get recordTimeDate(){return this._recordTimeDate}get onRecordingStatusChange(){return this._onRecordingStatusChange.asObservable()}get onRecordStart(){return this._onRecordStart.asObservable()}get onError(){return this._onError.asObservable()}get isRecording(){return this._isRecording}static guc(){return navigator.mediaDevices.getUserMedia({audio:!0})}getUserContent(){return t.guc()}startRecording(e,i,r){this.currentFileSizeBytes=0,this.maxFileSizeBytes=i,this._recordTimeDate=new Date(0,0,0,0,0,0),this.blobType=r,this._isRecording&&this.throwError(Mi.ALREADY_RECORDING),t.guc().then(s=>{this._onRecordStart.next(null),this.recordTimeSeconds=0,this.recorder=new MediaRecorder(s),this.addListeners(),this.recorder.start(e),this.timerRef=setInterval(()=>{this.recordTimeSeconds++,this._recordTimeDate=new Date(0,0,0,0,0,this.recordTimeSeconds)},1e3),this.toggleRecordingStatus(!0)}).catch(s=>{this.throwError("NotAllowedError"===s.name?Mi.MIC_NOT_ALLOWED:Mi.CANT_START_RECORDING)})}stopRecording(){return new Promise((e,i)=>{this.recorderEnded.subscribe(r=>{this.toggleRecordingStatus(!1),this.timerRef&&clearInterval(this.timerRef),e(r)},r=>{this.throwError(Mi.RECORDER_TIMEOUT),i(Mi.RECORDER_TIMEOUT)}),this.recorder.stop()}).catch(()=>{this.throwError(Mi.USER_CONSENT_FAILED)})}addListeners(){this.recorder.addEventListener("dataavailable",e=>{this.appendToChunks(e)}),this.recorder.addEventListener("stop",()=>{this.recordingStopped()})}clear(){this.recorder=null,this.chunks=[]}toggleRecordingStatus(e){this._isRecording=e,this._onRecordingStatusChange.next(this._isRecording)}throwError(e){this._onError.next(e)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();var oo=(()=>{return(t=oo||(oo={})).OFFICE="OFFICE",t.SCANNED="SCANNED",t.INTERCHANGE="INTERCHANGE",t.WEB="WEB",t.OTHER="OTHER",oo;var t})(),Pt=(()=>{return(t=Pt||(Pt={})).DOC="doc",t.DOCX="docx",t.XLSX="xlsx",t.PPTX="pptx",t.ODT="odt",t.ODP="odp",t.ODS="ods",t.TXT="txt",t.RTF="rtf",t.PAGES="pages",t.SXW="sxw",t.JPG="jpg",t.JPEG="jpeg",t.PNG="png",t.BMP="bmp",t.PDF="pdf",t.SDLXLIFF="sdlxliff",t.SDLXLF="sdlxlf",t.TTX="ttx",t.TMX="tmx",t.XLF="xlf",t.XLIF="xlif",t.HTML="html",t.HTM="htm",t.JSON="json",t.XHTML="xhtml",t.XHT="xht",t.XLIFF="xliff",t.TEX="tex",t.TTL="ttl",t.SRT="srt",Pt;var t})(),Nt=(()=>{return(t=Nt||(Nt={})).WORD="file_type_word",t.WEB="file_type_web",t.OTHER="file_type_other",t.POWERPOINT="file_type_powerpoint",t.EXCEL="file_type_excel",t.OFFICE_OTHER="file_type_office_other",t.PDF="file_type_pdf",t.SCANNED="file_type_scanned",t.INTERCHANGE="file_type_interchange",Nt;var t})();function dJ(t,n){if(1&t&&(S(0,"li",13),le(1,"mat-icon",14),S(2,"span"),V(3),D()()),2&t){const e=I().$implicit;b(1),Io("svgIcon",e.icon),Me("aria-label",e.extension),b(2),re(e.extension)}}function hJ(t,n){if(1&t&&(je(0),O(1,dJ,4,3,"li",12),ze()),2&t){const e=n.$implicit;b(1),E("ngIf",e.visible)}}function fJ(t,n){if(1&t&&(S(0,"ul"),O(1,hJ,2,1,"ng-container",11),D()),2&t){const e=I().$implicit;b(1),E("ngForOf",e.extensions)}}function pJ(t,n){if(1&t&&(S(0,"div",10),O(1,fJ,2,1,"ul",6),D()),2&t){const e=n.$implicit;b(1),E("ngIf",e.anyVisible)}}function gJ(t,n){if(1&t&&(je(0),S(1,"h2",7),V(2),F(3,"translate"),D(),S(4,"div",8),O(5,pJ,2,1,"div",9),D(),ze()),2&t){const e=I().$implicit;b(2),Ve(" ",j(3,2,"EXTENSION_POPUP."+e.category)," "),b(3),E("ngForOf",e.columns)}}function mJ(t,n){if(1&t&&(S(0,"div",5),O(1,gJ,6,4,"ng-container",6),D()),2&t){const e=n.$implicit;b(1),E("ngIf",e.anyVisible)}}let _J=(()=>{class t{constructor(e){this.data=e,this.config={elements:[{category:oo.OFFICE,columns:[{extensions:[{extension:Pt.DOC,icon:Nt.WORD},{extension:Pt.DOCX,icon:Nt.WORD},{extension:Pt.XLSX,icon:Nt.EXCEL},{extension:Pt.PPTX,icon:Nt.POWERPOINT},{extension:Pt.PDF,icon:Nt.PDF}]},{extensions:[{extension:Pt.ODT,icon:Nt.OFFICE_OTHER},{extension:Pt.ODP,icon:Nt.OFFICE_OTHER},{extension:Pt.ODS,icon:Nt.OFFICE_OTHER},{extension:Pt.TXT,icon:Nt.OFFICE_OTHER},{extension:Pt.RTF,icon:Nt.OFFICE_OTHER},{extension:Pt.PAGES,icon:Nt.OFFICE_OTHER},{extension:Pt.SXW,icon:Nt.OFFICE_OTHER}]}]},{category:oo.SCANNED,columns:[{extensions:[{extension:Pt.JPG,icon:Nt.SCANNED},{extension:Pt.JPEG,icon:Nt.SCANNED},{extension:Pt.PNG,icon:Nt.SCANNED},{extension:Pt.BMP,icon:Nt.SCANNED},{extension:Pt.BMP,icon:Nt.SCANNED},{extension:Pt.PDF,icon:Nt.PDF}]}]},{category:oo.INTERCHANGE,columns:[{extensions:[{extension:Pt.SDLXLIFF,icon:Nt.INTERCHANGE},{extension:Pt.SDLXLF,icon:Nt.INTERCHANGE},{extension:Pt.TTX,icon:Nt.INTERCHANGE},{extension:Pt.TMX,icon:Nt.INTERCHANGE},{extension:Pt.XLF,icon:Nt.INTERCHANGE},{extension:Pt.XLIF,icon:Nt.INTERCHANGE},{extension:Pt.XLIFF,icon:Nt.INTERCHANGE}]}]},{category:oo.WEB,columns:[{extensions:[{extension:Pt.HTML,icon:Nt.WEB},{extension:Pt.HTM,icon:Nt.WEB},{extension:Pt.JSON,icon:Nt.WEB},{extension:Pt.XHTML,icon:Nt.WEB},{extension:Pt.XHT,icon:Nt.WEB}]}]},{category:oo.OTHER,columns:[{extensions:[{extension:Pt.TEX,icon:Nt.OTHER},{extension:Pt.TTL,icon:Nt.OTHER},{extension:Pt.SRT,icon:Nt.OTHER}]}]}]},this.undescribedExtensions=[]}ngOnInit(){this.updateConfig()}updateConfig(){let e=[...this.data.extensions];this.config.elements.forEach(i=>{i.columns.forEach(r=>{r.extensions.forEach(s=>{const a=e.indexOf(s.extension);a>=0&&(e.splice(a,1),s.visible=!0,i.anyVisible=!0,r.anyVisible=!0)})})}),this.undescribedExtensions=e}}return t.\u0275fac=function(e){return new(e||t)(_(Rg))},t.\u0275cmp=ce({type:t,selectors:[["app-extension-dialog"]],decls:11,vars:8,consts:[["mat-dialog-content",""],["mat-dialog-close",""],[1,"description"],["fxLayout","row","fxLayout.lt-md","column",3,"ngClass.lt-md"],["class","category",4,"ngFor","ngForOf"],[1,"category"],[4,"ngIf"],[1,"category-title"],["fxLayout","row"],["class","extension-column",4,"ngFor","ngForOf"],[1,"extension-column"],[4,"ngFor","ngForOf"],["fxLayoutAlign","start center",4,"ngIf"],["fxLayoutAlign","start center"],["aria-hidden","false",3,"svgIcon"]],template:function(e,i){1&e&&(S(0,"div",0),le(1,"tld-close-button",1),S(2,"header")(3,"h1"),V(4),F(5,"translate"),D(),S(6,"p",2),V(7),F(8,"translate"),D()(),S(9,"div",3),O(10,mJ,2,1,"div",4),D()()),2&e&&(b(4),re(j(5,4,"EXTENSION_POPUP.TITLE")),b(3),re(j(8,6,"EXTENSION_POPUP.DESCRIPTION")),b(2),E("ngClass.lt-md","small-screen"),b(1),E("ngForOf",i.config.elements))},dependencies:[Gi,xt,Yd,qd,Dn,Xn,Ii,Gd,to,Lt],styles:["[mat-dialog-content][_ngcontent-%COMP%]{position:relative}[mat-dialog-content][_ngcontent-%COMP%] tld-close-button[_ngcontent-%COMP%]{position:absolute;right:1em;top:0}[mat-dialog-content][_ngcontent-%COMP%] header[_ngcontent-%COMP%]{margin-bottom:1.5em;text-align:center}[mat-dialog-content][_ngcontent-%COMP%] header[_ngcontent-%COMP%] h1[_ngcontent-%COMP%]{font-size:20px;font-weight:500;margin:0 0 .5em}[mat-dialog-content][_ngcontent-%COMP%] header[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin:0}[mat-dialog-content][_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{list-style-type:none;margin:0;padding:0}[mat-dialog-content][_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] + li[_ngcontent-%COMP%]{margin-top:.5em}[mat-dialog-content][_ngcontent-%COMP%] .category-title[_ngcontent-%COMP%]{border-bottom:1px solid var(--base-70);font-size:.875em;font-weight:500;text-align:center;padding-bottom:.5em;line-height:1.25em}[mat-dialog-content][_ngcontent-%COMP%] .extension-column[_ngcontent-%COMP%]{font-size:.875em;line-height:1.25em}[mat-dialog-content][_ngcontent-%COMP%] .extension-column[_ngcontent-%COMP%] + .extension-column[_ngcontent-%COMP%]{margin-left:1em}[mat-dialog-content][_ngcontent-%COMP%] [_ngcontent-%COMP%]:not(.small-screen) .category[_ngcontent-%COMP%] + .category[_ngcontent-%COMP%]{margin-left:3em}[mat-dialog-content][_ngcontent-%COMP%] mat-icon[_ngcontent-%COMP%]{width:20px;height:20px}[mat-dialog-content][_ngcontent-%COMP%] .description[_ngcontent-%COMP%]{font-size:.875em}"]}),t})(),yJ=(()=>{class t{constructor(e){this.dialog=e}open(e){this.dialog.open(_J,{data:{extensions:e}})}}return t.\u0275fac=function(e){return new(e||t)(R(Aa))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),AJ=(()=>{class t{constructor(e){this.service=e,this.extensions=[]}ngOnInit(){}open(){this.service.open(this.extensions)}}return t.\u0275fac=function(e){return new(e||t)(_(yJ))},t.\u0275cmp=ce({type:t,selectors:[["tld-open-extension-dialog"]],inputs:{extensions:"extensions"},decls:3,vars:3,consts:[[1,"open-extension-popup","btn-as-link",3,"click"]],template:function(e,i){1&e&&(S(0,"button",0),ee("click",function(){return i.open()}),V(1),F(2,"translate"),D()),2&e&&(b(1),Ve(" ",j(2,1,"EXTENSION_POPUP.OPEN"),"\n"))},dependencies:[Lt],styles:["button.open-extension-popup[_ngcontent-%COMP%]{font-size:.875em}"]}),t})();function vJ(t,n){if(1&t){const e=Fe();S(0,"div")(1,"button",9),ee("click",function(){const s=me(e).$implicit,a=I(4).tree;return _e(I().replace(a,s))}),V(2),D()()}if(2&t){const e=n.$implicit;b(2),Ve(" ",e," ")}}function bJ(t,n){if(1&t){const e=Fe();je(0),S(1,"mat-menu",3,4)(3,"div",5),V(4),F(5,"translate"),D(),O(6,vJ,3,1,"div",6),D(),S(7,"span",7,8),ee("mouseenter",function(r){return me(e),_e(I(4).mouseEnter(r))})("click",function(){me(e);const r=vt(8),s=I(3).tree;return _e(I().gramCheckMenu(s,r))})("mouseleave",function(r){return me(e),_e(I(4).mouseLeave(r))}),D(),ze()}if(2&t){const e=vt(2),i=I(3).tree;b(4),Ve(" ",j(5,7,"GRAMMAR_CHECK_MENU.TITLE")," "),b(2),E("ngForOf",i.grammarMeta.replacements),b(1),uf(i.class),E("matMenuTriggerFor",e)("innerHTML",i.text,dn)}}function CJ(t,n){if(1&t){const e=Fe();je(0),S(1,"span",10),ee("mouseenter",function(r){return me(e),_e(I(4).mouseEnter(r))})("mouseleave",function(r){return me(e),_e(I(4).mouseLeave(r))}),D(),ze()}if(2&t){const e=I(3).tree;b(1),uf(e.class),E("innerHTML",e.text,dn)}}function TJ(t,n){if(1&t&&(je(0),O(1,bJ,9,9,"ng-container",2),O(2,CJ,2,4,"ng-container",2),ze()),2&t){const e=I(2).tree,i=I();b(1),E("ngIf",e.grammarMeta&&i.gramCheck),b(1),E("ngIf",!(e.grammarMeta&&i.gramCheck))}}function EJ(t,n){1&t&&(je(0),le(1,"br"),ze())}function SJ(t,n){if(1&t&&(je(0),O(1,TJ,3,2,"ng-container",2),O(2,EJ,2,0,"ng-container",2),ze()),2&t){const e=I().tree;b(1),E("ngIf",e.text),b(1),E("ngIf",!e.text)}}function DJ(t,n){}const cL=function(t){return{tree:t}};function wJ(t,n){if(1&t&&O(0,DJ,0,0,"ng-template",13),2&t){const e=n.$implicit;I(3),E("ngTemplateOutlet",vt(1))("ngTemplateOutletContext",fn(2,cL,e))}}const xJ=function(t){return{"selected-sentence":t}};function kJ(t,n){if(1&t){const e=Fe();je(0),S(1,"span",11),ee("mouseenter",function(r){return me(e),_e(I(2).mouseEnter(r))})("mouseleave",function(r){return me(e),_e(I(2).mouseLeave(r))})("click",function(){me(e);const r=I().tree;return _e(I().parentClick(r))}),O(2,wJ,1,4,"ng-template",12),D(),ze()}if(2&t){const e=I().tree,i=I();b(1),hf("highlight-tree-child-wrapper ",e.class,""),E("ngClass",fn(5,xJ,i.isSelectedSentence(e))),b(1),E("ngForOf",e.children)}}function IJ(t,n){if(1&t&&(O(0,SJ,3,2,"ng-container",2),O(1,kJ,3,7,"ng-container",2)),2&t){const e=n.tree;E("ngIf",!e.children),b(1),E("ngIf",e.children)}}function MJ(t,n){}function RJ(t,n){if(1&t&&(S(0,"div",14),O(1,MJ,0,0,"ng-template",13),D()),2&t){const e=I(),i=vt(1);b(1),E("ngTemplateOutlet",i)("ngTemplateOutletContext",fn(2,cL,e.tree))}}let uL=(()=>{class t{constructor(e){this.highlightService=e,this.correctionsEnabled=!0,this.onReplace=new Ae}mouseEnter(e){this.onMouseEvent(e,this.isSource,!0)}mouseLeave(e){this.onMouseEvent(e,this.isSource,!1)}gramCheckMenu(e,i){e.grammarMeta&&this.gramCheck&&i.openMenu()}replace(e,i){this.onReplace.next({endIx:e.grammarMeta.endIx,paragraphIx:e.paragraphIx??e.root?.paragraphIx,replacement:i,startIx:e.grammarMeta.startIx})}parentClick(e){this.selectSentence&&e.type===On.SENTENCE&&this.highlightService.changeSelectedTargetSentence({paragraphIx:e.paragraphIx??e.root?.paragraphIx,sentenceIx:Number(e.elementId)})}isSelectedSentence(e){return this.selectSentence&&e.type===On.SENTENCE&&this.highlightService.selectedTargetSentence?.paragraphIx===(e.paragraphIx??e.root?.paragraphIx)&&this.highlightService.selectedTargetSentence.sentenceIx.toString()===e.elementId}onMouseEvent(e,i,r){const s=e.target;let a=[s];if(this.highlight){let o;o=i?jn.targetHighlightClass:jn.sourceHighlightClass,s.classList.forEach(l=>{if(l.includes(jn.siblingClass)){const u=`.${o} .${l.replace(jn.siblingClass,jn.wordClass)}`;a=a.concat(Array.from(document.querySelectorAll(u)))}})}a.forEach(o=>{let l=this.findWordParentSentence(o);r?(o.classList.add(jn.hoveredClassName),l?.classList.add(jn.hoveredClassName)):(o.classList.remove(jn.hoveredClassName),l?.classList.remove(jn.hoveredClassName))})}findWordParentSentence(e){let r=e.parentElement;for(let s=0;s<2;s++){if(r.classList.contains(jn.sentenceClass))return r;r=r.parentElement}return null}}return t.\u0275fac=function(e){return new(e||t)(_(Bb))},t.\u0275cmp=ce({type:t,selectors:[["tld-highlight-tree"]],inputs:{tree:"tree",isSource:"isSource",correctionsEnabled:"correctionsEnabled",highlight:"highlight",gramCheck:"gramCheck",selectSentence:"selectSentence"},outputs:{onReplace:"onReplace"},decls:3,vars:1,consts:[["highlightTree",""],["class","tld-highlight-tree",4,"ngIf"],[4,"ngIf"],[1,"grammar-check-menu"],["menu","matMenu"],[1,"title"],[4,"ngFor","ngForOf"],[3,"matMenuTriggerFor","innerHTML","mouseenter","click","mouseleave"],["menuTrigger","matMenuTrigger"],["mat-button","","color","accent",3,"click"],[3,"innerHTML","mouseenter","mouseleave"],[3,"ngClass","mouseenter","mouseleave","click"],["ngFor","",3,"ngForOf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[1,"tld-highlight-tree"]],template:function(e,i){1&e&&(O(0,IJ,2,2,"ng-template",null,0,pi),O(2,RJ,2,4,"div",1)),2&e&&(b(2),E("ngIf",i.tree))},dependencies:[oa,Gi,xt,Vo,En,so,Qd,Ii,Lt],styles:["span[_ngcontent-%COMP%]{white-space:pre-wrap}"]}),t})();const OJ=["sourceInput"],LJ=["treeWrapper"];function PJ(t,n){if(1&t){const e=Fe();S(0,"div")(1,"tld-highlight-tree",8),ee("onReplace",function(r){return me(e),_e(I(2).replace(r))}),D()()}if(2&t){const e=n.$implicit,i=I(2);b(1),E("isSource",!0)("tree",e)("highlight",i.highlight)("gramCheck",i.gramCheck)}}function NJ(t,n){if(1&t&&(S(0,"div",4,5)(2,"div",6),O(3,PJ,2,4,"div",7),D()()),2&t){const e=I();uf(e.wrapperClass),b(3),E("ngForOf",e.highlightTree)}}let FJ=(()=>{class t{constructor(e,i){this.alerts=e,this.textService=i,this.hoveredBackgroundElements=[],this.clearButtonAriaCode="CLEAR_SOURCE",this.wrapperClass=jn.sourceHighlightClass,this.dispatchEvent=(r,s)=>{if(!s)return;let a=new MouseEvent(r,{view:window,bubbles:!0,cancelable:!0});s.dispatchEvent(a)}}get suggestedText(){return this._suggestedText}get sourceText(){return this._sourceText}set sourceText(e){this._sourceText=e,this.treeWrapper&&(this.treeWrapper.nativeElement.style.height=this.sourceInput.nativeElement.scrollHeight),this.textService.changeSource({phrase:e})}ngOnInit(){this._sourceText=this.textService.sourceText,this.textService.sourceChange.subscribe(e=>{this._sourceText=e.phrase,(!this.sourceText||0===this.sourceText.length)&&setTimeout(()=>{this.sourceInput.nativeElement.focus()},0)})}ngAfterViewInit(){this.autoFocuss&&this.focus()}onTextAreaMouseMove(e){const s=this.findBackgroundElements(e.clientX,e.clientY);this.hoveredBackgroundElements.forEach(a=>{s.includes(a)||this.dispatchEvent("mouseleave",a)}),s.forEach(a=>{this.dispatchEvent("mouseenter",a)}),this.hoveredBackgroundElements=s}onPaste(e){if(this.maxCharLength>0){const i=(this.sourceText||"").length+e.clipboardData.getData("text").length;i>this.maxCharLength&&this.alerts.warning("ERRORS.MAX_CHAR_LENGTH",{maxCharLength:this.maxCharLength,totalSymbols:i})}}textareaClick(e){this.findBackgroundElements(e.clientX,e.clientY).forEach(a=>{this.dispatchEvent("click",a)})}replace(e){const i=Ht.splitInParagraphs(this.sourceText),r=i[e.paragraphIx];i[e.paragraphIx]=`${r.substring(0,e.startIx)}${e.replacement}${r.substring(e.endIx)}`,this.changeSourceManually({phrase:Ht.joinParagraphs(i)})}changeSourceManually(e){this._sourceText=e.phrase,(!this.sourceText||""===this.sourceText)&&(e.disableAutomaticTranslation=!1),this.textService.changeSource(e)}findBackgroundElements(e,i){const r=document.querySelectorAll(`.${this.wrapperClass} .${jn.sentenceClass}, .${this.wrapperClass} .${jn.wordClass}, .${this.wrapperClass} .${jn.invalidPhraseClass}`);return this.findElementsAtPosition(Array.from(r),e,i)}focus(){this.sourceInput?.nativeElement?.focus()}findElementsAtPosition(e,i,r){const s=[];return e.forEach(a=>{const o=a.getClientRects();for(let l=0;l<o.length;l++){let u=o[l];i>=u.left&&r>=u.top&&i<=u.right&&r<=u.bottom&&s.push(a)}}),s}}return t.\u0275fac=function(e){return new(e||t)(_(Ps),_(qc))},t.\u0275cmp=ce({type:t,selectors:[["tld-textarea-with-background"]],viewQuery:function(e,i){if(1&e&&(it(OJ,5),it(LJ,5)),2&e){let r;xe(r=ke())&&(i.sourceInput=r.first),xe(r=ke())&&(i.treeWrapper=r.first)}},inputs:{maxCharLength:"maxCharLength",autoFocuss:"autoFocuss",highlightTree:"highlightTree",highlight:"highlight",gramCheck:"gramCheck",textareaDisabled:"textareaDisabled"},decls:5,vars:7,consts:[[1,"textarea-with-background"],["cdkScrollable","","matInput","","fxFlex","","spellcheck","false",3,"disabled","ngModel","paste","ngModelChange","mousemove","click"],["sourceInput",""],["cdkScrollable","",3,"class",4,"ngIf"],["cdkScrollable",""],["treeWrapper",""],["cdkScrollable","",1,"textarea-highlight-backround-inner"],[4,"ngFor","ngForOf"],[3,"isSource","tree","highlight","gramCheck","onReplace"]],template:function(e,i){1&e&&(S(0,"div",0)(1,"textarea",1,2),ee("paste",function(s){return i.onPaste(s)})("ngModelChange",function(s){return i.sourceText=s})("mousemove",function(s){return i.onTextAreaMouseMove(s)})("click",function(s){return i.textareaClick(s)}),F(3,"translate"),D(),O(4,NJ,4,4,"div",3),D()),2&e&&(b(1),E("disabled",i.textareaDisabled)("ngModel",i.sourceText),Me("maxLength",i.maxCharLength?i.maxCharLength:null)("aria-label",j(3,5,"TLD_TRANSLATE.SOURCE_TOOLTIP")),b(3),E("ngIf",i.gramCheck||i.highlight))},dependencies:[Gi,xt,wg,lI,qi,Ko,mc,yc,uL,Lt],styles:[".textarea-with-background[_ngcontent-%COMP%]{position:relative}.textarea-with-background[_ngcontent-%COMP%] .textarea-highlight-background[_ngcontent-%COMP%]{position:absolute;color:transparent}.textarea-with-background[_ngcontent-%COMP%] textarea[_ngcontent-%COMP%]{resize:none!important;z-index:1;caret-color:#000!important}.textarea-with-background[_ngcontent-%COMP%] textarea[_ngcontent-%COMP%], .textarea-with-background[_ngcontent-%COMP%] .textarea-highlight-backround-inner[_ngcontent-%COMP%]{padding:1em!important}.textarea-with-background[_ngcontent-%COMP%] .textarea-highlight-backround-inner[_ngcontent-%COMP%]{max-width:calc(100% - 2em);width:calc(100% - 2em);min-width:calc(100% - 2em);min-height:calc(100% - 2em);max-height:calc(100% - 2em);height:calc(100% - 2em);overflow-y:auto}.textarea-with-background[_ngcontent-%COMP%], .textarea-highlight-background[_ngcontent-%COMP%]{width:100%;max-width:100%;min-width:100%;min-height:100%;max-height:100%;height:100%}"]}),t})();function BJ(t,n){if(1&t&&le(0,"tld-textarea-with-background",5),2&t){const e=I();E("textareaDisabled",e.textareaDisabled)("highlight",e.highlight)("autoFocuss",e.autoFocuss)("highlightTree",e.sourceParagraphs)("gramCheck",e.gramCheck)("maxCharLength",e.maxCharLength)}}function VJ(t,n){if(1&t&&(S(0,"div",6)(1,"span",7),V(2),D(),S(3,"span",8),V(4),D()()),2&t){const e=I();b(2),Ve(" ",e.sourceText," "),b(2),Ve(" ",e.sourceTextHypothesis," ")}}const dL=function(t){return{appName:t}};function UJ(t,n){if(1&t&&(je(0),le(1,"br",14),S(2,"p"),V(3),F(4,"translate"),D(),ze()),2&t){const e=I(2);b(3),re(bn(4,1,"TLD_TRANSLATE.SOURCE_TOOLTIP_SENSITIVE_INFO",fn(4,dL,e.appName)))}}const hL=function(t,n,e){return{formats:t,limit:n,appName:e}};function jJ(t,n){if(1&t&&(S(0,"span"),V(1),F(2,"translate"),D()),2&t){const e=I(4);b(1),re(bn(2,1,"TLD_TRANSLATE.SOURCE_WORD_LIMIT",Lo(4,hL,e.acceptedTypesString,e.wordLimit,e.appName)))}}const fL=function(t,n,e,i){return{formats:t,limit:n,registerLink:e,appName:i}};function zJ(t,n){if(1&t&&(le(0,"p",18),F(1,"translate")),2&t){const e=I(5);E("innerHtml",bn(1,1,"TLD_TRANSLATE.REGISTERED_FORMATS",yy(4,fL,e.extendedFileTypesString,e.wordLimit,e.registerLink,e.appName)),dn)}}function HJ(t,n){if(1&t&&(je(0),le(1,"br",14),O(2,zJ,2,9,"p",16),ze()),2&t){const e=I(4);b(2),E("ngIf",!e.isAuth)}}function GJ(t,n){if(1&t&&(je(0),S(1,"p",17)(2,"span"),V(3),F(4,"translate"),D(),O(5,jJ,3,8,"span",12),D(),O(6,HJ,3,1,"ng-container",12),ze()),2&t){const e=I(3);b(3),re(bn(4,3,"TLD_TRANSLATE.SOURCE_FORMATS",Lo(6,hL,e.acceptedTypesString,e.wordLimit,e.appName))),b(2),E("ngIf",!e.showExtensionsUnauthOnly),b(1),E("ngIf",!e.showExtensionsUnauthOnly)}}function WJ(t,n){if(1&t&&(le(0,"p",18),F(1,"translate")),2&t){const e=I(3);E("innerHtml",bn(1,1,"TLD_TRANSLATE.REGISTERED_FORMATS_LOGGED_IN",yy(4,fL,e.extendedFileTypesString,e.wordLimit,e.registerLink,e.appName)),dn)}}function KJ(t,n){if(1&t&&(S(0,"div",15),O(1,GJ,7,10,"ng-container",12),O(2,WJ,2,9,"p",16),D()),2&t){const e=I(2);b(1),E("ngIf",!e.isAuth),b(1),E("ngIf",e.isAuth)}}function YJ(t,n){if(1&t&&(S(0,"div",9)(1,"div",10),le(2,"p",11),F(3,"translate"),O(4,UJ,5,6,"ng-container",12),D(),O(5,KJ,3,2,"div",13),D()),2&t){const e=I();b(2),E("innerHtml",bn(3,3,e.webTranslation?"TLD_TRANSLATE.SOURCE_TOOLTIP":"TLD_TRANSLATE.SOURCE_TOOLTIP_ONLY_TEXT",fn(6,dL,e.appName)),dn),b(2),E("ngIf",e.showSensitiveInfoTooltip),b(1),E("ngIf",e.showExtensions)}}let qJ=(()=>{class t{constructor(e,i){this.config=e,this.textService=i,this.sourceChangedManually=!1}get isAuth(){return this.config.coreConfig.isAuth}get sourceText(){return this.textService?.sourceText}get sourceTextHypothesis(){return this.textService?.sourceTextHypothesis}get showPlaceHolder(){return!(this.sourceText&&0!=this.sourceText.length||this.isDictating)}get registerLink(){return this.config.coreConfig.registerLink}get isDictating(){return this.textService.isDictating}get showExtensions(){return this.config.textConfig.showAvailableExtensions}get appName(){return this.config.coreConfig.appName}ngOnInit(){const e=this.config.textConfig,i=this.config.fileConfig;this.autoFocuss=this.config.textConfig.autoFocuss,this.highlight=this.config.textConfig.highlight,this.gramCheck=this.config.textConfig.checkSourceGrammar,this.wordLimit=i.wordLimit,this.allowedFileTypes=i.allowedFileTypes,this.extendedFileTypes=i.extendedFileTypes,this.maxCharLength=e.maxCharLength,this.showExtensionsUnauthOnly=e.showExtensionsUnauthOnly,this.showSensitiveInfoTooltip=e.showSensitiveInfoTooltip,this.webTranslation=e.allowWebsiteTranslation,this.acceptedTypesString=this.allowedFileTypes.join(", ").replace(/\./g,""),this.extendedFileTypesString=this.extendedFileTypes.join(", ").replace(/\./g,"")}}return t.\u0275fac=function(e){return new(e||t)(_(Gt),_(qc))},t.\u0275cmp=ce({type:t,selectors:[["tld-translate-source"]],inputs:{textareaDisabled:"textareaDisabled",sourceParagraphs:"sourceParagraphs"},decls:5,vars:3,consts:[["fxFlex","","fxLayout","column",1,"tld-translate-source-wrapper"],["fxFlex","",1,"source-input-wrapper"],["fxFlex","",3,"textareaDisabled","highlight","autoFocuss","highlightTree","gramCheck","maxCharLength",4,"ngIf"],["class","asr-result-wrapper",4,"ngIf"],["fxLayout","column","fxFlex","","class","description-text tld-trg-placeholder",4,"ngIf"],["fxFlex","",3,"textareaDisabled","highlight","autoFocuss","highlightTree","gramCheck","maxCharLength"],[1,"asr-result-wrapper"],[1,"asr-result"],[1,"asr-hypothesis"],["fxLayout","column","fxFlex","",1,"description-text","tld-trg-placeholder"],["fxFlex",""],[3,"innerHtml"],[4,"ngIf"],["class","extension-container",4,"ngIf"],["fxHide.xs",""],[1,"extension-container"],["class","description-smaller",3,"innerHtml",4,"ngIf"],[1,"description-smaller"],[1,"description-smaller",3,"innerHtml"]],template:function(e,i){1&e&&(S(0,"div",0)(1,"div",1),O(2,BJ,1,6,"tld-textarea-with-background",2),O(3,VJ,5,2,"div",3),D(),O(4,YJ,6,8,"div",4),D()),2&e&&(b(2),E("ngIf",!i.isDictating),b(1),E("ngIf",i.isDictating),b(1),E("ngIf",i.showPlaceHolder))},dependencies:[xt,Dn,qi,Os,FJ,Lt],styles:["textarea[_ngcontent-%COMP%]{resize:none!important;outline:none;border:none;font-size:1em;z-index:1;background-color:transparent;font-family:Inter,sans-serif;padding:0;line-height:1.5;word-break:break-word;padding:1em!important;caret-color:#000!important}.tld-translate-source-wrapper[_ngcontent-%COMP%]{position:relative;cursor:text}.source-input-wrapper[_ngcontent-%COMP%]{position:relative}.tld-trg-placeholder[_ngcontent-%COMP%]{padding:1em 1em 0;position:absolute;height:100%;width:100%;font-size:1em}.tld-trg-placeholder[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin:0}.extension-container[_ngcontent-%COMP%]{z-index:2}.asr-result-wrapper[_ngcontent-%COMP%]{margin:1em}.asr-result-wrapper[_ngcontent-%COMP%] .asr-hypothesis[_ngcontent-%COMP%]{color:gray}"]}),t})();function XJ(t,n){if(1&t){const e=Fe();S(0,"button",11),ee("click",function(){return me(e),_e(I().previous())}),V(1,"\u25c4"),D()}}function QJ(t,n){if(1&t){const e=Fe();S(0,"button",12),ee("click",function(){return me(e),_e(I().next())}),V(1,"\u25ba"),D()}}let ZJ=(()=>{class t{constructor(e,i,r){this.dialogRef=e,this.data=i,this.highlight=r,this.selectedIx=0,this.translations=[],this.hasNext=!1,this.hasPrev=!1,this.closeDialogAreaCode="CLOSE_DIALOG"}ngOnInit(){if(this.sourceLanguage=this.data.sourceLanguage,this.targetLanguage=this.data.targetLanguage,this.data.dictionary)this.translations.push({source:this.data.dictionary.source_word,translation:this.data.dictionary.translations[0].target_word});else if(this.data.source&&this.data.target){const r=Math.min(this.data.source.length,this.data.target.length);for(var e=0;e<r;e++){const s=this.data.source[e],a=this.data.target[e],o=Math.min(s.children?.length??0,a.children?.length??0);for(var i=0;i<o;i++)/\S/.test(s.children[i].originalText)&&(this.translations.push({source:s.children[i].originalText,translation:a.children[i].originalText,paragraphIx:e,sentenceIx:i}),this.highlight.selectedTargetSentence&&this.highlight.selectedTargetSentence.paragraphIx==e&&this.highlight.selectedTargetSentence.sentenceIx==i&&(this.selectedIx=this.translations.length-1))}}this.setSourceAndSuggestion()}next(){this.selectedIx+=1,this.setSourceAndSuggestion()}previous(){this.selectedIx-=1,this.setSourceAndSuggestion()}submit(){this.dialogRef.close({source:this.source,translation:this.suggestion})}setSourceAndSuggestion(){this.translations[this.selectedIx]&&(this.suggestion=this.translations[this.selectedIx].translation,this.source=this.translations[this.selectedIx].source),this.checkIfSiblingsExist();const e=this.translations[this.selectedIx];this.highlight.changeSelectedTargetSentence({paragraphIx:e.paragraphIx,sentenceIx:e.sentenceIx})}checkIfSiblingsExist(){this.hasNext=!!this.translations[this.selectedIx+1],this.hasPrev=!!this.translations[this.selectedIx-1]}}return t.\u0275fac=function(e){return new(e||t)(_(Kd),_(Rg),_(Bb))},t.\u0275cmp=ce({type:t,selectors:[["tld-translate-suggest-dialog"]],decls:24,vars:19,consts:[["mat-dialog-close","",1,"close-button",3,"ariaCode"],["fxLayout","column"],[1,"source-text"],["appearance","outline"],["matInput","","cdkTextareaAutosize","","cdkAutosizeMinRows","5","aria-describedby","tld-suggest-translation-info",1,"translated-text",3,"ngModel","ngModelChange"],["autosize","cdkTextareaAutosize"],["id","tld-suggest-translation-info",1,"usage-info"],["fxLayoutAlign","center center"],["mat-icon-button","","color","accent","aria-label","previous sentence",3,"click",4,"ngIf"],["mat-flat-button","","color","accent",3,"click"],["mat-icon-button","","color","accent","aria-label","next sentence",3,"click",4,"ngIf"],["mat-icon-button","","color","accent","aria-label","previous sentence",3,"click"],["mat-icon-button","","color","accent","aria-label","next sentence",3,"click"]],template:function(e,i){1&e&&(S(0,"mat-dialog-content"),le(1,"tld-close-button",0),S(2,"div",1)(3,"label"),V(4),F(5,"translate"),D(),S(6,"p",2),V(7),D()(),S(8,"div",1)(9,"label"),V(10),F(11,"translate"),D(),S(12,"mat-form-field",3)(13,"textarea",4,5),ee("ngModelChange",function(s){return i.suggestion=s}),D()(),S(15,"div",6),V(16),F(17,"translate"),D()()(),S(18,"mat-dialog-actions",7),O(19,XJ,2,0,"button",8),S(20,"button",9),ee("click",function(){return i.submit()}),V(21),F(22,"translate"),D(),O(23,QJ,2,0,"button",10),D()),2&e&&(Me("source-language",i.sourceLanguage)("target-language",i.targetLanguage),b(1),E("ariaCode",i.closeDialogAreaCode),b(3),re(j(5,11,"TLD_TRANSLATE.SUGGEST_ORIGINAL_LABEL")),b(3),re(i.source),b(3),re(j(11,13,"TLD_TRANSLATE.SUGGEST_TRANSLATION_LABEL")),b(3),E("ngModel",i.suggestion),b(3),re(j(17,15,"TLD_TRANSLATE.SUGGEST_USAGE_INFO")),b(3),E("ngIf",i.hasPrev),b(2),re(j(22,17,"TLD_TRANSLATE.SUGGEST_SUBMIT_BUTTON")),b(2),E("ngIf",i.hasNext))},dependencies:[xt,En,Zq,zb,wg,Yd,qd,Og,Dn,Xn,Ko,mc,yc,to,Lt],styles:["label[_ngcontent-%COMP%]{font-weight:700}textarea[_ngcontent-%COMP%]{caret-color:#000}.usage-info[_ngcontent-%COMP%]{color:#9aa5b1;font-size:.8em}[_nghost-%COMP%] .mat-form-field-wrapper{padding-bottom:0!important}mat-dialog-content[_ngcontent-%COMP%]{position:relative}.close-button[_ngcontent-%COMP%]{position:absolute;right:1em}"]}),t})();const $J=["suggestButton"];let JJ=(()=>{class t{constructor(e,i,r){this.textService=e,this.systemService=i,this.dialog=r,this.options="suggestion,origin=FREE_FOR_ALL"}openDialog(){const e=this.systemService.getActiveSystemObj();this.dialog.open(ZJ,{data:{dictionary:this.dictionary,source:this.source,target:this.target,selectedSentence:this.selectedSentence,sourceLanguage:e.sourceLanguage,targetLanguage:e.targetLanguage},width:"600px"}).afterClosed().subscribe(s=>{this.suggestButton?.nativeElement.focus(),s&&this.textService.updateTranslation(this.options,this.systemId,s.source,s.translation).subscribe()})}}return t.\u0275fac=function(e){return new(e||t)(_(qc),_(Xi),_(Aa))},t.\u0275cmp=ce({type:t,selectors:[["tld-translate-suggest"]],viewQuery:function(e,i){if(1&e&&it($J,5),2&e){let r;xe(r=ke())&&(i.suggestButton=r.first)}},inputs:{target:"target",source:"source",dictionary:"dictionary",systemId:"systemId",options:"options",selectedSentence:"selectedSentence"},decls:5,vars:3,consts:[["fxLayoutAlign","start center"],[1,"btn-as-link",3,"click"],["suggestButton",""]],template:function(e,i){1&e&&(S(0,"div",0)(1,"button",1,2),ee("click",function(){return i.openDialog()}),V(3),F(4,"translate"),D()()),2&e&&(b(3),re(j(4,1,"TLD_TRANSLATE.SUGGEST_BUTTON")))},dependencies:[Xn,Lt],styles:[".tld-suggest-button[_ngcontent-%COMP%]{padding:0 1em;cursor:pointer;color:#5577a9;font-size:1em;background-color:transparent;border:none;font-weight:500}"]}),t})();function eee(t,n){if(1&t&&(S(0,"td",11)(1,"span",12),le(2,"span",13),D()()),2&t){const e=I().$implicit;b(2),Lr("width",100*e.probability+"%")}}function tee(t,n){1&t&&(S(0,"span"),V(1,", "),D())}function nee(t,n){if(1&t){const e=Fe();S(0,"span")(1,"span",14),ee("click",function(){const s=me(e).$implicit;return _e(I(4).translationClick(s,!1))}),V(2),D(),O(3,tee,2,0,"span",3),D()}if(2&t){const e=n.$implicit,i=n.index,r=I().$implicit;b(2),re(e),b(1),E("ngIf",i!==r.reverse_translations.length-1)}}function iee(t,n){if(1&t){const e=Fe();S(0,"tr"),O(1,eee,3,2,"td",9),S(2,"td",10),ee("click",function(){const s=me(e).$implicit;return _e(I(3).translationClick(s.target_word,!0))}),V(3),D(),S(4,"td"),O(5,nee,4,2,"span",8),D()()}if(2&t){const e=n.$implicit,i=I(3);b(1),E("ngIf",e.probability),b(1),Mt("clickable",i.canSwapLanguages),b(1),Ve(" ",e.target_word," "),b(2),E("ngForOf",e.reverse_translations)}}function ree(t,n){if(1&t&&(S(0,"div",6)(1,"div",7),V(2),F(3,"translate"),F(4,"uppercase"),D(),S(5,"table"),O(6,iee,6,5,"tr",8),D()()),2&t){const e=n.$implicit;b(2),re(j(3,2,j(4,4,"TLD_TRANSLATE.WORD_TYPE_"+e.key))),b(4),E("ngForOf",e.value)}}function see(t,n){if(1&t&&(je(0),O(1,ree,7,6,"div",5),F(2,"keyvalue"),ze()),2&t){const e=I();b(1),E("ngForOf",j(2,1,e.translationsByType))}}function aee(t,n){if(1&t){const e=Fe();S(0,"tr")(1,"td",16),ee("click",function(){const s=me(e).$implicit;return _e(I(3).translationClick(s.target_word,!0))}),V(2),D()()}if(2&t){const e=n.$implicit,i=I(3);b(1),Mt("clickable",i.canSwapLanguages),b(1),Ve(" ",e.target_word," ")}}function oee(t,n){if(1&t&&(S(0,"div",6)(1,"table"),O(2,aee,3,3,"tr",8),D(),S(3,"div",15),V(4),D()()),2&t){const e=n.$implicit;b(2),E("ngForOf",e[1]),b(2),Ve(" ",e[0]," ")}}function lee(t,n){if(1&t&&(je(0),O(1,oee,5,2,"div",5),ze()),2&t){const e=I();b(1),E("ngForOf",e.translationsBySource)}}function cee(t,n){if(1&t&&(S(0,"div",20),le(1,"p",21)(2,"p",21),D()),2&t){const e=n.$implicit;b(1),E("innerHTML",e.source,dn),b(1),E("innerHTML",e.target,dn)}}function uee(t,n){if(1&t&&(S(0,"div",17)(1,"p",18),V(2),F(3,"translate"),D(),O(4,cee,3,2,"div",19),D()),2&t){const e=I();b(2),Ve(" ",j(3,2,"TLD_TRANSLATE.DICTIONARY_EXAMPLES")," "),b(2),E("ngForOf",e.dictionary.examples)}}let dee=(()=>{class t{constructor(e,i){this.translateTextService=e,this.tldSystem=i,this.dictionaryWithSources=!1}ngOnInit(){this.canSwapLanguages=this.tldSystem.canSwapLanguages,this.dictionary&&this.dictionary.translations&&this.convertDictionaryForTemplate()}translationClick(e,i){(this.canSwapLanguages||!i)&&this.translateTextService.changeSource({phrase:e,swapSystems:i})}convertDictionaryForTemplate(){if(this.targetWord=this.dictionary.translations[0].target_word,this.dictionary.translations[0].type)this.translationsByType=this.groupBy(this.dictionary.translations,"type");else{this.dictionaryWithSources=!0;const e=this.groupBy(this.dictionary.translations,"source");this.translationsBySource=Object.entries(e).sort((i,r)=>r[0].split(";").length-i[0].split(";").length||r[1].length-i[1].length),this.targetWord=this.translationsBySource[0][1][0].target_word}}groupBy(e,i){return e.reduce(function(r,s){return r[s[i]]||(r[s[i]]=[]),r[s[i]].push(s),r},{})}}return t.\u0275fac=function(e){return new(e||t)(_(qc),_(Xi))},t.\u0275cmp=ce({type:t,selectors:[["tld-dictionary"]],inputs:{dictionary:"dictionary"},decls:7,vars:6,consts:[["fxFlex","","fxLayout","column",1,"dictionary-area"],["fxFlex","","fxLayout","column"],[1,"dictionary-target-word"],[4,"ngIf"],["fxLayout","column",4,"ngIf"],["fxFxlex","","fxLayout","column",4,"ngFor","ngForOf"],["fxFxlex","","fxLayout","column"],[1,"dictionary-word-type"],[4,"ngFor","ngForOf"],["class","fit-width",4,"ngIf"],[1,"fit-width","dictionary-target",3,"click"],[1,"fit-width"],[1,"probability-outline"],[1,"probability-inline"],[1,"clickable","reverse-translations",3,"click"],[1,"dictionary-word-source"],[1,"dictionary-target",3,"click"],["fxLayout","column"],[1,"dictionary-examples-title"],["fxLayout","column","class","dictionary-example-pair",4,"ngFor","ngForOf"],["fxLayout","column",1,"dictionary-example-pair"],[1,"dictionary-example",3,"innerHTML"]],template:function(e,i){1&e&&(S(0,"div",0)(1,"div",1)(2,"div",2),V(3),D(),O(4,see,3,3,"ng-container",3),O(5,lee,2,1,"ng-container",3),O(6,uee,5,4,"div",4),D()()),2&e&&(Mt("dictionary-with-sources",i.dictionaryWithSources),b(3),re(i.targetWord),b(1),E("ngIf",!i.dictionaryWithSources),b(1),E("ngIf",i.dictionaryWithSources),b(1),E("ngIf",(null==i.dictionary.examples?null:i.dictionary.examples.length)>0))},dependencies:[Gi,xt,Dn,qi,$u,g0,Lt],styles:[".dictionary-target-word[_ngcontent-%COMP%]{font-size:16px;font-weight:500}.dictionary-area[_ngcontent-%COMP%]{padding:1em;overflow-y:auto}.dictionary-area[_ngcontent-%COMP%] .clickable[_ngcontent-%COMP%]:hover{text-decoration:underline;cursor:pointer}.reverse-translations[_ngcontent-%COMP%]{font-size:14px;vertical-align:text-bottom}.dictionary-word-type[_ngcontent-%COMP%]{margin:2em 0 .5em;font-style:italic;font-size:13px}.dictionary-word-source[_ngcontent-%COMP%]{margin:.5em 0 2em;font-size:13px;color:#5a6672}.dictionary-examples-title[_ngcontent-%COMP%]{margin:2em 0 .5em;font-style:italic}.dictionary-example-pair[_ngcontent-%COMP%] + .dictionary-example-pair[_ngcontent-%COMP%]{margin-top:2em}.dictionary-example[_ngcontent-%COMP%]{color:#9aa5b1;margin-top:.5em;margin-bottom:0}.reverse-translations-wrapper[_ngcontent-%COMP%]{align-items:baseline}.probability-inline[_ngcontent-%COMP%], .probability-outline[_ngcontent-%COMP%]{display:block;border-radius:3px}.probability-outline[_ngcontent-%COMP%]{height:10px;width:20px;border:1px #9aa5b1 solid;padding:1px}.probability-inline[_ngcontent-%COMP%]{background-color:#5a6672;height:100%}td.fit-width[_ngcontent-%COMP%]{width:1%;white-space:nowrap;padding-right:10px}.dictionary-with-sources[_ngcontent-%COMP%] .dictionary-target-word[_ngcontent-%COMP%]{margin-bottom:1em}.dictionary-with-sources[_ngcontent-%COMP%] .dictionary-target[_ngcontent-%COMP%]{padding-top:.25em}.dictionary-target[_ngcontent-%COMP%]{color:#5a6672;font-size:14px;font-weight:500}"]}),t})();function hee(t,n){1&t&&le(0,"vendor-disclaimer")}let fee=(()=>{class t{constructor(e,i){this.systemService=e,this.configService=i,this.closeButtonAriaLabel="TEXT_TRANSLATION_PROGRESS_INDICATOR.CLOSE_BUTTON_ARIA_LABEL",this.closeButtonTooltip="TEXT_TRANSLATION_PROGRESS_INDICATOR.CLOSE_BUTTON_TOOLTIP",this.onClose=new Ae}ngOnInit(){this.vendor=this.systemService.activeVendor,this.showTitle=this.configService.textConfig.progressIndicatorTitleVisibleForVendors?.includes(this.vendor)}close(){this.onClose.next(null)}}return t.\u0275fac=function(e){return new(e||t)(_(Xi),_(Gt))},t.\u0275cmp=ce({type:t,selectors:[["progress-indicator"]],outputs:{onClose:"onClose"},decls:9,vars:6,consts:[["fxLayout","row"],["fxFlex",""],[4,"ngIf"],["mode","indeterminate","color","accent"],[1,"text-s","status"],["fxLayoutAlign","center center"],[3,"tooltip","ariaCode","tldClick"]],template:function(e,i){1&e&&(S(0,"div",0)(1,"div",1),O(2,hee,1,0,"vendor-disclaimer",2),le(3,"mat-progress-bar",3),S(4,"div",4),V(5),F(6,"translate"),D()(),S(7,"div",5)(8,"tld-close-button",6),ee("tldClick",function(){return i.close()}),D()()()),2&e&&(b(2),E("ngIf",i.showTitle),b(3),re(j(6,4,"TEXT_TRANSLATION_PROGRESS_INDICATOR.TRANSLATING")),b(3),E("tooltip",i.closeButtonTooltip)("ariaCode",i.closeButtonAriaLabel))},dependencies:[xt,Yb,Dn,Xn,qi,to,rL,Lt],styles:["[_nghost-%COMP%]{display:block;width:100%}[_nghost-%COMP%] .status[_ngcontent-%COMP%]{color:var(--base-40)}[_nghost-%COMP%] .material-icons[_ngcontent-%COMP%]{vertical-align:middle;margin-left:.5rem;color:var(--base-40)}[_nghost-%COMP%] mat-progress-bar[_ngcontent-%COMP%]{margin-top:.375rem;margin-bottom:.375rem}[_nghost-%COMP%] mat-progress-bar[_ngcontent-%COMP%] .mat-progress-bar-primary{display:none}"]}),t})();const pee=["sourceComponent"],gee=function(t){return{"full-width":t}};function mee(t,n){if(1&t){const e=Fe();je(0),S(1,"tld-dictate",15),ee("isDictating",function(r){return me(e),_e(I(2).dictateStartStop(r))})("result",function(r){return me(e),_e(I(2).dictateResult(r))})("partialResult",function(r){return me(e),_e(I(2).dictatePartialResult(r))})("onError",function(r){return me(e),_e(I(2).dictateError(r))}),D(),ze()}if(2&t){const e=I(2);b(1),E("configuration",e.dictateConfig)("ngClass",fn(3,gee,!e.fileUpload))("language",e.sourceLanguage)}}function _ee(t,n){1&t&&le(0,"tld-open-extension-dialog",26),2&t&&E("extensions",I(3).allowedTypesWithoutDots)}const yee=function(t,n){return{maxSizeMB:t,visibleExtensions:n}};function Aee(t,n){if(1&t){const e=Fe();S(0,"div",16)(1,"tld-file-upload",17),ee("fileChange",function(r){return me(e),_e(I(2).fileChange(r))})("onError",function(r){return me(e),_e(I(2).fileUploadError(r))}),S(2,"span",18)(3,"div",19)(4,"span",20),le(5,"span",21),F(6,"translate"),S(7,"span"),V(8,"\xa0"),D(),le(9,"span",22),F(10,"translate"),le(11,"span",23),F(12,"translate"),D()(),S(13,"div",19),le(14,"span",24),F(15,"translate"),D()()(),O(16,_ee,1,1,"tld-open-extension-dialog",25),D()}if(2&t){const e=I(2);b(1),E("accept",e.allowedFileTypes)("maxSize",e.maxFileUploadSize)("extendedAcceptList",e.extendedFileTypes)("multiple",e.multipleFiles)("filePreviewProgress",e.filePreviewProgress),b(4),E("innerHTML",j(6,11,"FILE_UPLOAD.UPLOAD"),dn),b(4),E("innerHTML",j(10,13,"FILE_UPLOAD.DRAG_AND_DROP"),dn),b(2),E("innerHTML",j(12,15,"FILE_UPLOAD."+(e.multipleFiles?"FILES":"FILE")),dn)("ngClass.lt-sm","accent-color"),b(3),E("innerHTML",bn(15,17,"FILE_UPLOAD.LIMITS",Gu(20,yee,e.maxSizeMB,e.visibleExtensions)),dn),b(2),E("ngIf",e.showExtensionPopup)}}function vee(t,n){if(1&t&&(je(0,11),S(1,"div",12),O(2,mee,2,5,"ng-container",13),O(3,Aee,17,23,"div",14),D(),ze()),2&t){const e=I();b(2),E("ngIf",e.audioInputVisible),b(1),E("ngIf",e.fileUpload)}}function bee(t,n){1&t&&(le(0,"p",28),F(1,"translate")),2&t&&E("innerHtml",j(1,1,"TLD_TRANSLATE.TARGET_DESCRIPTION"),dn)}function Cee(t,n){if(1&t&&(je(0),O(1,bee,2,3,"p",27),ze()),2&t){const e=I(2);b(1),E("ngIf",e.showTargetPlaceholder)}}function Tee(t,n){if(1&t&&(je(0),O(1,Cee,2,1,"ng-container",6),ze()),2&t){const e=I(),i=vt(10);b(1),E("ngIf",e.isEmptyTarget)("ngIfElse",i)}}function Eee(t,n){if(1&t&&le(0,"tld-translate-suggest",32),2&t){const e=I(2);E("systemId",e.systemId)("target",e.targetParagraphs)("source",e.sourceParagraphs)}}function See(t,n){if(1&t){const e=Fe();S(0,"progress-indicator",33),ee("onClose",function(){return me(e),_e(I(2).closeProgressIndicator())}),D()}}function Dee(t,n){if(1&t&&(S(0,"div",29),O(1,Eee,1,3,"tld-translate-suggest",30),O(2,See,1,0,"progress-indicator",31),D()),2&t){const e=I();b(1),E("ngIf",e.showSuggestions),b(1),E("ngIf",e.showProgressIndicator)}}function wee(t,n){if(1&t){const e=Fe();S(0,"button",40),ee("click",function(){return me(e),_e(I(3).copy())})("keydown.Tab",function(r){return me(e),_e(I(3).switchFocusFromCopy(r))}),F(1,"translate"),S(2,"span",41),F(3,"translate"),V(4," content_copy "),D()()}if(2&t){const e=I(3);Io("matTooltip",j(1,4,"TOOLTIPS.COPY")),Me("aria-describedby",e.copyMessageId)("Id",e.copyButtonId),b(2),Me("aria-label",j(3,6,"ARIA_LABELS.COPY"))}}function xee(t,n){1&t&&le(0,"tld-text-to-speech",42),2&t&&E("settings",I(3).textToSpeechTargetSettings)}function kee(t,n){if(1&t&&(S(0,"div"),le(1,"tld-highlight-tree",43),D()),2&t){const e=n.$implicit,i=I(3);b(1),E("highlight",i.highlight)("tree",e)("selectSentence",i.showSuggestions)}}function Iee(t,n){if(1&t&&(je(0),S(1,"div",36),O(2,wee,5,8,"button",37),O(3,xee,1,1,"tld-text-to-speech",38),D(),O(4,kee,2,3,"div",39),ze()),2&t){const e=I(2);b(2),E("ngIf",e.firstParagraphTranslated),b(1),E("ngIf",e.textToSpeechTargetSettings),b(1),E("ngForOf",e.targetParagraphs)}}function Mee(t,n){if(1&t&&(S(0,"div",44)(1,"a",45),V(2),S(3,"span",46),V(4," open_in_new "),D()()()),2&t){const e=I(2);b(1),Me("href",e.translateUrlRedirect,Qr),b(1),Ve(" ",e.urlToTranslate," "),b(1),Me("aria-label","ARIA_LABELS.OPEN_IN_NEW")}}function Ree(t,n){if(1&t&&(S(0,"div",34),O(1,Iee,5,3,"ng-container",13),O(2,Mee,5,3,"div",35),D()),2&t){const e=I();Mt("selectable-sentence",e.showSuggestions),b(1),E("ngIf",!e.urlToTranslate),b(1),E("ngIf",e.urlToTranslate)}}function Oee(t,n){1&t&&le(0,"tld-dictionary",49),2&t&&E("dictionary",n.$implicit)}function Lee(t,n){if(1&t&&(S(0,"div",47),O(1,Oee,1,1,"tld-dictionary",48),D()),2&t){const e=I();b(1),E("ngForOf",e.dictionaryEntry)}}const Pee=function(t,n,e){return{"highlight-active":t,"gramcheck-active":n,"empty-target":e}};let Nee=(()=>{class t{constructor(e,i,r,s,a,o,l,u,h,p){this.translateTextService=e,this.clipboard=i,this.alerts=r,this.config=s,this.tldScrollService=a,this.tldSystem=o,this.audioService=l,this.voiceInputService=u,this.fileService=h,this.breakpointObserver=p,this.onFileChange=new Ae,this.targetSentenceSelect=!0,this.copyMessageId="tld-copy-success",this.copyMessageCloseButtonId="tld-copy-success-close",this.copyButtonId="tld-copy-to-clipboard",this.destroy$=new pe,this.mobileBreakpoints=[Hp_XSmall]}get systemId(){return this.activeData?.systemId}get allowedFileTypes(){return this.config.fileConfig.allowedFileTypes}get extendedFileTypes(){return this.config.fileConfig.extendedFileTypes}get appId(){return this.config.coreConfig.appId}get highlight(){return this.config.textConfig.highlight}get gramCheck(){return this.config.textConfig.checkSourceGrammar}get fileUpload(){return this.config.fileConfig.fileUpload&&!(this.isDictating||this.audioService?.isRecording||this.voiceInputService.isProcessing)}get clientId(){return this.config.coreConfig.clientId}get hideAchievement(){return this.config.coreConfig.hideAchievement||!this.isEmptyTarget}get isAuth(){return this.config.coreConfig.isAuth}get maxFileUploadSize(){return this.config.fileConfig.maxSize}get multipleFiles(){return this.config.fileConfig.numberOfFilesAllowed>1}get translationUrl(){return this.config.textConfig.translationUrl}get updateTranslationUrl(){return this.config.textConfig.updateTranslationUrl}get useDictionary(){return this.config.textConfig.useDictionary}get allowWebsiteTranslation(){return this.config.textConfig.allowWebsiteTranslation}get autoRedirectToWebTranslate(){return this.config.textConfig.autoRedirectToWebTranslate}get webWidgetRedirectUrlPrefix(){return this.config.textConfig.webWidgetRedirectUrlPrefix}get webWidgetRedirectUrlPosfix(){return this.config.textConfig.webWidgetRedirectUrlPosfix}get showSuggestions(){return this.hasTranslatedParagraphs&&this.config.textConfig.showSuggestions&&!this.urlToTranslate}get textareaDisabled(){return this.audioService.isRecording||this.voiceInputService.isProcessing||this.isDictating}get isDictating(){return this.translateTextService.isDictating}get maxDictateLength(){return this.config.audioConfig.maximumRecordTime}get sourceLanguage(){return this.activeData?.sourceLang.lang}get hasTranslatedParagraphs(){return this.targetParagraphs?.length>0}get isEmptyTarget(){return!this.hasTranslatedParagraphs&&!this.urlToTranslate&&!this.hasDictionary}get showTargetPlaceholder(){return this.config.textConfig.showTargetPlaceholder}get showExtensionPopup(){return this.config.textConfig.showExtensionPopup&&this.visibleExtensionCount<this.allowedFileTypes.length}get visibleExtensionCount(){return this.config.textConfig.visibleExtensionCount}get textToSpeechTargetSettings(){return this.translateTextService.textToSpeechTargetSettings}get textToSpeechSourceSettings(){return this.translateTextService.textToSpeechSourceSettings}get urlToTranslate(){return this.translateTextService.urlToTranslate}get translatedText(){return this.translateTextService.translatedText}get firstParagraphTranslated(){return this.translateTextService.firstParagraphTranslated}get hasDictionary(){return this.translateTextService.hasDictionary}get dictionaryEntry(){return this.translateTextService.dictionaryEntry}get source(){return this.translateTextService.sourceText}get translateUrlRedirect(){return this.translateTextService.translateUrlRedirect}get showProgressIndicator(){return this.translateTextService.shouldShowProgressIndicator}get hideSourceActions(){return this.source&&this.config.textConfig.hideSourceActionsWhenHasTextMobile&&this.isMobile}get paragraphs(){return this.translateTextService.paragraphs}get sourceParagraphs(){return this.translateTextService.sourceParagraphs}get targetParagraphs(){return this.translateTextService.targetParagraphs}ngOnInit(){this.translateTextService.listenOnChanges(),this.dictateConfig={appId:this.config.audioConfig.appId,appSecret:this.config.audioConfig.appSecret,maxLength:this.config.audioConfig.maximumRecordTime,apiUrl:this.config.audioConfig.dictateApiUrl},this.allowedTypesWithoutDots=[],this.allowedFileTypes.forEach(e=>this.allowedTypesWithoutDots.push(e.replace(".",""))),this.visibleExtensions=this.capitalizeFirstLetter(this.allowedTypesWithoutDots.slice(0,this.visibleExtensionCount).join(", ")),this.maxSizeMB=Ht.bytesToMb(this.config.fileConfig.maxSize),this.tldSystem.getActiveData().pipe(Up((e,i)=>e&&i&&e.systemId==i.systemId)).pipe(dt(this.destroy$)).subscribe(e=>{!e||(this.activeData=e,this.audioInputVisible=this.config.audioConfig.audioTextInput&&this.config.audioConfig.sourceLanguages?.includes(this.activeData?.sourceLang.lang),this.activeData.retranslate&&this.translateTextService.retranslate({systemChanged:!0}))}),this.tldScrollService.subscribeToScroll(),this.config.audioConfig.audioTextInput&&(this.audioService.onRecordStart.pipe(dt(this.destroy$)).subscribe(()=>{this.translateTextService.changeSource({phrase:""})}),this.voiceInputService.onTranscribtionTextUpdated.pipe(dt(this.destroy$)).subscribe(e=>{this.translateTextService.changeSource({phrase:e.text,swapSystems:!1,disableAutomaticTranslation:!e.completed}),e.completed&&(!e.text||""===e.text)&&this.alerts.warning(`ERRORS.AUDIO.${Mi.NO_TEXT_RECOGNIZED}`)})),this.subscribeToBreakpointObserver()}capitalizeFirstLetter(e){return e&&e[0].toUpperCase()+e.slice(1)}copy(){this.clipboard.copy(this.translatedText),this.alerts.info("TLD_TRANSLATE.TEXT_COPIED",{id:this.copyMessageId,closeButtonId:this.copyMessageCloseButtonId,parentId:this.copyButtonId})}switchFocusFromCopy(e){const i=document.getElementById(this.copyMessageCloseButtonId)?.getElementsByTagName("button")?.item(0);i&&(e.preventDefault(),i.focus())}fileChange(e){this.onFileChange.emit(e)}fileUploadError(e){this.fileService.fileUploadError(e)}navigateToTranslatedUrl(){window.location.replace(this.translateUrlRedirect)}dictateStartStop(e){const i=`${this.translateTextService.sourceText}${this.translateTextService.sourceText?.length>0?" ":""}${this.translateTextService.sourceTextHypothesis}`;this.translateTextService.isDictating=e,e?this.translateTextService.clearSource():(this.config.audioConfig.punctuationMessage&&i?.length>0&&this.alerts.warning("AUDIO.PUNCTUATION_MESSAGE"),this.translateTextService.changeSource({phrase:i,disableAutomaticTranslation:this.isDictating||this.config.audioConfig.disableAutomaticTranslation}),this.translateTextService.changeSourceHypothesis(""))}dictateResult(e){this.translateTextService.changeSourceHypothesis(""),this.translateTextService.changeSource({phrase:e,disableAutomaticTranslation:this.isDictating})}dictatePartialResult(e){this.translateTextService.changeSourceHypothesis(e)}dictateError(e){if(e===Mi.MAX_TIME_EXCEEDED){let i="";const r=new Date(0,0,0,0,0,this.config.audioConfig.maximumRecordTime),s=r.getMinutes();s>0&&(i+=`${s} minutes`);const a=r.getSeconds();a>0&&(i+=`${a} seconds`),this.alerts.warning(`ERRORS.AUDIO.${e}`,{timeString:i})}else e===Mi.NO_SPEECH?this.alerts.warning(`ERRORS.AUDIO.${e}`):this.alerts.unhandeledError({ErrorCode:e})}clearSource(){this.translateTextService.clearSource()}ngOnDestroy(){this.translateTextService.stopListeningToChanges(),this.tldScrollService.unsubscribeToScroll(),this.destroy$.next(null),this.destroy$.complete()}closeProgressIndicator(){this.translateTextService.hideProgressIndicator(),this.translateTextService.stopTranslation()}subscribeToBreakpointObserver(){this.breakpointObserver.observe(this.mobileBreakpoints).pipe(dt(this.destroy$)).subscribe(e=>{this.isMobile=e.matches})}}return t.\u0275fac=function(e){return new(e||t)(_(qc),_(iG),_(Ps),_(Gt),_(oL),_(Xi),_(lL),_(sL),_(Ta),_(zp))},t.\u0275cmp=ce({type:t,selectors:[["tld-translate-text"]],viewQuery:function(e,i){if(1&e&&it(pee,5),2&e){let r;xe(r=ke())&&(i.sourceComponent=r.first)}},inputs:{filePreviewProgress:"filePreviewProgress"},outputs:{onFileChange:"onFileChange"},decls:13,vars:16,consts:[[3,"textToSpeechSourceSettings","clearSourceVisible","hideAchievement","clearDisabled","clearSourceTooltip","ngClass","onSourceClear"],["sourceMain","","fxLayout","column",1,"source-main"],["fxFlex","",3,"textareaDisabled","sourceParagraphs"],["sourceComponent",""],["sourceActions","",4,"ngIf"],["targetMain","",1,"target-main"],[4,"ngIf","ngIfElse"],["targetActions",""],["class","tld-translate-target-footer basic-padding",4,"ngIf"],["translatedTextBlock",""],["dictionaryTargetBlock",""],["sourceActions",""],["fxLayoutAlign","start center","fxLayoutGap","1em",1,"basic-padding"],[4,"ngIf"],["class","file-upload-wrapper",4,"ngIf"],[3,"configuration","ngClass","language","isDictating","result","partialResult","onError"],[1,"file-upload-wrapper"],[3,"accept","maxSize","extendedAcceptList","multiple","filePreviewProgress","fileChange","onError"],[1,"upload-file-text"],["fxLayout","row"],[1,"info","text-l-semi-bold"],[1,"accent-color",3,"innerHTML"],["fxHide.lt-sm","",3,"innerHTML"],[3,"innerHTML","ngClass.lt-sm"],[1,"file-upload-extensions","text-m",3,"innerHTML"],[3,"extensions",4,"ngIf"],[3,"extensions"],["class","description-text target-empty",3,"innerHtml",4,"ngIf"],[1,"description-text","target-empty",3,"innerHtml"],[1,"tld-translate-target-footer","basic-padding"],[3,"systemId","target","source",4,"ngIf"],[3,"onClose",4,"ngIf"],[3,"systemId","target","source"],[3,"onClose"],[1,"translated-source"],["class","target-url-container",4,"ngIf"],[1,"target-wrapper-action-buttons"],["mat-icon-button","","class","tld-copy-translation",3,"matTooltip","click","keydown.Tab",4,"ngIf"],[3,"settings",4,"ngIf"],[4,"ngFor","ngForOf"],["mat-icon-button","",1,"tld-copy-translation",3,"matTooltip","click","keydown.Tab"],["aria-hidden","false",1,"material-icons"],[3,"settings"],[3,"highlight","tree","selectSentence"],[1,"target-url-container"],["target","_blank","fxLayoutAlign","start center",1,"go-to-webtranslate"],["color","accent","aria-hidden","false",1,"material-icons"],["fxFlex","","fxLayout","column",1,"dictionary-wrapper"],["fxFlex","",3,"dictionary",4,"ngFor","ngForOf"],["fxFlex","",3,"dictionary"]],template:function(e,i){if(1&e&&(S(0,"tld-source-and-target-wrapper",0),ee("onSourceClear",function(){return i.clearSource()}),S(1,"div",1),le(2,"tld-translate-source",2,3),D(),O(4,vee,4,2,"ng-container",4),S(5,"div",5),O(6,Tee,2,2,"ng-container",6),D(),je(7,7),O(8,Dee,3,2,"div",8),ze(),D(),O(9,Ree,3,4,"ng-template",null,9,pi),O(11,Lee,2,1,"ng-template",null,10,pi)),2&e){const r=vt(12);E("textToSpeechSourceSettings",i.textToSpeechSourceSettings)("clearSourceVisible",(null==i.source?null:i.source.length)>0)("hideAchievement",i.hideAchievement)("clearDisabled",i.textareaDisabled)("clearSourceTooltip","TLD_TRANSLATE.CLEAR_SOURCE_TOOLTIP")("ngClass",Lo(12,Pee,i.highlight,i.gramCheck,i.isEmptyTarget)),b(2),E("textareaDisabled",i.textareaDisabled)("sourceParagraphs",i.sourceParagraphs),b(2),E("ngIf",!i.hideSourceActions),b(2),E("ngIf",!i.hasDictionary)("ngIfElse",r),b(2),E("ngIf",i.showSuggestions||i.showProgressIndicator)}},dependencies:[oa,Gi,xt,En,as,Dn,$a,Xn,qi,Os,Ii,iL,cC,lJ,AJ,$O,qJ,JJ,dee,uL,fee,Lt],styles:[".go-to-webtranslate[_ngcontent-%COMP%]{word-break:break-all;display:inline}.basic-padding[_ngcontent-%COMP%], .target-empty[_ngcontent-%COMP%], .target-translated-text[_ngcontent-%COMP%]{padding:1em}.source-container[_ngcontent-%COMP%]{border-right:1px solid #cbd2d9;padding:0;overflow:auto}.target-description[_ngcontent-%COMP%]{margin-top:0}.target-container[_ngcontent-%COMP%]{position:relative}.translated-source[_ngcontent-%COMP%]{overflow-y:auto;overflow-x:hidden;flex:1 1 0!important;padding:1em}.translated-source.selectable-sentence[_ngcontent-%COMP%]{cursor:pointer} .target-highlight .tld-highlight-container{padding:1em}.target-wrapper-action-buttons[_ngcontent-%COMP%]{float:right}.target-wrapper-action-buttons[_ngcontent-%COMP%] .tld-copy-translation[_ngcontent-%COMP%], .target-wrapper-action-buttons[_ngcontent-%COMP%] tld-text-to-speech[_ngcontent-%COMP%]{display:block}.target-empty[_ngcontent-%COMP%], .target-translated-text[_ngcontent-%COMP%]{margin:0}tld-dictionary[_ngcontent-%COMP%]{overflow-y:auto;flex:1 1 0!important}.source-main[_ngcontent-%COMP%], .target-main[_ngcontent-%COMP%]{height:100%}.upload-file-text[_ngcontent-%COMP%]{display:inline-block;text-align:left}.file-upload-wrapper[_ngcontent-%COMP%]{width:100%}.file-upload-wrapper[_ngcontent-%COMP%] .file-upload-extensions[_ngcontent-%COMP%]{font-weight:400}"]}),t})();function Fee(t,n){if(1&t&&(To(),le(0,"circle",4)),2&t){const e=I(),i=vt(1);Lr("animation-name","mat-progress-spinner-stroke-rotate-"+e._spinnerAnimationLabel)("stroke-dashoffset",e._getStrokeDashOffset(),"px")("stroke-dasharray",e._getStrokeCircumference(),"px")("stroke-width",e._getCircleStrokeWidth(),"%")("transform-origin",e._getCircleTransformOrigin(i)),Me("r",e._getCircleRadius())}}function Bee(t,n){if(1&t&&(To(),le(0,"circle",4)),2&t){const e=I(),i=vt(1);Lr("stroke-dashoffset",e._getStrokeDashOffset(),"px")("stroke-dasharray",e._getStrokeCircumference(),"px")("stroke-width",e._getCircleStrokeWidth(),"%")("transform-origin",e._getCircleTransformOrigin(i)),Me("r",e._getCircleRadius())}}const Uee=Ec(class{constructor(t){this._elementRef=t}},"primary"),jee=new Z("mat-progress-spinner-default-options",{providedIn:"root",factory:function zee(){return{diameter:100}}});class Fs extends Uee{constructor(n,e,i,r,s,a,o,l){super(n),this._document=i,this._diameter=100,this._value=0,this._resizeSubscription=ae.EMPTY,this.mode="determinate";const u=Fs._diameters;this._spinnerAnimationLabel=this._getSpinnerAnimationLabel(),u.has(i.head)||u.set(i.head,new Set([100])),this._noopAnimations="NoopAnimations"===r&&!!s&&!s._forceAnimations,"mat-spinner"===n.nativeElement.nodeName.toLowerCase()&&(this.mode="indeterminate"),s&&(s.color&&(this.color=this.defaultColor=s.color),s.diameter&&(this.diameter=s.diameter),s.strokeWidth&&(this.strokeWidth=s.strokeWidth)),e.isBrowser&&e.SAFARI&&o&&a&&l&&(this._resizeSubscription=o.change(150).subscribe(()=>{"indeterminate"===this.mode&&l.run(()=>a.markForCheck())}))}get diameter(){return this._diameter}set diameter(n){this._diameter=ss(n),this._spinnerAnimationLabel=this._getSpinnerAnimationLabel(),this._styleRoot&&this._attachStyleNode()}get strokeWidth(){return this._strokeWidth||this.diameter/10}set strokeWidth(n){this._strokeWidth=ss(n)}get value(){return"determinate"===this.mode?this._value:0}set value(n){this._value=Math.max(0,Math.min(100,ss(n)))}ngOnInit(){const n=this._elementRef.nativeElement;this._styleRoot=oI(n)||this._document.head,this._attachStyleNode(),n.classList.add("mat-progress-spinner-indeterminate-animation")}ngOnDestroy(){this._resizeSubscription.unsubscribe()}_getCircleRadius(){return(this.diameter-10)/2}_getViewBox(){const n=2*this._getCircleRadius()+this.strokeWidth;return`0 0 ${n} ${n}`}_getStrokeCircumference(){return 2*Math.PI*this._getCircleRadius()}_getStrokeDashOffset(){return"determinate"===this.mode?this._getStrokeCircumference()*(100-this._value)/100:null}_getCircleStrokeWidth(){return this.strokeWidth/this.diameter*100}_getCircleTransformOrigin(n){const e=50*(n.currentScale??1);return`${e}% ${e}%`}_attachStyleNode(){const n=this._styleRoot,e=this._diameter,i=Fs._diameters;let r=i.get(n);if(!r||!r.has(e)){const s=this._document.createElement("style");s.setAttribute("mat-spinner-animation",this._spinnerAnimationLabel),s.textContent=this._getAnimationText(),n.appendChild(s),r||(r=new Set,i.set(n,r)),r.add(e)}}_getAnimationText(){const n=this._getStrokeCircumference();return"\n @keyframes mat-progress-spinner-stroke-rotate-DIAMETER {\n 0% { stroke-dashoffset: START_VALUE; transform: rotate(0); }\n 12.5% { stroke-dashoffset: END_VALUE; transform: rotate(0); }\n 12.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(72.5deg); }\n 25% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(72.5deg); }\n\n 25.0001% { stroke-dashoffset: START_VALUE; transform: rotate(270deg); }\n 37.5% { stroke-dashoffset: END_VALUE; transform: rotate(270deg); }\n 37.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(161.5deg); }\n 50% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(161.5deg); }\n\n 50.0001% { stroke-dashoffset: START_VALUE; transform: rotate(180deg); }\n 62.5% { stroke-dashoffset: END_VALUE; transform: rotate(180deg); }\n 62.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(251.5deg); }\n 75% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(251.5deg); }\n\n 75.0001% { stroke-dashoffset: START_VALUE; transform: rotate(90deg); }\n 87.5% { stroke-dashoffset: END_VALUE; transform: rotate(90deg); }\n 87.5001% { stroke-dashoffset: END_VALUE; transform: rotateX(180deg) rotate(341.5deg); }\n 100% { stroke-dashoffset: START_VALUE; transform: rotateX(180deg) rotate(341.5deg); }\n }\n".replace(/START_VALUE/g,""+.95*n).replace(/END_VALUE/g,""+.2*n).replace(/DIAMETER/g,`${this._spinnerAnimationLabel}`)}_getSpinnerAnimationLabel(){return this.diameter.toString().replace(".","_")}}Fs._diameters=new WeakMap,Fs.\u0275fac=function(n){return new(n||Fs)(_(be),_(hi),_(Ye,8),_(nr,8),_(jee),_(Kn),_(Np),_(He))},Fs.\u0275cmp=ce({type:Fs,selectors:[["mat-progress-spinner"],["mat-spinner"]],hostAttrs:["role","progressbar","tabindex","-1",1,"mat-progress-spinner","mat-spinner"],hostVars:10,hostBindings:function(n,e){2&n&&(Me("aria-valuemin","determinate"===e.mode?0:null)("aria-valuemax","determinate"===e.mode?100:null)("aria-valuenow","determinate"===e.mode?e.value:null)("mode",e.mode),Lr("width",e.diameter,"px")("height",e.diameter,"px"),Mt("_mat-animation-noopable",e._noopAnimations))},inputs:{color:"color",diameter:"diameter",strokeWidth:"strokeWidth",mode:"mode",value:"value"},exportAs:["matProgressSpinner"],features:[J],decls:4,vars:8,consts:[["preserveAspectRatio","xMidYMid meet","focusable","false","aria-hidden","true",3,"ngSwitch"],["svg",""],["cx","50%","cy","50%",3,"animation-name","stroke-dashoffset","stroke-dasharray","stroke-width","transform-origin",4,"ngSwitchCase"],["cx","50%","cy","50%",3,"stroke-dashoffset","stroke-dasharray","stroke-width","transform-origin",4,"ngSwitchCase"],["cx","50%","cy","50%"]],template:function(n,e){1&n&&(To(),S(0,"svg",0,1),O(2,Fee,1,11,"circle",2),O(3,Bee,1,9,"circle",3),D()),2&n&&(Lr("width",e.diameter,"px")("height",e.diameter,"px"),E("ngSwitch","indeterminate"===e.mode),Me("viewBox",e._getViewBox()),b(2),E("ngSwitchCase",!0),b(1),E("ngSwitchCase",!1))},dependencies:[Zu,iA],styles:[".mat-progress-spinner{display:block;position:relative;overflow:hidden}.mat-progress-spinner svg{position:absolute;transform:rotate(-90deg);top:0;left:0;transform-origin:center;overflow:visible}.mat-progress-spinner circle{fill:rgba(0,0,0,0);transition:stroke-dashoffset 225ms linear}.cdk-high-contrast-active .mat-progress-spinner circle{stroke:CanvasText}.mat-progress-spinner[mode=indeterminate] svg{animation:mat-progress-spinner-linear-rotate 2000ms linear infinite}.mat-progress-spinner[mode=indeterminate] circle{transition-property:stroke;animation-duration:4000ms;animation-timing-function:cubic-bezier(0.35, 0, 0.25, 1);animation-iteration-count:infinite}.mat-progress-spinner._mat-animation-noopable svg,.mat-progress-spinner._mat-animation-noopable circle{animation:none;transition:none}@keyframes mat-progress-spinner-linear-rotate{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes mat-progress-spinner-stroke-rotate-100{0%{stroke-dashoffset:268.606171575px;transform:rotate(0)}12.5%{stroke-dashoffset:56.5486677px;transform:rotate(0)}12.5001%{stroke-dashoffset:56.5486677px;transform:rotateX(180deg) rotate(72.5deg)}25%{stroke-dashoffset:268.606171575px;transform:rotateX(180deg) rotate(72.5deg)}25.0001%{stroke-dashoffset:268.606171575px;transform:rotate(270deg)}37.5%{stroke-dashoffset:56.5486677px;transform:rotate(270deg)}37.5001%{stroke-dashoffset:56.5486677px;transform:rotateX(180deg) rotate(161.5deg)}50%{stroke-dashoffset:268.606171575px;transform:rotateX(180deg) rotate(161.5deg)}50.0001%{stroke-dashoffset:268.606171575px;transform:rotate(180deg)}62.5%{stroke-dashoffset:56.5486677px;transform:rotate(180deg)}62.5001%{stroke-dashoffset:56.5486677px;transform:rotateX(180deg) rotate(251.5deg)}75%{stroke-dashoffset:268.606171575px;transform:rotateX(180deg) rotate(251.5deg)}75.0001%{stroke-dashoffset:268.606171575px;transform:rotate(90deg)}87.5%{stroke-dashoffset:56.5486677px;transform:rotate(90deg)}87.5001%{stroke-dashoffset:56.5486677px;transform:rotateX(180deg) rotate(341.5deg)}100%{stroke-dashoffset:268.606171575px;transform:rotateX(180deg) rotate(341.5deg)}}"],encapsulation:2,changeDetection:0});let Gee=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[At,sn,At]}),t})(),Wee=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[gd,sn,Yc,Ar,DO,AO,BO,Gee,nl,eh,_5,ul]}),t})();const Kee=function(t,n){return{minLength:t,maxLength:n}};function Yee(t,n){if(1&t&&(S(0,"mat-error"),V(1),F(2,"translate"),D()),2&t){const e=I();b(1),re(bn(2,1,"TERM_COLLECTIONS.CREATE_DIALOG.COLLECTION_NAME_ERROR",Gu(4,Kee,e.minLength,e.maxLength)))}}let qee=(()=>{class t{constructor(e,i,r){this.dialogRef=e,this.data=i,this.config=r}ngOnInit(){this.minLength=this.config.termConfig.collectionNameMinLength,this.maxLength=this.config.termConfig.collectionNameMaxLength,this.collectionName=new zG(this.data.collectionName,[cd.minLength(this.minLength),cd.maxLength(this.maxLength),cd.required]),this.collectionName.markAsTouched(),this.formGroup=new MG({collectionName:this.collectionName})}submit(){this.formGroup.valid&&this.dialogRef.close(this.collectionName.value)}}return t.\u0275fac=function(e){return new(e||t)(_(Kd),_(Rg),_(Gt))},t.\u0275cmp=ce({type:t,selectors:[["tld-term-create-collection-dialog"]],decls:23,vars:21,consts:[["mat-dialog-close","",1,"close-button"],["mat-dialog-title",""],["mat-dialog-content",""],[3,"innerHtml"],[3,"formGroup"],["appearance","outline",1,"collection-name-form-field"],["matInput","","formControlName","collectionName",3,"keyup.enter"],[4,"ngIf"],["mat-dialog-actions","","fxLayout","row","fxLayoutAlign","center center"],["mat-flat-button","","cdkFocusInitial","","color","accent",3,"disabled","click"],["mat-button","","mat-dialog-close","","color","accent"]],template:function(e,i){1&e&&(le(0,"tld-close-button",0),S(1,"h1",1),V(2),F(3,"translate"),D(),S(4,"div",2),le(5,"p",3),F(6,"translate"),le(7,"p",3),F(8,"translate"),S(9,"div",4)(10,"mat-form-field",5)(11,"mat-label"),V(12),F(13,"translate"),D(),S(14,"input",6),ee("keyup.enter",function(){return i.submit()}),D(),O(15,Yee,3,7,"mat-error",7),D()()(),S(16,"div",8)(17,"button",9),ee("click",function(){return i.submit()}),V(18),F(19,"translate"),D(),S(20,"button",10),V(21),F(22,"translate"),D()()),2&e&&(b(2),re(j(3,9,"TERM_COLLECTIONS.CREATE_DIALOG.TITLE")),b(3),E("innerHtml",j(6,11,"TERM_COLLECTIONS.CREATE_DIALOG.DESCRIPTION_1"),dn),b(2),E("innerHtml",j(8,13,"TERM_COLLECTIONS.CREATE_DIALOG.DESCRIPTION_2"),dn),b(2),E("formGroup",i.formGroup),b(3),re(j(13,15,"TERM_COLLECTIONS.CREATE_DIALOG.COLLECTION_NAME_LABEL")),b(3),E("ngIf",i.collectionName.errors),b(2),E("disabled",i.formGroup.invalid),b(1),re(j(19,17,"TERM_COLLECTIONS.CREATE_DIALOG.CREATE")),b(3),re(j(22,19,"TERM_COLLECTIONS.CREATE_DIALOG.CANCEL")))},dependencies:[Ko,mc,Tk,xt,En,jq,zb,Ub,wg,Yd,FX,qd,Og,Dn,Xn,pd,vv,to,Lt],styles:["input[_ngcontent-%COMP%]{outline:none!important}[_nghost-%COMP%] .mat-form-field-appearance-outline:hover .mat-form-field-outline, [_nghost-%COMP%] .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick, [_nghost-%COMP%] .mat-form-field.mat-focused .mat-form-field-label{color:#ad234a}.create-dialog-wrapper[_ngcontent-%COMP%]{position:relative}.close-button[_ngcontent-%COMP%]{position:absolute;right:1em;top:1em}"]}),t})();function Xee(t,n){if(1&t&&(S(0,"span",5),V(1),F(2,"translate"),D()),2&t){const e=I(2);b(1),re(j(2,1,e.localizationKey+"DESCRIPTION_2"))}}function Qee(t,n){if(1&t&&(S(0,"span",6),V(1),F(2,"translate"),D()),2&t){const e=I(2);b(1),re(j(2,1,e.localizationKey+"DESCRIPTION_2_MOBILE"))}}function Zee(t,n){if(1&t&&(je(0),S(1,"h1",4)(2,"span",5),V(3),F(4,"translate"),D(),S(5,"span",6),V(6),F(7,"translate"),D()(),S(8,"p",7)(9,"span"),V(10),F(11,"translate"),D(),O(12,Xee,3,3,"span",8),O(13,Qee,3,3,"span",9),D(),ze()),2&t){const e=I();b(3),re(j(4,5,e.localizationKey+"TITLE")),b(3),re(j(7,7,e.localizationKey+"TITLE_MOBILE")),b(4),re(j(11,9,e.localizationKey+"DESCRIPTION_1")),b(2),E("ngIf",e.hasEditPermissions),b(1),E("ngIf",e.hasEditPermissions)}}const pL=function(t){return{appName:t}};function $ee(t,n){if(1&t&&(je(0),S(1,"h1",4),V(2),F(3,"translate"),D(),S(4,"p",10),V(5),F(6,"translate"),D(),S(7,"p",11),V(8),F(9,"translate"),D(),ze()),2&t){const e=I();b(2),re(j(3,3,e.localizationKey+"TITLE_EMPTY")),b(3),re(bn(6,5,e.localizationKey+"DESCRIPTION_EMPTY",fn(11,pL,e.appName))),b(3),re(bn(9,8,e.localizationKey+"DESCRIPTION_EMPTY_MOBILE",fn(13,pL,e.appName)))}}const Jee=function(t,n){return{count:t,languages:n}};function ete(t,n){if(1&t&&(S(0,"span",23),F(1,"translate"),V(2),F(3,"translate"),D()),2&t){const e=I().$implicit,i=I(2);E("matTooltip",e.tooltipKey?"":j(1,2,i.tooltipLocalizationKey+"ENTRY_COUNT")),b(2),Ve(" ",bn(3,4,i.localizationKey+(e.languagesString?"ENTRY_COUNT_WITH_LANGUGAES":"ENTRY_COUNT"),Gu(7,Jee,e.entryCount,e.languagesString))," ")}}const tte=function(t){return{count:t}};function nte(t,n){if(1&t&&(S(0,"span",23),F(1,"translate"),V(2),F(3,"translate"),D()),2&t){const e=I().$implicit,i=I(2);E("matTooltip",e.tooltipKey?"":j(1,2,i.tooltipLocalizationKey+"MT_ENTRY_COUNT")),b(2),Ve(" ",bn(3,4,i.localizationKey+"MT_ENTRY_COUNT",fn(7,tte,e.mtEntryCount))," ")}}const ite=function(t){return{termId:t}};function rte(t,n){if(1&t&&(S(0,"span",24),F(1,"translate"),V(2," error "),D()),2&t){const e=I().$implicit,i=I(2);E("matTooltip",bn(1,1,e.errorKey?"ERRORS."+e.errorKey:i.tooltipLocalizationKey+"ATTACH_TO_SYSTEM_ERROR",fn(4,ite,e.termId)))}}function ste(t,n){1&t&&le(0,"mat-spinner",25)}function ate(t,n){if(1&t){const e=Fe();S(0,"button",28),ee("click",function(){me(e);const r=I(2).$implicit;return _e(I(2).attach(r))}),F(1,"translate"),V(2),F(3,"translate"),D()}if(2&t){const e=I(2).$implicit,i=I(2);E("matTooltip",j(1,3,i.tooltipLocalizationKey+"SYNC"))("disabled",e.isImporting),b(2),Ve(" ",j(3,5,i.localizationKey+(i.collectionErrorStatus===e.mtStatus?"SYNC_ERROR":"SYNC"))," ")}}function ote(t,n){if(1&t&&(S(0,"a",29),F(1,"translate"),S(2,"span"),V(3),F(4,"translate"),D()()),2&t){const e=I(2).$implicit,i=I(2);E("matTooltip",e.tooltipKey?"":j(1,3,i.tooltipLocalizationKey+"EDIT")),Me("href",i.getEditLink(e),Qr),b(3),Ve(" ",j(4,5,i.localizationKey+"EDIT")," ")}}function lte(t,n){if(1&t&&(je(0),O(1,ate,4,7,"button",26),O(2,ote,5,7,"a",27),ze()),2&t){const e=I().$implicit;b(1),E("ngIf",e.syncButtonVissible),b(1),E("ngIf",e.termId)}}function cte(t,n){if(1&t&&(S(0,"div",17),F(1,"translate"),S(2,"mat-radio-button",18)(3,"span",19),V(4),D(),O(5,ete,4,10,"span",20),O(6,nte,4,9,"span",20),D(),O(7,rte,3,6,"span",21),O(8,ste,1,0,"mat-spinner",22),O(9,lte,3,2,"ng-container",1),D()),2&t){const e=n.$implicit,i=I(2);E("matTooltip",e.tooltipKey?j(1,10,i.tooltipLocalizationKey+e.tooltipKey):""),b(2),E("value",e)("disabled",null!==e.termId&&e.entryCount<=0),b(1),E("matTooltip",e.tooltipKey?"":e.title),b(1),Ve(" ",e.title,""),b(1),E("ngIf",void 0!==e.entryCount&&!e.mtAttachmentDateTime),b(1),E("ngIf",void 0!==e.mtEntryCount&&e.mtAttachmentDateTime),b(1),E("ngIf",e.mtStatus===i.collectionErrorStatus),b(1),E("ngIf",e.isImporting),b(1),E("ngIf",i.hasEditPermissions)}}function ute(t,n){if(1&t){const e=Fe();S(0,"div",12)(1,"mat-radio-group",13),ee("ngModelChange",function(r){return me(e),_e(I().selected=r)}),F(2,"translate"),S(3,"div",14)(4,"mat-radio-button",15),V(5),F(6,"translate"),D()(),O(7,cte,10,12,"div",16),D()()}if(2&t){const e=I();b(1),E("ngModel",e.selected),Me("aria-label",j(2,5,e.localizationKey+"ARIA_LABELS.RADIO_GROUP")),b(3),E("value",null),b(1),Ve(" ",j(6,7,e.localizationKey+"SELECTED_NONE")," "),b(2),E("ngForOf",e.collections)}}function dte(t,n){if(1&t){const e=Fe();S(0,"footer",30)(1,"button",31),ee("click",function(){return me(e),_e(I().createNew())}),V(2),F(3,"translate"),D()()}if(2&t){const e=I();b(2),Ve(" ",j(3,1,e.localizationKey+"CREATE")," ")}}let hte=(()=>{class t{constructor(e,i,r,s,a,o){this.collectionService=e,this.config=i,this.tldSystem=r,this.dialog=s,this.translate=a,this.alerts=o,this.localizationKey="TERM_COLLECTIONS.",this.tooltipLocalizationKey="TERM_COLLECTIONS.TOOLTIPS.",this.readyStatus="Ready",this.collectionErrorStatus=rr.ERROR}get selected(){return this.collectionService.selected}set selected(e){this.collectionService.selected=e}get collections(){return this.collectionService?.collections}get hasAnyCollections(){return this.collectionService.hasAnyCollections}get isRefreshingCollections(){return this.collectionService?.isRefreshingCollections}get hasEditPermissions(){return this.collectionService.hasEditPermissions}get appName(){return this.config.coreConfig.appName}ngOnInit(){this.subscription=this.tldSystem.getActiveData().subscribe(e=>{this.sourceLanguageCode=e.sourceLang.lang,this.targetLanguageCode=e.targetLang.lang})}ngOnDestroy(){this.subscription.unsubscribe()}getEditLink(e){return`${this.config.termConfig.apiUrl}/collections/${e.termId}/mt/${this.sourceLanguageCode}/${this.targetLanguageCode}`}createNew(){this.translate.get("TERM_COLLECTIONS.DEFAULT_COLLECTION_NAME").subscribe(i=>{this.dialog.open(qee,{minWidth:"300px",maxWidth:"700px",data:{collectionName:i}}).afterClosed().subscribe(s=>{s&&this.collectionService.create([this.sourceLanguageCode,this.targetLanguageCode],s).subscribe(o=>{window.open(this.getEditLink(o),"_blank")},o=>{console.error(o);const l={ErrorCode:ro.COLLECTION_CREATE};throw this.alerts.unhandeledError(l),l})})})}attach(e){this.collectionService.addCollectionToSystem(e)}}return t.\u0275fac=function(e){return new(e||t)(_(hl),_(Gt),_(Xi),_(Aa),_(gi),_(Ps))},t.\u0275cmp=ce({type:t,selectors:[["tld-term-collection-list"]],decls:5,vars:4,consts:[[1,"tld-collection-list-header"],[4,"ngIf"],["class","tld-collection-list-body",4,"ngIf"],["class","tld-collection-list-footer","fxLayout","row",4,"ngIf"],[1,"term-window-title"],["fxHide.lt-sm",""],["fxHide.gt-xs",""],[1,"term-window-description"],["fxHide.lt-sm","",4,"ngIf"],["fxHide.gt-xs","",4,"ngIf"],["fxHide.lt-sm","",1,"term-window-description"],["fxHide.gt-xs","",1,"term-window-description"],[1,"tld-collection-list-body"],[3,"ngModel","ngModelChange"],["fxLayout","row","fxLayoutAlign","start center"],[3,"value"],["fxLayout","row","fxLayoutAlign","start center",3,"matTooltip",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start center",3,"matTooltip"],["fxFlex","","fxLayoutAlign","center center",3,"value","disabled"],[1,"collection-label",3,"matTooltip"],["class","collection-label entries-count-label",3,"matTooltip",4,"ngIf"],["color","accent","class","material-icons",3,"matTooltip",4,"ngIf"],["color","accent","diameter","20",4,"ngIf"],[1,"collection-label","entries-count-label",3,"matTooltip"],["color","accent",1,"material-icons",3,"matTooltip"],["color","accent","diameter","20"],["mat-button","","color","primary",3,"matTooltip","disabled","click",4,"ngIf"],["mat-button","","color","accent","target","_blank","fxHide.lt-sm","",3,"matTooltip",4,"ngIf"],["mat-button","","color","primary",3,"matTooltip","disabled","click"],["mat-button","","color","accent","target","_blank","fxHide.lt-sm","",3,"matTooltip"],["fxLayout","row",1,"tld-collection-list-footer"],["mat-flat-button","","color","primary","fxHide.lt-sm","",3,"click"]],template:function(e,i){1&e&&(S(0,"header",0),O(1,Zee,14,11,"ng-container",1),O(2,$ee,10,15,"ng-container",1),D(),O(3,ute,8,9,"div",2),O(4,dte,4,3,"footer",3)),2&e&&(b(1),E("ngIf",i.hasAnyCollections),b(1),E("ngIf",!i.hasAnyCollections),b(1),E("ngIf",i.hasAnyCollections),b(1),E("ngIf",i.hasEditPermissions))},dependencies:[mc,yc,Gi,xt,En,YI,as,NO,FO,Dn,Xn,qi,Os,Fs,Lt],styles:[".tld-collection-list-body[_ngcontent-%COMP%], .tld-collection-list-header[_ngcontent-%COMP%], .tld-collection-list-footer[_ngcontent-%COMP%]{padding:1em .75em}.collection-label[_ngcontent-%COMP%]{display:block;max-width:215px;overflow:hidden;text-overflow:ellipsis}.collection-label.entries-count-label[_ngcontent-%COMP%]{font-size:small;color:#9aa5b1}[_nghost-%COMP%] .mat-radio-button{overflow:hidden;padding:5px 0}[_nghost-%COMP%] .mat-radio-button .mat-radio-ripple{display:none}[_nghost-%COMP%] .mat-radio-button .mat-radio-label-content{overflow:hidden}"]}),t})(),gL=(()=>{class t{constructor(e){this.translate=e,this.defaultQueryParams={lang:this.translate.currentLang},this.queryString=new ki(this.defaultQueryString),this.translate.onLangChange.subscribe(i=>{this.defaultQueryParams.lang=i.lang,this.queryString.next(this.defaultQueryString)})}get defaultQueryString(){return`lang=${this.defaultQueryParams.lang}`}query(){return this.queryString.asObservable()}}return t.\u0275fac=function(e){return new(e||t)(R(gi))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})(),fte=(()=>{class t{constructor(e,i){this.config=e,this.wtwQueryService=i,this.destroy$=new pe,this.localizationKey="TERM_COLLECTIONS.PROMOTION."}ngOnInit(){this.wtwQueryService.query().pipe(dt(this.destroy$)).subscribe(e=>{this.trialUrl=`${this.config.termConfig.freeTrialUrl}?${e}`,this.learnMoreUrl=`${this.config.termConfig.learnMoreUrl}?${e}`})}ngOnDestroy(){this.destroy$.next(null),this.destroy$.complete()}}return t.\u0275fac=function(e){return new(e||t)(_(Gt),_(gL))},t.\u0275cmp=ce({type:t,selectors:[["tld-term-promotion"]],decls:15,vars:14,consts:[["fxLayout","column","fxLayoutGap","16px",1,"term-promotion-wrapper"],[1,"term-window-title"],["fxLayoutGap","0.75em","fxLayout.lt-sm","column"],["target","_blank","mat-flat-button","","color","primary"],["target","_blank"]],template:function(e,i){1&e&&(S(0,"section",0)(1,"div")(2,"h1",1),V(3),F(4,"translate"),D(),S(5,"p"),V(6),F(7,"translate"),D()(),S(8,"div",2)(9,"a",3),V(10),F(11,"translate"),D(),S(12,"a",4),V(13),F(14,"translate"),D()()()),2&e&&(b(3),re(j(4,6,i.localizationKey+"TITLE")),b(3),re(j(7,8,i.localizationKey+"DESCRIPTION")),b(3),Me("href",i.trialUrl,Qr),b(1),Ve(" ",j(11,10,i.localizationKey+"START_TRIAL")," "),b(2),Me("href",i.learnMoreUrl,Qr),b(1),re(j(14,12,i.localizationKey+"LEARN_MORE")))},dependencies:[YI,Dn,$a,Lt],styles:[".term-promotion-wrapper[_ngcontent-%COMP%]{margin:1em}.term-promotion-wrapper[_ngcontent-%COMP%] button[_ngcontent-%COMP%]{width:100%}.term-promotion-wrapper[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{margin:0}.term-promotion-wrapper[_ngcontent-%COMP%] a.mat-flat-button[_ngcontent-%COMP%]:hover{color:#fff!important}"]}),t})();function pte(t,n){1&t&&(je(0),le(1,"tld-term-collection-list"),ze())}function gte(t,n){1&t&&(je(0),le(1,"tld-term-promotion"),ze())}let mte=(()=>{class t{constructor(e){this.terms=e}get promotion(){return this.terms.shouldShowPromotion}}return t.\u0275fac=function(e){return new(e||t)(_(hl))},t.\u0275cmp=ce({type:t,selectors:[["tld-term-collection"]],decls:3,vars:2,consts:[[1,"tld-collection-list-wrapper"],[4,"ngIf"]],template:function(e,i){1&e&&(S(0,"section",0),O(1,pte,2,0,"ng-container",1),O(2,gte,2,0,"ng-container",1),D()),2&e&&(b(1),E("ngIf",!i.promotion),b(1),E("ngIf",i.promotion))},dependencies:[xt,hte,fte]}),t})();function _te(t,n){1&t&&le(0,"mat-spinner",12)}let mL=(()=>{class t{constructor(e){this.collectionService=e}get selected(){return this.collectionService.selected}set selected(e){this.collectionService.selected=e}menuOpened(){this.collectionService.onMenuOpen()}menuClosed(){this.collectionService.onMenuClose()}}return t.\u0275fac=function(e){return new(e||t)(_(hl))},t.\u0275cmp=ce({type:t,selectors:[["tld-term-menu"]],decls:18,vars:16,consts:[["fxLayoutAlign","center center","fxLayoutGap","8px",3,"ngClass.lt-sm"],["fxHide.lt-md",""],["fxHide.lt-sm","",1,"tld-collection-menu-button",3,"matMenuTriggerFor","matTooltip","isOpened","menuOpened","menuClosed"],["state","matMenuTrigger"],[1,"selected-collection"],["class","selected-col-spinner","color","accent","diameter","16",4,"ngIf"],["mat-icon-button","","fxHide.gt-xs","",3,"matMenuTriggerFor"],["svgIcon","collections_menu"],[1,"tld-collection-menu"],["menu","matMenu"],["fxHide.gt-xs",""],[1,"tld-term-collection",3,"click","keydown"],["color","accent","diameter","16",1,"selected-col-spinner"]],template:function(e,i){if(1&e&&(S(0,"div",0)(1,"span",1),V(2),F(3,"translate"),D(),S(4,"tld-open-close-button",2,3),ee("menuOpened",function(){return i.menuOpened()})("menuClosed",function(){return i.menuClosed()}),F(6,"translate"),S(7,"span",4),V(8),F(9,"translate"),D(),O(10,_te,1,0,"mat-spinner",5),D(),S(11,"button",6),le(12,"mat-icon",7),D()(),S(13,"mat-menu",8,9),le(15,"tld-close-button",10),S(16,"div",11),ee("click",function(s){return s.stopPropagation()})("keydown",function(s){return s.stopPropagation()}),le(17,"tld-term-collection"),D()()),2&e){const r=vt(5),s=vt(14);E("ngClass.lt-sm","tld-term-collection-wrapper-mobile"),b(2),Ve(" ",j(3,10,"TERM_COLLECTIONS.GLOSSARY")," "),b(2),E("matMenuTriggerFor",s)("matTooltip",i.selected?i.selected.title:"")("isOpened",r.menuOpen),Me("aria-label",j(6,12,"TERM_COLLECTIONS.ARIA_LABELS.OTHER_COLLECTIONS")),b(4),Ve(" ",i.selected?i.selected.title:j(9,14,"TERM_COLLECTIONS.SELECTED_NONE")," "),b(2),E("ngIf",null==i.selected?null:i.selected.isImporting),b(1),E("matMenuTriggerFor",s),b(1),Me("color",i.selected?"accent":"")}},dependencies:[xt,En,Gd,so,Qd,as,$a,Xn,Os,Ii,Fs,th,to,mte,Lt],styles:[".tld-collection-menu-button[_ngcontent-%COMP%] .selected-collection[_ngcontent-%COMP%]{overflow:hidden;text-overflow:ellipsis;max-width:140px;display:inline-block}.selected-col-spinner[_ngcontent-%COMP%]{margin-left:5px}"]}),t})(),yte=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[gd,sn,pA,xc,Yc,Ar,eh,Wee,Mx,zR,EY,DY]}),t})();function Ate(t,n){1&t&&rn(0,0,["*ngIf","showContent"])}function vte(t,n){if(1&t&&(je(0),S(1,"span"),V(2),F(3,"titlecase"),D(),ze()),2&t){const e=I();b(2),re(j(3,1,e.titleKey?e.selected[e.titleKey]:e.selected))}}function bte(t,n){if(1&t){const e=Fe();S(0,"button",7),ee("click",function(){me(e);const r=I().$implicit;return _e(I().select(r))}),V(1),F(2,"titlecase"),D()}if(2&t){const e=I().$implicit,i=I();E("disabled",i.disabled),Me("aria-label",i.titleKey?e[i.titleKey]:e),b(1),Ve(" ",j(2,3,i.titleKey?e[i.titleKey]:e)," ")}}function Cte(t,n){if(1&t&&(je(0),O(1,bte,3,5,"button",6),ze()),2&t){const e=n.$implicit;b(1),E("ngIf",e)}}const Tte=["*"];let _L=(()=>{class t{constructor(){this.showContent=!0,this.selectionChange=new Ae}set selectedValue(e){for(const i of this.list)if(this.valueKey&&e===i[this.valueKey]||!this.valueKey&&e===i)return void(this.selected=i);this.selected=null}select(e){this.selectionChange.next(this.valueKey?e?.[this.valueKey]:e)}onMenuOpen(){this.testId&&document.getElementById(this.menu.panelId).setAttribute("data-test-id",this.testId)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["tld-list-menu"]],viewQuery:function(e,i){if(1&e&&it(so,5),2&e){let r;xe(r=ke())&&(i.menu=r.first)}},inputs:{titleKey:"titleKey",list:"list",showContent:"showContent",selectedValue:"selectedValue",disabled:"disabled",ariaLabel:"ariaLabel",valueKey:"valueKey",testId:"testId"},outputs:{selectionChange:"selectionChange"},ngContentSelectors:Tte,decls:7,vars:7,consts:[[3,"isOpened","disabled","matMenuTriggerFor","ariaLabelCode","menuOpened"],["state","matMenuTrigger"],[4,"ngIf"],["fxLayout","column"],["listMenu","matMenu"],[4,"ngFor","ngForOf"],["fxLayoutAlign","start center","mat-menu-item","","class","tld-list-title",3,"disabled","click",4,"ngIf"],["fxLayoutAlign","start center","mat-menu-item","",1,"tld-list-title",3,"disabled","click"]],template:function(e,i){if(1&e&&(Ci(),S(0,"tld-open-close-button",0,1),ee("menuOpened",function(){return i.onMenuOpen()}),O(2,Ate,1,0,"ng-content",2),O(3,vte,4,3,"ng-container",2),D(),S(4,"mat-menu",3,4),O(6,Cte,2,1,"ng-container",5),D()),2&e){const r=vt(1),s=vt(5);E("isOpened",r.menuOpen)("disabled",i.disabled)("matMenuTriggerFor",s)("ariaLabelCode",i.ariaLabel),b(2),E("ngIf",i.showContent),b(1),E("ngIf",!i.showContent&&i.selected),b(3),E("ngForOf",i.list)}},dependencies:[Gi,xt,so,Hc,Qd,Dn,Xn,th,rA],styles:[".tld-list-title[_ngcontent-%COMP%]{font-weight:500}"]}),t})();function Ete(t,n){1&t&&(S(0,"span",2),V(1),F(2,"translate"),D()),2&t&&(b(1),re(j(2,1,"DOMAINS.TITLE")))}let Ste=(()=>{class t{constructor(e,i,r){this.translate=e,this.config=i,this.translateDomainPipe=r,this.selectionChange=new Ae,this.titleKey="title",this.valueKey="domain"}get list(){return this._list}set list(e){this._list=e,this.retranslate()}get selected(){return this._selected}set selected(e){this._selected=e,this.selectedDomainName=this.translateDomainName(e?.title)}get showTitle(){return this.config.coreConfig.showDomainTitle}ngOnInit(){this.translate.stream("DOMAINS").subscribe(e=>{this.translations=e,this.retranslate(),this.currentLanguage=this.translate.currentLang})}select(e){this.selectionChange.next(e)}retranslate(){this.selectedDomainName=this.translateDomainName(this.selected?.title);const e=[];this.list.forEach(i=>{e.push({title:this.translateDomainName(i.title),domain:i.domain})}),this.translatedList=e}translateDomainName(e){return this.translateDomainPipe.transform(e)}}return t.\u0275fac=function(e){return new(e||t)(_(gi),_(Gt),_(aC))},t.\u0275cmp=ce({type:t,selectors:[["tld-domain-list"]],inputs:{list:"list",selected:"selected",disabled:"disabled"},outputs:{selectionChange:"selectionChange"},features:[$e([aC])],decls:7,vars:18,consts:[["fxHide.lt-md","","class","domain-title",4,"ngIf"],["testId","tld-domain-list",3,"list","titleKey","valueKey","disabled","ariaLabel","selectionChange"],["fxHide.lt-md","",1,"domain-title"]],template:function(e,i){1&e&&(O(0,Ete,3,3,"span",0),S(1,"tld-list-menu",1),ee("selectionChange",function(s){return i.select(s)}),F(2,"async"),F(3,"sortTranslations"),F(4,"translate"),V(5),F(6,"titlecase"),D()),2&e&&(E("ngIf",i.showTitle),b(1),E("list",j(2,7,yf(3,9,i.translatedList,null,"title",i.currentLanguage)))("titleKey",i.titleKey)("valueKey",i.valueKey)("disabled",i.disabled)("ariaLabel",j(4,14,"DOMAINS.OPEN_LIST_ARIA_LABEL")),b(4),Ve(" ",j(6,16,i.selectedDomainName),"\n"))},dependencies:[xt,Os,_L,Vf,rA,Lt,jR]}),t})();const Dte=["wrapper"],wte=["fromLabel"],xte=["sourceAside"],kte=["toLabel"],Ite=["domainWrapper"],Mte=["vendorWrapper"],Rte=["collectionWrapper"];function Ote(t,n){1&t&&(S(0,"div",14,15),V(2),F(3,"translate"),D()),2&t&&(b(2),re(j(3,1,"TLD_TRANSLATE.FROM")))}function Lte(t,n){1&t&&ei(0)}function Pte(t,n){if(1&t&&(je(0),O(1,Lte,1,0,"ng-container",16),ze()),2&t){I();const e=vt(22);b(1),E("ngTemplateOutlet",e)}}function Nte(t,n){1&t&&ei(0)}function Fte(t,n){if(1&t&&(S(0,"div",null,17),O(2,Nte,1,0,"ng-container",16),D()),2&t){I();const e=vt(20);b(2),E("ngTemplateOutlet",e)}}function Bte(t,n){1&t&&ei(0)}function Vte(t,n){if(1&t&&(S(0,"div"),O(1,Bte,1,0,"ng-container",16),D()),2&t){I();const e=vt(20);b(1),E("ngTemplateOutlet",e)}}function Ute(t,n){1&t&&(S(0,"div",14,18),V(2),F(3,"translate"),D()),2&t&&(b(2),re(j(3,1,"TLD_TRANSLATE.TO")))}function jte(t,n){1&t&&ei(0)}function zte(t,n){if(1&t&&(je(0),O(1,jte,1,0,"ng-container",16),ze()),2&t){I();const e=vt(22);b(1),E("ngTemplateOutlet",e)}}function Hte(t,n){if(1&t){const e=Fe();S(0,"div",19,20)(2,"tld-list-menu",21),ee("selectionChange",function(r){return me(e),_e(I().domainChange(r))}),F(3,"translate"),D()()}if(2&t){const e=I();b(2),E("list",e.settings.vendors)("titleKey","title")("valueKey","systemId")("disabled",e.disabled)("showContent",!1)("ariaLabel",j(3,7,"TLD_TRANSLATE.VENDORS_ARIA_LABEL"))("selectedValue",e.settings.systemId)}}function Gte(t,n){1&t&&(S(0,"div",null,22),le(2,"tld-term-menu"),D())}function Wte(t,n){1&t&&le(0,"tld-loader",23)}function Kte(t,n){if(1&t&&le(0,"tld-translate-button",24),2&t){const e=I();E("enablePulseAnimation",!0)("fxHide.lt-sm",e.hideOnSmallScreens)("disabled",e.buttonDisabled)}}function Yte(t,n){if(1&t){const e=Fe();S(0,"button",25),ee("click",function(){return me(e),_e(I().swapSourceAndTarget())}),F(1,"translate"),S(2,"span",26),F(3,"translate"),V(4,"swap_horiz"),D()()}if(2&t){const e=I();Io("matTooltip",j(1,3,"TOOLTIPS.SWAP_LANGUAGES")),E("disabled",e.isSwapLanguagesDisabled),b(2),Me("aria-label",j(3,5,"ARIA_LABELS.SWAP_LANGUAGES"))}}function qte(t,n){if(1&t){const e=Fe();S(0,"div",28,29)(2,"tld-domain-list",30),ee("selectionChange",function(r){return me(e),_e(I(2).domainChange(r))}),D()()}if(2&t){const e=I(2);b(2),E("list",e.settings.domains.domains)("selected",e.settings.domains.active)("selected",e.settings.domains.active)("disabled",e.disabled)}}function Xte(t,n){1&t&&O(0,qte,3,4,"div",27),2&t&&E("ngIf",I().showDomains)}let Qte=(()=>{class t{constructor(e,i,r){this.config=e,this.tldSystem=i,this.elRef=r,this.buttonDisabled=!1,this.showTranslateButton=!0,this.hideOnSmallScreens=!0,this.hideLangMenuLabels=!1,this.onDomainChange=new Ae,this.onActionClick=new Ae,this.onSourceLanguageChange=new Ae,this.onTargetLanguageChange=new Ae,this.onLanguageSwap=new Ae,this.onVendorChange=new Ae,this.destroy$=new pe,this.srcLangTestId="src-lang-menu",this.trgLangTestId="trg-lang-menu"}onResize(){const i=this.getElementRefWidth(this.wrapper),s=this.useParentWidth?this.elRef?.nativeElement?.parentElement.offsetWidth||0:i,a=this.getElementRefWidth(this.fromLabel),o=this.getElementRefWidth(this.sourceAside),l=this.getElementRefWidth(this.toLabel),u=this.getElementRefWidth(this.domainWrapper),h=this.getElementRefWidth(this.vendorWrapper),p=this.getElementRefWidth(this.collectionWrapper),k=Math.floor((s-a-o-l-u-h-p-100)/2/110);this.languageCountByScreenSize=k>0?k:1}get visibleLanguageCount(){return this.languageCountByScreenSize&&this.languageCountByScreenSize<this.maxDisplayedLanguages?this.languageCountByScreenSize:this.maxDisplayedLanguages}get collectionsVisible(){return this.isCollectionsActivated&&this.isTerminologySupported}get showVendors(){return this.config?.coreConfig.showVendors&&this.settings.vendors?.length>0}get showDomains(){return this.config?.coreConfig.showDomains&&!this.showDomainsWithLanguageName&&this.settings?.domains?.domains?.length>1&&this.settings?.source}get isSwapLanguagesDisabled(){return this.disabled||!this.settings.swapActive}get domainSide(){return this.config.coreConfig.domainSide}get swapIconPosition(){return this.config.coreConfig.swapIconPosition}ngOnInit(){this.subscribeToActiveData()}ngAfterViewInit(){this.onResize()}ngOnDestroy(){this.destroy$.next(null),this.destroy$.complete()}actionClick(){this.onActionClick.emit()}domainChange(e){this.onDomainChange.emit(e)}sourceLangChange(e){this.onSourceLanguageChange.emit(e)}swapSourceAndTarget(){this.onLanguageSwap.emit()}targetLangChange(e){this.onTargetLanguageChange.emit(e)}vendorChange(e){this.onVendorChange.emit(e)}getElementRefWidth(e){return e?.nativeElement.offsetWidth||0}subscribeToActiveData(){this.tldSystem.getActiveData().pipe(dt(this.destroy$)).subscribe(e=>{this.isTerminologySupported=!!e&&this.tldSystem.isTerminologySupported(e.system)})}}return t.\u0275fac=function(e){return new(e||t)(_(Gt),_(Xi),_(be))},t.\u0275cmp=ce({type:t,selectors:[["tld-translate-switcher"]],viewQuery:function(e,i){if(1&e&&(it(Dte,5),it(wte,5),it(xte,5),it(kte,5),it(Ite,5),it(Mte,5),it(Rte,5)),2&e){let r;xe(r=ke())&&(i.wrapper=r.first),xe(r=ke())&&(i.fromLabel=r.first),xe(r=ke())&&(i.sourceAside=r.first),xe(r=ke())&&(i.toLabel=r.first),xe(r=ke())&&(i.domainWrapper=r.first),xe(r=ke())&&(i.vendorWrapper=r.first),xe(r=ke())&&(i.collectionWrapper=r.first)}},hostBindings:function(e,i){1&e&&ee("resize",function(){return i.onResize()},0,D_)},inputs:{buttonDisabled:"buttonDisabled",showTranslateButton:"showTranslateButton",hideOnSmallScreens:"hideOnSmallScreens",disabled:"disabled",hideLangMenuLabels:"hideLangMenuLabels",maxDisplayedLanguages:"maxDisplayedLanguages",collections:"collections",showDomainsWithLanguageName:"showDomainsWithLanguageName",isCollectionsActivated:"isCollectionsActivated",useParentWidth:"useParentWidth",loader:"loader",settings:"settings"},outputs:{onDomainChange:"onDomainChange",onActionClick:"onActionClick",onSourceLanguageChange:"onSourceLanguageChange",onTargetLanguageChange:"onTargetLanguageChange",onLanguageSwap:"onLanguageSwap",onVendorChange:"onVendorChange"},decls:23,vars:25,consts:[["fxLayout","row","fxLayoutAlign","center center",1,"tld-translate-switcher-container",3,"ngClass.lt-md","ngClass.lt-sm"],["wrapper",""],["fxFlex","","fxLayout","row","fxLayoutAlign","start center"],["fxHide.lt-md","",4,"ngIf"],["id","tld-source-language-list",3,"disabled","testId","languages","selected","maxDisplayedLanguages","onLanguageChange"],[4,"ngIf"],["fxFlex","","fxLayout","row","fxLayoutAlign","start center","fxLayoutAlign.lt-sm","end center"],["id","tld-target-language-list",3,"disabled","languages","selected","maxDisplayedLanguages","testId","showDomainsWithLanguageName","onLanguageChange","onDomainChange"],["class","tld-translate-vendor-selection","fxLayoutAlign","center center",4,"ngIf"],["fxLayout","row","fxLayoutGap.gt-xs","16px"],["fxHide.lt-sm","",4,"ngIf"],["class","switcher-translate-button",3,"enablePulseAnimation","fxHide.lt-sm","disabled",4,"ngIf"],["swapButtonTemplate",""],["domainTemplate",""],["fxHide.lt-md",""],["fromLabel",""],[4,"ngTemplateOutlet"],["sourceAside",""],["toLabel",""],["fxLayoutAlign","center center",1,"tld-translate-vendor-selection"],["vendorWrapper",""],["testId","tld-vendor-list",3,"list","titleKey","valueKey","disabled","showContent","ariaLabel","selectedValue","selectionChange"],["collectionWrapper",""],["fxHide.lt-sm",""],[1,"switcher-translate-button",3,"enablePulseAnimation","fxHide.lt-sm","disabled"],["mat-icon-button","","aria-label","swap languages","color","primary",1,"swap-languages-button",3,"disabled","matTooltip","click"],["aria-hidden","false",1,"material-icons"],["class","tld-translate-domain-selection","fxLayoutAlign","center center",4,"ngIf"],["fxLayoutAlign","center center",1,"tld-translate-domain-selection"],["domainWrapper",""],["fxLayoutAlign","center center",3,"list","selected","disabled","selectionChange"]],template:function(e,i){1&e&&(S(0,"div",0,1)(2,"div",2),O(3,Ote,4,3,"div",3),S(4,"div",2)(5,"tld-lang-list",4),ee("onLanguageChange",function(s){return i.sourceLangChange(s)}),D(),O(6,Pte,2,1,"ng-container",5),D(),O(7,Fte,3,1,"div",5),D(),O(8,Vte,2,1,"div",5),S(9,"div",6),O(10,Ute,4,3,"div",3),S(11,"div",2)(12,"tld-lang-list",7),ee("onLanguageChange",function(s){return i.targetLangChange(s)})("onDomainChange",function(s){return i.domainChange(s)}),O(13,zte,2,1,"ng-container",5),O(14,Hte,4,9,"div",8),D()(),S(15,"div",9),O(16,Gte,3,0,"div",5),O(17,Wte,1,0,"tld-loader",10),O(18,Kte,1,3,"tld-translate-button",11),D()()(),O(19,Yte,5,7,"ng-template",null,12,pi),O(21,Xte,1,1,"ng-template",null,13,pi)),2&e&&(Mt("tld-switcher-with-collections",i.collectionsVisible),E("ngClass.lt-md","tld-translate-switcher-container-tablet")("ngClass.lt-sm","tld-translate-switcher-container-mobile"),b(3),E("ngIf",!i.hideLangMenuLabels),b(2),E("disabled",i.disabled)("testId",i.srcLangTestId)("languages",i.settings.sourceLanguageList)("selected",i.settings.source)("maxDisplayedLanguages",i.visibleLanguageCount),b(1),E("ngIf","src"===i.domainSide),b(1),E("ngIf","src"===i.swapIconPosition),b(1),E("ngIf","center"===i.swapIconPosition),b(2),E("ngIf",!i.hideLangMenuLabels),b(2),E("disabled",i.disabled)("languages",i.settings.targetLanguageList)("selected",i.settings.target)("maxDisplayedLanguages",i.visibleLanguageCount)("testId",i.trgLangTestId)("showDomainsWithLanguageName",i.showDomainsWithLanguageName),b(1),E("ngIf","trg"===i.domainSide),b(1),E("ngIf",i.showVendors),b(2),E("ngIf",i.collectionsVisible),b(1),E("ngIf",i.loader),b(1),E("ngIf",i.showTranslateButton&&!i.loader))},dependencies:[xt,Vo,Dn,$a,Xn,qi,Os,Ii,En,as,WZ,tL,lC,_L,mL,Ste,Lt],styles:[".tld-translate-switcher-container[_ngcontent-%COMP%]:not(.tld-translate-switcher-container-tablet, .tld-translate-switcher-container-mobile)[_ngcontent-%COMP%] tld-lang-list[_ngcontent-%COMP%]{margin:0 10px}.tld-translate-switcher-container-mobile [_nghost-%COMP%] button{padding:0!important}.swap-icon[_ngcontent-%COMP%]{color:#5a6672}.switcher-translate-button[_ngcontent-%COMP%]{min-width:100px}mat-select[_ngcontent-%COMP%]{min-width:75px;max-width:125px}.swap-languages-button[disabled][_ngcontent-%COMP%]{cursor:not-allowed}.tld-translate-domain-selection[_ngcontent-%COMP%], tld-translate-vendor-selection[_ngcontent-%COMP%]{height:100%}tld-loader[_ngcontent-%COMP%]{margin:auto}"]}),t})();var Tr=(()=>{return(t=Tr||(Tr={}))[t.NONE=0]="NONE",t[t.SOURCE=1]="SOURCE",t[t.TARGET=2]="TARGET",Tr;var t})();let Kg=(()=>{class t{constructor(e){this.systemService=e,this._openedMenu=Tr.NONE,this.menuToggleEvent=new pe}get openedMenu(){return this._openedMenu}get isSourceOpened(){return this._isSourceOpened}get isTargetOpened(){return this._isTargetOpened}sourceLanguageClicked(){this.changeOpenedMenu(Tr.SOURCE)}targetLanguageClicked(){this.changeOpenedMenu(Tr.TARGET)}languageSelected(e){this.isSourceOpened?this.systemService.changeSourceLanguage(e.code):this.isTargetOpened&&this.systemService.changeTargetLanguage(e.code)}menuToggled(){return this.menuToggleEvent.asObservable()}closeOpened(){this.changeOpenedMenu(Tr.NONE)}changeOpenedMenu(e){this._openedMenu=e===this._openedMenu?Tr.NONE:e,this.toggleOpenedMenu()}toggleOpenedMenu(){this._isSourceOpened=this.openedMenu===Tr.SOURCE,this._isTargetOpened=this.openedMenu===Tr.TARGET,this.menuToggleEvent.next(this.openedMenu)}}return t.\u0275fac=function(e){return new(e||t)(R(Xi))},t.\u0275prov=q({token:t,factory:t.\u0275fac,providedIn:"root"}),t})();function Zte(t,n){1&t&&ei(0)}function $te(t,n){1&t&&ei(0)}function Jte(t,n){1&t&&(S(0,"div",null,9),le(2,"tld-term-menu"),D())}const ene=function(t,n,e){return{language:t,localizationKey:"SYSTEM_PICKER.SOURCE",isOpened:n,isSource:!0,ariaLabelCode:e}},tne=function(t,n,e){return{language:t,localizationKey:"SYSTEM_PICKER.TARGET",isOpened:n,isSource:!1,ariaLabelCode:e}};function nne(t,n){if(1&t){const e=Fe();je(0),S(1,"div",5),O(2,Zte,1,0,"ng-container",6),S(3,"button",7),ee("click",function(){return me(e),_e(I().swap())}),F(4,"translate"),S(5,"span",8),F(6,"translate"),V(7,"swap_horiz"),D()()(),S(8,"div",5),O(9,$te,1,0,"ng-container",6),O(10,Jte,3,0,"div",1),D(),ze()}if(2&t){const e=I(),i=vt(7);b(2),E("ngTemplateOutlet",i)("ngTemplateOutletContext",Lo(12,ene,e.sourceLanguage,e.isSourceOpened,e.sourceAriaLabel)),b(1),Io("matTooltip",j(4,8,"TOOLTIPS.SWAP_LANGUAGES")),E("disabled",!e.canSwap),b(2),Me("aria-label",j(6,10,"ARIA_LABELS.SWAP_LANGUAGES")),b(4),E("ngTemplateOutlet",i)("ngTemplateOutletContext",Lo(16,tne,e.targetLanguage,e.isTargetOpened,e.targetAriaLabel)),b(1),E("ngIf",e.collectionsVisible)}}const ine=function(t){return{default:t}};function rne(t,n){if(1&t&&(je(0),S(1,"span"),V(2,"("),D(),S(3,"span",10),V(4),F(5,"translate"),F(6,"uppercase"),D(),S(7,"span"),V(8,")"),D(),ze()),2&t){const e=I(2);b(4),re(bn(5,1,"DOMAINS."+j(6,4,e.activeDomainKey),fn(6,ine,e.activeDomainKey)))}}function sne(t,n){if(1&t&&(S(0,"span"),V(1),F(2,"translate"),F(3,"uppercase"),D(),O(4,rne,9,8,"ng-container",1)),2&t){const e=n.language,i=n.showDomain,r=I();b(1),Ve(" ",j(2,2,r.languageLocalizationKey+"."+j(3,4,e.lang))," "),b(3),E("ngIf",i&&r.domainLength>1)}}function ane(t,n){1&t&&(V(0),F(1,"translate")),2&t&&Ve(" ",j(1,1,n.localizationKey),"\n")}function one(t,n){1&t&&ei(0)}const lne=function(t,n,e){return{language:t,localizationKey:n,showDomain:e}};function cne(t,n){if(1&t){const e=Fe();S(0,"tld-open-close-button",11),ee("click",function(r){const a=me(e).isSource,o=I();return _e(a?o.sourceClick(r):o.targetClick(r))}),S(1,"span",12),O(2,one,1,0,"ng-container",6),D()()}if(2&t){const e=n.language,i=n.isOpened,r=n.localizationKey,s=n.isSource,a=n.ariaLabelCode;I();const o=vt(5),l=vt(3);Mt("opened",i),E("ngClass",s?"source":"target")("ngClass.lt-sm","mobile")("disableFocusOnAction",!0)("isOpened",i)("ariaLabelCode",a),b(1),E("ngClass.lt-md","text-l-semi-bold")("ngClass.lt-sm","text-m-semi-bold mobile-domain-container"),b(1),E("ngTemplateOutlet",i?o:l)("ngTemplateOutletContext",Lo(11,lne,e,r,!s))}}let une=(()=>{class t{constructor(e,i){this.systemPickerService=e,this.tldSystem=i,this.sourceAriaLabel="SYSTEM_PICKER.OPEN_SOURCE_ARIA_LABEL",this.targetAriaLabel="SYSTEM_PICKER.OPEN_TARGET_ARIA_LABEL",this.domainLength=0,this.languageLocalizationKey="LANGUAGES"}get isSourceOpened(){return this.systemPickerService.isSourceOpened}get isTargetOpened(){return this.systemPickerService.isTargetOpened}get canSwap(){return this.tldSystem.canSwapLanguages}get sourceLanguage(){return this.activeData?.sourceLang}get targetLanguage(){return this.activeData?.targetLang}get isDataLoaded(){return this.activeData}get collectionsVisible(){return this.isCollectionsActivated&&this.isTerminologySupported}ngOnInit(){this.subscribeToActiveData()}sourceClick(e){e.stopPropagation(),this.systemPickerService.sourceLanguageClicked()}targetClick(e){e.stopPropagation(),this.systemPickerService.targetLanguageClicked()}swap(){this.tldSystem.swapSystemLanguages()}ngOnDestroy(){this.subscription.unsubscribe()}subscribeToActiveData(){this.subscription=this.tldSystem.getActiveData().subscribe(e=>{!e||(this.activeData=e,this.activeDomainKey=this.activeData.domains.active.title,this.domainLength=this.activeData.domains?.domains?.length??0,this.isTerminologySupported=this.tldSystem.isTerminologySupported(this.activeData.system))})}}return t.\u0275fac=function(e){return new(e||t)(_(Kg),_(Xi))},t.\u0275cmp=ce({type:t,selectors:[["tld-translation-system-picker"]],inputs:{isCollectionsActivated:"isCollectionsActivated"},decls:8,vars:1,consts:[["fxFlex","","fxLayout","row"],[4,"ngIf"],["languageName",""],["openedDropdown",""],["languageDropdownTrigger",""],["fxFlex","","fxLayoutAlign","space-between center"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],["mat-icon-button","","aria-label","swap languages","color","primary",1,"swap-languages-button",3,"disabled","matTooltip","click"],["aria-hidden","false",1,"material-icons"],["collectionWrapper",""],[1,"domain"],[1,"system-picker-button",3,"ngClass","ngClass.lt-sm","disableFocusOnAction","isOpened","ariaLabelCode","click"],[3,"ngClass.lt-md","ngClass.lt-sm"]],template:function(e,i){1&e&&(S(0,"div",0),O(1,nne,11,20,"ng-container",1),D(),O(2,sne,5,6,"ng-template",null,2,pi),O(4,ane,2,3,"ng-template",null,3,pi),O(6,cne,3,15,"ng-template",null,4,pi)),2&e&&(b(1),E("ngIf",i.isDataLoaded))},dependencies:[oa,xt,Vo,Dn,Xn,qi,Ii,En,as,th,mL,$u,Lt],styles:["[_nghost-%COMP%]{display:flex}.swap-languages-button[_ngcontent-%COMP%]{color:var(--base-40)!important}.target[_ngcontent-%COMP%]{margin-left:3.25em}.system-picker-button.mobile[_ngcontent-%COMP%]{margin-left:1.25rem}.mobile-domain-container[_ngcontent-%COMP%]{display:flex}.mobile-domain-container[_ngcontent-%COMP%] .domain[_ngcontent-%COMP%]{text-overflow:ellipsis;overflow:hidden;max-width:3.5rem;white-space:nowrap;display:inline-block}"]}),t})();const dne=["*"];let dC=(()=>{class t{constructor(){this.onClick=new Ae}clicked(e){e.stopPropagation(),this.onClick.emit()}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["translation-system-picker-button"]],inputs:{active:"active",tooltip:"tooltip"},outputs:{onClick:"onClick"},ngContentSelectors:dne,decls:2,vars:3,consts:[["mat-button","",1,"system-picker-button",3,"matTooltip","click"]],template:function(e,i){1&e&&(Ci(),S(0,"button",0),ee("click",function(s){return i.clicked(s)}),rn(1),D()),2&e&&(Mt("active",i.active),E("matTooltip",i.tooltip?i.tooltip:""))},dependencies:[En,as],styles:["button[_ngcontent-%COMP%]{font-size:1rem;font-weight:400}button[_ngcontent-%COMP%] .mat-button-wrapper{min-width:32px;text-align:left;display:inline-block}"]}),t})();function hne(t,n){if(1&t&&(S(0,"h1",2),V(1),F(2,"translate"),D()),2&t){const e=I();b(1),re(j(2,1,e.titleKey))}}function fne(t,n){if(1&t){const e=Fe();S(0,"li")(1,"translation-system-picker-button",7),ee("onClick",function(){const s=me(e).$implicit;return _e(I(2).languageClick(s))}),V(2),D()()}if(2&t){const e=n.$implicit,i=I(2);b(1),E("active",i.activeCode===e.code),b(1),Ve(" ",e.displayName," ")}}function pne(t,n){if(1&t&&(S(0,"div",3)(1,"span",4),V(2),F(3,"uppercase"),D(),S(4,"ul",5),O(5,fne,3,2,"li",6),D()()),2&t){const e=n.$implicit;b(2),re(j(3,3,e.groupedBy)),b(2),E("ngClass.lt-sm","mobile"),b(1),E("ngForOf",e.group)}}let gne=(()=>{class t{constructor(){this.languages=[],this.clicked=new Ae,this.titleKey="SYSTEM_PICKER.ALL_LANGUAGES"}languageClick(e){this.clicked.emit(e)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["tld-translation-system-picker-language-list"]],inputs:{languages:"languages",activeCode:"activeCode",showTitle:"showTitle"},outputs:{clicked:"clicked"},decls:2,vars:2,consts:[["class","text-m-semi-bold",4,"ngIf"],["class","language-group",4,"ngFor","ngForOf"],[1,"text-m-semi-bold"],[1,"language-group"],[1,"text-l-semi-bold","grouped-by-symbol"],[3,"ngClass.lt-sm"],[4,"ngFor","ngForOf"],[3,"active","onClick"]],template:function(e,i){1&e&&(O(0,hne,3,3,"h1",0),O(1,pne,6,5,"div",1)),2&e&&(E("ngIf",i.showTitle),b(1),E("ngForOf",i.languages))},dependencies:[Gi,xt,Ii,dC,$u,Lt],styles:["@media (min-width: 600px){[_nghost-%COMP%]{margin-left:-1rem;column-count:3;column-gap:1rem;column-width:13.75rem;column-fill:balance}}ul[_ngcontent-%COMP%]{list-style-type:none;padding:0;margin:0}ul.mobile[_ngcontent-%COMP%]{width:100%}ul[_ngcontent-%COMP%] button[_ngcontent-%COMP%]{line-height:1.625rem;margin-bottom:1rem}h1[_ngcontent-%COMP%]{margin:0 0 1rem}.language-group[_ngcontent-%COMP%]{display:flex;flex-direction:row;justify-content:start;align-items:flex-start}.grouped-by-symbol[_ngcontent-%COMP%]{width:1.5rem;margin-top:-1px!important;display:inline-flex;align-items:center;height:36px}@media (min-width: 600px){.grouped-by-symbol[_ngcontent-%COMP%]{margin:0 0 0 1rem}}@media (min-width: 0) and (max-width: 599.9px){.grouped-by-symbol[_ngcontent-%COMP%]{margin:0}}"]}),t})();function mne(t,n){if(1&t&&(S(0,"div",3)(1,"span",4),V(2),F(3,"translate"),D()()),2&t){const e=I();b(1),E("ngClass.lt-sm","text-m-semi-bold"),b(1),re(j(3,2,e.titleKey))}}function _ne(t,n){if(1&t){const e=Fe();S(0,"translation-system-picker-button",5),ee("onClick",function(){const s=me(e).$implicit;return _e(I().changeSystem(s))}),V(1),D()}if(2&t){const e=n.$implicit;E("active",I().activeId===e.id),b(1),Ve(" ",e.displayName," ")}}let yne=(()=>{class t{constructor(){this.clicked=new Ae}changeSystem(e){this.clicked.emit(e)}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["tld-translation-system-picker-system-list"]],inputs:{systems:"systems",titleKey:"titleKey",activeId:"activeId",showTitle:"showTitle"},outputs:{clicked:"clicked"},decls:3,vars:3,consts:[[3,"ngClass.lt-sm"],["class","span-container",4,"ngIf"],[3,"active","onClick",4,"ngFor","ngForOf"],[1,"span-container"],[1,"text-l-semi-bold",3,"ngClass.lt-sm"],[3,"active","onClick"]],template:function(e,i){1&e&&(S(0,"div",0),O(1,mne,4,4,"div",1),O(2,_ne,2,2,"translation-system-picker-button",2),D()),2&e&&(E("ngClass.lt-sm","mobile"),b(1),E("ngIf",i.showTitle),b(1),E("ngForOf",i.systems))},dependencies:[Gi,xt,Ii,dC,Lt],styles:["[_nghost-%COMP%]{display:inline-block}[_nghost-%COMP%] .span-container[_ngcontent-%COMP%]{margin:0 0 1.25rem}[_nghost-%COMP%] .system-picker-button[_ngcontent-%COMP%]{width:100%;text-align:left}[_nghost-%COMP%] .system-picker-button[_ngcontent-%COMP%]:not(.active){color:var(--base-10)}[_nghost-%COMP%] .mobile[_ngcontent-%COMP%] .span-container[_ngcontent-%COMP%]{margin:0 0 .75rem}[_nghost-%COMP%] [_ngcontent-%COMP%]:not(.mobile) .span-container[_ngcontent-%COMP%]{padding-left:1rem}"]}),t})();function Ane(t,n){if(1&t){const e=Fe();S(0,"tld-translation-system-picker-language-list",5),ee("clicked",function(r){return me(e),_e(I(2).languageClick(r))}),D()}if(2&t){const e=I(2);E("languages",e.groupedLanguages)("activeCode",e.activeLanguageCode)("showTitle",e.showLanguageTitle)}}function vne(t,n){if(1&t){const e=Fe();S(0,"tld-translation-system-picker-system-list",6),ee("clicked",function(r){return me(e),_e(I(2).systemClick(r))}),D()}if(2&t){const e=I(2);E("systems",e.systemList)("showTitle",e.showSystemTitle)("titleKey",e.systemListTitle)("activeId",e.activeSystemId)}}function bne(t,n){if(1&t&&(S(0,"div",2),O(1,Ane,1,3,"tld-translation-system-picker-language-list",3),O(2,vne,1,4,"tld-translation-system-picker-system-list",4),D()),2&t){const e=I();b(1),E("ngIf",e.showLanguages),b(1),E("ngIf",e.showSystems&&e.systemList.length>0)}}function Cne(t,n){if(1&t){const e=Fe();S(0,"translation-system-picker-button",10),ee("onClick",function(){const s=me(e).$implicit;return _e(I(2).filteredLanguageClick(s))}),le(1,"span",11),D()}if(2&t){const e=n.$implicit;E("active",I(2).activeLanguageCode===e.code),b(1),E("innerHtml",e.displayName,dn)}}function Tne(t,n){1&t&&(S(0,"p",12),V(1),F(2,"translate"),D()),2&t&&(b(1),Ve("",j(2,1,"SYSTEM_PICKER.FILTER_NO_RESULTS")," "))}function Ene(t,n){if(1&t&&(S(0,"div",7)(1,"ul")(2,"li"),O(3,Cne,2,2,"translation-system-picker-button",8),D()(),O(4,Tne,3,3,"p",9),D()),2&t){const e=I();b(3),E("ngForOf",e.filteredLanguages),b(1),E("ngIf",!e.filteredLanguages.length)}}let yL=(()=>{class t{constructor(e,i,r){this.systemService=e,this.translate=i,this.systemPickerService=r,this.onSystemClick=new Ae,this.onLanguageClick=new Ae,this.onFilteredLanguageClick=new Ae,this.languagesLocalizationKey="LANGUAGES",this.domainsLocalizationKey="DOMAINS",this.recentSystemTitleKey="SYSTEM_PICKER.RECENT_SYSTEM_TITLE",this.domainsTitleKey="SYSTEM_PICKER.SELECT_DOMAIN",this.filterHighlightPipe=new TY}set filterText(e){this.filterLanguages(e)}get showSystems(){return!this.config?.hideSystems}get showLanguages(){return!this.config?.hideLanguages}get showSystemTitle(){return!this.config?.hideSystemTitle}get showLanguageTitle(){return this.config?.showLanguageTitle}get recentSystems(){return this.activeData?.recentSystems??[]}get domains(){return this.activeData?.domains.domains??[]}get activeSystemId(){return this.activeData?.systemId}ngOnInit(){this.menuState=this.systemPickerService.openedMenu,this.subscribeToActiveSystemData(),this.subscribeToLanguageChange(),this.subscribeToMenuToggle()}ngOnDestroy(){this.systemPickerService.closeOpened(),this.systemSubscription.unsubscribe(),this.langSubscription.unsubscribe(),this.menuToggleSubscription.unsubscribe()}close(){this.systemPickerService.closeOpened()}filterLanguages(e){if(!e?.length)return this.filteredLanguages=null,void(this.showFiltered=!1);this.showFiltered=!0,this.filteredLanguages=this.filterHighlightPipe.transform(this.allLanguages,e,"displayName")}languageClick(e){this.systemPickerService.languageSelected(e),this.onLanguageClick.emit(e)}filteredLanguageClick(e){this.systemPickerService.languageSelected(e),this.onFilteredLanguageClick.emit(e)}systemClick(e){this.systemService.changeSystem(e.id),this.onSystemClick.emit(e)}subscribeToMenuToggle(){this.menuToggleSubscription=this.systemPickerService.menuToggled().subscribe(e=>{this.onMenuToggle(e)})}onMenuToggle(e){this.menuState!==e&&(this.menuState=e,this.setActiveLanguageCode(),this.retranslate())}setActiveLanguageCode(){!this.activeData||(this.activeLanguageCode=this.menuState===Tr.SOURCE?this.activeData.sourceLang.lang:this.menuState===Tr.TARGET?this.activeData.targetLang.lang:null)}subscribeToActiveSystemData(){this.systemSubscription=this.systemService.getActiveData().subscribe(e=>{!e||(this.activeData=e,this.setActiveLanguageCode(),this.retranslate())})}subscribeToLanguageChange(){this.langSubscription=this.translate.stream([this.languagesLocalizationKey,this.domainsLocalizationKey]).subscribe(e=>{this.languageAndDomainTranslations=e,this.retranslate()})}retranslate(){!this.languageAndDomainTranslations||!this.activeData||(this.translateSystems(),this.sortLanguages())}translateSystems(){this.systemPickerService.isSourceOpened?this.systemList=this.getTranslatedRecentSystems():this.systemPickerService.isTargetOpened&&(this.systemList=this.getTranslatedDomains())}getTranslatedDomains(){this.systemListTitle=this.domainsTitleKey;const e=[];return this.domains.forEach(i=>{e.push({displayName:this.getDomainDisplayName(i.title),id:i.domain})}),e.sort((i,r)=>i.displayName.localeCompare(r.displayName))}getTranslatedRecentSystems(){this.systemListTitle=this.recentSystemTitleKey;const e=[];return this.recentSystems.forEach(i=>{const r={id:i.id,displayName:`${this.getLanguageDisplayName(i.sourceLanguage)} - ${this.getLanguageDisplayName(i.targetLanguage)} (${this.getDomainDisplayName(i.domain)})`};e.push(r)}),e}sortLanguages(){let e;if(this.systemPickerService.isSourceOpened)e=this.activeData.sourceLangList;else{if(!this.systemPickerService.isTargetOpened)return;e=this.activeData.targetLangList}this.allLanguages=[],this.groupedLanguages=this.systemService.getUniqueLanguages(e).reduce((i,r)=>{const s={code:r,displayName:this.languageAndDomainTranslations[this.languagesLocalizationKey][r.toUpperCase()]??r.toUpperCase()},a=s.displayName[0].toUpperCase(),o=i.findIndex(l=>l.groupedBy===a);return this.allLanguages.push(s),-1===o?i.push({groupedBy:a,group:[s]}):(i[o].group.push(s),i[o].group.sort((l,u)=>l.displayName>u.displayName?1:-1)),i},[]).sort((i,r)=>i.groupedBy>r.groupedBy?1:-1)}getLanguageDisplayName(e){return this.languageAndDomainTranslations[this.languagesLocalizationKey][e.toUpperCase()]}getDomainDisplayName(e){return this.languageAndDomainTranslations[this.domainsLocalizationKey][e.split(/[ -]+/).join("_").toUpperCase()]??e}}return t.\u0275fac=function(e){return new(e||t)(_(Xi),_(gi),_(Kg))},t.\u0275cmp=ce({type:t,selectors:[["tld-translation-system-picker-dropdown-body"]],inputs:{filterText:"filterText",config:"config"},outputs:{onSystemClick:"onSystemClick",onLanguageClick:"onLanguageClick",onFilteredLanguageClick:"onFilteredLanguageClick"},decls:3,vars:2,consts:[["class","dropdown-body",4,"ngIf","ngIfElse"],["filter",""],[1,"dropdown-body"],[3,"languages","activeCode","showTitle","clicked",4,"ngIf"],[3,"systems","showTitle","titleKey","activeId","clicked",4,"ngIf"],[3,"languages","activeCode","showTitle","clicked"],[3,"systems","showTitle","titleKey","activeId","clicked"],[1,"filtered-items"],[3,"active","onClick",4,"ngFor","ngForOf"],["class","no-results-message",4,"ngIf"],[3,"active","onClick"],[3,"innerHtml"],[1,"no-results-message"]],template:function(e,i){if(1&e&&(O(0,bne,3,2,"div",0),O(1,Ene,5,2,"ng-template",null,1,pi)),2&e){const r=vt(2);E("ngIf",!i.showFiltered)("ngIfElse",r)}},dependencies:[Gi,xt,gne,yne,dC,Lt],styles:["[_nghost-%COMP%]{display:inline-block;width:100%}[_nghost-%COMP%] .no-results-message[_ngcontent-%COMP%]{margin:0}.dropdown-body[_ngcontent-%COMP%]{display:flex;flex:1 1 100%}@media (min-width: 600px){.dropdown-body[_ngcontent-%COMP%]{flex-direction:row}.dropdown-body[_ngcontent-%COMP%] tld-translation-system-picker-language-list[_ngcontent-%COMP%]{padding-right:1rem;border-right:1px solid var(--base-40);order:0}.dropdown-body[_ngcontent-%COMP%] tld-translation-system-picker-system-list[_ngcontent-%COMP%]{padding-left:2rem;order:1}}@media (min-width: 0) and (max-width: 599.9px){.dropdown-body[_ngcontent-%COMP%]{flex-direction:column}.dropdown-body[_ngcontent-%COMP%] tld-translation-system-picker-language-list[_ngcontent-%COMP%], .dropdown-body[_ngcontent-%COMP%] tld-translation-system-picker-system-list[_ngcontent-%COMP%], .dropdown-body[_ngcontent-%COMP%] .filtered-items[_ngcontent-%COMP%]{padding-top:1rem;order:1}.dropdown-body[_ngcontent-%COMP%] tld-translation-system-picker-system-list[_ngcontent-%COMP%]{padding-bottom:1rem;order:0}.dropdown-body[_ngcontent-%COMP%] tld-translation-system-picker-language-list[_ngcontent-%COMP%] + tld-translation-system-picker-system-list[_ngcontent-%COMP%]{border-bottom:1px solid var(--base-40)}}@media (min-width: 0) and (max-width: 599.9px){.filtered-items[_ngcontent-%COMP%]{padding-top:1rem;order:1}}ul[_ngcontent-%COMP%]{list-style-type:none;padding:0;margin:0}"]}),t})();const Sne=["filterInput"];function Dne(t,n){if(1&t){const e=Fe();S(0,"mat-button",5),ee("click",function(r){return me(e),_e(I().clear(r))}),F(1,"translate"),S(2,"mat-icon"),V(3,"close"),D()()}2&t&&Io("matTooltip",j(1,1,"SYSTEM_PICKER.CLEAR_SEARCH"))}let AL=(()=>{class t{constructor(e){this.changeDetector=e,this.filterChanged=new Ae,this._filter=""}get filter(){return this._filter}set filter(e){this._filter=e,this.filterChanged.emit(this.filter)}ngAfterViewInit(){this.focus(),this.changeDetector.detectChanges()}clear(e){e&&e.stopPropagation(),this.filter="",this.focus()}focus(){this.filterInput.nativeElement.focus()}}return t.\u0275fac=function(e){return new(e||t)(_(Kn))},t.\u0275cmp=ce({type:t,selectors:[["tld-translation-system-picker-filter"]],viewQuery:function(e,i){if(1&e&&it(Sne,5),2&e){let r;xe(r=ke())&&(i.filterInput=r.first)}},outputs:{filterChanged:"filterChanged"},decls:7,vars:5,consts:[["color","accent","appearance","outline","floatLabel","never",1,"search-input-field"],["matPrefix","","fxHide.xs",""],["matInput","",3,"ngModel","placeholder","ngModelChange"],["filterInput",""],["mat-icon-button","","matSuffix","",3,"matTooltip","click",4,"ngIf"],["mat-icon-button","","matSuffix","",3,"matTooltip","click"]],template:function(e,i){1&e&&(S(0,"mat-form-field",0)(1,"mat-icon",1),V(2,"search"),D(),S(3,"input",2,3),ee("ngModelChange",function(s){return i.filter=s}),F(5,"translate"),D(),O(6,Dne,4,3,"mat-button",4),D()),2&e&&(b(3),E("ngModel",i.filter)("placeholder",j(5,3,"SYSTEM_PICKER.SEARCH_PLACEHOLDER")),b(3),E("ngIf",i.filter.length))},dependencies:[Ko,mc,yc,xt,Os,Gd,zb,Wq,Kq,wg,as,Lt],styles:["[_nghost-%COMP%]{display:inline-block;width:100%}[_nghost-%COMP%] .mat-form-field-appearance-outline .mat-form-field-outline-thick .mat-form-field-outline-start, [_nghost-%COMP%] .mat-form-field-appearance-outline .mat-form-field-outline-thick .mat-form-field-outline-end, [_nghost-%COMP%] .mat-form-field-appearance-outline .mat-form-field-outline-thick .mat-form-field-outline-gap{border-width:1px!important}[_nghost-%COMP%] .search-input-field[_ngcontent-%COMP%]{width:100%}[_nghost-%COMP%] .search-input-field[_ngcontent-%COMP%] .mat-form-field-wrapper{padding:0;margin:0}[_nghost-%COMP%] .search-input-field[_ngcontent-%COMP%] .mat-form-field-appearance-outline .mat-form-field-outline-start, [_nghost-%COMP%] .search-input-field[_ngcontent-%COMP%] .mat-form-field-appearance-outline .mat-form-field-outline-end{border-width:1px}[_nghost-%COMP%] .search-input-field[_ngcontent-%COMP%] .mat-form-field-prefix .mat-icon{color:var(--base-40);margin-right:.5rem;font-size:120%}[_nghost-%COMP%] .search-input-field[_ngcontent-%COMP%] .mat-form-field-outline{background:var(--base-100)}[_nghost-%COMP%] .search-input-field[_ngcontent-%COMP%] input[_ngcontent-%COMP%]::placeholder{font-weight:400;font-size:1rem;line-height:1.625rem;color:var(--base-40)}"]}),t})();function wne(t,n){if(1&t){const e=Fe();je(0),S(1,"h1",9),V(2),F(3,"translate"),D(),S(4,"button",7),ee("click",function(){return me(e),_e(I(2).toggleFilter())}),S(5,"mat-icon"),V(6,"search"),D()(),ze()}if(2&t){const e=I(2);b(2),re(j(3,1,null==e.currentConfig?null:e.currentConfig.headerTitle))}}function xne(t,n){if(1&t){const e=Fe();S(0,"div",6)(1,"button",7),ee("click",function(){return me(e),_e(I().back())}),S(2,"mat-icon"),V(3,"arrow_back"),D()(),O(4,wne,7,3,"ng-container",8),D()}if(2&t){const e=I(),i=vt(6);b(4),E("ngIf",!e.showMobFilter)("ngIfElse",i)}}function kne(t,n){1&t&&ei(0)}function Ine(t,n){if(1&t&&(je(0),O(1,kne,1,0,"ng-container",10),ze()),2&t){I();const e=vt(6);b(1),E("ngTemplateOutlet",e)}}function Mne(t,n){if(1&t){const e=Fe();S(0,"tld-translation-system-picker-filter",11),ee("filterChanged",function(r){return me(e),_e(I().filterChange(r))}),D()}}let Rne=(()=>{class t{constructor(e,i){this.systemPickerService=e,this.breakPointObserver=i,this.currentStep=0,this.mobileTargetConfig=[{hideLanguages:!1,hideSystems:!0,headerTitle:"SYSTEM_PICKER.TARGET"},{hideLanguages:!0,hideSystems:!1,headerTitle:"SYSTEM_PICKER.SELECT_DOMAIN",hideSystemTitle:!0}],this.mobileSourceConfig=[{hideLanguages:!1,hideSystems:!1,headerTitle:"SYSTEM_PICKER.SOURCE",showLanguageTitle:!0}],this.desktopTargetConfig=[{hideLanguages:!1,hideSystems:!1,leaveOpenOnLanguageClick:!0}]}onKeydownHandler(){this.close()}get selectedBodyConfig(){return this.bodyConfigArr?.[this.currentStep]}get currentConfig(){return this.bodyConfigArr?.[this.currentStep]}ngOnInit(){this.subscribeToBreakpointObserver(),this.subscribeToMenuToggle()}onSystemClick(){this.selectedBodyConfig?.leaveOpenOnSystemClick||this.nextStep()}onLanguageClick(){this.selectedBodyConfig?.leaveOpenOnLanguageClick||this.nextStep()}onFilteredLanguageClick(){this.filter.clear(null),this.selectedBodyConfig?.leaveOpenOnLanguageClick||this.nextStep()}close(){this.systemPickerService.closeOpened()}filterChange(e){this.filterText=e}ngOnDestroy(){this.breakpointSubscription.unsubscribe(),this.menuToggleSubscription.unsubscribe()}toggleFilter(){this.showMobFilter=!this.showMobFilter,this.clearFilter()}clearFilter(){this.filterText=""}back(){this.isMobile&&(this.showMobFilter?this.toggleFilter():this.currentStep?this.currentStep+=-1:this.close())}nextStep(){this.bodyConfigArr?.[this.currentStep+1]?(this.currentStep+=1,this.clearFilter(),this.showMobFilter=!1,this.currentConfig.hideLanguages&&!this.currentConfig.hideSystems&&this.dropdownBody.systemList?.length<=1&&this.nextStep()):this.close()}clickOutside(){this.isMobile||this.close()}subscribeToBreakpointObserver(){this.breakpointSubscription=this.breakPointObserver.observe([Hp_XSmall]).subscribe(e=>{this.isMobile=e.breakpoints[Hp_XSmall],this.selectBodyConfig()})}selectBodyConfig(){this.currentStep=0,this.isMobile?this.systemPickerService.isTargetOpened?this.bodyConfigArr=this.mobileTargetConfig:this.systemPickerService.isSourceOpened&&(this.bodyConfigArr=this.mobileSourceConfig):this.bodyConfigArr=this.systemPickerService.isTargetOpened?this.desktopTargetConfig:null}subscribeToMenuToggle(){this.menuToggleSubscription=this.systemPickerService.menuToggled().subscribe(()=>{this.selectBodyConfig()})}}return t.\u0275fac=function(e){return new(e||t)(_(Kg),_(zp))},t.\u0275cmp=ce({type:t,selectors:[["tld-translation-system-picker-dropdown"]],viewQuery:function(e,i){if(1&e&&(it(yL,5),it(AL,5)),2&e){let r;xe(r=ke())&&(i.dropdownBody=r.first),xe(r=ke())&&(i.filter=r.first)}},hostBindings:function(e,i){1&e&&ee("keydown.escape",function(s){return i.onKeydownHandler(s)},0,w_)},decls:7,vars:6,consts:[[1,"dropdown-content-wrapper",3,"clickOutside"],["class","system-picker-header",4,"ngIf"],[1,"system-picker-dropdown-content"],[4,"ngIf"],[3,"config","filterText","onSystemClick","onLanguageClick","onFilteredLanguageClick"],["filter",""],[1,"system-picker-header"],["mat-icon-button","",3,"click"],[4,"ngIf","ngIfElse"],[1,"text-l-semi-bold"],[4,"ngTemplateOutlet"],[3,"filterChanged"]],template:function(e,i){1&e&&(S(0,"div",0),ee("clickOutside",function(){return i.clickOutside()}),O(1,xne,5,2,"div",1),S(2,"div",2),O(3,Ine,2,1,"ng-container",3),S(4,"tld-translation-system-picker-dropdown-body",4),ee("onSystemClick",function(){return i.onSystemClick()})("onLanguageClick",function(){return i.onLanguageClick()})("onFilteredLanguageClick",function(){return i.onFilteredLanguageClick()}),D()()(),O(5,Mne,1,0,"ng-template",null,5,pi)),2&e&&(Mt("mobile",i.isMobile),b(1),E("ngIf",i.isMobile),b(2),E("ngIf",!i.isMobile),b(1),E("config",i.currentConfig)("filterText",i.filterText))},dependencies:[xt,Vo,En,Gd,SY,AL,yL,Lt],styles:["[_nghost-%COMP%]{background-color:var(--base-100);overflow-y:auto;height:100%;width:100%;box-sizing:border-box}[_nghost-%COMP%] .system-picker-dropdown-content[_ngcontent-%COMP%]{padding:1rem 1.5rem}[_nghost-%COMP%] .system-picker-header[_ngcontent-%COMP%]{background-color:var(--base-95);padding:.5rem 1rem .5rem .75rem;display:flex;flex-direction:row;align-items:center;border-bottom:1px solid var(--base-70)}[_nghost-%COMP%] .system-picker-header[_ngcontent-%COMP%] h1[_ngcontent-%COMP%]{margin:0;flex:1 1 100%}[_nghost-%COMP%] .dropdown-content-wrapper[_ngcontent-%COMP%]:not(.mobile) tld-translation-system-picker-filter[_ngcontent-%COMP%]{margin-bottom:1.25rem}"]}),t})(),One=(()=>{class t{static forRoot(e,i){const r=[{provide:XR,useFactory:sq,deps:[Nc,Gt,Ki]},{provide:QR,useFactory:lq,deps:[Nc,Gt,Ki,hl,Ps]},{provide:ZR,useFactory:nq,deps:[Nc,Gt,Ki,hl,Ps]}];return null!==e&&r.push({provide:Nc,useValue:e}),i&&r.push({provide:qR,useValue:i}),{ngModule:t,providers:r}}}return t.\u0275fac=function(e){return new(e||t)},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({providers:[gi],imports:[sn,Yc,Ar.forChild(),gd,_G,jx,eh,cJ,pZ,yte,xY,ul]}),t})(),Lne=(()=>{class t{}return t.\u0275fac=function(e){return new(e||t)},t.\u0275cmp=ce({type:t,selectors:[["app-root"]],decls:0,vars:0,template:function(e,i){},encapsulation:2}),t})();var Pne=fi(259);function Nne(t,n){if(1&t){const e=Fe();S(0,"tld-translate-text",4),ee("onFileChange",function(r){return me(e),_e(I(2).fileUpload(r))}),D()}2&t&&E("filePreviewProgress",I(2).filePreviewProgress)}function Fne(t,n){1&t&&le(0,"tld-translate-file",5),2&t&&E("translationFile",I(2).file)}function Bne(t,n){if(1&t&&(je(0),O(1,Nne,1,1,"tld-translate-text",2),O(2,Fne,1,1,"tld-translate-file",3),ze()),2&t){const e=I();b(1),E("ngIf",!e.isFilePreviewLoaded),b(1),E("ngIf",e.isFilePreviewLoaded)}}function Vne(t,n){1&t&&le(0,"tld-translate-file-multiple",6),2&t&&E("translationFiles",I().files)}window.$=window.jQuery=Pne;let vL=(()=>{class t{constructor(e,i){this.fileTranslateService=e,this.config=i,this.destroy$=new pe}get files(){return this.fileTranslateService?.translationFiles}get file(){return this.fileTranslateService?.translationFiles?.[0]}get isFilePreviewLoaded(){return this.file?.isFilePreviewLoaded}get filePreviewProgress(){return this.file?.filePreviewProgress}get multipleFilesUploaded(){return this._multipleFilesUploaded}set multipleFilesUploaded(e){this._multipleFilesUploaded=e,this.fileTranslateService.multipleFileUploadActive=this._multipleFilesUploaded}ngOnInit(){this.fileTranslateService.onClear().pipe(dt(this.destroy$)).subscribe(()=>{this.multipleFilesUploaded=!1})}fileUpload(e){this.multipleFilesUploaded=!!(this.config.fileConfig.useMultipleFileUpload||e.length>1);for(var i=0;i<e.length;i++)this.fileTranslateService.loadFilePreview(e[i])}ngOnDestroy(){this.destroy$.next(null),this.destroy$.complete()}}return t.\u0275fac=function(e){return new(e||t)(_(Ta),_(Gt))},t.\u0275cmp=ce({type:t,selectors:[["tld-translate-body"]],decls:2,vars:2,consts:[[4,"ngIf"],[3,"translationFiles",4,"ngIf"],[3,"filePreviewProgress","onFileChange",4,"ngIf"],[3,"translationFile",4,"ngIf"],[3,"filePreviewProgress","onFileChange"],[3,"translationFile"],[3,"translationFiles"]],template:function(e,i){1&e&&(O(0,Bne,3,2,"ng-container",0),O(1,Vne,1,1,"tld-translate-file-multiple",1)),2&e&&(E("ngIf",!i.multipleFilesUploaded),b(1),E("ngIf",i.multipleFilesUploaded))},dependencies:[xt,Nee,S$,X$],styles:["tld-translate-text[_ngcontent-%COMP%], tld-translate-file[_ngcontent-%COMP%]{flex:1 1 100%}tld-translate-file-multiple[_ngcontent-%COMP%]{height:100%;max-height:100%;width:100%}"]}),t})();function Une(t,n){if(1&t){const e=Fe();S(0,"tld-translate-switcher",11),ee("onDomainChange",function(r){return me(e),_e(I(2).systemChange(r))})("onActionClick",function(){return me(e),_e(I(2).translateButtonClick())})("onLanguageSwap",function(){return me(e),_e(I(2).swapLanguages())})("onSourceLanguageChange",function(r){return me(e),_e(I(2).sourceLanguageChange(r))})("onTargetLanguageChange",function(r){return me(e),_e(I(2).targetLanguageChange(r))}),D()}if(2&t){const e=I(2);E("disabled",e.actionButtonDisabled)("isCollectionsActivated",e.isCollectionsActivated)("settings",e.switcherOptions)("maxDisplayedLanguages",e.maxDisplayedLanguages)("showDomainsWithLanguageName",e.showDomainsWithLanguageName)("buttonDisabled",e.actionButtonDisabled)("hideLangMenuLabels",e.hideLangMenuLabels)("loader",e.actionButtonLoader)("showTranslateButton",e.showTranslateButton)}}function jne(t,n){1&t&&le(0,"tld-translation-system-picker",12),2&t&&E("isCollectionsActivated",I(2).isCollectionsActivated)}function zne(t,n){if(1&t){const e=Fe();S(0,"lib-tld-notification-message",13),ee("closeClicked",function(){const s=me(e).index;return _e(I(2).removeMessage(s))}),D()}if(2&t){const e=n.$implicit;E("inline",!0)("message",e)}}function Hne(t,n){1&t&&le(0,"tld-translation-system-picker-dropdown",14),2&t&&E("ngClass.xs","mobile")}function Gne(t,n){if(1&t&&(S(0,"div",2)(1,"div",3)(2,"div",4),O(3,Une,1,9,"tld-translate-switcher",5),O(4,jne,1,1,"tld-translation-system-picker",6),D(),O(5,zne,1,2,"lib-tld-notification-message",7),S(6,"div",8),le(7,"tld-translate-body",9),O(8,Hne,1,1,"tld-translation-system-picker-dropdown",10),D()()()),2&t){const e=I();Mt("tld-translate-multiple-files-active",e.isMultipleFilesActive),E("ngClass.lt-md","tld-translate-tablet tld-default-border-bottom")("ngClass.lt-sm","tld-translate-mobile tld-default-border-bottom"),b(3),E("ngIf",e.switcherOptions&&e.languageMenuVersion===e.languageMenuV1),b(1),E("ngIf",e.languageMenuVersion===e.languageMenuV2),b(1),E("ngForOf",e.messages),b(2),Me("source-language",e.sourceLanguage)("target-language",e.targetLanguage),b(1),E("ngIf",e.systemPickerDropdownVisible)}}function Wne(t,n){1&t&&le(0,"lib-tld-notification-message",15),2&t&&E("message",I().noSystemsError)}let Kne=(()=>{class t{constructor(e,i,r,s,a,o,l,u,h,p,C,w){this.translate=e,this.translateFileService=i,this.translateTextService=r,this.configService=s,this.alerts=a,this.translateButtonService=o,this.tldSystem=l,this.audioService=u,this.voiceProcessingService=h,this.wtwQueryService=p,this.systemPickerService=C,this.onError=new Ae,this.messages=[],this.noSystemsError={body:"TLD_TRANSLATE.ERROR_NO_SYSTEMS_LOADED",type:no.ERROR,hideClose:!0},this.languageMenuV1=Fc.V1,this.languageMenuV2=Fc.V2,this.destroy$=new pe,w.registerIcons()}get actionButtonLoader(){return this.translateTextService.isTranslating}get showDomainsWithLanguageName(){return this.configService.coreConfig.showDomainsWithLanguageName}get maxDisplayedLanguages(){return this.configService.coreConfig.maxDisplayedLanguages}get showNoSystemsError(){return this.tldSystem.noSystemsError}get actionButtonDisabled(){return this.translateFileService.disableTranslateButton||this.audioService.isRecording||this.voiceProcessingService.isProcessing||this.translateTextService.isDictating}get showTranslateButton(){return!this.translateFileService.multipleFileUploadActive}get isMultipleFilesActive(){return this.tldTranslateBody?.multipleFilesUploaded}get hideLangMenuLabels(){return this.configService?.coreConfig.hideLangMenuLabels}get isCollectionsActivated(){return this.configService?.termConfig?.isCollectionsActivated}get sourceLanguage(){return this.activeSystemObj?.sourceLang.lang}get targetLanguage(){return this.activeSystemObj?.targetLang.lang}get systemPickerDropdownVisible(){return this.systemPickerService.openedMenu!==Tr.NONE}get languageMenuVersion(){return this.configService.coreConfig?.languageMenuVersion}changeAuth(e){this.configService.coreConfig.isAuth=e.isAuth,this.configService.termConfig.canCreateCollection=e.canCreateTermCollection,this.translateFileService.clear(),this.initializeWidget()}initializeWidget(){this.tldSystem.init(this.tldSystem.getLastUsedSystem()??this.configService.coreConfig.defaultSystemId)}ngOnInit(){if(this.removeMessagesOnClear(),this.configService.coreConfig.debug)for(const e in io)this.translate.setTranslation(e,io[e],!0);this.initializeWidget(),this.tldSystem.getActiveData().pipe(Up(),dt(this.destroy$)).subscribe(e=>{this.activeSystemObj=e,e&&(this.switcherOptions={domains:e.domains,source:{code:e.sourceLang.lang,systemId:e.systemId},sourceLanguageList:e.sourceLangList,systemId:e.systemId,swapActive:e.swapLangActive,target:{code:e.targetLang.lang,systemId:e.systemId},targetLanguageList:e.targetLangList,vendors:e.vendors})}),this.translateTextService.sourceChange.pipe(dt(this.destroy$)).subscribe(e=>{e.swapSystems&&this.swapLanguages()}),this.translateButtonService.getActionClick().pipe(dt(this.destroy$)).subscribe(()=>{this.translateButtonClick()}),this.wtwQueryService.query().pipe(dt(this.destroy$)).subscribe(e=>{this.messages.forEach(i=>{i.localizationParams.queryString=e})}),this.alerts.getMessages().pipe(dt(this.destroy$)).subscribe(e=>{e.localizationParams.queryString=this.wtwQueryService.defaultQueryString,e.type===no.ERROR&&this.onError.emit(e.error),this.messages.find(r=>r.title===e.title&&r.type===e.type&&e.body===r.body&&JSON.stringify(r.localizationParams)===JSON.stringify(e.localizationParams))||this.messages.push(e)}),this.configService.coreConfig.translateAppName&&this.translate.get("APP_NAME").pipe(dt(this.destroy$)).subscribe(e=>{this.configService.coreConfig.appName=e})}removeMessage(e){this.messages.splice(e,1)}swapLanguages(){this.tldSystem.swapSystemLanguages()}sourceLanguageChange(e){this.tldSystem.changeLanguage(e,this.switcherOptions.target.code)}systemChange(e){this.tldSystem.changeSystem(e)}targetLanguageChange(e){this.tldSystem.changeLanguage(this.switcherOptions.source.code,e)}translateButtonClick(){this.translateFileService.translationFiles?.length>0?this.translateFileService.translateButtonClick(this.activeSystemObj):this.translateTextService.onTranslateButtonClick()}removeMessagesOnClear(){this.translateFileService.onClear().pipe(dt(this.destroy$)).subscribe(()=>{this.messages=[]}),this.translateTextService.onClear().pipe(dt(this.destroy$)).subscribe(()=>{this.messages=[]})}ngOnDestroy(){this.destroy$.next(null),this.destroy$.complete()}}return t.\u0275fac=function(e){return new(e||t)(_(gi),_(Ta),_(qc),_(Gt),_(Ps),_(oC),_(Xi),_(lL),_(sL),_(gL),_(Kg),_(ZY))},t.\u0275cmp=ce({type:t,selectors:[["tld-translate"]],viewQuery:function(e,i){if(1&e&&it(vL,5),2&e){let r;xe(r=ke())&&(i.tldTranslateBody=r.first)}},outputs:{onError:"onError"},decls:2,vars:2,consts:[["fxLayout","column","class","h-100 tld-translate",3,"ngClass.lt-md","ngClass.lt-sm","tld-translate-multiple-files-active",4,"ngIf"],[3,"message",4,"ngIf"],["fxLayout","column",1,"h-100","tld-translate",3,"ngClass.lt-md","ngClass.lt-sm"],["fxLayout","column","fxFlex","",1,"tld-translate-wrapper","tld-default-border"],[1,"tld-translate-switcher-wrapper","tld-default-border-bottom"],[3,"disabled","isCollectionsActivated","settings","maxDisplayedLanguages","showDomainsWithLanguageName","buttonDisabled","hideLangMenuLabels","loader","showTranslateButton","onDomainChange","onActionClick","onLanguageSwap","onSourceLanguageChange","onTargetLanguageChange",4,"ngIf"],[3,"isCollectionsActivated",4,"ngIf"],[3,"inline","message","closeClicked",4,"ngFor","ngForOf"],["fxFlex","",2,"position","relative"],["fxFlex","","fxLayoutAlign","column"],[3,"ngClass.xs",4,"ngIf"],[3,"disabled","isCollectionsActivated","settings","maxDisplayedLanguages","showDomainsWithLanguageName","buttonDisabled","hideLangMenuLabels","loader","showTranslateButton","onDomainChange","onActionClick","onLanguageSwap","onSourceLanguageChange","onTargetLanguageChange"],[3,"isCollectionsActivated"],[3,"inline","message","closeClicked"],[3,"ngClass.xs"],[3,"message"]],template:function(e,i){1&e&&(O(0,Gne,9,10,"div",0),O(1,Wne,1,1,"lib-tld-notification-message",1)),2&e&&(E("ngIf",!i.showNoSystemsError),b(1),E("ngIf",i.showNoSystemsError))},dependencies:[Gi,xt,Dn,Xn,qi,Ii,Qte,une,Rne,wY,vL],styles:[".tld-translate-wrapper[_ngcontent-%COMP%]{overflow:hidden;background:#ffffff;box-shadow:0 3.2px 7.2px #00000021}.tld-translate-switcher-wrapper[_ngcontent-%COMP%]{padding:.5em 1em}.h-100[_ngcontent-%COMP%]{height:100%}tld-translation-system-picker-dropdown[_ngcontent-%COMP%]{z-index:2}tld-translation-system-picker-dropdown[_ngcontent-%COMP%]:not(.mobile){position:absolute;width:100%;height:100%}tld-translation-system-picker-dropdown.mobile[_ngcontent-%COMP%]{position:fixed;top:0;left:0;width:100vw;height:100vh}"],data:{animation:[di("openCloseAnimation",[Wt(":enter",[Ne({height:0}),$t(500)]),Wt(":leave",$t(500,Ne({height:0})))])]}}),t})(),Yne=(()=>{class t{constructor(e,i){this.translate=e,this.configService=i,this.appId="TildeMT|Website|Embedded",this.defaultLanguage="en"}ngOnInit(){this.config={text:{allowWebsiteTranslation:this.ensureTypeBool(this.allowWebsiteTranslation)??!1,dictionaryUrl:this.dictionaryUrl,highlight:this.ensureTypeBool(this.highlight),maxCharLength:this.maxCharLength,useDictionary:this.ensureTypeBool(this.useDictionary),showAvailableExtensions:this.ensureTypeBool(this.showExtensions)??!1,showExtensionsUnauthOnly:this.ensureTypeBool(this.showExtensionsUnauthOnly),showSuggestions:this.ensureTypeBool(this.showSuggestions)},core:{apiIsInTheSameDomain:this.ensureTypeBool(this.apiIsInTheSameDomain),appId:this.appId,appName:this.appName,clientId:this.clientId,hideAchievement:this.ensureTypeBool(this.hideAchievement)??!0,isAuth:this.ensureTypeBool(this.isAuth),jwtAuth:this.ensureTypeBool(this.jwtAuth),showVendors:this.ensureTypeBool(this.showVendors),translateAppName:!this.appName,registerLink:this.registerLink,translationServiceUrl:this.translationServiceUrl,isWebComponent:!0,showDomains:this.ensureTypeBool(this.showDomains),maxDisplayedLanguages:this.maxDisplayedLanguages??1,defaultSystemId:this.defaultSystemId,contactSupport:this.ensureTypeBool(this.contactSupport)},file:{allowedFileTypes:this.isAuth?this.allowedFileTypesAuthUser:this.allowedFileTypes,extendedFileTypes:this.allowedFileTypesAuthUser,allowTmxAuth:this.ensureTypeBool(this.allowTmxAuth),allowTmxUnauth:this.ensureTypeBool(this.allowTmxUnauth),fileApiUrl:this.fileApiUrl,wordLimit:this.ensureTypeIsPositiveNumber(this.wordLimit),ocrPageLimit:this.ensureTypeIsPositiveNumber(this.ocrPageLimit)},term:{isCollectionsActivated:this.ensureTypeBool(this.isCollectionsActivated)}},this.configService.initConfigs(this.config),this.setTranslations(this.defaultLanguage),this.translate.setDefaultLang(this.defaultLanguage),this.changeLanguage(this.language??this.defaultLanguage)}changeLanguage(e){this.setTranslations(e),this.translate.use(e)}setTranslations(e){io[e]&&this.translate.setTranslation(e,io[e],!0)}ensureTypeBool(e){return!0===e||"true"===e||!1!==e&&"false"!==e&&null}ensureTypeIsPositiveNumber(e){var i=parseInt(e);return i>=0?i:null}}return t.\u0275fac=function(e){return new(e||t)(_(gi),_(Gt))},t.\u0275cmp=ce({type:t,selectors:[["tld-translate-web"]],inputs:{hideAchievement:"hideAchievement",allowedFileTypes:"allowedFileTypes",allowedFileTypesAuthUser:"allowedFileTypesAuthUser",jwtAuth:"jwtAuth",apiIsInTheSameDomain:"apiIsInTheSameDomain",wordLimit:"wordLimit",ocrPageLimit:"ocrPageLimit",highlight:"highlight",fileApiUrl:"fileApiUrl",dictionaryUrl:"dictionaryUrl",allowTmxAuth:"allowTmxAuth",allowTmxUnauth:"allowTmxUnauth",isAuth:"isAuth",maxCharLength:"maxCharLength",translationServiceUrl:"translationServiceUrl",appName:"appName",showVendors:"showVendors",allowWebsiteTranslation:"allowWebsiteTranslation",useDictionary:"useDictionary",showExtensions:"showExtensions",showExtensionsUnauthOnly:"showExtensionsUnauthOnly",registerLink:"registerLink",appId:"appId",showSuggestions:"showSuggestions",showDomains:"showDomains",maxDisplayedLanguages:"maxDisplayedLanguages",clientId:"clientId",defaultSystemId:"defaultSystemId",isCollectionsActivated:"isCollectionsActivated",terminologyPromotion:"terminologyPromotion",contactSupport:"contactSupport",language:"language",defaultLanguage:"defaultLanguage"},decls:1,vars:0,template:function(e,i){1&e&&le(0,"tld-translate")},dependencies:[Kne],encapsulation:2}),t})(),qne=(()=>{class t{constructor(e){const i=function qj(t,n){const e=function jj(t,n){return n.get(Zs).resolveComponentFactory(t).inputs}(t,n.injector),i=n.strategyFactory||new Wj(t,n.injector),r=function Uj(t){const n={};return t.forEach(({propName:e,templateName:i})=>{n[function Pj(t){return t.replace(/[A-Z]/g,n=>`-${n.toLowerCase()}`)}(i)]=e}),n}(e);class s extends Yj{constructor(o){super(),this.injector=o}get ngElementStrategy(){if(!this._ngElementStrategy){const o=this._ngElementStrategy=i.create(this.injector||n.injector);e.forEach(({propName:l})=>{if(!this.hasOwnProperty(l))return;const u=this[l];delete this[l],o.setInputValue(l,u)})}return this._ngElementStrategy}attributeChangedCallback(o,l,u,h){this.ngElementStrategy.setInputValue(r[o],u)}connectedCallback(){let o=!1;this.ngElementStrategy.events&&(this.subscribeToEvents(),o=!0),this.ngElementStrategy.connect(this),o||this.subscribeToEvents()}disconnectedCallback(){this._ngElementStrategy&&this._ngElementStrategy.disconnect(),this.ngElementEventsSubscription&&(this.ngElementEventsSubscription.unsubscribe(),this.ngElementEventsSubscription=null)}subscribeToEvents(){this.ngElementEventsSubscription=this.ngElementStrategy.events.subscribe(o=>{const l=new CustomEvent(o.name,{detail:o.value});this.dispatchEvent(l)})}}return s.observedAttributes=Object.keys(r),e.forEach(({propName:a})=>{Object.defineProperty(s.prototype,a,{get(){return this.ngElementStrategy.getInputValue(a)},set(o){this.ngElementStrategy.setInputValue(a,o)},configurable:!0,enumerable:!0})}),s}(Yne,{injector:e});customElements.define("tld-translate-web",i)}ngDoBootstrap(e){document.querySelector("app-root")&&e.bootstrap(Lne)}}return t.\u0275fac=function(e){return new(e||t)(R(Fn))},t.\u0275mod=ge({type:t}),t.\u0275inj=Te({imports:[Mx,pA,One.forRoot(),Ar.forRoot()]}),t})();(function XV(){Nw=!1})(),Sj().bootstrapModule(qne).catch(t=>console.error(t))},415:(yi,us,fi)=>{var Qn=fi(156).default;self,yi.exports=(()=>{"use strict";var de={607:function(lt,Oe,ae){var at=this&&this.__createBinding||(Object.create?function(Ie,te,ue,ve){void 0===ve&&(ve=ue),Object.defineProperty(Ie,ve,{enumerable:!0,get:function(){return te[ue]}})}:function(Ie,te,ue,ve){void 0===ve&&(ve=ue),Ie[ve]=te[ue]}),ft=this&&this.__exportStar||function(Ie,te){for(var ue in Ie)"default"===ue||Object.prototype.hasOwnProperty.call(te,ue)||at(te,Ie,ue)};Object.defineProperty(Oe,"__esModule",{value:!0}),ft(ae(86),Oe),ft(ae(801),Oe),ft(ae(729),Oe),ft(ae(216),Oe)},86:(lt,Oe,ae)=>{Object.defineProperty(Oe,"__esModule",{value:!0}),Oe.AsrClient=void 0;const at=ae(326),ft=ae(729),Ie=ae(216);Oe.AsrClient=class{constructor(te){var ue,ve;this._isRecording=!1,this.appSecret=te.appSecret,this.appId=te.appId,this._language=te.language,this.protocol=null!==(ue=te.protocol)&&void 0!==ue?ue:"wss",this.apiUrl=null!==(ve=te.apiUrl)&&void 0!==ve?ve:"runa.tilde.lv",this.visualizerConfigBase=te.visualizerConfig,this.enablePostProcess=te.enablePostProcess,this.onResult=te.onResult,this.onMessage=te.onMessage,this.onError=te.onError,this.onStopped=te.onStopped,this.onRecordingStartStop=te.onRecordingStartStop}get language(){return this._language}get isRecording(){return this._isRecording}beginVoiceRecognition(){this.speechWebSocket||this.setUpMic().then(()=>{this.setupSpeechWebSocket().then(()=>{var te;null===(te=this.mediaRecorder)||void 0===te||te.start(200),this.setIsRecording(!0)})},()=>{})}endVoiceRecognition(){var te;null===(te=this.speechWebSocket)||void 0===te||te.close()}changeLanguage(te){this.isRecording||te==this.language||(this._language=te)}setUpMic(){return new Promise((te,ue)=>{navigator.mediaDevices.getUserMedia({audio:{channelCount:1,sampleSize:16,sampleRate:16e3}}).then(ve=>{var Xe;this.audioContext=new AudioContext,(null===(Xe=this.visualizerConfigBase)||void 0===Xe?void 0:Xe.visualizerId)&&(this.audioVisualizer=new at.AudioVisualizer({audioContext:this.audioContext,stream:ve,visualizerId:this.visualizerConfigBase.visualizerId,strokeStyle:this.visualizerConfigBase.strokeStyle,lineWidth:this.visualizerConfigBase.lineWidth})),this.mediaRecorder=new MediaRecorder(ve),this.mediaRecorder.ondataavailable=en=>{this.speechWebSocket&&this.speechWebSocket.readyState===this.speechWebSocket.OPEN&&this.speechWebSocket.send(en.data)},te()}).catch(ve=>{this.onError&&(this.onError(ve),ue(ve))})})}stopAll(){var te,ue,ve,Xe;null===(te=this.mediaRecorder)||void 0===te||te.stop(),this.setIsRecording(!1),this.speechWebSocket=void 0,null===(ve=null===(ue=this.inputStream)||void 0===ue?void 0:ue.mediaStream)||void 0===ve||ve.getAudioTracks().forEach(en=>en.stop()),null===(Xe=this.audioVisualizer)||void 0===Xe||Xe.stop(),this.audioVisualizer=void 0,this.onStopped&&this.onStopped()}setupSpeechWebSocket(){var te=this;return new Promise(ue=>{this.speechWebSocket=new WebSocket(`${this.protocol}://${this.apiUrl}/client/ws/speech?system=${this.language.toUpperCase()}ASR-ONLINE`),this.speechWebSocket.onopen=Qn(function*(){const ve=Math.round((new Date).getTime()/1e3),Xe=yield(0,Ie.sha1Async)(`${ve}${te.appId}${te.appSecret}`),en=JSON.stringify({appID:te.appId,timestamp:ve,appKey:Xe});te.enablePostProcess&&(en["enable-postprocess"]={numbers_all:"escape",commands2:{commands:["_$_ESCAPE_$_","_$_NEW_LINE_$_","_$_DELETE_LEFT_$_"]}}),te.speechWebSocket.send(en),ue()}),this.speechWebSocket.onmessage=ve=>{const Xe=JSON.parse(ve.data);Xe.status===ft.RecognitionStatus.Success?Xe.result&&this.handleSpeechRecognitionResult(Xe.result):this.onMessage&&this.onMessage(Xe.status)},this.speechWebSocket.onclose=()=>{this.stopAll()}})}handleSpeechRecognitionResult(te){this.onResult&&this.onResult(te)}setIsRecording(te){this._isRecording=te,this.onRecordingStartStop&&this.onRecordingStartStop(this.isRecording)}}},326:(lt,Oe)=>{Object.defineProperty(Oe,"__esModule",{value:!0}),Oe.AudioVisualizer=void 0,Oe.AudioVisualizer=class{constructor(ae){var at;this.audioContext=ae.audioContext,this.visualizerId=ae.visualizerId,this.stream=ae.stream,this.strokeStyle=null!==(at=ae.strokeStyle)&&void 0!==at?at:"#b6224b",this.lineWidth=ae.lineWidth}visualizeAudio(){if(this.stream){if(this.visualizerId){const ae=this.audioContext.createMediaStreamSource(this.stream);this.analyser=this.audioContext.createAnalyser(),this.analyser.fftSize=512,this.analyser.smoothingTimeConstant=.95,ae.connect(this.analyser)}this.draw()}else console.error("Audio visualizer has no stream! Try creating new visualizer")}stop(){if(this.visualizerId){const Ie=document.getElementById(this.visualizerId);if(Ie){var ae=Ie.offsetWidth,at=Ie.height;Ie.getContext("2d")?.clearRect(0,0,ae,at)}}this.audioVisualizerAnimReqId&&cancelAnimationFrame(this.audioVisualizerAnimReqId),this.stream&&(this.stream.getAudioTracks().forEach(Ie=>Ie.stop()),this.analyser=void 0,this.audioContext=void 0,this.stream=void 0,this.audioVisualizerAnimReqId=void 0)}draw(){var ae;const ft=new Uint8Array(this.analyser.frequencyBinCount),Ie=document.getElementById(this.visualizerId);if(Ie){const te=Ie.offsetWidth,ue=Ie.offsetHeight,ve=Ie.getContext("2d"),Xe=null!==(ae=this.lineWidth)&&void 0!==ae?ae:te/ft.length;if(ve){ve.lineWidth=Xe,ve.strokeStyle=this.strokeStyle,this.analyser.getByteFrequencyData(ft),ve.clearRect(0,0,te,ue),ve.beginPath();let en=0;if(ft){for(let et=0;et<ft.length;et++){const ot=ft[et]/255*ue;ve.imageSmoothingEnabled=!1,ve.moveTo(en,ue),ve.lineTo(en,ue-ot),en+=Xe}ve.stroke()}}this.audioVisualizerAnimReqId=requestAnimationFrame(()=>{this.draw()})}}}},729:function(lt,Oe,ae){var at=this&&this.__createBinding||(Object.create?function(Ie,te,ue,ve){void 0===ve&&(ve=ue),Object.defineProperty(Ie,ve,{enumerable:!0,get:function(){return te[ue]}})}:function(Ie,te,ue,ve){void 0===ve&&(ve=ue),Ie[ve]=te[ue]}),ft=this&&this.__exportStar||function(Ie,te){for(var ue in Ie)"default"===ue||Object.prototype.hasOwnProperty.call(te,ue)||at(te,Ie,ue)};Object.defineProperty(Oe,"__esModule",{value:!0}),ft(ae(883),Oe)},883:(lt,Oe)=>{var ae;Object.defineProperty(Oe,"__esModule",{value:!0}),Oe.RecognitionStatus=void 0,(ae=Oe.RecognitionStatus||(Oe.RecognitionStatus={}))[ae.Success=0]="Success",ae[ae.NoSpeech=1]="NoSpeech",ae[ae.Aborted=2]="Aborted",ae[ae.LoadLimitReached=9]="LoadLimitReached",ae[ae.AuthenticationFailed=10]="AuthenticationFailed",ae[ae.Busy=11]="Busy"},88:(lt,Oe)=>{Object.defineProperty(Oe,"__esModule",{value:!0}),Oe.sha1Async=void 0,Oe.sha1Async=function(){var ae=Qn(function*(at){const ft=(new TextEncoder).encode(at),Ie=yield crypto.subtle.digest("SHA-1",ft);return Array.from(new Uint8Array(Ie)).map(te=>te.toString(16).padStart(2,"0")).join("")});return function(at){return ae.apply(this,arguments)}}()},216:function(lt,Oe,ae){var at=this&&this.__createBinding||(Object.create?function(Ie,te,ue,ve){void 0===ve&&(ve=ue),Object.defineProperty(Ie,ve,{enumerable:!0,get:function(){return te[ue]}})}:function(Ie,te,ue,ve){void 0===ve&&(ve=ue),Ie[ve]=te[ue]}),ft=this&&this.__exportStar||function(Ie,te){for(var ue in Ie)"default"===ue||Object.prototype.hasOwnProperty.call(te,ue)||at(te,Ie,ue)};Object.defineProperty(Oe,"__esModule",{value:!0}),ft(ae(88),Oe)},17:(lt,Oe)=>{Object.defineProperty(Oe,"__esModule",{value:!0})},801:function(lt,Oe,ae){var at=this&&this.__createBinding||(Object.create?function(Ie,te,ue,ve){void 0===ve&&(ve=ue),Object.defineProperty(Ie,ve,{enumerable:!0,get:function(){return te[ue]}})}:function(Ie,te,ue,ve){void 0===ve&&(ve=ue),Ie[ve]=te[ue]}),ft=this&&this.__exportStar||function(Ie,te){for(var ue in Ie)"default"===ue||Object.prototype.hasOwnProperty.call(te,ue)||at(te,Ie,ue)};Object.defineProperty(Oe,"__esModule",{value:!0}),ft(ae(17),Oe),ft(ae(208),Oe),ft(ae(957),Oe),ft(ae(289),Oe),ft(ae(310),Oe)},289:(lt,Oe)=>{Object.defineProperty(Oe,"__esModule",{value:!0})},208:(lt,Oe)=>{Object.defineProperty(Oe,"__esModule",{value:!0})},957:(lt,Oe)=>{Object.defineProperty(Oe,"__esModule",{value:!0})},310:(lt,Oe)=>{Object.defineProperty(Oe,"__esModule",{value:!0})}},zn={};return function lt(Oe){var ae=zn[Oe];if(void 0!==ae)return ae.exports;var at=zn[Oe]={exports:{}};return de[Oe].call(at.exports,at,at.exports,lt),at.exports}(607)})()},327:function(yi,us){var de;void 0!==(de=function(){"use strict";function lt(te,ue,ve){var Xe=new XMLHttpRequest;Xe.open("GET",te),Xe.responseType="blob",Xe.onload=function(){Ie(Xe.response,ue,ve)},Xe.onerror=function(){console.error("could not download file")},Xe.send()}function Oe(te){var ue=new XMLHttpRequest;ue.open("HEAD",te,!1);try{ue.send()}catch{}return 200<=ue.status&&299>=ue.status}function ae(te){try{te.dispatchEvent(new MouseEvent("click"))}catch{var ue=document.createEvent("MouseEvents");ue.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),te.dispatchEvent(ue)}}var at="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof global&&global.global===global?global:void 0,ft=at.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),Ie=at.saveAs||("object"!=typeof window||window!==at?function(){}:"download"in HTMLAnchorElement.prototype&&!ft?function(te,ue,ve){var Xe=at.URL||at.webkitURL,en=document.createElement("a");en.download=ue=ue||te.name||"download",en.rel="noopener","string"==typeof te?(en.href=te,en.origin===location.origin?ae(en):Oe(en.href)?lt(te,ue,ve):ae(en,en.target="_blank")):(en.href=Xe.createObjectURL(te),setTimeout(function(){Xe.revokeObjectURL(en.href)},4e4),setTimeout(function(){ae(en)},0))}:"msSaveOrOpenBlob"in navigator?function(te,ue,ve){if(ue=ue||te.name||"download","string"!=typeof te)navigator.msSaveOrOpenBlob(function zn(te,ue){return typeof ue>"u"?ue={autoBom:!1}:"object"!=typeof ue&&(console.warn("Deprecated: Expected third argument to be a object"),ue={autoBom:!ue}),ue.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(te.type)?new Blob(["\ufeff",te],{type:te.type}):te}(te,ve),ue);else if(Oe(te))lt(te,ue,ve);else{var Xe=document.createElement("a");Xe.href=te,Xe.target="_blank",setTimeout(function(){ae(Xe)})}}:function(te,ue,ve,Xe){if((Xe=Xe||open("","_blank"))&&(Xe.document.title=Xe.document.body.innerText="downloading..."),"string"==typeof te)return lt(te,ue,ve);var en="application/octet-stream"===te.type,et=/constructor/i.test(at.HTMLElement)||at.safari,ot=/CriOS\/[\d]+/.test(navigator.userAgent);if((ot||en&&et||ft)&&typeof FileReader<"u"){var Zi=new FileReader;Zi.onloadend=function(){var hs=Zi.result;hs=ot?hs:hs.replace(/^data:[^;]*;/,"data:attachment/file;"),Xe?Xe.location.href=hs:location=hs,Xe=null},Zi.readAsDataURL(te)}else{var Ge=at.URL||at.webkitURL,ds=Ge.createObjectURL(te);Xe?Xe.location=ds:location.href=ds,Xe=null,setTimeout(function(){Ge.revokeObjectURL(ds)},4e4)}});at.saveAs=Ie.saveAs=Ie,yi.exports=Ie}.apply(us,[]))&&(yi.exports=de)},259:function(yi,us){var Qn;!function(de,zn){"use strict";"object"==typeof yi.exports?yi.exports=de.document?zn(de,!0):function(lt){if(!lt.document)throw new Error("jQuery requires a window with a document");return zn(lt)}:zn(de)}(typeof window<"u"?window:this,function(de,zn){"use strict";var lt=[],Oe=Object.getPrototypeOf,ae=lt.slice,at=lt.flat?function(c){return lt.flat.call(c)}:function(c){return lt.concat.apply([],c)},ft=lt.push,Ie=lt.indexOf,te={},ue=te.toString,ve=te.hasOwnProperty,Xe=ve.toString,en=Xe.call(Object),et={},ot=function(d){return"function"==typeof d&&"number"!=typeof d.nodeType&&"function"!=typeof d.item},Zi=function(d){return null!=d&&d===d.window},Ge=de.document,ds={type:!0,src:!0,nonce:!0,noModule:!0};function hs(c,d,f){var g,v,y=(f=f||Ge).createElement("script");if(y.text=c,d)for(g in ds)(v=d[g]||d.getAttribute&&d.getAttribute(g))&&y.setAttribute(g,v);f.head.appendChild(y).parentNode.removeChild(y)}function fs(c){return null==c?c+"":"object"==typeof c||"function"==typeof c?te[ue.call(c)]||"object":typeof c}var $c=/HTML$/i,m=function(c,d){return new m.fn.init(c,d)};function Vs(c){var d=!!c&&"length"in c&&c.length,f=fs(c);return!ot(c)&&!Zi(c)&&("array"===f||0===d||"number"==typeof d&&d>0&&d-1 in c)}function tn(c,d){return c.nodeName&&c.nodeName.toLowerCase()===d.toLowerCase()}m.fn=m.prototype={jquery:"3.7.0",constructor:m,length:0,toArray:function(){return ae.call(this)},get:function(c){return null==c?ae.call(this):c<0?this[c+this.length]:this[c]},pushStack:function(c){var d=m.merge(this.constructor(),c);return d.prevObject=this,d},each:function(c){return m.each(this,c)},map:function(c){return this.pushStack(m.map(this,function(d,f){return c.call(d,f,d)}))},slice:function(){return this.pushStack(ae.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(m.grep(this,function(c,d){return(d+1)%2}))},odd:function(){return this.pushStack(m.grep(this,function(c,d){return d%2}))},eq:function(c){var d=this.length,f=+c+(c<0?d:0);return this.pushStack(f>=0&&f<d?[this[f]]:[])},end:function(){return this.prevObject||this.constructor()},push:ft,sort:lt.sort,splice:lt.splice},m.extend=m.fn.extend=function(){var c,d,f,g,v,y,T=arguments[0]||{},P=1,M=arguments.length,B=!1;for("boolean"==typeof T&&(B=T,T=arguments[P]||{},P++),"object"!=typeof T&&!ot(T)&&(T={}),P===M&&(T=this,P--);P<M;P++)if(null!=(c=arguments[P]))for(d in c)g=c[d],"__proto__"!==d&&T!==g&&(B&&g&&(m.isPlainObject(g)||(v=Array.isArray(g)))?(f=T[d],y=v&&!Array.isArray(f)?[]:v||m.isPlainObject(f)?f:{},v=!1,T[d]=m.extend(B,y,g)):void 0!==g&&(T[d]=g));return T},m.extend({expando:"jQuery"+("3.7.0"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(c){throw new Error(c)},noop:function(){},isPlainObject:function(c){var d,f;return!(!c||"[object Object]"!==ue.call(c)||(d=Oe(c))&&("function"!=typeof(f=ve.call(d,"constructor")&&d.constructor)||Xe.call(f)!==en))},isEmptyObject:function(c){var d;for(d in c)return!1;return!0},globalEval:function(c,d,f){hs(c,{nonce:d&&d.nonce},f)},each:function(c,d){var f,g=0;if(Vs(c))for(f=c.length;g<f&&!1!==d.call(c[g],g,c[g]);g++);else for(g in c)if(!1===d.call(c[g],g,c[g]))break;return c},text:function(c){var d,f="",g=0,v=c.nodeType;if(v){if(1===v||9===v||11===v)return c.textContent;if(3===v||4===v)return c.nodeValue}else for(;d=c[g++];)f+=m.text(d);return f},makeArray:function(c,d){var f=d||[];return null!=c&&(Vs(Object(c))?m.merge(f,"string"==typeof c?[c]:c):ft.call(f,c)),f},inArray:function(c,d,f){return null==d?-1:Ie.call(d,c,f)},isXMLDoc:function(c){var f=c&&(c.ownerDocument||c).documentElement;return!$c.test(c&&c.namespaceURI||f&&f.nodeName||"HTML")},merge:function(c,d){for(var f=+d.length,g=0,v=c.length;g<f;g++)c[v++]=d[g];return c.length=v,c},grep:function(c,d,f){for(var v=[],y=0,T=c.length,P=!f;y<T;y++)!d(c[y],y)!==P&&v.push(c[y]);return v},map:function(c,d,f){var g,v,y=0,T=[];if(Vs(c))for(g=c.length;y<g;y++)null!=(v=d(c[y],y,f))&&T.push(v);else for(y in c)null!=(v=d(c[y],y,f))&&T.push(v);return at(T)},guid:1,support:et}),"function"==typeof Symbol&&(m.fn[Symbol.iterator]=lt[Symbol.iterator]),m.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(c,d){te["[object "+d+"]"]=d.toLowerCase()});var qg=lt.pop,Jc=lt.sort,Xg=lt.splice,Yt="[\\x20\\t\\r\\n\\f]",$i=new RegExp("^"+Yt+"+|((?:^|[^\\\\])(?:\\\\.)*)"+Yt+"+$","g");m.contains=function(c,d){var f=d&&d.parentNode;return c===f||!(!f||1!==f.nodeType||!(c.contains?c.contains(f):c.compareDocumentPosition&&16&c.compareDocumentPosition(f)))};var Qg=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;function rh(c,d){return d?"\0"===c?"\ufffd":c.slice(0,-1)+"\\"+c.charCodeAt(c.length-1).toString(16)+" ":"\\"+c}m.escapeSelector=function(c){return(c+"").replace(Qg,rh)};var Ct=Ge,pl=ft;!function(){var c,d,f,g,v,T,P,M,B,H,y=pl,$=m.expando,Y=0,oe=0,tt=cn(),pt=cn(),ut=cn(),ri=cn(),ce=function(x,N){return x===N&&(v=!0),0},Ir="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",or="(?:\\\\[\\da-fA-F]{1,6}"+Yt+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",Et="\\["+Yt+"*("+or+")(?:"+Yt+"*([*^$|!~]?=)"+Yt+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+or+"))|)"+Yt+"*\\]",ge=":("+or+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+Et+")*)|.*)\\)|)",Bt=new RegExp(Yt+"+","g"),mn=new RegExp("^"+Yt+"*,"+Yt+"*"),G=new RegExp("^"+Yt+"*([>+~]|"+Yt+")"+Yt+"*"),Pn=new RegExp(Yt+"|>"),Tt=new RegExp(ge),Wn=new RegExp("^"+or+"$"),hn={ID:new RegExp("^#("+or+")"),CLASS:new RegExp("^\\.("+or+")"),TAG:new RegExp("^("+or+"|[*])"),ATTR:new RegExp("^"+Et),PSEUDO:new RegExp("^"+ge),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+Yt+"*(even|odd|(([+-]|)(\\d*)n|)"+Yt+"*(?:([+-]|)"+Yt+"*(\\d+)|))"+Yt+"*\\)|)","i"),bool:new RegExp("^(?:"+Ir+")$","i"),needsContext:new RegExp("^"+Yt+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+Yt+"*((?:-\\d)?\\d*)"+Yt+"*\\)|)(?=[^-]|$)","i")},Ni=/^(?:input|select|textarea|button)$/i,Nn=/^h\d$/i,_n=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,Se=/[+~]/,Qe=new RegExp("\\\\[\\da-fA-F]{1,6}"+Yt+"?|\\\\([^\\r\\n\\f])","g"),Ut=function(x,N){var W="0x"+x.slice(1)-65536;return N||(W<0?String.fromCharCode(W+65536):String.fromCharCode(W>>10|55296,1023&W|56320))},Fi=function(){yn()},Gs=Yr(function(x){return!0===x.disabled&&tn(x,"fieldset")},{dir:"parentNode",next:"legend"});try{y.apply(lt=ae.call(Ct.childNodes),Ct.childNodes)}catch{y={apply:function(N,W){pl.apply(N,ae.call(W))},call:function(N){pl.apply(N,ae.call(arguments,1))}}}function Ot(x,N,W,K){var Q,he,De,Pe,fe,St,nt,ct=N&&N.ownerDocument,Dt=N?N.nodeType:9;if(W=W||[],"string"!=typeof x||!x||1!==Dt&&9!==Dt&&11!==Dt)return W;if(!K&&(yn(N),N=N||T,M)){if(11!==Dt&&(fe=_n.exec(x)))if(Q=fe[1]){if(9===Dt){if(!(De=N.getElementById(Q)))return W;if(De.id===Q)return y.call(W,De),W}else if(ct&&(De=ct.getElementById(Q))&&Ot.contains(N,De)&&De.id===Q)return y.call(W,De),W}else{if(fe[2])return y.apply(W,N.getElementsByTagName(x)),W;if((Q=fe[3])&&N.getElementsByClassName)return y.apply(W,N.getElementsByClassName(Q)),W}if(!(ri[x+" "]||B&&B.test(x))){if(nt=x,ct=N,1===Dt&&(Pn.test(x)||G.test(x))){for(((ct=Se.test(x)&&Wr(N.parentNode)||N)!=N||!et.scope)&&((Pe=N.getAttribute("id"))?Pe=m.escapeSelector(Pe):N.setAttribute("id",Pe=$)),he=(St=Kr(x)).length;he--;)St[he]=(Pe?"#"+Pe:":scope")+" "+Si(St[he]);nt=St.join(",")}try{return y.apply(W,ct.querySelectorAll(nt)),W}catch{ri(x,!0)}finally{Pe===$&&N.removeAttribute("id")}}}return vo(x.replace($i,"$1"),N,W,K)}function cn(){var x=[];return function N(W,K){return x.push(W+" ")>d.cacheLength&&delete N[x.shift()],N[W+" "]=K}}function vi(x){return x[$]=!0,x}function Mr(x){var N=T.createElement("fieldset");try{return!!x(N)}catch{return!1}finally{N.parentNode&&N.parentNode.removeChild(N),N=null}}function _t(x){return function(N){return tn(N,"input")&&N.type===x}}function xl(x){return function(N){return(tn(N,"input")||tn(N,"button"))&&N.type===x}}function Ws(x){return function(N){return"form"in N?N.parentNode&&!1===N.disabled?"label"in N?"label"in N.parentNode?N.parentNode.disabled===x:N.disabled===x:N.isDisabled===x||N.isDisabled!==!x&&Gs(N)===x:N.disabled===x:"label"in N&&N.disabled===x}}function Gr(x){return vi(function(N){return N=+N,vi(function(W,K){for(var Q,he=x([],W.length,N),De=he.length;De--;)W[Q=he[De]]&&(W[Q]=!(K[Q]=W[Q]))})})}function Wr(x){return x&&typeof x.getElementsByTagName<"u"&&x}function yn(x){var N,W=x?x.ownerDocument||x:Ct;return W==T||9!==W.nodeType||!W.documentElement||(P=(T=W).documentElement,M=!m.isXMLDoc(T),H=P.matches||P.webkitMatchesSelector||P.msMatchesSelector,Ct!=T&&(N=T.defaultView)&&N.top!==N&&N.addEventListener("unload",Fi),et.getById=Mr(function(K){return P.appendChild(K).id=m.expando,!T.getElementsByName||!T.getElementsByName(m.expando).length}),et.disconnectedMatch=Mr(function(K){return H.call(K,"*")}),et.scope=Mr(function(){return T.querySelectorAll(":scope")}),et.cssHas=Mr(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch{return!0}}),et.getById?(d.filter.ID=function(K){var Q=K.replace(Qe,Ut);return function(he){return he.getAttribute("id")===Q}},d.find.ID=function(K,Q){if(typeof Q.getElementById<"u"&&M){var he=Q.getElementById(K);return he?[he]:[]}}):(d.filter.ID=function(K){var Q=K.replace(Qe,Ut);return function(he){var De=typeof he.getAttributeNode<"u"&&he.getAttributeNode("id");return De&&De.value===Q}},d.find.ID=function(K,Q){if(typeof Q.getElementById<"u"&&M){var he,De,Pe,fe=Q.getElementById(K);if(fe){if((he=fe.getAttributeNode("id"))&&he.value===K)return[fe];for(Pe=Q.getElementsByName(K),De=0;fe=Pe[De++];)if((he=fe.getAttributeNode("id"))&&he.value===K)return[fe]}return[]}}),d.find.TAG=function(K,Q){return typeof Q.getElementsByTagName<"u"?Q.getElementsByTagName(K):Q.querySelectorAll(K)},d.find.CLASS=function(K,Q){if(typeof Q.getElementsByClassName<"u"&&M)return Q.getElementsByClassName(K)},B=[],Mr(function(K){var Q;P.appendChild(K).innerHTML="<a id='"+$+"' href='' disabled='disabled'></a><select id='"+$+"-\r\\' disabled='disabled'><option selected=''></option></select>",K.querySelectorAll("[selected]").length||B.push("\\["+Yt+"*(?:value|"+Ir+")"),K.querySelectorAll("[id~="+$+"-]").length||B.push("~="),K.querySelectorAll("a#"+$+"+*").length||B.push(".#.+[+~]"),K.querySelectorAll(":checked").length||B.push(":checked"),(Q=T.createElement("input")).setAttribute("type","hidden"),K.appendChild(Q).setAttribute("name","D"),P.appendChild(K).disabled=!0,2!==K.querySelectorAll(":disabled").length&&B.push(":enabled",":disabled"),(Q=T.createElement("input")).setAttribute("name",""),K.appendChild(Q),K.querySelectorAll("[name='']").length||B.push("\\["+Yt+"*name"+Yt+"*="+Yt+"*(?:''|\"\")")}),et.cssHas||B.push(":has"),B=B.length&&new RegExp(B.join("|")),ce=function(K,Q){if(K===Q)return v=!0,0;var he=!K.compareDocumentPosition-!Q.compareDocumentPosition;return he||(1&(he=(K.ownerDocument||K)==(Q.ownerDocument||Q)?K.compareDocumentPosition(Q):1)||!et.sortDetached&&Q.compareDocumentPosition(K)===he?K===T||K.ownerDocument==Ct&&Ot.contains(Ct,K)?-1:Q===T||Q.ownerDocument==Ct&&Ot.contains(Ct,Q)?1:g?Ie.call(g,K)-Ie.call(g,Q):0:4&he?-1:1)}),T}for(c in Ot.matches=function(x,N){return Ot(x,null,null,N)},Ot.matchesSelector=function(x,N){if(yn(x),M&&!ri[N+" "]&&(!B||!B.test(N)))try{var W=H.call(x,N);if(W||et.disconnectedMatch||x.document&&11!==x.document.nodeType)return W}catch{ri(N,!0)}return Ot(N,T,null,[x]).length>0},Ot.contains=function(x,N){return(x.ownerDocument||x)!=T&&yn(x),m.contains(x,N)},Ot.attr=function(x,N){(x.ownerDocument||x)!=T&&yn(x);var W=d.attrHandle[N.toLowerCase()],K=W&&ve.call(d.attrHandle,N.toLowerCase())?W(x,N,!M):void 0;return void 0!==K?K:x.getAttribute(N)},Ot.error=function(x){throw new Error("Syntax error, unrecognized expression: "+x)},m.uniqueSort=function(x){var N,W=[],K=0,Q=0;if(v=!et.sortStable,g=!et.sortStable&&ae.call(x,0),Jc.call(x,ce),v){for(;N=x[Q++];)N===x[Q]&&(K=W.push(Q));for(;K--;)Xg.call(x,W[K],1)}return g=null,x},m.fn.uniqueSort=function(){return this.pushStack(m.uniqueSort(ae.apply(this)))},(d=m.expr={cacheLength:50,createPseudo:vi,match:hn,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(x){return x[1]=x[1].replace(Qe,Ut),x[3]=(x[3]||x[4]||x[5]||"").replace(Qe,Ut),"~="===x[2]&&(x[3]=" "+x[3]+" "),x.slice(0,4)},CHILD:function(x){return x[1]=x[1].toLowerCase(),"nth"===x[1].slice(0,3)?(x[3]||Ot.error(x[0]),x[4]=+(x[4]?x[5]+(x[6]||1):2*("even"===x[3]||"odd"===x[3])),x[5]=+(x[7]+x[8]||"odd"===x[3])):x[3]&&Ot.error(x[0]),x},PSEUDO:function(x){var N,W=!x[6]&&x[2];return hn.CHILD.test(x[0])?null:(x[3]?x[2]=x[4]||x[5]||"":W&&Tt.test(W)&&(N=Kr(W,!0))&&(N=W.indexOf(")",W.length-N)-W.length)&&(x[0]=x[0].slice(0,N),x[2]=W.slice(0,N)),x.slice(0,3))}},filter:{TAG:function(x){var N=x.replace(Qe,Ut).toLowerCase();return"*"===x?function(){return!0}:function(W){return tn(W,N)}},CLASS:function(x){var N=tt[x+" "];return N||(N=new RegExp("(^|"+Yt+")"+x+"("+Yt+"|$)"))&&tt(x,function(W){return N.test("string"==typeof W.className&&W.className||typeof W.getAttribute<"u"&&W.getAttribute("class")||"")})},ATTR:function(x,N,W){return function(K){var Q=Ot.attr(K,x);return null==Q?"!="===N:!N||(Q+="","="===N?Q===W:"!="===N?Q!==W:"^="===N?W&&0===Q.indexOf(W):"*="===N?W&&Q.indexOf(W)>-1:"$="===N?W&&Q.slice(-W.length)===W:"~="===N?(" "+Q.replace(Bt," ")+" ").indexOf(W)>-1:"|="===N&&(Q===W||Q.slice(0,W.length+1)===W+"-"))}},CHILD:function(x,N,W,K,Q){var he="nth"!==x.slice(0,3),De="last"!==x.slice(-4),Pe="of-type"===N;return 1===K&&0===Q?function(fe){return!!fe.parentNode}:function(fe,St,nt){var ct,Dt,Ke,un,Bi,bi=he!==De?"nextSibling":"previousSibling",lr=fe.parentNode,qr=Pe&&fe.nodeName.toLowerCase(),bo=!nt&&!Pe,Di=!1;if(lr){if(he){for(;bi;){for(Ke=fe;Ke=Ke[bi];)if(Pe?tn(Ke,qr):1===Ke.nodeType)return!1;Bi=bi="only"===x&&!Bi&&"nextSibling"}return!0}if(Bi=[De?lr.firstChild:lr.lastChild],De&&bo){for(Di=(un=(ct=(Dt=lr[$]||(lr[$]={}))[x]||[])[0]===Y&&ct[1])&&ct[2],Ke=un&&lr.childNodes[un];Ke=++un&&Ke&&Ke[bi]||(Di=un=0)||Bi.pop();)if(1===Ke.nodeType&&++Di&&Ke===fe){Dt[x]=[Y,un,Di];break}}else if(bo&&(Di=un=(ct=(Dt=fe[$]||(fe[$]={}))[x]||[])[0]===Y&&ct[1]),!1===Di)for(;(Ke=++un&&Ke&&Ke[bi]||(Di=un=0)||Bi.pop())&&(!(Pe?tn(Ke,qr):1===Ke.nodeType)||!++Di||(bo&&((Dt=Ke[$]||(Ke[$]={}))[x]=[Y,Di]),Ke!==fe)););return(Di-=Q)===K||Di%K==0&&Di/K>=0}}},PSEUDO:function(x,N){var W,K=d.pseudos[x]||d.setFilters[x.toLowerCase()]||Ot.error("unsupported pseudo: "+x);return K[$]?K(N):K.length>1?(W=[x,x,"",N],d.setFilters.hasOwnProperty(x.toLowerCase())?vi(function(Q,he){for(var De,Pe=K(Q,N),fe=Pe.length;fe--;)Q[De=Ie.call(Q,Pe[fe])]=!(he[De]=Pe[fe])}):function(Q){return K(Q,0,W)}):K}},pseudos:{not:vi(function(x){var N=[],W=[],K=Ks(x.replace($i,"$1"));return K[$]?vi(function(Q,he,De,Pe){for(var fe,St=K(Q,null,Pe,[]),nt=Q.length;nt--;)(fe=St[nt])&&(Q[nt]=!(he[nt]=fe))}):function(Q,he,De){return N[0]=Q,K(N,null,De,W),N[0]=null,!W.pop()}}),has:vi(function(x){return function(N){return Ot(x,N).length>0}}),contains:vi(function(x){return x=x.replace(Qe,Ut),function(N){return(N.textContent||m.text(N)).indexOf(x)>-1}}),lang:vi(function(x){return Wn.test(x||"")||Ot.error("unsupported lang: "+x),x=x.replace(Qe,Ut).toLowerCase(),function(N){var W;do{if(W=M?N.lang:N.getAttribute("xml:lang")||N.getAttribute("lang"))return(W=W.toLowerCase())===x||0===W.indexOf(x+"-")}while((N=N.parentNode)&&1===N.nodeType);return!1}}),target:function(x){var N=de.location&&de.location.hash;return N&&N.slice(1)===x.id},root:function(x){return x===P},focus:function(x){return x===function Zn(){try{return T.activeElement}catch{}}()&&T.hasFocus()&&!!(x.type||x.href||~x.tabIndex)},enabled:Ws(!1),disabled:Ws(!0),checked:function(x){return tn(x,"input")&&!!x.checked||tn(x,"option")&&!!x.selected},selected:function(x){return!0===x.selected},empty:function(x){for(x=x.firstChild;x;x=x.nextSibling)if(x.nodeType<6)return!1;return!0},parent:function(x){return!d.pseudos.empty(x)},header:function(x){return Nn.test(x.nodeName)},input:function(x){return Ni.test(x.nodeName)},button:function(x){return tn(x,"input")&&"button"===x.type||tn(x,"button")},text:function(x){var N;return tn(x,"input")&&"text"===x.type&&(null==(N=x.getAttribute("type"))||"text"===N.toLowerCase())},first:Gr(function(){return[0]}),last:Gr(function(x,N){return[N-1]}),eq:Gr(function(x,N,W){return[W<0?W+N:W]}),even:Gr(function(x,N){for(var W=0;W<N;W+=2)x.push(W);return x}),odd:Gr(function(x,N){for(var W=1;W<N;W+=2)x.push(W);return x}),lt:Gr(function(x,N,W){var K;for(K=W<0?W+N:W>N?N:W;--K>=0;)x.push(K);return x}),gt:Gr(function(x,N,W){for(var K=W<0?W+N:W;++K<N;)x.push(K);return x})}}).pseudos.nth=d.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[c]=_t(c);for(c in{submit:!0,reset:!0})d.pseudos[c]=xl(c);function La(){}function Kr(x,N){var W,K,Q,he,De,Pe,fe,St=pt[x+" "];if(St)return N?0:St.slice(0);for(De=x,Pe=[],fe=d.preFilter;De;){for(he in(!W||(K=mn.exec(De)))&&(K&&(De=De.slice(K[0].length)||De),Pe.push(Q=[])),W=!1,(K=G.exec(De))&&(W=K.shift(),Q.push({value:W,type:K[0].replace($i," ")}),De=De.slice(W.length)),d.filter)(K=hn[he].exec(De))&&(!fe[he]||(K=fe[he](K)))&&(W=K.shift(),Q.push({value:W,type:he,matches:K}),De=De.slice(W.length));if(!W)break}return N?De.length:De?Ot.error(x):pt(x,Pe).slice(0)}function Si(x){for(var N=0,W=x.length,K="";N<W;N++)K+=x[N].value;return K}function Yr(x,N,W){var K=N.dir,Q=N.next,he=Q||K,De=W&&"parentNode"===he,Pe=oe++;return N.first?function(fe,St,nt){for(;fe=fe[K];)if(1===fe.nodeType||De)return x(fe,St,nt);return!1}:function(fe,St,nt){var ct,Dt,Ke=[Y,Pe];if(nt){for(;fe=fe[K];)if((1===fe.nodeType||De)&&x(fe,St,nt))return!0}else for(;fe=fe[K];)if(1===fe.nodeType||De)if(Dt=fe[$]||(fe[$]={}),Q&&tn(fe,Q))fe=fe[K]||fe;else{if((ct=Dt[he])&&ct[0]===Y&&ct[1]===Pe)return Ke[2]=ct[2];if(Dt[he]=Ke,Ke[2]=x(fe,St,nt))return!0}return!1}}function kl(x){return x.length>1?function(N,W,K){for(var Q=x.length;Q--;)if(!x[Q](N,W,K))return!1;return!0}:x[0]}function Il(x,N,W,K,Q){for(var he,De=[],Pe=0,fe=x.length,St=null!=N;Pe<fe;Pe++)(he=x[Pe])&&(!W||W(he,K,Q))&&(De.push(he),St&&N.push(Pe));return De}function hu(x,N,W,K,Q,he){return K&&!K[$]&&(K=hu(K)),Q&&!Q[$]&&(Q=hu(Q,he)),vi(function(De,Pe,fe,St){var nt,ct,Dt,Ke,un=[],Bi=[],bi=Pe.length,lr=De||function an(x,N,W){for(var K=0,Q=N.length;K<Q;K++)Ot(x,N[K],W);return W}(N||"*",fe.nodeType?[fe]:fe,[]),qr=!x||!De&&N?lr:Il(lr,un,x,fe,St);if(W?W(qr,Ke=Q||(De?x:bi||K)?[]:Pe,fe,St):Ke=qr,K)for(nt=Il(Ke,Bi),K(nt,[],fe,St),ct=nt.length;ct--;)(Dt=nt[ct])&&(Ke[Bi[ct]]=!(qr[Bi[ct]]=Dt));if(De){if(Q||x){if(Q){for(nt=[],ct=Ke.length;ct--;)(Dt=Ke[ct])&&nt.push(qr[ct]=Dt);Q(null,Ke=[],nt,St)}for(ct=Ke.length;ct--;)(Dt=Ke[ct])&&(nt=Q?Ie.call(De,Dt):un[ct])>-1&&(De[nt]=!(Pe[nt]=Dt))}}else Ke=Il(Ke===Pe?Ke.splice(bi,Ke.length):Ke),Q?Q(null,Pe,Ke,St):y.apply(Pe,Ke)})}function Pa(x){for(var N,W,K,Q=x.length,he=d.relative[x[0].type],De=he||d.relative[" "],Pe=he?1:0,fe=Yr(function(ct){return ct===N},De,!0),St=Yr(function(ct){return Ie.call(N,ct)>-1},De,!0),nt=[function(ct,Dt,Ke){var un=!he&&(Ke||Dt!=f)||((N=Dt).nodeType?fe(ct,Dt,Ke):St(ct,Dt,Ke));return N=null,un}];Pe<Q;Pe++)if(W=d.relative[x[Pe].type])nt=[Yr(kl(nt),W)];else{if((W=d.filter[x[Pe].type].apply(null,x[Pe].matches))[$]){for(K=++Pe;K<Q&&!d.relative[x[K].type];K++);return hu(Pe>1&&kl(nt),Pe>1&&Si(x.slice(0,Pe-1).concat({value:" "===x[Pe-2].type?"*":""})).replace($i,"$1"),W,Pe<K&&Pa(x.slice(Pe,K)),K<Q&&Pa(x=x.slice(K)),K<Q&&Si(x))}nt.push(W)}return kl(nt)}function Ks(x,N){var W,K=[],Q=[],he=ut[x+" "];if(!he){for(N||(N=Kr(x)),W=N.length;W--;)(he=Pa(N[W]))[$]?K.push(he):Q.push(he);he=ut(x,function fu(x,N){var W=N.length>0,K=x.length>0,Q=function(he,De,Pe,fe,St){var nt,ct,Dt,Ke=0,un="0",Bi=he&&[],bi=[],lr=f,qr=he||K&&d.find.TAG("*",St),bo=Y+=null==lr?1:Math.random()||.1,Di=qr.length;for(St&&(f=De==T||De||St);un!==Di&&null!=(nt=qr[un]);un++){if(K&&nt){for(ct=0,!De&&nt.ownerDocument!=T&&(yn(nt),Pe=!M);Dt=x[ct++];)if(Dt(nt,De||T,Pe)){y.call(fe,nt);break}St&&(Y=bo)}W&&((nt=!Dt&&nt)&&Ke--,he&&Bi.push(nt))}if(Ke+=un,W&&un!==Ke){for(ct=0;Dt=N[ct++];)Dt(Bi,bi,De,Pe);if(he){if(Ke>0)for(;un--;)Bi[un]||bi[un]||(bi[un]=qg.call(fe));bi=Il(bi)}y.apply(fe,bi),St&&!he&&bi.length>0&&Ke+N.length>1&&m.uniqueSort(fe)}return St&&(Y=bo,f=lr),Bi};return W?vi(Q):Q}(Q,K)),he.selector=x}return he}function vo(x,N,W,K){var Q,he,De,Pe,fe,St="function"==typeof x&&x,nt=!K&&Kr(x=St.selector||x);if(W=W||[],1===nt.length){if((he=nt[0]=nt[0].slice(0)).length>2&&"ID"===(De=he[0]).type&&9===N.nodeType&&M&&d.relative[he[1].type]){if(!(N=(d.find.ID(De.matches[0].replace(Qe,Ut),N)||[])[0]))return W;St&&(N=N.parentNode),x=x.slice(he.shift().value.length)}for(Q=hn.needsContext.test(x)?0:he.length;Q--&&!d.relative[Pe=(De=he[Q]).type];)if((fe=d.find[Pe])&&(K=fe(De.matches[0].replace(Qe,Ut),Se.test(he[0].type)&&Wr(N.parentNode)||N))){if(he.splice(Q,1),!(x=K.length&&Si(he)))return y.apply(W,K),W;break}}return(St||Ks(x,nt))(K,N,!M,W,!N||Se.test(x)&&Wr(N.parentNode)||N),W}La.prototype=d.filters=d.pseudos,d.setFilters=new La,et.sortStable=$.split("").sort(ce).join("")===$,yn(),et.sortDetached=Mr(function(x){return 1&x.compareDocumentPosition(T.createElement("fieldset"))}),m.find=Ot,m.expr[":"]=m.expr.pseudos,m.unique=m.uniqueSort,Ot.compile=Ks,Ot.select=vo,Ot.setDocument=yn,Ot.escape=m.escapeSelector,Ot.getText=m.text,Ot.isXML=m.isXMLDoc,Ot.selectors=m.expr,Ot.support=m.support,Ot.uniqueSort=m.uniqueSort}();var Sa=function(c,d,f){for(var g=[],v=void 0!==f;(c=c[d])&&9!==c.nodeType;)if(1===c.nodeType){if(v&&m(c).is(f))break;g.push(c)}return g},sh=function(c,d){for(var f=[];c;c=c.nextSibling)1===c.nodeType&&c!==d&&f.push(c);return f},ah=m.expr.match.needsContext,pe=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function gl(c,d,f){return ot(d)?m.grep(c,function(g,v){return!!d.call(g,v,g)!==f}):d.nodeType?m.grep(c,function(g){return g===d!==f}):"string"!=typeof d?m.grep(c,function(g){return Ie.call(d,g)>-1!==f}):m.filter(d,c,f)}m.filter=function(c,d,f){var g=d[0];return f&&(c=":not("+c+")"),1===d.length&&1===g.nodeType?m.find.matchesSelector(g,c)?[g]:[]:m.find.matches(c,m.grep(d,function(v){return 1===v.nodeType}))},m.fn.extend({find:function(c){var d,f,g=this.length,v=this;if("string"!=typeof c)return this.pushStack(m(c).filter(function(){for(d=0;d<g;d++)if(m.contains(v[d],this))return!0}));for(f=this.pushStack([]),d=0;d<g;d++)m.find(c,v[d],f);return g>1?m.uniqueSort(f):f},filter:function(c){return this.pushStack(gl(this,c||[],!1))},not:function(c){return this.pushStack(gl(this,c||[],!0))},is:function(c){return!!gl(this,"string"==typeof c&&ah.test(c)?m(c):c||[],!1).length}});var eu,ln=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,Zt=m.fn.init=function(c,d,f){var g,v;if(!c)return this;if(f=f||eu,"string"==typeof c){if(!(g="<"===c[0]&&">"===c[c.length-1]&&c.length>=3?[null,c,null]:ln.exec(c))||!g[1]&&d)return!d||d.jquery?(d||f).find(c):this.constructor(d).find(c);if(g[1]){if(m.merge(this,m.parseHTML(g[1],(d=d instanceof m?d[0]:d)&&d.nodeType?d.ownerDocument||d:Ge,!0)),pe.test(g[1])&&m.isPlainObject(d))for(g in d)ot(this[g])?this[g](d[g]):this.attr(g,d[g]);return this}return(v=Ge.getElementById(g[2]))&&(this[0]=v,this.length=1),this}return c.nodeType?(this[0]=c,this.length=1,this):ot(c)?void 0!==f.ready?f.ready(c):c(m):m.makeArray(c,this)};Zt.prototype=m.fn,eu=m(Ge);var Zg=/^(?:parents|prev(?:Until|All))/,Le={children:!0,contents:!0,next:!0,prev:!0};function ml(c,d){for(;(c=c[d])&&1!==c.nodeType;);return c}m.fn.extend({has:function(c){var d=m(c,this),f=d.length;return this.filter(function(){for(var g=0;g<f;g++)if(m.contains(this,d[g]))return!0})},closest:function(c,d){var f,g=0,v=this.length,y=[],T="string"!=typeof c&&m(c);if(!ah.test(c))for(;g<v;g++)for(f=this[g];f&&f!==d;f=f.parentNode)if(f.nodeType<11&&(T?T.index(f)>-1:1===f.nodeType&&m.find.matchesSelector(f,c))){y.push(f);break}return this.pushStack(y.length>1?m.uniqueSort(y):y)},index:function(c){return c?"string"==typeof c?Ie.call(m(c),this[0]):Ie.call(this,c.jquery?c[0]:c):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(c,d){return this.pushStack(m.uniqueSort(m.merge(this.get(),m(c,d))))},addBack:function(c){return this.add(null==c?this.prevObject:this.prevObject.filter(c))}}),m.each({parent:function(c){var d=c.parentNode;return d&&11!==d.nodeType?d:null},parents:function(c){return Sa(c,"parentNode")},parentsUntil:function(c,d,f){return Sa(c,"parentNode",f)},next:function(c){return ml(c,"nextSibling")},prev:function(c){return ml(c,"previousSibling")},nextAll:function(c){return Sa(c,"nextSibling")},prevAll:function(c){return Sa(c,"previousSibling")},nextUntil:function(c,d,f){return Sa(c,"nextSibling",f)},prevUntil:function(c,d,f){return Sa(c,"previousSibling",f)},siblings:function(c){return sh((c.parentNode||{}).firstChild,c)},children:function(c){return sh(c.firstChild)},contents:function(c){return null!=c.contentDocument&&Oe(c.contentDocument)?c.contentDocument:(tn(c,"template")&&(c=c.content||c),m.merge([],c.childNodes))}},function(c,d){m.fn[c]=function(f,g){var v=m.map(this,d,f);return"Until"!==c.slice(-5)&&(g=f),g&&"string"==typeof g&&(v=m.filter(g,v)),this.length>1&&(Le[c]||m.uniqueSort(v),Zg.test(c)&&v.reverse()),this.pushStack(v)}});var Hr=/[^\x20\t\r\n\f]+/g;function co(c){return c}function tu(c){throw c}function $g(c,d,f,g){var v;try{c&&ot(v=c.promise)?v.call(c).done(d).fail(f):c&&ot(v=c.then)?v.call(c,d,f):d.apply(void 0,[c].slice(g))}catch(y){f.apply(void 0,[y])}}m.Callbacks=function(c){c="string"==typeof c?function oh(c){var d={};return m.each(c.match(Hr)||[],function(f,g){d[g]=!0}),d}(c):m.extend({},c);var d,f,g,v,y=[],T=[],P=-1,M=function(){for(v=v||c.once,g=d=!0;T.length;P=-1)for(f=T.shift();++P<y.length;)!1===y[P].apply(f[0],f[1])&&c.stopOnFalse&&(P=y.length,f=!1);c.memory||(f=!1),d=!1,v&&(y=f?[]:"")},B={add:function(){return y&&(f&&!d&&(P=y.length-1,T.push(f)),function H($){m.each($,function(Y,oe){ot(oe)?(!c.unique||!B.has(oe))&&y.push(oe):oe&&oe.length&&"string"!==fs(oe)&&H(oe)})}(arguments),f&&!d&&M()),this},remove:function(){return m.each(arguments,function(H,$){for(var Y;(Y=m.inArray($,y,Y))>-1;)y.splice(Y,1),Y<=P&&P--}),this},has:function(H){return H?m.inArray(H,y)>-1:y.length>0},empty:function(){return y&&(y=[]),this},disable:function(){return v=T=[],y=f="",this},disabled:function(){return!y},lock:function(){return v=T=[],!f&&!d&&(y=f=""),this},locked:function(){return!!v},fireWith:function(H,$){return v||($=[H,($=$||[]).slice?$.slice():$],T.push($),d||M()),this},fire:function(){return B.fireWith(this,arguments),this},fired:function(){return!!g}};return B},m.extend({Deferred:function(c){var d=[["notify","progress",m.Callbacks("memory"),m.Callbacks("memory"),2],["resolve","done",m.Callbacks("once memory"),m.Callbacks("once memory"),0,"resolved"],["reject","fail",m.Callbacks("once memory"),m.Callbacks("once memory"),1,"rejected"]],f="pending",g={state:function(){return f},always:function(){return v.done(arguments).fail(arguments),this},catch:function(y){return g.then(null,y)},pipe:function(){var y=arguments;return m.Deferred(function(T){m.each(d,function(P,M){var B=ot(y[M[4]])&&y[M[4]];v[M[1]](function(){var H=B&&B.apply(this,arguments);H&&ot(H.promise)?H.promise().progress(T.notify).done(T.resolve).fail(T.reject):T[M[0]+"With"](this,B?[H]:arguments)})}),y=null}).promise()},then:function(y,T,P){var M=0;function B(H,$,Y,oe){return function(){var tt=this,pt=arguments,ut=function(){var ce,Ir;if(!(H<M)){if((ce=Y.apply(tt,pt))===$.promise())throw new TypeError("Thenable self-resolution");ot(Ir=ce&&("object"==typeof ce||"function"==typeof ce)&&ce.then)?oe?Ir.call(ce,B(M,$,co,oe),B(M,$,tu,oe)):(M++,Ir.call(ce,B(M,$,co,oe),B(M,$,tu,oe),B(M,$,co,$.notifyWith))):(Y!==co&&(tt=void 0,pt=[ce]),(oe||$.resolveWith)(tt,pt))}},ri=oe?ut:function(){try{ut()}catch(ce){m.Deferred.exceptionHook&&m.Deferred.exceptionHook(ce,ri.error),H+1>=M&&(Y!==tu&&(tt=void 0,pt=[ce]),$.rejectWith(tt,pt))}};H?ri():(m.Deferred.getErrorHook?ri.error=m.Deferred.getErrorHook():m.Deferred.getStackHook&&(ri.error=m.Deferred.getStackHook()),de.setTimeout(ri))}}return m.Deferred(function(H){d[0][3].add(B(0,H,ot(P)?P:co,H.notifyWith)),d[1][3].add(B(0,H,ot(y)?y:co)),d[2][3].add(B(0,H,ot(T)?T:tu))}).promise()},promise:function(y){return null!=y?m.extend(y,g):g}},v={};return m.each(d,function(y,T){var P=T[2],M=T[5];g[T[1]]=P.add,M&&P.add(function(){f=M},d[3-y][2].disable,d[3-y][3].disable,d[0][2].lock,d[0][3].lock),P.add(T[3].fire),v[T[0]]=function(){return v[T[0]+"With"](this===v?void 0:this,arguments),this},v[T[0]+"With"]=P.fireWith}),g.promise(v),c&&c.call(v,v),v},when:function(c){var d=arguments.length,f=d,g=Array(f),v=ae.call(arguments),y=m.Deferred(),T=function(P){return function(M){g[P]=this,v[P]=arguments.length>1?ae.call(arguments):M,--d||y.resolveWith(g,v)}};if(d<=1&&($g(c,y.done(T(f)).resolve,y.reject,!d),"pending"===y.state()||ot(v[f]&&v[f].then)))return y.then();for(;f--;)$g(v[f],T(f),y.reject);return y.promise()}});var fC=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;m.Deferred.exceptionHook=function(c,d){de.console&&de.console.warn&&c&&fC.test(c.name)&&de.console.warn("jQuery.Deferred exception: "+c.message,c.stack,d)},m.readyException=function(c){de.setTimeout(function(){throw c})};var lh=m.Deferred();function nu(){Ge.removeEventListener("DOMContentLoaded",nu),de.removeEventListener("load",nu),m.ready()}m.fn.ready=function(c){return lh.then(c).catch(function(d){m.readyException(d)}),this},m.extend({isReady:!1,readyWait:1,ready:function(c){(!0===c?--m.readyWait:m.isReady)||(m.isReady=!0,!(!0!==c&&--m.readyWait>0)&&lh.resolveWith(Ge,[m]))}}),m.ready.then=lh.then,"complete"===Ge.readyState||"loading"!==Ge.readyState&&!Ge.documentElement.doScroll?de.setTimeout(m.ready):(Ge.addEventListener("DOMContentLoaded",nu),de.addEventListener("load",nu));var ps=function(c,d,f,g,v,y,T){var P=0,M=c.length,B=null==f;if("object"===fs(f))for(P in v=!0,f)ps(c,d,P,f[P],!0,y,T);else if(void 0!==g&&(v=!0,ot(g)||(T=!0),B&&(T?(d.call(c,g),d=null):(B=d,d=function(H,$,Y){return B.call(m(H),Y)})),d))for(;P<M;P++)d(c[P],f,T?g:g.call(c[P],P,d(c[P],f)));return v?c:B?d.call(c):M?d(c[0],f):y},pC=/^-ms-/,Jg=/-([a-z])/g;function gC(c,d){return d.toUpperCase()}function sr(c){return c.replace(pC,"ms-").replace(Jg,gC)}var _l=function(c){return 1===c.nodeType||9===c.nodeType||!+c.nodeType};function Da(){this.expando=m.expando+Da.uid++}Da.uid=1,Da.prototype={cache:function(c){var d=c[this.expando];return d||(d={},_l(c)&&(c.nodeType?c[this.expando]=d:Object.defineProperty(c,this.expando,{value:d,configurable:!0}))),d},set:function(c,d,f){var g,v=this.cache(c);if("string"==typeof d)v[sr(d)]=f;else for(g in d)v[sr(g)]=d[g];return v},get:function(c,d){return void 0===d?this.cache(c):c[this.expando]&&c[this.expando][sr(d)]},access:function(c,d,f){return void 0===d||d&&"string"==typeof d&&void 0===f?this.get(c,d):(this.set(c,d,f),void 0!==f?f:d)},remove:function(c,d){var f,g=c[this.expando];if(void 0!==g){if(void 0!==d)for((f=(d=Array.isArray(d)?d.map(sr):(d=sr(d))in g?[d]:d.match(Hr)||[]).length);f--;)delete g[d[f]];(void 0===d||m.isEmptyObject(g))&&(c.nodeType?c[this.expando]=void 0:delete c[this.expando])}},hasData:function(c){var d=c[this.expando];return void 0!==d&&!m.isEmptyObject(d)}};var Be=new Da,Li=new Da,mC=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,_C=/[A-Z]/g;function ch(c,d,f){var g;if(void 0===f&&1===c.nodeType)if(g="data-"+d.replace(_C,"-$&").toLowerCase(),"string"==typeof(f=c.getAttribute(g))){try{f=function Us(c){return"true"===c||"false"!==c&&("null"===c?null:c===+c+""?+c:mC.test(c)?JSON.parse(c):c)}(f)}catch{}Li.set(c,d,f)}else f=void 0;return f}m.extend({hasData:function(c){return Li.hasData(c)||Be.hasData(c)},data:function(c,d,f){return Li.access(c,d,f)},removeData:function(c,d){Li.remove(c,d)},_data:function(c,d,f){return Be.access(c,d,f)},_removeData:function(c,d){Be.remove(c,d)}}),m.fn.extend({data:function(c,d){var f,g,v,y=this[0],T=y&&y.attributes;if(void 0===c){if(this.length&&(v=Li.get(y),1===y.nodeType&&!Be.get(y,"hasDataAttrs"))){for(f=T.length;f--;)T[f]&&0===(g=T[f].name).indexOf("data-")&&(g=sr(g.slice(5)),ch(y,g,v[g]));Be.set(y,"hasDataAttrs",!0)}return v}return"object"==typeof c?this.each(function(){Li.set(this,c)}):ps(this,function(P){var M;if(y&&void 0===P)return void 0!==(M=Li.get(y,c))||void 0!==(M=ch(y,c))?M:void 0;this.each(function(){Li.set(this,c,P)})},null,d,arguments.length>1,null,!0)},removeData:function(c){return this.each(function(){Li.remove(this,c)})}}),m.extend({queue:function(c,d,f){var g;if(c)return g=Be.get(c,d=(d||"fx")+"queue"),f&&(!g||Array.isArray(f)?g=Be.access(c,d,m.makeArray(f)):g.push(f)),g||[]},dequeue:function(c,d){var f=m.queue(c,d=d||"fx"),g=f.length,v=f.shift(),y=m._queueHooks(c,d);"inprogress"===v&&(v=f.shift(),g--),v&&("fx"===d&&f.unshift("inprogress"),delete y.stop,v.call(c,function(){m.dequeue(c,d)},y)),!g&&y&&y.empty.fire()},_queueHooks:function(c,d){var f=d+"queueHooks";return Be.get(c,f)||Be.access(c,f,{empty:m.Callbacks("once memory").add(function(){Be.remove(c,[d+"queue",f])})})}}),m.fn.extend({queue:function(c,d){var f=2;return"string"!=typeof c&&(d=c,c="fx",f--),arguments.length<f?m.queue(this[0],c):void 0===d?this:this.each(function(){var g=m.queue(this,c,d);m._queueHooks(this,c),"fx"===c&&"inprogress"!==g[0]&&m.dequeue(this,c)})},dequeue:function(c){return this.each(function(){m.dequeue(this,c)})},clearQueue:function(c){return this.queue(c||"fx",[])},promise:function(c,d){var f,g=1,v=m.Deferred(),y=this,T=this.length,P=function(){--g||v.resolveWith(y,[y])};for("string"!=typeof c&&(d=c,c=void 0),c=c||"fx";T--;)(f=Be.get(y[T],c+"queueHooks"))&&f.empty&&(g++,f.empty.add(P));return P(),v.promise(d)}});var em=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,uo=new RegExp("^(?:([+-])=|)("+em+")([a-z%]*)$","i"),gs=["Top","Right","Bottom","Left"],js=Ge.documentElement,ho=function(c){return m.contains(c.ownerDocument,c)},yC={composed:!0};js.getRootNode&&(ho=function(c){return m.contains(c.ownerDocument,c)||c.getRootNode(yC)===c.ownerDocument});var iu=function(c,d){return"none"===(c=d||c).style.display||""===c.style.display&&ho(c)&&"none"===m.css(c,"display")};function tm(c,d,f,g){var v,y,T=20,P=g?function(){return g.cur()}:function(){return m.css(c,d,"")},M=P(),B=f&&f[3]||(m.cssNumber[d]?"":"px"),H=c.nodeType&&(m.cssNumber[d]||"px"!==B&&+M)&&uo.exec(m.css(c,d));if(H&&H[3]!==B){for(B=B||H[3],H=+(M/=2)||1;T--;)m.style(c,d,H+B),(1-y)*(1-(y=P()/M||.5))<=0&&(T=0),H/=y;m.style(c,d,(H*=2)+B),f=f||[]}return f&&(H=+H||+M||0,v=f[1]?H+(f[1]+1)*f[2]:+f[2],g&&(g.unit=B,g.start=H,g.end=v)),v}var nm={};function ru(c){var d,f=c.ownerDocument,g=c.nodeName,v=nm[g];return v||(d=f.body.appendChild(f.createElement(g)),v=m.css(d,"display"),d.parentNode.removeChild(d),"none"===v&&(v="block"),nm[g]=v,v)}function zs(c,d){for(var f,g,v=[],y=0,T=c.length;y<T;y++)(g=c[y]).style&&(f=g.style.display,d?("none"===f&&(v[y]=Be.get(g,"display")||null,v[y]||(g.style.display="")),""===g.style.display&&iu(g)&&(v[y]=ru(g))):"none"!==f&&(v[y]="none",Be.set(g,"display",f)));for(y=0;y<T;y++)null!=v[y]&&(c[y].style.display=v[y]);return c}m.fn.extend({show:function(){return zs(this,!0)},hide:function(){return zs(this)},toggle:function(c){return"boolean"==typeof c?c?this.show():this.hide():this.each(function(){iu(this)?m(this).show():m(this).hide()})}});var d,f,wa=/^(?:checkbox|radio)$/i,su=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,au=/^$|^module$|\/(?:java|ecma)script/i;d=Ge.createDocumentFragment().appendChild(Ge.createElement("div")),(f=Ge.createElement("input")).setAttribute("type","radio"),f.setAttribute("checked","checked"),f.setAttribute("name","t"),d.appendChild(f),et.checkClone=d.cloneNode(!0).cloneNode(!0).lastChild.checked,d.innerHTML="<textarea>x</textarea>",et.noCloneChecked=!!d.cloneNode(!0).lastChild.defaultValue,d.innerHTML="<option></option>",et.option=!!d.lastChild;var Ji={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function Ai(c,d){var f;return f=typeof c.getElementsByTagName<"u"?c.getElementsByTagName(d||"*"):typeof c.querySelectorAll<"u"?c.querySelectorAll(d||"*"):[],void 0===d||d&&tn(c,d)?m.merge([c],f):f}function yl(c,d){for(var f=0,g=c.length;f<g;f++)Be.set(c[f],"globalEval",!d||Be.get(d[f],"globalEval"))}Ji.tbody=Ji.tfoot=Ji.colgroup=Ji.caption=Ji.thead,Ji.th=Ji.td,et.option||(Ji.optgroup=Ji.option=[1,"<select multiple='multiple'>","</select>"]);var uh=/<|&#?\w+;/;function ou(c,d,f,g,v){for(var y,T,P,M,B,H,$=d.createDocumentFragment(),Y=[],oe=0,tt=c.length;oe<tt;oe++)if((y=c[oe])||0===y)if("object"===fs(y))m.merge(Y,y.nodeType?[y]:y);else if(uh.test(y)){for(T=T||$.appendChild(d.createElement("div")),P=(su.exec(y)||["",""])[1].toLowerCase(),T.innerHTML=(M=Ji[P]||Ji._default)[1]+m.htmlPrefilter(y)+M[2],H=M[0];H--;)T=T.lastChild;m.merge(Y,T.childNodes),(T=$.firstChild).textContent=""}else Y.push(d.createTextNode(y));for($.textContent="",oe=0;y=Y[oe++];)if(g&&m.inArray(y,g)>-1)v&&v.push(y);else if(B=ho(y),T=Ai($.appendChild(y),"script"),B&&yl(T),f)for(H=0;y=T[H++];)au.test(y.type||"")&&f.push(y);return $}var Hn=/^([^.]*)(?:\.(.+)|)/;function xa(){return!0}function ka(){return!1}function lu(c,d,f,g,v,y){var T,P;if("object"==typeof d){for(P in"string"!=typeof f&&(g=g||f,f=void 0),d)lu(c,P,f,g,d[P],y);return c}if(null==g&&null==v?(v=f,g=f=void 0):null==v&&("string"==typeof f?(v=g,g=void 0):(v=g,g=f,f=void 0)),!1===v)v=ka;else if(!v)return c;return 1===y&&(T=v,v=function(M){return m().off(M),T.apply(this,arguments)},v.guid=T.guid||(T.guid=m.guid++)),c.each(function(){m.event.add(this,d,v,g,f)})}function Al(c,d,f){f?(Be.set(c,d,!1),m.event.add(c,d,{namespace:!1,handler:function(g){var v,y=Be.get(this,d);if(1&g.isTrigger&&this[d]){if(y)(m.event.special[d]||{}).delegateType&&g.stopPropagation();else if(y=ae.call(arguments),Be.set(this,d,y),this[d](),v=Be.get(this,d),Be.set(this,d,!1),y!==v)return g.stopImmediatePropagation(),g.preventDefault(),v}else y&&(Be.set(this,d,m.event.trigger(y[0],y.slice(1),this)),g.stopPropagation(),g.isImmediatePropagationStopped=xa)}})):void 0===Be.get(c,d)&&m.event.add(c,d,xa)}m.event={global:{},add:function(c,d,f,g,v){var y,T,P,M,B,H,$,Y,oe,tt,pt,ut=Be.get(c);if(_l(c))for(f.handler&&(f=(y=f).handler,v=y.selector),v&&m.find.matchesSelector(js,v),f.guid||(f.guid=m.guid++),(M=ut.events)||(M=ut.events=Object.create(null)),(T=ut.handle)||(T=ut.handle=function(ri){return typeof m<"u"&&m.event.triggered!==ri.type?m.event.dispatch.apply(c,arguments):void 0}),B=(d=(d||"").match(Hr)||[""]).length;B--;)oe=pt=(P=Hn.exec(d[B])||[])[1],tt=(P[2]||"").split(".").sort(),oe&&($=m.event.special[oe]||{},$=m.event.special[oe=(v?$.delegateType:$.bindType)||oe]||{},H=m.extend({type:oe,origType:pt,data:g,handler:f,guid:f.guid,selector:v,needsContext:v&&m.expr.match.needsContext.test(v),namespace:tt.join(".")},y),(Y=M[oe])||((Y=M[oe]=[]).delegateCount=0,(!$.setup||!1===$.setup.call(c,g,tt,T))&&c.addEventListener&&c.addEventListener(oe,T)),$.add&&($.add.call(c,H),H.handler.guid||(H.handler.guid=f.guid)),v?Y.splice(Y.delegateCount++,0,H):Y.push(H),m.event.global[oe]=!0)},remove:function(c,d,f,g,v){var y,T,P,M,B,H,$,Y,oe,tt,pt,ut=Be.hasData(c)&&Be.get(c);if(ut&&(M=ut.events)){for(B=(d=(d||"").match(Hr)||[""]).length;B--;)if(oe=pt=(P=Hn.exec(d[B])||[])[1],tt=(P[2]||"").split(".").sort(),oe){for($=m.event.special[oe]||{},Y=M[oe=(g?$.delegateType:$.bindType)||oe]||[],P=P[2]&&new RegExp("(^|\\.)"+tt.join("\\.(?:.*\\.|)")+"(\\.|$)"),T=y=Y.length;y--;)H=Y[y],(v||pt===H.origType)&&(!f||f.guid===H.guid)&&(!P||P.test(H.namespace))&&(!g||g===H.selector||"**"===g&&H.selector)&&(Y.splice(y,1),H.selector&&Y.delegateCount--,$.remove&&$.remove.call(c,H));T&&!Y.length&&((!$.teardown||!1===$.teardown.call(c,tt,ut.handle))&&m.removeEvent(c,oe,ut.handle),delete M[oe])}else for(oe in M)m.event.remove(c,oe+d[B],f,g,!0);m.isEmptyObject(M)&&Be.remove(c,"handle events")}},dispatch:function(c){var d,f,g,v,y,T,P=new Array(arguments.length),M=m.event.fix(c),B=(Be.get(this,"events")||Object.create(null))[M.type]||[],H=m.event.special[M.type]||{};for(P[0]=M,d=1;d<arguments.length;d++)P[d]=arguments[d];if(M.delegateTarget=this,!H.preDispatch||!1!==H.preDispatch.call(this,M)){for(T=m.event.handlers.call(this,M,B),d=0;(v=T[d++])&&!M.isPropagationStopped();)for(M.currentTarget=v.elem,f=0;(y=v.handlers[f++])&&!M.isImmediatePropagationStopped();)(!M.rnamespace||!1===y.namespace||M.rnamespace.test(y.namespace))&&(M.handleObj=y,M.data=y.data,void 0!==(g=((m.event.special[y.origType]||{}).handle||y.handler).apply(v.elem,P))&&!1===(M.result=g)&&(M.preventDefault(),M.stopPropagation()));return H.postDispatch&&H.postDispatch.call(this,M),M.result}},handlers:function(c,d){var f,g,v,y,T,P=[],M=d.delegateCount,B=c.target;if(M&&B.nodeType&&!("click"===c.type&&c.button>=1))for(;B!==this;B=B.parentNode||this)if(1===B.nodeType&&("click"!==c.type||!0!==B.disabled)){for(y=[],T={},f=0;f<M;f++)void 0===T[v=(g=d[f]).selector+" "]&&(T[v]=g.needsContext?m(v,this).index(B)>-1:m.find(v,this,null,[B]).length),T[v]&&y.push(g);y.length&&P.push({elem:B,handlers:y})}return B=this,M<d.length&&P.push({elem:B,handlers:d.slice(M)}),P},addProp:function(c,d){Object.defineProperty(m.Event.prototype,c,{enumerable:!0,configurable:!0,get:ot(d)?function(){if(this.originalEvent)return d(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[c]},set:function(f){Object.defineProperty(this,c,{enumerable:!0,configurable:!0,writable:!0,value:f})}})},fix:function(c){return c[m.expando]?c:new m.Event(c)},special:{load:{noBubble:!0},click:{setup:function(c){var d=this||c;return wa.test(d.type)&&d.click&&tn(d,"input")&&Al(d,"click",!0),!1},trigger:function(c){var d=this||c;return wa.test(d.type)&&d.click&&tn(d,"input")&&Al(d,"click"),!0},_default:function(c){var d=c.target;return wa.test(d.type)&&d.click&&tn(d,"input")&&Be.get(d,"click")||tn(d,"a")}},beforeunload:{postDispatch:function(c){void 0!==c.result&&c.originalEvent&&(c.originalEvent.returnValue=c.result)}}}},m.removeEvent=function(c,d,f){c.removeEventListener&&c.removeEventListener(d,f)},m.Event=function(c,d){if(!(this instanceof m.Event))return new m.Event(c,d);c&&c.type?(this.originalEvent=c,this.type=c.type,this.isDefaultPrevented=c.defaultPrevented||void 0===c.defaultPrevented&&!1===c.returnValue?xa:ka,this.target=c.target&&3===c.target.nodeType?c.target.parentNode:c.target,this.currentTarget=c.currentTarget,this.relatedTarget=c.relatedTarget):this.type=c,d&&m.extend(this,d),this.timeStamp=c&&c.timeStamp||Date.now(),this[m.expando]=!0},m.Event.prototype={constructor:m.Event,isDefaultPrevented:ka,isPropagationStopped:ka,isImmediatePropagationStopped:ka,isSimulated:!1,preventDefault:function(){var c=this.originalEvent;this.isDefaultPrevented=xa,c&&!this.isSimulated&&c.preventDefault()},stopPropagation:function(){var c=this.originalEvent;this.isPropagationStopped=xa,c&&!this.isSimulated&&c.stopPropagation()},stopImmediatePropagation:function(){var c=this.originalEvent;this.isImmediatePropagationStopped=xa,c&&!this.isSimulated&&c.stopImmediatePropagation(),this.stopPropagation()}},m.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},m.event.addProp),m.each({focus:"focusin",blur:"focusout"},function(c,d){function f(g){if(Ge.documentMode){var v=Be.get(this,"handle"),y=m.event.fix(g);y.type="focusin"===g.type?"focus":"blur",y.isSimulated=!0,v(g),y.target===y.currentTarget&&v(y)}else m.event.simulate(d,g.target,m.event.fix(g))}m.event.special[c]={setup:function(){var g;if(Al(this,c,!0),!Ge.documentMode)return!1;(g=Be.get(this,d))||this.addEventListener(d,f),Be.set(this,d,(g||0)+1)},trigger:function(){return Al(this,c),!0},teardown:function(){var g;if(!Ge.documentMode)return!1;(g=Be.get(this,d)-1)?Be.set(this,d,g):(this.removeEventListener(d,f),Be.remove(this,d))},_default:function(g){return Be.get(g.target,c)},delegateType:d},m.event.special[d]={setup:function(){var g=this.ownerDocument||this.document||this,v=Ge.documentMode?this:g,y=Be.get(v,d);y||(Ge.documentMode?this.addEventListener(d,f):g.addEventListener(c,f,!0)),Be.set(v,d,(y||0)+1)},teardown:function(){var g=this.ownerDocument||this.document||this,v=Ge.documentMode?this:g,y=Be.get(v,d)-1;y?Be.set(v,d,y):(Ge.documentMode?this.removeEventListener(d,f):g.removeEventListener(c,f,!0),Be.remove(v,d))}}}),m.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(c,d){m.event.special[c]={delegateType:d,bindType:d,handle:function(f){var g,v=this,y=f.relatedTarget,T=f.handleObj;return(!y||y!==v&&!m.contains(v,y))&&(f.type=T.origType,g=T.handler.apply(this,arguments),f.type=d),g}}}),m.fn.extend({on:function(c,d,f,g){return lu(this,c,d,f,g)},one:function(c,d,f,g){return lu(this,c,d,f,g,1)},off:function(c,d,f){var g,v;if(c&&c.preventDefault&&c.handleObj)return g=c.handleObj,m(c.delegateTarget).off(g.namespace?g.origType+"."+g.namespace:g.origType,g.selector,g.handler),this;if("object"==typeof c){for(v in c)this.off(v,d,c[v]);return this}return(!1===d||"function"==typeof d)&&(f=d,d=void 0),!1===f&&(f=ka),this.each(function(){m.event.remove(this,c,f,d)})}});var dh=/<script|<style|<link/i,im=/checked\s*(?:[^=]|=\s*.checked.)/i,rm=/^\s*<!\[CDATA\[|\]\]>\s*$/g;function Dr(c,d){return tn(c,"table")&&tn(11!==d.nodeType?d:d.firstChild,"tr")&&m(c).children("tbody")[0]||c}function sm(c){return c.type=(null!==c.getAttribute("type"))+"/"+c.type,c}function xn(c){return"true/"===(c.type||"").slice(0,5)?c.type=c.type.slice(5):c.removeAttribute("type"),c}function Hs(c,d){var f,g,v,T,P,M;if(1===d.nodeType){if(Be.hasData(c)&&(M=Be.get(c).events))for(v in Be.remove(d,"handle events"),M)for(f=0,g=M[v].length;f<g;f++)m.event.add(d,v,M[v][f]);Li.hasData(c)&&(T=Li.access(c),P=m.extend({},T),Li.set(d,P))}}function wr(c,d){var f=d.nodeName.toLowerCase();"input"===f&&wa.test(c.type)?d.checked=c.checked:("input"===f||"textarea"===f)&&(d.defaultValue=c.defaultValue)}function fo(c,d,f,g){d=at(d);var v,y,T,P,M,B,H=0,$=c.length,Y=$-1,oe=d[0],tt=ot(oe);if(tt||$>1&&"string"==typeof oe&&!et.checkClone&&im.test(oe))return c.each(function(pt){var ut=c.eq(pt);tt&&(d[0]=oe.call(this,pt,ut.html())),fo(ut,d,f,g)});if($&&(y=(v=ou(d,c[0].ownerDocument,!1,c,g)).firstChild,1===v.childNodes.length&&(v=y),y||g)){for(P=(T=m.map(Ai(v,"script"),sm)).length;H<$;H++)M=v,H!==Y&&(M=m.clone(M,!0,!0),P&&m.merge(T,Ai(M,"script"))),f.call(c[H],M,H);if(P)for(B=T[T.length-1].ownerDocument,m.map(T,xn),H=0;H<P;H++)au.test((M=T[H]).type||"")&&!Be.access(M,"globalEval")&&m.contains(B,M)&&(M.src&&"module"!==(M.type||"").toLowerCase()?m._evalUrl&&!M.noModule&&m._evalUrl(M.src,{nonce:M.nonce||M.getAttribute("nonce")},B):hs(M.textContent.replace(rm,""),M,B))}return c}function hh(c,d,f){for(var g,v=d?m.filter(d,c):c,y=0;null!=(g=v[y]);y++)!f&&1===g.nodeType&&m.cleanData(Ai(g)),g.parentNode&&(f&&ho(g)&&yl(Ai(g,"script")),g.parentNode.removeChild(g));return c}m.extend({htmlPrefilter:function(c){return c},clone:function(c,d,f){var g,v,y,T,P=c.cloneNode(!0),M=ho(c);if(!(et.noCloneChecked||1!==c.nodeType&&11!==c.nodeType||m.isXMLDoc(c)))for(T=Ai(P),g=0,v=(y=Ai(c)).length;g<v;g++)wr(y[g],T[g]);if(d)if(f)for(y=y||Ai(c),T=T||Ai(P),g=0,v=y.length;g<v;g++)Hs(y[g],T[g]);else Hs(c,P);return(T=Ai(P,"script")).length>0&&yl(T,!M&&Ai(c,"script")),P},cleanData:function(c){for(var d,f,g,v=m.event.special,y=0;void 0!==(f=c[y]);y++)if(_l(f)){if(d=f[Be.expando]){if(d.events)for(g in d.events)v[g]?m.event.remove(f,g):m.removeEvent(f,g,d.handle);f[Be.expando]=void 0}f[Li.expando]&&(f[Li.expando]=void 0)}}}),m.fn.extend({detach:function(c){return hh(this,c,!0)},remove:function(c){return hh(this,c)},text:function(c){return ps(this,function(d){return void 0===d?m.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=d)})},null,c,arguments.length)},append:function(){return fo(this,arguments,function(c){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Dr(this,c).appendChild(c)})},prepend:function(){return fo(this,arguments,function(c){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var d=Dr(this,c);d.insertBefore(c,d.firstChild)}})},before:function(){return fo(this,arguments,function(c){this.parentNode&&this.parentNode.insertBefore(c,this)})},after:function(){return fo(this,arguments,function(c){this.parentNode&&this.parentNode.insertBefore(c,this.nextSibling)})},empty:function(){for(var c,d=0;null!=(c=this[d]);d++)1===c.nodeType&&(m.cleanData(Ai(c,!1)),c.textContent="");return this},clone:function(c,d){return c=c??!1,d=d??c,this.map(function(){return m.clone(this,c,d)})},html:function(c){return ps(this,function(d){var f=this[0]||{},g=0,v=this.length;if(void 0===d&&1===f.nodeType)return f.innerHTML;if("string"==typeof d&&!dh.test(d)&&!Ji[(su.exec(d)||["",""])[1].toLowerCase()]){d=m.htmlPrefilter(d);try{for(;g<v;g++)1===(f=this[g]||{}).nodeType&&(m.cleanData(Ai(f,!1)),f.innerHTML=d);f=0}catch{}}f&&this.empty().append(d)},null,c,arguments.length)},replaceWith:function(){var c=[];return fo(this,arguments,function(d){var f=this.parentNode;m.inArray(this,c)<0&&(m.cleanData(Ai(this)),f&&f.replaceChild(d,this))},c)}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(c,d){m.fn[c]=function(f){for(var g,v=[],y=m(f),T=y.length-1,P=0;P<=T;P++)g=P===T?this:this.clone(!0),m(y[P])[d](g),ft.apply(v,g.get());return this.pushStack(v)}});var vl=new RegExp("^("+em+")(?!px)[a-z%]+$","i"),po=/^--/,go=function(c){var d=c.ownerDocument.defaultView;return(!d||!d.opener)&&(d=de),d.getComputedStyle(c)},Ia=function(c,d,f){var g,v,y={};for(v in d)y[v]=c.style[v],c.style[v]=d[v];for(v in g=f.call(c),d)c.style[v]=y[v];return g},am=new RegExp(gs.join("|"),"i");function Ma(c,d,f){var g,v,y,T,P=po.test(d),M=c.style;return(f=f||go(c))&&(T=f.getPropertyValue(d)||f[d],P&&T&&(T=T.replace($i,"$1")||void 0),""===T&&!ho(c)&&(T=m.style(c,d)),!et.pixelBoxStyles()&&vl.test(T)&&am.test(d)&&(g=M.width,v=M.minWidth,y=M.maxWidth,M.minWidth=M.maxWidth=M.width=T,T=f.width,M.width=g,M.minWidth=v,M.maxWidth=y)),void 0!==T?T+"":T}function cu(c,d){return{get:function(){if(!c())return(this.get=d).apply(this,arguments);delete this.get}}}!function(){function c(){if(B){M.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",B.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",js.appendChild(M).appendChild(B);var H=de.getComputedStyle(B);f="1%"!==H.top,P=12===d(H.marginLeft),B.style.right="60%",y=36===d(H.right),g=36===d(H.width),B.style.position="absolute",v=12===d(B.offsetWidth/3),js.removeChild(M),B=null}}function d(H){return Math.round(parseFloat(H))}var f,g,v,y,T,P,M=Ge.createElement("div"),B=Ge.createElement("div");!B.style||(B.style.backgroundClip="content-box",B.cloneNode(!0).style.backgroundClip="",et.clearCloneStyle="content-box"===B.style.backgroundClip,m.extend(et,{boxSizingReliable:function(){return c(),g},pixelBoxStyles:function(){return c(),y},pixelPosition:function(){return c(),f},reliableMarginLeft:function(){return c(),P},scrollboxSize:function(){return c(),v},reliableTrDimensions:function(){var H,$,Y,oe;return null==T&&(H=Ge.createElement("table"),$=Ge.createElement("tr"),Y=Ge.createElement("div"),H.style.cssText="position:absolute;left:-11111px;border-collapse:separate",$.style.cssText="border:1px solid",$.style.height="1px",Y.style.height="9px",Y.style.display="block",js.appendChild(H).appendChild($).appendChild(Y),oe=de.getComputedStyle($),T=parseInt(oe.height,10)+parseInt(oe.borderTopWidth,10)+parseInt(oe.borderBottomWidth,10)===$.offsetHeight,js.removeChild(H)),T}}))}();var fh=["Webkit","Moz","ms"],ph=Ge.createElement("div").style,gh={};function bl(c){return m.cssProps[c]||gh[c]||(c in ph?c:gh[c]=function om(c){for(var d=c[0].toUpperCase()+c.slice(1),f=fh.length;f--;)if((c=fh[f]+d)in ph)return c}(c)||c)}var lm=/^(none|table(?!-c[ea]).+)/,cm={position:"absolute",visibility:"hidden",display:"block"},vn={letterSpacing:"0",fontWeight:"400"};function ar(c,d,f){var g=uo.exec(d);return g?Math.max(0,g[2]-(f||0))+(g[3]||"px"):d}function mo(c,d,f,g,v,y){var T="width"===d?1:0,P=0,M=0,B=0;if(f===(g?"border":"content"))return 0;for(;T<4;T+=2)"margin"===f&&(B+=m.css(c,f+gs[T],!0,v)),g?("content"===f&&(M-=m.css(c,"padding"+gs[T],!0,v)),"margin"!==f&&(M-=m.css(c,"border"+gs[T]+"Width",!0,v))):(M+=m.css(c,"padding"+gs[T],!0,v),"padding"!==f?M+=m.css(c,"border"+gs[T]+"Width",!0,v):P+=m.css(c,"border"+gs[T]+"Width",!0,v));return!g&&y>=0&&(M+=Math.max(0,Math.ceil(c["offset"+d[0].toUpperCase()+d.slice(1)]-y-M-P-.5))||0),M+B}function Cl(c,d,f){var g=go(c),y=(!et.boxSizingReliable()||f)&&"border-box"===m.css(c,"boxSizing",!1,g),T=y,P=Ma(c,d,g),M="offset"+d[0].toUpperCase()+d.slice(1);if(vl.test(P)){if(!f)return P;P="auto"}return(!et.boxSizingReliable()&&y||!et.reliableTrDimensions()&&tn(c,"tr")||"auto"===P||!parseFloat(P)&&"inline"===m.css(c,"display",!1,g))&&c.getClientRects().length&&(y="border-box"===m.css(c,"boxSizing",!1,g),(T=M in c)&&(P=c[M])),(P=parseFloat(P)||0)+mo(c,d,f||(y?"border":"content"),T,g,P)+"px"}function yt(c,d,f,g,v){return new yt.prototype.init(c,d,f,g,v)}m.extend({cssHooks:{opacity:{get:function(c,d){if(d){var f=Ma(c,"opacity");return""===f?"1":f}}}},cssNumber:{animationIterationCount:!0,aspectRatio:!0,borderImageSlice:!0,columnCount:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,scale:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeMiterlimit:!0,strokeOpacity:!0},cssProps:{},style:function(c,d,f,g){if(c&&3!==c.nodeType&&8!==c.nodeType&&c.style){var v,y,T,P=sr(d),M=po.test(d),B=c.style;if(M||(d=bl(P)),T=m.cssHooks[d]||m.cssHooks[P],void 0===f)return T&&"get"in T&&void 0!==(v=T.get(c,!1,g))?v:B[d];if("string"==(y=typeof f)&&(v=uo.exec(f))&&v[1]&&(f=tm(c,d,v),y="number"),null==f||f!=f)return;"number"===y&&!M&&(f+=v&&v[3]||(m.cssNumber[P]?"":"px")),!et.clearCloneStyle&&""===f&&0===d.indexOf("background")&&(B[d]="inherit"),(!T||!("set"in T)||void 0!==(f=T.set(c,f,g)))&&(M?B.setProperty(d,f):B[d]=f)}},css:function(c,d,f,g){var v,y,T,P=sr(d);return po.test(d)||(d=bl(P)),(T=m.cssHooks[d]||m.cssHooks[P])&&"get"in T&&(v=T.get(c,!0,f)),void 0===v&&(v=Ma(c,d,g)),"normal"===v&&d in vn&&(v=vn[d]),""===f||f?(y=parseFloat(v),!0===f||isFinite(y)?y||0:v):v}}),m.each(["height","width"],function(c,d){m.cssHooks[d]={get:function(f,g,v){if(g)return!lm.test(m.css(f,"display"))||f.getClientRects().length&&f.getBoundingClientRect().width?Cl(f,d,v):Ia(f,cm,function(){return Cl(f,d,v)})},set:function(f,g,v){var y,T=go(f),P=!et.scrollboxSize()&&"absolute"===T.position,B=(P||v)&&"border-box"===m.css(f,"boxSizing",!1,T),H=v?mo(f,d,v,B,T):0;return B&&P&&(H-=Math.ceil(f["offset"+d[0].toUpperCase()+d.slice(1)]-parseFloat(T[d])-mo(f,d,"border",!1,T)-.5)),H&&(y=uo.exec(g))&&"px"!==(y[3]||"px")&&(f.style[d]=g,g=m.css(f,d)),ar(0,g,H)}}}),m.cssHooks.marginLeft=cu(et.reliableMarginLeft,function(c,d){if(d)return(parseFloat(Ma(c,"marginLeft"))||c.getBoundingClientRect().left-Ia(c,{marginLeft:0},function(){return c.getBoundingClientRect().left}))+"px"}),m.each({margin:"",padding:"",border:"Width"},function(c,d){m.cssHooks[c+d]={expand:function(f){for(var g=0,v={},y="string"==typeof f?f.split(" "):[f];g<4;g++)v[c+gs[g]+d]=y[g]||y[g-2]||y[0];return v}},"margin"!==c&&(m.cssHooks[c+d].set=ar)}),m.fn.extend({css:function(c,d){return ps(this,function(f,g,v){var y,T,P={},M=0;if(Array.isArray(g)){for(y=go(f),T=g.length;M<T;M++)P[g[M]]=m.css(f,g[M],!1,y);return P}return void 0!==v?m.style(f,g,v):m.css(f,g)},c,d,arguments.length>1)}}),m.Tween=yt,(yt.prototype={constructor:yt,init:function(c,d,f,g,v,y){this.elem=c,this.prop=f,this.easing=v||m.easing._default,this.options=d,this.start=this.now=this.cur(),this.end=g,this.unit=y||(m.cssNumber[f]?"":"px")},cur:function(){var c=yt.propHooks[this.prop];return c&&c.get?c.get(this):yt.propHooks._default.get(this)},run:function(c){var d,f=yt.propHooks[this.prop];return this.pos=d=this.options.duration?m.easing[this.easing](c,this.options.duration*c,0,1,this.options.duration):c,this.now=(this.end-this.start)*d+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),f&&f.set?f.set(this):yt.propHooks._default.set(this),this}}).init.prototype=yt.prototype,(yt.propHooks={_default:{get:function(c){var d;return 1!==c.elem.nodeType||null!=c.elem[c.prop]&&null==c.elem.style[c.prop]?c.elem[c.prop]:(d=m.css(c.elem,c.prop,""))&&"auto"!==d?d:0},set:function(c){m.fx.step[c.prop]?m.fx.step[c.prop](c):1!==c.elem.nodeType||!m.cssHooks[c.prop]&&null==c.elem.style[bl(c.prop)]?c.elem[c.prop]=c.now:m.style(c.elem,c.prop,c.now+c.unit)}}}).scrollTop=yt.propHooks.scrollLeft={set:function(c){c.elem.nodeType&&c.elem.parentNode&&(c.elem[c.prop]=c.now)}},m.easing={linear:function(c){return c},swing:function(c){return.5-Math.cos(c*Math.PI)/2},_default:"swing"},m.fx=yt.prototype.init,m.fx.step={};var ms,qt,uu=/^(?:toggle|show|hide)$/,um=/queueHooks$/;function Ft(){qt&&(!1===Ge.hidden&&de.requestAnimationFrame?de.requestAnimationFrame(Ft):de.setTimeout(Ft,m.fx.interval),m.fx.tick())}function Ze(){return de.setTimeout(function(){ms=void 0}),ms=Date.now()}function Ra(c,d){var f,g=0,v={height:c};for(d=d?1:0;g<4;g+=2-d)v["margin"+(f=gs[g])]=v["padding"+f]=c;return d&&(v.opacity=v.width=c),v}function dm(c,d,f){for(var g,v=(Ue.tweeners[d]||[]).concat(Ue.tweeners["*"]),y=0,T=v.length;y<T;y++)if(g=v[y].call(f,d,c))return g}function Ue(c,d,f){var g,v,y=0,T=Ue.prefilters.length,P=m.Deferred().always(function(){delete M.elem}),M=function(){if(v)return!1;for(var $=ms||Ze(),Y=Math.max(0,B.startTime+B.duration-$),tt=1-(Y/B.duration||0),pt=0,ut=B.tweens.length;pt<ut;pt++)B.tweens[pt].run(tt);return P.notifyWith(c,[B,tt,Y]),tt<1&&ut?Y:(ut||P.notifyWith(c,[B,1,0]),P.resolveWith(c,[B]),!1)},B=P.promise({elem:c,props:m.extend({},d),opts:m.extend(!0,{specialEasing:{},easing:m.easing._default},f),originalProperties:d,originalOptions:f,startTime:ms||Ze(),duration:f.duration,tweens:[],createTween:function($,Y){var oe=m.Tween(c,B.opts,$,Y,B.opts.specialEasing[$]||B.opts.easing);return B.tweens.push(oe),oe},stop:function($){var Y=0,oe=$?B.tweens.length:0;if(v)return this;for(v=!0;Y<oe;Y++)B.tweens[Y].run(1);return $?(P.notifyWith(c,[B,1,0]),P.resolveWith(c,[B,$])):P.rejectWith(c,[B,$]),this}}),H=B.props;for(function Tl(c,d){var f,g,v,y,T;for(f in c)if(v=d[g=sr(f)],y=c[f],Array.isArray(y)&&(v=y[1],y=c[f]=y[0]),f!==g&&(c[g]=y,delete c[f]),(T=m.cssHooks[g])&&"expand"in T)for(f in y=T.expand(y),delete c[g],y)f in c||(c[f]=y[f],d[f]=v);else d[g]=v}(H,B.opts.specialEasing);y<T;y++)if(g=Ue.prefilters[y].call(B,c,H,B.opts))return ot(g.stop)&&(m._queueHooks(B.elem,B.opts.queue).stop=g.stop.bind(g)),g;return m.map(H,dm,B),ot(B.opts.start)&&B.opts.start.call(c,B),B.progress(B.opts.progress).done(B.opts.done,B.opts.complete).fail(B.opts.fail).always(B.opts.always),m.fx.timer(m.extend(M,{elem:c,anim:B,queue:B.opts.queue})),B}m.Animation=m.extend(Ue,{tweeners:{"*":[function(c,d){var f=this.createTween(c,d);return tm(f.elem,c,uo.exec(d),f),f}]},tweener:function(c,d){ot(c)?(d=c,c=["*"]):c=c.match(Hr);for(var f,g=0,v=c.length;g<v;g++)(Ue.tweeners[f=c[g]]=Ue.tweeners[f]||[]).unshift(d)},prefilters:[function ne(c,d,f){var g,v,y,T,P,M,B,H,$="width"in d||"height"in d,Y=this,oe={},tt=c.style,pt=c.nodeType&&iu(c),ut=Be.get(c,"fxshow");for(g in f.queue||(null==(T=m._queueHooks(c,"fx")).unqueued&&(T.unqueued=0,P=T.empty.fire,T.empty.fire=function(){T.unqueued||P()}),T.unqueued++,Y.always(function(){Y.always(function(){T.unqueued--,m.queue(c,"fx").length||T.empty.fire()})})),d)if(uu.test(v=d[g])){if(delete d[g],y=y||"toggle"===v,v===(pt?"hide":"show")){if("show"!==v||!ut||void 0===ut[g])continue;pt=!0}oe[g]=ut&&ut[g]||m.style(c,g)}if((M=!m.isEmptyObject(d))||!m.isEmptyObject(oe))for(g in $&&1===c.nodeType&&(f.overflow=[tt.overflow,tt.overflowX,tt.overflowY],null==(B=ut&&ut.display)&&(B=Be.get(c,"display")),"none"===(H=m.css(c,"display"))&&(B?H=B:(zs([c],!0),B=c.style.display||B,H=m.css(c,"display"),zs([c]))),("inline"===H||"inline-block"===H&&null!=B)&&"none"===m.css(c,"float")&&(M||(Y.done(function(){tt.display=B}),null==B&&(B="none"===(H=tt.display)?"":H)),tt.display="inline-block")),f.overflow&&(tt.overflow="hidden",Y.always(function(){tt.overflow=f.overflow[0],tt.overflowX=f.overflow[1],tt.overflowY=f.overflow[2]})),M=!1,oe)M||(ut?"hidden"in ut&&(pt=ut.hidden):ut=Be.access(c,"fxshow",{display:B}),y&&(ut.hidden=!pt),pt&&zs([c],!0),Y.done(function(){for(g in pt||zs([c]),Be.remove(c,"fxshow"),oe)m.style(c,g,oe[g])})),M=dm(pt?ut[g]:0,g,Y),g in ut||(ut[g]=M.start,pt&&(M.end=M.start,M.start=0))}],prefilter:function(c,d){d?Ue.prefilters.unshift(c):Ue.prefilters.push(c)}}),m.speed=function(c,d,f){var g=c&&"object"==typeof c?m.extend({},c):{complete:f||!f&&d||ot(c)&&c,duration:c,easing:f&&d||d&&!ot(d)&&d};return m.fx.off?g.duration=0:"number"!=typeof g.duration&&(g.duration=g.duration in m.fx.speeds?m.fx.speeds[g.duration]:m.fx.speeds._default),(null==g.queue||!0===g.queue)&&(g.queue="fx"),g.old=g.complete,g.complete=function(){ot(g.old)&&g.old.call(this),g.queue&&m.dequeue(this,g.queue)},g},m.fn.extend({fadeTo:function(c,d,f,g){return this.filter(iu).css("opacity",0).show().end().animate({opacity:d},c,f,g)},animate:function(c,d,f,g){var v=m.isEmptyObject(c),y=m.speed(d,f,g),T=function(){var P=Ue(this,m.extend({},c),y);(v||Be.get(this,"finish"))&&P.stop(!0)};return T.finish=T,v||!1===y.queue?this.each(T):this.queue(y.queue,T)},stop:function(c,d,f){var g=function(v){var y=v.stop;delete v.stop,y(f)};return"string"!=typeof c&&(f=d,d=c,c=void 0),d&&this.queue(c||"fx",[]),this.each(function(){var v=!0,y=null!=c&&c+"queueHooks",T=m.timers,P=Be.get(this);if(y)P[y]&&P[y].stop&&g(P[y]);else for(y in P)P[y]&&P[y].stop&&um.test(y)&&g(P[y]);for(y=T.length;y--;)T[y].elem===this&&(null==c||T[y].queue===c)&&(T[y].anim.stop(f),v=!1,T.splice(y,1));(v||!f)&&m.dequeue(this,c)})},finish:function(c){return!1!==c&&(c=c||"fx"),this.each(function(){var d,f=Be.get(this),g=f[c+"queue"],v=f[c+"queueHooks"],y=m.timers,T=g?g.length:0;for(f.finish=!0,m.queue(this,c,[]),v&&v.stop&&v.stop.call(this,!0),d=y.length;d--;)y[d].elem===this&&y[d].queue===c&&(y[d].anim.stop(!0),y.splice(d,1));for(d=0;d<T;d++)g[d]&&g[d].finish&&g[d].finish.call(this);delete f.finish})}}),m.each(["toggle","show","hide"],function(c,d){var f=m.fn[d];m.fn[d]=function(g,v,y){return null==g||"boolean"==typeof g?f.apply(this,arguments):this.animate(Ra(d,!0),g,v,y)}}),m.each({slideDown:Ra("show"),slideUp:Ra("hide"),slideToggle:Ra("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(c,d){m.fn[c]=function(f,g,v){return this.animate(d,f,g,v)}}),m.timers=[],m.fx.tick=function(){var c,d=0,f=m.timers;for(ms=Date.now();d<f.length;d++)!(c=f[d])()&&f[d]===c&&f.splice(d--,1);f.length||m.fx.stop(),ms=void 0},m.fx.timer=function(c){m.timers.push(c),m.fx.start()},m.fx.interval=13,m.fx.start=function(){qt||(qt=!0,Ft())},m.fx.stop=function(){qt=null},m.fx.speeds={slow:600,fast:200,_default:400},m.fn.delay=function(c,d){return c=m.fx&&m.fx.speeds[c]||c,this.queue(d=d||"fx",function(f,g){var v=de.setTimeout(f,c);g.stop=function(){de.clearTimeout(v)}})},function(){var c=Ge.createElement("input"),f=Ge.createElement("select").appendChild(Ge.createElement("option"));c.type="checkbox",et.checkOn=""!==c.value,et.optSelected=f.selected,(c=Ge.createElement("input")).value="t",c.type="radio",et.radioValue="t"===c.value}();var Vt,_o=m.expr.attrHandle;m.fn.extend({attr:function(c,d){return ps(this,m.attr,c,d,arguments.length>1)},removeAttr:function(c){return this.each(function(){m.removeAttr(this,c)})}}),m.extend({attr:function(c,d,f){var g,v,y=c.nodeType;if(3!==y&&8!==y&&2!==y)return typeof c.getAttribute>"u"?m.prop(c,d,f):((1!==y||!m.isXMLDoc(c))&&(v=m.attrHooks[d.toLowerCase()]||(m.expr.match.bool.test(d)?Vt:void 0)),void 0!==f?null===f?void m.removeAttr(c,d):v&&"set"in v&&void 0!==(g=v.set(c,f,d))?g:(c.setAttribute(d,f+""),f):v&&"get"in v&&null!==(g=v.get(c,d))?g:(g=m.find.attr(c,d))??void 0)},attrHooks:{type:{set:function(c,d){if(!et.radioValue&&"radio"===d&&tn(c,"input")){var f=c.value;return c.setAttribute("type",d),f&&(c.value=f),d}}}},removeAttr:function(c,d){var f,g=0,v=d&&d.match(Hr);if(v&&1===c.nodeType)for(;f=v[g++];)c.removeAttribute(f)}}),Vt={set:function(c,d,f){return!1===d?m.removeAttr(c,f):c.setAttribute(f,f),f}},m.each(m.expr.match.bool.source.match(/\w+/g),function(c,d){var f=_o[d]||m.find.attr;_o[d]=function(g,v,y){var T,P,M=v.toLowerCase();return y||(P=_o[M],_o[M]=T,T=null!=f(g,v,y)?M:null,_o[M]=P),T}});var AC=/^(?:input|select|textarea|button)$/i,hm=/^(?:a|area)$/i;function xr(c){return(c.match(Hr)||[]).join(" ")}function Gn(c){return c.getAttribute&&c.getAttribute("class")||""}function mh(c){return Array.isArray(c)?c:"string"==typeof c&&c.match(Hr)||[]}m.fn.extend({prop:function(c,d){return ps(this,m.prop,c,d,arguments.length>1)},removeProp:function(c){return this.each(function(){delete this[m.propFix[c]||c]})}}),m.extend({prop:function(c,d,f){var g,v,y=c.nodeType;if(3!==y&&8!==y&&2!==y)return(1!==y||!m.isXMLDoc(c))&&(v=m.propHooks[d=m.propFix[d]||d]),void 0!==f?v&&"set"in v&&void 0!==(g=v.set(c,f,d))?g:c[d]=f:v&&"get"in v&&null!==(g=v.get(c,d))?g:c[d]},propHooks:{tabIndex:{get:function(c){var d=m.find.attr(c,"tabindex");return d?parseInt(d,10):AC.test(c.nodeName)||hm.test(c.nodeName)&&c.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),et.optSelected||(m.propHooks.selected={get:function(c){return null},set:function(c){}}),m.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){m.propFix[this.toLowerCase()]=this}),m.fn.extend({addClass:function(c){var d,f,g,v,y,T;return ot(c)?this.each(function(P){m(this).addClass(c.call(this,P,Gn(this)))}):(d=mh(c)).length?this.each(function(){if(g=Gn(this),f=1===this.nodeType&&" "+xr(g)+" "){for(y=0;y<d.length;y++)f.indexOf(" "+(v=d[y])+" ")<0&&(f+=v+" ");T=xr(f),g!==T&&this.setAttribute("class",T)}}):this},removeClass:function(c){var d,f,g,v,y,T;return ot(c)?this.each(function(P){m(this).removeClass(c.call(this,P,Gn(this)))}):arguments.length?(d=mh(c)).length?this.each(function(){if(g=Gn(this),f=1===this.nodeType&&" "+xr(g)+" "){for(y=0;y<d.length;y++)for(v=d[y];f.indexOf(" "+v+" ")>-1;)f=f.replace(" "+v+" "," ");T=xr(f),g!==T&&this.setAttribute("class",T)}}):this:this.attr("class","")},toggleClass:function(c,d){var f,g,v,y,T=typeof c,P="string"===T||Array.isArray(c);return ot(c)?this.each(function(M){m(this).toggleClass(c.call(this,M,Gn(this),d),d)}):"boolean"==typeof d&&P?d?this.addClass(c):this.removeClass(c):(f=mh(c),this.each(function(){if(P)for(y=m(this),v=0;v<f.length;v++)y.hasClass(g=f[v])?y.removeClass(g):y.addClass(g);else(void 0===c||"boolean"===T)&&((g=Gn(this))&&Be.set(this,"__className__",g),this.setAttribute&&this.setAttribute("class",g||!1===c?"":Be.get(this,"__className__")||""))}))},hasClass:function(c){var d,f,g=0;for(d=" "+c+" ";f=this[g++];)if(1===f.nodeType&&(" "+xr(Gn(f))+" ").indexOf(d)>-1)return!0;return!1}});var fm=/\r/g;m.fn.extend({val:function(c){var d,f,g,v=this[0];return arguments.length?(g=ot(c),this.each(function(y){var T;1===this.nodeType&&(null==(T=g?c.call(this,y,m(this).val()):c)?T="":"number"==typeof T?T+="":Array.isArray(T)&&(T=m.map(T,function(P){return null==P?"":P+""})),(!(d=m.valHooks[this.type]||m.valHooks[this.nodeName.toLowerCase()])||!("set"in d)||void 0===d.set(this,T,"value"))&&(this.value=T))})):v?(d=m.valHooks[v.type]||m.valHooks[v.nodeName.toLowerCase()])&&"get"in d&&void 0!==(f=d.get(v,"value"))?f:"string"==typeof(f=v.value)?f.replace(fm,""):f??"":void 0}}),m.extend({valHooks:{option:{get:function(c){return m.find.attr(c,"value")??xr(m.text(c))}},select:{get:function(c){var d,f,g,v=c.options,y=c.selectedIndex,T="select-one"===c.type,P=T?null:[],M=T?y+1:v.length;for(g=y<0?M:T?y:0;g<M;g++)if(((f=v[g]).selected||g===y)&&!f.disabled&&(!f.parentNode.disabled||!tn(f.parentNode,"optgroup"))){if(d=m(f).val(),T)return d;P.push(d)}return P},set:function(c,d){for(var f,g,v=c.options,y=m.makeArray(d),T=v.length;T--;)((g=v[T]).selected=m.inArray(m.valHooks.option.get(g),y)>-1)&&(f=!0);return f||(c.selectedIndex=-1),y}}}}),m.each(["radio","checkbox"],function(){m.valHooks[this]={set:function(c,d){if(Array.isArray(d))return c.checked=m.inArray(m(c).val(),d)>-1}},et.checkOn||(m.valHooks[this].get=function(c){return null===c.getAttribute("value")?"on":c.value})});var El=de.location,kr={guid:Date.now()},_h=/\?/;m.parseXML=function(c){var d,f;if(!c||"string"!=typeof c)return null;try{d=(new de.DOMParser).parseFromString(c,"text/xml")}catch{}return f=d&&d.getElementsByTagName("parsererror")[0],(!d||f)&&m.error("Invalid XML: "+(f?m.map(f.childNodes,function(g){return g.textContent}).join("\n"):c)),d};var pm=/^(?:focusinfocus|focusoutblur)$/,gm=function(c){c.stopPropagation()};m.extend(m.event,{trigger:function(c,d,f,g){var v,y,T,P,M,B,H,$,Y=[f||Ge],oe=ve.call(c,"type")?c.type:c,tt=ve.call(c,"namespace")?c.namespace.split("."):[];if(y=$=T=f=f||Ge,3!==f.nodeType&&8!==f.nodeType&&!pm.test(oe+m.event.triggered)&&(oe.indexOf(".")>-1&&(tt=oe.split("."),oe=tt.shift(),tt.sort()),M=oe.indexOf(":")<0&&"on"+oe,(c=c[m.expando]?c:new m.Event(oe,"object"==typeof c&&c)).isTrigger=g?2:3,c.namespace=tt.join("."),c.rnamespace=c.namespace?new RegExp("(^|\\.)"+tt.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,c.result=void 0,c.target||(c.target=f),d=null==d?[c]:m.makeArray(d,[c]),H=m.event.special[oe]||{},g||!H.trigger||!1!==H.trigger.apply(f,d))){if(!g&&!H.noBubble&&!Zi(f)){for(pm.test((P=H.delegateType||oe)+oe)||(y=y.parentNode);y;y=y.parentNode)Y.push(y),T=y;T===(f.ownerDocument||Ge)&&Y.push(T.defaultView||T.parentWindow||de)}for(v=0;(y=Y[v++])&&!c.isPropagationStopped();)$=y,c.type=v>1?P:H.bindType||oe,(B=(Be.get(y,"events")||Object.create(null))[c.type]&&Be.get(y,"handle"))&&B.apply(y,d),(B=M&&y[M])&&B.apply&&_l(y)&&(c.result=B.apply(y,d),!1===c.result&&c.preventDefault());return c.type=oe,!g&&!c.isDefaultPrevented()&&(!H._default||!1===H._default.apply(Y.pop(),d))&&_l(f)&&M&&ot(f[oe])&&!Zi(f)&&((T=f[M])&&(f[M]=null),m.event.triggered=oe,c.isPropagationStopped()&&$.addEventListener(oe,gm),f[oe](),c.isPropagationStopped()&&$.removeEventListener(oe,gm),m.event.triggered=void 0,T&&(f[M]=T)),c.result}},simulate:function(c,d,f){var g=m.extend(new m.Event,f,{type:c,isSimulated:!0});m.event.trigger(g,null,d)}}),m.fn.extend({trigger:function(c,d){return this.each(function(){m.event.trigger(c,d,this)})},triggerHandler:function(c,d){var f=this[0];if(f)return m.event.trigger(c,d,f,!0)}});var vC=/\[\]$/,yh=/\r?\n/g,bC=/^(?:submit|button|image|reset|file)$/i,mm=/^(?:input|select|textarea|keygen)/i;function Ah(c,d,f,g){var v;if(Array.isArray(d))m.each(d,function(y,T){f||vC.test(c)?g(c,T):Ah(c+"["+("object"==typeof T&&null!=T?y:"")+"]",T,f,g)});else if(f||"object"!==fs(d))g(c,d);else for(v in d)Ah(c+"["+v+"]",d[v],f,g)}m.param=function(c,d){var f,g=[],v=function(y,T){var P=ot(T)?T():T;g[g.length]=encodeURIComponent(y)+"="+encodeURIComponent(P??"")};if(null==c)return"";if(Array.isArray(c)||c.jquery&&!m.isPlainObject(c))m.each(c,function(){v(this.name,this.value)});else for(f in c)Ah(f,c[f],d,v);return g.join("&")},m.fn.extend({serialize:function(){return m.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var c=m.prop(this,"elements");return c?m.makeArray(c):this}).filter(function(){var c=this.type;return this.name&&!m(this).is(":disabled")&&mm.test(this.nodeName)&&!bC.test(c)&&(this.checked||!wa.test(c))}).map(function(c,d){var f=m(this).val();return null==f?null:Array.isArray(f)?m.map(f,function(g){return{name:d.name,value:g.replace(yh,"\r\n")}}):{name:d.name,value:f.replace(yh,"\r\n")}}).get()}});var Pi=/%20/g,Xt=/#.*$/,CC=/([?&])_=[^&]*/,TC=/^(.*?):[ \t]*([^\r\n]*)$/gm,q=/^(?:GET|HEAD)$/,SC=/^\/\//,Te={},Oa={},vh="*/".concat("*"),Sl=Ge.createElement("a");function bh(c){return function(d,f){"string"!=typeof d&&(f=d,d="*");var g,v=0,y=d.toLowerCase().match(Hr)||[];if(ot(f))for(;g=y[v++];)"+"===g[0]?(g=g.slice(1)||"*",(c[g]=c[g]||[]).unshift(f)):(c[g]=c[g]||[]).push(f)}}function Ch(c,d,f,g){var v={},y=c===Oa;function T(P){var M;return v[P]=!0,m.each(c[P]||[],function(B,H){var $=H(d,f,g);return"string"!=typeof $||y||v[$]?y?!(M=$):void 0:(d.dataTypes.unshift($),T($),!1)}),M}return T(d.dataTypes[0])||!v["*"]&&T("*")}function Dl(c,d){var f,g,v=m.ajaxSettings.flatOptions||{};for(f in d)void 0!==d[f]&&((v[f]?c:g||(g={}))[f]=d[f]);return g&&m.extend(!0,c,g),c}Sl.href=El.href,m.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:El.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(El.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":vh,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":m.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(c,d){return d?Dl(Dl(c,m.ajaxSettings),d):Dl(m.ajaxSettings,c)},ajaxPrefilter:bh(Te),ajaxTransport:bh(Oa),ajax:function(c,d){"object"==typeof c&&(d=c,c=void 0);var f,g,v,y,T,P,M,B,H,$,Y=m.ajaxSetup({},d=d||{}),oe=Y.context||Y,tt=Y.context&&(oe.nodeType||oe.jquery)?m(oe):m.event,pt=m.Deferred(),ut=m.Callbacks("once memory"),ri=Y.statusCode||{},ce={},Ir={},or="canceled",Et={readyState:0,getResponseHeader:function(Bt){var mn;if(M){if(!y)for(y={};mn=TC.exec(v);)y[mn[1].toLowerCase()+" "]=(y[mn[1].toLowerCase()+" "]||[]).concat(mn[2]);mn=y[Bt.toLowerCase()+" "]}return null==mn?null:mn.join(", ")},getAllResponseHeaders:function(){return M?v:null},setRequestHeader:function(Bt,mn){return null==M&&(Bt=Ir[Bt.toLowerCase()]=Ir[Bt.toLowerCase()]||Bt,ce[Bt]=mn),this},overrideMimeType:function(Bt){return null==M&&(Y.mimeType=Bt),this},statusCode:function(Bt){var mn;if(Bt)if(M)Et.always(Bt[Et.status]);else for(mn in Bt)ri[mn]=[ri[mn],Bt[mn]];return this},abort:function(Bt){var mn=Bt||or;return f&&f.abort(mn),ge(0,mn),this}};if(pt.promise(Et),Y.url=((c||Y.url||El.href)+"").replace(SC,El.protocol+"//"),Y.type=d.method||d.type||Y.method||Y.type,Y.dataTypes=(Y.dataType||"*").toLowerCase().match(Hr)||[""],null==Y.crossDomain){P=Ge.createElement("a");try{P.href=Y.url,P.href=P.href,Y.crossDomain=Sl.protocol+"//"+Sl.host!=P.protocol+"//"+P.host}catch{Y.crossDomain=!0}}if(Y.data&&Y.processData&&"string"!=typeof Y.data&&(Y.data=m.param(Y.data,Y.traditional)),Ch(Te,Y,d,Et),M)return Et;for(H in(B=m.event&&Y.global)&&0==m.active++&&m.event.trigger("ajaxStart"),Y.type=Y.type.toUpperCase(),Y.hasContent=!q.test(Y.type),g=Y.url.replace(Xt,""),Y.hasContent?Y.data&&Y.processData&&0===(Y.contentType||"").indexOf("application/x-www-form-urlencoded")&&(Y.data=Y.data.replace(Pi,"+")):($=Y.url.slice(g.length),Y.data&&(Y.processData||"string"==typeof Y.data)&&(g+=(_h.test(g)?"&":"?")+Y.data,delete Y.data),!1===Y.cache&&(g=g.replace(CC,"$1"),$=(_h.test(g)?"&":"?")+"_="+kr.guid+++$),Y.url=g+$),Y.ifModified&&(m.lastModified[g]&&Et.setRequestHeader("If-Modified-Since",m.lastModified[g]),m.etag[g]&&Et.setRequestHeader("If-None-Match",m.etag[g])),(Y.data&&Y.hasContent&&!1!==Y.contentType||d.contentType)&&Et.setRequestHeader("Content-Type",Y.contentType),Et.setRequestHeader("Accept",Y.dataTypes[0]&&Y.accepts[Y.dataTypes[0]]?Y.accepts[Y.dataTypes[0]]+("*"!==Y.dataTypes[0]?", "+vh+"; q=0.01":""):Y.accepts["*"]),Y.headers)Et.setRequestHeader(H,Y.headers[H]);if(Y.beforeSend&&(!1===Y.beforeSend.call(oe,Et,Y)||M))return Et.abort();if(or="abort",ut.add(Y.complete),Et.done(Y.success),Et.fail(Y.error),f=Ch(Oa,Y,d,Et)){if(Et.readyState=1,B&&tt.trigger("ajaxSend",[Et,Y]),M)return Et;Y.async&&Y.timeout>0&&(T=de.setTimeout(function(){Et.abort("timeout")},Y.timeout));try{M=!1,f.send(ce,ge)}catch(Bt){if(M)throw Bt;ge(-1,Bt)}}else ge(-1,"No Transport");function ge(Bt,mn,G,Pn){var Tt,Wn,hn,Ni,Nn,_n=mn;M||(M=!0,T&&de.clearTimeout(T),f=void 0,v=Pn||"",Et.readyState=Bt>0?4:0,Tt=Bt>=200&&Bt<300||304===Bt,G&&(Ni=function wl(c,d,f){for(var g,v,y,T,P=c.contents,M=c.dataTypes;"*"===M[0];)M.shift(),void 0===g&&(g=c.mimeType||d.getResponseHeader("Content-Type"));if(g)for(v in P)if(P[v]&&P[v].test(g)){M.unshift(v);break}if(M[0]in f)y=M[0];else{for(v in f){if(!M[0]||c.converters[v+" "+M[0]]){y=v;break}T||(T=v)}y=y||T}if(y)return y!==M[0]&&M.unshift(y),f[y]}(Y,Et,G)),!Tt&&m.inArray("script",Y.dataTypes)>-1&&m.inArray("json",Y.dataTypes)<0&&(Y.converters["text script"]=function(){}),Ni=function du(c,d,f,g){var v,y,T,P,M,B={},H=c.dataTypes.slice();if(H[1])for(T in c.converters)B[T.toLowerCase()]=c.converters[T];for(y=H.shift();y;)if(c.responseFields[y]&&(f[c.responseFields[y]]=d),!M&&g&&c.dataFilter&&(d=c.dataFilter(d,c.dataType)),M=y,y=H.shift())if("*"===y)y=M;else if("*"!==M&&M!==y){if(!(T=B[M+" "+y]||B["* "+y]))for(v in B)if((P=v.split(" "))[1]===y&&(T=B[M+" "+P[0]]||B["* "+P[0]])){!0===T?T=B[v]:!0!==B[v]&&(y=P[0],H.unshift(P[1]));break}if(!0!==T)if(T&&c.throws)d=T(d);else try{d=T(d)}catch($){return{state:"parsererror",error:T?$:"No conversion from "+M+" to "+y}}}return{state:"success",data:d}}(Y,Ni,Et,Tt),Tt?(Y.ifModified&&((Nn=Et.getResponseHeader("Last-Modified"))&&(m.lastModified[g]=Nn),(Nn=Et.getResponseHeader("etag"))&&(m.etag[g]=Nn)),204===Bt||"HEAD"===Y.type?_n="nocontent":304===Bt?_n="notmodified":(_n=Ni.state,Wn=Ni.data,Tt=!(hn=Ni.error))):(hn=_n,(Bt||!_n)&&(_n="error",Bt<0&&(Bt=0))),Et.status=Bt,Et.statusText=(mn||_n)+"",Tt?pt.resolveWith(oe,[Wn,_n,Et]):pt.rejectWith(oe,[Et,_n,hn]),Et.statusCode(ri),ri=void 0,B&&tt.trigger(Tt?"ajaxSuccess":"ajaxError",[Et,Y,Tt?Wn:hn]),ut.fireWith(oe,[Et,_n]),B&&(tt.trigger("ajaxComplete",[Et,Y]),--m.active||m.event.trigger("ajaxStop")))}return Et},getJSON:function(c,d,f){return m.get(c,d,f,"json")},getScript:function(c,d){return m.get(c,void 0,d,"script")}}),m.each(["get","post"],function(c,d){m[d]=function(f,g,v,y){return ot(g)&&(y=y||v,v=g,g=void 0),m.ajax(m.extend({url:f,type:d,dataType:y,data:g,success:v},m.isPlainObject(f)&&f))}}),m.ajaxPrefilter(function(c){var d;for(d in c.headers)"content-type"===d.toLowerCase()&&(c.contentType=c.headers[d]||"")}),m._evalUrl=function(c,d,f){return m.ajax({url:c,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(g){m.globalEval(g,d,f)}})},m.fn.extend({wrapAll:function(c){var d;return this[0]&&(ot(c)&&(c=c.call(this[0])),d=m(c,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&d.insertBefore(this[0]),d.map(function(){for(var f=this;f.firstElementChild;)f=f.firstElementChild;return f}).append(this)),this},wrapInner:function(c){return ot(c)?this.each(function(d){m(this).wrapInner(c.call(this,d))}):this.each(function(){var d=m(this),f=d.contents();f.length?f.wrapAll(c):d.append(c)})},wrap:function(c){var d=ot(c);return this.each(function(f){m(this).wrapAll(d?c.call(this,f):c)})},unwrap:function(c){return this.parent(c).not("body").each(function(){m(this).replaceWith(this.childNodes)}),this}}),m.expr.pseudos.hidden=function(c){return!m.expr.pseudos.visible(c)},m.expr.pseudos.visible=function(c){return!!(c.offsetWidth||c.offsetHeight||c.getClientRects().length)},m.ajaxSettings.xhr=function(){try{return new de.XMLHttpRequest}catch{}};var Th={0:200,1223:204},yo=m.ajaxSettings.xhr();et.cors=!!yo&&"withCredentials"in yo,et.ajax=yo=!!yo,m.ajaxTransport(function(c){var d,f;if(et.cors||yo&&!c.crossDomain)return{send:function(g,v){var y,T=c.xhr();if(T.open(c.type,c.url,c.async,c.username,c.password),c.xhrFields)for(y in c.xhrFields)T[y]=c.xhrFields[y];for(y in c.mimeType&&T.overrideMimeType&&T.overrideMimeType(c.mimeType),!c.crossDomain&&!g["X-Requested-With"]&&(g["X-Requested-With"]="XMLHttpRequest"),g)T.setRequestHeader(y,g[y]);d=function(P){return function(){d&&(d=f=T.onload=T.onerror=T.onabort=T.ontimeout=T.onreadystatechange=null,"abort"===P?T.abort():"error"===P?"number"!=typeof T.status?v(0,"error"):v(T.status,T.statusText):v(Th[T.status]||T.status,T.statusText,"text"!==(T.responseType||"text")||"string"!=typeof T.responseText?{binary:T.response}:{text:T.responseText},T.getAllResponseHeaders()))}},T.onload=d(),f=T.onerror=T.ontimeout=d("error"),void 0!==T.onabort?T.onabort=f:T.onreadystatechange=function(){4===T.readyState&&de.setTimeout(function(){d&&f()})},d=d("abort");try{T.send(c.hasContent&&c.data||null)}catch(P){if(d)throw P}},abort:function(){d&&d()}}}),m.ajaxPrefilter(function(c){c.crossDomain&&(c.contents.script=!1)}),m.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(c){return m.globalEval(c),c}}}),m.ajaxPrefilter("script",function(c){void 0===c.cache&&(c.cache=!1),c.crossDomain&&(c.type="GET")}),m.ajaxTransport("script",function(c){var d,f;if(c.crossDomain||c.scriptAttrs)return{send:function(g,v){d=m("<script>").attr(c.scriptAttrs||{}).prop({charset:c.scriptCharset,src:c.url}).on("load error",f=function(y){d.remove(),f=null,y&&v("error"===y.type?404:200,y.type)}),Ge.head.appendChild(d[0])},abort:function(){f&&f()}}});var c,We=[],Ao=/(=)\?(?=&|$)|\?\?/;m.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var c=We.pop()||m.expando+"_"+kr.guid++;return this[c]=!0,c}}),m.ajaxPrefilter("json jsonp",function(c,d,f){var g,v,y,T=!1!==c.jsonp&&(Ao.test(c.url)?"url":"string"==typeof c.data&&0===(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ao.test(c.data)&&"data");if(T||"jsonp"===c.dataTypes[0])return g=c.jsonpCallback=ot(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,T?c[T]=c[T].replace(Ao,"$1"+g):!1!==c.jsonp&&(c.url+=(_h.test(c.url)?"&":"?")+c.jsonp+"="+g),c.converters["script json"]=function(){return y||m.error(g+" was not called"),y[0]},c.dataTypes[0]="json",v=de[g],de[g]=function(){y=arguments},f.always(function(){void 0===v?m(de).removeProp(g):de[g]=v,c[g]&&(c.jsonpCallback=d.jsonpCallback,We.push(g)),y&&ot(v)&&v(y[0]),y=v=void 0}),"script"}),et.createHTMLDocument=((c=Ge.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===c.childNodes.length),m.parseHTML=function(c,d,f){return"string"!=typeof c?[]:("boolean"==typeof d&&(f=d,d=!1),d||(et.createHTMLDocument?((g=(d=Ge.implementation.createHTMLDocument("")).createElement("base")).href=Ge.location.href,d.head.appendChild(g)):d=Ge),y=!f&&[],(v=pe.exec(c))?[d.createElement(v[1])]:(v=ou([c],d,y),y&&y.length&&m(y).remove(),m.merge([],v.childNodes)));var g,v,y},m.fn.load=function(c,d,f){var g,v,y,T=this,P=c.indexOf(" ");return P>-1&&(g=xr(c.slice(P)),c=c.slice(0,P)),ot(d)?(f=d,d=void 0):d&&"object"==typeof d&&(v="POST"),T.length>0&&m.ajax({url:c,type:v||"GET",dataType:"html",data:d}).done(function(M){y=arguments,T.html(g?m("<div>").append(m.parseHTML(M)).find(g):M)}).always(f&&function(M,B){T.each(function(){f.apply(this,y||[M.responseText,B,M])})}),this},m.expr.pseudos.animated=function(c){return m.grep(m.timers,function(d){return c===d.elem}).length},m.offset={setOffset:function(c,d,f){var g,v,y,T,P,M,H=m.css(c,"position"),$=m(c),Y={};"static"===H&&(c.style.position="relative"),P=$.offset(),y=m.css(c,"top"),M=m.css(c,"left"),("absolute"===H||"fixed"===H)&&(y+M).indexOf("auto")>-1?(T=(g=$.position()).top,v=g.left):(T=parseFloat(y)||0,v=parseFloat(M)||0),ot(d)&&(d=d.call(c,f,m.extend({},P))),null!=d.top&&(Y.top=d.top-P.top+T),null!=d.left&&(Y.left=d.left-P.left+v),"using"in d?d.using.call(c,Y):$.css(Y)}},m.fn.extend({offset:function(c){if(arguments.length)return void 0===c?this:this.each(function(v){m.offset.setOffset(this,c,v)});var d,f,g=this[0];return g?g.getClientRects().length?{top:(d=g.getBoundingClientRect()).top+(f=g.ownerDocument.defaultView).pageYOffset,left:d.left+f.pageXOffset}:{top:0,left:0}:void 0},position:function(){if(this[0]){var c,d,f,g=this[0],v={top:0,left:0};if("fixed"===m.css(g,"position"))d=g.getBoundingClientRect();else{for(d=this.offset(),f=g.ownerDocument,c=g.offsetParent||f.documentElement;c&&(c===f.body||c===f.documentElement)&&"static"===m.css(c,"position");)c=c.parentNode;c&&c!==g&&1===c.nodeType&&((v=m(c).offset()).top+=m.css(c,"borderTopWidth",!0),v.left+=m.css(c,"borderLeftWidth",!0))}return{top:d.top-v.top-m.css(g,"marginTop",!0),left:d.left-v.left-m.css(g,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var c=this.offsetParent;c&&"static"===m.css(c,"position");)c=c.offsetParent;return c||js})}}),m.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(c,d){var f="pageYOffset"===d;m.fn[c]=function(g){return ps(this,function(v,y,T){var P;if(Zi(v)?P=v:9===v.nodeType&&(P=v.defaultView),void 0===T)return P?P[d]:v[y];P?P.scrollTo(f?P.pageXOffset:T,f?T:P.pageYOffset):v[y]=T},c,g,arguments.length)}}),m.each(["top","left"],function(c,d){m.cssHooks[d]=cu(et.pixelPosition,function(f,g){if(g)return g=Ma(f,d),vl.test(g)?m(f).position()[d]+"px":g})}),m.each({Height:"height",Width:"width"},function(c,d){m.each({padding:"inner"+c,content:d,"":"outer"+c},function(f,g){m.fn[g]=function(v,y){var T=arguments.length&&(f||"boolean"!=typeof v),P=f||(!0===v||!0===y?"margin":"border");return ps(this,function(M,B,H){var $;return Zi(M)?0===g.indexOf("outer")?M["inner"+c]:M.document.documentElement["client"+c]:9===M.nodeType?($=M.documentElement,Math.max(M.body["scroll"+c],$["scroll"+c],M.body["offset"+c],$["offset"+c],$["client"+c])):void 0===H?m.css(M,B,P):m.style(M,B,H,P)},d,T?v:void 0,T)}})}),m.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(c,d){m.fn[d]=function(f){return this.on(d,f)}}),m.fn.extend({bind:function(c,d,f){return this.on(c,null,d,f)},unbind:function(c,d){return this.off(c,null,d)},delegate:function(c,d,f,g){return this.on(d,c,f,g)},undelegate:function(c,d,f){return 1===arguments.length?this.off(c,"**"):this.off(d,c||"**",f)},hover:function(c,d){return this.mouseenter(c).mouseleave(d||c)}}),m.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(c,d){m.fn[d]=function(f,g){return arguments.length>0?this.on(d,null,f,g):this.trigger(d)}});var _m=/^[\s\uFEFF\xA0]+|([^\s\uFEFF\xA0])[\s\uFEFF\xA0]+$/g;m.proxy=function(c,d){var f,g,v;if("string"==typeof d&&(f=c[d],d=c,c=f),ot(c))return g=ae.call(arguments,2),v=function(){return c.apply(d||this,g.concat(ae.call(arguments)))},v.guid=c.guid=c.guid||m.guid++,v},m.holdReady=function(c){c?m.readyWait++:m.ready(!0)},m.isArray=Array.isArray,m.parseJSON=JSON.parse,m.nodeName=tn,m.isFunction=ot,m.isWindow=Zi,m.camelCase=sr,m.type=fs,m.now=Date.now,m.isNumeric=function(c){var d=m.type(c);return("number"===d||"string"===d)&&!isNaN(c-parseFloat(c))},m.trim=function(c){return null==c?"":(c+"").replace(_m,"$1")},void 0!==(Qn=function(){return m}.apply(us,[]))&&(yi.exports=Qn);var er=de.jQuery,Eh=de.$;return m.noConflict=function(c){return de.$===m&&(de.$=Eh),c&&de.jQuery===m&&(de.jQuery=er),m},typeof zn>"u"&&(de.jQuery=de.$=m),m})},156:yi=>{function us(Qn,de,zn,lt,Oe,ae,at){try{var ft=Qn[ae](at),Ie=ft.value}catch(te){return void zn(te)}ft.done?de(Ie):Promise.resolve(Ie).then(lt,Oe)}yi.exports=function fi(Qn){return function(){var de=this,zn=arguments;return new Promise(function(lt,Oe){var ae=Qn.apply(de,zn);function at(Ie){us(ae,lt,Oe,at,ft,"next",Ie)}function ft(Ie){us(ae,lt,Oe,at,ft,"throw",Ie)}at(void 0)})}},yi.exports.__esModule=!0,yi.exports.default=yi.exports}},yi=>{yi(yi.s=272)}]);
|