@concord-consortium/cloud-file-manager 2.0.0-pre.1
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/dist/autolaunch/autolaunch.css +220 -0
- package/dist/autolaunch/autolaunch.html +133 -0
- package/dist/autolaunch/autolaunch.js +3 -0
- package/dist/autolaunch/autolaunch.js.LICENSE.txt +16 -0
- package/dist/autolaunch/autolaunch.js.map +1 -0
- package/dist/cjs/app-options.d.ts +118 -0
- package/dist/cjs/app-options.js +6 -0
- package/dist/cjs/app-options.js.map +1 -0
- package/dist/cjs/client.d.ts +165 -0
- package/dist/cjs/client.js +1391 -0
- package/dist/cjs/client.js.map +1 -0
- package/dist/cjs/cloud-file-manager.d.ts +16 -0
- package/dist/cjs/cloud-file-manager.js +79 -0
- package/dist/cjs/cloud-file-manager.js.map +1 -0
- package/dist/cjs/create-react-factory.d.ts +3 -0
- package/dist/cjs/create-react-factory.js +14 -0
- package/dist/cjs/create-react-factory.js.map +1 -0
- package/dist/cjs/index.d.ts +4 -0
- package/dist/cjs/index.js +21 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/lib/file-saver.d.ts +2 -0
- package/dist/cjs/lib/file-saver.js +164 -0
- package/dist/cjs/lib/file-saver.js.map +1 -0
- package/dist/cjs/providers/document-store-provider.d.ts +48 -0
- package/dist/cjs/providers/document-store-provider.js +541 -0
- package/dist/cjs/providers/document-store-provider.js.map +1 -0
- package/dist/cjs/providers/document-store-share-provider.d.ts +17 -0
- package/dist/cjs/providers/document-store-share-provider.js +126 -0
- package/dist/cjs/providers/document-store-share-provider.js.map +1 -0
- package/dist/cjs/providers/document-store-url.d.ts +32 -0
- package/dist/cjs/providers/document-store-url.js +75 -0
- package/dist/cjs/providers/document-store-url.js.map +1 -0
- package/dist/cjs/providers/google-drive-provider.d.ts +75 -0
- package/dist/cjs/providers/google-drive-provider.js +684 -0
- package/dist/cjs/providers/google-drive-provider.js.map +1 -0
- package/dist/cjs/providers/interactive-api-provider.d.ts +55 -0
- package/dist/cjs/providers/interactive-api-provider.js +382 -0
- package/dist/cjs/providers/interactive-api-provider.js.map +1 -0
- package/dist/cjs/providers/lara-provider.d.ts +47 -0
- package/dist/cjs/providers/lara-provider.js +547 -0
- package/dist/cjs/providers/lara-provider.js.map +1 -0
- package/dist/cjs/providers/legacy-google-drive-provider.d.ts +74 -0
- package/dist/cjs/providers/legacy-google-drive-provider.js +600 -0
- package/dist/cjs/providers/legacy-google-drive-provider.js.map +1 -0
- package/dist/cjs/providers/local-file-provider.d.ts +16 -0
- package/dist/cjs/providers/local-file-provider.js +65 -0
- package/dist/cjs/providers/local-file-provider.js.map +1 -0
- package/dist/cjs/providers/localstorage-provider.d.ts +20 -0
- package/dist/cjs/providers/localstorage-provider.js +122 -0
- package/dist/cjs/providers/localstorage-provider.js.map +1 -0
- package/dist/cjs/providers/patchable-content.d.ts +16 -0
- package/dist/cjs/providers/patchable-content.js +65 -0
- package/dist/cjs/providers/patchable-content.js.map +1 -0
- package/dist/cjs/providers/post-message-provider.d.ts +12 -0
- package/dist/cjs/providers/post-message-provider.js +39 -0
- package/dist/cjs/providers/post-message-provider.js.map +1 -0
- package/dist/cjs/providers/provider-interface.d.ts +168 -0
- package/dist/cjs/providers/provider-interface.js +399 -0
- package/dist/cjs/providers/provider-interface.js.map +1 -0
- package/dist/cjs/providers/readonly-provider.d.ts +22 -0
- package/dist/cjs/providers/readonly-provider.js +303 -0
- package/dist/cjs/providers/readonly-provider.js.map +1 -0
- package/dist/cjs/providers/s3-provider.d.ts +14 -0
- package/dist/cjs/providers/s3-provider.js +109 -0
- package/dist/cjs/providers/s3-provider.js.map +1 -0
- package/dist/cjs/providers/s3-share-provider.d.ts +18 -0
- package/dist/cjs/providers/s3-share-provider.js +124 -0
- package/dist/cjs/providers/s3-share-provider.js.map +1 -0
- package/dist/cjs/providers/share-provider-interface.d.ts +15 -0
- package/dist/cjs/providers/share-provider-interface.js +3 -0
- package/dist/cjs/providers/share-provider-interface.js.map +1 -0
- package/dist/cjs/providers/test-provider.d.ts +26 -0
- package/dist/cjs/providers/test-provider.js +73 -0
- package/dist/cjs/providers/test-provider.js.map +1 -0
- package/dist/cjs/providers/url-provider.d.ts +13 -0
- package/dist/cjs/providers/url-provider.js +58 -0
- package/dist/cjs/providers/url-provider.js.map +1 -0
- package/dist/cjs/ui.d.ts +51 -0
- package/dist/cjs/ui.js +216 -0
- package/dist/cjs/ui.js.map +1 -0
- package/dist/cjs/utils/config.d.ts +6 -0
- package/dist/cjs/utils/config.js +10 -0
- package/dist/cjs/utils/config.js.map +1 -0
- package/dist/cjs/utils/get-hash-param.d.ts +1 -0
- package/dist/cjs/utils/get-hash-param.js +24 -0
- package/dist/cjs/utils/get-hash-param.js.map +1 -0
- package/dist/cjs/utils/get-query-param.d.ts +1 -0
- package/dist/cjs/utils/get-query-param.js +23 -0
- package/dist/cjs/utils/get-query-param.js.map +1 -0
- package/dist/cjs/utils/is-array.d.ts +2 -0
- package/dist/cjs/utils/is-array.js +4 -0
- package/dist/cjs/utils/is-array.js.map +1 -0
- package/dist/cjs/utils/is-empty-object.d.ts +1 -0
- package/dist/cjs/utils/is-empty-object.js +7 -0
- package/dist/cjs/utils/is-empty-object.js.map +1 -0
- package/dist/cjs/utils/is-string.d.ts +2 -0
- package/dist/cjs/utils/is-string.js +4 -0
- package/dist/cjs/utils/is-string.js.map +1 -0
- package/dist/cjs/utils/lang/de.json +156 -0
- package/dist/cjs/utils/lang/el.json +156 -0
- package/dist/cjs/utils/lang/en-US.json +156 -0
- package/dist/cjs/utils/lang/es.json +156 -0
- package/dist/cjs/utils/lang/fa.json +156 -0
- package/dist/cjs/utils/lang/he.json +156 -0
- package/dist/cjs/utils/lang/ja.json +156 -0
- package/dist/cjs/utils/lang/ko.json +156 -0
- package/dist/cjs/utils/lang/nb.json +156 -0
- package/dist/cjs/utils/lang/nn.json +156 -0
- package/dist/cjs/utils/lang/pl.json +156 -0
- package/dist/cjs/utils/lang/pt-BR.json +156 -0
- package/dist/cjs/utils/lang/th.json +156 -0
- package/dist/cjs/utils/lang/tr.json +156 -0
- package/dist/cjs/utils/lang/zh-Hans.json +156 -0
- package/dist/cjs/utils/lang/zh-TW.json +156 -0
- package/dist/cjs/utils/report-error.d.ts +1 -0
- package/dist/cjs/utils/report-error.js +10 -0
- package/dist/cjs/utils/report-error.js.map +1 -0
- package/dist/cjs/utils/s3-share-provider-token-service-helper.d.ts +21 -0
- package/dist/cjs/utils/s3-share-provider-token-service-helper.js +97 -0
- package/dist/cjs/utils/s3-share-provider-token-service-helper.js.map +1 -0
- package/dist/cjs/utils/translate.d.ts +3 -0
- package/dist/cjs/utils/translate.js +108 -0
- package/dist/cjs/utils/translate.js.map +1 -0
- package/dist/cjs/utils/url-params.d.ts +2 -0
- package/dist/cjs/utils/url-params.js +16 -0
- package/dist/cjs/utils/url-params.js.map +1 -0
- package/dist/cjs/views/alert-dialog-view.d.ts +3 -0
- package/dist/cjs/views/alert-dialog-view.js +32 -0
- package/dist/cjs/views/alert-dialog-view.js.map +1 -0
- package/dist/cjs/views/app-view.d.ts +49 -0
- package/dist/cjs/views/app-view.js +272 -0
- package/dist/cjs/views/app-view.js.map +1 -0
- package/dist/cjs/views/authorize-mixin.d.ts +10 -0
- package/dist/cjs/views/authorize-mixin.js +69 -0
- package/dist/cjs/views/authorize-mixin.js.map +1 -0
- package/dist/cjs/views/blocking-modal-view.d.ts +3 -0
- package/dist/cjs/views/blocking-modal-view.js +32 -0
- package/dist/cjs/views/blocking-modal-view.js.map +1 -0
- package/dist/cjs/views/confirm-dialog-view.d.ts +3 -0
- package/dist/cjs/views/confirm-dialog-view.js +40 -0
- package/dist/cjs/views/confirm-dialog-view.js.map +1 -0
- package/dist/cjs/views/download-dialog-view.d.ts +3 -0
- package/dist/cjs/views/download-dialog-view.js +79 -0
- package/dist/cjs/views/download-dialog-view.js.map +1 -0
- package/dist/cjs/views/dropdown-anchors.d.ts +4 -0
- package/dist/cjs/views/dropdown-anchors.js +17 -0
- package/dist/cjs/views/dropdown-anchors.js.map +1 -0
- package/dist/cjs/views/dropdown-view.d.ts +3 -0
- package/dist/cjs/views/dropdown-view.js +152 -0
- package/dist/cjs/views/dropdown-view.js.map +1 -0
- package/dist/cjs/views/file-dialog-tab-view.d.ts +3 -0
- package/dist/cjs/views/file-dialog-tab-view.js +405 -0
- package/dist/cjs/views/file-dialog-tab-view.js.map +1 -0
- package/dist/cjs/views/icons/spin.d.ts +5 -0
- package/dist/cjs/views/icons/spin.js +46 -0
- package/dist/cjs/views/icons/spin.js.map +1 -0
- package/dist/cjs/views/import-tabbed-dialog-view.d.ts +3 -0
- package/dist/cjs/views/import-tabbed-dialog-view.js +78 -0
- package/dist/cjs/views/import-tabbed-dialog-view.js.map +1 -0
- package/dist/cjs/views/local-file-tab-list-view.d.ts +3 -0
- package/dist/cjs/views/local-file-tab-list-view.js +84 -0
- package/dist/cjs/views/local-file-tab-list-view.js.map +1 -0
- package/dist/cjs/views/local-file-tab-save-view.d.ts +3 -0
- package/dist/cjs/views/local-file-tab-save-view.js +157 -0
- package/dist/cjs/views/local-file-tab-save-view.js.map +1 -0
- package/dist/cjs/views/menu-bar-view.d.ts +3 -0
- package/dist/cjs/views/menu-bar-view.js +201 -0
- package/dist/cjs/views/menu-bar-view.js.map +1 -0
- package/dist/cjs/views/modal-dialog-view.d.ts +8 -0
- package/dist/cjs/views/modal-dialog-view.js +18 -0
- package/dist/cjs/views/modal-dialog-view.js.map +1 -0
- package/dist/cjs/views/modal-tabbed-dialog-view.d.ts +3 -0
- package/dist/cjs/views/modal-tabbed-dialog-view.js +25 -0
- package/dist/cjs/views/modal-tabbed-dialog-view.js.map +1 -0
- package/dist/cjs/views/modal-view.d.ts +36 -0
- package/dist/cjs/views/modal-view.js +70 -0
- package/dist/cjs/views/modal-view.js.map +1 -0
- package/dist/cjs/views/provider-tabbed-dialog-view.d.ts +3 -0
- package/dist/cjs/views/provider-tabbed-dialog-view.js +67 -0
- package/dist/cjs/views/provider-tabbed-dialog-view.js.map +1 -0
- package/dist/cjs/views/rename-dialog-view.d.ts +3 -0
- package/dist/cjs/views/rename-dialog-view.js +60 -0
- package/dist/cjs/views/rename-dialog-view.js.map +1 -0
- package/dist/cjs/views/select-interactive-state-dialog-view.d.ts +22 -0
- package/dist/cjs/views/select-interactive-state-dialog-view.js +93 -0
- package/dist/cjs/views/select-interactive-state-dialog-view.js.map +1 -0
- package/dist/cjs/views/select-provider-dialog-tab-view.d.ts +2 -0
- package/dist/cjs/views/select-provider-dialog-tab-view.js +16 -0
- package/dist/cjs/views/select-provider-dialog-tab-view.js.map +1 -0
- package/dist/cjs/views/share-dialog-status-view.d.ts +9 -0
- package/dist/cjs/views/share-dialog-status-view.js +24 -0
- package/dist/cjs/views/share-dialog-status-view.js.map +1 -0
- package/dist/cjs/views/share-dialog-tabs-view.d.ts +45 -0
- package/dist/cjs/views/share-dialog-tabs-view.js +93 -0
- package/dist/cjs/views/share-dialog-tabs-view.js.map +1 -0
- package/dist/cjs/views/share-dialog-view.d.ts +50 -0
- package/dist/cjs/views/share-dialog-view.js +220 -0
- package/dist/cjs/views/share-dialog-view.js.map +1 -0
- package/dist/cjs/views/share-loading-view.d.ts +2 -0
- package/dist/cjs/views/share-loading-view.js +16 -0
- package/dist/cjs/views/share-loading-view.js.map +1 -0
- package/dist/cjs/views/tabbed-panel-view.d.ts +3 -0
- package/dist/cjs/views/tabbed-panel-view.js +79 -0
- package/dist/cjs/views/tabbed-panel-view.js.map +1 -0
- package/dist/cjs/views/url-tab-view.d.ts +3 -0
- package/dist/cjs/views/url-tab-view.js +67 -0
- package/dist/cjs/views/url-tab-view.js.map +1 -0
- package/dist/css/app.css +6 -0
- package/dist/css/app.css.map +1 -0
- package/dist/esm/app-options.d.ts +118 -0
- package/dist/esm/app-options.js +2 -0
- package/dist/esm/app-options.js.map +1 -0
- package/dist/esm/client.d.ts +165 -0
- package/dist/esm/client.js +1384 -0
- package/dist/esm/client.js.map +1 -0
- package/dist/esm/cloud-file-manager.d.ts +16 -0
- package/dist/esm/cloud-file-manager.js +72 -0
- package/dist/esm/cloud-file-manager.js.map +1 -0
- package/dist/esm/create-react-factory.d.ts +3 -0
- package/dist/esm/create-react-factory.js +6 -0
- package/dist/esm/create-react-factory.js.map +1 -0
- package/dist/esm/index.d.ts +4 -0
- package/dist/esm/index.js +5 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/lib/file-saver.d.ts +2 -0
- package/dist/esm/lib/file-saver.js +164 -0
- package/dist/esm/lib/file-saver.js.map +1 -0
- package/dist/esm/providers/document-store-provider.d.ts +48 -0
- package/dist/esm/providers/document-store-provider.js +536 -0
- package/dist/esm/providers/document-store-provider.js.map +1 -0
- package/dist/esm/providers/document-store-share-provider.d.ts +17 -0
- package/dist/esm/providers/document-store-share-provider.js +121 -0
- package/dist/esm/providers/document-store-share-provider.js.map +1 -0
- package/dist/esm/providers/document-store-url.d.ts +32 -0
- package/dist/esm/providers/document-store-url.js +73 -0
- package/dist/esm/providers/document-store-url.js.map +1 -0
- package/dist/esm/providers/google-drive-provider.d.ts +75 -0
- package/dist/esm/providers/google-drive-provider.js +656 -0
- package/dist/esm/providers/google-drive-provider.js.map +1 -0
- package/dist/esm/providers/interactive-api-provider.d.ts +55 -0
- package/dist/esm/providers/interactive-api-provider.js +374 -0
- package/dist/esm/providers/interactive-api-provider.js.map +1 -0
- package/dist/esm/providers/lara-provider.d.ts +47 -0
- package/dist/esm/providers/lara-provider.js +542 -0
- package/dist/esm/providers/lara-provider.js.map +1 -0
- package/dist/esm/providers/legacy-google-drive-provider.d.ts +74 -0
- package/dist/esm/providers/legacy-google-drive-provider.js +595 -0
- package/dist/esm/providers/legacy-google-drive-provider.js.map +1 -0
- package/dist/esm/providers/local-file-provider.d.ts +16 -0
- package/dist/esm/providers/local-file-provider.js +60 -0
- package/dist/esm/providers/local-file-provider.js.map +1 -0
- package/dist/esm/providers/localstorage-provider.d.ts +20 -0
- package/dist/esm/providers/localstorage-provider.js +117 -0
- package/dist/esm/providers/localstorage-provider.js.map +1 -0
- package/dist/esm/providers/patchable-content.d.ts +16 -0
- package/dist/esm/providers/patchable-content.js +60 -0
- package/dist/esm/providers/patchable-content.js.map +1 -0
- package/dist/esm/providers/post-message-provider.d.ts +12 -0
- package/dist/esm/providers/post-message-provider.js +34 -0
- package/dist/esm/providers/post-message-provider.js.map +1 -0
- package/dist/esm/providers/provider-interface.d.ts +168 -0
- package/dist/esm/providers/provider-interface.js +389 -0
- package/dist/esm/providers/provider-interface.js.map +1 -0
- package/dist/esm/providers/readonly-provider.d.ts +22 -0
- package/dist/esm/providers/readonly-provider.js +298 -0
- package/dist/esm/providers/readonly-provider.js.map +1 -0
- package/dist/esm/providers/s3-provider.d.ts +14 -0
- package/dist/esm/providers/s3-provider.js +104 -0
- package/dist/esm/providers/s3-provider.js.map +1 -0
- package/dist/esm/providers/s3-share-provider.d.ts +18 -0
- package/dist/esm/providers/s3-share-provider.js +122 -0
- package/dist/esm/providers/s3-share-provider.js.map +1 -0
- package/dist/esm/providers/share-provider-interface.d.ts +15 -0
- package/dist/esm/providers/share-provider-interface.js +2 -0
- package/dist/esm/providers/share-provider-interface.js.map +1 -0
- package/dist/esm/providers/test-provider.d.ts +26 -0
- package/dist/esm/providers/test-provider.js +71 -0
- package/dist/esm/providers/test-provider.js.map +1 -0
- package/dist/esm/providers/url-provider.d.ts +13 -0
- package/dist/esm/providers/url-provider.js +53 -0
- package/dist/esm/providers/url-provider.js.map +1 -0
- package/dist/esm/ui.d.ts +51 -0
- package/dist/esm/ui.js +208 -0
- package/dist/esm/ui.js.map +1 -0
- package/dist/esm/utils/config.d.ts +6 -0
- package/dist/esm/utils/config.js +6 -0
- package/dist/esm/utils/config.js.map +1 -0
- package/dist/esm/utils/get-hash-param.d.ts +1 -0
- package/dist/esm/utils/get-hash-param.js +21 -0
- package/dist/esm/utils/get-hash-param.js.map +1 -0
- package/dist/esm/utils/get-query-param.d.ts +1 -0
- package/dist/esm/utils/get-query-param.js +20 -0
- package/dist/esm/utils/get-query-param.js.map +1 -0
- package/dist/esm/utils/is-array.d.ts +2 -0
- package/dist/esm/utils/is-array.js +2 -0
- package/dist/esm/utils/is-array.js.map +1 -0
- package/dist/esm/utils/is-empty-object.d.ts +1 -0
- package/dist/esm/utils/is-empty-object.js +3 -0
- package/dist/esm/utils/is-empty-object.js.map +1 -0
- package/dist/esm/utils/is-string.d.ts +2 -0
- package/dist/esm/utils/is-string.js +2 -0
- package/dist/esm/utils/is-string.js.map +1 -0
- package/dist/esm/utils/lang/de.json +156 -0
- package/dist/esm/utils/lang/el.json +156 -0
- package/dist/esm/utils/lang/en-US.json +156 -0
- package/dist/esm/utils/lang/es.json +156 -0
- package/dist/esm/utils/lang/fa.json +156 -0
- package/dist/esm/utils/lang/he.json +156 -0
- package/dist/esm/utils/lang/ja.json +156 -0
- package/dist/esm/utils/lang/ko.json +156 -0
- package/dist/esm/utils/lang/nb.json +156 -0
- package/dist/esm/utils/lang/nn.json +156 -0
- package/dist/esm/utils/lang/pl.json +156 -0
- package/dist/esm/utils/lang/pt-BR.json +156 -0
- package/dist/esm/utils/lang/th.json +156 -0
- package/dist/esm/utils/lang/tr.json +156 -0
- package/dist/esm/utils/lang/zh-Hans.json +156 -0
- package/dist/esm/utils/lang/zh-TW.json +156 -0
- package/dist/esm/utils/report-error.d.ts +1 -0
- package/dist/esm/utils/report-error.js +6 -0
- package/dist/esm/utils/report-error.js.map +1 -0
- package/dist/esm/utils/s3-share-provider-token-service-helper.d.ts +21 -0
- package/dist/esm/utils/s3-share-provider-token-service-helper.js +87 -0
- package/dist/esm/utils/s3-share-provider-token-service-helper.js.map +1 -0
- package/dist/esm/utils/translate.d.ts +3 -0
- package/dist/esm/utils/translate.js +101 -0
- package/dist/esm/utils/translate.js.map +1 -0
- package/dist/esm/utils/url-params.d.ts +2 -0
- package/dist/esm/utils/url-params.js +14 -0
- package/dist/esm/utils/url-params.js.map +1 -0
- package/dist/esm/views/alert-dialog-view.d.ts +3 -0
- package/dist/esm/views/alert-dialog-view.js +27 -0
- package/dist/esm/views/alert-dialog-view.js.map +1 -0
- package/dist/esm/views/app-view.d.ts +49 -0
- package/dist/esm/views/app-view.js +267 -0
- package/dist/esm/views/app-view.js.map +1 -0
- package/dist/esm/views/authorize-mixin.d.ts +10 -0
- package/dist/esm/views/authorize-mixin.js +67 -0
- package/dist/esm/views/authorize-mixin.js.map +1 -0
- package/dist/esm/views/blocking-modal-view.d.ts +3 -0
- package/dist/esm/views/blocking-modal-view.js +27 -0
- package/dist/esm/views/blocking-modal-view.js.map +1 -0
- package/dist/esm/views/confirm-dialog-view.d.ts +3 -0
- package/dist/esm/views/confirm-dialog-view.js +35 -0
- package/dist/esm/views/confirm-dialog-view.js.map +1 -0
- package/dist/esm/views/download-dialog-view.d.ts +3 -0
- package/dist/esm/views/download-dialog-view.js +74 -0
- package/dist/esm/views/download-dialog-view.js.map +1 -0
- package/dist/esm/views/dropdown-anchors.d.ts +4 -0
- package/dist/esm/views/dropdown-anchors.js +10 -0
- package/dist/esm/views/dropdown-anchors.js.map +1 -0
- package/dist/esm/views/dropdown-view.d.ts +3 -0
- package/dist/esm/views/dropdown-view.js +147 -0
- package/dist/esm/views/dropdown-view.js.map +1 -0
- package/dist/esm/views/file-dialog-tab-view.d.ts +3 -0
- package/dist/esm/views/file-dialog-tab-view.js +400 -0
- package/dist/esm/views/file-dialog-tab-view.js.map +1 -0
- package/dist/esm/views/icons/spin.d.ts +5 -0
- package/dist/esm/views/icons/spin.js +39 -0
- package/dist/esm/views/icons/spin.js.map +1 -0
- package/dist/esm/views/import-tabbed-dialog-view.d.ts +3 -0
- package/dist/esm/views/import-tabbed-dialog-view.js +73 -0
- package/dist/esm/views/import-tabbed-dialog-view.js.map +1 -0
- package/dist/esm/views/local-file-tab-list-view.d.ts +3 -0
- package/dist/esm/views/local-file-tab-list-view.js +79 -0
- package/dist/esm/views/local-file-tab-list-view.js.map +1 -0
- package/dist/esm/views/local-file-tab-save-view.d.ts +3 -0
- package/dist/esm/views/local-file-tab-save-view.js +152 -0
- package/dist/esm/views/local-file-tab-save-view.js.map +1 -0
- package/dist/esm/views/menu-bar-view.d.ts +3 -0
- package/dist/esm/views/menu-bar-view.js +196 -0
- package/dist/esm/views/menu-bar-view.js.map +1 -0
- package/dist/esm/views/modal-dialog-view.d.ts +8 -0
- package/dist/esm/views/modal-dialog-view.js +13 -0
- package/dist/esm/views/modal-dialog-view.js.map +1 -0
- package/dist/esm/views/modal-tabbed-dialog-view.d.ts +3 -0
- package/dist/esm/views/modal-tabbed-dialog-view.js +20 -0
- package/dist/esm/views/modal-tabbed-dialog-view.js.map +1 -0
- package/dist/esm/views/modal-view.d.ts +36 -0
- package/dist/esm/views/modal-view.js +64 -0
- package/dist/esm/views/modal-view.js.map +1 -0
- package/dist/esm/views/provider-tabbed-dialog-view.d.ts +3 -0
- package/dist/esm/views/provider-tabbed-dialog-view.js +62 -0
- package/dist/esm/views/provider-tabbed-dialog-view.js.map +1 -0
- package/dist/esm/views/rename-dialog-view.d.ts +3 -0
- package/dist/esm/views/rename-dialog-view.js +55 -0
- package/dist/esm/views/rename-dialog-view.js.map +1 -0
- package/dist/esm/views/select-interactive-state-dialog-view.d.ts +22 -0
- package/dist/esm/views/select-interactive-state-dialog-view.js +87 -0
- package/dist/esm/views/select-interactive-state-dialog-view.js.map +1 -0
- package/dist/esm/views/select-provider-dialog-tab-view.d.ts +2 -0
- package/dist/esm/views/select-provider-dialog-tab-view.js +11 -0
- package/dist/esm/views/select-provider-dialog-tab-view.js.map +1 -0
- package/dist/esm/views/share-dialog-status-view.d.ts +9 -0
- package/dist/esm/views/share-dialog-status-view.js +17 -0
- package/dist/esm/views/share-dialog-status-view.js.map +1 -0
- package/dist/esm/views/share-dialog-tabs-view.d.ts +45 -0
- package/dist/esm/views/share-dialog-tabs-view.js +83 -0
- package/dist/esm/views/share-dialog-tabs-view.js.map +1 -0
- package/dist/esm/views/share-dialog-view.d.ts +50 -0
- package/dist/esm/views/share-dialog-view.js +214 -0
- package/dist/esm/views/share-dialog-view.js.map +1 -0
- package/dist/esm/views/share-loading-view.d.ts +2 -0
- package/dist/esm/views/share-loading-view.js +9 -0
- package/dist/esm/views/share-loading-view.js.map +1 -0
- package/dist/esm/views/tabbed-panel-view.d.ts +3 -0
- package/dist/esm/views/tabbed-panel-view.js +74 -0
- package/dist/esm/views/tabbed-panel-view.js.map +1 -0
- package/dist/esm/views/url-tab-view.d.ts +3 -0
- package/dist/esm/views/url-tab-view.js +62 -0
- package/dist/esm/views/url-tab-view.js.map +1 -0
- package/dist/examples/all-providers-react-18.html +74 -0
- package/dist/examples/all-providers.html +61 -0
- package/dist/examples/auto-saving.html +50 -0
- package/dist/examples/client-logging-provider.html +107 -0
- package/dist/examples/close-file.html +63 -0
- package/dist/examples/deprecate-phase-one.html +60 -0
- package/dist/examples/deprecate-phase-three.html +60 -0
- package/dist/examples/deprecate-phase-two.html +60 -0
- package/dist/examples/enable-demo-extension.html +52 -0
- package/dist/examples/enable-lara-sharing.html +51 -0
- package/dist/examples/example-app/index.html +133 -0
- package/dist/examples/hide-hamburger-2.html +55 -0
- package/dist/examples/hide-hamburger.html +34 -0
- package/dist/examples/index.html +40 -0
- package/dist/examples/interactive-api-provider.html +27 -0
- package/dist/examples/language-menu.html +86 -0
- package/dist/examples/lara-provider.html +52 -0
- package/dist/examples/load-url-query-param.html +54 -0
- package/dist/examples/menu-madness.html +67 -0
- package/dist/examples/new-does-not-use-new-tab.html +47 -0
- package/dist/examples/no-flag-language-menu.html +86 -0
- package/dist/examples/no-frame.html +130 -0
- package/dist/examples/no-shared-google-drives.html +47 -0
- package/dist/examples/read-only-with-folders.html +120 -0
- package/dist/examples/show-close-confirm.html +47 -0
- package/dist/examples/splash-screen.html +70 -0
- package/dist/examples/view-no-frame-nowrap.html +167 -0
- package/dist/examples/view-no-frame.html +129 -0
- package/dist/favicon.ico +0 -0
- package/dist/fonts/CodapIvy.eot +0 -0
- package/dist/fonts/CodapIvy.svg +61 -0
- package/dist/fonts/CodapIvy.ttf +0 -0
- package/dist/fonts/CodapIvy.woff +0 -0
- package/dist/fonts/Montserrat-Bold.otf +0 -0
- package/dist/fonts/Montserrat-Regular.otf +0 -0
- package/dist/fonts/MuseoSans_500.otf +0 -0
- package/dist/fonts/MuseoSans_500_Italic.otf +0 -0
- package/dist/fonts/icon-menu.eot +0 -0
- package/dist/fonts/icon-menu.svg +24 -0
- package/dist/fonts/icon-menu.ttf +0 -0
- package/dist/fonts/icon-menu.woff +0 -0
- package/dist/img/bb-chrome/arrow-collapse.svg +8 -0
- package/dist/img/bb-chrome/arrow-expand.svg +8 -0
- package/dist/img/bb-chrome/bg-horiz.png +0 -0
- package/dist/img/bb-chrome/btn-nodeLink.svg +298 -0
- package/dist/img/bb-chrome/chevron-down.png +0 -0
- package/dist/img/bb-chrome/chevron-left.png +0 -0
- package/dist/img/bb-chrome/chevron-right.png +0 -0
- package/dist/img/bb-chrome/chevron-up.png +0 -0
- package/dist/img/bb-chrome/global-nav-bg.png +0 -0
- package/dist/img/bb-chrome/icon-checkmark.svg +10 -0
- package/dist/img/bb-chrome/slider.svg +286 -0
- package/dist/img/bb-chrome/spin.svg +54 -0
- package/dist/img/concord-logo.png +0 -0
- package/dist/img/debug/grid.jpg +0 -0
- package/dist/img/document-store-16.png +0 -0
- package/dist/img/earth.svg +48 -0
- package/dist/img/flags.png +0 -0
- package/dist/img/fullscreen-dark.svg +22 -0
- package/dist/img/fullscreen-exit-dark.svg +22 -0
- package/dist/img/fullscreen-exit.svg +22 -0
- package/dist/img/fullscreen.svg +22 -0
- package/dist/img/google-drive-16.png +0 -0
- package/dist/img/google-drive-logo.png +0 -0
- package/dist/img/loading.gif +0 -0
- package/dist/index.html +21 -0
- package/dist/js/app.js +3 -0
- package/dist/js/app.js.LICENSE.txt +287 -0
- package/dist/js/app.js.map +1 -0
- package/dist/js/globals.js +3 -0
- package/dist/js/globals.js.LICENSE.txt +52 -0
- package/dist/js/globals.js.map +1 -0
- package/license.md +21 -0
- package/package.json +127 -0
- package/readme.md +275 -0
package/dist/js/app.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! For license information please see app.js.LICENSE.txt */
|
|
2
|
+
(()=>{var e={3770:(e,t,r)=>{var n;window,n=function(){return function(e){var t={};function r(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,r),i.l=!0,i.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)r.d(n,i,function(t){return e[t]}.bind(null,i));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s="./src/interactive-api-client/index.ts")}({"./node_modules/deep-freeze/index.js":function(e,t){e.exports=function e(t){return Object.freeze(t),Object.getOwnPropertyNames(t).forEach((function(r){!t.hasOwnProperty(r)||null===t[r]||"object"!=typeof t[r]&&"function"!=typeof t[r]||Object.isFrozen(t[r])||e(t[r])})),t}},"./node_modules/eventemitter2/lib/eventemitter2.js":function(e,t,r){(function(n,i){var a;!function(o){var s=Object.hasOwnProperty,c=Array.isArray?Array.isArray:function(e){return"[object Array]"===Object.prototype.toString.call(e)},l="object"==typeof n&&"function"==typeof n.nextTick,u="function"==typeof Symbol,p="object"==typeof Reflect,d="function"==typeof i?i:setTimeout,h=u?p&&"function"==typeof Reflect.ownKeys?Reflect.ownKeys:function(e){var t=Object.getOwnPropertyNames(e);return t.push.apply(t,Object.getOwnPropertySymbols(e)),t}:Object.keys;function m(){this._events={},this._conf&&f.call(this,this._conf)}function f(e){e&&(this._conf=e,e.delimiter&&(this.delimiter=e.delimiter),e.maxListeners!==o&&(this._maxListeners=e.maxListeners),e.wildcard&&(this.wildcard=e.wildcard),e.newListener&&(this._newListener=e.newListener),e.removeListener&&(this._removeListener=e.removeListener),e.verboseMemoryLeak&&(this.verboseMemoryLeak=e.verboseMemoryLeak),e.ignoreErrors&&(this.ignoreErrors=e.ignoreErrors),this.wildcard&&(this.listenerTree={}))}function E(e,t){var r="(node) warning: possible EventEmitter memory leak detected. "+e+" listeners added. Use emitter.setMaxListeners() to increase limit.";if(this.verboseMemoryLeak&&(r+=" Event name: "+t+"."),void 0!==n&&n.emitWarning){var i=new Error(r);i.name="MaxListenersExceededWarning",i.emitter=this,i.count=e,n.emitWarning(i)}else console.error(r),console.trace&&console.trace()}var v=function(e,t,r){var n=arguments.length;switch(n){case 0:return[];case 1:return[e];case 2:return[e,t];case 3:return[e,t,r];default:for(var i=new Array(n);n--;)i[n]=arguments[n];return i}};function _(e,t){for(var r={},n=e.length,i=t?value.length:0,a=0;a<n;a++)r[e[a]]=a<i?t[a]:o;return r}function g(e,t,r){var n,i;if(this._emitter=e,this._target=t,this._listeners={},this._listenersCount=0,(r.on||r.off)&&(n=r.on,i=r.off),t.addEventListener?(n=t.addEventListener,i=t.removeEventListener):t.addListener?(n=t.addListener,i=t.removeListener):t.on&&(n=t.on,i=t.off),!n&&!i)throw Error("target does not implement any known event API");if("function"!=typeof n)throw TypeError("on method must be a function");if("function"!=typeof i)throw TypeError("off method must be a function");this._on=n,this._off=i;var a=e._observers;a?a.push(this):e._observers=[this]}function y(e,t,r,n){var i=Object.assign({},t);if(!e)return i;if("object"!=typeof e)throw TypeError("options must be an object");var a,c,l,u=Object.keys(e),p=u.length;function d(e){throw Error('Invalid "'+a+'" option value'+(e?". Reason: "+e:""))}for(var h=0;h<p;h++){if(a=u[h],!n&&!s.call(t,a))throw Error('Unknown "'+a+'" option');(c=e[a])!==o&&(l=r[a],i[a]=l?l(c,d):c)}return i}function A(e,t){return"function"==typeof e&&e.hasOwnProperty("prototype")||t("value must be a constructor"),e}function O(e){var t="value must be type of "+e.join("|"),r=e.length,n=e[0],i=e[1];return 1===r?function(e,r){if(typeof e===n)return e;r(t)}:2===r?function(e,r){var a=typeof e;if(a===n||a===i)return e;r(t)}:function(n,i){for(var a=typeof n,o=r;o-- >0;)if(a===e[o])return n;i(t)}}Object.assign(g.prototype,{subscribe:function(e,t,r){var n=this,i=this._target,a=this._emitter,o=this._listeners,s=function(){var n=v.apply(null,arguments),o={data:n,name:t,original:e};r?!1!==r.call(i,o)&&a.emit.apply(a,[o.name].concat(n)):a.emit.apply(a,[t].concat(n))};if(o[e])throw Error("Event '"+e+"' is already listening");this._listenersCount++,a._newListener&&a._removeListener&&!n._onNewListener?(this._onNewListener=function(r){r===t&&null===o[e]&&(o[e]=s,n._on.call(i,e,s))},a.on("newListener",this._onNewListener),this._onRemoveListener=function(r){r===t&&!a.hasListeners(r)&&o[e]&&(o[e]=null,n._off.call(i,e,s))},o[e]=null,a.on("removeListener",this._onRemoveListener)):(o[e]=s,n._on.call(i,e,s))},unsubscribe:function(e){var t,r,n,i=this,a=this._listeners,o=this._emitter,s=this._off,c=this._target;if(e&&"string"!=typeof e)throw TypeError("event must be a string");function l(){i._onNewListener&&(o.off("newListener",i._onNewListener),o.off("removeListener",i._onRemoveListener),i._onNewListener=null,i._onRemoveListener=null);var e=L.call(o,i);o._observers.splice(e,1)}if(e){if(!(t=a[e]))return;s.call(c,e,t),delete a[e],--this._listenersCount||l()}else{for(n=(r=h(a)).length;n-- >0;)e=r[n],s.call(c,e,a[e]);this._listeners={},this._listenersCount=0,l()}}});var S=O(["function"]),R=O(["object","function"]);function I(e,t,r){var n,i,a,o=0,s=new e((function(c,l,u){function p(){i&&(i=null),o&&(clearTimeout(o),o=0)}r=y(r,{timeout:0,overload:!1},{timeout:function(e,t){return("number"!=typeof(e*=1)||e<0||!Number.isFinite(e))&&t("timeout must be a positive number"),e}}),n=!r.overload&&"function"==typeof e.prototype.cancel&&"function"==typeof u;var d=function(e){p(),c(e)},h=function(e){p(),l(e)};n?t(d,h,u):(i=[function(e){h(e||Error("canceled"))}],t(d,h,(function(e){if(a)throw Error("Unable to subscribe on cancel event asynchronously");if("function"!=typeof e)throw TypeError("onCancel callback must be a function");i.push(e)})),a=!0),r.timeout>0&&(o=setTimeout((function(){var e=Error("timeout");e.code="ETIMEDOUT",o=0,s.cancel(e),l(e)}),r.timeout))}));return n||(s.cancel=function(e){if(i){for(var t=i.length,r=1;r<t;r++)i[r](e);i[0](e),i=null}}),s}function L(e){var t=this._observers;if(!t)return-1;for(var r=t.length,n=0;n<r;n++)if(t[n]._target===e)return n;return-1}function C(e,t,r,n,i){if(!r)return null;if(0===n){var a=typeof t;if("string"===a){var o,s,c=0,l=0,u=this.delimiter,p=u.length;if(-1!==(s=t.indexOf(u))){o=new Array(5);do{o[c++]=t.slice(l,s),l=s+p}while(-1!==(s=t.indexOf(u,l)));o[c++]=t.slice(l),t=o,i=c}else t=[t],i=1}else"object"===a?i=t.length:(t=[t],i=1)}var d,m,f,E,v,_,g,y=null,A=t[n],O=t[n+1];if(n===i&&r._listeners)return"function"==typeof r._listeners?(e&&e.push(r._listeners),[r]):(e&&e.push.apply(e,r._listeners),[r]);if("*"===A){for(s=(_=h(r)).length;s-- >0;)"_listeners"!==(d=_[s])&&(g=C(e,t,r[d],n+1,i))&&(y?y.push.apply(y,g):y=g);return y}if("**"===A){for((v=n+1===i||n+2===i&&"*"===O)&&r._listeners&&(y=C(e,t,r,i,i)),s=(_=h(r)).length;s-- >0;)"_listeners"!==(d=_[s])&&("*"===d||"**"===d?(r[d]._listeners&&!v&&(g=C(e,t,r[d],i,i))&&(y?y.push.apply(y,g):y=g),g=C(e,t,r[d],n,i)):g=C(e,t,r[d],d===O?n+2:n,i),g&&(y?y.push.apply(y,g):y=g));return y}if(r[A]&&(y=C(e,t,r[A],n+1,i)),(m=r["*"])&&C(e,t,m,n+1,i),f=r["**"])if(n<i)for(f._listeners&&C(e,t,f,i,i),s=(_=h(f)).length;s-- >0;)"_listeners"!==(d=_[s])&&(d===O?C(e,t,f[d],n+2,i):d===A?C(e,t,f[d],n+1,i):((E={})[d]=f[d],C(e,t,{"**":E},n+1,i)));else f._listeners?C(e,t,f,i,i):f["*"]&&f["*"]._listeners&&C(e,t,f["*"],i,i);return y}function D(e,t,r){var n,i,a=0,o=0,s=this.delimiter,c=s.length;if("string"==typeof e)if(-1!==(n=e.indexOf(s))){i=new Array(5);do{i[a++]=e.slice(o,n),o=n+c}while(-1!==(n=e.indexOf(s,o)));i[a++]=e.slice(o)}else i=[e],a=1;else i=e,a=e.length;if(a>1)for(n=0;n+1<a;n++)if("**"===i[n]&&"**"===i[n+1])return;var l,u=this.listenerTree;for(n=0;n<a;n++)if(u=u[l=i[n]]||(u[l]={}),n===a-1)return u._listeners?("function"==typeof u._listeners&&(u._listeners=[u._listeners]),r?u._listeners.unshift(t):u._listeners.push(t),!u._listeners.warned&&this._maxListeners>0&&u._listeners.length>this._maxListeners&&(u._listeners.warned=!0,E.call(this,u._listeners.length,l))):u._listeners=t,!0;return!0}function b(e,t,r,n){for(var i,a,o,s,c=h(e),l=c.length,u=e._listeners;l-- >0;)i=e[a=c[l]],o="_listeners"===a?r:r?r.concat(a):[a],s=n||"symbol"==typeof a,u&&t.push(s?o:o.join(this.delimiter)),"object"==typeof i&&b.call(this,i,t,o,s);return t}function T(e){for(var t,r,n,i=h(e),a=i.length;a-- >0;)(t=e[r=i[a]])&&(n=!0,"_listeners"===r||T(t)||delete e[r]);return n}function N(e,t,r){this.emitter=e,this.event=t,this.listener=r}function k(e,t,r){if(!0===r)a=!0;else if(!1===r)i=!0;else{if(!r||"object"!=typeof r)throw TypeError("options should be an object or true");var i=r.async,a=r.promisify,s=r.nextTick,c=r.objectify}if(i||s||a){var u=t,p=t._origin||t;if(s&&!l)throw Error("process.nextTick is not supported");a===o&&(a="AsyncFunction"===t.constructor.name),t=function(){var e=arguments,t=this,r=this.event;return a?s?Promise.resolve():new Promise((function(e){d(e)})).then((function(){return t.event=r,u.apply(t,e)})):(s?n.nextTick:d)((function(){t.event=r,u.apply(t,e)}))},t._async=!0,t._origin=p}return[t,c?new N(this,e,t):this]}function w(e){this._events={},this._newListener=!1,this._removeListener=!1,this.verboseMemoryLeak=!1,f.call(this,e)}N.prototype.off=function(){return this.emitter.off(this.event,this.listener),this},w.EventEmitter2=w,w.prototype.listenTo=function(e,t,r){if("object"!=typeof e)throw TypeError("target musts be an object");var n=this;function i(t){if("object"!=typeof t)throw TypeError("events must be an object");var i,a=r.reducers,o=L.call(n,e);i=-1===o?new g(n,e,r):n._observers[o];for(var s,c=h(t),l=c.length,u="function"==typeof a,p=0;p<l;p++)s=c[p],i.subscribe(s,t[s]||s,u?a:a&&a[s])}return r=y(r,{on:o,off:o,reducers:o},{on:S,off:S,reducers:R}),c(t)?i(_(t)):i("string"==typeof t?_(t.split(/\s+/)):t),this},w.prototype.stopListeningTo=function(e,t){var r=this._observers;if(!r)return!1;var n,i=r.length,a=!1;if(e&&"object"!=typeof e)throw TypeError("target should be an object");for(;i-- >0;)n=r[i],e&&n._target!==e||(n.unsubscribe(t),a=!0);return a},w.prototype.delimiter=".",w.prototype.setMaxListeners=function(e){e!==o&&(this._maxListeners=e,this._conf||(this._conf={}),this._conf.maxListeners=e)},w.prototype.getMaxListeners=function(){return this._maxListeners},w.prototype.event="",w.prototype.once=function(e,t,r){return this._once(e,t,!1,r)},w.prototype.prependOnceListener=function(e,t,r){return this._once(e,t,!0,r)},w.prototype._once=function(e,t,r,n){return this._many(e,1,t,r,n)},w.prototype.many=function(e,t,r,n){return this._many(e,t,r,!1,n)},w.prototype.prependMany=function(e,t,r,n){return this._many(e,t,r,!0,n)},w.prototype._many=function(e,t,r,n,i){var a=this;if("function"!=typeof r)throw new Error("many only accepts instances of Function");function o(){return 0==--t&&a.off(e,o),r.apply(this,arguments)}return o._origin=r,this._on(e,o,n,i)},w.prototype.emit=function(){if(!this._events&&!this._all)return!1;this._events||m.call(this);var e,t,r,n,i,a,o=arguments[0],s=this.wildcard;if("newListener"===o&&!this._newListener&&!this._events.newListener)return!1;if(s&&(e=o,"newListener"!==o&&"removeListener"!==o&&"object"==typeof o)){if(r=o.length,u)for(n=0;n<r;n++)if("symbol"==typeof o[n]){a=!0;break}a||(o=o.join(this.delimiter))}var c,l=arguments.length;if(this._all&&this._all.length)for(n=0,r=(c=this._all.slice()).length;n<r;n++)switch(this.event=o,l){case 1:c[n].call(this,o);break;case 2:c[n].call(this,o,arguments[1]);break;case 3:c[n].call(this,o,arguments[1],arguments[2]);break;default:c[n].apply(this,arguments)}if(s)c=[],C.call(this,c,e,this.listenerTree,0,r);else{if("function"==typeof(c=this._events[o])){switch(this.event=o,l){case 1:c.call(this);break;case 2:c.call(this,arguments[1]);break;case 3:c.call(this,arguments[1],arguments[2]);break;default:for(t=new Array(l-1),i=1;i<l;i++)t[i-1]=arguments[i];c.apply(this,t)}return!0}c&&(c=c.slice())}if(c&&c.length){if(l>3)for(t=new Array(l-1),i=1;i<l;i++)t[i-1]=arguments[i];for(n=0,r=c.length;n<r;n++)switch(this.event=o,l){case 1:c[n].call(this);break;case 2:c[n].call(this,arguments[1]);break;case 3:c[n].call(this,arguments[1],arguments[2]);break;default:c[n].apply(this,t)}return!0}if(!this.ignoreErrors&&!this._all&&"error"===o)throw arguments[1]instanceof Error?arguments[1]:new Error("Uncaught, unspecified 'error' event.");return!!this._all},w.prototype.emitAsync=function(){if(!this._events&&!this._all)return!1;this._events||m.call(this);var e,t,r,n,i,a,o=arguments[0],s=this.wildcard;if("newListener"===o&&!this._newListener&&!this._events.newListener)return Promise.resolve([!1]);if(s&&(e=o,"newListener"!==o&&"removeListener"!==o&&"object"==typeof o)){if(n=o.length,u)for(i=0;i<n;i++)if("symbol"==typeof o[i]){t=!0;break}t||(o=o.join(this.delimiter))}var c,l=[],p=arguments.length;if(this._all)for(i=0,n=this._all.length;i<n;i++)switch(this.event=o,p){case 1:l.push(this._all[i].call(this,o));break;case 2:l.push(this._all[i].call(this,o,arguments[1]));break;case 3:l.push(this._all[i].call(this,o,arguments[1],arguments[2]));break;default:l.push(this._all[i].apply(this,arguments))}if(s?(c=[],C.call(this,c,e,this.listenerTree,0)):c=this._events[o],"function"==typeof c)switch(this.event=o,p){case 1:l.push(c.call(this));break;case 2:l.push(c.call(this,arguments[1]));break;case 3:l.push(c.call(this,arguments[1],arguments[2]));break;default:for(r=new Array(p-1),a=1;a<p;a++)r[a-1]=arguments[a];l.push(c.apply(this,r))}else if(c&&c.length){if(c=c.slice(),p>3)for(r=new Array(p-1),a=1;a<p;a++)r[a-1]=arguments[a];for(i=0,n=c.length;i<n;i++)switch(this.event=o,p){case 1:l.push(c[i].call(this));break;case 2:l.push(c[i].call(this,arguments[1]));break;case 3:l.push(c[i].call(this,arguments[1],arguments[2]));break;default:l.push(c[i].apply(this,r))}}else if(!this.ignoreErrors&&!this._all&&"error"===o)return arguments[1]instanceof Error?Promise.reject(arguments[1]):Promise.reject("Uncaught, unspecified 'error' event.");return Promise.all(l)},w.prototype.on=function(e,t,r){return this._on(e,t,!1,r)},w.prototype.prependListener=function(e,t,r){return this._on(e,t,!0,r)},w.prototype.onAny=function(e){return this._onAny(e,!1)},w.prototype.prependAny=function(e){return this._onAny(e,!0)},w.prototype.addListener=w.prototype.on,w.prototype._onAny=function(e,t){if("function"!=typeof e)throw new Error("onAny only accepts instances of Function");return this._all||(this._all=[]),t?this._all.unshift(e):this._all.push(e),this},w.prototype._on=function(e,t,r,n){if("function"==typeof e)return this._onAny(e,t),this;if("function"!=typeof t)throw new Error("on only accepts instances of Function");this._events||m.call(this);var i,a=this;return n!==o&&(t=(i=k.call(this,e,t,n))[0],a=i[1]),this._newListener&&this.emit("newListener",e,t),this.wildcard?(D.call(this,e,t,r),a):(this._events[e]?("function"==typeof this._events[e]&&(this._events[e]=[this._events[e]]),r?this._events[e].unshift(t):this._events[e].push(t),!this._events[e].warned&&this._maxListeners>0&&this._events[e].length>this._maxListeners&&(this._events[e].warned=!0,E.call(this,this._events[e].length,e))):this._events[e]=t,a)},w.prototype.off=function(e,t){if("function"!=typeof t)throw new Error("removeListener only takes instances of Function");var r,n=[];if(this.wildcard){var i="string"==typeof e?e.split(this.delimiter):e.slice();if(!(n=C.call(this,null,i,this.listenerTree,0)))return this}else{if(!this._events[e])return this;r=this._events[e],n.push({_listeners:r})}for(var a=0;a<n.length;a++){var o=n[a];if(r=o._listeners,c(r)){for(var s=-1,l=0,u=r.length;l<u;l++)if(r[l]===t||r[l].listener&&r[l].listener===t||r[l]._origin&&r[l]._origin===t){s=l;break}if(s<0)continue;return this.wildcard?o._listeners.splice(s,1):this._events[e].splice(s,1),0===r.length&&(this.wildcard?delete o._listeners:delete this._events[e]),this._removeListener&&this.emit("removeListener",e,t),this}(r===t||r.listener&&r.listener===t||r._origin&&r._origin===t)&&(this.wildcard?delete o._listeners:delete this._events[e],this._removeListener&&this.emit("removeListener",e,t))}return this.listenerTree&&T(this.listenerTree),this},w.prototype.offAny=function(e){var t,r=0,n=0;if(e&&this._all&&this._all.length>0){for(r=0,n=(t=this._all).length;r<n;r++)if(e===t[r])return t.splice(r,1),this._removeListener&&this.emit("removeListenerAny",e),this}else{if(t=this._all,this._removeListener)for(r=0,n=t.length;r<n;r++)this.emit("removeListenerAny",t[r]);this._all=[]}return this},w.prototype.removeListener=w.prototype.off,w.prototype.removeAllListeners=function(e){if(e===o)return!this._events||m.call(this),this;if(this.wildcard){var t,r=C.call(this,null,e,this.listenerTree,0);if(!r)return this;for(t=0;t<r.length;t++)r[t]._listeners=null;this.listenerTree&&T(this.listenerTree)}else this._events&&(this._events[e]=null);return this},w.prototype.listeners=function(e){var t,r,n,i,a,s=this._events;if(e===o){if(this.wildcard)throw Error("event name required for wildcard emitter");if(!s)return[];for(i=(t=h(s)).length,n=[];i-- >0;)"function"==typeof(r=s[t[i]])?n.push(r):n.push.apply(n,r);return n}if(this.wildcard){if(!(a=this.listenerTree))return[];var c=[],l="string"==typeof e?e.split(this.delimiter):e.slice();return C.call(this,c,l,a,0),c}return s&&(r=s[e])?"function"==typeof r?[r]:r:[]},w.prototype.eventNames=function(e){var t=this._events;return this.wildcard?b.call(this,this.listenerTree,[],null,e):t?h(t):[]},w.prototype.listenerCount=function(e){return this.listeners(e).length},w.prototype.hasListeners=function(e){if(this.wildcard){var t=[],r="string"==typeof e?e.split(this.delimiter):e.slice();return C.call(this,t,r,this.listenerTree,0),t.length>0}var n=this._events,i=this._all;return!!(i&&i.length||n&&(e===o?h(n).length:n[e]))},w.prototype.listenersAny=function(){return this._all?this._all:[]},w.prototype.waitFor=function(e,t){var r=this,n=typeof t;return"number"===n?t={timeout:t}:"function"===n&&(t={filter:t}),I((t=y(t,{timeout:0,filter:o,handleError:!1,Promise,overload:!1},{filter:S,Promise:A})).Promise,(function(n,i,a){function o(){var a=t.filter;if(!a||a.apply(r,arguments))if(r.off(e,o),t.handleError){var s=arguments[0];s?i(s):n(v.apply(null,arguments).slice(1))}else n(v.apply(null,arguments))}a((function(){r.off(e,o)})),r._on(e,o,!1)}),{timeout:t.timeout,overload:t.overload})};var x=w.prototype;Object.defineProperties(w,{defaultMaxListeners:{get:function(){return x._maxListeners},set:function(e){if("number"!=typeof e||e<0||Number.isNaN(e))throw TypeError("n must be a non-negative number");x._maxListeners=e},enumerable:!0},once:{value:function(e,t,r){return I((r=y(r,{Promise,timeout:0,overload:!1},{Promise:A})).Promise,(function(r,n,i){var a;if("function"==typeof e.addEventListener)return a=function(){r(v.apply(null,arguments))},i((function(){e.removeEventListener(t,a)})),void e.addEventListener(t,a,{once:!0});var o,s=function(){o&&e.removeListener("error",o),r(v.apply(null,arguments))};"error"!==t&&(o=function(r){e.removeListener(t,s),n(r)},e.once("error",o)),i((function(){o&&e.removeListener("error",o),e.removeListener(t,s)})),e.once(t,s)}),{timeout:r.timeout,overload:r.overload})},writable:!0,configurable:!0}}),Object.defineProperties(x,{_maxListeners:{value:10,writable:!0,configurable:!0},_observers:{value:null,writable:!0,configurable:!0}}),(a=function(){return w}.call(t,r,t,e))===o||(e.exports=a)}()}).call(this,r("./node_modules/process/browser.js"),r("./node_modules/timers-browserify/main.js").setImmediate)},"./node_modules/iframe-phone/lib/iframe-endpoint.js":function(e,t,r){var n=r("./node_modules/iframe-phone/lib/structured-clone.js");function i(){var e,t={},r=!1,i=!1,a=[];function o(e){n.supported()?window.parent.postMessage(e,"*"):window.parent.postMessage(JSON.stringify(e),"*")}function s(e,t){var r;r=1===arguments.length&&"object"==typeof e&&"string"==typeof e.type?e:{type:e,content:t},i?o(r):a.push(r)}function c(){o({type:"hello"})}function l(){t={}}function u(e){if(e.source===window.parent){var r=e.data;if("string"==typeof r&&(r=JSON.parse(r)),!i&&"hello"===r.type)for(i=!0,p();a.length>0;)s(a.shift());i&&t[r.type]&&t[r.type](r.content)}}function p(){window.clearInterval(e),e=null}return{initialize:function(){r||(r=!0,window.parent!==window&&(e&&p(),e=window.setInterval(c,200),window.setTimeout(p,6e4),c(),window.addEventListener("message",u,!1)))},getListenerNames:function(){return Object.keys(t)},addListener:function(e,r){t[e]=r},removeListener:function(e){delete t[e]},removeAllListeners:l,disconnect:function(){i=!1,p(),l(),window.removeEventListener("message",u)},post:s}}var a=null;e.exports=function(){return a||(a=new i),a}},"./node_modules/iframe-phone/lib/iframe-phone-rpc-endpoint.js":function(e,t,r){var n=r("./node_modules/iframe-phone/lib/parent-endpoint.js"),i=r("./node_modules/iframe-phone/lib/iframe-endpoint.js");e.exports=function(e,t,r,a,o){var s=Object.create({});e&&"object"==typeof e&&(t=e.namespace,r=e.targetWindow,a=e.targetOrigin,o=e.phone,e=e.handler),o||(r===window.parent?(o=i()).initialize():o=new n(r,a)),o.addListener(t,function(e){var r;"call"===e.messageType&&"function"==typeof this.handler?this.handler.call(void 0,e.value,(function(r){o.post(t,{messageType:"returnValue",uuid:e.uuid,value:r})})):"returnValue"===e.messageType&&(r=s[e.uuid])&&(window.clearTimeout(r.timeout),r.callback&&r.callback.call(void 0,e.value),s[e.uuid]=null)}.bind(this)),this.handler=e,this.call=function(e,r){var n=function(){for(var e=[],t=0;t<10;t++)e.push("abcdefghijklmnopqrstuvwxyz0123456789"[Math.floor(36*Math.random())]);return e.join("")}();s[n]={callback:r,timeout:window.setTimeout((function(){r&&r(void 0,new Error("IframePhone timed out waiting for reply"))}),2e3)},o.post(t,{messageType:"call",uuid:n,value:e})}.bind(this),this.disconnect=function(){o.disconnect()}.bind(this)}},"./node_modules/iframe-phone/lib/parent-endpoint.js":function(e,t,r){var n=r("./node_modules/iframe-phone/lib/structured-clone.js");e.exports=function(e,t,r){var i,a=[],o=!1,s={};function c(e,r){var i;if(i=1===arguments.length&&"object"==typeof e&&"string"==typeof e.type?e:{type:e,content:r},o){var s=p();n.supported()?s.postMessage(i,t):s.postMessage(JSON.stringify(i),t)}else a.push(i)}function l(e,t){s[e]=t}function u(){s={}}function p(){if(i){var t=e.contentWindow;if(!t)throw"IFrame element needs to be added to DOM before communication can be started (.contentWindow is not available)";return t}return e}function d(e){var r;e.source!==p()||"*"!==t&&e.origin!==t||("string"==typeof(r=e.data)&&(r=JSON.parse(r)),s[r.type]?s[r.type](r.content):console.log("cant handle type: "+r.type))}try{i=e.constructor===HTMLIFrameElement}catch(e){i=!1}return i&&(t&&t.constructor!==Function||(r=t,t=e.src.match(/(.*?\/\/.*?)\//)[1])),"file://"===t&&(t="*"),l("hello",(function(){for(o=!0,c({type:"hello",origin:window.location.href.match(/(.*?\/\/.*?)\//)[1]}),r&&"function"==typeof r&&r();a.length>0;)c(a.shift())})),window.addEventListener("message",d,!1),{post:c,addListener:l,removeListener:function(e){delete s[e]},removeAllListeners:u,disconnect:function(){o=!1,u(),window.removeEventListener("message",d)},getTargetWindow:p,targetOrigin:t}}},"./node_modules/iframe-phone/lib/structured-clone.js":function(e,t){var r={structuredClones:0};!function(){var e=0;if(window.postMessage)try{window.postMessage(document.createElement("a"),"*")}catch(t){e=t.DATA_CLONE_ERR||"Cannot post cyclic structures."===t.message?1:0,r={structuredClones:e}}}(),t.supported=function(){return r&&r.structuredClones>0}},"./node_modules/iframe-phone/main.js":function(e,t,r){e.exports={ParentEndpoint:r("./node_modules/iframe-phone/lib/parent-endpoint.js"),getIFrameEndpoint:r("./node_modules/iframe-phone/lib/iframe-endpoint.js"),structuredClone:r("./node_modules/iframe-phone/lib/structured-clone.js"),IframePhoneRpcEndpoint:r("./node_modules/iframe-phone/lib/iframe-phone-rpc-endpoint.js")}},"./node_modules/process/browser.js":function(e,t){var r,n,i=e.exports={};function a(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function s(e){if(r===setTimeout)return setTimeout(e,0);if((r===a||!r)&&setTimeout)return r=setTimeout,setTimeout(e,0);try{return r(e,0)}catch(t){try{return r.call(null,e,0)}catch(t){return r.call(this,e,0)}}}!function(){try{r="function"==typeof setTimeout?setTimeout:a}catch(e){r=a}try{n="function"==typeof clearTimeout?clearTimeout:o}catch(e){n=o}}();var c,l=[],u=!1,p=-1;function d(){u&&c&&(u=!1,c.length?l=c.concat(l):p=-1,l.length&&h())}function h(){if(!u){var e=s(d);u=!0;for(var t=l.length;t;){for(c=l,l=[];++p<t;)c&&c[p].run();p=-1,t=l.length}c=null,u=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===o||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{return n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function m(e,t){this.fun=e,this.array=t}function f(){}i.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];l.push(new m(e,t)),1!==l.length||u||s(h)},m.prototype.run=function(){this.fun.apply(null,this.array)},i.title="browser",i.browser=!0,i.env={},i.argv=[],i.version="",i.versions={},i.on=f,i.addListener=f,i.once=f,i.off=f,i.removeListener=f,i.removeAllListeners=f,i.emit=f,i.prependListener=f,i.prependOnceListener=f,i.listeners=function(e){return[]},i.binding=function(e){throw new Error("process.binding is not supported")},i.cwd=function(){return"/"},i.chdir=function(e){throw new Error("process.chdir is not supported")},i.umask=function(){return 0}},"./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js":function(e,t,r){"use strict";r.r(t),function(e){var r=function(){if("undefined"!=typeof Map)return Map;function e(e,t){var r=-1;return e.some((function(e,n){return e[0]===t&&(r=n,!0)})),r}return function(){function t(){this.__entries__=[]}return Object.defineProperty(t.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),t.prototype.get=function(t){var r=e(this.__entries__,t),n=this.__entries__[r];return n&&n[1]},t.prototype.set=function(t,r){var n=e(this.__entries__,t);~n?this.__entries__[n][1]=r:this.__entries__.push([t,r])},t.prototype.delete=function(t){var r=this.__entries__,n=e(r,t);~n&&r.splice(n,1)},t.prototype.has=function(t){return!!~e(this.__entries__,t)},t.prototype.clear=function(){this.__entries__.splice(0)},t.prototype.forEach=function(e,t){void 0===t&&(t=null);for(var r=0,n=this.__entries__;r<n.length;r++){var i=n[r];e.call(t,i[1],i[0])}},t}()}(),n="undefined"!=typeof window&&"undefined"!=typeof document&&window.document===document,i=void 0!==e&&e.Math===Math?e:"undefined"!=typeof self&&self.Math===Math?self:"undefined"!=typeof window&&window.Math===Math?window:Function("return this")(),a="function"==typeof requestAnimationFrame?requestAnimationFrame.bind(i):function(e){return setTimeout((function(){return e(Date.now())}),1e3/60)},o=["top","right","bottom","left","width","height","size","weight"],s="undefined"!=typeof MutationObserver,c=function(){function e(){this.connected_=!1,this.mutationEventsAdded_=!1,this.mutationsObserver_=null,this.observers_=[],this.onTransitionEnd_=this.onTransitionEnd_.bind(this),this.refresh=function(e,t){var r=!1,n=!1,i=0;function o(){r&&(r=!1,e()),n&&c()}function s(){a(o)}function c(){var e=Date.now();if(r){if(e-i<2)return;n=!0}else r=!0,n=!1,setTimeout(s,t);i=e}return c}(this.refresh.bind(this),20)}return e.prototype.addObserver=function(e){~this.observers_.indexOf(e)||this.observers_.push(e),this.connected_||this.connect_()},e.prototype.removeObserver=function(e){var t=this.observers_,r=t.indexOf(e);~r&&t.splice(r,1),!t.length&&this.connected_&&this.disconnect_()},e.prototype.refresh=function(){this.updateObservers_()&&this.refresh()},e.prototype.updateObservers_=function(){var e=this.observers_.filter((function(e){return e.gatherActive(),e.hasActive()}));return e.forEach((function(e){return e.broadcastActive()})),e.length>0},e.prototype.connect_=function(){n&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),s?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},e.prototype.disconnect_=function(){n&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},e.prototype.onTransitionEnd_=function(e){var t=e.propertyName,r=void 0===t?"":t;o.some((function(e){return!!~r.indexOf(e)}))&&this.refresh()},e.getInstance=function(){return this.instance_||(this.instance_=new e),this.instance_},e.instance_=null,e}(),l=function(e,t){for(var r=0,n=Object.keys(t);r<n.length;r++){var i=n[r];Object.defineProperty(e,i,{value:t[i],enumerable:!1,writable:!1,configurable:!0})}return e},u=function(e){return e&&e.ownerDocument&&e.ownerDocument.defaultView||i},p=E(0,0,0,0);function d(e){return parseFloat(e)||0}function h(e){for(var t=[],r=1;r<arguments.length;r++)t[r-1]=arguments[r];return t.reduce((function(t,r){return t+d(e["border-"+r+"-width"])}),0)}var m="undefined"!=typeof SVGGraphicsElement?function(e){return e instanceof u(e).SVGGraphicsElement}:function(e){return e instanceof u(e).SVGElement&&"function"==typeof e.getBBox};function f(e){return n?m(e)?function(e){var t=e.getBBox();return E(0,0,t.width,t.height)}(e):function(e){var t=e.clientWidth,r=e.clientHeight;if(!t&&!r)return p;var n=u(e).getComputedStyle(e),i=function(e){for(var t={},r=0,n=["top","right","bottom","left"];r<n.length;r++){var i=n[r],a=e["padding-"+i];t[i]=d(a)}return t}(n),a=i.left+i.right,o=i.top+i.bottom,s=d(n.width),c=d(n.height);if("border-box"===n.boxSizing&&(Math.round(s+a)!==t&&(s-=h(n,"left","right")+a),Math.round(c+o)!==r&&(c-=h(n,"top","bottom")+o)),!function(e){return e===u(e).document.documentElement}(e)){var l=Math.round(s+a)-t,m=Math.round(c+o)-r;1!==Math.abs(l)&&(s-=l),1!==Math.abs(m)&&(c-=m)}return E(i.left,i.top,s,c)}(e):p}function E(e,t,r,n){return{x:e,y:t,width:r,height:n}}var v=function(){function e(e){this.broadcastWidth=0,this.broadcastHeight=0,this.contentRect_=E(0,0,0,0),this.target=e}return e.prototype.isActive=function(){var e=f(this.target);return this.contentRect_=e,e.width!==this.broadcastWidth||e.height!==this.broadcastHeight},e.prototype.broadcastRect=function(){var e=this.contentRect_;return this.broadcastWidth=e.width,this.broadcastHeight=e.height,e},e}(),_=function(e,t){var r,n,i,a,o,s,c,u=(n=(r=t).x,i=r.y,a=r.width,o=r.height,s="undefined"!=typeof DOMRectReadOnly?DOMRectReadOnly:Object,c=Object.create(s.prototype),l(c,{x:n,y:i,width:a,height:o,top:i,right:n+a,bottom:o+i,left:n}),c);l(this,{target:e,contentRect:u})},g=function(){function e(e,t,n){if(this.activeObservations_=[],this.observations_=new r,"function"!=typeof e)throw new TypeError("The callback provided as parameter 1 is not a function.");this.callback_=e,this.controller_=t,this.callbackCtx_=n}return e.prototype.observe=function(e){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(e instanceof u(e).Element))throw new TypeError('parameter 1 is not of type "Element".');var t=this.observations_;t.has(e)||(t.set(e,new v(e)),this.controller_.addObserver(this),this.controller_.refresh())}},e.prototype.unobserve=function(e){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(e instanceof u(e).Element))throw new TypeError('parameter 1 is not of type "Element".');var t=this.observations_;t.has(e)&&(t.delete(e),t.size||this.controller_.removeObserver(this))}},e.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},e.prototype.gatherActive=function(){var e=this;this.clearActive(),this.observations_.forEach((function(t){t.isActive()&&e.activeObservations_.push(t)}))},e.prototype.broadcastActive=function(){if(this.hasActive()){var e=this.callbackCtx_,t=this.activeObservations_.map((function(e){return new _(e.target,e.broadcastRect())}));this.callback_.call(e,t,e),this.clearActive()}},e.prototype.clearActive=function(){this.activeObservations_.splice(0)},e.prototype.hasActive=function(){return this.activeObservations_.length>0},e}(),y="undefined"!=typeof WeakMap?new WeakMap:new r,A=function e(t){if(!(this instanceof e))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var r=c.getInstance(),n=new g(t,r,this);y.set(this,n)};["observe","unobserve","disconnect"].forEach((function(e){A.prototype[e]=function(){var t;return(t=y.get(this))[e].apply(t,arguments)}}));var O=void 0!==i.ResizeObserver?i.ResizeObserver:A;t.default=O}.call(this,r("./node_modules/webpack/buildin/global.js"))},"./node_modules/setimmediate/setImmediate.js":function(e,t,r){(function(e,t){!function(e,r){"use strict";if(!e.setImmediate){var n,i,a,o,s,c=1,l={},u=!1,p=e.document,d=Object.getPrototypeOf&&Object.getPrototypeOf(e);d=d&&d.setTimeout?d:e,"[object process]"==={}.toString.call(e.process)?n=function(e){t.nextTick((function(){m(e)}))}:function(){if(e.postMessage&&!e.importScripts){var t=!0,r=e.onmessage;return e.onmessage=function(){t=!1},e.postMessage("","*"),e.onmessage=r,t}}()?(o="setImmediate$"+Math.random()+"$",s=function(t){t.source===e&&"string"==typeof t.data&&0===t.data.indexOf(o)&&m(+t.data.slice(o.length))},e.addEventListener?e.addEventListener("message",s,!1):e.attachEvent("onmessage",s),n=function(t){e.postMessage(o+t,"*")}):e.MessageChannel?((a=new MessageChannel).port1.onmessage=function(e){m(e.data)},n=function(e){a.port2.postMessage(e)}):p&&"onreadystatechange"in p.createElement("script")?(i=p.documentElement,n=function(e){var t=p.createElement("script");t.onreadystatechange=function(){m(e),t.onreadystatechange=null,i.removeChild(t),t=null},i.appendChild(t)}):n=function(e){setTimeout(m,0,e)},d.setImmediate=function(e){"function"!=typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),r=0;r<t.length;r++)t[r]=arguments[r+1];var i={callback:e,args:t};return l[c]=i,n(c),c++},d.clearImmediate=h}function h(e){delete l[e]}function m(e){if(u)setTimeout(m,0,e);else{var t=l[e];if(t){u=!0;try{!function(e){var t=e.callback,r=e.args;switch(r.length){case 0:t();break;case 1:t(r[0]);break;case 2:t(r[0],r[1]);break;case 3:t(r[0],r[1],r[2]);break;default:t.apply(undefined,r)}}(t)}finally{h(e),u=!1}}}}}("undefined"==typeof self?void 0===e?this:e:self)}).call(this,r("./node_modules/webpack/buildin/global.js"),r("./node_modules/process/browser.js"))},"./node_modules/timers-browserify/main.js":function(e,t,r){(function(e){var n=void 0!==e&&e||"undefined"!=typeof self&&self||window,i=Function.prototype.apply;function a(e,t){this._id=e,this._clearFn=t}t.setTimeout=function(){return new a(i.call(setTimeout,n,arguments),clearTimeout)},t.setInterval=function(){return new a(i.call(setInterval,n,arguments),clearInterval)},t.clearTimeout=t.clearInterval=function(e){e&&e.close()},a.prototype.unref=a.prototype.ref=function(){},a.prototype.close=function(){this._clearFn.call(n,this._id)},t.enroll=function(e,t){clearTimeout(e._idleTimeoutId),e._idleTimeout=t},t.unenroll=function(e){clearTimeout(e._idleTimeoutId),e._idleTimeout=-1},t._unrefActive=t.active=function(e){clearTimeout(e._idleTimeoutId);var t=e._idleTimeout;t>=0&&(e._idleTimeoutId=setTimeout((function(){e._onTimeout&&e._onTimeout()}),t))},r("./node_modules/setimmediate/setImmediate.js"),t.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==e&&e.setImmediate||this&&this.setImmediate,t.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==e&&e.clearImmediate||this&&this.clearImmediate}).call(this,r("./node_modules/webpack/buildin/global.js"))},"./node_modules/uuid/dist/esm-browser/index.js":function(e,t,r){"use strict";r.r(t);var n=r("./node_modules/uuid/dist/esm-browser/v1.js");r.d(t,"v1",(function(){return n.default}));var i=r("./node_modules/uuid/dist/esm-browser/v3.js");r.d(t,"v3",(function(){return i.default}));var a=r("./node_modules/uuid/dist/esm-browser/v4.js");r.d(t,"v4",(function(){return a.default}));var o=r("./node_modules/uuid/dist/esm-browser/v5.js");r.d(t,"v5",(function(){return o.default}));var s=r("./node_modules/uuid/dist/esm-browser/nil.js");r.d(t,"NIL",(function(){return s.default}));var c=r("./node_modules/uuid/dist/esm-browser/version.js");r.d(t,"version",(function(){return c.default}));var l=r("./node_modules/uuid/dist/esm-browser/validate.js");r.d(t,"validate",(function(){return l.default}));var u=r("./node_modules/uuid/dist/esm-browser/stringify.js");r.d(t,"stringify",(function(){return u.default}));var p=r("./node_modules/uuid/dist/esm-browser/parse.js");r.d(t,"parse",(function(){return p.default}))},"./node_modules/uuid/dist/esm-browser/md5.js":function(e,t,r){"use strict";function n(e){return 14+(e+64>>>9<<4)+1}function i(e,t){var r=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(r>>16)<<16|65535&r}function a(e,t,r,n,a,o){return i((s=i(i(t,e),i(n,o)))<<(c=a)|s>>>32-c,r);var s,c}function o(e,t,r,n,i,o,s){return a(t&r|~t&n,e,t,i,o,s)}function s(e,t,r,n,i,o,s){return a(t&n|r&~n,e,t,i,o,s)}function c(e,t,r,n,i,o,s){return a(t^r^n,e,t,i,o,s)}function l(e,t,r,n,i,o,s){return a(r^(t|~n),e,t,i,o,s)}r.r(t),t.default=function(e){if("string"==typeof e){var t=unescape(encodeURIComponent(e));e=new Uint8Array(t.length);for(var r=0;r<t.length;++r)e[r]=t.charCodeAt(r)}return function(e){for(var t=[],r=32*e.length,n="0123456789abcdef",i=0;i<r;i+=8){var a=e[i>>5]>>>i%32&255,o=parseInt(n.charAt(a>>>4&15)+n.charAt(15&a),16);t.push(o)}return t}(function(e,t){e[t>>5]|=128<<t%32,e[n(t)-1]=t;for(var r=1732584193,a=-271733879,u=-1732584194,p=271733878,d=0;d<e.length;d+=16){var h=r,m=a,f=u,E=p;r=o(r,a,u,p,e[d],7,-680876936),p=o(p,r,a,u,e[d+1],12,-389564586),u=o(u,p,r,a,e[d+2],17,606105819),a=o(a,u,p,r,e[d+3],22,-1044525330),r=o(r,a,u,p,e[d+4],7,-176418897),p=o(p,r,a,u,e[d+5],12,1200080426),u=o(u,p,r,a,e[d+6],17,-1473231341),a=o(a,u,p,r,e[d+7],22,-45705983),r=o(r,a,u,p,e[d+8],7,1770035416),p=o(p,r,a,u,e[d+9],12,-1958414417),u=o(u,p,r,a,e[d+10],17,-42063),a=o(a,u,p,r,e[d+11],22,-1990404162),r=o(r,a,u,p,e[d+12],7,1804603682),p=o(p,r,a,u,e[d+13],12,-40341101),u=o(u,p,r,a,e[d+14],17,-1502002290),r=s(r,a=o(a,u,p,r,e[d+15],22,1236535329),u,p,e[d+1],5,-165796510),p=s(p,r,a,u,e[d+6],9,-1069501632),u=s(u,p,r,a,e[d+11],14,643717713),a=s(a,u,p,r,e[d],20,-373897302),r=s(r,a,u,p,e[d+5],5,-701558691),p=s(p,r,a,u,e[d+10],9,38016083),u=s(u,p,r,a,e[d+15],14,-660478335),a=s(a,u,p,r,e[d+4],20,-405537848),r=s(r,a,u,p,e[d+9],5,568446438),p=s(p,r,a,u,e[d+14],9,-1019803690),u=s(u,p,r,a,e[d+3],14,-187363961),a=s(a,u,p,r,e[d+8],20,1163531501),r=s(r,a,u,p,e[d+13],5,-1444681467),p=s(p,r,a,u,e[d+2],9,-51403784),u=s(u,p,r,a,e[d+7],14,1735328473),r=c(r,a=s(a,u,p,r,e[d+12],20,-1926607734),u,p,e[d+5],4,-378558),p=c(p,r,a,u,e[d+8],11,-2022574463),u=c(u,p,r,a,e[d+11],16,1839030562),a=c(a,u,p,r,e[d+14],23,-35309556),r=c(r,a,u,p,e[d+1],4,-1530992060),p=c(p,r,a,u,e[d+4],11,1272893353),u=c(u,p,r,a,e[d+7],16,-155497632),a=c(a,u,p,r,e[d+10],23,-1094730640),r=c(r,a,u,p,e[d+13],4,681279174),p=c(p,r,a,u,e[d],11,-358537222),u=c(u,p,r,a,e[d+3],16,-722521979),a=c(a,u,p,r,e[d+6],23,76029189),r=c(r,a,u,p,e[d+9],4,-640364487),p=c(p,r,a,u,e[d+12],11,-421815835),u=c(u,p,r,a,e[d+15],16,530742520),r=l(r,a=c(a,u,p,r,e[d+2],23,-995338651),u,p,e[d],6,-198630844),p=l(p,r,a,u,e[d+7],10,1126891415),u=l(u,p,r,a,e[d+14],15,-1416354905),a=l(a,u,p,r,e[d+5],21,-57434055),r=l(r,a,u,p,e[d+12],6,1700485571),p=l(p,r,a,u,e[d+3],10,-1894986606),u=l(u,p,r,a,e[d+10],15,-1051523),a=l(a,u,p,r,e[d+1],21,-2054922799),r=l(r,a,u,p,e[d+8],6,1873313359),p=l(p,r,a,u,e[d+15],10,-30611744),u=l(u,p,r,a,e[d+6],15,-1560198380),a=l(a,u,p,r,e[d+13],21,1309151649),r=l(r,a,u,p,e[d+4],6,-145523070),p=l(p,r,a,u,e[d+11],10,-1120210379),u=l(u,p,r,a,e[d+2],15,718787259),a=l(a,u,p,r,e[d+9],21,-343485551),r=i(r,h),a=i(a,m),u=i(u,f),p=i(p,E)}return[r,a,u,p]}(function(e){if(0===e.length)return[];for(var t=8*e.length,r=new Uint32Array(n(t)),i=0;i<t;i+=8)r[i>>5]|=(255&e[i/8])<<i%32;return r}(e),8*e.length))}},"./node_modules/uuid/dist/esm-browser/nil.js":function(e,t,r){"use strict";r.r(t),t.default="00000000-0000-0000-0000-000000000000"},"./node_modules/uuid/dist/esm-browser/parse.js":function(e,t,r){"use strict";r.r(t);var n=r("./node_modules/uuid/dist/esm-browser/validate.js");t.default=function(e){if(!Object(n.default)(e))throw TypeError("Invalid UUID");var t,r=new Uint8Array(16);return r[0]=(t=parseInt(e.slice(0,8),16))>>>24,r[1]=t>>>16&255,r[2]=t>>>8&255,r[3]=255&t,r[4]=(t=parseInt(e.slice(9,13),16))>>>8,r[5]=255&t,r[6]=(t=parseInt(e.slice(14,18),16))>>>8,r[7]=255&t,r[8]=(t=parseInt(e.slice(19,23),16))>>>8,r[9]=255&t,r[10]=(t=parseInt(e.slice(24,36),16))/1099511627776&255,r[11]=t/4294967296&255,r[12]=t>>>24&255,r[13]=t>>>16&255,r[14]=t>>>8&255,r[15]=255&t,r}},"./node_modules/uuid/dist/esm-browser/regex.js":function(e,t,r){"use strict";r.r(t),t.default=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i},"./node_modules/uuid/dist/esm-browser/rng.js":function(e,t,r){"use strict";var n;r.r(t),r.d(t,"default",(function(){return a}));var i=new Uint8Array(16);function a(){if(!n&&!(n="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto)))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return n(i)}},"./node_modules/uuid/dist/esm-browser/sha1.js":function(e,t,r){"use strict";function n(e,t,r,n){switch(e){case 0:return t&r^~t&n;case 1:case 3:return t^r^n;case 2:return t&r^t&n^r&n}}function i(e,t){return e<<t|e>>>32-t}r.r(t),t.default=function(e){var t=[1518500249,1859775393,2400959708,3395469782],r=[1732584193,4023233417,2562383102,271733878,3285377520];if("string"==typeof e){var a=unescape(encodeURIComponent(e));e=[];for(var o=0;o<a.length;++o)e.push(a.charCodeAt(o))}else Array.isArray(e)||(e=Array.prototype.slice.call(e));e.push(128);for(var s=e.length/4+2,c=Math.ceil(s/16),l=new Array(c),u=0;u<c;++u){for(var p=new Uint32Array(16),d=0;d<16;++d)p[d]=e[64*u+4*d]<<24|e[64*u+4*d+1]<<16|e[64*u+4*d+2]<<8|e[64*u+4*d+3];l[u]=p}l[c-1][14]=8*(e.length-1)/Math.pow(2,32),l[c-1][14]=Math.floor(l[c-1][14]),l[c-1][15]=8*(e.length-1)&4294967295;for(var h=0;h<c;++h){for(var m=new Uint32Array(80),f=0;f<16;++f)m[f]=l[h][f];for(var E=16;E<80;++E)m[E]=i(m[E-3]^m[E-8]^m[E-14]^m[E-16],1);for(var v=r[0],_=r[1],g=r[2],y=r[3],A=r[4],O=0;O<80;++O){var S=Math.floor(O/20),R=i(v,5)+n(S,_,g,y)+A+t[S]+m[O]>>>0;A=y,y=g,g=i(_,30)>>>0,_=v,v=R}r[0]=r[0]+v>>>0,r[1]=r[1]+_>>>0,r[2]=r[2]+g>>>0,r[3]=r[3]+y>>>0,r[4]=r[4]+A>>>0}return[r[0]>>24&255,r[0]>>16&255,r[0]>>8&255,255&r[0],r[1]>>24&255,r[1]>>16&255,r[1]>>8&255,255&r[1],r[2]>>24&255,r[2]>>16&255,r[2]>>8&255,255&r[2],r[3]>>24&255,r[3]>>16&255,r[3]>>8&255,255&r[3],r[4]>>24&255,r[4]>>16&255,r[4]>>8&255,255&r[4]]}},"./node_modules/uuid/dist/esm-browser/stringify.js":function(e,t,r){"use strict";r.r(t);for(var n=r("./node_modules/uuid/dist/esm-browser/validate.js"),i=[],a=0;a<256;++a)i.push((a+256).toString(16).substr(1));t.default=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=(i[e[t+0]]+i[e[t+1]]+i[e[t+2]]+i[e[t+3]]+"-"+i[e[t+4]]+i[e[t+5]]+"-"+i[e[t+6]]+i[e[t+7]]+"-"+i[e[t+8]]+i[e[t+9]]+"-"+i[e[t+10]]+i[e[t+11]]+i[e[t+12]]+i[e[t+13]]+i[e[t+14]]+i[e[t+15]]).toLowerCase();if(!Object(n.default)(r))throw TypeError("Stringified UUID is invalid");return r}},"./node_modules/uuid/dist/esm-browser/v1.js":function(e,t,r){"use strict";r.r(t);var n,i,a=r("./node_modules/uuid/dist/esm-browser/rng.js"),o=r("./node_modules/uuid/dist/esm-browser/stringify.js"),s=0,c=0;t.default=function(e,t,r){var l=t&&r||0,u=t||new Array(16),p=(e=e||{}).node||n,d=void 0!==e.clockseq?e.clockseq:i;if(null==p||null==d){var h=e.random||(e.rng||a.default)();null==p&&(p=n=[1|h[0],h[1],h[2],h[3],h[4],h[5]]),null==d&&(d=i=16383&(h[6]<<8|h[7]))}var m=void 0!==e.msecs?e.msecs:Date.now(),f=void 0!==e.nsecs?e.nsecs:c+1,E=m-s+(f-c)/1e4;if(E<0&&void 0===e.clockseq&&(d=d+1&16383),(E<0||m>s)&&void 0===e.nsecs&&(f=0),f>=1e4)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");s=m,c=f,i=d;var v=(1e4*(268435455&(m+=122192928e5))+f)%4294967296;u[l++]=v>>>24&255,u[l++]=v>>>16&255,u[l++]=v>>>8&255,u[l++]=255&v;var _=m/4294967296*1e4&268435455;u[l++]=_>>>8&255,u[l++]=255&_,u[l++]=_>>>24&15|16,u[l++]=_>>>16&255,u[l++]=d>>>8|128,u[l++]=255&d;for(var g=0;g<6;++g)u[l+g]=p[g];return t||Object(o.default)(u)}},"./node_modules/uuid/dist/esm-browser/v3.js":function(e,t,r){"use strict";r.r(t);var n=r("./node_modules/uuid/dist/esm-browser/v35.js"),i=r("./node_modules/uuid/dist/esm-browser/md5.js"),a=Object(n.default)("v3",48,i.default);t.default=a},"./node_modules/uuid/dist/esm-browser/v35.js":function(e,t,r){"use strict";r.r(t),r.d(t,"DNS",(function(){return a})),r.d(t,"URL",(function(){return o}));var n=r("./node_modules/uuid/dist/esm-browser/stringify.js"),i=r("./node_modules/uuid/dist/esm-browser/parse.js"),a="6ba7b810-9dad-11d1-80b4-00c04fd430c8",o="6ba7b811-9dad-11d1-80b4-00c04fd430c8";t.default=function(e,t,r){function s(e,a,o,s){if("string"==typeof e&&(e=function(e){e=unescape(encodeURIComponent(e));for(var t=[],r=0;r<e.length;++r)t.push(e.charCodeAt(r));return t}(e)),"string"==typeof a&&(a=Object(i.default)(a)),16!==a.length)throw TypeError("Namespace must be array-like (16 iterable integer values, 0-255)");var c=new Uint8Array(16+e.length);if(c.set(a),c.set(e,a.length),(c=r(c))[6]=15&c[6]|t,c[8]=63&c[8]|128,o){s=s||0;for(var l=0;l<16;++l)o[s+l]=c[l];return o}return Object(n.default)(c)}try{s.name=e}catch(e){}return s.DNS=a,s.URL=o,s}},"./node_modules/uuid/dist/esm-browser/v4.js":function(e,t,r){"use strict";r.r(t);var n=r("./node_modules/uuid/dist/esm-browser/rng.js"),i=r("./node_modules/uuid/dist/esm-browser/stringify.js");t.default=function(e,t,r){var a=(e=e||{}).random||(e.rng||n.default)();if(a[6]=15&a[6]|64,a[8]=63&a[8]|128,t){r=r||0;for(var o=0;o<16;++o)t[r+o]=a[o];return t}return Object(i.default)(a)}},"./node_modules/uuid/dist/esm-browser/v5.js":function(e,t,r){"use strict";r.r(t);var n=r("./node_modules/uuid/dist/esm-browser/v35.js"),i=r("./node_modules/uuid/dist/esm-browser/sha1.js"),a=Object(n.default)("v5",80,i.default);t.default=a},"./node_modules/uuid/dist/esm-browser/validate.js":function(e,t,r){"use strict";r.r(t);var n=r("./node_modules/uuid/dist/esm-browser/regex.js");t.default=function(e){return"string"==typeof e&&n.default.test(e)}},"./node_modules/uuid/dist/esm-browser/version.js":function(e,t,r){"use strict";r.r(t);var n=r("./node_modules/uuid/dist/esm-browser/validate.js");t.default=function(e){if(!Object(n.default)(e))throw TypeError("Invalid UUID");return parseInt(e.substr(14,1),16)}},"./node_modules/webpack/buildin/global.js":function(e,t){var r;r=function(){return this}();try{r=r||new Function("return this")()}catch(e){"object"==typeof window&&(r=window)}e.exports=r},"./src/interactive-api-client/api.ts":function(e,t,r){"use strict";var n=this&&this.__assign||function(){return n=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var i in t=arguments[r])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},n.apply(this,arguments)},i=this&&this.__awaiter||function(e,t,r,n){return new(r||(r=Promise))((function(i,a){function o(e){try{c(n.next(e))}catch(e){a(e)}}function s(e){try{c(n.throw(e))}catch(e){a(e)}}function c(e){e.done?i(e.value):function(e){return e instanceof r?e:new r((function(t){t(e)}))}(e.value).then(o,s)}c((n=n.apply(e,t||[])).next())}))},a=this&&this.__generator||function(e,t){var r,n,i,a,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return a={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(a){return function(s){return function(a){if(r)throw new TypeError("Generator is already executing.");for(;o;)try{if(r=1,n&&(i=2&a[0]?n.return:a[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,a[1])).done)return i;switch(n=0,i&&(a=[2&a[0],i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,n=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(!((i=(i=o.trys).length>0&&i[i.length-1])||6!==a[0]&&2!==a[0])){o=0;continue}if(3===a[0]&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(6===a[0]&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(e){a=[6,e],n=0}finally{r=i=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,s])}}},o=this&&this.__rest||function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(n=Object.getOwnPropertySymbols(e);i<n.length;i++)t.indexOf(n[i])<0&&Object.prototype.propertyIsEnumerable.call(e,n[i])&&(r[n[i]]=e[n[i]])}return r};Object.defineProperty(t,"__esModule",{value:!0}),t.sendCustomMessage=t.setOnUnload=t.sendReportItemAnswer=t.getAttachmentUrl=t.readAttachment=t.writeAttachment=t.getLibraryInteractiveList=t.getInteractiveSnapshot=t.setLinkedInteractives=t.getInteractiveList=t.closeModal=t.showModal=t.removeLinkedInteractiveStateListener=t.addLinkedInteractiveStateListener=t.removeGlobalInteractiveStateListener=t.addGlobalInteractiveStateListener=t.removeAuthoredStateListener=t.addAuthoredStateListener=t.removeInteractiveStateListener=t.addInteractiveStateListener=t.log=t.getFirebaseJwt=t.getAuthInfo=t.setNavigation=t.setHint=t.postDecoratedContentEvent=t.setHeight=t.setSupportedFeatures=t.notifyReportItemClientReady=t.removeGetReportItemAnswerListener=t.addGetReportItemAnswerListener=t.removeDecorateContentListener=t.addDecorateContentListener=t.removeCustomMessageListener=t.addCustomMessageListener=t.setGlobalInteractiveState=t.getGlobalInteractiveState=t.setAuthoredState=t.getAuthoredState=t.flushStateUpdates=t.setInteractiveState=t.setInteractiveStateTimeout=t.getInteractiveState=t.getMode=t.getInitInteractiveMessage=void 0;var s,c=r("./src/interactive-api-client/client.ts"),l=r("./node_modules/uuid/dist/esm-browser/index.js");t.getInitInteractiveMessage=function(){var e=(0,c.getClient)();return new Promise((function(t){e.managedState.initMessage?t(e.managedState.initMessage):e.managedState.once("initInteractive",(function(){return t(e.managedState.initMessage)}))}))},t.getMode=function(){return(0,t.getInitInteractiveMessage)().then((function(e){return null==e?void 0:e.mode}))},t.getInteractiveState=function(){return(0,c.getClient)().managedState.interactiveState};var u=null;t.setInteractiveStateTimeout=2e3,t.setInteractiveState=function(e){var r=(0,c.getClient)();r.managedState.interactiveState=e,window.clearTimeout(s),u=function(){r.post("interactiveState",e),r.managedState.interactiveStateDirty=!1,u=null},s=window.setTimeout((function(){null==u||u()}),t.setInteractiveStateTimeout)},t.flushStateUpdates=function(){null==u||u(),window.clearTimeout(s)},t.getAuthoredState=function(){return(0,c.getClient)().managedState.authoredState},t.setAuthoredState=function(e){var t=(0,c.getClient)();t.managedState.authoredState=e,t.post("authoredState",e)},t.getGlobalInteractiveState=function(){return(0,c.getClient)().managedState.globalInteractiveState},t.setGlobalInteractiveState=function(e){var t=(0,c.getClient)();t.managedState.globalInteractiveState=e,t.post("interactiveStateGlobal",e)},t.addCustomMessageListener=function(e,t){var r=(0,c.getClient)();t&&(r.customMessagesHandled=t),r.addListener("customMessage",e)},t.removeCustomMessageListener=function(){return(0,c.getClient)().removeListener("customMessage")},t.addDecorateContentListener=function(e){(0,c.getClient)().addListener("decorateContent",(function(r){e({words:r.words,replace:r.replace,wordClass:r.wordClass,eventListeners:r.listenerTypes.map((function(e){return{type:e.type,listener:function(r){var n=r.srcElement;if(n){var i=(n.textContent||"").toLowerCase();(0,t.postDecoratedContentEvent)({type:e.type,text:i,bounds:n.getBoundingClientRect()})}}}}))})}))},t.removeDecorateContentListener=function(){(0,c.getClient)().removeListener("decorateContent")},t.addGetReportItemAnswerListener=function(e){(0,c.getClient)().addListener("getReportItemAnswer",e)},t.removeGetReportItemAnswerListener=function(){(0,c.getClient)().removeListener("getReportItemAnswer")},t.notifyReportItemClientReady=function(e){(0,c.getClient)().post("reportItemClientReady",e)},t.setSupportedFeatures=function(e){var t={apiVersion:1,features:e};(0,c.getClient)().setSupportedFeatures(t)},t.setHeight=function(e){(0,c.getClient)().post("height",e)},t.postDecoratedContentEvent=function(e){(0,c.getClient)().post("decoratedContentEvent",e)},t.setHint=function(e){var t={text:e};(0,c.getClient)().post("hint",t)},t.setNavigation=function(e){(0,c.getClient)().post("navigation",e)},t.getAuthInfo=function(){return new Promise((function(e,t){var r=(0,c.getClient)(),n=r.getNextRequestId(),i={requestId:n};r.addListener("authInfo",(function(t){e(t)}),n),r.post("getAuthInfo",i)}))},t.getFirebaseJwt=function(e){return new Promise((function(r,n){(0,t.getInitInteractiveMessage)().then((function(t){var i,a;if("1.0.0"===(null===(a=null===(i=null==t?void 0:t.hostFeatures)||void 0===i?void 0:i.getFirebaseJwt)||void 0===a?void 0:a.version)){var o=(0,c.getClient)(),s=o.getNextRequestId(),l={requestId:s,firebase_app:e};o.addListener("firebaseJWT",(function(e){if("ERROR"===e.response_type)n(e.message||"Error getting Firebase JWT");else if(e.token)try{var t=atob(e.token.split(".")[1]);r({token:e.token,claims:JSON.parse(t)})}catch(e){n("Unable to parse JWT Token")}else n("Empty token")}),s),o.post("getFirebaseJWT",l)}else n("getFirebaseJwt not supported by the host environment")}))}))},t.log=function(e,t){(0,c.getClient)().post("log",{action:e,data:t})},t.addInteractiveStateListener=function(e){(0,c.getClient)().managedState.on("interactiveStateUpdated",e)},t.removeInteractiveStateListener=function(e){(0,c.getClient)().managedState.off("interactiveStateUpdated",e)},t.addAuthoredStateListener=function(e){(0,c.getClient)().managedState.on("authoredStateUpdated",e)},t.removeAuthoredStateListener=function(e){(0,c.getClient)().managedState.off("authoredStateUpdated",e)},t.addGlobalInteractiveStateListener=function(e){(0,c.getClient)().managedState.on("globalInteractiveStateUpdated",e)},t.removeGlobalInteractiveStateListener=function(e){(0,c.getClient)().managedState.off("globalInteractiveStateUpdated",e)};var p=new Map;t.addLinkedInteractiveStateListener=function(e,t){var r=(0,c.getClient)(),i=(0,l.v4)(),a=function(t){t.listenerId===i&&e(t.interactiveState)};r.addListener("linkedInteractiveState",a);var o=n(n({},t),{listenerId:i});r.post("addLinkedInteractiveStateListener",o),p.set(e,{listenerId:o.listenerId,internalListener:a})},t.removeLinkedInteractiveStateListener=function(e){var t=(0,c.getClient)();if(p.has(e)){var r=p.get(e),n=r.internalListener,i=r.listenerId;t.removeListener("linkedInteractiveState",void 0,n);var a={listenerId:i};t.post("removeLinkedInteractiveStateListener",a),p.delete(e)}},t.showModal=function(e){(0,t.flushStateUpdates)(),(0,c.getClient)().post("showModal",e)},t.closeModal=function(e){(0,t.flushStateUpdates)(),(0,c.getClient)().post("closeModal",e)},t.getInteractiveList=function(e){return new Promise((function(r,i){return(0,t.getMode)().then((function(t){if("authoring"===t){var a=(0,c.getClient)(),o=a.getNextRequestId(),s=n({requestId:o},e);a.addListener("interactiveList",r,o),a.post("getInteractiveList",s)}else i("getInteractiveList is only available in authoring mode")}))}))},t.setLinkedInteractives=function(e){(0,c.getClient)().post("setLinkedInteractives",e)},t.getInteractiveSnapshot=function(e){return new Promise((function(t,r){var i=(0,c.getClient)(),a=i.getNextRequestId(),o=n({requestId:a},e);i.addListener("interactiveSnapshot",(function(e){t(e)}),a),i.post("getInteractiveSnapshot",o)}))},t.getLibraryInteractiveList=function(e){!function(e){throw new Error("getLibraryInteractiveList is not yet implemented in the client!")}()},t.writeAttachment=function(e){return new Promise((function(t,r){var s=(0,c.getClient)(),l=e.content,u=e.options,p=void 0===u?{}:u,d=o(e,["content","options"]),h=e.contentType,m=void 0===h?"text/plain":h,f=n(n({},d),{operation:"write",requestId:s.getNextRequestId()});s.addListener("attachmentUrl",(function(e){return i(void 0,void 0,void 0,(function(){var i,o,s;return a(this,(function(a){switch(a.label){case 0:if(!e.url)return[3,5];(i=n({},p.headers))["Content-Type"]=m,p.headers=i,a.label=1;case 1:return a.trys.push([1,3,,4]),o=t,[4,fetch(e.url,n(n({},p),{method:"PUT",body:l}))];case 2:return o.apply(void 0,[a.sent()]),[3,4];case 3:return s=a.sent(),r(s),[3,4];case 4:return[3,6];case 5:r(new Error(e.error||"error writing attachment")),a.label=6;case 6:return[2]}}))}))}),f.requestId),s.post("getAttachmentUrl",f)}))},t.readAttachment=function(e){return new Promise((function(t,r){var o=(0,c.getClient)(),s=n(n({},e),{operation:"read",requestId:o.getNextRequestId()});o.addListener("attachmentUrl",(function(e){return i(void 0,void 0,void 0,(function(){var n,i;return a(this,(function(a){switch(a.label){case 0:if(!e.url)return[3,5];a.label=1;case 1:return a.trys.push([1,3,,4]),n=t,[4,fetch(e.url)];case 2:return n.apply(void 0,[a.sent()]),[3,4];case 3:return i=a.sent(),r(i),[3,4];case 4:return[3,6];case 5:r(new Error(e.error||"error reading attachment")),a.label=6;case 6:return[2]}}))}))}),s.requestId),o.post("getAttachmentUrl",s)}))},t.getAttachmentUrl=function(e){return new Promise((function(t,r){var o=(0,c.getClient)(),s=o.getNextRequestId(),l=n(n({},e),{operation:"read",requestId:s});o.addListener("attachmentUrl",(function(e){return i(void 0,void 0,void 0,(function(){return a(this,(function(n){return e.url?t(e.url):r(new Error(e.error||"error getting attachment url")),[2]}))}))}),l.requestId),o.post("getAttachmentUrl",l)}))},t.sendReportItemAnswer=function(e){(0,c.getClient)().post("reportItemAnswer",e)},t.setOnUnload=function(e){(0,c.getClient)().setOnUnload(e)},t.sendCustomMessage=function(e){(0,c.getClient)().post("customMessage",e)}},"./src/interactive-api-client/client.ts":function(e,t,r){"use strict";var n=this&&this.__assign||function(){return n=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var i in t=arguments[r])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},n.apply(this,arguments)},i=this&&this.__awaiter||function(e,t,r,n){return new(r||(r=Promise))((function(i,a){function o(e){try{c(n.next(e))}catch(e){a(e)}}function s(e){try{c(n.throw(e))}catch(e){a(e)}}function c(e){e.done?i(e.value):function(e){return e instanceof r?e:new r((function(t){t(e)}))}(e.value).then(o,s)}c((n=n.apply(e,t||[])).next())}))},a=this&&this.__generator||function(e,t){var r,n,i,a,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return a={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(a){return function(s){return function(a){if(r)throw new TypeError("Generator is already executing.");for(;o;)try{if(r=1,n&&(i=2&a[0]?n.return:a[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,a[1])).done)return i;switch(n=0,i&&(a=[2&a[0],i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,n=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(!((i=(i=o.trys).length>0&&i[i.length-1])||6!==a[0]&&2!==a[0])){o=0;continue}if(3===a[0]&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(6===a[0]&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(e){a=[6,e],n=0}finally{r=i=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,s])}}},o=this&&this.__rest||function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(n=Object.getOwnPropertySymbols(e);i<n.length;i++)t.indexOf(n[i])<0&&Object.prototype.propertyIsEnumerable.call(e,n[i])&&(r[n[i]]=e[n[i]])}return r};Object.defineProperty(t,"__esModule",{value:!0}),t.Client=t.getClient=void 0;var s,c=r("./node_modules/iframe-phone/main.js"),l=r("./src/interactive-api-client/in-frame.ts"),u=r("./src/interactive-api-client/managed-state.ts"),p=function(e){try{return"string"==typeof e?JSON.parse(e):e}catch(t){return e}},d=function(){return c.getIFrameEndpoint().getListenerNames().length>0};t.getClient=function(){return s&&d()||(s=new h),s};var h=function(){function e(){var e=this;if(this.phone=c.getIFrameEndpoint(),this.managedState=new u.ManagedState,this.listeners={},this.requestId=1,this.onUnload=void 0,this.setSupportedFeatures=function(t){var r=t;if(e.customMessagesHandled){var i=t.features,a=o(t,["features"]);i.customMessages={handles:e.customMessagesHandled},r=n({features:i},a)}e.post("supportedFeatures",r)},this.setOnUnload=function(t){e.onUnload=t},(0,l.inIframe)()||console.warn("Interactive API is meant to be used in iframe"),d())throw new Error("IframePhone has been initialized previously. Only one Client instance is allowed.");this.connect(),window.addEventListener("beforeunload",(function(t){return e.managedState.interactiveStateDirty&&(t.returnValue="State has not been saved. Are you sure you want to leave this page?"),t}))}return e.prototype.getNextRequestId=function(){return this.requestId++},e.prototype.post=function(e,t){this.phone.post(e,t)},e.prototype.addListener=function(e,t,r){var n=this;if(this.phone){this.listeners[e]=this.listeners[e]||[];var i=0===this.listeners[e].length;return this.listeners[e].push({requestId:r,callback:t}),i&&this.phone.addListener(e,(function(t){var r=t?t.requestId:void 0;t&&delete t.requestId,n.listeners[e].forEach((function(e){e.requestId===r&&e.callback(t)})),r&&n.removeListener(e,r)})),!0}return!1},e.prototype.removeListener=function(e,t,r){return!!this.listeners[e]&&(this.listeners[e]=r?this.listeners[e].filter((function(e){return e.callback!==r})):this.listeners[e].filter((function(e){return e.requestId!==t})),0===this.listeners[e].length&&this.phone.removeListener(e),!0)},e.prototype.connect=function(){var e=this;this.phone=c.getIFrameEndpoint(),this.addListener("initInteractive",(function(t){e.managedState.initMessage=t,"reportItem"===t.mode?e.managedState.authoredState={}:e.managedState.authoredState=p(t.authoredState),"runtime"!==t.mode&&"report"!==t.mode||(e.managedState.interactiveState=p(t.interactiveState),e.managedState.interactiveStateDirty=!1),"runtime"===t.mode&&(e.managedState.globalInteractiveState=p(t.globalInteractiveState))})),this.addListener("getInteractiveState",(function(t){return i(e,void 0,void 0,(function(){var e;return a(this,(function(r){switch(r.label){case 0:return(null==t?void 0:t.unloading)&&this.onUnload?[4,this.onUnload(t)]:[3,2];case 1:(e=r.sent())&&(this.managedState.interactiveState=e),r.label=2;case 2:return this.post("interactiveState",this.managedState.interactiveState),this.managedState.interactiveStateDirty=!1,[2]}}))}))})),this.addListener("loadInteractiveGlobal",(function(t){e.managedState.globalInteractiveState=p(t)})),this.phone.initialize()},e}();t.Client=h},"./src/interactive-api-client/hooks.ts":function(e,t,r){"use strict";var n=this&&this.__awaiter||function(e,t,r,n){return new(r||(r=Promise))((function(i,a){function o(e){try{c(n.next(e))}catch(e){a(e)}}function s(e){try{c(n.throw(e))}catch(e){a(e)}}function c(e){e.done?i(e.value):function(e){return e instanceof r?e:new r((function(t){t(e)}))}(e.value).then(o,s)}c((n=n.apply(e,t||[])).next())}))},i=this&&this.__generator||function(e,t){var r,n,i,a,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return a={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(a){return function(s){return function(a){if(r)throw new TypeError("Generator is already executing.");for(;o;)try{if(r=1,n&&(i=2&a[0]?n.return:a[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,a[1])).done)return i;switch(n=0,i&&(a=[2&a[0],i.value]),a[0]){case 0:case 1:i=a;break;case 4:return o.label++,{value:a[1],done:!1};case 5:o.label++,n=a[1],a=[0];continue;case 7:a=o.ops.pop(),o.trys.pop();continue;default:if(!((i=(i=o.trys).length>0&&i[i.length-1])||6!==a[0]&&2!==a[0])){o=0;continue}if(3===a[0]&&(!i||a[1]>i[0]&&a[1]<i[3])){o.label=a[1];break}if(6===a[0]&&o.label<i[1]){o.label=i[1],i=a;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(a);break}i[2]&&o.ops.pop(),o.trys.pop();continue}a=t.call(e,o)}catch(e){a=[6,e],n=0}finally{r=i=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,s])}}};Object.defineProperty(t,"__esModule",{value:!0}),t.useAccessibility=t.DefaultAccessibilitySettings=t.useReportItem=t.useAutoSetHeight=t.useDecorateContent=t.useCustomMessages=t.useInitMessage=t.useGlobalInteractiveState=t.useAuthoredState=t.useInteractiveState=void 0;var a=r("react"),o=r("./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js"),s=r("./src/interactive-api-client/api.ts"),c=r("./src/shared/accessibility.ts"),l=function(e,t){return"function"==typeof e?e(t):e};t.useInteractiveState=function(){var e=(0,a.useState)(null),t=e[0],r=e[1];return(0,a.useEffect)((function(){r(s.getInteractiveState());var e=function(e){r(e)};return s.addInteractiveStateListener(e),function(){s.removeInteractiveStateListener(e)}}),[]),{interactiveState:t,setInteractiveState:(0,a.useCallback)((function(e){var t=l(e,s.getInteractiveState());r(t),s.setInteractiveState(t)}),[])}},t.useAuthoredState=function(){var e=(0,a.useState)(null),t=e[0],r=e[1];return(0,a.useEffect)((function(){r(s.getAuthoredState());var e=function(e){r(e)};return s.addAuthoredStateListener(e),function(){s.removeAuthoredStateListener(e)}}),[]),{authoredState:t,setAuthoredState:(0,a.useCallback)((function(e){var t=l(e,s.getAuthoredState());r(t),s.setAuthoredState(t)}),[])}},t.useGlobalInteractiveState=function(){var e=(0,a.useState)(null),t=e[0],r=e[1];return(0,a.useEffect)((function(){r(s.getGlobalInteractiveState());var e=function(e){r(e)};return s.addGlobalInteractiveStateListener(e),function(){s.removeGlobalInteractiveStateListener(e)}}),[]),{globalInteractiveState:t,setGlobalInteractiveState:(0,a.useCallback)((function(e){var t=l(e,s.getGlobalInteractiveState());r(t),s.setGlobalInteractiveState(t)}),[])}},t.useInitMessage=function(){var e=(0,a.useState)(null),t=e[0],r=e[1];return(0,a.useEffect)((function(){n(void 0,void 0,void 0,(function(){var e;return i(this,(function(t){switch(t.label){case 0:return[4,s.getInitInteractiveMessage()];case 1:return e=t.sent(),r(e),[2]}}))}))}),[]),t},t.useCustomMessages=function(e,t){(0,a.useEffect)((function(){return s.addCustomMessageListener(e,t),function(){s.removeCustomMessageListener()}}),[])},t.useDecorateContent=function(e){(0,a.useEffect)((function(){return s.addDecorateContentListener(e),function(){return s.removeDecorateContentListener()}}),[])},t.useAutoSetHeight=function(){var e=(0,t.useInitMessage)();(0,a.useEffect)((function(){if(e){var t=document.body,r=document.documentElement,n=new o.default((function(){return e=Math.max(t.scrollHeight,t.offsetHeight,r.clientHeight,r.scrollHeight,r.offsetHeight),void s.setHeight(e);var e}));return t&&n.observe(t),function(){return n.disconnect()}}}),[e])},t.useReportItem=function(e){var t=e.metadata,r=e.handler;(0,a.useEffect)((function(){return s.addGetReportItemAnswerListener(r),s.notifyReportItemClientReady(t),function(){return s.removeGetReportItemAnswerListener()}}),[])},t.DefaultAccessibilitySettings={fontSize:"normal",fontSizeInPx:16,fontType:"normal",fontFamilyForType:(0,c.getFamilyForFontType)("normal")},t.useAccessibility=function(e){var r=e||{},n=r.updateHtmlFontSize,i=r.addBodyClass,o=r.fontFamilySelector,s=(0,t.useInitMessage)(),c=(0,a.useState)(t.DefaultAccessibilitySettings),l=c[0],u=c[1],p=function(e){return(e||"").toLowerCase().replace(/\s/,"-")};return(0,a.useEffect)((function(){var e;if(s&&"runtime"===s.mode){var r=s.accessibility||t.DefaultAccessibilitySettings,a=r.fontSize,c=r.fontSizeInPx,l=r.fontType,d=r.fontFamilyForType;if(u(r),n||i||o){var h=document.getElementsByTagName("html").item(0),m=document.getElementsByTagName("body").item(0);if(n&&h&&c&&(h.style.fontSize=c+"px"),i&&m&&(m.classList.add("font-size-"+p(a)),m.classList.add("font-type-"+p(l))),o&&d){var f=document.createElement("style");document.head.appendChild(f),null===(e=f.sheet)||void 0===e||e.insertRule(o+" { font-family: "+d+"; }",0)}}}}),[s,n,i,o]),l}},"./src/interactive-api-client/in-frame.ts":function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.inIframe=void 0;var n=function(){try{return window.self!==window.top}catch(e){return!0}}();t.inIframe=function(){return n}},"./src/interactive-api-client/index.ts":function(e,t,r){"use strict";var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r),Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[r]}})}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r("./src/interactive-api-client/types.ts"),t),i(r("./src/interactive-api-client/metadata-types.ts"),t),i(r("./src/interactive-api-client/in-frame.ts"),t),i(r("./src/interactive-api-client/api.ts"),t),i(r("./src/interactive-api-client/hooks.ts"),t),i(r("./src/interactive-api-client/client.ts"),t);var a=r("./src/interactive-api-client/package.json"),o=a.version;if(window.__LARA_INTERACTIVE_API__){var s='\nLARA Interactive API is loaded multiple times. This will lead to unexpected behavior and might break multiple features\nof the API (especially interactive state saving). Please ensure that the library is loaded only once by the main app\nand that all its dependencies specify "lara-interactive-api" as "peerDependency" in their package.json files.\n\nAlready imported version: v'+window.__LARA_INTERACTIVE_API__.version+", trying to load: v"+o+".\n";throw window.alert(s),new Error(s)}window.__LARA_INTERACTIVE_API__={version:a.version}},"./src/interactive-api-client/managed-state.ts":function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ManagedState=void 0;var n=r("./node_modules/eventemitter2/lib/eventemitter2.js"),i=r("./node_modules/deep-freeze/index.js"),a=function(){function e(){this.interactiveStateDirty=!1,this._initMessage=null,this._interactiveState=null,this._authoredState=null,this._globalInteractiveState=null,this.emitter=new n.EventEmitter2({maxListeners:1/0})}return Object.defineProperty(e.prototype,"initMessage",{get:function(){return this._initMessage},set:function(e){null!==e&&"object"==typeof e&&(e=i(e)),this._initMessage=e,this.emit("initInteractive",e)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"interactiveState",{get:function(){return this._interactiveState},set:function(e){null!==e&&"object"==typeof e&&(e=i(e)),this._interactiveState=e,this.emit("interactiveStateUpdated",e),this.interactiveStateDirty=!0},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"authoredState",{get:function(){return this._authoredState},set:function(e){null!==e&&"object"==typeof e&&(e=i(e)),this._authoredState=e,this.emit("authoredStateUpdated",e)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"globalInteractiveState",{get:function(){return this._globalInteractiveState},set:function(e){null!==e&&"object"==typeof e&&(e=i(e)),this._globalInteractiveState=e,this.emit("globalInteractiveStateUpdated",e)},enumerable:!1,configurable:!0}),e.prototype.emit=function(e,t){this.emitter.emit(e,t)},e.prototype.on=function(e,t){this.emitter.on(e,t)},e.prototype.off=function(e,t){this.emitter.off(e,t)},e.prototype.once=function(e,t){this.emitter.once(e,t)},e}();t.ManagedState=a},"./src/interactive-api-client/metadata-types.ts":function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0})},"./src/interactive-api-client/package.json":function(e){e.exports=JSON.parse('{"name":"@concord-consortium/lara-interactive-api","version":"1.9.4","description":"LARA Interactive API client and types","main":"./index.js","types":"./index-bundle.d.ts","repository":{"type":"git","url":"git+https://github.com/concord-consortium/lara.git"},"author":"Concord Consortium","license":"MIT","bugs":{"url":"https://github.com/concord-consortium/lara/issues"},"homepage":"https://github.com/concord-consortium/lara/tree/master/lara-typescript/src/interactive-api-client#readme","dependencies":{"iframe-phone":"^1.3.1"},"peerDependencies":{"react":">=16.9.0","react-dom":">=16.9.0"}}')},"./src/interactive-api-client/types.ts":function(e,t,r){"use strict";var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r),Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[r]}})}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r("./src/interactive-api-shared/types.ts"),t)},"./src/interactive-api-shared/types.ts":function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0})},"./src/shared/accessibility.ts":function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getFamilyForFontType=t.pxForFontSize=void 0,t.pxForFontSize=function(e){return"large"===e?22:16},t.getFamilyForFontType=function(e){var t="'Lato', arial, helvetica, sans-serif;";return"notebook"===e?"'Andika', "+t:t}},react:function(e,t){e.exports=r(7363)}})},e.exports=n()},8296:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(2622);!function(e){for(var r in e)t.hasOwnProperty(r)||(t[r]=e[r])}(r(3681));const i={dev:"http://localhost:5000/api/v1/resources",staging:"https://token-service-staging.firebaseapp.com/api/v1/resources",production:"https://token-service-62822.firebaseapp.com/api/v1/resources"},a=e=>i[e];t.TokenServiceClient=class{constructor(e){const{jwt:t,serviceUrl:r}=e;if(this.jwt=t,this.env=e.env||(()=>{if("undefined"==typeof window)throw new Error("env must be set in options when running as node library");const{host:e}=window.location;return e.match(/staging\./)?"staging":e.match(/concord\.org/)?"production":"dev"})(),this.serviceUrl=(()=>{if("undefined"==typeof window)return;const e=window.location.search.substring(1).split("&");for(let t=0;t<e.length;t++){const r=e[t].split("=");if("token-service-url"===decodeURIComponent(r[0])){const e=decodeURIComponent(r[1]);return a(e)||e}}})()||r||a(this.env)||i.production,"fetch"in e&&(this.fetch=e.fetch),"undefined"==typeof window&&!this.fetch)throw new Error("fetch must be set in options when running as node library")}static get FirebaseAppName(){return"token-service"}listResources(e){return new Promise(((t,r)=>this.fetchFromServiceUrl("GET",this.url("/",e)).then(t).catch(r)))}getResource(e){return new Promise(((t,r)=>this.fetchFromServiceUrl("GET",this.url(`/${e}`)).then(t).catch(r)))}createResource(e){return new Promise(((t,r)=>this.fetchFromServiceUrl("POST",this.url("/"),{body:e}).then(t).catch(r)))}updateResource(e,t){return new Promise(((r,n)=>this.fetchFromServiceUrl("PATCH",this.url(`/${e}`),{body:t}).then(r).catch(n)))}deleteResource(e){return new Promise(((t,r)=>this.fetchFromServiceUrl("DELETE",this.url(`/${e}`)).then(t).catch(r)))}getCredentials(e,t){return new Promise(((r,n)=>this.fetchFromServiceUrl("POST",this.url(`/${e}/credentials`),{readWriteToken:t}).then(r).catch(n)))}getReadWriteToken(e){return n.getRWTokenFromAccessRules(e)}getPublicS3Path(e,t=""){const{publicPath:r}=e;return`${r}${t}`}getPublicS3Url(e,t=""){const{publicUrl:r}=e;return`${r}${t}`}url(e,t={}){return t.env=this.env,`${e}?${Object.keys(t).map((e=>`${encodeURIComponent(e)}=${encodeURIComponent(t[e])}`)).join("&")}`}fetchFromServiceUrl(e,t,r){return new Promise(((n,i)=>{const a=`${this.serviceUrl}${t}`,o={method:e,headers:{"Content-Type":"application/json"}},s=(null==r?void 0:r.readWriteToken)||this.jwt;return s&&(o.headers.Authorization=`Bearer ${s}`),(null==r?void 0:r.body)&&(o.body=JSON.stringify(r.body)),(this.fetch||fetch)(a,o).then((e=>e.json())).then((e=>{"success"===e.status?n(e.result):i(e.error||e)})).catch(i)}))}}},2622:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getRWTokenFromAccessRules=e=>{if(!e.accessRules)return;const t=e.accessRules.filter((e=>"readWriteToken"===e.type));return t.length>0?t[0].readWriteToken:void 0}},3681:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ReadWriteTokenPrefix="read-write-token:"},5523:(e,t,r)=>{r(1819);var n=r(2042),i=n.Service,a=n.apiLoader;a.services.cognitoidentity={},n.CognitoIdentity=i.defineService("cognitoidentity",["2014-06-30"]),Object.defineProperty(a.services.cognitoidentity,"2014-06-30",{get:function(){var e=r(8416);return e.paginators=r(3342).o,e},enumerable:!0,configurable:!0}),e.exports=n.CognitoIdentity},4405:(e,t,r)=>{r(1819);var n=r(2042),i=n.Service,a=n.apiLoader;a.services.s3={},n.S3=i.defineService("s3",["2006-03-01"]),r(4334),Object.defineProperty(a.services.s3,"2006-03-01",{get:function(){var e=r(2671);return e.paginators=r(6854).o,e.waiters=r(318).V,e},enumerable:!0,configurable:!0}),e.exports=n.S3},7633:(e,t,r)=>{r(1819);var n=r(2042),i=n.Service,a=n.apiLoader;a.services.sts={},n.STS=i.defineService("sts",["2011-06-15"]),r(5108),Object.defineProperty(a.services.sts,"2011-06-15",{get:function(){var e=r(675);return e.paginators=r(3215).o,e},enumerable:!0,configurable:!0}),e.exports=n.STS},7093:e=>{function t(e,r){if(!t.services.hasOwnProperty(e))throw new Error("InvalidService: Failed to load api for "+e);return t.services[e][r]}t.services={},e.exports=t},8716:(e,t,r)=>{var n=r(3998),i=r(5425),a=r(9194),o=r(5777);e.exports={createHash:function(e){if("md5"===(e=e.toLowerCase()))return new i;if("sha256"===e)return new o;if("sha1"===e)return new a;throw new Error("Hash algorithm "+e+" is not supported in the browser SDK")},createHmac:function(e,t){if("md5"===(e=e.toLowerCase()))return new n(i,t);if("sha256"===e)return new n(o,t);if("sha1"===e)return new n(a,t);throw new Error("HMAC algorithm "+e+" is not supported in the browser SDK")},createSign:function(){throw new Error("createSign is not implemented in the browser")}}},8260:(e,t,r)=>{var n=r(816).lW;"undefined"!=typeof ArrayBuffer&&void 0===ArrayBuffer.isView&&(ArrayBuffer.isView=function(e){return i.indexOf(Object.prototype.toString.call(e))>-1});var i=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]","[object DataView]"];e.exports={isEmptyData:function(e){return"string"==typeof e?0===e.length:0===e.byteLength},convertToBuffer:function(e){return"string"==typeof e&&(e=new n(e,"utf8")),ArrayBuffer.isView(e)?new Uint8Array(e.buffer,e.byteOffset,e.byteLength/Uint8Array.BYTES_PER_ELEMENT):new Uint8Array(e)}}},3998:(e,t,r)=>{var n=r(8260);function i(e,t){this.hash=new e,this.outer=new e;var r=function(e,t){var r=n.convertToBuffer(t);if(r.byteLength>e.BLOCK_SIZE){var i=new e;i.update(r),r=i.digest()}var a=new Uint8Array(e.BLOCK_SIZE);return a.set(r),a}(e,t),i=new Uint8Array(e.BLOCK_SIZE);i.set(r);for(var a=0;a<e.BLOCK_SIZE;a++)r[a]^=54,i[a]^=92;for(this.hash.update(r),this.outer.update(i),a=0;a<r.byteLength;a++)r[a]=0}e.exports=i,i.prototype.update=function(e){if(n.isEmptyData(e)||this.error)return this;try{this.hash.update(n.convertToBuffer(e))}catch(e){this.error=e}return this},i.prototype.digest=function(e){return this.outer.finished||this.outer.update(this.hash.digest()),this.outer.digest(e)}},5425:(e,t,r)=>{var n=r(8260),i=r(816).lW;function a(){this.state=[1732584193,4023233417,2562383102,271733878],this.buffer=new DataView(new ArrayBuffer(64)),this.bufferLength=0,this.bytesHashed=0,this.finished=!1}function o(e,t,r,n,i,a){return((t=(t+e&4294967295)+(n+a&4294967295)&4294967295)<<i|t>>>32-i)+r&4294967295}function s(e,t,r,n,i,a,s){return o(t&r|~t&n,e,t,i,a,s)}function c(e,t,r,n,i,a,s){return o(t&n|r&~n,e,t,i,a,s)}function l(e,t,r,n,i,a,s){return o(t^r^n,e,t,i,a,s)}function u(e,t,r,n,i,a,s){return o(r^(t|~n),e,t,i,a,s)}e.exports=a,a.BLOCK_SIZE=64,a.prototype.update=function(e){if(n.isEmptyData(e))return this;if(this.finished)throw new Error("Attempted to update an already finished hash.");var t=n.convertToBuffer(e),r=0,i=t.byteLength;for(this.bytesHashed+=i;i>0;)this.buffer.setUint8(this.bufferLength++,t[r++]),i--,64===this.bufferLength&&(this.hashBuffer(),this.bufferLength=0);return this},a.prototype.digest=function(e){if(!this.finished){var t=this,r=t.buffer,n=t.bufferLength,a=8*t.bytesHashed;if(r.setUint8(this.bufferLength++,128),n%64>=56){for(var o=this.bufferLength;o<64;o++)r.setUint8(o,0);this.hashBuffer(),this.bufferLength=0}for(o=this.bufferLength;o<56;o++)r.setUint8(o,0);r.setUint32(56,a>>>0,!0),r.setUint32(60,Math.floor(a/4294967296),!0),this.hashBuffer(),this.finished=!0}var s=new DataView(new ArrayBuffer(16));for(o=0;o<4;o++)s.setUint32(4*o,this.state[o],!0);var c=new i(s.buffer,s.byteOffset,s.byteLength);return e?c.toString(e):c},a.prototype.hashBuffer=function(){var e=this.buffer,t=this.state,r=t[0],n=t[1],i=t[2],a=t[3];r=s(r,n,i,a,e.getUint32(0,!0),7,3614090360),a=s(a,r,n,i,e.getUint32(4,!0),12,3905402710),i=s(i,a,r,n,e.getUint32(8,!0),17,606105819),n=s(n,i,a,r,e.getUint32(12,!0),22,3250441966),r=s(r,n,i,a,e.getUint32(16,!0),7,4118548399),a=s(a,r,n,i,e.getUint32(20,!0),12,1200080426),i=s(i,a,r,n,e.getUint32(24,!0),17,2821735955),n=s(n,i,a,r,e.getUint32(28,!0),22,4249261313),r=s(r,n,i,a,e.getUint32(32,!0),7,1770035416),a=s(a,r,n,i,e.getUint32(36,!0),12,2336552879),i=s(i,a,r,n,e.getUint32(40,!0),17,4294925233),n=s(n,i,a,r,e.getUint32(44,!0),22,2304563134),r=s(r,n,i,a,e.getUint32(48,!0),7,1804603682),a=s(a,r,n,i,e.getUint32(52,!0),12,4254626195),i=s(i,a,r,n,e.getUint32(56,!0),17,2792965006),r=c(r,n=s(n,i,a,r,e.getUint32(60,!0),22,1236535329),i,a,e.getUint32(4,!0),5,4129170786),a=c(a,r,n,i,e.getUint32(24,!0),9,3225465664),i=c(i,a,r,n,e.getUint32(44,!0),14,643717713),n=c(n,i,a,r,e.getUint32(0,!0),20,3921069994),r=c(r,n,i,a,e.getUint32(20,!0),5,3593408605),a=c(a,r,n,i,e.getUint32(40,!0),9,38016083),i=c(i,a,r,n,e.getUint32(60,!0),14,3634488961),n=c(n,i,a,r,e.getUint32(16,!0),20,3889429448),r=c(r,n,i,a,e.getUint32(36,!0),5,568446438),a=c(a,r,n,i,e.getUint32(56,!0),9,3275163606),i=c(i,a,r,n,e.getUint32(12,!0),14,4107603335),n=c(n,i,a,r,e.getUint32(32,!0),20,1163531501),r=c(r,n,i,a,e.getUint32(52,!0),5,2850285829),a=c(a,r,n,i,e.getUint32(8,!0),9,4243563512),i=c(i,a,r,n,e.getUint32(28,!0),14,1735328473),r=l(r,n=c(n,i,a,r,e.getUint32(48,!0),20,2368359562),i,a,e.getUint32(20,!0),4,4294588738),a=l(a,r,n,i,e.getUint32(32,!0),11,2272392833),i=l(i,a,r,n,e.getUint32(44,!0),16,1839030562),n=l(n,i,a,r,e.getUint32(56,!0),23,4259657740),r=l(r,n,i,a,e.getUint32(4,!0),4,2763975236),a=l(a,r,n,i,e.getUint32(16,!0),11,1272893353),i=l(i,a,r,n,e.getUint32(28,!0),16,4139469664),n=l(n,i,a,r,e.getUint32(40,!0),23,3200236656),r=l(r,n,i,a,e.getUint32(52,!0),4,681279174),a=l(a,r,n,i,e.getUint32(0,!0),11,3936430074),i=l(i,a,r,n,e.getUint32(12,!0),16,3572445317),n=l(n,i,a,r,e.getUint32(24,!0),23,76029189),r=l(r,n,i,a,e.getUint32(36,!0),4,3654602809),a=l(a,r,n,i,e.getUint32(48,!0),11,3873151461),i=l(i,a,r,n,e.getUint32(60,!0),16,530742520),r=u(r,n=l(n,i,a,r,e.getUint32(8,!0),23,3299628645),i,a,e.getUint32(0,!0),6,4096336452),a=u(a,r,n,i,e.getUint32(28,!0),10,1126891415),i=u(i,a,r,n,e.getUint32(56,!0),15,2878612391),n=u(n,i,a,r,e.getUint32(20,!0),21,4237533241),r=u(r,n,i,a,e.getUint32(48,!0),6,1700485571),a=u(a,r,n,i,e.getUint32(12,!0),10,2399980690),i=u(i,a,r,n,e.getUint32(40,!0),15,4293915773),n=u(n,i,a,r,e.getUint32(4,!0),21,2240044497),r=u(r,n,i,a,e.getUint32(32,!0),6,1873313359),a=u(a,r,n,i,e.getUint32(60,!0),10,4264355552),i=u(i,a,r,n,e.getUint32(24,!0),15,2734768916),n=u(n,i,a,r,e.getUint32(52,!0),21,1309151649),r=u(r,n,i,a,e.getUint32(16,!0),6,4149444226),a=u(a,r,n,i,e.getUint32(44,!0),10,3174756917),i=u(i,a,r,n,e.getUint32(8,!0),15,718787259),n=u(n,i,a,r,e.getUint32(36,!0),21,3951481745),t[0]=r+t[0]&4294967295,t[1]=n+t[1]&4294967295,t[2]=i+t[2]&4294967295,t[3]=a+t[3]&4294967295}},9194:(e,t,r)=>{var n=r(816).lW,i=r(8260);function a(){this.h0=1732584193,this.h1=4023233417,this.h2=2562383102,this.h3=271733878,this.h4=3285377520,this.block=new Uint32Array(80),this.offset=0,this.shift=24,this.totalLength=0}new Uint32Array([1518500249,1859775393,-1894007588,-899497514]),Math.pow(2,53),e.exports=a,a.BLOCK_SIZE=64,a.prototype.update=function(e){if(this.finished)throw new Error("Attempted to update an already finished hash.");if(i.isEmptyData(e))return this;var t=(e=i.convertToBuffer(e)).length;this.totalLength+=8*t;for(var r=0;r<t;r++)this.write(e[r]);return this},a.prototype.write=function(e){this.block[this.offset]|=(255&e)<<this.shift,this.shift?this.shift-=8:(this.offset++,this.shift=24),16===this.offset&&this.processBlock()},a.prototype.digest=function(e){this.write(128),(this.offset>14||14===this.offset&&this.shift<24)&&this.processBlock(),this.offset=14,this.shift=24,this.write(0),this.write(0),this.write(this.totalLength>0xffffffffff?this.totalLength/1099511627776:0),this.write(this.totalLength>4294967295?this.totalLength/4294967296:0);for(var t=24;t>=0;t-=8)this.write(this.totalLength>>t);var r=new n(20),i=new DataView(r.buffer);return i.setUint32(0,this.h0,!1),i.setUint32(4,this.h1,!1),i.setUint32(8,this.h2,!1),i.setUint32(12,this.h3,!1),i.setUint32(16,this.h4,!1),e?r.toString(e):r},a.prototype.processBlock=function(){for(var e=16;e<80;e++){var t=this.block[e-3]^this.block[e-8]^this.block[e-14]^this.block[e-16];this.block[e]=t<<1|t>>>31}var r,n,i=this.h0,a=this.h1,o=this.h2,s=this.h3,c=this.h4;for(e=0;e<80;e++){e<20?(r=s^a&(o^s),n=1518500249):e<40?(r=a^o^s,n=1859775393):e<60?(r=a&o|s&(a|o),n=2400959708):(r=a^o^s,n=3395469782);var l=(i<<5|i>>>27)+r+c+n+(0|this.block[e]);c=s,s=o,o=a<<30|a>>>2,a=i,i=l}for(this.h0=this.h0+i|0,this.h1=this.h1+a|0,this.h2=this.h2+o|0,this.h3=this.h3+s|0,this.h4=this.h4+c|0,this.offset=0,e=0;e<16;e++)this.block[e]=0}},5777:(e,t,r)=>{var n=r(816).lW,i=r(8260),a=new Uint32Array([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),o=Math.pow(2,53)-1;function s(){this.state=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.temp=new Int32Array(64),this.buffer=new Uint8Array(64),this.bufferLength=0,this.bytesHashed=0,this.finished=!1}e.exports=s,s.BLOCK_SIZE=64,s.prototype.update=function(e){if(this.finished)throw new Error("Attempted to update an already finished hash.");if(i.isEmptyData(e))return this;var t=0,r=(e=i.convertToBuffer(e)).byteLength;if(this.bytesHashed+=r,8*this.bytesHashed>o)throw new Error("Cannot hash more than 2^53 - 1 bits");for(;r>0;)this.buffer[this.bufferLength++]=e[t++],r--,64===this.bufferLength&&(this.hashBuffer(),this.bufferLength=0);return this},s.prototype.digest=function(e){if(!this.finished){var t=8*this.bytesHashed,r=new DataView(this.buffer.buffer,this.buffer.byteOffset,this.buffer.byteLength),i=this.bufferLength;if(r.setUint8(this.bufferLength++,128),i%64>=56){for(var a=this.bufferLength;a<64;a++)r.setUint8(a,0);this.hashBuffer(),this.bufferLength=0}for(a=this.bufferLength;a<56;a++)r.setUint8(a,0);r.setUint32(56,Math.floor(t/4294967296),!0),r.setUint32(60,t),this.hashBuffer(),this.finished=!0}var o=new n(32);for(a=0;a<8;a++)o[4*a]=this.state[a]>>>24&255,o[4*a+1]=this.state[a]>>>16&255,o[4*a+2]=this.state[a]>>>8&255,o[4*a+3]=this.state[a]>>>0&255;return e?o.toString(e):o},s.prototype.hashBuffer=function(){for(var e=this.buffer,t=this.state,r=t[0],n=t[1],i=t[2],o=t[3],s=t[4],c=t[5],l=t[6],u=t[7],p=0;p<64;p++){if(p<16)this.temp[p]=(255&e[4*p])<<24|(255&e[4*p+1])<<16|(255&e[4*p+2])<<8|255&e[4*p+3];else{var d=this.temp[p-2],h=(d>>>17|d<<15)^(d>>>19|d<<13)^d>>>10,m=((d=this.temp[p-15])>>>7|d<<25)^(d>>>18|d<<14)^d>>>3;this.temp[p]=(h+this.temp[p-7]|0)+(m+this.temp[p-16]|0)}var f=(((s>>>6|s<<26)^(s>>>11|s<<21)^(s>>>25|s<<7))+(s&c^~s&l)|0)+(u+(a[p]+this.temp[p]|0)|0)|0,E=((r>>>2|r<<30)^(r>>>13|r<<19)^(r>>>22|r<<10))+(r&n^r&i^n&i)|0;u=l,l=c,c=s,s=o+f|0,o=i,i=n,n=r,r=f+E|0}t[0]+=r,t[1]+=n,t[2]+=i,t[3]+=o,t[4]+=s,t[5]+=c,t[6]+=l,t[7]+=u}},1819:(e,t,r)=>{var n=r(3444);n.crypto.lib=r(8716),n.Buffer=r(816).lW,n.url=r(4760),n.querystring=r(8966),n.realClock=r(723),n.environment="js",n.createEventStream=r(3834).createEventStream,n.isBrowser=function(){return!0},n.isNode=function(){return!1};var i=r(2042);if(e.exports=i,r(9678),r(4964),r(4644),r(3901),r(1290),r(6493),r(4599),i.XML.Parser=r(884),r(1251),void 0===a)var a={browser:!0}},7722:(e,t,r)=>{var n,i=r(2042);r(9678),r(4964),i.Config=i.util.inherit({constructor:function(e){void 0===e&&(e={}),e=this.extractCredentials(e),i.util.each.call(this,this.keys,(function(t,r){this.set(t,e[t],r)}))},getCredentials:function(e){var t,r=this;function n(t){e(t,t?null:r.credentials)}function a(e,t){return new i.util.error(t||new Error,{code:"CredentialsError",message:e,name:"CredentialsError"})}r.credentials?"function"==typeof r.credentials.get?r.credentials.get((function(e){e&&(e=a("Could not load credentials from "+r.credentials.constructor.name,e)),n(e)})):(t=null,r.credentials.accessKeyId&&r.credentials.secretAccessKey||(t=a("Missing credentials")),n(t)):r.credentialProvider?r.credentialProvider.resolve((function(e,t){e&&(e=a("Could not load credentials from any providers",e)),r.credentials=t,n(e)})):n(a("No credentials to load"))},getToken:function(e){var t,r=this;function n(t){e(t,t?null:r.token)}function a(e,t){return new i.util.error(t||new Error,{code:"TokenError",message:e,name:"TokenError"})}r.token?"function"==typeof r.token.get?r.token.get((function(e){e&&(e=a("Could not load token from "+r.token.constructor.name,e)),n(e)})):(t=null,r.token.token||(t=a("Missing token")),n(t)):r.tokenProvider?r.tokenProvider.resolve((function(e,t){e&&(e=a("Could not load token from any providers",e)),r.token=t,n(e)})):n(a("No token to load"))},update:function(e,t){t=t||!1,e=this.extractCredentials(e),i.util.each.call(this,e,(function(e,r){(t||Object.prototype.hasOwnProperty.call(this.keys,e)||i.Service.hasService(e))&&this.set(e,r)}))},loadFromPath:function(e){this.clear();var t=JSON.parse(i.util.readFileSync(e)),r=new i.FileSystemCredentials(e),n=new i.CredentialProviderChain;return n.providers.unshift(r),n.resolve((function(e,r){if(e)throw e;t.credentials=r})),this.constructor(t),this},clear:function(){i.util.each.call(this,this.keys,(function(e){delete this[e]})),this.set("credentials",void 0),this.set("credentialProvider",void 0)},set:function(e,t,r){void 0===t?(void 0===r&&(r=this.keys[e]),this[e]="function"==typeof r?r.call(this):r):"httpOptions"===e&&this[e]?this[e]=i.util.merge(this[e],t):this[e]=t},keys:{credentials:null,credentialProvider:null,region:null,logger:null,apiVersions:{},apiVersion:null,endpoint:void 0,httpOptions:{timeout:12e4},maxRetries:void 0,maxRedirects:10,paramValidation:!0,sslEnabled:!0,s3ForcePathStyle:!1,s3BucketEndpoint:!1,s3DisableBodySigning:!0,s3UsEast1RegionalEndpoint:"legacy",s3UseArnRegion:void 0,computeChecksums:!0,convertResponseTypes:!0,correctClockSkew:!1,customUserAgent:null,dynamoDbCrc32:!0,systemClockOffset:0,signatureVersion:null,signatureCache:!0,retryDelayOptions:{},useAccelerateEndpoint:!1,clientSideMonitoring:!1,endpointDiscoveryEnabled:void 0,endpointCacheSize:1e3,hostPrefixEnabled:!0,stsRegionalEndpoints:"legacy",useFipsEndpoint:!1,useDualstackEndpoint:!1,token:null},extractCredentials:function(e){return e.accessKeyId&&e.secretAccessKey&&((e=i.util.copy(e)).credentials=new i.Credentials(e)),e},setPromisesDependency:function(e){n=e,null===e&&"function"==typeof Promise&&(n=Promise);var t=[i.Request,i.Credentials,i.CredentialProviderChain];i.S3&&(t.push(i.S3),i.S3.ManagedUpload&&t.push(i.S3.ManagedUpload)),i.util.addPromises(t,n)},getPromisesDependency:function(){return n}}),i.config=new i.Config},1046:(e,t,r)=>{var n=r(2042);function i(e,t){if("string"==typeof e){if(["legacy","regional"].indexOf(e.toLowerCase())>=0)return e.toLowerCase();throw n.util.error(new Error,t)}}e.exports=function(e,t){var r;if((e=e||{})[t.clientConfig]&&(r=i(e[t.clientConfig],{code:"InvalidConfiguration",message:'invalid "'+t.clientConfig+'" configuration. Expect "legacy" or "regional". Got "'+e[t.clientConfig]+'".'})))return r;if(!n.util.isNode())return r;if(Object.prototype.hasOwnProperty.call(process.env,t.env)&&(r=i(process.env[t.env],{code:"InvalidEnvironmentalVariable",message:"invalid "+t.env+' environmental variable. Expect "legacy" or "regional". Got "'+process.env[t.env]+'".'})))return r;var a={};try{a=n.util.getProfilesFromSharedConfig(n.util.iniLoader)[process.env.AWS_PROFILE||n.util.defaultProfile]}catch(e){}return a&&Object.prototype.hasOwnProperty.call(a,t.sharedConfig)&&(r=i(a[t.sharedConfig],{code:"InvalidConfiguration",message:"invalid "+t.sharedConfig+' profile config. Expect "legacy" or "regional". Got "'+a[t.sharedConfig]+'".'})),r}},2042:(e,t,r)=>{var n={util:r(3444)};({}).toString(),e.exports=n,n.util.update(n,{VERSION:"2.1526.0",Signers:{},Protocol:{Json:r(350),Query:r(2507),Rest:r(161),RestJson:r(5810),RestXml:r(8677)},XML:{Builder:r(2154),Parser:null},JSON:{Builder:r(4354),Parser:r(3006)},Model:{Api:r(3607),Operation:r(1),Shape:r(4669),Paginator:r(412),ResourceWaiter:r(9837)},apiLoader:r(7093),EndpointCache:r(1337).$}),r(3991),r(4244),r(7722),r(5787),r(4289),r(1201),r(6736),r(4465),r(1939),r(5911),r(5395),n.events=new n.SequentialExecutor,n.util.memoizedProperty(n,"endpointCache",(function(){return new n.EndpointCache(n.config.endpointCacheSize)}),!0)},9678:(e,t,r)=>{var n=r(2042);n.Credentials=n.util.inherit({constructor:function(){if(n.util.hideProperties(this,["secretAccessKey"]),this.expired=!1,this.expireTime=null,this.refreshCallbacks=[],1===arguments.length&&"object"==typeof arguments[0]){var e=arguments[0].credentials||arguments[0];this.accessKeyId=e.accessKeyId,this.secretAccessKey=e.secretAccessKey,this.sessionToken=e.sessionToken}else this.accessKeyId=arguments[0],this.secretAccessKey=arguments[1],this.sessionToken=arguments[2]},expiryWindow:15,needsRefresh:function(){var e=n.util.date.getDate().getTime(),t=new Date(e+1e3*this.expiryWindow);return!!(this.expireTime&&t>this.expireTime)||this.expired||!this.accessKeyId||!this.secretAccessKey},get:function(e){var t=this;this.needsRefresh()?this.refresh((function(r){r||(t.expired=!1),e&&e(r)})):e&&e()},refresh:function(e){this.expired=!1,e()},coalesceRefresh:function(e,t){var r=this;1===r.refreshCallbacks.push(e)&&r.load((function(e){n.util.arrayEach(r.refreshCallbacks,(function(r){t?r(e):n.util.defer((function(){r(e)}))})),r.refreshCallbacks.length=0}))},load:function(e){e()}}),n.Credentials.addPromisesToClass=function(e){this.prototype.getPromise=n.util.promisifyMethod("get",e),this.prototype.refreshPromise=n.util.promisifyMethod("refresh",e)},n.Credentials.deletePromisesFromClass=function(){delete this.prototype.getPromise,delete this.prototype.refreshPromise},n.util.addPromises(n.Credentials)},3901:(e,t,r)=>{var n=r(2042),i=r(7633);n.ChainableTemporaryCredentials=n.util.inherit(n.Credentials,{constructor:function(e){n.Credentials.call(this),e=e||{},this.errorCode="ChainableTemporaryCredentialsProviderFailure",this.expired=!0,this.tokenCodeFn=null;var t=n.util.copy(e.params)||{};if(t.RoleArn&&(t.RoleSessionName=t.RoleSessionName||"temporary-credentials"),t.SerialNumber){if(!e.tokenCodeFn||"function"!=typeof e.tokenCodeFn)throw new n.util.error(new Error("tokenCodeFn must be a function when params.SerialNumber is given"),{code:this.errorCode});this.tokenCodeFn=e.tokenCodeFn}var r=n.util.merge({params:t,credentials:e.masterCredentials||n.config.credentials},e.stsConfig||{});this.service=new i(r)},refresh:function(e){this.coalesceRefresh(e||n.util.fn.callback)},load:function(e){var t=this,r=t.service.config.params.RoleArn?"assumeRole":"getSessionToken";this.getTokenCode((function(n,i){var a={};n?e(n):(i&&(a.TokenCode=i),t.service[r](a,(function(r,n){r||t.service.credentialsFrom(n,t),e(r)})))}))},getTokenCode:function(e){var t=this;this.tokenCodeFn?this.tokenCodeFn(this.service.config.params.SerialNumber,(function(r,i){if(r){var a=r;return r instanceof Error&&(a=r.message),void e(n.util.error(new Error("Error fetching MFA token: "+a),{code:t.errorCode}))}e(null,i)})):e(null)}})},6493:(e,t,r)=>{var n=r(2042),i=r(5523),a=r(7633);n.CognitoIdentityCredentials=n.util.inherit(n.Credentials,{localStorageKey:{id:"aws.cognito.identity-id.",providers:"aws.cognito.identity-providers."},constructor:function(e,t){n.Credentials.call(this),this.expired=!0,this.params=e,this.data=null,this._identityId=null,this._clientConfig=n.util.copy(t||{}),this.loadCachedId();var r=this;Object.defineProperty(this,"identityId",{get:function(){return r.loadCachedId(),r._identityId||r.params.IdentityId},set:function(e){r._identityId=e}})},refresh:function(e){this.coalesceRefresh(e||n.util.fn.callback)},load:function(e){var t=this;t.createClients(),t.data=null,t._identityId=null,t.getId((function(r){r?(t.clearIdOnNotAuthorized(r),e(r)):t.params.RoleArn?t.getCredentialsFromSTS(e):t.getCredentialsForIdentity(e)}))},clearCachedId:function(){this._identityId=null,delete this.params.IdentityId;var e=this.params.IdentityPoolId,t=this.params.LoginId||"";delete this.storage[this.localStorageKey.id+e+t],delete this.storage[this.localStorageKey.providers+e+t]},clearIdOnNotAuthorized:function(e){"NotAuthorizedException"==e.code&&this.clearCachedId()},getId:function(e){var t=this;if("string"==typeof t.params.IdentityId)return e(null,t.params.IdentityId);t.cognito.getId((function(r,n){!r&&n.IdentityId?(t.params.IdentityId=n.IdentityId,e(null,n.IdentityId)):e(r)}))},loadCredentials:function(e,t){e&&t&&(t.expired=!1,t.accessKeyId=e.Credentials.AccessKeyId,t.secretAccessKey=e.Credentials.SecretKey,t.sessionToken=e.Credentials.SessionToken,t.expireTime=e.Credentials.Expiration)},getCredentialsForIdentity:function(e){var t=this;t.cognito.getCredentialsForIdentity((function(r,n){r?t.clearIdOnNotAuthorized(r):(t.cacheId(n),t.data=n,t.loadCredentials(t.data,t)),e(r)}))},getCredentialsFromSTS:function(e){var t=this;t.cognito.getOpenIdToken((function(r,n){r?(t.clearIdOnNotAuthorized(r),e(r)):(t.cacheId(n),t.params.WebIdentityToken=n.Token,t.webIdentityCredentials.refresh((function(r){r||(t.data=t.webIdentityCredentials.data,t.sts.credentialsFrom(t.data,t)),e(r)})))}))},loadCachedId:function(){var e=this;if(n.util.isBrowser()&&!e.params.IdentityId){var t=e.getStorage("id");if(t&&e.params.Logins){var r=Object.keys(e.params.Logins);0!==(e.getStorage("providers")||"").split(",").filter((function(e){return-1!==r.indexOf(e)})).length&&(e.params.IdentityId=t)}else t&&(e.params.IdentityId=t)}},createClients:function(){var e=this._clientConfig;if(this.webIdentityCredentials=this.webIdentityCredentials||new n.WebIdentityCredentials(this.params,e),!this.cognito){var t=n.util.merge({},e);t.params=this.params,this.cognito=new i(t)}this.sts=this.sts||new a(e)},cacheId:function(e){this._identityId=e.IdentityId,this.params.IdentityId=this._identityId,n.util.isBrowser()&&(this.setStorage("id",e.IdentityId),this.params.Logins&&this.setStorage("providers",Object.keys(this.params.Logins).join(",")))},getStorage:function(e){return this.storage[this.localStorageKey[e]+this.params.IdentityPoolId+(this.params.LoginId||"")]},setStorage:function(e,t){try{this.storage[this.localStorageKey[e]+this.params.IdentityPoolId+(this.params.LoginId||"")]=t}catch(e){}},storage:function(){try{var e=n.util.isBrowser()&&null!==window.localStorage&&"object"==typeof window.localStorage?window.localStorage:{};return e["aws.test-storage"]="foobar",delete e["aws.test-storage"],e}catch(e){return{}}}()})},4964:(e,t,r)=>{var n=r(2042);n.CredentialProviderChain=n.util.inherit(n.Credentials,{constructor:function(e){this.providers=e||n.CredentialProviderChain.defaultProviders.slice(0),this.resolveCallbacks=[]},resolve:function(e){var t=this;if(0===t.providers.length)return e(new Error("No providers")),t;if(1===t.resolveCallbacks.push(e)){var r=0,i=t.providers.slice(0);!function e(a,o){if(!a&&o||r===i.length)return n.util.arrayEach(t.resolveCallbacks,(function(e){e(a,o)})),void(t.resolveCallbacks.length=0);var s=i[r++];(o="function"==typeof s?s.call():s).get?o.get((function(t){e(t,t?null:o)})):e(null,o)}()}return t}}),n.CredentialProviderChain.defaultProviders=[],n.CredentialProviderChain.addPromisesToClass=function(e){this.prototype.resolvePromise=n.util.promisifyMethod("resolve",e)},n.CredentialProviderChain.deletePromisesFromClass=function(){delete this.prototype.resolvePromise},n.util.addPromises(n.CredentialProviderChain)},4599:(e,t,r)=>{var n=r(2042),i=r(7633);n.SAMLCredentials=n.util.inherit(n.Credentials,{constructor:function(e){n.Credentials.call(this),this.expired=!0,this.params=e},refresh:function(e){this.coalesceRefresh(e||n.util.fn.callback)},load:function(e){var t=this;t.createClients(),t.service.assumeRoleWithSAML((function(r,n){r||t.service.credentialsFrom(n,t),e(r)}))},createClients:function(){this.service=this.service||new i({params:this.params})}})},4644:(e,t,r)=>{var n=r(2042),i=r(7633);n.TemporaryCredentials=n.util.inherit(n.Credentials,{constructor:function(e,t){n.Credentials.call(this),this.loadMasterCredentials(t),this.expired=!0,this.params=e||{},this.params.RoleArn&&(this.params.RoleSessionName=this.params.RoleSessionName||"temporary-credentials")},refresh:function(e){this.coalesceRefresh(e||n.util.fn.callback)},load:function(e){var t=this;t.createClients(),t.masterCredentials.get((function(){t.service.config.credentials=t.masterCredentials,(t.params.RoleArn?t.service.assumeRole:t.service.getSessionToken).call(t.service,(function(r,n){r||t.service.credentialsFrom(n,t),e(r)}))}))},loadMasterCredentials:function(e){for(this.masterCredentials=e||n.config.credentials;this.masterCredentials.masterCredentials;)this.masterCredentials=this.masterCredentials.masterCredentials;"function"!=typeof this.masterCredentials.get&&(this.masterCredentials=new n.Credentials(this.masterCredentials))},createClients:function(){this.service=this.service||new i({params:this.params})}})},1290:(e,t,r)=>{var n=r(2042),i=r(7633);n.WebIdentityCredentials=n.util.inherit(n.Credentials,{constructor:function(e,t){n.Credentials.call(this),this.expired=!0,this.params=e,this.params.RoleSessionName=this.params.RoleSessionName||"web-identity",this.data=null,this._clientConfig=n.util.copy(t||{})},refresh:function(e){this.coalesceRefresh(e||n.util.fn.callback)},load:function(e){var t=this;t.createClients(),t.service.assumeRoleWithWebIdentity((function(r,n){t.data=null,r||(t.data=n,t.service.credentialsFrom(n,t)),e(r)}))},createClients:function(){if(!this.service){var e=n.util.merge({},this._clientConfig);e.params=this.params,this.service=new i(e)}}})},7518:(e,t,r)=>{var n=r(2042),i=r(3444),a=["AWS_ENABLE_ENDPOINT_DISCOVERY","AWS_ENDPOINT_DISCOVERY_ENABLED"];function o(e){var t=e.service,r=t.api||{},n=(r.operations,{});return t.config.region&&(n.region=t.config.region),r.serviceId&&(n.serviceId=r.serviceId),t.config.credentials.accessKeyId&&(n.accessKeyId=t.config.credentials.accessKeyId),n}function s(e,t,r){r&&null!=t&&"structure"===r.type&&r.required&&r.required.length>0&&i.arrayEach(r.required,(function(n){var i=r.members[n];if(!0===i.endpointDiscoveryId){var a=i.isLocationName?i.name:n;e[a]=String(t[n])}else s(e,t[n],i)}))}function c(e,t){var r={};return s(r,e.params,t),r}function l(e){var t=e.service,r=t.api,a=r.operations?r.operations[e.operation]:void 0,s=c(e,a?a.input:void 0),l=o(e);Object.keys(s).length>0&&(l=i.update(l,s),a&&(l.operation=a.name));var u=n.endpointCache.get(l);if(!u||1!==u.length||""!==u[0].Address)if(u&&u.length>0)e.httpRequest.updateEndpoint(u[0].Address);else{var p=t.makeRequest(r.endpointOperation,{Operation:a.name,Identifiers:s});d(p),p.removeListener("validate",n.EventListeners.Core.VALIDATE_PARAMETERS),p.removeListener("retry",n.EventListeners.Core.RETRY_CHECK),n.endpointCache.put(l,[{Address:"",CachePeriodInMinutes:1}]),p.send((function(e,t){t&&t.Endpoints?n.endpointCache.put(l,t.Endpoints):e&&n.endpointCache.put(l,[{Address:"",CachePeriodInMinutes:1}])}))}}var u={};function p(e,t){var r=e.service,a=r.api,s=a.operations?a.operations[e.operation]:void 0,l=s?s.input:void 0,p=c(e,l),h=o(e);Object.keys(p).length>0&&(h=i.update(h,p),s&&(h.operation=s.name));var m=n.EndpointCache.getKeyString(h),f=n.endpointCache.get(m);if(f&&1===f.length&&""===f[0].Address)return u[m]||(u[m]=[]),void u[m].push({request:e,callback:t});if(f&&f.length>0)e.httpRequest.updateEndpoint(f[0].Address),t();else{var E=r.makeRequest(a.endpointOperation,{Operation:s.name,Identifiers:p});E.removeListener("validate",n.EventListeners.Core.VALIDATE_PARAMETERS),d(E),n.endpointCache.put(m,[{Address:"",CachePeriodInMinutes:60}]),E.send((function(r,a){if(r){if(e.response.error=i.error(r,{retryable:!1}),n.endpointCache.remove(h),u[m]){var o=u[m];i.arrayEach(o,(function(e){e.request.response.error=i.error(r,{retryable:!1}),e.callback()})),delete u[m]}}else a&&(n.endpointCache.put(m,a.Endpoints),e.httpRequest.updateEndpoint(a.Endpoints[0].Address),u[m])&&(o=u[m],i.arrayEach(o,(function(e){e.request.httpRequest.updateEndpoint(a.Endpoints[0].Address),e.callback()})),delete u[m]);t()}))}}function d(e){var t=e.service.api.apiVersion;t&&!e.httpRequest.headers["x-amz-api-version"]&&(e.httpRequest.headers["x-amz-api-version"]=t)}function h(e){var t=e.error,r=e.httpResponse;if(t&&("InvalidEndpointException"===t.code||421===r.statusCode)){var a=e.request,s=a.service.api.operations||{},l=c(a,s[a.operation]?s[a.operation].input:void 0),u=o(a);Object.keys(l).length>0&&(u=i.update(u,l),s[a.operation]&&(u.operation=s[a.operation].name)),n.endpointCache.remove(u)}}function m(e){return["false","0"].indexOf(e)>=0}e.exports={discoverEndpoint:function(e,t){var r=e.service||{};if(function(e){if(e._originalConfig&&e._originalConfig.endpoint&&!0===e._originalConfig.endpointDiscoveryEnabled)throw i.error(new Error,{code:"ConfigurationException",message:"Custom endpoint is supplied; endpointDiscoveryEnabled must not be true."});var t=n.config[e.serviceIdentifier]||{};return Boolean(n.config.endpoint||t.endpoint||e._originalConfig&&e._originalConfig.endpoint)}(r)||e.isPresigned())return t();var o=(r.api.operations||{})[e.operation],s=o?o.endpointDiscoveryRequired:"NULL",c=function(e){var t=e.service||{};if(void 0!==t.config.endpointDiscoveryEnabled)return t.config.endpointDiscoveryEnabled;if(!i.isBrowser()){for(var r=0;r<a.length;r++){var o=a[r];if(Object.prototype.hasOwnProperty.call(process.env,o)){if(""===process.env[o]||void 0===process.env[o])throw i.error(new Error,{code:"ConfigurationException",message:"environmental variable "+o+" cannot be set to nothing"});return!m(process.env[o])}}var s={};try{s=n.util.iniLoader?n.util.iniLoader.loadFrom({isConfig:!0,filename:process.env[n.util.sharedConfigFileEnv]}):{}}catch(e){}var c=s[process.env.AWS_PROFILE||n.util.defaultProfile]||{};if(Object.prototype.hasOwnProperty.call(c,"endpoint_discovery_enabled")){if(void 0===c.endpoint_discovery_enabled)throw i.error(new Error,{code:"ConfigurationException",message:"config file entry 'endpoint_discovery_enabled' cannot be set to nothing"});return!m(c.endpoint_discovery_enabled)}}}(e),u=r.api.hasRequiredEndpointDiscovery;switch((c||u)&&e.httpRequest.appendToUserAgent("endpoint-discovery"),s){case"OPTIONAL":(c||u)&&(l(e),e.addNamedListener("INVALIDATE_CACHED_ENDPOINTS","extractError",h)),t();break;case"REQUIRED":if(!1===c){e.response.error=i.error(new Error,{code:"ConfigurationException",message:"Endpoint Discovery is disabled but "+r.api.className+"."+e.operation+"() requires it. Please check your configurations."}),t();break}e.addNamedListener("INVALIDATE_CACHED_ENDPOINTS","extractError",h),p(e,t);break;default:t()}},requiredDiscoverEndpoint:p,optionalDiscoverEndpoint:l,marshallCustomIdentifiers:c,getCacheKey:o,invalidateCachedEndpoint:h}},3834:(e,t,r)=>{var n=r(3889).eventMessageChunker,i=r(4406).parseEvent;e.exports={createEventStream:function(e,t,r){for(var a=n(e),o=[],s=0;s<a.length;s++)o.push(i(t,a[s],r));return o}}},3889:e=>{e.exports={eventMessageChunker:function(e){for(var t=[],r=0;r<e.length;){var n=e.readInt32BE(r),i=e.slice(r,n+r);r+=n,t.push(i)}return t}}},3267:(e,t,r)=>{var n=r(2042).util,i=n.buffer.toBuffer;function a(e){if(8!==e.length)throw new Error("Int64 buffers must be exactly 8 bytes");n.Buffer.isBuffer(e)||(e=i(e)),this.bytes=e}function o(e){for(var t=0;t<8;t++)e[t]^=255;for(t=7;t>-1&&(e[t]++,0===e[t]);t--);}a.fromNumber=function(e){if(e>0x8000000000000000||e<-0x8000000000000000)throw new Error(e+" is too large (or, if negative, too small) to represent as an Int64");for(var t=new Uint8Array(8),r=7,n=Math.abs(Math.round(e));r>-1&&n>0;r--,n/=256)t[r]=n;return e<0&&o(t),new a(t)},a.prototype.valueOf=function(){var e=this.bytes.slice(0),t=128&e[0];return t&&o(e),parseInt(e.toString("hex"),16)*(t?-1:1)},a.prototype.toString=function(){return String(this.valueOf())},e.exports={Int64:a}},4406:(e,t,r)=>{var n=r(2820).parseMessage;e.exports={parseEvent:function(e,t,r){var i=n(t),a=i.headers[":message-type"];if(a){if("error"===a.value)throw function(e){var t=e.headers[":error-code"],r=e.headers[":error-message"],n=new Error(r.value||r);return n.code=n.name=t.value||t,n}(i);if("event"!==a.value)return}var o=i.headers[":event-type"],s=r.members[o.value];if(s){var c={},l=s.eventPayloadMemberName;if(l){var u=s.members[l];"binary"===u.type?c[l]=i.body:c[l]=e.parse(i.body.toString(),u)}for(var p=s.eventHeaderMemberNames,d=0;d<p.length;d++){var h=p[d];i.headers[h]&&(c[h]=s.members[h].toType(i.headers[h].value))}var m={};return m[o.value]=c,m}}}},2820:(e,t,r)=>{var n=r(3267).Int64,i=r(6248).splitMessage,a="boolean";function o(e){for(var t={},r=0;r<e.length;){var i=e.readUInt8(r++),o=e.slice(r,r+i).toString();switch(r+=i,e.readUInt8(r++)){case 0:t[o]={type:a,value:!0};break;case 1:t[o]={type:a,value:!1};break;case 2:t[o]={type:"byte",value:e.readInt8(r++)};break;case 3:t[o]={type:"short",value:e.readInt16BE(r)},r+=2;break;case 4:t[o]={type:"integer",value:e.readInt32BE(r)},r+=4;break;case 5:t[o]={type:"long",value:new n(e.slice(r,r+8))},r+=8;break;case 6:var s=e.readUInt16BE(r);r+=2,t[o]={type:"binary",value:e.slice(r,r+s)},r+=s;break;case 7:var c=e.readUInt16BE(r);r+=2,t[o]={type:"string",value:e.slice(r,r+c).toString()},r+=c;break;case 8:t[o]={type:"timestamp",value:new Date(new n(e.slice(r,r+8)).valueOf())},r+=8;break;case 9:var l=e.slice(r,r+16).toString("hex");r+=16,t[o]={type:"uuid",value:l.substr(0,8)+"-"+l.substr(8,4)+"-"+l.substr(12,4)+"-"+l.substr(16,4)+"-"+l.substr(20)};break;default:throw new Error("Unrecognized header type tag")}}return t}e.exports={parseMessage:function(e){var t=i(e);return{headers:o(t.headers),body:t.body}}}},6248:(e,t,r)=>{var n=r(2042).util,i=n.buffer.toBuffer;e.exports={splitMessage:function(e){if(n.Buffer.isBuffer(e)||(e=i(e)),e.length<16)throw new Error("Provided message too short to accommodate event stream message overhead");if(e.length!==e.readUInt32BE(0))throw new Error("Reported message length does not match received message length");var t=e.readUInt32BE(8);if(t!==n.crypto.crc32(e.slice(0,8)))throw new Error("The prelude checksum specified in the message ("+t+") does not match the calculated CRC32 checksum.");var r=e.readUInt32BE(e.length-4);if(r!==n.crypto.crc32(e.slice(0,e.length-4)))throw new Error("The message checksum did not match the expected value of "+r);var a=12+e.readUInt32BE(4);return{headers:e.slice(12,a),body:e.slice(a,e.length-4)}}}},4289:(e,t,r)=>{var n=r(2042),i=r(3991),a=r(7518).discoverEndpoint;function o(e){if(!e.service.api.operations)return"";var t=e.service.api.operations[e.operation];return t?t.authtype:""}function s(e){var t=e.service;return t.config.signatureVersion?t.config.signatureVersion:t.api.signatureVersion?t.api.signatureVersion:o(e)}n.EventListeners={Core:{}},n.EventListeners={Core:(new i).addNamedListeners((function(e,t){t("VALIDATE_CREDENTIALS","validate",(function(e,t){if(!e.service.api.signatureVersion&&!e.service.config.signatureVersion)return t();"bearer"!==s(e)?e.service.config.getCredentials((function(r){r&&(e.response.error=n.util.error(r,{code:"CredentialsError",message:"Missing credentials in config, if using AWS_CONFIG_FILE, set AWS_SDK_LOAD_CONFIG=1"})),t()})):e.service.config.getToken((function(r){r&&(e.response.error=n.util.error(r,{code:"TokenError"})),t()}))})),e("VALIDATE_REGION","validate",(function(e){if(!e.service.isGlobalEndpoint){var t=new RegExp(/^([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9])$/);e.service.config.region?t.test(e.service.config.region)||(e.response.error=n.util.error(new Error,{code:"ConfigError",message:"Invalid region in config"})):e.response.error=n.util.error(new Error,{code:"ConfigError",message:"Missing region in config"})}})),e("BUILD_IDEMPOTENCY_TOKENS","validate",(function(e){if(e.service.api.operations){var t=e.service.api.operations[e.operation];if(t){var r=t.idempotentMembers;if(r.length){for(var i=n.util.copy(e.params),a=0,o=r.length;a<o;a++)i[r[a]]||(i[r[a]]=n.util.uuid.v4());e.params=i}}}})),e("VALIDATE_PARAMETERS","validate",(function(e){if(e.service.api.operations){var t=e.service.api.operations[e.operation].input,r=e.service.config.paramValidation;new n.ParamValidator(r).validate(t,e.params)}})),e("COMPUTE_CHECKSUM","afterBuild",(function(e){if(e.service.api.operations){var t=e.service.api.operations[e.operation];if(t){var r=e.httpRequest.body,i=r&&(n.util.Buffer.isBuffer(r)||"string"==typeof r),a=e.httpRequest.headers;if(t.httpChecksumRequired&&e.service.config.computeChecksums&&i&&!a["Content-MD5"]){var o=n.util.crypto.md5(r,"base64");a["Content-MD5"]=o}}}})),t("COMPUTE_SHA256","afterBuild",(function(e,t){if(e.haltHandlersOnError(),e.service.api.operations){var r=e.service.api.operations[e.operation],i=r?r.authtype:"";if(!e.service.api.signatureVersion&&!i&&!e.service.config.signatureVersion)return t();if(e.service.getSignerClass(e)===n.Signers.V4){var a=e.httpRequest.body||"";if(i.indexOf("unsigned-body")>=0)return e.httpRequest.headers["X-Amz-Content-Sha256"]="UNSIGNED-PAYLOAD",t();n.util.computeSha256(a,(function(r,n){r?t(r):(e.httpRequest.headers["X-Amz-Content-Sha256"]=n,t())}))}else t()}})),e("SET_CONTENT_LENGTH","afterBuild",(function(e){var t=o(e),r=n.util.getRequestPayloadShape(e);if(void 0===e.httpRequest.headers["Content-Length"])try{var i=n.util.string.byteLength(e.httpRequest.body);e.httpRequest.headers["Content-Length"]=i}catch(n){if(r&&r.isStreaming){if(r.requiresLength)throw n;if(t.indexOf("unsigned-body")>=0)return void(e.httpRequest.headers["Transfer-Encoding"]="chunked");throw n}throw n}})),e("SET_HTTP_HOST","afterBuild",(function(e){e.httpRequest.headers.Host=e.httpRequest.endpoint.host})),e("SET_TRACE_ID","afterBuild",(function(e){var t="X-Amzn-Trace-Id";if(n.util.isNode()&&!Object.hasOwnProperty.call(e.httpRequest.headers,t)){var r=process.env.AWS_LAMBDA_FUNCTION_NAME,i=process.env._X_AMZN_TRACE_ID;"string"==typeof r&&r.length>0&&"string"==typeof i&&i.length>0&&(e.httpRequest.headers[t]=i)}})),e("RESTART","restart",(function(){var e=this.response.error;e&&e.retryable&&(this.httpRequest=new n.HttpRequest(this.service.endpoint,this.service.region),this.response.retryCount<this.service.config.maxRetries?this.response.retryCount++:this.response.error=null)})),t("DISCOVER_ENDPOINT","sign",a,!0),t("SIGN","sign",(function(e,t){var r=e.service,n=s(e);if(!n||0===n.length)return t();"bearer"===n?r.config.getToken((function(n,i){if(n)return e.response.error=n,t();try{new(r.getSignerClass(e))(e.httpRequest).addAuthorization(i)}catch(t){e.response.error=t}t()})):r.config.getCredentials((function(n,i){if(n)return e.response.error=n,t();try{var a=r.getSkewCorrectedDate(),o=r.getSignerClass(e),s=(e.service.api.operations||{})[e.operation],c=new o(e.httpRequest,r.getSigningName(e),{signatureCache:r.config.signatureCache,operation:s,signatureVersion:r.api.signatureVersion});c.setServiceClientId(r._clientId),delete e.httpRequest.headers.Authorization,delete e.httpRequest.headers.Date,delete e.httpRequest.headers["X-Amz-Date"],c.addAuthorization(i,a),e.signedAt=a}catch(t){e.response.error=t}t()}))})),e("VALIDATE_RESPONSE","validateResponse",(function(e){this.service.successfulResponse(e,this)?(e.data={},e.error=null):(e.data=null,e.error=n.util.error(new Error,{code:"UnknownError",message:"An unknown error occurred."}))})),e("ERROR","error",(function(e,t){if(t.request.service.api.awsQueryCompatible){var r=t.httpResponse.headers,n=r?r["x-amzn-query-error"]:void 0;n&&n.includes(";")&&(t.error.code=n.split(";")[0])}}),!0),t("SEND","send",(function(e,t){function r(r){e.httpResponse.stream=r;var i=e.request.httpRequest.stream,a=e.request.service,o=a.api,s=e.request.operation,c=o.operations[s]||{};r.on("headers",(function(i,o,s){if(e.request.emit("httpHeaders",[i,o,e,s]),!e.httpResponse.streaming)if(2===n.HttpClient.streamsApiVersion){if(c.hasEventOutput&&a.successfulResponse(e))return e.request.emit("httpDone"),void t();r.on("readable",(function(){var t=r.read();null!==t&&e.request.emit("httpData",[t,e])}))}else r.on("data",(function(t){e.request.emit("httpData",[t,e])}))})),r.on("end",(function(){if(!i||!i.didCallback){if(2===n.HttpClient.streamsApiVersion&&c.hasEventOutput&&a.successfulResponse(e))return;e.request.emit("httpDone"),t()}}))}function i(r){if("RequestAbortedError"!==r.code){var i="TimeoutError"===r.code?r.code:"NetworkingError";r=n.util.error(r,{code:i,region:e.request.httpRequest.region,hostname:e.request.httpRequest.endpoint.hostname,retryable:!0})}e.error=r,e.request.emit("httpError",[e.error,e],(function(){t()}))}function a(){var t,a=n.HttpClient.getInstance(),o=e.request.service.config.httpOptions||{};try{(t=a.handleRequest(e.request.httpRequest,o,r,i)).on("sendProgress",(function(t){e.request.emit("httpUploadProgress",[t,e])})),t.on("receiveProgress",(function(t){e.request.emit("httpDownloadProgress",[t,e])}))}catch(e){i(e)}}e.httpResponse._abortCallback=t,e.error=null,e.data=null,(e.request.service.getSkewCorrectedDate()-this.signedAt)/1e3>=600?this.emit("sign",[this],(function(e){e?t(e):a()})):a()})),e("HTTP_HEADERS","httpHeaders",(function(e,t,r,i){r.httpResponse.statusCode=e,r.httpResponse.statusMessage=i,r.httpResponse.headers=t,r.httpResponse.body=n.util.buffer.toBuffer(""),r.httpResponse.buffers=[],r.httpResponse.numBytes=0;var a=t.date||t.Date,o=r.request.service;if(a){var s=Date.parse(a);o.config.correctClockSkew&&o.isClockSkewed(s)&&o.applyClockOffset(s)}})),e("HTTP_DATA","httpData",(function(e,t){if(e){if(n.util.isNode()){t.httpResponse.numBytes+=e.length;var r=t.httpResponse.headers["content-length"],i={loaded:t.httpResponse.numBytes,total:r};t.request.emit("httpDownloadProgress",[i,t])}t.httpResponse.buffers.push(n.util.buffer.toBuffer(e))}})),e("HTTP_DONE","httpDone",(function(e){if(e.httpResponse.buffers&&e.httpResponse.buffers.length>0){var t=n.util.buffer.concat(e.httpResponse.buffers);e.httpResponse.body=t}delete e.httpResponse.numBytes,delete e.httpResponse.buffers})),e("FINALIZE_ERROR","retry",(function(e){e.httpResponse.statusCode&&(e.error.statusCode=e.httpResponse.statusCode,void 0===e.error.retryable&&(e.error.retryable=this.service.retryableError(e.error,this)))})),e("INVALIDATE_CREDENTIALS","retry",(function(e){if(e.error)switch(e.error.code){case"RequestExpired":case"ExpiredTokenException":case"ExpiredToken":e.error.retryable=!0,e.request.service.config.credentials.expired=!0}})),e("EXPIRED_SIGNATURE","retry",(function(e){var t=e.error;t&&"string"==typeof t.code&&"string"==typeof t.message&&t.code.match(/Signature/)&&t.message.match(/expired/)&&(e.error.retryable=!0)})),e("CLOCK_SKEWED","retry",(function(e){e.error&&this.service.clockSkewError(e.error)&&this.service.config.correctClockSkew&&(e.error.retryable=!0)})),e("REDIRECT","retry",(function(e){e.error&&e.error.statusCode>=300&&e.error.statusCode<400&&e.httpResponse.headers.location&&(this.httpRequest.endpoint=new n.Endpoint(e.httpResponse.headers.location),this.httpRequest.headers.Host=this.httpRequest.endpoint.host,e.error.redirect=!0,e.error.retryable=!0)})),e("RETRY_CHECK","retry",(function(e){e.error&&(e.error.redirect&&e.redirectCount<e.maxRedirects?e.error.retryDelay=0:e.retryCount<e.maxRetries&&(e.error.retryDelay=this.service.retryDelays(e.retryCount,e.error)||0))})),t("RESET_RETRY_STATE","afterRetry",(function(e,t){var r,n=!1;e.error&&(r=e.error.retryDelay||0,e.error.retryable&&e.retryCount<e.maxRetries?(e.retryCount++,n=!0):e.error.redirect&&e.redirectCount<e.maxRedirects&&(e.redirectCount++,n=!0)),n&&r>=0?(e.error=null,setTimeout(t,r)):t()}))})),CorePost:(new i).addNamedListeners((function(e){e("EXTRACT_REQUEST_ID","extractData",n.util.extractRequestId),e("EXTRACT_REQUEST_ID","extractError",n.util.extractRequestId),e("ENOTFOUND_ERROR","httpError",(function(e){if("NetworkingError"===e.code&&function(e){return"ENOTFOUND"===e.errno||"number"==typeof e.errno&&"function"==typeof n.util.getSystemErrorName&&["EAI_NONAME","EAI_NODATA"].indexOf(n.util.getSystemErrorName(e.errno)>=0)}(e)){var t="Inaccessible host: `"+e.hostname+"' at port `"+e.port+"'. This service may not be available in the `"+e.region+"' region.";this.response.error=n.util.error(new Error(t),{code:"UnknownEndpoint",region:e.region,hostname:e.hostname,retryable:!0,originalError:e})}}))})),Logger:(new i).addNamedListeners((function(e){e("LOG_REQUEST","complete",(function(e){var t=e.request,i=t.service.config.logger;if(i){var a=function(){var a=(e.request.service.getSkewCorrectedDate().getTime()-t.startTime.getTime())/1e3,s=!!i.isTTY,c=e.httpResponse.statusCode,l=t.params;t.service.api.operations&&t.service.api.operations[t.operation]&&t.service.api.operations[t.operation].input&&(l=o(t.service.api.operations[t.operation].input,t.params));var u=r(1323).inspect(l,!0,null),p="";return s&&(p+="[33m"),p+="[AWS "+t.service.serviceIdentifier+" "+c,p+=" "+a.toString()+"s "+e.retryCount+" retries]",s&&(p+="[0;1m"),p+=" "+n.util.string.lowerFirst(t.operation),p+="("+u+")",s&&(p+="[0m"),p}();"function"==typeof i.log?i.log(a):"function"==typeof i.write&&i.write(a+"\n")}function o(e,t){if(!t)return t;if(e.isSensitive)return"***SensitiveInformation***";switch(e.type){case"structure":var r={};return n.util.each(t,(function(t,n){Object.prototype.hasOwnProperty.call(e.members,t)?r[t]=o(e.members[t],n):r[t]=n})),r;case"list":var i=[];return n.util.arrayEach(t,(function(t,r){i.push(o(e.member,t))})),i;case"map":var a={};return n.util.each(t,(function(t,r){a[t]=o(e.value,r)})),a;default:return t}}}))})),Json:(new i).addNamedListeners((function(e){var t=r(350);e("BUILD","build",t.buildRequest),e("EXTRACT_DATA","extractData",t.extractData),e("EXTRACT_ERROR","extractError",t.extractError)})),Rest:(new i).addNamedListeners((function(e){var t=r(161);e("BUILD","build",t.buildRequest),e("EXTRACT_DATA","extractData",t.extractData),e("EXTRACT_ERROR","extractError",t.extractError)})),RestJson:(new i).addNamedListeners((function(e){var t=r(5810);e("BUILD","build",t.buildRequest),e("EXTRACT_DATA","extractData",t.extractData),e("EXTRACT_ERROR","extractError",t.extractError),e("UNSET_CONTENT_LENGTH","afterBuild",t.unsetContentLength)})),RestXml:(new i).addNamedListeners((function(e){var t=r(8677);e("BUILD","build",t.buildRequest),e("EXTRACT_DATA","extractData",t.extractData),e("EXTRACT_ERROR","extractError",t.extractError)})),Query:(new i).addNamedListeners((function(e){var t=r(2507);e("BUILD","build",t.buildRequest),e("EXTRACT_DATA","extractData",t.extractData),e("EXTRACT_ERROR","extractError",t.extractError)}))}},5787:(e,t,r)=>{var n=r(2042),i=n.util.inherit;n.Endpoint=i({constructor:function(e,t){if(n.util.hideProperties(this,["slashes","auth","hash","search","query"]),null==e)throw new Error("Invalid endpoint: "+e);if("string"!=typeof e)return n.util.copy(e);e.match(/^http/)||(e=((t&&void 0!==t.sslEnabled?t.sslEnabled:n.config.sslEnabled)?"https":"http")+"://"+e),n.util.update(this,n.util.urlParse(e)),this.port?this.port=parseInt(this.port,10):this.port="https:"===this.protocol?443:80}}),n.HttpRequest=i({constructor:function(e,t){e=new n.Endpoint(e),this.method="POST",this.path=e.path||"/",this.headers={},this.body="",this.endpoint=e,this.region=t,this._userAgent="",this.setUserAgent()},setUserAgent:function(){this._userAgent=this.headers[this.getUserAgentHeaderName()]=n.util.userAgent()},getUserAgentHeaderName:function(){return(n.util.isBrowser()?"X-Amz-":"")+"User-Agent"},appendToUserAgent:function(e){"string"==typeof e&&e&&(this._userAgent+=" "+e),this.headers[this.getUserAgentHeaderName()]=this._userAgent},getUserAgent:function(){return this._userAgent},pathname:function(){return this.path.split("?",1)[0]},search:function(){var e=this.path.split("?",2)[1];return e?(e=n.util.queryStringParse(e),n.util.queryParamsToString(e)):""},updateEndpoint:function(e){var t=new n.Endpoint(e);this.endpoint=t,this.path=t.path||"/",this.headers.Host&&(this.headers.Host=t.host)}}),n.HttpResponse=i({constructor:function(){this.statusCode=void 0,this.headers={},this.body=void 0,this.streaming=!1,this.stream=null},createUnbufferedStream:function(){return this.streaming=!0,this.stream}}),n.HttpClient=i({}),n.HttpClient.getInstance=function(){return void 0===this.singleton&&(this.singleton=new this),this.singleton}},1251:(e,t,r)=>{var n=r(2042),i=r(343).EventEmitter;r(5787),n.XHRClient=n.util.inherit({handleRequest:function(e,t,r,a){var o=this,s=e.endpoint,c=new i,l=s.protocol+"//"+s.hostname;80!==s.port&&443!==s.port&&(l+=":"+s.port),l+=e.path;var u=new XMLHttpRequest,p=!1;e.stream=u,u.addEventListener("readystatechange",(function(){try{if(0===u.status)return}catch(e){return}this.readyState>=this.HEADERS_RECEIVED&&!p&&(c.statusCode=u.status,c.headers=o.parseHeaders(u.getAllResponseHeaders()),c.emit("headers",c.statusCode,c.headers,u.statusText),p=!0),this.readyState===this.DONE&&o.finishRequest(u,c)}),!1),u.upload.addEventListener("progress",(function(e){c.emit("sendProgress",e)})),u.addEventListener("progress",(function(e){c.emit("receiveProgress",e)}),!1),u.addEventListener("timeout",(function(){a(n.util.error(new Error("Timeout"),{code:"TimeoutError"}))}),!1),u.addEventListener("error",(function(){a(n.util.error(new Error("Network Failure"),{code:"NetworkingError"}))}),!1),u.addEventListener("abort",(function(){a(n.util.error(new Error("Request aborted"),{code:"RequestAbortedError"}))}),!1),r(c),u.open(e.method,l,!1!==t.xhrAsync),n.util.each(e.headers,(function(e,t){"Content-Length"!==e&&"User-Agent"!==e&&"Host"!==e&&u.setRequestHeader(e,t)})),t.timeout&&!1!==t.xhrAsync&&(u.timeout=t.timeout),t.xhrWithCredentials&&(u.withCredentials=!0);try{u.responseType="arraybuffer"}catch(e){}try{e.body?u.send(e.body):u.send()}catch(t){if(!e.body||"object"!=typeof e.body.buffer)throw t;u.send(e.body.buffer)}return c},parseHeaders:function(e){var t={};return n.util.arrayEach(e.split(/\r?\n/),(function(e){var r=e.split(":",1)[0],n=e.substring(r.length+2);r.length>0&&(t[r.toLowerCase()]=n)})),t},finishRequest:function(e,t){var r;if("arraybuffer"===e.responseType&&e.response){var i=e.response;r=new n.util.Buffer(i.byteLength);for(var a=new Uint8Array(i),o=0;o<r.length;++o)r[o]=a[o]}try{r||"string"!=typeof e.responseText||(r=new n.util.Buffer(e.responseText))}catch(e){}r&&t.emit("data",r),t.emit("end")}}),n.HttpClient.prototype=n.XHRClient.prototype,n.HttpClient.streamsApiVersion=1},4354:(e,t,r)=>{var n=r(3444);function i(){}function a(e,t){if(t&&null!=e)switch(t.type){case"structure":return function(e,t){if(t.isDocument)return e;var r={};return n.each(e,(function(e,n){var i=t.members[e];if(i){if("body"!==i.location)return;var o=i.isLocationName?i.name:e,s=a(n,i);void 0!==s&&(r[o]=s)}})),r}(e,t);case"map":return function(e,t){var r={};return n.each(e,(function(e,n){var i=a(n,t.value);void 0!==i&&(r[e]=i)})),r}(e,t);case"list":return function(e,t){var r=[];return n.arrayEach(e,(function(e){var n=a(e,t.member);void 0!==n&&r.push(n)})),r}(e,t);default:return function(e,t){return t.toWireFormat(e)}(e,t)}}i.prototype.build=function(e,t){return JSON.stringify(a(e,t))},e.exports=i},3006:(e,t,r)=>{var n=r(3444);function i(){}function a(e,t){if(t&&void 0!==e)switch(t.type){case"structure":return function(e,t){if(null!=e){if(t.isDocument)return e;var r={},i=t.members,o=t.api&&t.api.awsQueryCompatible;return n.each(i,(function(t,n){var i=n.isLocationName?n.name:t;if(Object.prototype.hasOwnProperty.call(e,i)){var s=a(e[i],n);void 0!==s&&(r[t]=s)}else o&&n.defaultValue&&"list"===n.type&&(r[t]="function"==typeof n.defaultValue?n.defaultValue():n.defaultValue)})),r}}(e,t);case"map":return function(e,t){if(null!=e){var r={};return n.each(e,(function(e,n){var i=a(n,t.value);r[e]=void 0===i?null:i})),r}}(e,t);case"list":return function(e,t){if(null!=e){var r=[];return n.arrayEach(e,(function(e){var n=a(e,t.member);void 0===n?r.push(null):r.push(n)})),r}}(e,t);default:return function(e,t){return t.toType(e)}(e,t)}}i.prototype.parse=function(e,t){return a(JSON.parse(e),t)},e.exports=i},5395:e=>{var t=["We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023.\n","Please migrate your code to use AWS SDK for JavaScript (v3).","For more information, check the migration guide at https://a.co/7PzMCcy"].join("\n");e.exports={suppress:!1},setTimeout((function(){e.exports.suppress||"undefined"!=typeof process&&("object"==typeof process.env&&void 0!==process.env.AWS_EXECUTION_ENV&&0===process.env.AWS_EXECUTION_ENV.indexOf("AWS_Lambda_")||"object"==typeof process.env&&void 0!==process.env.AWS_SDK_JS_SUPPRESS_MAINTENANCE_MODE_MESSAGE||"function"==typeof process.emitWarning&&process.emitWarning(t,{type:"NOTE"}))}),0)},3607:(e,t,r)=>{var n=r(4861),i=r(1),a=r(4669),o=r(412),s=r(9837),c=r(2077),l=r(3444),u=l.property,p=l.memoizedProperty;e.exports=function(e,t){var r=this;e=e||{},(t=t||{}).api=this,e.metadata=e.metadata||{};var d=t.serviceIdentifier;delete t.serviceIdentifier,u(this,"isApi",!0,!1),u(this,"apiVersion",e.metadata.apiVersion),u(this,"endpointPrefix",e.metadata.endpointPrefix),u(this,"signingName",e.metadata.signingName),u(this,"globalEndpoint",e.metadata.globalEndpoint),u(this,"signatureVersion",e.metadata.signatureVersion),u(this,"jsonVersion",e.metadata.jsonVersion),u(this,"targetPrefix",e.metadata.targetPrefix),u(this,"protocol",e.metadata.protocol),u(this,"timestampFormat",e.metadata.timestampFormat),u(this,"xmlNamespaceUri",e.metadata.xmlNamespace),u(this,"abbreviation",e.metadata.serviceAbbreviation),u(this,"fullName",e.metadata.serviceFullName),u(this,"serviceId",e.metadata.serviceId),d&&c[d]&&u(this,"xmlNoDefaultLists",c[d].xmlNoDefaultLists,!1),p(this,"className",(function(){var t=e.metadata.serviceAbbreviation||e.metadata.serviceFullName;return t?("ElasticLoadBalancing"===(t=t.replace(/^Amazon|AWS\s*|\(.*|\s+|\W+/g,""))&&(t="ELB"),t):null})),u(this,"operations",new n(e.operations,t,(function(e,r){return new i(e,r,t)}),l.string.lowerFirst,(function(e,t){!0===t.endpointoperation&&u(r,"endpointOperation",l.string.lowerFirst(e)),t.endpointdiscovery&&!r.hasRequiredEndpointDiscovery&&u(r,"hasRequiredEndpointDiscovery",!0===t.endpointdiscovery.required)}))),u(this,"shapes",new n(e.shapes,t,(function(e,r){return a.create(r,t)}))),u(this,"paginators",new n(e.paginators,t,(function(e,r){return new o(e,r,t)}))),u(this,"waiters",new n(e.waiters,t,(function(e,r){return new s(e,r,t)}),l.string.lowerFirst)),t.documentation&&(u(this,"documentation",e.documentation),u(this,"documentationUrl",e.documentationUrl)),u(this,"awsQueryCompatible",e.metadata.awsQueryCompatible)}},4861:(e,t,r)=>{var n=r(3444).memoizedProperty;function i(e,t,r,i){n(this,i(e),(function(){return r(e,t)}))}e.exports=function(e,t,r,n,a){for(var o in n=n||String,e)Object.prototype.hasOwnProperty.call(e,o)&&(i.call(this,o,e[o],r,n),a&&a(o,e[o]))}},1:(e,t,r)=>{var n=r(4669),i=r(3444),a=i.property,o=i.memoizedProperty;e.exports=function(e,t,r){var i=this;r=r||{},a(this,"name",t.name||e),a(this,"api",r.api,!1),t.http=t.http||{},a(this,"endpoint",t.endpoint),a(this,"httpMethod",t.http.method||"POST"),a(this,"httpPath",t.http.requestUri||"/"),a(this,"authtype",t.authtype||""),a(this,"endpointDiscoveryRequired",t.endpointdiscovery?t.endpointdiscovery.required?"REQUIRED":"OPTIONAL":"NULL");var s=t.httpChecksumRequired||t.httpChecksum&&t.httpChecksum.requestChecksumRequired;a(this,"httpChecksumRequired",s,!1),o(this,"input",(function(){return t.input?n.create(t.input,r):new n.create({type:"structure"},r)})),o(this,"output",(function(){return t.output?n.create(t.output,r):new n.create({type:"structure"},r)})),o(this,"errors",(function(){var e=[];if(!t.errors)return null;for(var i=0;i<t.errors.length;i++)e.push(n.create(t.errors[i],r));return e})),o(this,"paginator",(function(){return r.api.paginators[e]})),r.documentation&&(a(this,"documentation",t.documentation),a(this,"documentationUrl",t.documentationUrl)),o(this,"idempotentMembers",(function(){var e=[],t=i.input,r=t.members;if(!t.members)return e;for(var n in r)r.hasOwnProperty(n)&&!0===r[n].isIdempotent&&e.push(n);return e})),o(this,"hasEventOutput",(function(){return function(e){var t=e.members,r=e.payload;if(!e.members)return!1;if(r)return t[r].isEventStream;for(var n in t)if(!t.hasOwnProperty(n)&&!0===t[n].isEventStream)return!0;return!1}(i.output)}))}},412:(e,t,r)=>{var n=r(3444).property;e.exports=function(e,t){n(this,"inputToken",t.input_token),n(this,"limitKey",t.limit_key),n(this,"moreResults",t.more_results),n(this,"outputToken",t.output_token),n(this,"resultKey",t.result_key)}},9837:(e,t,r)=>{var n=r(3444),i=n.property;e.exports=function(e,t,r){r=r||{},i(this,"name",e),i(this,"api",r.api,!1),t.operation&&i(this,"operation",n.string.lowerFirst(t.operation));var a=this;["type","description","delay","maxAttempts","acceptors"].forEach((function(e){var r=t[e];r&&i(a,e,r)}))}},4669:(e,t,r)=>{var n=r(4861),i=r(3444);function a(e,t,r){null!=r&&i.property.apply(this,arguments)}function o(e,t){e.constructor.prototype[t]||i.memoizedProperty.apply(this,arguments)}function s(e,t,r){t=t||{},a(this,"shape",e.shape),a(this,"api",t.api,!1),a(this,"type",e.type),a(this,"enum",e.enum),a(this,"min",e.min),a(this,"max",e.max),a(this,"pattern",e.pattern),a(this,"location",e.location||this.location||"body"),a(this,"name",this.name||e.xmlName||e.queryName||e.locationName||r),a(this,"isStreaming",e.streaming||this.isStreaming||!1),a(this,"requiresLength",e.requiresLength,!1),a(this,"isComposite",e.isComposite||!1),a(this,"isShape",!0,!1),a(this,"isQueryName",Boolean(e.queryName),!1),a(this,"isLocationName",Boolean(e.locationName),!1),a(this,"isIdempotent",!0===e.idempotencyToken),a(this,"isJsonValue",!0===e.jsonvalue),a(this,"isSensitive",!0===e.sensitive||e.prototype&&!0===e.prototype.sensitive),a(this,"isEventStream",Boolean(e.eventstream),!1),a(this,"isEvent",Boolean(e.event),!1),a(this,"isEventPayload",Boolean(e.eventpayload),!1),a(this,"isEventHeader",Boolean(e.eventheader),!1),a(this,"isTimestampFormatSet",Boolean(e.timestampFormat)||e.prototype&&!0===e.prototype.isTimestampFormatSet,!1),a(this,"endpointDiscoveryId",Boolean(e.endpointdiscoveryid),!1),a(this,"hostLabel",Boolean(e.hostLabel),!1),t.documentation&&(a(this,"documentation",e.documentation),a(this,"documentationUrl",e.documentationUrl)),e.xmlAttribute&&a(this,"isXmlAttribute",e.xmlAttribute||!1),a(this,"defaultValue",null),this.toWireFormat=function(e){return null==e?"":e},this.toType=function(e){return e}}function c(e){s.apply(this,arguments),a(this,"isComposite",!0),e.flattened&&a(this,"flattened",e.flattened||!1)}function l(e,t){var r=this,i=null,l=!this.isShape;c.apply(this,arguments),l&&(a(this,"defaultValue",(function(){return{}})),a(this,"members",{}),a(this,"memberNames",[]),a(this,"required",[]),a(this,"isRequired",(function(){return!1})),a(this,"isDocument",Boolean(e.document))),e.members&&(a(this,"members",new n(e.members,t,(function(e,r){return s.create(r,t,e)}))),o(this,"memberNames",(function(){return e.xmlOrder||Object.keys(e.members)})),e.event&&(o(this,"eventPayloadMemberName",(function(){for(var e=r.members,t=r.memberNames,n=0,i=t.length;n<i;n++)if(e[t[n]].isEventPayload)return t[n]})),o(this,"eventHeaderMemberNames",(function(){for(var e=r.members,t=r.memberNames,n=[],i=0,a=t.length;i<a;i++)e[t[i]].isEventHeader&&n.push(t[i]);return n})))),e.required&&(a(this,"required",e.required),a(this,"isRequired",(function(t){if(!i){i={};for(var r=0;r<e.required.length;r++)i[e.required[r]]=!0}return i[t]}),!1,!0)),a(this,"resultWrapper",e.resultWrapper||null),e.payload&&a(this,"payload",e.payload),"string"==typeof e.xmlNamespace?a(this,"xmlNamespaceUri",e.xmlNamespace):"object"==typeof e.xmlNamespace&&(a(this,"xmlNamespacePrefix",e.xmlNamespace.prefix),a(this,"xmlNamespaceUri",e.xmlNamespace.uri))}function u(e,t){var r=this,n=!this.isShape;if(c.apply(this,arguments),n&&a(this,"defaultValue",(function(){return[]})),e.member&&o(this,"member",(function(){return s.create(e.member,t)})),this.flattened){var i=this.name;o(this,"name",(function(){return r.member.name||i}))}}function p(e,t){var r=!this.isShape;c.apply(this,arguments),r&&(a(this,"defaultValue",(function(){return{}})),a(this,"key",s.create({type:"string"},t)),a(this,"value",s.create({type:"string"},t))),e.key&&o(this,"key",(function(){return s.create(e.key,t)})),e.value&&o(this,"value",(function(){return s.create(e.value,t)}))}function d(){s.apply(this,arguments);var e=["rest-xml","query","ec2"];this.toType=function(t){return t=this.api&&e.indexOf(this.api.protocol)>-1?t||"":t,this.isJsonValue?JSON.parse(t):t&&"function"==typeof t.toString?t.toString():t},this.toWireFormat=function(e){return this.isJsonValue?JSON.stringify(e):e}}function h(){s.apply(this,arguments),this.toType=function(e){var t=i.base64.decode(e);if(this.isSensitive&&i.isNode()&&"function"==typeof i.Buffer.alloc){var r=i.Buffer.alloc(t.length,t);t.fill(0),t=r}return t},this.toWireFormat=i.base64.encode}function m(){h.apply(this,arguments)}function f(){s.apply(this,arguments),this.toType=function(e){return"boolean"==typeof e?e:null==e?null:"true"===e}}s.normalizedTypes={character:"string",double:"float",long:"integer",short:"integer",biginteger:"integer",bigdecimal:"float",blob:"binary"},s.types={structure:l,list:u,map:p,boolean:f,timestamp:function(e){var t=this;if(s.apply(this,arguments),e.timestampFormat)a(this,"timestampFormat",e.timestampFormat);else if(t.isTimestampFormatSet&&this.timestampFormat)a(this,"timestampFormat",this.timestampFormat);else if("header"===this.location)a(this,"timestampFormat","rfc822");else if("querystring"===this.location)a(this,"timestampFormat","iso8601");else if(this.api)switch(this.api.protocol){case"json":case"rest-json":a(this,"timestampFormat","unixTimestamp");break;case"rest-xml":case"query":case"ec2":a(this,"timestampFormat","iso8601")}this.toType=function(e){return null==e?null:"function"==typeof e.toUTCString?e:"string"==typeof e||"number"==typeof e?i.date.parseTimestamp(e):null},this.toWireFormat=function(e){return i.date.format(e,t.timestampFormat)}},float:function(){s.apply(this,arguments),this.toType=function(e){return null==e?null:parseFloat(e)},this.toWireFormat=this.toType},integer:function(){s.apply(this,arguments),this.toType=function(e){return null==e?null:parseInt(e,10)},this.toWireFormat=this.toType},string:d,base64:m,binary:h},s.resolve=function(e,t){if(e.shape){var r=t.api.shapes[e.shape];if(!r)throw new Error("Cannot find shape reference: "+e.shape);return r}return null},s.create=function(e,t,r){if(e.isShape)return e;var n=s.resolve(e,t);if(n){var i=Object.keys(e);t.documentation||(i=i.filter((function(e){return!e.match(/documentation/)})));var a=function(){n.constructor.call(this,e,t,r)};return a.prototype=n,new a}e.type||(e.members?e.type="structure":e.member?e.type="list":e.key?e.type="map":e.type="string");var o=e.type;if(s.normalizedTypes[e.type]&&(e.type=s.normalizedTypes[e.type]),s.types[e.type])return new s.types[e.type](e,t,r);throw new Error("Unrecognized shape type: "+o)},s.shapes={StructureShape:l,ListShape:u,MapShape:p,StringShape:d,BooleanShape:f,Base64Shape:m},e.exports=s},5911:(e,t,r)=>{var n=r(2042);n.ParamValidator=n.util.inherit({constructor:function(e){!0!==e&&void 0!==e||(e={min:!0}),this.validation=e},validate:function(e,t,r){if(this.errors=[],this.validateMember(e,t||{},r||"params"),this.errors.length>1){var i=this.errors.join("\n* ");throw i="There were "+this.errors.length+" validation errors:\n* "+i,n.util.error(new Error(i),{code:"MultipleValidationErrors",errors:this.errors})}if(1===this.errors.length)throw this.errors[0];return!0},fail:function(e,t){this.errors.push(n.util.error(new Error(t),{code:e}))},validateStructure:function(e,t,r){if(e.isDocument)return!0;var n;this.validateType(t,r,["object"],"structure");for(var i=0;e.required&&i<e.required.length;i++){null==t[n=e.required[i]]&&this.fail("MissingRequiredParameter","Missing required key '"+n+"' in "+r)}for(n in t)if(Object.prototype.hasOwnProperty.call(t,n)){var a=t[n],o=e.members[n];if(void 0!==o){var s=[r,n].join(".");this.validateMember(o,a,s)}else null!=a&&this.fail("UnexpectedParameter","Unexpected key '"+n+"' found in "+r)}return!0},validateMember:function(e,t,r){switch(e.type){case"structure":return this.validateStructure(e,t,r);case"list":return this.validateList(e,t,r);case"map":return this.validateMap(e,t,r);default:return this.validateScalar(e,t,r)}},validateList:function(e,t,r){if(this.validateType(t,r,[Array])){this.validateRange(e,t.length,r,"list member count");for(var n=0;n<t.length;n++)this.validateMember(e.member,t[n],r+"["+n+"]")}},validateMap:function(e,t,r){if(this.validateType(t,r,["object"],"map")){var n=0;for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&(this.validateMember(e.key,i,r+"[key='"+i+"']"),this.validateMember(e.value,t[i],r+"['"+i+"']"),n++);this.validateRange(e,n,r,"map member count")}},validateScalar:function(e,t,r){switch(e.type){case null:case void 0:case"string":return this.validateString(e,t,r);case"base64":case"binary":return this.validatePayload(t,r);case"integer":case"float":return this.validateNumber(e,t,r);case"boolean":return this.validateType(t,r,["boolean"]);case"timestamp":return this.validateType(t,r,[Date,/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?Z$/,"number"],"Date object, ISO-8601 string, or a UNIX timestamp");default:return this.fail("UnkownType","Unhandled type "+e.type+" for "+r)}},validateString:function(e,t,r){var n=["string"];e.isJsonValue&&(n=n.concat(["number","object","boolean"])),null!==t&&this.validateType(t,r,n)&&(this.validateEnum(e,t,r),this.validateRange(e,t.length,r,"string length"),this.validatePattern(e,t,r),this.validateUri(e,t,r))},validateUri:function(e,t,r){"uri"===e.location&&0===t.length&&this.fail("UriParameterError",'Expected uri parameter to have length >= 1, but found "'+t+'" for '+r)},validatePattern:function(e,t,r){this.validation.pattern&&void 0!==e.pattern&&(new RegExp(e.pattern).test(t)||this.fail("PatternMatchError",'Provided value "'+t+'" does not match regex pattern /'+e.pattern+"/ for "+r))},validateRange:function(e,t,r,n){this.validation.min&&void 0!==e.min&&t<e.min&&this.fail("MinRangeError","Expected "+n+" >= "+e.min+", but found "+t+" for "+r),this.validation.max&&void 0!==e.max&&t>e.max&&this.fail("MaxRangeError","Expected "+n+" <= "+e.max+", but found "+t+" for "+r)},validateEnum:function(e,t,r){this.validation.enum&&void 0!==e.enum&&-1===e.enum.indexOf(t)&&this.fail("EnumError","Found string value of "+t+", but expected "+e.enum.join("|")+" for "+r)},validateType:function(e,t,r,i){if(null==e)return!1;for(var a=!1,o=0;o<r.length;o++){if("string"==typeof r[o]){if(typeof e===r[o])return!0}else if(r[o]instanceof RegExp){if((e||"").toString().match(r[o]))return!0}else{if(e instanceof r[o])return!0;if(n.util.isType(e,r[o]))return!0;i||a||(r=r.slice()),r[o]=n.util.typeName(r[o])}a=!0}var s=i;s||(s=r.join(", ").replace(/,([^,]+)$/,", or$1"));var c=s.match(/^[aeiou]/i)?"n":"";return this.fail("InvalidParameterType","Expected "+t+" to be a"+c+" "+s),!1},validateNumber:function(e,t,r){if(null!=t){if("string"==typeof t){var n=parseFloat(t);n.toString()===t&&(t=n)}this.validateType(t,r,["number"])&&this.validateRange(e,t,r,"numeric value")}},validatePayload:function(e,t){if(null!=e&&"string"!=typeof e&&(!e||"number"!=typeof e.byteLength)){if(n.util.isNode()){var r=n.util.stream.Stream;if(n.util.Buffer.isBuffer(e)||e instanceof r)return}else if(void 0!==typeof Blob&&e instanceof Blob)return;var i=["Buffer","Stream","File","Blob","ArrayBuffer","DataView"];if(e)for(var a=0;a<i.length;a++){if(n.util.isType(e,i[a]))return;if(n.util.typeName(e.constructor)===i[a])return}this.fail("InvalidParameterType","Expected "+t+" to be a string, Buffer, Stream, Blob, or typed array object")}}})},9694:(e,t,r)=>{var n=r(3444),i=r(2042);e.exports={populateHostPrefix:function(e){if(!e.service.config.hostPrefixEnabled)return e;var t,r,a,o,s,c,l,u=e.service.api.operations[e.operation];if(function(e){var t=e.service.api,r=t.operations[e.operation],i=t.endpointOperation&&t.endpointOperation===n.string.lowerFirst(r.name);return"NULL"!==r.endpointDiscoveryRequired||!0===i}(e))return e;if(u.endpoint&&u.endpoint.hostPrefix){var p=(s=u.endpoint.hostPrefix,c=e.params,l=u.input,n.each(l.members,(function(e,t){if(!0===t.hostLabel){if("string"!=typeof c[e]||""===c[e])throw n.error(new Error,{message:"Parameter "+e+" should be a non-empty string.",code:"InvalidParameter"});var r=new RegExp("\\{"+e+"\\}","g");s=s.replace(r,c[e])}})),s);a=e.httpRequest.endpoint,o=p,a.host&&(a.host=o+a.host),a.hostname&&(a.hostname=o+a.hostname),t=e.httpRequest.endpoint.hostname.split("."),r=/^[a-zA-Z0-9]{1}$|^[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9]$/,n.arrayEach(t,(function(e){if(!e.length||e.length<1||e.length>63)throw n.error(new Error,{code:"ValidationError",message:"Hostname label length should be between 1 to 63 characters, inclusive."});if(!r.test(e))throw i.util.error(new Error,{code:"ValidationError",message:e+" is not hostname compatible."})}))}return e}}},350:(e,t,r)=>{var n=r(3444),i=r(4354),a=r(3006),o=r(9694).populateHostPrefix;e.exports={buildRequest:function(e){var t=e.httpRequest,r=e.service.api,n=r.targetPrefix+"."+r.operations[e.operation].name,a=r.jsonVersion||"1.0",s=r.operations[e.operation].input,c=new i;1===a&&(a="1.0"),r.awsQueryCompatible&&(t.params||(t.params={}),Object.assign(t.params,e.params)),t.body=c.build(e.params||{},s),t.headers["Content-Type"]="application/x-amz-json-"+a,t.headers["X-Amz-Target"]=n,o(e)},extractError:function(e){var t={},r=e.httpResponse;if(t.code=r.headers["x-amzn-errortype"]||"UnknownError","string"==typeof t.code&&(t.code=t.code.split(":")[0]),r.body.length>0)try{var i=JSON.parse(r.body.toString()),a=i.__type||i.code||i.Code;for(var o in a&&(t.code=a.split("#").pop()),"RequestEntityTooLarge"===t.code?t.message="Request body must be less than 1 MB":t.message=i.message||i.Message||null,i||{})"code"!==o&&"message"!==o&&(t["["+o+"]"]="See error."+o+" for details.",Object.defineProperty(t,o,{value:i[o],enumerable:!1,writable:!0}))}catch(i){t.statusCode=r.statusCode,t.message=r.statusMessage}else t.statusCode=r.statusCode,t.message=r.statusCode.toString();e.error=n.error(new Error,t)},extractData:function(e){var t=e.httpResponse.body.toString()||"{}";if(!1===e.request.service.config.convertResponseTypes)e.data=JSON.parse(t);else{var r=e.request.service.api.operations[e.request.operation].output||{},n=new a;e.data=n.parse(t,r)}}}},2507:(e,t,r)=>{var n=r(2042),i=r(3444),a=r(5045),o=r(4669),s=r(9694).populateHostPrefix;e.exports={buildRequest:function(e){var t=e.service.api.operations[e.operation],r=e.httpRequest;r.headers["Content-Type"]="application/x-www-form-urlencoded; charset=utf-8",r.params={Version:e.service.api.apiVersion,Action:t.name},(new a).serialize(e.params,t.input,(function(e,t){r.params[e]=t})),r.body=i.queryParamsToString(r.params),s(e)},extractError:function(e){var t,r=e.httpResponse.body.toString();if(r.match("<UnknownOperationException"))t={Code:"UnknownOperation",Message:"Unknown operation "+e.request.operation};else try{t=(new n.XML.Parser).parse(r)}catch(r){t={Code:e.httpResponse.statusCode,Message:e.httpResponse.statusMessage}}t.requestId&&!e.requestId&&(e.requestId=t.requestId),t.Errors&&(t=t.Errors),t.Error&&(t=t.Error),t.Code?e.error=i.error(new Error,{code:t.Code,message:t.Message}):e.error=i.error(new Error,{code:e.httpResponse.statusCode,message:null})},extractData:function(e){var t=e.request,r=t.service.api.operations[t.operation].output||{},a=r;if(a.resultWrapper){var s=o.create({type:"structure"});s.members[a.resultWrapper]=r,s.memberNames=[a.resultWrapper],i.property(r,"name",r.resultWrapper),r=s}var c=new n.XML.Parser;if(r&&r.members&&!r.members._XAMZRequestId){var l=o.create({type:"string"},{api:{protocol:"query"}},"requestId");r.members._XAMZRequestId=l}var u=c.parse(e.httpResponse.body.toString(),r);e.requestId=u._XAMZRequestId||u.requestId,u._XAMZRequestId&&delete u._XAMZRequestId,a.resultWrapper&&u[a.resultWrapper]&&(i.update(u,u[a.resultWrapper]),delete u[a.resultWrapper]),e.data=u}}},161:(e,t,r)=>{var n=r(3444),i=r(9694).populateHostPrefix;function a(e,t,r,i){var a=[e,t].join("/");a=a.replace(/\/+/g,"/");var o={},s=!1;if(n.each(r.members,(function(e,t){var r=i[e];if(null!=r)if("uri"===t.location){var c=new RegExp("\\{"+t.name+"(\\+)?\\}");a=a.replace(c,(function(e,t){return(t?n.uriEscapePath:n.uriEscape)(String(r))}))}else"querystring"===t.location&&(s=!0,"list"===t.type?o[t.name]=r.map((function(e){return n.uriEscape(t.member.toWireFormat(e).toString())})):"map"===t.type?n.each(r,(function(e,t){Array.isArray(t)?o[e]=t.map((function(e){return n.uriEscape(String(e))})):o[e]=n.uriEscape(String(t))})):o[t.name]=n.uriEscape(t.toWireFormat(r).toString()))})),s){a+=a.indexOf("?")>=0?"&":"?";var c=[];n.arrayEach(Object.keys(o).sort(),(function(e){Array.isArray(o[e])||(o[e]=[o[e]]);for(var t=0;t<o[e].length;t++)c.push(n.uriEscape(String(e))+"="+o[e][t])})),a+=c.join("&")}return a}e.exports={buildRequest:function(e){!function(e){e.httpRequest.method=e.service.api.operations[e.operation].httpMethod}(e),function(e){var t=e.service.api.operations[e.operation],r=t.input,n=a(e.httpRequest.endpoint.path,t.httpPath,r,e.params);e.httpRequest.path=n}(e),function(e){var t=e.service.api.operations[e.operation];n.each(t.input.members,(function(t,r){var i=e.params[t];null!=i&&("headers"===r.location&&"map"===r.type?n.each(i,(function(t,n){e.httpRequest.headers[r.name+t]=n})):"header"===r.location&&(i=r.toWireFormat(i).toString(),r.isJsonValue&&(i=n.base64.encode(i)),e.httpRequest.headers[r.name]=i))}))}(e),i(e)},extractError:function(){},extractData:function(e){var t=e.request,r={},i=e.httpResponse,a=t.service.api.operations[t.operation].output,o={};n.each(i.headers,(function(e,t){o[e.toLowerCase()]=t})),n.each(a.members,(function(e,t){var a=(t.name||e).toLowerCase();if("headers"===t.location&&"map"===t.type){r[e]={};var s=t.isLocationName?t.name:"",c=new RegExp("^"+s+"(.+)","i");n.each(i.headers,(function(t,n){var i=t.match(c);null!==i&&(r[e][i[1]]=n)}))}else if("header"===t.location){if(void 0!==o[a]){var l=t.isJsonValue?n.base64.decode(o[a]):o[a];r[e]=t.toType(l)}}else"statusCode"===t.location&&(r[e]=parseInt(i.statusCode,10))})),e.data=r},generateURI:a}},5810:(e,t,r)=>{var n=r(3444),i=r(161),a=r(350),o=r(4354),s=r(3006),c=["GET","HEAD","DELETE"];function l(e,t){if(!e.httpRequest.headers["Content-Type"]){var r=t?"binary/octet-stream":"application/json";e.httpRequest.headers["Content-Type"]=r}}e.exports={buildRequest:function(e){i.buildRequest(e),c.indexOf(e.httpRequest.method)<0&&function(e){var t=new o,r=e.service.api.operations[e.operation].input;if(r.payload){var n,i=r.members[r.payload];n=e.params[r.payload],"structure"===i.type?(e.httpRequest.body=t.build(n||{},i),l(e)):void 0!==n&&(e.httpRequest.body=n,("binary"===i.type||i.isStreaming)&&l(e,!0))}else e.httpRequest.body=t.build(e.params,r),l(e)}(e)},extractError:function(e){a.extractError(e)},extractData:function(e){i.extractData(e);var t=e.request,r=t.service.api.operations[t.operation],o=t.service.api.operations[t.operation].output||{};if(r.hasEventOutput,o.payload){var c=o.members[o.payload],l=e.httpResponse.body;if(c.isEventStream)u=new s,e.data[payload]=n.createEventStream(2===AWS.HttpClient.streamsApiVersion?e.httpResponse.stream:l,u,c);else if("structure"===c.type||"list"===c.type){var u=new s;e.data[o.payload]=u.parse(l,c)}else"binary"===c.type||c.isStreaming?e.data[o.payload]=l:e.data[o.payload]=c.toType(l)}else{var p=e.data;a.extractData(e),e.data=n.merge(p,e.data)}},unsetContentLength:function(e){void 0===n.getRequestPayloadShape(e)&&c.indexOf(e.httpRequest.method)>=0&&delete e.httpRequest.headers["Content-Length"]}}},8677:(e,t,r)=>{var n=r(2042),i=r(3444),a=r(161);e.exports={buildRequest:function(e){a.buildRequest(e),["GET","HEAD"].indexOf(e.httpRequest.method)<0&&function(e){var t=e.service.api.operations[e.operation].input,r=new n.XML.Builder,a=e.params,o=t.payload;if(o){var s=t.members[o];if(void 0===(a=a[o]))return;if("structure"===s.type){var c=s.name;e.httpRequest.body=r.toXML(a,s,c,!0)}else e.httpRequest.body=a}else e.httpRequest.body=r.toXML(a,t,t.name||t.shape||i.string.upperFirst(e.operation)+"Request")}(e)},extractError:function(e){var t;a.extractError(e);try{t=(new n.XML.Parser).parse(e.httpResponse.body.toString())}catch(r){t={Code:e.httpResponse.statusCode,Message:e.httpResponse.statusMessage}}t.Errors&&(t=t.Errors),t.Error&&(t=t.Error),t.Code?e.error=i.error(new Error,{code:t.Code,message:t.Message}):e.error=i.error(new Error,{code:e.httpResponse.statusCode,message:null})},extractData:function(e){var t;a.extractData(e);var r=e.request,o=e.httpResponse.body,s=r.service.api.operations[r.operation],c=s.output,l=(s.hasEventOutput,c.payload);if(l){var u=c.members[l];u.isEventStream?(t=new n.XML.Parser,e.data[l]=i.createEventStream(2===n.HttpClient.streamsApiVersion?e.httpResponse.stream:e.httpResponse.body,t,u)):"structure"===u.type?(t=new n.XML.Parser,e.data[l]=t.parse(o.toString(),u)):"binary"===u.type||u.isStreaming?e.data[l]=o:e.data[l]=u.toType(o)}else if(o.length>0){var p=(t=new n.XML.Parser).parse(o.toString(),c);i.update(e.data,p)}}}},5045:(e,t,r)=>{var n=r(3444);function i(){}function a(e){return e.isQueryName||"ec2"!==e.api.protocol?e.name:e.name[0].toUpperCase()+e.name.substr(1)}function o(e,t,r,i){n.each(r.members,(function(r,n){var o=t[r];if(null!=o){var c=a(n);s(c=e?e+"."+c:c,o,n,i)}}))}function s(e,t,r,i){null!=t&&("structure"===r.type?o(e,t,r,i):"list"===r.type?function(e,t,r,i){var o=r.member||{};0!==t.length?n.arrayEach(t,(function(t,n){var c="."+(n+1);if("ec2"===r.api.protocol)c+="";else if(r.flattened){if(o.name){var l=e.split(".");l.pop(),l.push(a(o)),e=l.join(".")}}else c="."+(o.name?o.name:"member")+c;s(e+c,t,o,i)})):i.call(this,e,null)}(e,t,r,i):"map"===r.type?function(e,t,r,i){var a=1;n.each(t,(function(t,n){var o=(r.flattened?".":".entry.")+a+++".",c=o+(r.key.name||"key"),l=o+(r.value.name||"value");s(e+c,t,r.key,i),s(e+l,n,r.value,i)}))}(e,t,r,i):i(e,r.toWireFormat(t).toString()))}i.prototype.serialize=function(e,t,r){o("",e,t,r)},e.exports=i},723:e=>{e.exports={now:function(){return"undefined"!=typeof performance&&"function"==typeof performance.now?performance.now():Date.now()}}},3447:e=>{e.exports={isFipsRegion:function(e){return"string"==typeof e&&(e.startsWith("fips-")||e.endsWith("-fips"))},isGlobalRegion:function(e){return"string"==typeof e&&["aws-global","aws-us-gov-global"].includes(e)},getRealRegion:function(e){return["fips-aws-global","aws-fips","aws-global"].includes(e)?"us-east-1":["fips-aws-us-gov-global","aws-us-gov-global"].includes(e)?"us-gov-west-1":e.replace(/fips-(dkr-|prod-)?|-fips/,"")}}},443:(e,t,r)=>{var n=r(3444),i=r(4260);function a(e,t){n.each(t,(function(t,r){"globalEndpoint"!==t&&(void 0!==e.config[t]&&null!==e.config[t]||(e.config[t]=r))}))}e.exports={configureEndpoint:function(e){for(var t=function(e){var t=e.config.region,r=function(e){if(!e)return null;var t=e.split("-");return t.length<3?null:t.slice(0,t.length-2).join("-")+"-*"}(t),n=e.api.endpointPrefix;return[[t,n],[r,n],[t,"*"],[r,"*"],["*",n],[t,"internal-*"],["*","*"]].map((function(e){return e[0]&&e[1]?e.join("/"):null}))}(e),r=e.config.useFipsEndpoint,n=e.config.useDualstackEndpoint,o=0;o<t.length;o++){var s=t[o];if(s){var c=r?n?i.dualstackFipsRules:i.fipsRules:n?i.dualstackRules:i.rules;if(Object.prototype.hasOwnProperty.call(c,s)){var l=c[s];"string"==typeof l&&(l=i.patterns[l]),e.isGlobalEndpoint=!!l.globalEndpoint,l.signingRegion&&(e.signingRegion=l.signingRegion),l.signatureVersion||(l.signatureVersion="v4");var u="bearer"===(e.api&&e.api.signatureVersion);return void a(e,Object.assign({},l,{signatureVersion:u?"bearer":l.signatureVersion}))}}}},getEndpointSuffix:function(e){for(var t={"^(us|eu|ap|sa|ca|me)\\-\\w+\\-\\d+$":"amazonaws.com","^cn\\-\\w+\\-\\d+$":"amazonaws.com.cn","^us\\-gov\\-\\w+\\-\\d+$":"amazonaws.com","^us\\-iso\\-\\w+\\-\\d+$":"c2s.ic.gov","^us\\-isob\\-\\w+\\-\\d+$":"sc2s.sgov.gov"},r=Object.keys(t),n=0;n<r.length;n++){var i=RegExp(r[n]),a=t[r[n]];if(i.test(e))return a}return"amazonaws.com"}}},1201:(e,t,r)=>{var n=r(2042),i=r(3827),a=n.util.inherit,o=n.util.domain,s=r(4233),c={success:1,error:1,complete:1},l=new i;l.setupStates=function(){var e=function(e,t){var r=this;r._haltHandlersOnError=!1,r.emit(r._asm.currentState,(function(e){if(e)if(n=r,Object.prototype.hasOwnProperty.call(c,n._asm.currentState)){if(!(o&&r.domain instanceof o.Domain))throw e;e.domainEmitter=r,e.domain=r.domain,e.domainThrown=!1,r.domain.emit("error",e)}else r.response.error=e,t(e);else t(r.response.error);var n}))};this.addState("validate","build","error",e),this.addState("build","afterBuild","restart",e),this.addState("afterBuild","sign","restart",e),this.addState("sign","send","retry",e),this.addState("retry","afterRetry","afterRetry",e),this.addState("afterRetry","sign","error",e),this.addState("send","validateResponse","retry",e),this.addState("validateResponse","extractData","extractError",e),this.addState("extractError","extractData","retry",e),this.addState("extractData","success","retry",e),this.addState("restart","build","error",e),this.addState("success","complete","complete",e),this.addState("error","complete","complete",e),this.addState("complete",null,null,e)},l.setupStates(),n.Request=a({constructor:function(e,t,r){var a=e.endpoint,s=e.config.region,c=e.config.customUserAgent;e.signingRegion?s=e.signingRegion:e.isGlobalEndpoint&&(s="us-east-1"),this.domain=o&&o.active,this.service=e,this.operation=t,this.params=r||{},this.httpRequest=new n.HttpRequest(a,s),this.httpRequest.appendToUserAgent(c),this.startTime=e.getSkewCorrectedDate(),this.response=new n.Response(this),this._asm=new i(l.states,"validate"),this._haltHandlersOnError=!1,n.SequentialExecutor.call(this),this.emit=this.emitEvent},send:function(e){return e&&(this.httpRequest.appendToUserAgent("callback"),this.on("complete",(function(t){e.call(t,t.error,t.data)}))),this.runTo(),this.response},build:function(e){return this.runTo("send",e)},runTo:function(e,t){return this._asm.runTo(e,t,this),this},abort:function(){return this.removeAllListeners("validateResponse"),this.removeAllListeners("extractError"),this.on("validateResponse",(function(e){e.error=n.util.error(new Error("Request aborted by user"),{code:"RequestAbortedError",retryable:!1})})),this.httpRequest.stream&&!this.httpRequest.stream.didCallback&&(this.httpRequest.stream.abort(),this.httpRequest._abortCallback?this.httpRequest._abortCallback():this.removeAllListeners("send")),this},eachPage:function(e){e=n.util.fn.makeAsync(e,3),this.on("complete",(function t(r){e.call(r,r.error,r.data,(function(i){!1!==i&&(r.hasNextPage()?r.nextPage().on("complete",t).send():e.call(r,null,null,n.util.fn.noop))}))})).send()},eachItem:function(e){var t=this;this.eachPage((function(r,i){if(r)return e(r,null);if(null===i)return e(null,null);var a=t.service.paginationConfig(t.operation).resultKey;Array.isArray(a)&&(a=a[0]);var o=s.search(i,a),c=!0;return n.util.arrayEach(o,(function(t){if(!1===(c=e(null,t)))return n.util.abort})),c}))},isPageable:function(){return!!this.service.paginationConfig(this.operation)},createReadStream:function(){var e=n.util.stream,t=this,r=null;return 2===n.HttpClient.streamsApiVersion?(r=new e.PassThrough,process.nextTick((function(){t.send()}))):((r=new e.Stream).readable=!0,r.sent=!1,r.on("newListener",(function(e){r.sent||"data"!==e||(r.sent=!0,process.nextTick((function(){t.send()})))}))),this.on("error",(function(e){r.emit("error",e)})),this.on("httpHeaders",(function(i,a,o){if(i<300){t.removeListener("httpData",n.EventListeners.Core.HTTP_DATA),t.removeListener("httpError",n.EventListeners.Core.HTTP_ERROR),t.on("httpError",(function(e){o.error=e,o.error.retryable=!1}));var s,c=!1;if("HEAD"!==t.httpRequest.method&&(s=parseInt(a["content-length"],10)),void 0!==s&&!isNaN(s)&&s>=0){c=!0;var l=0}var u=function(){c&&l!==s?r.emit("error",n.util.error(new Error("Stream content length mismatch. Received "+l+" of "+s+" bytes."),{code:"StreamContentLengthMismatch"})):2===n.HttpClient.streamsApiVersion?r.end():r.emit("end")},p=o.httpResponse.createUnbufferedStream();if(2===n.HttpClient.streamsApiVersion)if(c){var d=new e.PassThrough;d._write=function(t){return t&&t.length&&(l+=t.length),e.PassThrough.prototype._write.apply(this,arguments)},d.on("end",u),r.on("error",(function(e){c=!1,p.unpipe(d),d.emit("end"),d.end()})),p.pipe(d).pipe(r,{end:!1})}else p.pipe(r);else c&&p.on("data",(function(e){e&&e.length&&(l+=e.length)})),p.on("data",(function(e){r.emit("data",e)})),p.on("end",u);p.on("error",(function(e){c=!1,r.emit("error",e)}))}})),r},emitEvent:function(e,t,r){"function"==typeof t&&(r=t,t=null),r||(r=function(){}),t||(t=this.eventParameters(e,this.response)),n.SequentialExecutor.prototype.emit.call(this,e,t,(function(e){e&&(this.response.error=e),r.call(this,e)}))},eventParameters:function(e){switch(e){case"restart":case"validate":case"sign":case"build":case"afterValidate":case"afterBuild":return[this];case"error":return[this.response.error,this.response];default:return[this.response]}},presign:function(e,t){return t||"function"!=typeof e||(t=e,e=null),(new n.Signers.Presign).sign(this.toGet(),e,t)},isPresigned:function(){return Object.prototype.hasOwnProperty.call(this.httpRequest.headers,"presigned-expires")},toUnauthenticated:function(){return this._unAuthenticated=!0,this.removeListener("validate",n.EventListeners.Core.VALIDATE_CREDENTIALS),this.removeListener("sign",n.EventListeners.Core.SIGN),this},toGet:function(){return"query"!==this.service.api.protocol&&"ec2"!==this.service.api.protocol||(this.removeListener("build",this.buildAsGet),this.addListener("build",this.buildAsGet)),this},buildAsGet:function(e){e.httpRequest.method="GET",e.httpRequest.path=e.service.endpoint.path+"?"+e.httpRequest.body,e.httpRequest.body="",delete e.httpRequest.headers["Content-Length"],delete e.httpRequest.headers["Content-Type"]},haltHandlersOnError:function(){this._haltHandlersOnError=!0}}),n.Request.addPromisesToClass=function(e){this.prototype.promise=function(){var t=this;return this.httpRequest.appendToUserAgent("promise"),new e((function(e,r){t.on("complete",(function(t){t.error?r(t.error):e(Object.defineProperty(t.data||{},"$response",{value:t}))})),t.runTo()}))}},n.Request.deletePromisesFromClass=function(){delete this.prototype.promise},n.util.addPromises(n.Request),n.util.mixin(n.Request,n.SequentialExecutor)},4465:(e,t,r)=>{var n=r(2042),i=n.util.inherit,a=r(4233);function o(e){var t=e.request._waiter,r=t.config.acceptors,n=!1,i="retry";r.forEach((function(r){if(!n){var a=t.matchers[r.matcher];a&&a(e,r.expected,r.argument)&&(n=!0,i=r.state)}})),!n&&e.error&&(i="failure"),"success"===i?t.setSuccess(e):t.setError(e,"retry"===i)}n.ResourceWaiter=i({constructor:function(e,t){this.service=e,this.state=t,this.loadWaiterConfig(this.state)},service:null,state:null,config:null,matchers:{path:function(e,t,r){try{var n=a.search(e.data,r)}catch(e){return!1}return a.strictDeepEqual(n,t)},pathAll:function(e,t,r){try{var n=a.search(e.data,r)}catch(e){return!1}Array.isArray(n)||(n=[n]);var i=n.length;if(!i)return!1;for(var o=0;o<i;o++)if(!a.strictDeepEqual(n[o],t))return!1;return!0},pathAny:function(e,t,r){try{var n=a.search(e.data,r)}catch(e){return!1}Array.isArray(n)||(n=[n]);for(var i=n.length,o=0;o<i;o++)if(a.strictDeepEqual(n[o],t))return!0;return!1},status:function(e,t){var r=e.httpResponse.statusCode;return"number"==typeof r&&r===t},error:function(e,t){return"string"==typeof t&&e.error?t===e.error.code:t===!!e.error}},listeners:(new n.SequentialExecutor).addNamedListeners((function(e){e("RETRY_CHECK","retry",(function(e){var t=e.request._waiter;e.error&&"ResourceNotReady"===e.error.code&&(e.error.retryDelay=1e3*(t.config.delay||0))})),e("CHECK_OUTPUT","extractData",o),e("CHECK_ERROR","extractError",o)})),wait:function(e,t){"function"==typeof e&&(t=e,e=void 0),e&&e.$waiter&&("number"==typeof(e=n.util.copy(e)).$waiter.delay&&(this.config.delay=e.$waiter.delay),"number"==typeof e.$waiter.maxAttempts&&(this.config.maxAttempts=e.$waiter.maxAttempts),delete e.$waiter);var r=this.service.makeRequest(this.config.operation,e);return r._waiter=this,r.response.maxRetries=this.config.maxAttempts,r.addListeners(this.listeners),t&&r.send(t),r},setSuccess:function(e){e.error=null,e.data=e.data||{},e.request.removeAllListeners("extractData")},setError:function(e,t){e.data=null,e.error=n.util.error(e.error||new Error,{code:"ResourceNotReady",message:"Resource is not in the state "+this.state,retryable:t})},loadWaiterConfig:function(e){if(!this.service.api.waiters[e])throw new n.util.error(new Error,{code:"StateNotFoundError",message:"State "+e+" not found."});this.config=n.util.copy(this.service.api.waiters[e])}})},6736:(e,t,r)=>{var n=r(2042),i=n.util.inherit,a=r(4233);n.Response=i({constructor:function(e){this.request=e,this.data=null,this.error=null,this.retryCount=0,this.redirectCount=0,this.httpResponse=new n.HttpResponse,e&&(this.maxRetries=e.service.numRetries(),this.maxRedirects=e.service.config.maxRedirects)},nextPage:function(e){var t,r=this.request.service,i=this.request.operation;try{t=r.paginationConfig(i,!0)}catch(e){this.error=e}if(!this.hasNextPage()){if(e)e(this.error,null);else if(this.error)throw this.error;return null}var a=n.util.copy(this.request.params);if(this.nextPageTokens){var o=t.inputToken;"string"==typeof o&&(o=[o]);for(var s=0;s<o.length;s++)a[o[s]]=this.nextPageTokens[s];return r.makeRequest(this.request.operation,a,e)}return e?e(null,null):null},hasNextPage:function(){return this.cacheNextPageTokens(),!!this.nextPageTokens||void 0===this.nextPageTokens&&void 0},cacheNextPageTokens:function(){if(Object.prototype.hasOwnProperty.call(this,"nextPageTokens"))return this.nextPageTokens;this.nextPageTokens=void 0;var e=this.request.service.paginationConfig(this.request.operation);if(!e)return this.nextPageTokens;if(this.nextPageTokens=null,e.moreResults&&!a.search(this.data,e.moreResults))return this.nextPageTokens;var t=e.outputToken;return"string"==typeof t&&(t=[t]),n.util.arrayEach.call(this,t,(function(e){var t=a.search(this.data,e);t&&(this.nextPageTokens=this.nextPageTokens||[],this.nextPageTokens.push(t))})),this.nextPageTokens}})},6099:(e,t,r)=>{var n=r(2042),i=n.util.string.byteLength,a=n.util.Buffer;n.S3.ManagedUpload=n.util.inherit({constructor:function(e){var t=this;n.SequentialExecutor.call(t),t.body=null,t.sliceFn=null,t.callback=null,t.parts={},t.completeInfo=[],t.fillQueue=function(){t.callback(new Error("Unsupported body payload "+typeof t.body))},t.configure(e)},configure:function(e){if(e=e||{},this.partSize=this.minPartSize,e.queueSize&&(this.queueSize=e.queueSize),e.partSize&&(this.partSize=e.partSize),e.leavePartsOnError&&(this.leavePartsOnError=!0),e.tags){if(!Array.isArray(e.tags))throw new Error("Tags must be specified as an array; "+typeof e.tags+" provided.");this.tags=e.tags}if(this.partSize<this.minPartSize)throw new Error("partSize must be greater than "+this.minPartSize);this.service=e.service,this.bindServiceObject(e.params),this.validateBody(),this.adjustTotalBytes()},leavePartsOnError:!1,queueSize:4,partSize:null,minPartSize:5242880,maxTotalParts:1e4,send:function(e){var t=this;t.failed=!1,t.callback=e||function(e){if(e)throw e};var r=!0;if(t.sliceFn)t.fillQueue=t.fillBuffer;else if(n.util.isNode()){var i=n.util.stream.Stream;t.body instanceof i&&(r=!1,t.fillQueue=t.fillStream,t.partBuffers=[],t.body.on("error",(function(e){t.cleanup(e)})).on("readable",(function(){t.fillQueue()})).on("end",(function(){t.isDoneChunking=!0,t.numParts=t.totalPartNumbers,t.fillQueue.call(t),t.isDoneChunking&&t.totalPartNumbers>=1&&t.doneParts===t.numParts&&t.finishMultiPart()})))}r&&t.fillQueue.call(t)},abort:function(){var e=this;!0===e.isDoneChunking&&1===e.totalPartNumbers&&e.singlePart?e.singlePart.abort():e.cleanup(n.util.error(new Error("Request aborted by user"),{code:"RequestAbortedError",retryable:!1}))},validateBody:function(){var e=this;if(e.body=e.service.config.params.Body,"string"==typeof e.body)e.body=n.util.buffer.toBuffer(e.body);else if(!e.body)throw new Error("params.Body is required");e.sliceFn=n.util.arraySliceFn(e.body)},bindServiceObject:function(e){e=e||{};var t=this;if(t.service){var r=t.service,i=n.util.copy(r.config);i.signatureVersion=r.getSignatureVersion(),t.service=new r.constructor.__super__(i),t.service.config.params=n.util.merge(t.service.config.params||{},e),Object.defineProperty(t.service,"_originalConfig",{get:function(){return r._originalConfig},enumerable:!1,configurable:!0})}else t.service=new n.S3({params:e})},adjustTotalBytes:function(){var e=this;try{e.totalBytes=i(e.body)}catch(e){}if(e.totalBytes){var t=Math.ceil(e.totalBytes/e.maxTotalParts);t>e.partSize&&(e.partSize=t)}else e.totalBytes=void 0},isDoneChunking:!1,partPos:0,totalChunkedBytes:0,totalUploadedBytes:0,totalBytes:void 0,numParts:0,totalPartNumbers:0,activeParts:0,doneParts:0,parts:null,completeInfo:null,failed:!1,multipartReq:null,partBuffers:null,partBufferLength:0,fillBuffer:function(){var e=this,t=i(e.body);if(0===t)return e.isDoneChunking=!0,e.numParts=1,void e.nextChunk(e.body);for(;e.activeParts<e.queueSize&&e.partPos<t;){var r=Math.min(e.partPos+e.partSize,t),n=e.sliceFn.call(e.body,e.partPos,r);e.partPos+=e.partSize,(i(n)<e.partSize||e.partPos===t)&&(e.isDoneChunking=!0,e.numParts=e.totalPartNumbers+1),e.nextChunk(n)}},fillStream:function(){var e=this;if(!(e.activeParts>=e.queueSize)){var t=e.body.read(e.partSize-e.partBufferLength)||e.body.read();if(t&&(e.partBuffers.push(t),e.partBufferLength+=t.length,e.totalChunkedBytes+=t.length),e.partBufferLength>=e.partSize){var r=1===e.partBuffers.length?e.partBuffers[0]:a.concat(e.partBuffers);if(e.partBuffers=[],e.partBufferLength=0,r.length>e.partSize){var n=r.slice(e.partSize);e.partBuffers.push(n),e.partBufferLength+=n.length,r=r.slice(0,e.partSize)}e.nextChunk(r)}e.isDoneChunking&&!e.isDoneSending&&(r=1===e.partBuffers.length?e.partBuffers[0]:a.concat(e.partBuffers),e.partBuffers=[],e.partBufferLength=0,e.totalBytes=e.totalChunkedBytes,e.isDoneSending=!0,(0===e.numParts||r.length>0)&&(e.numParts++,e.nextChunk(r))),e.body.read(0)}},nextChunk:function(e){var t=this;if(t.failed)return null;var r=++t.totalPartNumbers;if(t.isDoneChunking&&1===r){var i={Body:e};this.tags&&(i.Tagging=this.getTaggingHeader());var a=t.service.putObject(i);return a._managedUpload=t,a.on("httpUploadProgress",t.progress).send(t.finishSinglePart),t.singlePart=a,null}if(t.service.config.params.ContentMD5){var o=n.util.error(new Error("The Content-MD5 you specified is invalid for multi-part uploads."),{code:"InvalidDigest",retryable:!1});return t.cleanup(o),null}if(t.completeInfo[r]&&null!==t.completeInfo[r].ETag)return null;t.activeParts++,t.service.config.params.UploadId?t.uploadPart(e,r):t.multipartReq?t.queueChunks(e,r):(t.multipartReq=t.service.createMultipartUpload(),t.multipartReq.on("success",(function(e){t.service.config.params.UploadId=e.data.UploadId,t.multipartReq=null})),t.queueChunks(e,r),t.multipartReq.on("error",(function(e){t.cleanup(e)})),t.multipartReq.send())},getTaggingHeader:function(){for(var e=[],t=0;t<this.tags.length;t++)e.push(n.util.uriEscape(this.tags[t].Key)+"="+n.util.uriEscape(this.tags[t].Value));return e.join("&")},uploadPart:function(e,t){var r=this,i={Body:e,ContentLength:n.util.string.byteLength(e),PartNumber:t},a={ETag:null,PartNumber:t};r.completeInfo[t]=a;var o=r.service.uploadPart(i);r.parts[t]=o,o._lastUploadedBytes=0,o._managedUpload=r,o.on("httpUploadProgress",r.progress),o.send((function(e,o){if(delete r.parts[i.PartNumber],r.activeParts--,!(e||o&&o.ETag)){var s="No access to ETag property on response.";n.util.isBrowser()&&(s+=" Check CORS configuration to expose ETag header."),e=n.util.error(new Error(s),{code:"ETagMissing",retryable:!1})}return e?r.cleanup(e):r.completeInfo[t]&&null!==r.completeInfo[t].ETag?null:(a.ETag=o.ETag,r.doneParts++,void(r.isDoneChunking&&r.doneParts===r.totalPartNumbers?r.finishMultiPart():r.fillQueue.call(r)))}))},queueChunks:function(e,t){var r=this;r.multipartReq.on("success",(function(){r.uploadPart(e,t)}))},cleanup:function(e){var t=this;t.failed||("function"==typeof t.body.removeAllListeners&&"function"==typeof t.body.resume&&(t.body.removeAllListeners("readable"),t.body.removeAllListeners("end"),t.body.resume()),t.multipartReq&&(t.multipartReq.removeAllListeners("success"),t.multipartReq.removeAllListeners("error"),t.multipartReq.removeAllListeners("complete"),delete t.multipartReq),t.service.config.params.UploadId&&!t.leavePartsOnError?t.service.abortMultipartUpload().send():t.leavePartsOnError&&(t.isDoneChunking=!1),n.util.each(t.parts,(function(e,t){t.removeAllListeners("complete"),t.abort()})),t.activeParts=0,t.partPos=0,t.numParts=0,t.totalPartNumbers=0,t.parts={},t.failed=!0,t.callback(e))},finishMultiPart:function(){var e=this,t={MultipartUpload:{Parts:e.completeInfo.slice(1)}};e.service.completeMultipartUpload(t,(function(t,r){if(t)return e.cleanup(t);if(r&&"string"==typeof r.Location&&(r.Location=r.Location.replace(/%2F/g,"/")),Array.isArray(e.tags)){for(var n=0;n<e.tags.length;n++)e.tags[n].Value=String(e.tags[n].Value);e.service.putObjectTagging({Tagging:{TagSet:e.tags}},(function(t,n){t?e.callback(t):e.callback(t,r)}))}else e.callback(t,r)}))},finishSinglePart:function(e,t){var r=this.request._managedUpload,n=this.request.httpRequest,i=n.endpoint;if(e)return r.callback(e);t.Location=[i.protocol,"//",i.host,n.path].join(""),t.key=this.request.params.Key,t.Key=this.request.params.Key,t.Bucket=this.request.params.Bucket,r.callback(e,t)},progress:function(e){var t=this._managedUpload;"putObject"===this.operation?(e.part=1,e.key=this.params.Key):(t.totalUploadedBytes+=e.loaded-this._lastUploadedBytes,this._lastUploadedBytes=e.loaded,e={loaded:t.totalUploadedBytes,total:t.totalBytes,part:this.params.PartNumber,key:this.params.Key}),t.emit("httpUploadProgress",[e])}}),n.util.mixin(n.S3.ManagedUpload,n.SequentialExecutor),n.S3.ManagedUpload.addPromisesToClass=function(e){this.prototype.promise=n.util.promisifyMethod("send",e)},n.S3.ManagedUpload.deletePromisesFromClass=function(){delete this.prototype.promise},n.util.addPromises(n.S3.ManagedUpload),e.exports=n.S3.ManagedUpload},3991:(e,t,r)=>{var n=r(2042);n.SequentialExecutor=n.util.inherit({constructor:function(){this._events={}},listeners:function(e){return this._events[e]?this._events[e].slice(0):[]},on:function(e,t,r){return this._events[e]?r?this._events[e].unshift(t):this._events[e].push(t):this._events[e]=[t],this},onAsync:function(e,t,r){return t._isAsync=!0,this.on(e,t,r)},removeListener:function(e,t){var r=this._events[e];if(r){for(var n=r.length,i=-1,a=0;a<n;++a)r[a]===t&&(i=a);i>-1&&r.splice(i,1)}return this},removeAllListeners:function(e){return e?delete this._events[e]:this._events={},this},emit:function(e,t,r){r||(r=function(){});var n=this.listeners(e),i=n.length;return this.callListeners(n,t,r),i>0},callListeners:function(e,t,r,i){var a=this,o=i||null;function s(i){if(i&&(o=n.util.error(o||new Error,i),a._haltHandlersOnError))return r.call(a,o);a.callListeners(e,t,r,o)}for(;e.length>0;){var c=e.shift();if(c._isAsync)return void c.apply(a,t.concat([s]));try{c.apply(a,t)}catch(e){o=n.util.error(o||new Error,e)}if(o&&a._haltHandlersOnError)return void r.call(a,o)}r.call(a,o)},addListeners:function(e){var t=this;return e._events&&(e=e._events),n.util.each(e,(function(e,r){"function"==typeof r&&(r=[r]),n.util.arrayEach(r,(function(r){t.on(e,r)}))})),t},addNamedListener:function(e,t,r,n){return this[e]=r,this.addListener(t,r,n),this},addNamedAsyncListener:function(e,t,r,n){return r._isAsync=!0,this.addNamedListener(e,t,r,n)},addNamedListeners:function(e){var t=this;return e((function(){t.addNamedListener.apply(t,arguments)}),(function(){t.addNamedAsyncListener.apply(t,arguments)})),this}}),n.SequentialExecutor.prototype.addListener=n.SequentialExecutor.prototype.on,e.exports=n.SequentialExecutor},4244:(e,t,r)=>{var n=r(2042),i=r(3607),a=r(443),o=n.util.inherit,s=0,c=r(3447);n.Service=o({constructor:function(e){if(!this.loadServiceClass)throw n.util.error(new Error,"Service must be constructed with `new' operator");if(e){if(e.region){var t=e.region;c.isFipsRegion(t)&&(e.region=c.getRealRegion(t),e.useFipsEndpoint=!0),c.isGlobalRegion(t)&&(e.region=c.getRealRegion(t))}"boolean"==typeof e.useDualstack&&"boolean"!=typeof e.useDualstackEndpoint&&(e.useDualstackEndpoint=e.useDualstack)}var r=this.loadServiceClass(e||{});if(r){var i=n.util.copy(e),a=new r(e);return Object.defineProperty(a,"_originalConfig",{get:function(){return i},enumerable:!1,configurable:!0}),a._clientId=++s,a}this.initialize(e)},initialize:function(e){var t=n.config[this.serviceIdentifier];if(this.config=new n.Config(n.config),t&&this.config.update(t,!0),e&&this.config.update(e,!0),this.validateService(),this.config.endpoint||a.configureEndpoint(this),this.config.endpoint=this.endpointFromTemplate(this.config.endpoint),this.setEndpoint(this.config.endpoint),n.SequentialExecutor.call(this),n.Service.addDefaultMonitoringListeners(this),(this.config.clientSideMonitoring||n.Service._clientSideMonitoring)&&this.publisher){var r=this.publisher;this.addNamedListener("PUBLISH_API_CALL","apiCall",(function(e){process.nextTick((function(){r.eventHandler(e)}))})),this.addNamedListener("PUBLISH_API_ATTEMPT","apiCallAttempt",(function(e){process.nextTick((function(){r.eventHandler(e)}))}))}},validateService:function(){},loadServiceClass:function(e){var t=e;if(n.util.isEmpty(this.api)){if(t.apiConfig)return n.Service.defineServiceApi(this.constructor,t.apiConfig);if(this.constructor.services){(t=new n.Config(n.config)).update(e,!0);var r=t.apiVersions[this.constructor.serviceIdentifier];return r=r||t.apiVersion,this.getLatestServiceClass(r)}return null}return null},getLatestServiceClass:function(e){return e=this.getLatestServiceVersion(e),null===this.constructor.services[e]&&n.Service.defineServiceApi(this.constructor,e),this.constructor.services[e]},getLatestServiceVersion:function(e){if(!this.constructor.services||0===this.constructor.services.length)throw new Error("No services defined on "+this.constructor.serviceIdentifier);if(e?n.util.isType(e,Date)&&(e=n.util.date.iso8601(e).split("T")[0]):e="latest",Object.hasOwnProperty(this.constructor.services,e))return e;for(var t=Object.keys(this.constructor.services).sort(),r=null,i=t.length-1;i>=0;i--)if("*"!==t[i][t[i].length-1]&&(r=t[i]),t[i].substr(0,10)<=e)return r;throw new Error("Could not find "+this.constructor.serviceIdentifier+" API to satisfy version constraint `"+e+"'")},api:{},defaultRetryCount:3,customizeRequests:function(e){if(e){if("function"!=typeof e)throw new Error("Invalid callback type '"+typeof e+"' provided in customizeRequests");this.customRequestHandler=e}else this.customRequestHandler=null},makeRequest:function(e,t,r){if("function"==typeof t&&(r=t,t=null),t=t||{},this.config.params){var i=this.api.operations[e];i&&(t=n.util.copy(t),n.util.each(this.config.params,(function(e,r){i.input.members[e]&&(void 0!==t[e]&&null!==t[e]||(t[e]=r))})))}var a=new n.Request(this,e,t);return this.addAllRequestListeners(a),this.attachMonitoringEmitter(a),r&&a.send(r),a},makeUnauthenticatedRequest:function(e,t,r){"function"==typeof t&&(r=t,t={});var n=this.makeRequest(e,t).toUnauthenticated();return r?n.send(r):n},waitFor:function(e,t,r){return new n.ResourceWaiter(this,e).wait(t,r)},addAllRequestListeners:function(e){for(var t=[n.events,n.EventListeners.Core,this.serviceInterface(),n.EventListeners.CorePost],r=0;r<t.length;r++)t[r]&&e.addListeners(t[r]);this.config.paramValidation||e.removeListener("validate",n.EventListeners.Core.VALIDATE_PARAMETERS),this.config.logger&&e.addListeners(n.EventListeners.Logger),this.setupRequestListeners(e),"function"==typeof this.constructor.prototype.customRequestHandler&&this.constructor.prototype.customRequestHandler(e),Object.prototype.hasOwnProperty.call(this,"customRequestHandler")&&"function"==typeof this.customRequestHandler&&this.customRequestHandler(e)},apiCallEvent:function(e){var t=e.service.api.operations[e.operation],r={Type:"ApiCall",Api:t?t.name:e.operation,Version:1,Service:e.service.api.serviceId||e.service.api.endpointPrefix,Region:e.httpRequest.region,MaxRetriesExceeded:0,UserAgent:e.httpRequest.getUserAgent()},n=e.response;if(n.httpResponse.statusCode&&(r.FinalHttpStatusCode=n.httpResponse.statusCode),n.error){var i=n.error;n.httpResponse.statusCode>299?(i.code&&(r.FinalAwsException=i.code),i.message&&(r.FinalAwsExceptionMessage=i.message)):((i.code||i.name)&&(r.FinalSdkException=i.code||i.name),i.message&&(r.FinalSdkExceptionMessage=i.message))}return r},apiAttemptEvent:function(e){var t=e.service.api.operations[e.operation],r={Type:"ApiCallAttempt",Api:t?t.name:e.operation,Version:1,Service:e.service.api.serviceId||e.service.api.endpointPrefix,Fqdn:e.httpRequest.endpoint.hostname,UserAgent:e.httpRequest.getUserAgent()},n=e.response;return n.httpResponse.statusCode&&(r.HttpStatusCode=n.httpResponse.statusCode),!e._unAuthenticated&&e.service.config.credentials&&e.service.config.credentials.accessKeyId&&(r.AccessKey=e.service.config.credentials.accessKeyId),n.httpResponse.headers?(e.httpRequest.headers["x-amz-security-token"]&&(r.SessionToken=e.httpRequest.headers["x-amz-security-token"]),n.httpResponse.headers["x-amzn-requestid"]&&(r.XAmznRequestId=n.httpResponse.headers["x-amzn-requestid"]),n.httpResponse.headers["x-amz-request-id"]&&(r.XAmzRequestId=n.httpResponse.headers["x-amz-request-id"]),n.httpResponse.headers["x-amz-id-2"]&&(r.XAmzId2=n.httpResponse.headers["x-amz-id-2"]),r):r},attemptFailEvent:function(e){var t=this.apiAttemptEvent(e),r=e.response,n=r.error;return r.httpResponse.statusCode>299?(n.code&&(t.AwsException=n.code),n.message&&(t.AwsExceptionMessage=n.message)):((n.code||n.name)&&(t.SdkException=n.code||n.name),n.message&&(t.SdkExceptionMessage=n.message)),t},attachMonitoringEmitter:function(e){var t,r,i,a,o,s,c=0,l=this;e.on("validate",(function(){a=n.util.realClock.now(),s=Date.now()}),!0),e.on("sign",(function(){r=n.util.realClock.now(),t=Date.now(),o=e.httpRequest.region,c++}),!0),e.on("validateResponse",(function(){i=Math.round(n.util.realClock.now()-r)})),e.addNamedListener("API_CALL_ATTEMPT","success",(function(){var r=l.apiAttemptEvent(e);r.Timestamp=t,r.AttemptLatency=i>=0?i:0,r.Region=o,l.emit("apiCallAttempt",[r])})),e.addNamedListener("API_CALL_ATTEMPT_RETRY","retry",(function(){var a=l.attemptFailEvent(e);a.Timestamp=t,i=i||Math.round(n.util.realClock.now()-r),a.AttemptLatency=i>=0?i:0,a.Region=o,l.emit("apiCallAttempt",[a])})),e.addNamedListener("API_CALL","complete",(function(){var t=l.apiCallEvent(e);if(t.AttemptCount=c,!(t.AttemptCount<=0)){t.Timestamp=s;var r=Math.round(n.util.realClock.now()-a);t.Latency=r>=0?r:0;var i=e.response;i.error&&i.error.retryable&&"number"==typeof i.retryCount&&"number"==typeof i.maxRetries&&i.retryCount>=i.maxRetries&&(t.MaxRetriesExceeded=1),l.emit("apiCall",[t])}}))},setupRequestListeners:function(e){},getSigningName:function(){return this.api.signingName||this.api.endpointPrefix},getSignerClass:function(e){var t,r=null,i="";return e&&(i=(r=(e.service.api.operations||{})[e.operation]||null)?r.authtype:""),t=this.config.signatureVersion?this.config.signatureVersion:"v4"===i||"v4-unsigned-body"===i?"v4":"bearer"===i?"bearer":this.api.signatureVersion,n.Signers.RequestSigner.getVersion(t)},serviceInterface:function(){switch(this.api.protocol){case"ec2":case"query":return n.EventListeners.Query;case"json":return n.EventListeners.Json;case"rest-json":return n.EventListeners.RestJson;case"rest-xml":return n.EventListeners.RestXml}if(this.api.protocol)throw new Error("Invalid service `protocol' "+this.api.protocol+" in API config")},successfulResponse:function(e){return e.httpResponse.statusCode<300},numRetries:function(){return void 0!==this.config.maxRetries?this.config.maxRetries:this.defaultRetryCount},retryDelays:function(e,t){return n.util.calculateRetryDelay(e,this.config.retryDelayOptions,t)},retryableError:function(e){return!!this.timeoutError(e)||!!this.networkingError(e)||!!this.expiredCredentialsError(e)||!!this.throttledError(e)||e.statusCode>=500},networkingError:function(e){return"NetworkingError"===e.code},timeoutError:function(e){return"TimeoutError"===e.code},expiredCredentialsError:function(e){return"ExpiredTokenException"===e.code},clockSkewError:function(e){switch(e.code){case"RequestTimeTooSkewed":case"RequestExpired":case"InvalidSignatureException":case"SignatureDoesNotMatch":case"AuthFailure":case"RequestInTheFuture":return!0;default:return!1}},getSkewCorrectedDate:function(){return new Date(Date.now()+this.config.systemClockOffset)},applyClockOffset:function(e){e&&(this.config.systemClockOffset=e-Date.now())},isClockSkewed:function(e){if(e)return Math.abs(this.getSkewCorrectedDate().getTime()-e)>=3e5},throttledError:function(e){if(429===e.statusCode)return!0;switch(e.code){case"ProvisionedThroughputExceededException":case"Throttling":case"ThrottlingException":case"RequestLimitExceeded":case"RequestThrottled":case"RequestThrottledException":case"TooManyRequestsException":case"TransactionInProgressException":case"EC2ThrottledException":return!0;default:return!1}},endpointFromTemplate:function(e){if("string"!=typeof e)return e;var t=e;return(t=(t=t.replace(/\{service\}/g,this.api.endpointPrefix)).replace(/\{region\}/g,this.config.region)).replace(/\{scheme\}/g,this.config.sslEnabled?"https":"http")},setEndpoint:function(e){this.endpoint=new n.Endpoint(e,this.config)},paginationConfig:function(e,t){var r=this.api.operations[e].paginator;if(!r){if(t){var i=new Error;throw n.util.error(i,"No pagination configuration for "+e)}return null}return r}}),n.util.update(n.Service,{defineMethods:function(e){n.util.each(e.prototype.api.operations,(function(t){e.prototype[t]||("none"===e.prototype.api.operations[t].authtype?e.prototype[t]=function(e,r){return this.makeUnauthenticatedRequest(t,e,r)}:e.prototype[t]=function(e,r){return this.makeRequest(t,e,r)})}))},defineService:function(e,t,r){n.Service._serviceMap[e]=!0,Array.isArray(t)||(r=t,t=[]);var i=o(n.Service,r||{});if("string"==typeof e){n.Service.addVersions(i,t);var a=i.serviceIdentifier||e;i.serviceIdentifier=a}else i.prototype.api=e,n.Service.defineMethods(i);if(n.SequentialExecutor.call(this.prototype),!this.prototype.publisher&&n.util.clientSideMonitoring){var s=n.util.clientSideMonitoring.Publisher,c=(0,n.util.clientSideMonitoring.configProvider)();this.prototype.publisher=new s(c),c.enabled&&(n.Service._clientSideMonitoring=!0)}return n.SequentialExecutor.call(i.prototype),n.Service.addDefaultMonitoringListeners(i.prototype),i},addVersions:function(e,t){Array.isArray(t)||(t=[t]),e.services=e.services||{};for(var r=0;r<t.length;r++)void 0===e.services[t[r]]&&(e.services[t[r]]=null);e.apiVersions=Object.keys(e.services).sort()},defineServiceApi:function(e,t,r){var a=o(e,{serviceIdentifier:e.serviceIdentifier});function s(t){t.isApi?a.prototype.api=t:a.prototype.api=new i(t,{serviceIdentifier:e.serviceIdentifier})}if("string"==typeof t){if(r)s(r);else try{s(n.apiLoader(e.serviceIdentifier,t))}catch(r){throw n.util.error(r,{message:"Could not find API configuration "+e.serviceIdentifier+"-"+t})}Object.prototype.hasOwnProperty.call(e.services,t)||(e.apiVersions=e.apiVersions.concat(t).sort()),e.services[t]=a}else s(t);return n.Service.defineMethods(a),a},hasService:function(e){return Object.prototype.hasOwnProperty.call(n.Service._serviceMap,e)},addDefaultMonitoringListeners:function(e){e.addNamedListener("MONITOR_EVENTS_BUBBLE","apiCallAttempt",(function(t){var r=Object.getPrototypeOf(e);r._events&&r.emit("apiCallAttempt",[t])})),e.addNamedListener("CALL_EVENTS_BUBBLE","apiCall",(function(t){var r=Object.getPrototypeOf(e);r._events&&r.emit("apiCall",[t])}))},_serviceMap:{}}),n.util.mixin(n.Service,n.SequentialExecutor),e.exports=n.Service},4334:(e,t,r)=>{var n=r(2042),i=r(6517),a=r(1046),o=r(7065),s=r(443);r(6099);var c={completeMultipartUpload:!0,copyObject:!0,uploadPartCopy:!0},l=["AuthorizationHeaderMalformed","BadRequest","PermanentRedirect",301],u="s3-object-lambda";n.util.update(n.S3.prototype,{getSignatureVersion:function(e){var t=this.api.signatureVersion,r=this._originalConfig?this._originalConfig.signatureVersion:null,n=this.config.signatureVersion,i=!!e&&e.isPresigned();return r?r="v2"===r?"s3":r:(!0!==i?t="v4":n&&(t=n),t)},getSigningName:function(e){if(e&&"writeGetObjectResponse"===e.operation)return u;var t=n.Service.prototype.getSigningName;return e&&e._parsedArn&&e._parsedArn.service?e._parsedArn.service:t.call(this)},getSignerClass:function(e){var t=this.getSignatureVersion(e);return n.Signers.RequestSigner.getVersion(t)},validateService:function(){var e,t=[];if(this.config.region||(this.config.region="us-east-1"),!this.config.endpoint&&this.config.s3BucketEndpoint&&t.push("An endpoint must be provided when configuring `s3BucketEndpoint` to true."),1===t.length?e=t[0]:t.length>1&&(e="Multiple configuration errors:\n"+t.join("\n")),e)throw n.util.error(new Error,{name:"InvalidEndpoint",message:e})},shouldDisableBodySigning:function(e){var t=this.getSignerClass();return!0===this.config.s3DisableBodySigning&&t===n.Signers.V4&&"https:"===e.httpRequest.endpoint.protocol},setupRequestListeners:function(e){if(e.addListener("validate",this.validateScheme),e.addListener("validate",this.validateBucketName,!0),e.addListener("validate",this.optInUsEast1RegionalEndpoint,!0),e.removeListener("validate",n.EventListeners.Core.VALIDATE_REGION),e.addListener("build",this.addContentType),e.addListener("build",this.computeContentMd5),e.addListener("build",this.computeSseCustomerKeyMd5),e.addListener("build",this.populateURI),e.addListener("afterBuild",this.addExpect100Continue),e.addListener("extractError",this.extractError),e.addListener("extractData",n.util.hoistPayloadMember),e.addListener("extractData",this.extractData),e.addListener("extractData",this.extractErrorFrom200Response),e.addListener("beforePresign",this.prepareSignedUrl),this.shouldDisableBodySigning(e)&&(e.removeListener("afterBuild",n.EventListeners.Core.COMPUTE_SHA256),e.addListener("afterBuild",this.disableBodySigning)),"createBucket"!==e.operation&&o.isArnInParam(e,"Bucket"))return e._parsedArn=n.util.ARN.parse(e.params.Bucket),e.removeListener("validate",this.validateBucketName),e.removeListener("build",this.populateURI),"s3"===e._parsedArn.service?(e.addListener("validate",o.validateS3AccessPointArn),e.addListener("validate",this.validateArnResourceType),e.addListener("validate",this.validateArnRegion)):"s3-outposts"===e._parsedArn.service&&(e.addListener("validate",o.validateOutpostsAccessPointArn),e.addListener("validate",o.validateOutpostsArn),e.addListener("validate",o.validateArnRegion)),e.addListener("validate",o.validateArnAccount),e.addListener("validate",o.validateArnService),e.addListener("build",this.populateUriFromAccessPointArn),void e.addListener("build",o.validatePopulateUriFromArn);e.addListener("validate",this.validateBucketEndpoint),e.addListener("validate",this.correctBucketRegionFromCache),e.onAsync("extractError",this.requestBucketRegion),n.util.isBrowser()&&e.onAsync("retry",this.reqRegionForNetworkingError)},validateScheme:function(e){var t=e.params,r=e.httpRequest.endpoint.protocol;if((t.SSECustomerKey||t.CopySourceSSECustomerKey)&&"https:"!==r)throw n.util.error(new Error,{code:"ConfigError",message:"Cannot send SSE keys over HTTP. Set 'sslEnabled'to 'true' in your configuration"})},validateBucketEndpoint:function(e){if(!e.params.Bucket&&e.service.config.s3BucketEndpoint)throw n.util.error(new Error,{code:"ConfigError",message:"Cannot send requests to root API with `s3BucketEndpoint` set."})},validateArnRegion:function(e){o.validateArnRegion(e,{allowFipsEndpoint:!0})},validateArnResourceType:function(e){var t=e._parsedArn.resource;if(0!==t.indexOf("accesspoint:")&&0!==t.indexOf("accesspoint/"))throw n.util.error(new Error,{code:"InvalidARN",message:"ARN resource should begin with 'accesspoint/'"})},validateBucketName:function(e){var t=e.service.getSignatureVersion(e),r=e.params&&e.params.Bucket,i=e.params&&e.params.Key,a=r&&r.indexOf("/");if(r&&a>=0)if("string"==typeof i&&a>0){e.params=n.util.copy(e.params);var o=r.substr(a+1)||"";e.params.Key=o+"/"+i,e.params.Bucket=r.substr(0,a)}else if("v4"===t){var s="Bucket names cannot contain forward slashes. Bucket: "+r;throw n.util.error(new Error,{code:"InvalidBucket",message:s})}},isValidAccelerateOperation:function(e){return-1===["createBucket","deleteBucket","listBuckets"].indexOf(e)},optInUsEast1RegionalEndpoint:function(e){var t=e.service,r=t.config;if(r.s3UsEast1RegionalEndpoint=a(t._originalConfig,{env:"AWS_S3_US_EAST_1_REGIONAL_ENDPOINT",sharedConfig:"s3_us_east_1_regional_endpoint",clientConfig:"s3UsEast1RegionalEndpoint"}),!(t._originalConfig||{}).endpoint&&"us-east-1"===e.httpRequest.region&&"regional"===r.s3UsEast1RegionalEndpoint&&e.httpRequest.endpoint.hostname.indexOf("s3.amazonaws.com")>=0){var n=r.endpoint.indexOf(".amazonaws.com"),i=r.endpoint.substring(0,n)+".us-east-1"+r.endpoint.substring(n);e.httpRequest.updateEndpoint(i)}},populateURI:function(e){var t=e.httpRequest,r=e.params.Bucket,n=e.service,i=t.endpoint;if(r&&!n.pathStyleBucketName(r)){n.config.useAccelerateEndpoint&&n.isValidAccelerateOperation(e.operation)?n.config.useDualstackEndpoint?i.hostname=r+".s3-accelerate.dualstack.amazonaws.com":i.hostname=r+".s3-accelerate.amazonaws.com":n.config.s3BucketEndpoint||(i.hostname=r+"."+i.hostname);var a=i.port;i.host=80!==a&&443!==a?i.hostname+":"+i.port:i.hostname,t.virtualHostedBucket=r,n.removeVirtualHostedBucketFromPath(e)}},removeVirtualHostedBucketFromPath:function(e){var t=e.httpRequest,r=t.virtualHostedBucket;if(r&&t.path){if(e.params&&e.params.Key){var i="/"+n.util.uriEscapePath(e.params.Key);if(0===t.path.indexOf(i)&&(t.path.length===i.length||"?"===t.path[i.length]))return}t.path=t.path.replace(new RegExp("/"+r),""),"/"!==t.path[0]&&(t.path="/"+t.path)}},populateUriFromAccessPointArn:function(e){var t=e._parsedArn,r="s3-outposts"===t.service,i="s3-object-lambda"===t.service,a=r?"."+t.outpostId:"",o=r?"s3-outposts":"s3-accesspoint",c=!r&&e.service.config.useFipsEndpoint?"-fips":"",l=!r&&e.service.config.useDualstackEndpoint?".dualstack":"",u=e.httpRequest.endpoint,p=s.getEndpointSuffix(t.region),d=e.service.config.s3UseArnRegion;if(u.hostname=[t.accessPoint+"-"+t.accountId+a,o+c+l,d?t.region:e.service.config.region,p].join("."),i){o="s3-object-lambda";var h=t.resource.split("/")[1];c=e.service.config.useFipsEndpoint?"-fips":"",u.hostname=[h+"-"+t.accountId,o+c,d?t.region:e.service.config.region,p].join(".")}u.host=u.hostname;var m=n.util.uriEscape(e.params.Bucket),f=e.httpRequest.path;e.httpRequest.path=f.replace(new RegExp("/"+m),""),"/"!==e.httpRequest.path[0]&&(e.httpRequest.path="/"+e.httpRequest.path),e.httpRequest.region=t.region},addExpect100Continue:function(e){var t=e.httpRequest.headers["Content-Length"];n.util.isNode()&&(t>=1048576||e.params.Body instanceof n.util.stream.Stream)&&(e.httpRequest.headers.Expect="100-continue")},addContentType:function(e){var t=e.httpRequest;if("GET"!==t.method&&"HEAD"!==t.method){t.headers["Content-Type"]||(t.headers["Content-Type"]="application/octet-stream");var r=t.headers["Content-Type"];n.util.isBrowser()&&("string"!=typeof t.body||r.match(/;\s*charset=/)?t.headers["Content-Type"]=r.replace(/(;\s*charset=)(.+)$/,(function(e,t,r){return t+r.toUpperCase()})):t.headers["Content-Type"]+="; charset=UTF-8")}else delete t.headers["Content-Type"]},willComputeChecksums:function(e){var t=e.service.api.operations[e.operation].input.members,r=e.httpRequest.body,i=e.service.config.computeChecksums&&t.ContentMD5&&!e.params.ContentMD5&&r&&(n.util.Buffer.isBuffer(e.httpRequest.body)||"string"==typeof e.httpRequest.body);return!(!i||!e.service.shouldDisableBodySigning(e)||e.isPresigned())||!(!i||"s3"!==this.getSignatureVersion(e)||!e.isPresigned())},computeContentMd5:function(e){if(e.service.willComputeChecksums(e)){var t=n.util.crypto.md5(e.httpRequest.body,"base64");e.httpRequest.headers["Content-MD5"]=t}},computeSseCustomerKeyMd5:function(e){n.util.each({SSECustomerKey:"x-amz-server-side-encryption-customer-key-MD5",CopySourceSSECustomerKey:"x-amz-copy-source-server-side-encryption-customer-key-MD5"},(function(t,r){if(e.params[t]){var i=n.util.crypto.md5(e.params[t],"base64");e.httpRequest.headers[r]=i}}))},pathStyleBucketName:function(e){return!(!this.config.s3ForcePathStyle&&(this.config.s3BucketEndpoint||o.dnsCompatibleBucketName(e)&&(!this.config.sslEnabled||!e.match(/\./))))},extractErrorFrom200Response:function(e){if(c[e.request.operation]){var t=e.httpResponse;if(t.body&&t.body.toString().match("<Error>"))throw e.data=null,(this.service?this.service:this).extractError(e),e.error;if(!t.body||!t.body.toString().match(/<[\w_]/))throw e.data=null,n.util.error(new Error,{code:"InternalError",message:"S3 aborted request"})}},retryableError:function(e,t){return!(!c[t.operation]||200!==e.statusCode)||(!t._requestRegionForBucket||!t.service.bucketRegionCache[t._requestRegionForBucket])&&(!(!e||"RequestTimeout"!==e.code)||(e&&-1!=l.indexOf(e.code)&&e.region&&e.region!=t.httpRequest.region?(t.httpRequest.region=e.region,301===e.statusCode&&t.service.updateReqBucketRegion(t),!0):n.Service.prototype.retryableError.call(this,e,t)))},updateReqBucketRegion:function(e,t){var r=e.httpRequest;if("string"==typeof t&&t.length&&(r.region=t),r.endpoint.host.match(/s3(?!-accelerate).*\.amazonaws\.com$/)){var i=e.service,a=i.config,o=a.s3BucketEndpoint;o&&delete a.s3BucketEndpoint;var s=n.util.copy(a);delete s.endpoint,s.region=r.region,r.endpoint=new n.S3(s).endpoint,i.populateURI(e),a.s3BucketEndpoint=o,r.headers.Host=r.endpoint.host,"validate"===e._asm.currentState&&(e.removeListener("build",i.populateURI),e.addListener("build",i.removeVirtualHostedBucketFromPath))}},extractData:function(e){var t=e.request;if("getBucketLocation"===t.operation){var r=e.httpResponse.body.toString().match(/>(.+)<\/Location/);delete e.data._,e.data.LocationConstraint=r?r[1]:""}var n=t.params.Bucket||null;if("deleteBucket"!==t.operation||"string"!=typeof n||e.error){var i=(e.httpResponse.headers||{})["x-amz-bucket-region"]||null;if(!i&&"createBucket"===t.operation&&!e.error){var a=t.params.CreateBucketConfiguration;i=a?"EU"===a.LocationConstraint?"eu-west-1":a.LocationConstraint:"us-east-1"}i&&n&&i!==t.service.bucketRegionCache[n]&&(t.service.bucketRegionCache[n]=i)}else t.service.clearBucketRegionCache(n);t.service.extractRequestIds(e)},extractError:function(e){var t,r={304:"NotModified",403:"Forbidden",400:"BadRequest",404:"NotFound"},i=e.request,a=e.httpResponse.statusCode,o=e.httpResponse.body||"",s=(e.httpResponse.headers||{})["x-amz-bucket-region"]||null,c=i.params.Bucket||null,l=i.service.bucketRegionCache;if(s&&c&&s!==l[c]&&(l[c]=s),r[a]&&0===o.length)c&&!s&&(t=l[c]||null)!==i.httpRequest.region&&(s=t),e.error=n.util.error(new Error,{code:r[a],message:null,region:s});else{var u=(new n.XML.Parser).parse(o.toString());u.Region&&!s?(s=u.Region,c&&s!==l[c]&&(l[c]=s)):!c||s||u.Region||(t=l[c]||null)!==i.httpRequest.region&&(s=t),e.error=n.util.error(new Error,{code:u.Code||a,message:u.Message||null,region:s})}i.service.extractRequestIds(e)},requestBucketRegion:function(e,t){var r=e.error,i=e.request,a=i.params.Bucket||null;if(!r||!a||r.region||"listObjects"===i.operation||n.util.isNode()&&"headBucket"===i.operation||400===r.statusCode&&"headObject"!==i.operation||-1===l.indexOf(r.code))return t();var o=n.util.isNode()?"headBucket":"listObjects",s={Bucket:a};"listObjects"===o&&(s.MaxKeys=0);var c=i.service[o](s);c._requestRegionForBucket=a,c.send((function(){var e=i.service.bucketRegionCache[a]||null;r.region=e,t()}))},reqRegionForNetworkingError:function(e,t){if(!n.util.isBrowser())return t();var r=e.error,i=e.request,a=i.params.Bucket;if(!r||"NetworkingError"!==r.code||!a||"us-east-1"===i.httpRequest.region)return t();var s=i.service,c=s.bucketRegionCache,l=c[a]||null;if(l&&l!==i.httpRequest.region)s.updateReqBucketRegion(i,l),t();else if(o.dnsCompatibleBucketName(a))if(i.httpRequest.virtualHostedBucket){var u=s.listObjects({Bucket:a,MaxKeys:0});s.updateReqBucketRegion(u,"us-east-1"),u._requestRegionForBucket=a,u.send((function(){var e=s.bucketRegionCache[a]||null;e&&e!==i.httpRequest.region&&s.updateReqBucketRegion(i,e),t()}))}else t();else s.updateReqBucketRegion(i,"us-east-1"),"us-east-1"!==c[a]&&(c[a]="us-east-1"),t()},bucketRegionCache:{},clearBucketRegionCache:function(e){var t=this.bucketRegionCache;e?"string"==typeof e&&(e=[e]):e=Object.keys(t);for(var r=0;r<e.length;r++)delete t[e[r]];return t},correctBucketRegionFromCache:function(e){var t=e.params.Bucket||null;if(t){var r=e.service,n=e.httpRequest.region,i=r.bucketRegionCache[t];i&&i!==n&&r.updateReqBucketRegion(e,i)}},extractRequestIds:function(e){var t=e.httpResponse.headers?e.httpResponse.headers["x-amz-id-2"]:null,r=e.httpResponse.headers?e.httpResponse.headers["x-amz-cf-id"]:null;e.extendedRequestId=t,e.cfId=r,e.error&&(e.error.requestId=e.requestId||null,e.error.extendedRequestId=t,e.error.cfId=r)},getSignedUrl:function(e,t,r){var i=(t=n.util.copy(t||{})).Expires||900;if("number"!=typeof i)throw n.util.error(new Error,{code:"InvalidParameterException",message:"The expiration must be a number, received "+typeof i});delete t.Expires;var a=this.makeRequest(e,t);if(!r)return a.presign(i,r);n.util.defer((function(){a.presign(i,r)}))},createPresignedPost:function(e,t){"function"==typeof e&&void 0===t&&(t=e,e=null),e=n.util.copy(e||{});var r=this.config.params||{},i=e.Bucket||r.Bucket,a=this,o=this.config,s=n.util.copy(this.endpoint);function c(){return{url:n.util.urlFormat(s),fields:a.preparePostFields(o.credentials,o.region,i,e.Fields,e.Conditions,e.Expires)}}if(o.s3BucketEndpoint||(s.pathname="/"+i),!t)return c();o.getCredentials((function(e){if(e)t(e);else try{t(null,c())}catch(e){t(e)}}))},preparePostFields:function(e,t,r,a,o,s){var c=this.getSkewCorrectedDate();if(!e||!t||!r)throw new Error("Unable to create a POST object policy without a bucket, region, and credentials");a=n.util.copy(a||{}),o=(o||[]).slice(0),s=s||3600;var l=n.util.date.iso8601(c).replace(/[:\-]|\.\d{3}/g,""),u=l.substr(0,8),p=i.createScope(u,t,"s3"),d=e.accessKeyId+"/"+p;for(var h in a.bucket=r,a["X-Amz-Algorithm"]="AWS4-HMAC-SHA256",a["X-Amz-Credential"]=d,a["X-Amz-Date"]=l,e.sessionToken&&(a["X-Amz-Security-Token"]=e.sessionToken),a)if(a.hasOwnProperty(h)){var m={};m[h]=a[h],o.push(m)}return a.Policy=this.preparePostPolicy(new Date(c.valueOf()+1e3*s),o),a["X-Amz-Signature"]=n.util.crypto.hmac(i.getSigningKey(e,u,t,"s3",!0),a.Policy,"hex"),a},preparePostPolicy:function(e,t){return n.util.base64.encode(JSON.stringify({expiration:n.util.date.iso8601(e),conditions:t}))},prepareSignedUrl:function(e){e.addListener("validate",e.service.noPresignedContentLength),e.removeListener("build",e.service.addContentType),e.params.Body?e.addListener("afterBuild",n.EventListeners.Core.COMPUTE_SHA256):e.removeListener("build",e.service.computeContentMd5)},disableBodySigning:function(e){var t=e.httpRequest.headers;Object.prototype.hasOwnProperty.call(t,"presigned-expires")||(t["X-Amz-Content-Sha256"]="UNSIGNED-PAYLOAD")},noPresignedContentLength:function(e){if(void 0!==e.params.ContentLength)throw n.util.error(new Error,{code:"UnexpectedParameter",message:"ContentLength is not supported in pre-signed URLs."})},createBucket:function(e,t){"function"!=typeof e&&e||(t=t||e,e={});var r=this.endpoint.hostname,i=n.util.copy(e);return r===this.api.globalEndpoint||e.CreateBucketConfiguration||(i.CreateBucketConfiguration={LocationConstraint:this.config.region}),this.makeRequest("createBucket",i,t)},writeGetObjectResponse:function(e,t){var r=this.makeRequest("writeGetObjectResponse",n.util.copy(e),t),i=this.endpoint.hostname;return i=-1!==i.indexOf(this.config.region)?i.replace("s3.",u+"."):i.replace("s3.",u+"."+this.config.region+"."),r.httpRequest.endpoint=new n.Endpoint(i,this.config),r},upload:function(e,t,r){"function"==typeof t&&void 0===r&&(r=t,t=null),t=t||{},t=n.util.merge(t||{},{service:this,params:e});var i=new n.S3.ManagedUpload(t);return"function"==typeof r&&i.send(r),i}}),n.S3.addPromisesToClass=function(e){this.prototype.getSignedUrlPromise=n.util.promisifyMethod("getSignedUrl",e)},n.S3.deletePromisesFromClass=function(){delete this.prototype.getSignedUrlPromise},n.util.addPromises(n.S3)},7065:(e,t,r)=>{var n=r(2042),i=r(443),a={isArnInParam:function(e,t){var r=((e.service.api.operations[e.operation]||{}).input||{}).members||{};return!(!e.params[t]||!r[t])&&n.util.ARN.validate(e.params[t])},validateArnService:function(e){var t=e._parsedArn;if("s3"!==t.service&&"s3-outposts"!==t.service&&"s3-object-lambda"!==t.service)throw n.util.error(new Error,{code:"InvalidARN",message:"expect 's3' or 's3-outposts' or 's3-object-lambda' in ARN service component"})},validateArnAccount:function(e){var t=e._parsedArn;if(!/[0-9]{12}/.exec(t.accountId))throw n.util.error(new Error,{code:"InvalidARN",message:'ARN accountID does not match regex "[0-9]{12}"'})},validateS3AccessPointArn:function(e){var t=e._parsedArn,r=t.resource[11];if(2!==t.resource.split(r).length)throw n.util.error(new Error,{code:"InvalidARN",message:"Access Point ARN should have one resource accesspoint/{accesspointName}"});var i=t.resource.split(r)[1],o=i+"-"+t.accountId;if(!a.dnsCompatibleBucketName(o)||o.match(/\./))throw n.util.error(new Error,{code:"InvalidARN",message:"Access point resource in ARN is not DNS compatible. Got "+i});e._parsedArn.accessPoint=i},validateOutpostsArn:function(e){var t=e._parsedArn;if(0!==t.resource.indexOf("outpost:")&&0!==t.resource.indexOf("outpost/"))throw n.util.error(new Error,{code:"InvalidARN",message:"ARN resource should begin with 'outpost/'"});var r=t.resource[7],i=t.resource.split(r)[1];if(!new RegExp(/^([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]{0,61}[a-zA-Z0-9])$/).test(i))throw n.util.error(new Error,{code:"InvalidARN",message:"Outpost resource in ARN is not DNS compatible. Got "+i});e._parsedArn.outpostId=i},validateOutpostsAccessPointArn:function(e){var t=e._parsedArn,r=t.resource[7];if(4!==t.resource.split(r).length)throw n.util.error(new Error,{code:"InvalidARN",message:"Outposts ARN should have two resources outpost/{outpostId}/accesspoint/{accesspointName}"});var i=t.resource.split(r)[3],o=i+"-"+t.accountId;if(!a.dnsCompatibleBucketName(o)||o.match(/\./))throw n.util.error(new Error,{code:"InvalidARN",message:"Access point resource in ARN is not DNS compatible. Got "+i});e._parsedArn.accessPoint=i},validateArnRegion:function(e,t){void 0===t&&(t={});var r=a.loadUseArnRegionConfig(e),o=e._parsedArn.region,s=e.service.config.region,c=e.service.config.useFipsEndpoint,l=t.allowFipsEndpoint||!1;if(!o){var u="ARN region is empty";throw"s3"===e._parsedArn.service&&(u+="\nYou may want to use multi-regional ARN. The feature is not supported in current SDK. You should consider switching to V3(https://github.com/aws/aws-sdk-js-v3)."),n.util.error(new Error,{code:"InvalidARN",message:u})}if(c&&!l)throw n.util.error(new Error,{code:"InvalidConfiguration",message:"ARN endpoint is not compatible with FIPS region"});if(o.indexOf("fips")>=0)throw n.util.error(new Error,{code:"InvalidConfiguration",message:"FIPS region not allowed in ARN"});if(!r&&o!==s)throw n.util.error(new Error,{code:"InvalidConfiguration",message:"Configured region conflicts with access point region"});if(r&&i.getEndpointSuffix(o)!==i.getEndpointSuffix(s))throw n.util.error(new Error,{code:"InvalidConfiguration",message:"Configured region and access point region not in same partition"});if(e.service.config.useAccelerateEndpoint)throw n.util.error(new Error,{code:"InvalidConfiguration",message:"useAccelerateEndpoint config is not supported with access point ARN"});if("s3-outposts"===e._parsedArn.service&&e.service.config.useDualstackEndpoint)throw n.util.error(new Error,{code:"InvalidConfiguration",message:"Dualstack is not supported with outposts access point ARN"})},loadUseArnRegionConfig:function(e){var t="AWS_S3_USE_ARN_REGION",r="s3_use_arn_region",i=!0,a=e.service._originalConfig||{};if(void 0!==e.service.config.s3UseArnRegion)return e.service.config.s3UseArnRegion;if(void 0!==a.s3UseArnRegion)i=!0===a.s3UseArnRegion;else if(n.util.isNode())if(process.env[t]){var o=process.env[t].trim().toLowerCase();if(["false","true"].indexOf(o)<0)throw n.util.error(new Error,{code:"InvalidConfiguration",message:t+" only accepts true or false. Got "+process.env[t],retryable:!1});i="true"===o}else{var s={};try{s=n.util.getProfilesFromSharedConfig(n.util.iniLoader)[process.env.AWS_PROFILE||n.util.defaultProfile]}catch(e){}if(s[r]){if(["false","true"].indexOf(s[r].trim().toLowerCase())<0)throw n.util.error(new Error,{code:"InvalidConfiguration",message:r+" only accepts true or false. Got "+s[r],retryable:!1});i="true"===s[r].trim().toLowerCase()}}return e.service.config.s3UseArnRegion=i,i},validatePopulateUriFromArn:function(e){if(e.service._originalConfig&&e.service._originalConfig.endpoint)throw n.util.error(new Error,{code:"InvalidConfiguration",message:"Custom endpoint is not compatible with access point ARN"});if(e.service.config.s3ForcePathStyle)throw n.util.error(new Error,{code:"InvalidConfiguration",message:"Cannot construct path-style endpoint with access point"})},dnsCompatibleBucketName:function(e){var t=e,r=new RegExp(/^[a-z0-9][a-z0-9\.\-]{1,61}[a-z0-9]$/),n=new RegExp(/(\d+\.){3}\d+/),i=new RegExp(/\.\./);return!(!t.match(r)||t.match(n)||t.match(i))}};e.exports=a},5108:(e,t,r)=>{var n=r(2042),i=r(1046);n.util.update(n.STS.prototype,{credentialsFrom:function(e,t){return e?(t||(t=new n.TemporaryCredentials),t.expired=!1,t.accessKeyId=e.Credentials.AccessKeyId,t.secretAccessKey=e.Credentials.SecretAccessKey,t.sessionToken=e.Credentials.SessionToken,t.expireTime=e.Credentials.Expiration,t):null},assumeRoleWithWebIdentity:function(e,t){return this.makeUnauthenticatedRequest("assumeRoleWithWebIdentity",e,t)},assumeRoleWithSAML:function(e,t){return this.makeUnauthenticatedRequest("assumeRoleWithSAML",e,t)},setupRequestListeners:function(e){e.addListener("validate",this.optInRegionalEndpoint,!0)},optInRegionalEndpoint:function(e){var t=e.service,r=t.config;if(r.stsRegionalEndpoints=i(t._originalConfig,{env:"AWS_STS_REGIONAL_ENDPOINTS",sharedConfig:"sts_regional_endpoints",clientConfig:"stsRegionalEndpoints"}),"regional"===r.stsRegionalEndpoints&&t.isGlobalEndpoint){if(!r.region)throw n.util.error(new Error,{code:"ConfigError",message:"Missing region in config"});var a=r.endpoint.indexOf(".amazonaws.com"),o=r.endpoint.substring(0,a)+"."+r.region+r.endpoint.substring(a);e.httpRequest.updateEndpoint(o),e.httpRequest.region=r.region}}})},1977:(e,t,r)=>{var n=r(2042);n.Signers.Bearer=n.util.inherit(n.Signers.RequestSigner,{constructor:function(e){n.Signers.RequestSigner.call(this,e)},addAuthorization:function(e){this.request.headers.Authorization="Bearer "+e.token}})},5294:(e,t,r)=>{var n=r(2042),i=n.util.inherit,a="presigned-expires";function o(e){var t=e.httpRequest.headers[a],r=e.service.getSignerClass(e);if(delete e.httpRequest.headers["User-Agent"],delete e.httpRequest.headers["X-Amz-User-Agent"],r===n.Signers.V4){if(t>604800)throw n.util.error(new Error,{code:"InvalidExpiryTime",message:"Presigning does not support expiry time greater than a week with SigV4 signing.",retryable:!1});e.httpRequest.headers[a]=t}else{if(r!==n.Signers.S3)throw n.util.error(new Error,{message:"Presigning only supports S3 or SigV4 signing.",code:"UnsupportedSigner",retryable:!1});var i=e.service?e.service.getSkewCorrectedDate():n.util.date.getDate();e.httpRequest.headers[a]=parseInt(n.util.date.unixTimestamp(i)+t,10).toString()}}function s(e){var t=e.httpRequest.endpoint,r=n.util.urlParse(e.httpRequest.path),i={};r.search&&(i=n.util.queryStringParse(r.search.substr(1)));var o=e.httpRequest.headers.Authorization.split(" ");if("AWS"===o[0])o=o[1].split(":"),i.Signature=o.pop(),i.AWSAccessKeyId=o.join(":"),n.util.each(e.httpRequest.headers,(function(e,t){e===a&&(e="Expires"),0===e.indexOf("x-amz-meta-")&&(delete i[e],e=e.toLowerCase()),i[e]=t})),delete e.httpRequest.headers[a],delete i.Authorization,delete i.Host;else if("AWS4-HMAC-SHA256"===o[0]){o.shift();var s=o.join(" ").match(/Signature=(.*?)(?:,|\s|\r?\n|$)/)[1];i["X-Amz-Signature"]=s,delete i.Expires}t.pathname=r.pathname,t.search=n.util.queryParamsToString(i)}n.Signers.Presign=i({sign:function(e,t,r){if(e.httpRequest.headers[a]=t||3600,e.on("build",o),e.on("sign",s),e.removeListener("afterBuild",n.EventListeners.Core.SET_CONTENT_LENGTH),e.removeListener("afterBuild",n.EventListeners.Core.COMPUTE_SHA256),e.emit("beforePresign",[e]),!r){if(e.build(),e.response.error)throw e.response.error;return n.util.urlFormat(e.httpRequest.endpoint)}e.build((function(){this.response.error?r(this.response.error):r(null,n.util.urlFormat(e.httpRequest.endpoint))}))}}),e.exports=n.Signers.Presign},1939:(e,t,r)=>{var n=r(2042),i=n.util.inherit;n.Signers.RequestSigner=i({constructor:function(e){this.request=e},setServiceClientId:function(e){this.serviceClientId=e},getServiceClientId:function(){return this.serviceClientId}}),n.Signers.RequestSigner.getVersion=function(e){switch(e){case"v2":return n.Signers.V2;case"v3":return n.Signers.V3;case"s3v4":case"v4":return n.Signers.V4;case"s3":return n.Signers.S3;case"v3https":return n.Signers.V3Https;case"bearer":return n.Signers.Bearer}throw new Error("Unknown signing version "+e)},r(6120),r(2490),r(6875),r(7402),r(5910),r(5294),r(1977)},5910:(e,t,r)=>{var n=r(2042),i=n.util.inherit;n.Signers.S3=i(n.Signers.RequestSigner,{subResources:{acl:1,accelerate:1,analytics:1,cors:1,lifecycle:1,delete:1,inventory:1,location:1,logging:1,metrics:1,notification:1,partNumber:1,policy:1,requestPayment:1,replication:1,restore:1,tagging:1,torrent:1,uploadId:1,uploads:1,versionId:1,versioning:1,versions:1,website:1},responseHeaders:{"response-content-type":1,"response-content-language":1,"response-expires":1,"response-cache-control":1,"response-content-disposition":1,"response-content-encoding":1},addAuthorization:function(e,t){this.request.headers["presigned-expires"]||(this.request.headers["X-Amz-Date"]=n.util.date.rfc822(t)),e.sessionToken&&(this.request.headers["x-amz-security-token"]=e.sessionToken);var r=this.sign(e.secretAccessKey,this.stringToSign()),i="AWS "+e.accessKeyId+":"+r;this.request.headers.Authorization=i},stringToSign:function(){var e=this.request,t=[];t.push(e.method),t.push(e.headers["Content-MD5"]||""),t.push(e.headers["Content-Type"]||""),t.push(e.headers["presigned-expires"]||"");var r=this.canonicalizedAmzHeaders();return r&&t.push(r),t.push(this.canonicalizedResource()),t.join("\n")},canonicalizedAmzHeaders:function(){var e=[];n.util.each(this.request.headers,(function(t){t.match(/^x-amz-/i)&&e.push(t)})),e.sort((function(e,t){return e.toLowerCase()<t.toLowerCase()?-1:1}));var t=[];return n.util.arrayEach.call(this,e,(function(e){t.push(e.toLowerCase()+":"+String(this.request.headers[e]))})),t.join("\n")},canonicalizedResource:function(){var e=this.request,t=e.path.split("?"),r=t[0],i=t[1],a="";if(e.virtualHostedBucket&&(a+="/"+e.virtualHostedBucket),a+=r,i){var o=[];n.util.arrayEach.call(this,i.split("&"),(function(e){var t=e.split("=")[0],r=e.split("=")[1];if(this.subResources[t]||this.responseHeaders[t]){var n={name:t};void 0!==r&&(this.subResources[t]?n.value=r:n.value=decodeURIComponent(r)),o.push(n)}})),o.sort((function(e,t){return e.name<t.name?-1:1})),o.length&&(i=[],n.util.arrayEach(o,(function(e){void 0===e.value?i.push(e.name):i.push(e.name+"="+e.value)})),a+="?"+i.join("&"))}return a},sign:function(e,t){return n.util.crypto.hmac(e,t,"base64","sha1")}}),e.exports=n.Signers.S3},6120:(e,t,r)=>{var n=r(2042),i=n.util.inherit;n.Signers.V2=i(n.Signers.RequestSigner,{addAuthorization:function(e,t){t||(t=n.util.date.getDate());var r=this.request;r.params.Timestamp=n.util.date.iso8601(t),r.params.SignatureVersion="2",r.params.SignatureMethod="HmacSHA256",r.params.AWSAccessKeyId=e.accessKeyId,e.sessionToken&&(r.params.SecurityToken=e.sessionToken),delete r.params.Signature,r.params.Signature=this.signature(e),r.body=n.util.queryParamsToString(r.params),r.headers["Content-Length"]=r.body.length},signature:function(e){return n.util.crypto.hmac(e.secretAccessKey,this.stringToSign(),"base64")},stringToSign:function(){var e=[];return e.push(this.request.method),e.push(this.request.endpoint.host.toLowerCase()),e.push(this.request.pathname()),e.push(n.util.queryParamsToString(this.request.params)),e.join("\n")}}),e.exports=n.Signers.V2},2490:(e,t,r)=>{var n=r(2042),i=n.util.inherit;n.Signers.V3=i(n.Signers.RequestSigner,{addAuthorization:function(e,t){var r=n.util.date.rfc822(t);this.request.headers["X-Amz-Date"]=r,e.sessionToken&&(this.request.headers["x-amz-security-token"]=e.sessionToken),this.request.headers["X-Amzn-Authorization"]=this.authorization(e,r)},authorization:function(e){return"AWS3 AWSAccessKeyId="+e.accessKeyId+",Algorithm=HmacSHA256,SignedHeaders="+this.signedHeaders()+",Signature="+this.signature(e)},signedHeaders:function(){var e=[];return n.util.arrayEach(this.headersToSign(),(function(t){e.push(t.toLowerCase())})),e.sort().join(";")},canonicalHeaders:function(){var e=this.request.headers,t=[];return n.util.arrayEach(this.headersToSign(),(function(r){t.push(r.toLowerCase().trim()+":"+String(e[r]).trim())})),t.sort().join("\n")+"\n"},headersToSign:function(){var e=[];return n.util.each(this.request.headers,(function(t){("Host"===t||"Content-Encoding"===t||t.match(/^X-Amz/i))&&e.push(t)})),e},signature:function(e){return n.util.crypto.hmac(e.secretAccessKey,this.stringToSign(),"base64")},stringToSign:function(){var e=[];return e.push(this.request.method),e.push("/"),e.push(""),e.push(this.canonicalHeaders()),e.push(this.request.body),n.util.crypto.sha256(e.join("\n"))}}),e.exports=n.Signers.V3},6875:(e,t,r)=>{var n=r(2042),i=n.util.inherit;r(2490),n.Signers.V3Https=i(n.Signers.V3,{authorization:function(e){return"AWS3-HTTPS AWSAccessKeyId="+e.accessKeyId+",Algorithm=HmacSHA256,Signature="+this.signature(e)},stringToSign:function(){return this.request.headers["X-Amz-Date"]}}),e.exports=n.Signers.V3Https},7402:(e,t,r)=>{var n=r(2042),i=r(6517),a=n.util.inherit,o="presigned-expires";n.Signers.V4=a(n.Signers.RequestSigner,{constructor:function(e,t,r){n.Signers.RequestSigner.call(this,e),this.serviceName=t,r=r||{},this.signatureCache="boolean"!=typeof r.signatureCache||r.signatureCache,this.operation=r.operation,this.signatureVersion=r.signatureVersion},algorithm:"AWS4-HMAC-SHA256",addAuthorization:function(e,t){var r=n.util.date.iso8601(t).replace(/[:\-]|\.\d{3}/g,"");this.isPresigned()?this.updateForPresigned(e,r):this.addHeaders(e,r),this.request.headers.Authorization=this.authorization(e,r)},addHeaders:function(e,t){this.request.headers["X-Amz-Date"]=t,e.sessionToken&&(this.request.headers["x-amz-security-token"]=e.sessionToken)},updateForPresigned:function(e,t){var r=this.credentialString(t),i={"X-Amz-Date":t,"X-Amz-Algorithm":this.algorithm,"X-Amz-Credential":e.accessKeyId+"/"+r,"X-Amz-Expires":this.request.headers[o],"X-Amz-SignedHeaders":this.signedHeaders()};e.sessionToken&&(i["X-Amz-Security-Token"]=e.sessionToken),this.request.headers["Content-Type"]&&(i["Content-Type"]=this.request.headers["Content-Type"]),this.request.headers["Content-MD5"]&&(i["Content-MD5"]=this.request.headers["Content-MD5"]),this.request.headers["Cache-Control"]&&(i["Cache-Control"]=this.request.headers["Cache-Control"]),n.util.each.call(this,this.request.headers,(function(e,t){if(e!==o&&this.isSignableHeader(e)){var r=e.toLowerCase();0===r.indexOf("x-amz-meta-")?i[r]=t:0===r.indexOf("x-amz-")&&(i[e]=t)}}));var a=this.request.path.indexOf("?")>=0?"&":"?";this.request.path+=a+n.util.queryParamsToString(i)},authorization:function(e,t){var r=[],n=this.credentialString(t);return r.push(this.algorithm+" Credential="+e.accessKeyId+"/"+n),r.push("SignedHeaders="+this.signedHeaders()),r.push("Signature="+this.signature(e,t)),r.join(", ")},signature:function(e,t){var r=i.getSigningKey(e,t.substr(0,8),this.request.region,this.serviceName,this.signatureCache);return n.util.crypto.hmac(r,this.stringToSign(t),"hex")},stringToSign:function(e){var t=[];return t.push("AWS4-HMAC-SHA256"),t.push(e),t.push(this.credentialString(e)),t.push(this.hexEncodedHash(this.canonicalString())),t.join("\n")},canonicalString:function(){var e=[],t=this.request.pathname();return"s3"!==this.serviceName&&"s3v4"!==this.signatureVersion&&(t=n.util.uriEscapePath(t)),e.push(this.request.method),e.push(t),e.push(this.request.search()),e.push(this.canonicalHeaders()+"\n"),e.push(this.signedHeaders()),e.push(this.hexEncodedBodyHash()),e.join("\n")},canonicalHeaders:function(){var e=[];n.util.each.call(this,this.request.headers,(function(t,r){e.push([t,r])})),e.sort((function(e,t){return e[0].toLowerCase()<t[0].toLowerCase()?-1:1}));var t=[];return n.util.arrayEach.call(this,e,(function(e){var r=e[0].toLowerCase();if(this.isSignableHeader(r)){var i=e[1];if(null==i||"function"!=typeof i.toString)throw n.util.error(new Error("Header "+r+" contains invalid value"),{code:"InvalidHeader"});t.push(r+":"+this.canonicalHeaderValues(i.toString()))}})),t.join("\n")},canonicalHeaderValues:function(e){return e.replace(/\s+/g," ").replace(/^\s+|\s+$/g,"")},signedHeaders:function(){var e=[];return n.util.each.call(this,this.request.headers,(function(t){t=t.toLowerCase(),this.isSignableHeader(t)&&e.push(t)})),e.sort().join(";")},credentialString:function(e){return i.createScope(e.substr(0,8),this.request.region,this.serviceName)},hexEncodedHash:function(e){return n.util.crypto.sha256(e,"hex")},hexEncodedBodyHash:function(){var e=this.request;return this.isPresigned()&&["s3","s3-object-lambda"].indexOf(this.serviceName)>-1&&!e.body?"UNSIGNED-PAYLOAD":e.headers["X-Amz-Content-Sha256"]?e.headers["X-Amz-Content-Sha256"]:this.hexEncodedHash(this.request.body||"")},unsignableHeaders:["authorization","content-type","content-length","user-agent",o,"expect","x-amzn-trace-id"],isSignableHeader:function(e){return 0===e.toLowerCase().indexOf("x-amz-")||this.unsignableHeaders.indexOf(e)<0},isPresigned:function(){return!!this.request.headers[o]}}),e.exports=n.Signers.V4},6517:(e,t,r)=>{var n=r(2042),i={},a=[],o="aws4_request";e.exports={createScope:function(e,t,r){return[e.substr(0,8),t,r,o].join("/")},getSigningKey:function(e,t,r,s,c){var l=[n.util.crypto.hmac(e.secretAccessKey,e.accessKeyId,"base64"),t,r,s].join("_");if((c=!1!==c)&&l in i)return i[l];var u=n.util.crypto.hmac("AWS4"+e.secretAccessKey,t,"buffer"),p=n.util.crypto.hmac(u,r,"buffer"),d=n.util.crypto.hmac(p,s,"buffer"),h=n.util.crypto.hmac(d,o,"buffer");return c&&(i[l]=h,a.push(l),a.length>50&&delete i[a.shift()]),h},emptyCache:function(){i={},a=[]}}},3827:e=>{function t(e,t){this.currentState=t||null,this.states=e||{}}t.prototype.runTo=function(e,t,r,n){"function"==typeof e&&(n=r,r=t,t=e,e=null);var i=this,a=i.states[i.currentState];a.fn.call(r||i,n,(function(n){if(n){if(!a.fail)return t?t.call(r,n):null;i.currentState=a.fail}else{if(!a.accept)return t?t.call(r):null;i.currentState=a.accept}if(i.currentState===e)return t?t.call(r,n):null;i.runTo(e,t,r,n)}))},t.prototype.addState=function(e,t,r,n){return"function"==typeof t?(n=t,t=null,r=null):"function"==typeof r&&(n=r,r=null),this.currentState||(this.currentState=e),this.states[e]={accept:t,fail:r,fn:n},this},e.exports=t},3444:(e,t,r)=>{var n,i={environment:"nodejs",engine:function(){if(i.isBrowser()&&"undefined"!=typeof navigator)return navigator.userAgent;var e=process.platform+"/"+process.version;return process.env.AWS_EXECUTION_ENV&&(e+=" exec-env/"+process.env.AWS_EXECUTION_ENV),e},userAgent:function(){var e=i.environment,t="aws-sdk-"+e+"/"+r(2042).VERSION;return"nodejs"===e&&(t+=" "+i.engine()),t},uriEscape:function(e){var t=encodeURIComponent(e);return(t=t.replace(/[^A-Za-z0-9_.~\-%]+/g,escape)).replace(/[*]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()}))},uriEscapePath:function(e){var t=[];return i.arrayEach(e.split("/"),(function(e){t.push(i.uriEscape(e))})),t.join("/")},urlParse:function(e){return i.url.parse(e)},urlFormat:function(e){return i.url.format(e)},queryStringParse:function(e){return i.querystring.parse(e)},queryParamsToString:function(e){var t=[],r=i.uriEscape,n=Object.keys(e).sort();return i.arrayEach(n,(function(n){var a=e[n],o=r(n),s=o+"=";if(Array.isArray(a)){var c=[];i.arrayEach(a,(function(e){c.push(r(e))})),s=o+"="+c.sort().join("&"+o+"=")}else null!=a&&(s=o+"="+r(a));t.push(s)})),t.join("&")},readFileSync:function(e){return i.isBrowser()?null:r(1359).readFileSync(e,"utf-8")},base64:{encode:function(e){if("number"==typeof e)throw i.error(new Error("Cannot base64 encode number "+e));return null==e?e:i.buffer.toBuffer(e).toString("base64")},decode:function(e){if("number"==typeof e)throw i.error(new Error("Cannot base64 decode number "+e));return null==e?e:i.buffer.toBuffer(e,"base64")}},buffer:{toBuffer:function(e,t){return"function"==typeof i.Buffer.from&&i.Buffer.from!==Uint8Array.from?i.Buffer.from(e,t):new i.Buffer(e,t)},alloc:function(e,t,r){if("number"!=typeof e)throw new Error("size passed to alloc must be a number.");if("function"==typeof i.Buffer.alloc)return i.Buffer.alloc(e,t,r);var n=new i.Buffer(e);return void 0!==t&&"function"==typeof n.fill&&n.fill(t,void 0,void 0,r),n},toStream:function(e){i.Buffer.isBuffer(e)||(e=i.buffer.toBuffer(e));var t=new i.stream.Readable,r=0;return t._read=function(n){if(r>=e.length)return t.push(null);var i=r+n;i>e.length&&(i=e.length),t.push(e.slice(r,i)),r=i},t},concat:function(e){var t,r,n=0,a=0;for(r=0;r<e.length;r++)n+=e[r].length;for(t=i.buffer.alloc(n),r=0;r<e.length;r++)e[r].copy(t,a),a+=e[r].length;return t}},string:{byteLength:function(e){if(null==e)return 0;if("string"==typeof e&&(e=i.buffer.toBuffer(e)),"number"==typeof e.byteLength)return e.byteLength;if("number"==typeof e.length)return e.length;if("number"==typeof e.size)return e.size;if("string"==typeof e.path)return r(1359).lstatSync(e.path).size;throw i.error(new Error("Cannot determine length of "+e),{object:e})},upperFirst:function(e){return e[0].toUpperCase()+e.substr(1)},lowerFirst:function(e){return e[0].toLowerCase()+e.substr(1)}},ini:{parse:function(e){var t,r={};return i.arrayEach(e.split(/\r?\n/),(function(e){if("["===(e=e.split(/(^|\s)[;#]/)[0].trim())[0]&&"]"===e[e.length-1]){if("__proto__"===(t=e.substring(1,e.length-1))||"__proto__"===t.split(/\s/)[1])throw i.error(new Error("Cannot load profile name '"+t+"' from shared ini file."))}else if(t){var n=e.indexOf("="),a=e.length-1;if(-1!==n&&0!==n&&n!==a){var o=e.substring(0,n).trim(),s=e.substring(n+1).trim();r[t]=r[t]||{},r[t][o]=s}}})),r}},fn:{noop:function(){},callback:function(e){if(e)throw e},makeAsync:function(e,t){return t&&t<=e.length?e:function(){var t=Array.prototype.slice.call(arguments,0);t.pop()(e.apply(null,t))}}},date:{getDate:function(){return n||(n=r(2042)),n.config.systemClockOffset?new Date((new Date).getTime()+n.config.systemClockOffset):new Date},iso8601:function(e){return void 0===e&&(e=i.date.getDate()),e.toISOString().replace(/\.\d{3}Z$/,"Z")},rfc822:function(e){return void 0===e&&(e=i.date.getDate()),e.toUTCString()},unixTimestamp:function(e){return void 0===e&&(e=i.date.getDate()),e.getTime()/1e3},from:function(e){return"number"==typeof e?new Date(1e3*e):new Date(e)},format:function(e,t){return t||(t="iso8601"),i.date[t](i.date.from(e))},parseTimestamp:function(e){if("number"==typeof e)return new Date(1e3*e);if(e.match(/^\d+$/))return new Date(1e3*e);if(e.match(/^\d{4}/))return new Date(e);if(e.match(/^\w{3},/))return new Date(e);throw i.error(new Error("unhandled timestamp format: "+e),{code:"TimestampParserError"})}},crypto:{crc32Table:[0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759,2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977,2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755,2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956,3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270,936918e3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117],crc32:function(e){var t=i.crypto.crc32Table,r=-1;"string"==typeof e&&(e=i.buffer.toBuffer(e));for(var n=0;n<e.length;n++)r=r>>>8^t[255&(r^e.readUInt8(n))];return(-1^r)>>>0},hmac:function(e,t,r,n){return r||(r="binary"),"buffer"===r&&(r=void 0),n||(n="sha256"),"string"==typeof t&&(t=i.buffer.toBuffer(t)),i.crypto.lib.createHmac(n,e).update(t).digest(r)},md5:function(e,t,r){return i.crypto.hash("md5",e,t,r)},sha256:function(e,t,r){return i.crypto.hash("sha256",e,t,r)},hash:function(e,t,r,n){var a=i.crypto.createHash(e);r||(r="binary"),"buffer"===r&&(r=void 0),"string"==typeof t&&(t=i.buffer.toBuffer(t));var o=i.arraySliceFn(t),s=i.Buffer.isBuffer(t);if(i.isBrowser()&&"undefined"!=typeof ArrayBuffer&&t&&t.buffer instanceof ArrayBuffer&&(s=!0),n&&"object"==typeof t&&"function"==typeof t.on&&!s)t.on("data",(function(e){a.update(e)})),t.on("error",(function(e){n(e)})),t.on("end",(function(){n(null,a.digest(r))}));else{if(!n||!o||s||"undefined"==typeof FileReader){i.isBrowser()&&"object"==typeof t&&!s&&(t=new i.Buffer(new Uint8Array(t)));var c=a.update(t).digest(r);return n&&n(null,c),c}var l=0,u=new FileReader;u.onerror=function(){n(new Error("Failed to read data."))},u.onload=function(){var e=new i.Buffer(new Uint8Array(u.result));a.update(e),l+=e.length,u._continueReading()},u._continueReading=function(){if(l>=t.size)n(null,a.digest(r));else{var e=l+524288;e>t.size&&(e=t.size),u.readAsArrayBuffer(o.call(t,l,e))}},u._continueReading()}},toHex:function(e){for(var t=[],r=0;r<e.length;r++)t.push(("0"+e.charCodeAt(r).toString(16)).substr(-2,2));return t.join("")},createHash:function(e){return i.crypto.lib.createHash(e)}},abort:{},each:function(e,t){for(var r in e)if(Object.prototype.hasOwnProperty.call(e,r)&&t.call(this,r,e[r])===i.abort)break},arrayEach:function(e,t){for(var r in e)if(Object.prototype.hasOwnProperty.call(e,r)&&t.call(this,e[r],parseInt(r,10))===i.abort)break},update:function(e,t){return i.each(t,(function(t,r){e[t]=r})),e},merge:function(e,t){return i.update(i.copy(e),t)},copy:function(e){if(null==e)return e;var t={};for(var r in e)t[r]=e[r];return t},isEmpty:function(e){for(var t in e)if(Object.prototype.hasOwnProperty.call(e,t))return!1;return!0},arraySliceFn:function(e){var t=e.slice||e.webkitSlice||e.mozSlice;return"function"==typeof t?t:null},isType:function(e,t){return"function"==typeof t&&(t=i.typeName(t)),Object.prototype.toString.call(e)==="[object "+t+"]"},typeName:function(e){if(Object.prototype.hasOwnProperty.call(e,"name"))return e.name;var t=e.toString(),r=t.match(/^\s*function (.+)\(/);return r?r[1]:t},error:function(e,t){var r=null;for(var n in"string"==typeof e.message&&""!==e.message&&("string"==typeof t||t&&t.message)&&((r=i.copy(e)).message=e.message),e.message=e.message||null,"string"==typeof t?e.message=t:"object"==typeof t&&null!==t&&(i.update(e,t),t.message&&(e.message=t.message),(t.code||t.name)&&(e.code=t.code||t.name),t.stack&&(e.stack=t.stack)),"function"==typeof Object.defineProperty&&(Object.defineProperty(e,"name",{writable:!0,enumerable:!1}),Object.defineProperty(e,"message",{enumerable:!0})),e.name=String(t&&t.name||e.name||e.code||"Error"),e.time=new Date,r&&(e.originalError=r),t||{})if("["===n[0]&&"]"===n[n.length-1]){if("code"===(n=n.slice(1,-1))||"message"===n)continue;e["["+n+"]"]="See error."+n+" for details.",Object.defineProperty(e,n,{value:e[n]||t&&t[n]||r&&r[n],enumerable:!1,writable:!0})}return e},inherit:function(e,t){var r=null;if(void 0===t)t=e,e=Object,r={};else{var n=function(){};n.prototype=e.prototype,r=new n}return t.constructor===Object&&(t.constructor=function(){if(e!==Object)return e.apply(this,arguments)}),t.constructor.prototype=r,i.update(t.constructor.prototype,t),t.constructor.__super__=e,t.constructor},mixin:function(){for(var e=arguments[0],t=1;t<arguments.length;t++)for(var r in arguments[t].prototype){var n=arguments[t].prototype[r];"constructor"!==r&&(e.prototype[r]=n)}return e},hideProperties:function(e,t){"function"==typeof Object.defineProperty&&i.arrayEach(t,(function(t){Object.defineProperty(e,t,{enumerable:!1,writable:!0,configurable:!0})}))},property:function(e,t,r,n,i){var a={configurable:!0,enumerable:void 0===n||n};"function"!=typeof r||i?(a.value=r,a.writable=!0):a.get=r,Object.defineProperty(e,t,a)},memoizedProperty:function(e,t,r,n){var a=null;i.property(e,t,(function(){return null===a&&(a=r()),a}),n)},hoistPayloadMember:function(e){var t=e.request,r=t.operation,n=t.service.api.operations[r],a=n.output;if(a.payload&&!n.hasEventOutput){var o=a.members[a.payload],s=e.data[a.payload];"structure"===o.type&&i.each(s,(function(t,r){i.property(e.data,t,r,!1)}))}},computeSha256:function(e,t){if(i.isNode()){var n=i.stream.Stream,a=r(1359);if("function"==typeof n&&e instanceof n){if("string"!=typeof e.path)return t(new Error("Non-file stream objects are not supported with SigV4"));var o={};"number"==typeof e.start&&(o.start=e.start),"number"==typeof e.end&&(o.end=e.end),e=a.createReadStream(e.path,o)}}i.crypto.sha256(e,"hex",(function(e,r){e?t(e):t(null,r)}))},isClockSkewed:function(e){if(e)return i.property(n.config,"isClockSkewed",Math.abs((new Date).getTime()-e)>=3e5,!1),n.config.isClockSkewed},applyClockOffset:function(e){e&&(n.config.systemClockOffset=e-(new Date).getTime())},extractRequestId:function(e){var t=e.httpResponse.headers["x-amz-request-id"]||e.httpResponse.headers["x-amzn-requestid"];!t&&e.data&&e.data.ResponseMetadata&&(t=e.data.ResponseMetadata.RequestId),t&&(e.requestId=t),e.error&&(e.error.requestId=t)},addPromises:function(e,t){var r=!1;void 0===t&&n&&n.config&&(t=n.config.getPromisesDependency()),void 0===t&&"undefined"!=typeof Promise&&(t=Promise),"function"!=typeof t&&(r=!0),Array.isArray(e)||(e=[e]);for(var i=0;i<e.length;i++){var a=e[i];r?a.deletePromisesFromClass&&a.deletePromisesFromClass():a.addPromisesToClass&&a.addPromisesToClass(t)}},promisifyMethod:function(e,t){return function(){var r=this,n=Array.prototype.slice.call(arguments);return new t((function(t,i){n.push((function(e,r){e?i(e):t(r)})),r[e].apply(r,n)}))}},isDualstackAvailable:function(e){if(!e)return!1;var t=r(2077);return"string"!=typeof e&&(e=e.serviceIdentifier),!("string"!=typeof e||!t.hasOwnProperty(e)||!t[e].dualstackAvailable)},calculateRetryDelay:function(e,t,r){t||(t={});var n=t.customBackoff||null;if("function"==typeof n)return n(e,r);var i="number"==typeof t.base?t.base:100;return Math.random()*(Math.pow(2,e)*i)},handleRequestWithRetries:function(e,t,r){t||(t={});var a=n.HttpClient.getInstance(),o=t.httpOptions||{},s=0,c=function(e){var n=t.maxRetries||0;if(e&&"TimeoutError"===e.code&&(e.retryable=!0),e&&e.retryable&&s<n){var a=i.calculateRetryDelay(s,t.retryDelayOptions,e);if(a>=0)return s++,void setTimeout(l,a+(e.retryAfter||0))}r(e)},l=function(){var t="";a.handleRequest(e,o,(function(e){e.on("data",(function(e){t+=e.toString()})),e.on("end",(function(){var n=e.statusCode;if(n<300)r(null,t);else{var a=1e3*parseInt(e.headers["retry-after"],10)||0,o=i.error(new Error,{statusCode:n,retryable:n>=500||429===n});a&&o.retryable&&(o.retryAfter=a),c(o)}}))}),c)};n.util.defer(l)},uuid:{v4:function(){return r(4001).v4()}},convertPayloadToString:function(e){var t=e.request,r=t.operation,n=t.service.api.operations[r].output||{};n.payload&&e.data[n.payload]&&(e.data[n.payload]=e.data[n.payload].toString())},defer:function(e){"object"==typeof process&&"function"==typeof process.nextTick?process.nextTick(e):"function"==typeof setImmediate?setImmediate(e):setTimeout(e,0)},getRequestPayloadShape:function(e){var t=e.service.api.operations;if(t){var r=(t||{})[e.operation];if(r&&r.input&&r.input.payload)return r.input.members[r.input.payload]}},getProfilesFromSharedConfig:function(e,t){var r={},n={};process.env[i.configOptInEnv]&&(n=e.loadFrom({isConfig:!0,filename:process.env[i.sharedConfigFileEnv]}));var a={};try{a=e.loadFrom({filename:t||process.env[i.configOptInEnv]&&process.env[i.sharedCredentialsFileEnv]})}catch(e){if(!process.env[i.configOptInEnv])throw e}for(var o=0,s=Object.keys(n);o<s.length;o++)r[s[o]]=c(r[s[o]]||{},n[s[o]]);for(o=0,s=Object.keys(a);o<s.length;o++)r[s[o]]=c(r[s[o]]||{},a[s[o]]);return r;function c(e,t){for(var r=0,n=Object.keys(t);r<n.length;r++)e[n[r]]=t[n[r]];return e}},ARN:{validate:function(e){return e&&0===e.indexOf("arn:")&&e.split(":").length>=6},parse:function(e){var t=e.split(":");return{partition:t[1],service:t[2],region:t[3],accountId:t[4],resource:t.slice(5).join(":")}},build:function(e){if(void 0===e.service||void 0===e.region||void 0===e.accountId||void 0===e.resource)throw i.error(new Error("Input ARN object is invalid"));return"arn:"+(e.partition||"aws")+":"+e.service+":"+e.region+":"+e.accountId+":"+e.resource}},defaultProfile:"default",configOptInEnv:"AWS_SDK_LOAD_CONFIG",sharedCredentialsFileEnv:"AWS_SHARED_CREDENTIALS_FILE",sharedConfigFileEnv:"AWS_CONFIG_FILE",imdsDisabledEnv:"AWS_EC2_METADATA_DISABLED"};e.exports=i},884:(e,t,r)=>{var n=r(3444),i=r(4669);function a(){}function o(e,t){for(var r=e.getElementsByTagName(t),n=0,i=r.length;n<i;n++)if(r[n].parentNode===e)return r[n]}function s(e,t){switch(t||(t={}),t.type){case"structure":return c(e,t);case"map":return function(e,t){for(var r={},n=t.key.name||"key",i=t.value.name||"value",a=t.flattened?t.name:"entry",c=e.firstElementChild;c;){if(c.nodeName===a){var l=o(c,n).textContent,u=o(c,i);r[l]=s(u,t.value)}c=c.nextElementSibling}return r}(e,t);case"list":return function(e,t){for(var r=[],n=t.flattened?t.name:t.member.name||"member",i=e.firstElementChild;i;)i.nodeName===n&&r.push(s(i,t.member)),i=i.nextElementSibling;return r}(e,t);case void 0:case null:return function(e){if(null==e)return"";if(!e.firstElementChild)return null===e.parentNode.parentNode?{}:0===e.childNodes.length?"":e.textContent;for(var t={type:"structure",members:{}},r=e.firstElementChild;r;){var n=r.nodeName;Object.prototype.hasOwnProperty.call(t.members,n)?t.members[n].type="list":t.members[n]={name:n},r=r.nextElementSibling}return c(e,t)}(e);default:return function(e,t){if(e.getAttribute){var r=e.getAttribute("encoding");"base64"===r&&(t=new i.create({type:r}))}var n=e.textContent;return""===n&&(n=null),"function"==typeof t.toType?t.toType(n):n}(e,t)}}function c(e,t){var r={};return null===e||n.each(t.members,(function(n,i){if(i.isXmlAttribute){if(Object.prototype.hasOwnProperty.call(e.attributes,i.name)){var a=e.attributes[i.name].value;r[n]=s({textContent:a},i)}}else{var c=i.flattened?e:o(e,i.name);c?r[n]=s(c,i):i.flattened||"list"!==i.type||t.api.xmlNoDefaultLists||(r[n]=i.defaultValue)}})),r}a.prototype.parse=function(e,t){if(""===e.replace(/^\s+/,""))return{};var r,i;try{if(window.DOMParser){try{r=(new DOMParser).parseFromString(e,"text/xml")}catch(e){throw n.error(new Error("Parse error in document"),{originalError:e,code:"XMLParserError",retryable:!0})}if(null===r.documentElement)throw n.error(new Error("Cannot parse empty document."),{code:"XMLParserError",retryable:!0});var a=r.getElementsByTagName("parsererror")[0];if(a&&(a.parentNode===r||"body"===a.parentNode.nodeName||a.parentNode.parentNode===r||"body"===a.parentNode.parentNode.nodeName)){var c=a.getElementsByTagName("div")[0]||a;throw n.error(new Error(c.textContent||"Parser error in document"),{code:"XMLParserError",retryable:!0})}}else{if(!window.ActiveXObject)throw new Error("Cannot load XML parser");if((r=new window.ActiveXObject("Microsoft.XMLDOM")).async=!1,!r.loadXML(e))throw n.error(new Error("Parse error in document"),{code:"XMLParserError",retryable:!0})}}catch(e){i=e}if(r&&r.documentElement&&!i){var l=s(r.documentElement,t),u=o(r.documentElement,"ResponseMetadata");return u&&(l.ResponseMetadata=s(u,{})),l}if(i)throw n.error(i||new Error,{code:"XMLParserError",retryable:!0});return{}},e.exports=a},2154:(e,t,r)=>{var n=r(3444),i=r(9846).XmlNode,a=r(5215).XmlText;function o(){}function s(e,t,r){switch(r.type){case"structure":return function(e,t,r){n.arrayEach(r.memberNames,(function(n){var a=r.members[n];if("body"===a.location){var o=t[n],l=a.name;if(null!=o)if(a.isXmlAttribute)e.addAttribute(l,o);else if(a.flattened)s(e,o,a);else{var u=new i(l);e.addChildNode(u),c(u,a),s(u,o,a)}}}))}(e,t,r);case"map":return function(e,t,r){var a=r.key.name||"key",o=r.value.name||"value";n.each(t,(function(t,n){var c=new i(r.flattened?r.name:"entry");e.addChildNode(c);var l=new i(a),u=new i(o);c.addChildNode(l),c.addChildNode(u),s(l,t,r.key),s(u,n,r.value)}))}(e,t,r);case"list":return function(e,t,r){r.flattened?n.arrayEach(t,(function(t){var n=r.member.name||r.name,a=new i(n);e.addChildNode(a),s(a,t,r.member)})):n.arrayEach(t,(function(t){var n=r.member.name||"member",a=new i(n);e.addChildNode(a),s(a,t,r.member)}))}(e,t,r);default:return function(e,t,r){e.addChildNode(new a(r.toWireFormat(t)))}(e,t,r)}}function c(e,t,r){var n,i="xmlns";t.xmlNamespaceUri?(n=t.xmlNamespaceUri,t.xmlNamespacePrefix&&(i+=":"+t.xmlNamespacePrefix)):r&&t.api.xmlNamespaceUri&&(n=t.api.xmlNamespaceUri),n&&e.addAttribute(i,n)}o.prototype.toXML=function(e,t,r,n){var a=new i(r);return c(a,t,!0),s(a,e,t),a.children.length>0||n?a.toString():""},e.exports=o},250:e=>{e.exports={escapeAttribute:function(e){return e.replace(/&/g,"&").replace(/'/g,"'").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""")}}},7318:e=>{e.exports={escapeElement:function(e){return e.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/\r/g,"
").replace(/\n/g,"
").replace(/\u0085/g,"…").replace(/\u2028/,"
")}}},9846:(e,t,r)=>{var n=r(250).escapeAttribute;function i(e,t){void 0===t&&(t=[]),this.name=e,this.children=t,this.attributes={}}i.prototype.addAttribute=function(e,t){return this.attributes[e]=t,this},i.prototype.addChildNode=function(e){return this.children.push(e),this},i.prototype.removeAttribute=function(e){return delete this.attributes[e],this},i.prototype.toString=function(){for(var e=Boolean(this.children.length),t="<"+this.name,r=this.attributes,i=0,a=Object.keys(r);i<a.length;i++){var o=a[i],s=r[o];null!=s&&(t+=" "+o+'="'+n(""+s)+'"')}return t+(e?">"+this.children.map((function(e){return e.toString()})).join("")+"</"+this.name+">":"/>")},e.exports={XmlNode:i}},5215:(e,t,r)=>{var n=r(7318).escapeElement;function i(e){this.value=e}i.prototype.toString=function(){return n(""+this.value)},e.exports={XmlText:i}},9994:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;for(var r=[],n=0;n<256;++n)r[n]=(n+256).toString(16).substr(1);t.default=function(e,t){var n=t||0,i=r;return[i[e[n++]],i[e[n++]],i[e[n++]],i[e[n++]],"-",i[e[n++]],i[e[n++]],"-",i[e[n++]],i[e[n++]],"-",i[e[n++]],i[e[n++]],"-",i[e[n++]],i[e[n++]],i[e[n++]],i[e[n++]],i[e[n++]],i[e[n++]]].join("")}},4001:(e,t,r)=>{"use strict";Object.defineProperty(t,"v4",{enumerable:!0,get:function(){return n.default}});i(r(9031)),i(r(1146));var n=i(r(7012));i(r(2821));function i(e){return e&&e.__esModule?e:{default:e}}},1639:(e,t)=>{"use strict";function r(e,t){var r=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(r>>16)<<16|65535&r}function n(e,t,n,i,a,o){return r((s=r(r(t,e),r(i,o)))<<(c=a)|s>>>32-c,n);var s,c}function i(e,t,r,i,a,o,s){return n(t&r|~t&i,e,t,a,o,s)}function a(e,t,r,i,a,o,s){return n(t&i|r&~i,e,t,a,o,s)}function o(e,t,r,i,a,o,s){return n(t^r^i,e,t,a,o,s)}function s(e,t,r,i,a,o,s){return n(r^(t|~i),e,t,a,o,s)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;t.default=function(e){if("string"==typeof e){var t=unescape(encodeURIComponent(e));e=new Array(t.length);for(var n=0;n<t.length;n++)e[n]=t.charCodeAt(n)}return function(e){var t,r,n,i=[],a=32*e.length,o="0123456789abcdef";for(t=0;t<a;t+=8)r=e[t>>5]>>>t%32&255,n=parseInt(o.charAt(r>>>4&15)+o.charAt(15&r),16),i.push(n);return i}(function(e,t){var n,c,l,u,p;e[t>>5]|=128<<t%32,e[14+(t+64>>>9<<4)]=t;var d=1732584193,h=-271733879,m=-1732584194,f=271733878;for(n=0;n<e.length;n+=16)c=d,l=h,u=m,p=f,d=i(d,h,m,f,e[n],7,-680876936),f=i(f,d,h,m,e[n+1],12,-389564586),m=i(m,f,d,h,e[n+2],17,606105819),h=i(h,m,f,d,e[n+3],22,-1044525330),d=i(d,h,m,f,e[n+4],7,-176418897),f=i(f,d,h,m,e[n+5],12,1200080426),m=i(m,f,d,h,e[n+6],17,-1473231341),h=i(h,m,f,d,e[n+7],22,-45705983),d=i(d,h,m,f,e[n+8],7,1770035416),f=i(f,d,h,m,e[n+9],12,-1958414417),m=i(m,f,d,h,e[n+10],17,-42063),h=i(h,m,f,d,e[n+11],22,-1990404162),d=i(d,h,m,f,e[n+12],7,1804603682),f=i(f,d,h,m,e[n+13],12,-40341101),m=i(m,f,d,h,e[n+14],17,-1502002290),d=a(d,h=i(h,m,f,d,e[n+15],22,1236535329),m,f,e[n+1],5,-165796510),f=a(f,d,h,m,e[n+6],9,-1069501632),m=a(m,f,d,h,e[n+11],14,643717713),h=a(h,m,f,d,e[n],20,-373897302),d=a(d,h,m,f,e[n+5],5,-701558691),f=a(f,d,h,m,e[n+10],9,38016083),m=a(m,f,d,h,e[n+15],14,-660478335),h=a(h,m,f,d,e[n+4],20,-405537848),d=a(d,h,m,f,e[n+9],5,568446438),f=a(f,d,h,m,e[n+14],9,-1019803690),m=a(m,f,d,h,e[n+3],14,-187363961),h=a(h,m,f,d,e[n+8],20,1163531501),d=a(d,h,m,f,e[n+13],5,-1444681467),f=a(f,d,h,m,e[n+2],9,-51403784),m=a(m,f,d,h,e[n+7],14,1735328473),d=o(d,h=a(h,m,f,d,e[n+12],20,-1926607734),m,f,e[n+5],4,-378558),f=o(f,d,h,m,e[n+8],11,-2022574463),m=o(m,f,d,h,e[n+11],16,1839030562),h=o(h,m,f,d,e[n+14],23,-35309556),d=o(d,h,m,f,e[n+1],4,-1530992060),f=o(f,d,h,m,e[n+4],11,1272893353),m=o(m,f,d,h,e[n+7],16,-155497632),h=o(h,m,f,d,e[n+10],23,-1094730640),d=o(d,h,m,f,e[n+13],4,681279174),f=o(f,d,h,m,e[n],11,-358537222),m=o(m,f,d,h,e[n+3],16,-722521979),h=o(h,m,f,d,e[n+6],23,76029189),d=o(d,h,m,f,e[n+9],4,-640364487),f=o(f,d,h,m,e[n+12],11,-421815835),m=o(m,f,d,h,e[n+15],16,530742520),d=s(d,h=o(h,m,f,d,e[n+2],23,-995338651),m,f,e[n],6,-198630844),f=s(f,d,h,m,e[n+7],10,1126891415),m=s(m,f,d,h,e[n+14],15,-1416354905),h=s(h,m,f,d,e[n+5],21,-57434055),d=s(d,h,m,f,e[n+12],6,1700485571),f=s(f,d,h,m,e[n+3],10,-1894986606),m=s(m,f,d,h,e[n+10],15,-1051523),h=s(h,m,f,d,e[n+1],21,-2054922799),d=s(d,h,m,f,e[n+8],6,1873313359),f=s(f,d,h,m,e[n+15],10,-30611744),m=s(m,f,d,h,e[n+6],15,-1560198380),h=s(h,m,f,d,e[n+13],21,1309151649),d=s(d,h,m,f,e[n+4],6,-145523070),f=s(f,d,h,m,e[n+11],10,-1120210379),m=s(m,f,d,h,e[n+2],15,718787259),h=s(h,m,f,d,e[n+9],21,-343485551),d=r(d,c),h=r(h,l),m=r(m,u),f=r(f,p);return[d,h,m,f]}(function(e){var t,r=[];for(r[(e.length>>2)-1]=void 0,t=0;t<r.length;t+=1)r[t]=0;var n=8*e.length;for(t=0;t<n;t+=8)r[t>>5]|=(255&e[t/8])<<t%32;return r}(e),8*e.length))}},662:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){if(!r)throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return r(n)};var r="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto),n=new Uint8Array(16)},6480:(e,t)=>{"use strict";function r(e,t,r,n){switch(e){case 0:return t&r^~t&n;case 1:case 3:return t^r^n;case 2:return t&r^t&n^r&n}}function n(e,t){return e<<t|e>>>32-t}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;t.default=function(e){var t=[1518500249,1859775393,2400959708,3395469782],i=[1732584193,4023233417,2562383102,271733878,3285377520];if("string"==typeof e){var a=unescape(encodeURIComponent(e));e=new Array(a.length);for(var o=0;o<a.length;o++)e[o]=a.charCodeAt(o)}e.push(128);var s=e.length/4+2,c=Math.ceil(s/16),l=new Array(c);for(o=0;o<c;o++){l[o]=new Array(16);for(var u=0;u<16;u++)l[o][u]=e[64*o+4*u]<<24|e[64*o+4*u+1]<<16|e[64*o+4*u+2]<<8|e[64*o+4*u+3]}for(l[c-1][14]=8*(e.length-1)/Math.pow(2,32),l[c-1][14]=Math.floor(l[c-1][14]),l[c-1][15]=8*(e.length-1)&4294967295,o=0;o<c;o++){for(var p=new Array(80),d=0;d<16;d++)p[d]=l[o][d];for(d=16;d<80;d++)p[d]=n(p[d-3]^p[d-8]^p[d-14]^p[d-16],1);var h=i[0],m=i[1],f=i[2],E=i[3],v=i[4];for(d=0;d<80;d++){var _=Math.floor(d/20),g=n(h,5)+r(_,m,f,E)+v+t[_]+p[d]>>>0;v=E,E=f,f=n(m,30)>>>0,m=h,h=g}i[0]=i[0]+h>>>0,i[1]=i[1]+m>>>0,i[2]=i[2]+f>>>0,i[3]=i[3]+E>>>0,i[4]=i[4]+v>>>0}return[i[0]>>24&255,i[0]>>16&255,i[0]>>8&255,255&i[0],i[1]>>24&255,i[1]>>16&255,i[1]>>8&255,255&i[1],i[2]>>24&255,i[2]>>16&255,i[2]>>8&255,255&i[2],i[3]>>24&255,i[3]>>16&255,i[3]>>8&255,255&i[3],i[4]>>24&255,i[4]>>16&255,i[4]>>8&255,255&i[4]]}},9031:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n,i,a=s(r(662)),o=s(r(9994));function s(e){return e&&e.__esModule?e:{default:e}}var c=0,l=0;t.default=function(e,t,r){var s=t&&r||0,u=t||[],p=(e=e||{}).node||n,d=void 0!==e.clockseq?e.clockseq:i;if(null==p||null==d){var h=e.random||(e.rng||a.default)();null==p&&(p=n=[1|h[0],h[1],h[2],h[3],h[4],h[5]]),null==d&&(d=i=16383&(h[6]<<8|h[7]))}var m=void 0!==e.msecs?e.msecs:(new Date).getTime(),f=void 0!==e.nsecs?e.nsecs:l+1,E=m-c+(f-l)/1e4;if(E<0&&void 0===e.clockseq&&(d=d+1&16383),(E<0||m>c)&&void 0===e.nsecs&&(f=0),f>=1e4)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");c=m,l=f,i=d;var v=(1e4*(268435455&(m+=122192928e5))+f)%4294967296;u[s++]=v>>>24&255,u[s++]=v>>>16&255,u[s++]=v>>>8&255,u[s++]=255&v;var _=m/4294967296*1e4&268435455;u[s++]=_>>>8&255,u[s++]=255&_,u[s++]=_>>>24&15|16,u[s++]=_>>>16&255,u[s++]=d>>>8|128,u[s++]=255&d;for(var g=0;g<6;++g)u[s+g]=p[g];return t||(0,o.default)(u)}},1146:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=a(r(9918)),i=a(r(1639));function a(e){return e&&e.__esModule?e:{default:e}}var o=(0,n.default)("v3",48,i.default);t.default=o},9918:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t,r){var n=function(e,n,a,o){var s=a&&o||0;if("string"==typeof e&&(e=function(e){e=unescape(encodeURIComponent(e));for(var t=new Array(e.length),r=0;r<e.length;r++)t[r]=e.charCodeAt(r);return t}(e)),"string"==typeof n&&(n=function(e){var t=[];return e.replace(/[a-fA-F0-9]{2}/g,(function(e){t.push(parseInt(e,16))})),t}(n)),!Array.isArray(e))throw TypeError("value must be an array of bytes");if(!Array.isArray(n)||16!==n.length)throw TypeError("namespace must be uuid string or an Array of 16 byte values");var c=r(n.concat(e));if(c[6]=15&c[6]|t,c[8]=63&c[8]|128,a)for(var l=0;l<16;++l)a[s+l]=c[l];return a||(0,i.default)(c)};try{n.name=e}catch(e){}return n.DNS=a,n.URL=o,n},t.URL=t.DNS=void 0;var n,i=(n=r(9994))&&n.__esModule?n:{default:n};const a="6ba7b810-9dad-11d1-80b4-00c04fd430c8";t.DNS=a;const o="6ba7b811-9dad-11d1-80b4-00c04fd430c8";t.URL=o},7012:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=a(r(662)),i=a(r(9994));function a(e){return e&&e.__esModule?e:{default:e}}t.default=function(e,t,r){var a=t&&r||0;"string"==typeof e&&(t="binary"===e?new Array(16):null,e=null);var o=(e=e||{}).random||(e.rng||n.default)();if(o[6]=15&o[6]|64,o[8]=63&o[8]|128,t)for(var s=0;s<16;++s)t[a+s]=o[s];return t||(0,i.default)(o)}},2821:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=a(r(9918)),i=a(r(6480));function a(e){return e&&e.__esModule?e:{default:e}}var o=(0,n.default)("v5",80,i.default);t.default=o},1337:(e,t,r)=>{"use strict";var n=r(9946),i=function(){function e(e){void 0===e&&(e=1e3),this.maxSize=e,this.cache=new n.LRUCache(e)}return Object.defineProperty(e.prototype,"size",{get:function(){return this.cache.length},enumerable:!0,configurable:!0}),e.prototype.put=function(t,r){var n="string"!=typeof t?e.getKeyString(t):t,i=this.populateValue(r);this.cache.put(n,i)},e.prototype.get=function(t){var r="string"!=typeof t?e.getKeyString(t):t,n=Date.now(),i=this.cache.get(r);if(i){for(var a=i.length-1;a>=0;a--)i[a].Expire<n&&i.splice(a,1);if(0===i.length)return void this.cache.remove(r)}return i},e.getKeyString=function(e){for(var t=[],r=Object.keys(e).sort(),n=0;n<r.length;n++){var i=r[n];void 0!==e[i]&&t.push(e[i])}return t.join(" ")},e.prototype.populateValue=function(e){var t=Date.now();return e.map((function(e){return{Address:e.Address||"",Expire:t+60*(e.CachePeriodInMinutes||1)*1e3}}))},e.prototype.empty=function(){this.cache.empty()},e.prototype.remove=function(t){var r="string"!=typeof t?e.getKeyString(t):t;this.cache.remove(r)},e}();t.$=i},9946:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(e,t){this.key=e,this.value=t},n=function(){function e(e){if(this.nodeMap={},this.size=0,"number"!=typeof e||e<1)throw new Error("Cache size can only be positive number");this.sizeLimit=e}return Object.defineProperty(e.prototype,"length",{get:function(){return this.size},enumerable:!0,configurable:!0}),e.prototype.prependToList=function(e){this.headerNode?(this.headerNode.prev=e,e.next=this.headerNode):this.tailNode=e,this.headerNode=e,this.size++},e.prototype.removeFromTail=function(){if(this.tailNode){var e=this.tailNode,t=e.prev;return t&&(t.next=void 0),e.prev=void 0,this.tailNode=t,this.size--,e}},e.prototype.detachFromList=function(e){this.headerNode===e&&(this.headerNode=e.next),this.tailNode===e&&(this.tailNode=e.prev),e.prev&&(e.prev.next=e.next),e.next&&(e.next.prev=e.prev),e.next=void 0,e.prev=void 0,this.size--},e.prototype.get=function(e){if(this.nodeMap[e]){var t=this.nodeMap[e];return this.detachFromList(t),this.prependToList(t),t.value}},e.prototype.remove=function(e){if(this.nodeMap[e]){var t=this.nodeMap[e];this.detachFromList(t),delete this.nodeMap[e]}},e.prototype.put=function(e,t){if(this.nodeMap[e])this.remove(e);else if(this.size===this.sizeLimit){var n=this.removeFromTail().key;delete this.nodeMap[n]}var i=new r(e,t);this.nodeMap[e]=i,this.prependToList(i)},e.prototype.empty=function(){for(var e=Object.keys(this.nodeMap),t=0;t<e.length;t++){var r=e[t],n=this.nodeMap[r];this.detachFromList(n),delete this.nodeMap[r]}},e}();t.LRUCache=n},4782:(e,t)=>{"use strict";t.byteLength=function(e){var t=s(e),r=t[0],n=t[1];return 3*(r+n)/4-n},t.toByteArray=function(e){var t,r,a=s(e),o=a[0],c=a[1],l=new i(function(e,t,r){return 3*(t+r)/4-r}(0,o,c)),u=0,p=c>0?o-4:o;for(r=0;r<p;r+=4)t=n[e.charCodeAt(r)]<<18|n[e.charCodeAt(r+1)]<<12|n[e.charCodeAt(r+2)]<<6|n[e.charCodeAt(r+3)],l[u++]=t>>16&255,l[u++]=t>>8&255,l[u++]=255&t;return 2===c&&(t=n[e.charCodeAt(r)]<<2|n[e.charCodeAt(r+1)]>>4,l[u++]=255&t),1===c&&(t=n[e.charCodeAt(r)]<<10|n[e.charCodeAt(r+1)]<<4|n[e.charCodeAt(r+2)]>>2,l[u++]=t>>8&255,l[u++]=255&t),l},t.fromByteArray=function(e){for(var t,n=e.length,i=n%3,a=[],o=16383,s=0,l=n-i;s<l;s+=o)a.push(c(e,s,s+o>l?l:s+o));return 1===i?(t=e[n-1],a.push(r[t>>2]+r[t<<4&63]+"==")):2===i&&(t=(e[n-2]<<8)+e[n-1],a.push(r[t>>10]+r[t>>4&63]+r[t<<2&63]+"=")),a.join("")};for(var r=[],n=[],i="undefined"!=typeof Uint8Array?Uint8Array:Array,a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=0;o<64;++o)r[o]=a[o],n[a.charCodeAt(o)]=o;function s(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var r=e.indexOf("=");return-1===r&&(r=t),[r,r===t?0:4-r%4]}function c(e,t,n){for(var i,a,o=[],s=t;s<n;s+=3)i=(e[s]<<16&16711680)+(e[s+1]<<8&65280)+(255&e[s+2]),o.push(r[(a=i)>>18&63]+r[a>>12&63]+r[a>>6&63]+r[63&a]);return o.join("")}n["-".charCodeAt(0)]=62,n["_".charCodeAt(0)]=63},816:(e,t,r)=>{"use strict";var n=r(4782),i=r(8898),a=r(5182);function o(){return c.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function s(e,t){if(o()<t)throw new RangeError("Invalid typed array length");return c.TYPED_ARRAY_SUPPORT?(e=new Uint8Array(t)).__proto__=c.prototype:(null===e&&(e=new c(t)),e.length=t),e}function c(e,t,r){if(!(c.TYPED_ARRAY_SUPPORT||this instanceof c))return new c(e,t,r);if("number"==typeof e){if("string"==typeof t)throw new Error("If encoding is specified then the first argument must be a string");return p(this,e)}return l(this,e,t,r)}function l(e,t,r,n){if("number"==typeof t)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer?function(e,t,r,n){if(t.byteLength,r<0||t.byteLength<r)throw new RangeError("'offset' is out of bounds");if(t.byteLength<r+(n||0))throw new RangeError("'length' is out of bounds");return t=void 0===r&&void 0===n?new Uint8Array(t):void 0===n?new Uint8Array(t,r):new Uint8Array(t,r,n),c.TYPED_ARRAY_SUPPORT?(e=t).__proto__=c.prototype:e=d(e,t),e}(e,t,r,n):"string"==typeof t?function(e,t,r){if("string"==typeof r&&""!==r||(r="utf8"),!c.isEncoding(r))throw new TypeError('"encoding" must be a valid string encoding');var n=0|m(t,r),i=(e=s(e,n)).write(t,r);return i!==n&&(e=e.slice(0,i)),e}(e,t,r):function(e,t){if(c.isBuffer(t)){var r=0|h(t.length);return 0===(e=s(e,r)).length||t.copy(e,0,0,r),e}if(t){if("undefined"!=typeof ArrayBuffer&&t.buffer instanceof ArrayBuffer||"length"in t)return"number"!=typeof t.length||(n=t.length)!=n?s(e,0):d(e,t);if("Buffer"===t.type&&a(t.data))return d(e,t.data)}var n;throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}(e,t)}function u(e){if("number"!=typeof e)throw new TypeError('"size" argument must be a number');if(e<0)throw new RangeError('"size" argument must not be negative')}function p(e,t){if(u(t),e=s(e,t<0?0:0|h(t)),!c.TYPED_ARRAY_SUPPORT)for(var r=0;r<t;++r)e[r]=0;return e}function d(e,t){var r=t.length<0?0:0|h(t.length);e=s(e,r);for(var n=0;n<r;n+=1)e[n]=255&t[n];return e}function h(e){if(e>=o())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+o().toString(16)+" bytes");return 0|e}function m(e,t){if(c.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var r=e.length;if(0===r)return 0;for(var n=!1;;)switch(t){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":case void 0:return V(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return z(e).length;default:if(n)return V(e).length;t=(""+t).toLowerCase(),n=!0}}function f(e,t,r){var n=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return T(this,t,r);case"utf8":case"utf-8":return L(this,t,r);case"ascii":return D(this,t,r);case"latin1":case"binary":return b(this,t,r);case"base64":return I(this,t,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return N(this,t,r);default:if(n)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),n=!0}}function E(e,t,r){var n=e[t];e[t]=e[r],e[r]=n}function v(e,t,r,n,i){if(0===e.length)return-1;if("string"==typeof r?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),r=+r,isNaN(r)&&(r=i?0:e.length-1),r<0&&(r=e.length+r),r>=e.length){if(i)return-1;r=e.length-1}else if(r<0){if(!i)return-1;r=0}if("string"==typeof t&&(t=c.from(t,n)),c.isBuffer(t))return 0===t.length?-1:_(e,t,r,n,i);if("number"==typeof t)return t&=255,c.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(e,t,r):Uint8Array.prototype.lastIndexOf.call(e,t,r):_(e,[t],r,n,i);throw new TypeError("val must be string, number or Buffer")}function _(e,t,r,n,i){var a,o=1,s=e.length,c=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(e.length<2||t.length<2)return-1;o=2,s/=2,c/=2,r/=2}function l(e,t){return 1===o?e[t]:e.readUInt16BE(t*o)}if(i){var u=-1;for(a=r;a<s;a++)if(l(e,a)===l(t,-1===u?0:a-u)){if(-1===u&&(u=a),a-u+1===c)return u*o}else-1!==u&&(a-=a-u),u=-1}else for(r+c>s&&(r=s-c),a=r;a>=0;a--){for(var p=!0,d=0;d<c;d++)if(l(e,a+d)!==l(t,d)){p=!1;break}if(p)return a}return-1}function g(e,t,r,n){r=Number(r)||0;var i=e.length-r;n?(n=Number(n))>i&&(n=i):n=i;var a=t.length;if(a%2!=0)throw new TypeError("Invalid hex string");n>a/2&&(n=a/2);for(var o=0;o<n;++o){var s=parseInt(t.substr(2*o,2),16);if(isNaN(s))return o;e[r+o]=s}return o}function y(e,t,r,n){return B(V(t,e.length-r),e,r,n)}function A(e,t,r,n){return B(function(e){for(var t=[],r=0;r<e.length;++r)t.push(255&e.charCodeAt(r));return t}(t),e,r,n)}function O(e,t,r,n){return A(e,t,r,n)}function S(e,t,r,n){return B(z(t),e,r,n)}function R(e,t,r,n){return B(function(e,t){for(var r,n,i,a=[],o=0;o<e.length&&!((t-=2)<0);++o)n=(r=e.charCodeAt(o))>>8,i=r%256,a.push(i),a.push(n);return a}(t,e.length-r),e,r,n)}function I(e,t,r){return 0===t&&r===e.length?n.fromByteArray(e):n.fromByteArray(e.slice(t,r))}function L(e,t,r){r=Math.min(e.length,r);for(var n=[],i=t;i<r;){var a,o,s,c,l=e[i],u=null,p=l>239?4:l>223?3:l>191?2:1;if(i+p<=r)switch(p){case 1:l<128&&(u=l);break;case 2:128==(192&(a=e[i+1]))&&(c=(31&l)<<6|63&a)>127&&(u=c);break;case 3:a=e[i+1],o=e[i+2],128==(192&a)&&128==(192&o)&&(c=(15&l)<<12|(63&a)<<6|63&o)>2047&&(c<55296||c>57343)&&(u=c);break;case 4:a=e[i+1],o=e[i+2],s=e[i+3],128==(192&a)&&128==(192&o)&&128==(192&s)&&(c=(15&l)<<18|(63&a)<<12|(63&o)<<6|63&s)>65535&&c<1114112&&(u=c)}null===u?(u=65533,p=1):u>65535&&(u-=65536,n.push(u>>>10&1023|55296),u=56320|1023&u),n.push(u),i+=p}return function(e){var t=e.length;if(t<=C)return String.fromCharCode.apply(String,e);for(var r="",n=0;n<t;)r+=String.fromCharCode.apply(String,e.slice(n,n+=C));return r}(n)}t.lW=c,t.h2=50,c.TYPED_ARRAY_SUPPORT=void 0!==r.g.TYPED_ARRAY_SUPPORT?r.g.TYPED_ARRAY_SUPPORT:function(){try{var e=new Uint8Array(1);return e.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===e.foo()&&"function"==typeof e.subarray&&0===e.subarray(1,1).byteLength}catch(e){return!1}}(),o(),c.poolSize=8192,c._augment=function(e){return e.__proto__=c.prototype,e},c.from=function(e,t,r){return l(null,e,t,r)},c.TYPED_ARRAY_SUPPORT&&(c.prototype.__proto__=Uint8Array.prototype,c.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&c[Symbol.species]===c&&Object.defineProperty(c,Symbol.species,{value:null,configurable:!0})),c.alloc=function(e,t,r){return function(e,t,r,n){return u(t),t<=0?s(e,t):void 0!==r?"string"==typeof n?s(e,t).fill(r,n):s(e,t).fill(r):s(e,t)}(null,e,t,r)},c.allocUnsafe=function(e){return p(null,e)},c.allocUnsafeSlow=function(e){return p(null,e)},c.isBuffer=function(e){return!(null==e||!e._isBuffer)},c.compare=function(e,t){if(!c.isBuffer(e)||!c.isBuffer(t))throw new TypeError("Arguments must be Buffers");if(e===t)return 0;for(var r=e.length,n=t.length,i=0,a=Math.min(r,n);i<a;++i)if(e[i]!==t[i]){r=e[i],n=t[i];break}return r<n?-1:n<r?1:0},c.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},c.concat=function(e,t){if(!a(e))throw new TypeError('"list" argument must be an Array of Buffers');if(0===e.length)return c.alloc(0);var r;if(void 0===t)for(t=0,r=0;r<e.length;++r)t+=e[r].length;var n=c.allocUnsafe(t),i=0;for(r=0;r<e.length;++r){var o=e[r];if(!c.isBuffer(o))throw new TypeError('"list" argument must be an Array of Buffers');o.copy(n,i),i+=o.length}return n},c.byteLength=m,c.prototype._isBuffer=!0,c.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t<e;t+=2)E(this,t,t+1);return this},c.prototype.swap32=function(){var e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var t=0;t<e;t+=4)E(this,t,t+3),E(this,t+1,t+2);return this},c.prototype.swap64=function(){var e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var t=0;t<e;t+=8)E(this,t,t+7),E(this,t+1,t+6),E(this,t+2,t+5),E(this,t+3,t+4);return this},c.prototype.toString=function(){var e=0|this.length;return 0===e?"":0===arguments.length?L(this,0,e):f.apply(this,arguments)},c.prototype.equals=function(e){if(!c.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e||0===c.compare(this,e)},c.prototype.inspect=function(){var e="",r=t.h2;return this.length>0&&(e=this.toString("hex",0,r).match(/.{2}/g).join(" "),this.length>r&&(e+=" ... ")),"<Buffer "+e+">"},c.prototype.compare=function(e,t,r,n,i){if(!c.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===r&&(r=e?e.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),t<0||r>e.length||n<0||i>this.length)throw new RangeError("out of range index");if(n>=i&&t>=r)return 0;if(n>=i)return-1;if(t>=r)return 1;if(this===e)return 0;for(var a=(i>>>=0)-(n>>>=0),o=(r>>>=0)-(t>>>=0),s=Math.min(a,o),l=this.slice(n,i),u=e.slice(t,r),p=0;p<s;++p)if(l[p]!==u[p]){a=l[p],o=u[p];break}return a<o?-1:o<a?1:0},c.prototype.includes=function(e,t,r){return-1!==this.indexOf(e,t,r)},c.prototype.indexOf=function(e,t,r){return v(this,e,t,r,!0)},c.prototype.lastIndexOf=function(e,t,r){return v(this,e,t,r,!1)},c.prototype.write=function(e,t,r,n){if(void 0===t)n="utf8",r=this.length,t=0;else if(void 0===r&&"string"==typeof t)n=t,r=this.length,t=0;else{if(!isFinite(t))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");t|=0,isFinite(r)?(r|=0,void 0===n&&(n="utf8")):(n=r,r=void 0)}var i=this.length-t;if((void 0===r||r>i)&&(r=i),e.length>0&&(r<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var a=!1;;)switch(n){case"hex":return g(this,e,t,r);case"utf8":case"utf-8":return y(this,e,t,r);case"ascii":return A(this,e,t,r);case"latin1":case"binary":return O(this,e,t,r);case"base64":return S(this,e,t,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return R(this,e,t,r);default:if(a)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),a=!0}},c.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var C=4096;function D(e,t,r){var n="";r=Math.min(e.length,r);for(var i=t;i<r;++i)n+=String.fromCharCode(127&e[i]);return n}function b(e,t,r){var n="";r=Math.min(e.length,r);for(var i=t;i<r;++i)n+=String.fromCharCode(e[i]);return n}function T(e,t,r){var n,i=e.length;(!t||t<0)&&(t=0),(!r||r<0||r>i)&&(r=i);for(var a="",o=t;o<r;++o)a+=(n=e[o])<16?"0"+n.toString(16):n.toString(16);return a}function N(e,t,r){for(var n=e.slice(t,r),i="",a=0;a<n.length;a+=2)i+=String.fromCharCode(n[a]+256*n[a+1]);return i}function k(e,t,r){if(e%1!=0||e<0)throw new RangeError("offset is not uint");if(e+t>r)throw new RangeError("Trying to access beyond buffer length")}function w(e,t,r,n,i,a){if(!c.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||t<a)throw new RangeError('"value" argument is out of bounds');if(r+n>e.length)throw new RangeError("Index out of range")}function x(e,t,r,n){t<0&&(t=65535+t+1);for(var i=0,a=Math.min(e.length-r,2);i<a;++i)e[r+i]=(t&255<<8*(n?i:1-i))>>>8*(n?i:1-i)}function M(e,t,r,n){t<0&&(t=4294967295+t+1);for(var i=0,a=Math.min(e.length-r,4);i<a;++i)e[r+i]=t>>>8*(n?i:3-i)&255}function P(e,t,r,n,i,a){if(r+n>e.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function G(e,t,r,n,a){return a||P(e,0,r,4),i.write(e,t,r,n,23,4),r+4}function U(e,t,r,n,a){return a||P(e,0,r,8),i.write(e,t,r,n,52,8),r+8}c.prototype.slice=function(e,t){var r,n=this.length;if((e=~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),(t=void 0===t?n:~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),t<e&&(t=e),c.TYPED_ARRAY_SUPPORT)(r=this.subarray(e,t)).__proto__=c.prototype;else{var i=t-e;r=new c(i,void 0);for(var a=0;a<i;++a)r[a]=this[a+e]}return r},c.prototype.readUIntLE=function(e,t,r){e|=0,t|=0,r||k(e,t,this.length);for(var n=this[e],i=1,a=0;++a<t&&(i*=256);)n+=this[e+a]*i;return n},c.prototype.readUIntBE=function(e,t,r){e|=0,t|=0,r||k(e,t,this.length);for(var n=this[e+--t],i=1;t>0&&(i*=256);)n+=this[e+--t]*i;return n},c.prototype.readUInt8=function(e,t){return t||k(e,1,this.length),this[e]},c.prototype.readUInt16LE=function(e,t){return t||k(e,2,this.length),this[e]|this[e+1]<<8},c.prototype.readUInt16BE=function(e,t){return t||k(e,2,this.length),this[e]<<8|this[e+1]},c.prototype.readUInt32LE=function(e,t){return t||k(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},c.prototype.readUInt32BE=function(e,t){return t||k(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},c.prototype.readIntLE=function(e,t,r){e|=0,t|=0,r||k(e,t,this.length);for(var n=this[e],i=1,a=0;++a<t&&(i*=256);)n+=this[e+a]*i;return n>=(i*=128)&&(n-=Math.pow(2,8*t)),n},c.prototype.readIntBE=function(e,t,r){e|=0,t|=0,r||k(e,t,this.length);for(var n=t,i=1,a=this[e+--n];n>0&&(i*=256);)a+=this[e+--n]*i;return a>=(i*=128)&&(a-=Math.pow(2,8*t)),a},c.prototype.readInt8=function(e,t){return t||k(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},c.prototype.readInt16LE=function(e,t){t||k(e,2,this.length);var r=this[e]|this[e+1]<<8;return 32768&r?4294901760|r:r},c.prototype.readInt16BE=function(e,t){t||k(e,2,this.length);var r=this[e+1]|this[e]<<8;return 32768&r?4294901760|r:r},c.prototype.readInt32LE=function(e,t){return t||k(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},c.prototype.readInt32BE=function(e,t){return t||k(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},c.prototype.readFloatLE=function(e,t){return t||k(e,4,this.length),i.read(this,e,!0,23,4)},c.prototype.readFloatBE=function(e,t){return t||k(e,4,this.length),i.read(this,e,!1,23,4)},c.prototype.readDoubleLE=function(e,t){return t||k(e,8,this.length),i.read(this,e,!0,52,8)},c.prototype.readDoubleBE=function(e,t){return t||k(e,8,this.length),i.read(this,e,!1,52,8)},c.prototype.writeUIntLE=function(e,t,r,n){e=+e,t|=0,r|=0,n||w(this,e,t,r,Math.pow(2,8*r)-1,0);var i=1,a=0;for(this[t]=255&e;++a<r&&(i*=256);)this[t+a]=e/i&255;return t+r},c.prototype.writeUIntBE=function(e,t,r,n){e=+e,t|=0,r|=0,n||w(this,e,t,r,Math.pow(2,8*r)-1,0);var i=r-1,a=1;for(this[t+i]=255&e;--i>=0&&(a*=256);)this[t+i]=e/a&255;return t+r},c.prototype.writeUInt8=function(e,t,r){return e=+e,t|=0,r||w(this,e,t,1,255,0),c.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},c.prototype.writeUInt16LE=function(e,t,r){return e=+e,t|=0,r||w(this,e,t,2,65535,0),c.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):x(this,e,t,!0),t+2},c.prototype.writeUInt16BE=function(e,t,r){return e=+e,t|=0,r||w(this,e,t,2,65535,0),c.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):x(this,e,t,!1),t+2},c.prototype.writeUInt32LE=function(e,t,r){return e=+e,t|=0,r||w(this,e,t,4,4294967295,0),c.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):M(this,e,t,!0),t+4},c.prototype.writeUInt32BE=function(e,t,r){return e=+e,t|=0,r||w(this,e,t,4,4294967295,0),c.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):M(this,e,t,!1),t+4},c.prototype.writeIntLE=function(e,t,r,n){if(e=+e,t|=0,!n){var i=Math.pow(2,8*r-1);w(this,e,t,r,i-1,-i)}var a=0,o=1,s=0;for(this[t]=255&e;++a<r&&(o*=256);)e<0&&0===s&&0!==this[t+a-1]&&(s=1),this[t+a]=(e/o>>0)-s&255;return t+r},c.prototype.writeIntBE=function(e,t,r,n){if(e=+e,t|=0,!n){var i=Math.pow(2,8*r-1);w(this,e,t,r,i-1,-i)}var a=r-1,o=1,s=0;for(this[t+a]=255&e;--a>=0&&(o*=256);)e<0&&0===s&&0!==this[t+a+1]&&(s=1),this[t+a]=(e/o>>0)-s&255;return t+r},c.prototype.writeInt8=function(e,t,r){return e=+e,t|=0,r||w(this,e,t,1,127,-128),c.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},c.prototype.writeInt16LE=function(e,t,r){return e=+e,t|=0,r||w(this,e,t,2,32767,-32768),c.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):x(this,e,t,!0),t+2},c.prototype.writeInt16BE=function(e,t,r){return e=+e,t|=0,r||w(this,e,t,2,32767,-32768),c.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):x(this,e,t,!1),t+2},c.prototype.writeInt32LE=function(e,t,r){return e=+e,t|=0,r||w(this,e,t,4,2147483647,-2147483648),c.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):M(this,e,t,!0),t+4},c.prototype.writeInt32BE=function(e,t,r){return e=+e,t|=0,r||w(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),c.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):M(this,e,t,!1),t+4},c.prototype.writeFloatLE=function(e,t,r){return G(this,e,t,!0,r)},c.prototype.writeFloatBE=function(e,t,r){return G(this,e,t,!1,r)},c.prototype.writeDoubleLE=function(e,t,r){return U(this,e,t,!0,r)},c.prototype.writeDoubleBE=function(e,t,r){return U(this,e,t,!1,r)},c.prototype.copy=function(e,t,r,n){if(r||(r=0),n||0===n||(n=this.length),t>=e.length&&(t=e.length),t||(t=0),n>0&&n<r&&(n=r),n===r)return 0;if(0===e.length||0===this.length)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(r<0||r>=this.length)throw new RangeError("sourceStart out of bounds");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),e.length-t<n-r&&(n=e.length-t+r);var i,a=n-r;if(this===e&&r<t&&t<n)for(i=a-1;i>=0;--i)e[i+t]=this[i+r];else if(a<1e3||!c.TYPED_ARRAY_SUPPORT)for(i=0;i<a;++i)e[i+t]=this[i+r];else Uint8Array.prototype.set.call(e,this.subarray(r,r+a),t);return a},c.prototype.fill=function(e,t,r,n){if("string"==typeof e){if("string"==typeof t?(n=t,t=0,r=this.length):"string"==typeof r&&(n=r,r=this.length),1===e.length){var i=e.charCodeAt(0);i<256&&(e=i)}if(void 0!==n&&"string"!=typeof n)throw new TypeError("encoding must be a string");if("string"==typeof n&&!c.isEncoding(n))throw new TypeError("Unknown encoding: "+n)}else"number"==typeof e&&(e&=255);if(t<0||this.length<t||this.length<r)throw new RangeError("Out of range index");if(r<=t)return this;var a;if(t>>>=0,r=void 0===r?this.length:r>>>0,e||(e=0),"number"==typeof e)for(a=t;a<r;++a)this[a]=e;else{var o=c.isBuffer(e)?e:V(new c(e,n).toString()),s=o.length;for(a=0;a<r-t;++a)this[a+t]=o[a%s]}return this};var F=/[^+\/0-9A-Za-z-_]/g;function V(e,t){var r;t=t||1/0;for(var n=e.length,i=null,a=[],o=0;o<n;++o){if((r=e.charCodeAt(o))>55295&&r<57344){if(!i){if(r>56319){(t-=3)>-1&&a.push(239,191,189);continue}if(o+1===n){(t-=3)>-1&&a.push(239,191,189);continue}i=r;continue}if(r<56320){(t-=3)>-1&&a.push(239,191,189),i=r;continue}r=65536+(i-55296<<10|r-56320)}else i&&(t-=3)>-1&&a.push(239,191,189);if(i=null,r<128){if((t-=1)<0)break;a.push(r)}else if(r<2048){if((t-=2)<0)break;a.push(r>>6|192,63&r|128)}else if(r<65536){if((t-=3)<0)break;a.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;a.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return a}function z(e){return n.toByteArray(function(e){if((e=function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}(e).replace(F,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function B(e,t,r,n){for(var i=0;i<n&&!(i+r>=t.length||i>=e.length);++i)t[i+r]=e[i];return i}},2737:(e,t,r)=>{"use strict";var n=r(8750),i=r(4573),a=i(n("String.prototype.indexOf"));e.exports=function(e,t){var r=n(e,!!t);return"function"==typeof r&&a(e,".prototype.")>-1?i(r):r}},4573:(e,t,r)=>{"use strict";var n=r(132),i=r(8750),a=r(504),o=i("%TypeError%"),s=i("%Function.prototype.apply%"),c=i("%Function.prototype.call%"),l=i("%Reflect.apply%",!0)||n.call(c,s),u=i("%Object.defineProperty%",!0),p=i("%Math.max%");if(u)try{u({},"a",{value:1})}catch(e){u=null}e.exports=function(e){if("function"!=typeof e)throw new o("a function is required");var t=l(n,c,arguments);return a(t,1+p(0,e.length-(arguments.length-1)),!0)};var d=function(){return l(n,s,arguments)};u?u(e.exports,"apply",{value:d}):e.exports.apply=d},42:(e,t)=>{var r;!function(){"use strict";var n={}.hasOwnProperty;function i(){for(var e="",t=0;t<arguments.length;t++){var r=arguments[t];r&&(e=o(e,a(r)))}return e}function a(e){if("string"==typeof e||"number"==typeof e)return e;if("object"!=typeof e)return"";if(Array.isArray(e))return i.apply(null,e);if(e.toString!==Object.prototype.toString&&!e.toString.toString().includes("[native code]"))return e.toString();var t="";for(var r in e)n.call(e,r)&&e[r]&&(t=o(t,r));return t}function o(e,t){return t?e?e+" "+t:e+t:e}e.exports?(i.default=i,e.exports=i):void 0===(r=function(){return i}.apply(t,[]))||(e.exports=r)}()},1998:e=>{"use strict";var t="%[a-f0-9]{2}",r=new RegExp("("+t+")|([^%]+?)","gi"),n=new RegExp("("+t+")+","gi");function i(e,t){try{return[decodeURIComponent(e.join(""))]}catch(e){}if(1===e.length)return e;t=t||1;var r=e.slice(0,t),n=e.slice(t);return Array.prototype.concat.call([],i(r),i(n))}function a(e){try{return decodeURIComponent(e)}catch(a){for(var t=e.match(r)||[],n=1;n<t.length;n++)t=(e=i(t,n).join("")).match(r)||[];return e}}e.exports=function(e){if("string"!=typeof e)throw new TypeError("Expected `encodedURI` to be of type `string`, got `"+typeof e+"`");try{return e=e.replace(/\+/g," "),decodeURIComponent(e)}catch(t){return function(e){for(var t={"%FE%FF":"��","%FF%FE":"��"},r=n.exec(e);r;){try{t[r[0]]=decodeURIComponent(r[0])}catch(e){var i=a(r[0]);i!==r[0]&&(t[r[0]]=i)}r=n.exec(e)}t["%C2"]="�";for(var o=Object.keys(t),s=0;s<o.length;s++){var c=o[s];e=e.replace(new RegExp(c,"g"),t[c])}return e}(e)}}},6300:(e,t,r)=>{"use strict";var n=r(1365)(),i=r(8750),a=n&&i("%Object.defineProperty%",!0);if(a)try{a({},"a",{value:1})}catch(e){a=!1}var o=i("%SyntaxError%"),s=i("%TypeError%"),c=r(7502);e.exports=function(e,t,r){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new s("`obj` must be an object or a function`");if("string"!=typeof t&&"symbol"!=typeof t)throw new s("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new s("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new s("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new s("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new s("`loose`, if provided, must be a boolean");var n=arguments.length>3?arguments[3]:null,i=arguments.length>4?arguments[4]:null,l=arguments.length>5?arguments[5]:null,u=arguments.length>6&&arguments[6],p=!!c&&c(e,t);if(a)a(e,t,{configurable:null===l&&p?p.configurable:!l,enumerable:null===n&&p?p.enumerable:!n,value:r,writable:null===i&&p?p.writable:!i});else{if(!u&&(n||i||l))throw new o("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");e[t]=r}}},343:e=>{function t(){this._events=this._events||{},this._maxListeners=this._maxListeners||void 0}function r(e){return"function"==typeof e}function n(e){return"object"==typeof e&&null!==e}function i(e){return void 0===e}e.exports=t,t.EventEmitter=t,t.prototype._events=void 0,t.prototype._maxListeners=void 0,t.defaultMaxListeners=10,t.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||isNaN(e))throw TypeError("n must be a positive number");return this._maxListeners=e,this},t.prototype.emit=function(e){var t,a,o,s,c,l;if(this._events||(this._events={}),"error"===e&&(!this._events.error||n(this._events.error)&&!this._events.error.length)){if((t=arguments[1])instanceof Error)throw t;var u=new Error('Uncaught, unspecified "error" event. ('+t+")");throw u.context=t,u}if(i(a=this._events[e]))return!1;if(r(a))switch(arguments.length){case 1:a.call(this);break;case 2:a.call(this,arguments[1]);break;case 3:a.call(this,arguments[1],arguments[2]);break;default:s=Array.prototype.slice.call(arguments,1),a.apply(this,s)}else if(n(a))for(s=Array.prototype.slice.call(arguments,1),o=(l=a.slice()).length,c=0;c<o;c++)l[c].apply(this,s);return!0},t.prototype.addListener=function(e,a){var o;if(!r(a))throw TypeError("listener must be a function");return this._events||(this._events={}),this._events.newListener&&this.emit("newListener",e,r(a.listener)?a.listener:a),this._events[e]?n(this._events[e])?this._events[e].push(a):this._events[e]=[this._events[e],a]:this._events[e]=a,n(this._events[e])&&!this._events[e].warned&&(o=i(this._maxListeners)?t.defaultMaxListeners:this._maxListeners)&&o>0&&this._events[e].length>o&&(this._events[e].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[e].length),"function"==typeof console.trace&&console.trace()),this},t.prototype.on=t.prototype.addListener,t.prototype.once=function(e,t){if(!r(t))throw TypeError("listener must be a function");var n=!1;function i(){this.removeListener(e,i),n||(n=!0,t.apply(this,arguments))}return i.listener=t,this.on(e,i),this},t.prototype.removeListener=function(e,t){var i,a,o,s;if(!r(t))throw TypeError("listener must be a function");if(!this._events||!this._events[e])return this;if(o=(i=this._events[e]).length,a=-1,i===t||r(i.listener)&&i.listener===t)delete this._events[e],this._events.removeListener&&this.emit("removeListener",e,t);else if(n(i)){for(s=o;s-- >0;)if(i[s]===t||i[s].listener&&i[s].listener===t){a=s;break}if(a<0)return this;1===i.length?(i.length=0,delete this._events[e]):i.splice(a,1),this._events.removeListener&&this.emit("removeListener",e,t)}return this},t.prototype.removeAllListeners=function(e){var t,n;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[e]&&delete this._events[e],this;if(0===arguments.length){for(t in this._events)"removeListener"!==t&&this.removeAllListeners(t);return this.removeAllListeners("removeListener"),this._events={},this}if(r(n=this._events[e]))this.removeListener(e,n);else if(n)for(;n.length;)this.removeListener(e,n[n.length-1]);return delete this._events[e],this},t.prototype.listeners=function(e){return this._events&&this._events[e]?r(this._events[e])?[this._events[e]]:this._events[e].slice():[]},t.prototype.listenerCount=function(e){if(this._events){var t=this._events[e];if(r(t))return 1;if(t)return t.length}return 0},t.listenerCount=function(e,t){return e.listenerCount(t)}},7728:e=>{"use strict";e.exports=function(e,t){for(var r={},n=Object.keys(e),i=Array.isArray(t),a=0;a<n.length;a++){var o=n[a],s=e[o];(i?-1!==t.indexOf(o):t(o,s,e))&&(r[o]=s)}return r}},5278:(e,t,r)=>{"use strict";var n=r(2922),i=Object.prototype.toString,a=Object.prototype.hasOwnProperty;e.exports=function(e,t,r){if(!n(t))throw new TypeError("iterator must be a function");var o;arguments.length>=3&&(o=r),"[object Array]"===i.call(e)?function(e,t,r){for(var n=0,i=e.length;n<i;n++)a.call(e,n)&&(null==r?t(e[n],n,e):t.call(r,e[n],n,e))}(e,t,o):"string"==typeof e?function(e,t,r){for(var n=0,i=e.length;n<i;n++)null==r?t(e.charAt(n),n,e):t.call(r,e.charAt(n),n,e)}(e,t,o):function(e,t,r){for(var n in e)a.call(e,n)&&(null==r?t(e[n],n,e):t.call(r,e[n],n,e))}(e,t,o)}},8458:e=>{"use strict";var t=Object.prototype.toString,r=Math.max,n=function(e,t){for(var r=[],n=0;n<e.length;n+=1)r[n]=e[n];for(var i=0;i<t.length;i+=1)r[i+e.length]=t[i];return r};e.exports=function(e){var i=this;if("function"!=typeof i||"[object Function]"!==t.apply(i))throw new TypeError("Function.prototype.bind called on incompatible "+i);for(var a,o=function(e,t){for(var r=[],n=1,i=0;n<e.length;n+=1,i+=1)r[i]=e[n];return r}(arguments),s=r(0,i.length-o.length),c=[],l=0;l<s;l++)c[l]="$"+l;if(a=Function("binder","return function ("+function(e,t){for(var r="",n=0;n<e.length;n+=1)r+=e[n],n+1<e.length&&(r+=",");return r}(c)+"){ return binder.apply(this,arguments); }")((function(){if(this instanceof a){var t=i.apply(this,n(o,arguments));return Object(t)===t?t:this}return i.apply(e,n(o,arguments))})),i.prototype){var u=function(){};u.prototype=i.prototype,a.prototype=new u,u.prototype=null}return a}},132:(e,t,r)=>{"use strict";var n=r(8458);e.exports=Function.prototype.bind||n},8750:(e,t,r)=>{"use strict";var n,i=SyntaxError,a=Function,o=TypeError,s=function(e){try{return a('"use strict"; return ('+e+").constructor;")()}catch(e){}},c=Object.getOwnPropertyDescriptor;if(c)try{c({},"")}catch(e){c=null}var l=function(){throw new o},u=c?function(){try{return l}catch(e){try{return c(arguments,"callee").get}catch(e){return l}}}():l,p=r(679)(),d=r(2574)(),h=Object.getPrototypeOf||(d?function(e){return e.__proto__}:null),m={},f="undefined"!=typeof Uint8Array&&h?h(Uint8Array):n,E={"%AggregateError%":"undefined"==typeof AggregateError?n:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?n:ArrayBuffer,"%ArrayIteratorPrototype%":p&&h?h([][Symbol.iterator]()):n,"%AsyncFromSyncIteratorPrototype%":n,"%AsyncFunction%":m,"%AsyncGenerator%":m,"%AsyncGeneratorFunction%":m,"%AsyncIteratorPrototype%":m,"%Atomics%":"undefined"==typeof Atomics?n:Atomics,"%BigInt%":"undefined"==typeof BigInt?n:BigInt,"%BigInt64Array%":"undefined"==typeof BigInt64Array?n:BigInt64Array,"%BigUint64Array%":"undefined"==typeof BigUint64Array?n:BigUint64Array,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?n:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":"undefined"==typeof Float32Array?n:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?n:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?n:FinalizationRegistry,"%Function%":a,"%GeneratorFunction%":m,"%Int8Array%":"undefined"==typeof Int8Array?n:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?n:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?n:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":p&&h?h(h([][Symbol.iterator]())):n,"%JSON%":"object"==typeof JSON?JSON:n,"%Map%":"undefined"==typeof Map?n:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&p&&h?h((new Map)[Symbol.iterator]()):n,"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?n:Promise,"%Proxy%":"undefined"==typeof Proxy?n:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":"undefined"==typeof Reflect?n:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?n:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&p&&h?h((new Set)[Symbol.iterator]()):n,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?n:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":p&&h?h(""[Symbol.iterator]()):n,"%Symbol%":p?Symbol:n,"%SyntaxError%":i,"%ThrowTypeError%":u,"%TypedArray%":f,"%TypeError%":o,"%Uint8Array%":"undefined"==typeof Uint8Array?n:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?n:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?n:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?n:Uint32Array,"%URIError%":URIError,"%WeakMap%":"undefined"==typeof WeakMap?n:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?n:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?n:WeakSet};if(h)try{null.error}catch(e){var v=h(h(e));E["%Error.prototype%"]=v}var _=function e(t){var r;if("%AsyncFunction%"===t)r=s("async function () {}");else if("%GeneratorFunction%"===t)r=s("function* () {}");else if("%AsyncGeneratorFunction%"===t)r=s("async function* () {}");else if("%AsyncGenerator%"===t){var n=e("%AsyncGeneratorFunction%");n&&(r=n.prototype)}else if("%AsyncIteratorPrototype%"===t){var i=e("%AsyncGenerator%");i&&h&&(r=h(i.prototype))}return E[t]=r,r},g={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},y=r(132),A=r(1712),O=y.call(Function.call,Array.prototype.concat),S=y.call(Function.apply,Array.prototype.splice),R=y.call(Function.call,String.prototype.replace),I=y.call(Function.call,String.prototype.slice),L=y.call(Function.call,RegExp.prototype.exec),C=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,D=/\\(\\)?/g,b=function(e,t){var r,n=e;if(A(g,n)&&(n="%"+(r=g[n])[0]+"%"),A(E,n)){var a=E[n];if(a===m&&(a=_(n)),void 0===a&&!t)throw new o("intrinsic "+e+" exists, but is not available. Please file an issue!");return{alias:r,name:n,value:a}}throw new i("intrinsic "+e+" does not exist!")};e.exports=function(e,t){if("string"!=typeof e||0===e.length)throw new o("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof t)throw new o('"allowMissing" argument must be a boolean');if(null===L(/^%?[^%]*%?$/,e))throw new i("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var r=function(e){var t=I(e,0,1),r=I(e,-1);if("%"===t&&"%"!==r)throw new i("invalid intrinsic syntax, expected closing `%`");if("%"===r&&"%"!==t)throw new i("invalid intrinsic syntax, expected opening `%`");var n=[];return R(e,C,(function(e,t,r,i){n[n.length]=r?R(i,D,"$1"):t||e})),n}(e),n=r.length>0?r[0]:"",a=b("%"+n+"%",t),s=a.name,l=a.value,u=!1,p=a.alias;p&&(n=p[0],S(r,O([0,1],p)));for(var d=1,h=!0;d<r.length;d+=1){var m=r[d],f=I(m,0,1),v=I(m,-1);if(('"'===f||"'"===f||"`"===f||'"'===v||"'"===v||"`"===v)&&f!==v)throw new i("property names with quotes must have matching quotes");if("constructor"!==m&&h||(u=!0),A(E,s="%"+(n+="."+m)+"%"))l=E[s];else if(null!=l){if(!(m in l)){if(!t)throw new o("base intrinsic for "+e+" exists, but the property is not available.");return}if(c&&d+1>=r.length){var _=c(l,m);l=(h=!!_)&&"get"in _&&!("originalValue"in _.get)?_.get:l[m]}else h=A(l,m),l=l[m];h&&!u&&(E[s]=l)}}return l}},7502:(e,t,r)=>{"use strict";var n=r(8750)("%Object.getOwnPropertyDescriptor%",!0);if(n)try{n([],"length")}catch(e){n=null}e.exports=n},1365:(e,t,r)=>{"use strict";var n=r(8750)("%Object.defineProperty%",!0),i=function(){if(n)try{return n({},"a",{value:1}),!0}catch(e){return!1}return!1};i.hasArrayLengthDefineBug=function(){if(!i())return null;try{return 1!==n([],"length",{value:1}).length}catch(e){return!0}},e.exports=i},2574:e=>{"use strict";var t={foo:{}},r=Object;e.exports=function(){return{__proto__:t}.foo===t.foo&&!({__proto__:null}instanceof r)}},679:(e,t,r)=>{"use strict";var n="undefined"!=typeof Symbol&&Symbol,i=r(8186);e.exports=function(){return"function"==typeof n&&"function"==typeof Symbol&&"symbol"==typeof n("foo")&&"symbol"==typeof Symbol("bar")&&i()}},8186:e=>{"use strict";e.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var e={},t=Symbol("test"),r=Object(t);if("string"==typeof t)return!1;if("[object Symbol]"!==Object.prototype.toString.call(t))return!1;if("[object Symbol]"!==Object.prototype.toString.call(r))return!1;for(t in e[t]=42,e)return!1;if("function"==typeof Object.keys&&0!==Object.keys(e).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(e).length)return!1;var n=Object.getOwnPropertySymbols(e);if(1!==n.length||n[0]!==t)return!1;if(!Object.prototype.propertyIsEnumerable.call(e,t))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var i=Object.getOwnPropertyDescriptor(e,t);if(42!==i.value||!0!==i.enumerable)return!1}return!0}},698:(e,t,r)=>{"use strict";var n=r(8186);e.exports=function(){return n()&&!!Symbol.toStringTag}},1712:(e,t,r)=>{"use strict";var n=Function.prototype.call,i=Object.prototype.hasOwnProperty,a=r(132);e.exports=a.call(n,i)},8898:(e,t)=>{t.read=function(e,t,r,n,i){var a,o,s=8*i-n-1,c=(1<<s)-1,l=c>>1,u=-7,p=r?i-1:0,d=r?-1:1,h=e[t+p];for(p+=d,a=h&(1<<-u)-1,h>>=-u,u+=s;u>0;a=256*a+e[t+p],p+=d,u-=8);for(o=a&(1<<-u)-1,a>>=-u,u+=n;u>0;o=256*o+e[t+p],p+=d,u-=8);if(0===a)a=1-l;else{if(a===c)return o?NaN:1/0*(h?-1:1);o+=Math.pow(2,n),a-=l}return(h?-1:1)*o*Math.pow(2,a-n)},t.write=function(e,t,r,n,i,a){var o,s,c,l=8*a-i-1,u=(1<<l)-1,p=u>>1,d=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,h=n?0:a-1,m=n?1:-1,f=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,o=u):(o=Math.floor(Math.log(t)/Math.LN2),t*(c=Math.pow(2,-o))<1&&(o--,c*=2),(t+=o+p>=1?d/c:d*Math.pow(2,1-p))*c>=2&&(o++,c/=2),o+p>=u?(s=0,o=u):o+p>=1?(s=(t*c-1)*Math.pow(2,i),o+=p):(s=t*Math.pow(2,p-1)*Math.pow(2,i),o=0));i>=8;e[r+h]=255&s,h+=m,s/=256,i-=8);for(o=o<<i|s,l+=i;l>0;e[r+h]=255&o,h+=m,o/=256,l-=8);e[r+h-m]|=128*f}},87:e=>{"function"==typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var r=function(){};r.prototype=t.prototype,e.prototype=new r,e.prototype.constructor=e}}},7740:(e,t,r)=>{"use strict";var n=r(698)(),i=r(2737)("Object.prototype.toString"),a=function(e){return!(n&&e&&"object"==typeof e&&Symbol.toStringTag in e)&&"[object Arguments]"===i(e)},o=function(e){return!!a(e)||null!==e&&"object"==typeof e&&"number"==typeof e.length&&e.length>=0&&"[object Array]"!==i(e)&&"[object Function]"===i(e.callee)},s=function(){return a(arguments)}();a.isLegacyArguments=o,e.exports=s?a:o},2922:e=>{"use strict";var t,r,n=Function.prototype.toString,i="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof i&&"function"==typeof Object.defineProperty)try{t=Object.defineProperty({},"length",{get:function(){throw r}}),r={},i((function(){throw 42}),null,t)}catch(e){e!==r&&(i=null)}else i=null;var a=/^\s*class\b/,o=function(e){try{var t=n.call(e);return a.test(t)}catch(e){return!1}},s=function(e){try{return!o(e)&&(n.call(e),!0)}catch(e){return!1}},c=Object.prototype.toString,l="function"==typeof Symbol&&!!Symbol.toStringTag,u=!(0 in[,]),p=function(){return!1};if("object"==typeof document){var d=document.all;c.call(d)===c.call(document.all)&&(p=function(e){if((u||!e)&&(void 0===e||"object"==typeof e))try{var t=c.call(e);return("[object HTMLAllCollection]"===t||"[object HTML document.all class]"===t||"[object HTMLCollection]"===t||"[object Object]"===t)&&null==e("")}catch(e){}return!1})}e.exports=i?function(e){if(p(e))return!0;if(!e)return!1;if("function"!=typeof e&&"object"!=typeof e)return!1;try{i(e,null,t)}catch(e){if(e!==r)return!1}return!o(e)&&s(e)}:function(e){if(p(e))return!0;if(!e)return!1;if("function"!=typeof e&&"object"!=typeof e)return!1;if(l)return s(e);if(o(e))return!1;var t=c.call(e);return!("[object Function]"!==t&&"[object GeneratorFunction]"!==t&&!/^\[object HTML/.test(t))&&s(e)}},8265:(e,t,r)=>{"use strict";var n,i=Object.prototype.toString,a=Function.prototype.toString,o=/^\s*(?:function)?\*/,s=r(698)(),c=Object.getPrototypeOf;e.exports=function(e){if("function"!=typeof e)return!1;if(o.test(a.call(e)))return!0;if(!s)return"[object GeneratorFunction]"===i.call(e);if(!c)return!1;if(void 0===n){var t=function(){if(!s)return!1;try{return Function("return function*() {}")()}catch(e){}}();n=!!t&&c(t)}return c(e)===n}},387:(e,t,r)=>{"use strict";var n=r(2505);e.exports=function(e){return!!n(e)}},5182:e=>{var t={}.toString;e.exports=Array.isArray||function(e){return"[object Array]"==t.call(e)}},1041:(e,t,r)=>{var n=r(5043),i=r(6090),a=r(7905),o=r(2711),s=r(3357).encodeSegment;t.diff=function(e,t,r){return u(e,t,"",function(e,t){return"object"==typeof e?{patch:t,hash:p(h,e.hash,l),makeContext:p(h,e.makeContext,d),invertible:!(!1===e.invertible)}:{patch:t,hash:p(h,e,l),makeContext:d,invertible:!0}}(r,[])).patch},t.patch=a.apply,t.patchInPlace=a.applyInPlace,t.inverse=o,t.clone=a.clone,t.InvalidPatchOperationError=r(2649),t.TestFailedError=r(7084),t.PatchNotInvertibleError=r(8095);var c=a.isValidObject,l=a.defaultHash;function u(e,t,r,a){return Array.isArray(e)&&Array.isArray(t)?function(e,t,r,a){var o=i.map(a.hash,e),s=i.map(a.hash,t);return function(e,t,r,i,a){var o=0;return n.reduce((function(i,a,s,c){var l,p,d=i.patch,h=r+"/"+(c+o);return a===n.REMOVE?(l=d[d.length-1],p=i.makeContext(c,e),i.invertible&&d.push({op:"test",path:h,value:e[c],context:p}),void 0!==l&&"add"===l.op&&l.path===h?(l.op="replace",l.context=p):d.push({op:"remove",path:h,context:p}),o-=1):a===n.ADD?(d.push({op:"add",path:h,value:t[s],context:i.makeContext(c,e)}),o+=1):u(e[c],t[s],h,i),i}),i,a)}(e,t,r,a,n.compare(o,s))}(e,t,r,a):c(e)&&c(t)?function(e,t,r,n){var i,a,o=Object.keys(t),c=n.patch;for(i=o.length-1;i>=0;--i){a=o[i];var l=r+"/"+s(a);void 0!==e[a]?u(e[a],t[a],l,n):c.push({op:"add",path:l,value:t[a]})}for(i=(o=Object.keys(e)).length-1;i>=0;--i)if(void 0===t[a=o[i]]){var p=r+"/"+s(a);n.invertible&&c.push({op:"test",path:p,value:e[a]}),c.push({op:"remove",path:p})}return n}(e,t,r,a):function(e,t,r,n){return e!==t&&(n.invertible&&n.patch.push({op:"test",path:r,value:e}),n.patch.push({op:"replace",path:r,value:t})),n}(e,t,r,a)}function p(e,t,r){return e(t)?t:r}function d(){}function h(e){return"function"==typeof e}},2649:e=>{function t(e){Error.call(this),this.name=this.constructor.name,this.message=e,"function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}e.exports=t,t.prototype=Object.create(Error.prototype),t.prototype.constructor=t},8095:e=>{function t(e){Error.call(this),this.name=this.constructor.name,this.message=e,"function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}e.exports=t,t.prototype=Object.create(Error.prototype),t.prototype.constructor=t},7084:e=>{function t(e){Error.call(this),this.name=this.constructor.name,this.message=e,"function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}e.exports=t,t.prototype=Object.create(Error.prototype),t.prototype.constructor=t},6090:(e,t)=>{t.cons=function(e,t){var r=t.length,n=new Array(r+1);n[0]=e;for(var i=0;i<r;++i)n[i+1]=t[i];return n},t.tail=function(e){for(var t=e.length-1,r=new Array(t),n=0;n<t;++n)r[n]=e[n+1];return r},t.map=function(e,t){for(var r=new Array(t.length),n=0;n<t.length;++n)r[n]=e(t[n]);return r}},2309:e=>{e.exports=function e(t){return null==t||"object"!=typeof t?t:Array.isArray(t)?function(t){for(var r=t.length,n=new Array(r),i=0;i<r;++i)n[i]=e(t[i]);return n}(t):function(t){for(var r,n=Object.keys(t),i={},a=0,o=n.length;a<o;++a)i[r=n[a]]=e(t[r]);return i}(t)}},1124:(e,t,r)=>{var n=r(3357);function i(e,t,r,n,i){var a=t.length-1,o=+t[a],s=+n[a],c=n.slice();return o>s||("add"===e.op||"copy"===e.op?c[a]=Math.max(0,s-i):"remove"===e.op&&(c[a]=Math.max(0,s+i))),c}function a(e){return"remove"===e.op?{op:e.op,path:e.path}:"copy"===e.op||"move"===e.op?{op:e.op,path:e.path,from:e.from}:{op:e.op,path:e.path,value:e.value}}e.exports=function(e,t){var r=n.parse(e.path),o=n.parse(t.path),s=function(e,t){var r=e.length,n=t.length;if(0===r||0===n||r<2&&n<2)return[];for(var i=r===n?r-1:Math.min(r,n),a=0;a<i&&e[a]===t[a];)++a;return e.slice(0,a)}(r,o),c=function(e,t,r){return n.isValidArrayIndex(e[r])&&n.isValidArrayIndex(t[r])}(r,o,s.length),l=a(e),u=a(t);return 0!==s.length||c?c?function(e,t,r,a){return t.length===a.length?(o=e,c=r,l=a,p=(s=t).length-1,d=+s[p],h=+l[p],d<h?"add"===o.op||"copy"===o.op?((u=l.slice())[p]=Math.max(0,h-1),c.path=n.absolute(n.join(u))):"remove"===o.op&&((u=l.slice())[p]=h+1,c.path=n.absolute(n.join(u))):"add"===c.op||"copy"===c.op?((u=s.slice())[p]=d+1,o.path=n.absolute(n.join(u))):d>h&&"remove"===c.op&&((u=s.slice())[p]=Math.max(0,d-1),o.path=n.absolute(n.join(u))),[c,o]):(t.length>a.length?(t=i(r,a,0,t,-1),e.path=n.absolute(n.join(t))):(a=i(e,t,0,a,1),r.path=n.absolute(n.join(a))),[r,e]);var o,s,c,l,u,p,d,h}(l,r,u,o):function(e,t,r,n){if(e.path===r.path)throw new TypeError("cannot commute "+e.op+","+r.op+" with identical object paths");return[r,e]}(l,0,u):[u,l]}},364:e=>{e.exports=function e(t,r){return t===r||(Array.isArray(t)&&Array.isArray(r)?function(t,r){if(t.length!==r.length)return!1;for(var n=0;n<t.length;++n)if(!e(t[n],r[n]))return!1;return!0}(t,r):"object"==typeof t&&"object"==typeof r&&function(t,r){if(null===t&&null!==r||null!==t&&null===r)return!1;var n=Object.keys(t),i=Object.keys(r);if(n.length!==i.length)return!1;for(var a,o=0;o<n.length;++o)if(!((a=n[o])in r)||!e(t[a],r[a]))return!1;return!0}(t,r))}},2711:(e,t,r)=>{var n=r(8666);function i(e,t,r,i){var a=n[t.op];return void 0!==a&&"function"==typeof a.inverse?a.inverse(e,t,r,i):1}e.exports=function(e){var t,r,n=[];for(t=e.length-1;t>=0;t-=r)r=i(n,e[t],t,e);return n}},7905:(e,t,r)=>{var n=r(8666),i=r(2309),a=r(2649);t.apply=function(e,t,r){return s(e,i(t),r)},t.applyInPlace=s,t.clone=i,t.isValidObject=c,t.defaultHash=function(e){return c(e)||function(e){return"[object Array]"===Object.prototype.toString.call(e)}(e)?JSON.stringify(e):e};var o={};function s(e,t,r){if(r||(r=o),!Array.isArray(e))return t;for(var i,s,c=0;c<e.length;++c){if(s=e[c],void 0===(i=n[s.op]))throw new a("invalid op "+JSON.stringify(s));t=i.apply(t,s,r)}return t}function c(e){return null!==e&&"[object Object]"===Object.prototype.toString.call(e)}},3357:(e,t,r)=>{var n=r(7475);t.find=function(e,t,r,a){if("string"==typeof t){if(""===t)return{target:e,key:void 0};if(t===i)return{target:e,key:""};var o,s=e,c=void 0!==a;return n(t,(function(t){if(null==e)return s=null,!1;o=Array.isArray(e)?c?function(e,t,r,n){var i=t;if(i<0)throw new Error("array index out of bounds "+i);if(void 0!==n&&"function"==typeof e&&(i=e(t,r,n))<0)throw new Error("could not find patch context "+n);return i}(r,m(t),e,a):"-"===t?t:m(t):t,s=e,e=e[o]})),null===s?void 0:{target:s,key:o}}},t.join=function(e){return e.join(i)},t.absolute=function(e){return e[0]===i?e:i+e},t.parse=function(e){var t=[];return n(e,t.push.bind(t)),t},t.contains=function(e,t){return 0===t.indexOf(e)&&t[e.length]===i},t.encodeSegment=function(e){return e.replace(l,u).replace(a,o)},t.decodeSegment=function(e){return e.replace(s,i).replace(p,c)},t.parseArrayIndex=m,t.isValidArrayIndex=h;var i="/",a=/\//g,o="~1",s=/~1/g,c="~",l=/~/g,u="~0",p=/~0/g,d=/^(0|[1-9]\d*)$/;function h(e){return d.test(e)}function m(e){if(h(e))return+e;throw new SyntaxError("invalid array index "+e)}},7475:e=>{e.exports=function(e,a){var o,s,c,l;for(o=e.charAt(0)===r?1:0,s="",t.lastIndex=o;c=t.exec(e);)if(l=c[0],s+=e.slice(o,t.lastIndex-l.length),o=t.lastIndex,l===r){if(!1===a(s))return e;s=""}else s+=l===i?r:n;return a(s+=e.slice(o)),e};var t=/\/|~1|~0/g,r="/",n="~",i="~1"},5043:(e,t)=>{var r,n,i;function a(e,t,a,o,s,c){return t[s+o]===a[c+o]?{value:e[c+1][s+1].value,type:i}:e[c][s+1].value<e[c+1][s].value?{value:e[c][s+1].value+1,type:r}:{value:e[c+1][s].value+1,type:n}}t.compare=function(e,t){for(var o=e.length,s=t.length,c=function(e,t){for(var r=0,n=Math.min(e.length,t.length);r<n&&e[r]===t[r];)++r;return r}(e,t),l=c<o&&c<s?function(e,t){for(var r=e.length-1,n=t.length-1,i=Math.min(r,n),a=0;a<i&&e[r-a]===t[n-a];)++a;return a}(e,t):0,u=l+c-1,p=function(e,t){var a,o,s,c=[];for(s=c[t]=[],o=0;o<e;++o)s[o]={value:e-o,type:r};for(a=0;a<t;++a)c[a]=[],c[a][e]={value:t-a,type:n};return c[t][e]={value:0,type:i},c}(o-=u,s-=u),d=o-1;d>=0;--d)for(var h=s-1;h>=0;--h)p[h][d]=a(p,e,t,c,d,h);return{prefix:c,matrix:p,suffix:l}},t.reduce=function(e,t,a){var o,s,c,l,u=a.matrix,p=a.prefix;for(o=0;o<p;++o)t=e(t,i,o,o);for(c=o,p=u.length,o=0,s=0;o<p;)switch(t=e(t,l=u[o][s].type,o+c,s+c),l){case i:++o,++s;break;case r:++s;break;case n:++o}for(o+=c,s+=c,p=a.suffix,c=0;c<p;++c)t=e(t,i,o+c,s+c);return t},t.REMOVE=r=-1,t.ADD=n=1,t.EQUAL=i=0},8666:(e,t,r)=>{var n=r(3357),i=r(2309),a=r(364),o=r(1124),s=r(6090),c=r(7084),l=r(2649),u=r(8095),p=n.find,d=n.parseArrayIndex;function h(e,t){var r=e.target;if(Array.isArray(r))if("-"===e.key)r.push(t);else{if(e.key>r.length)throw new l("target of add outside of array bounds");r.splice(e.key,0,t)}else{if(!_(r))throw new l("target of add must be an object or array "+e.key);r[e.key]=t}}function m(e,t){if(e.path===t.path&&"remove"===t.op)throw new TypeError("Can't commute add,remove -> remove,add for same path");return o(e,t)}function f(e){var t,r=e.target;if(Array.isArray(r))return(t=r.splice(d(e.key),1))[0];if(_(r))return t=r[e.key],delete r[e.key],t;throw new l("target of remove must be an object or array")}function E(e){return void 0===e||null==e.target&&void 0!==e.key}function v(e){return void 0!==e.key&&void 0===e.target[e.key]}function _(e){return null!==e&&"object"==typeof e}t.test={apply:function(e,t,r){var n,i=p(e,t.path,r.findContext,t.context),o=i.target;if(n=Array.isArray(o)?o[d(i.key)]:void 0===i.key?i.target:i.target[i.key],!a(n,t.value))throw new c("test failed "+JSON.stringify(t));return e},inverse:function(e,t){return e.push(t),1},commute:function(e,t){if(e.path===t.path&&"remove"===t.op)throw new TypeError("Can't commute test,remove -> remove,test for same path");return"test"===t.op||"replace"===t.op?[t,e]:o(e,t)}},t.add={apply:function(e,t,r){var n=p(e,t.path,r.findContext,t.context);if(E(n))throw new l("path does not exist "+t.path);if(void 0===t.value)throw new l("missing value");var a=i(t.value);return void 0===n.key?a:(h(n,a),e)},inverse:function(e,t){var r=t.context;return void 0!==r&&(r={before:r.before,after:s.cons(t.value,r.after)}),e.push({op:"test",path:t.path,value:t.value,context:r}),e.push({op:"remove",path:t.path,context:r}),1},commute:m},t.remove={apply:function(e,t,r){var n=p(e,t.path,r.findContext,t.context);if(E(n)||void 0===n.target[n.key])throw new l("path does not exist "+t.path);return f(n),e},inverse:function(e,t,r,n){var i=n[r-1];if(void 0===i||"test"!==i.op||i.path!==t.path)throw new u("cannot invert remove w/o test");var a=i.context;return void 0!==a&&(a={before:a.before,after:s.tail(a.after)}),e.push({op:"add",path:i.path,value:i.value,context:a}),2},commute:function(e,t){return e.path===t.path&&"remove"===t.op?[t,e]:o(e,t)}},t.replace={apply:function(e,t,r){var n=p(e,t.path,r.findContext,t.context);if(E(n)||v(n))throw new l("path does not exist "+t.path);if(void 0===t.value)throw new l("missing value");var a=i(t.value);if(void 0===n.key)return a;var o=n.target;return Array.isArray(o)?o[d(n.key)]=a:o[n.key]=a,e},inverse:function(e,t,r,n){var i=n[r-1];if(void 0===i||"test"!==i.op||i.path!==t.path)throw new u("cannot invert replace w/o test");var a=i.context;return void 0!==a&&(a={before:a.before,after:s.cons(i.value,s.tail(a.after))}),e.push({op:"test",path:i.path,value:t.value}),e.push({op:"replace",path:i.path,value:i.value}),2},commute:function(e,t){if(e.path===t.path&&"remove"===t.op)throw new TypeError("Can't commute replace,remove -> remove,replace for same path");return"test"===t.op||"replace"===t.op?[t,e]:o(e,t)}},t.move={apply:function(e,t,r){if(n.contains(t.path,t.from))throw new l("move.from cannot be ancestor of move.path");return h(p(e,t.path,r.findContext,t.context),f(p(e,t.from,r.findContext,t.fromContext))),e},inverse:function(e,t){return e.push({op:"move",path:t.from,context:t.fromContext,from:t.path,fromContext:t.context}),1},commute:function(e,t){if(e.path===t.path&&"remove"===t.op)throw new TypeError("Can't commute move,remove -> move,replace for same path");return o(e,t)}},t.copy={apply:function(e,t,r){var n=p(e,t.path,r.findContext,t.context),a=p(e,t.from,r.findContext,t.fromContext);if(E(a)||v(a))throw new l("copy.from must exist");var o,s=a.target;return o=Array.isArray(s)?s[d(a.key)]:s[a.key],h(n,i(o)),e},inverse:function(e,t){throw new u("cannot invert "+t.op)},commute:m}},4233:(e,t)=>{!function(e){"use strict";function t(e){return null!==e&&"[object Array]"===Object.prototype.toString.call(e)}function r(e){return null!==e&&"[object Object]"===Object.prototype.toString.call(e)}function n(e,i){if(e===i)return!0;if(Object.prototype.toString.call(e)!==Object.prototype.toString.call(i))return!1;if(!0===t(e)){if(e.length!==i.length)return!1;for(var a=0;a<e.length;a++)if(!1===n(e[a],i[a]))return!1;return!0}if(!0===r(e)){var o={};for(var s in e)if(hasOwnProperty.call(e,s)){if(!1===n(e[s],i[s]))return!1;o[s]=!0}for(var c in i)if(hasOwnProperty.call(i,c)&&!0!==o[c])return!1;return!0}return!1}function i(e){if(""===e||!1===e||null===e)return!0;if(t(e)&&0===e.length)return!0;if(r(e)){for(var n in e)if(e.hasOwnProperty(n))return!1;return!0}return!1}var a;a="function"==typeof String.prototype.trimLeft?function(e){return e.trimLeft()}:function(e){return e.match(/^\s*(.*)/)[1]};var o=0,s=2,c={0:"number",1:"any",2:"string",3:"array",4:"object",5:"boolean",6:"expression",7:"null",8:"Array<number>",9:"Array<string>"},l="EOF",u="UnquotedIdentifier",p="QuotedIdentifier",d="Rbracket",h="Rparen",m="Comma",f="Colon",E="Rbrace",v="Number",_="Current",g="Expref",y="Pipe",A="Or",O="And",S="EQ",R="GT",I="LT",L="GTE",C="LTE",D="NE",b="Flatten",T="Star",N="Filter",k="Dot",w="Not",x="Lbrace",M="Lbracket",P="Lparen",G="Literal",U={".":k,"*":T,",":m,":":f,"{":x,"}":E,"]":d,"(":P,")":h,"@":_},F={"<":!0,">":!0,"=":!0,"!":!0},V={" ":!0,"\t":!0,"\n":!0};function z(e){return e>="0"&&e<="9"||"-"===e}function B(){}B.prototype={tokenize:function(e){var t,r,n,i,a=[];for(this._current=0;this._current<e.length;)if((i=e[this._current])>="a"&&i<="z"||i>="A"&&i<="Z"||"_"===i)t=this._current,r=this._consumeUnquotedIdentifier(e),a.push({type:u,value:r,start:t});else if(void 0!==U[e[this._current]])a.push({type:U[e[this._current]],value:e[this._current],start:this._current}),this._current++;else if(z(e[this._current]))n=this._consumeNumber(e),a.push(n);else if("["===e[this._current])n=this._consumeLBracket(e),a.push(n);else if('"'===e[this._current])t=this._current,r=this._consumeQuotedIdentifier(e),a.push({type:p,value:r,start:t});else if("'"===e[this._current])t=this._current,r=this._consumeRawStringLiteral(e),a.push({type:G,value:r,start:t});else if("`"===e[this._current]){t=this._current;var o=this._consumeLiteral(e);a.push({type:G,value:o,start:t})}else if(void 0!==F[e[this._current]])a.push(this._consumeOperator(e));else if(void 0!==V[e[this._current]])this._current++;else if("&"===e[this._current])t=this._current,this._current++,"&"===e[this._current]?(this._current++,a.push({type:O,value:"&&",start:t})):a.push({type:g,value:"&",start:t});else{if("|"!==e[this._current]){var s=new Error("Unknown character:"+e[this._current]);throw s.name="LexerError",s}t=this._current,this._current++,"|"===e[this._current]?(this._current++,a.push({type:A,value:"||",start:t})):a.push({type:y,value:"|",start:t})}return a},_consumeUnquotedIdentifier:function(e){var t,r=this._current;for(this._current++;this._current<e.length&&((t=e[this._current])>="a"&&t<="z"||t>="A"&&t<="Z"||t>="0"&&t<="9"||"_"===t);)this._current++;return e.slice(r,this._current)},_consumeQuotedIdentifier:function(e){var t=this._current;this._current++;for(var r=e.length;'"'!==e[this._current]&&this._current<r;){var n=this._current;"\\"!==e[n]||"\\"!==e[n+1]&&'"'!==e[n+1]?n++:n+=2,this._current=n}return this._current++,JSON.parse(e.slice(t,this._current))},_consumeRawStringLiteral:function(e){var t=this._current;this._current++;for(var r=e.length;"'"!==e[this._current]&&this._current<r;){var n=this._current;"\\"!==e[n]||"\\"!==e[n+1]&&"'"!==e[n+1]?n++:n+=2,this._current=n}return this._current++,e.slice(t+1,this._current-1).replace("\\'","'")},_consumeNumber:function(e){var t=this._current;this._current++;for(var r=e.length;z(e[this._current])&&this._current<r;)this._current++;var n=parseInt(e.slice(t,this._current));return{type:v,value:n,start:t}},_consumeLBracket:function(e){var t=this._current;return this._current++,"?"===e[this._current]?(this._current++,{type:N,value:"[?",start:t}):"]"===e[this._current]?(this._current++,{type:b,value:"[]",start:t}):{type:M,value:"[",start:t}},_consumeOperator:function(e){var t=this._current,r=e[t];return this._current++,"!"===r?"="===e[this._current]?(this._current++,{type:D,value:"!=",start:t}):{type:w,value:"!",start:t}:"<"===r?"="===e[this._current]?(this._current++,{type:C,value:"<=",start:t}):{type:I,value:"<",start:t}:">"===r?"="===e[this._current]?(this._current++,{type:L,value:">=",start:t}):{type:R,value:">",start:t}:"="===r&&"="===e[this._current]?(this._current++,{type:S,value:"==",start:t}):void 0},_consumeLiteral:function(e){this._current++;for(var t,r=this._current,n=e.length;"`"!==e[this._current]&&this._current<n;){var i=this._current;"\\"!==e[i]||"\\"!==e[i+1]&&"`"!==e[i+1]?i++:i+=2,this._current=i}var o=a(e.slice(r,this._current));return o=o.replace("\\`","`"),t=this._looksLikeJSON(o)?JSON.parse(o):JSON.parse('"'+o+'"'),this._current++,t},_looksLikeJSON:function(e){if(""===e)return!1;if('[{"'.indexOf(e[0])>=0)return!0;if(["true","false","null"].indexOf(e)>=0)return!0;if(!("-0123456789".indexOf(e[0])>=0))return!1;try{return JSON.parse(e),!0}catch(e){return!1}}};var H={};function j(){}function q(e){this.runtime=e}function W(e){this._interpreter=e,this.functionTable={abs:{_func:this._functionAbs,_signature:[{types:[o]}]},avg:{_func:this._functionAvg,_signature:[{types:[8]}]},ceil:{_func:this._functionCeil,_signature:[{types:[o]}]},contains:{_func:this._functionContains,_signature:[{types:[s,3]},{types:[1]}]},ends_with:{_func:this._functionEndsWith,_signature:[{types:[s]},{types:[s]}]},floor:{_func:this._functionFloor,_signature:[{types:[o]}]},length:{_func:this._functionLength,_signature:[{types:[s,3,4]}]},map:{_func:this._functionMap,_signature:[{types:[6]},{types:[3]}]},max:{_func:this._functionMax,_signature:[{types:[8,9]}]},merge:{_func:this._functionMerge,_signature:[{types:[4],variadic:!0}]},max_by:{_func:this._functionMaxBy,_signature:[{types:[3]},{types:[6]}]},sum:{_func:this._functionSum,_signature:[{types:[8]}]},starts_with:{_func:this._functionStartsWith,_signature:[{types:[s]},{types:[s]}]},min:{_func:this._functionMin,_signature:[{types:[8,9]}]},min_by:{_func:this._functionMinBy,_signature:[{types:[3]},{types:[6]}]},type:{_func:this._functionType,_signature:[{types:[1]}]},keys:{_func:this._functionKeys,_signature:[{types:[4]}]},values:{_func:this._functionValues,_signature:[{types:[4]}]},sort:{_func:this._functionSort,_signature:[{types:[9,8]}]},sort_by:{_func:this._functionSortBy,_signature:[{types:[3]},{types:[6]}]},join:{_func:this._functionJoin,_signature:[{types:[s]},{types:[9]}]},reverse:{_func:this._functionReverse,_signature:[{types:[s,3]}]},to_array:{_func:this._functionToArray,_signature:[{types:[1]}]},to_string:{_func:this._functionToString,_signature:[{types:[1]}]},to_number:{_func:this._functionToNumber,_signature:[{types:[1]}]},not_null:{_func:this._functionNotNull,_signature:[{types:[1],variadic:!0}]}}}H[l]=0,H[u]=0,H[p]=0,H[d]=0,H[h]=0,H[m]=0,H[E]=0,H[v]=0,H[_]=0,H[g]=0,H[y]=1,H[A]=2,H[O]=3,H[S]=5,H[R]=5,H[I]=5,H[L]=5,H[C]=5,H[D]=5,H[b]=9,H[T]=20,H[N]=21,H[k]=40,H[w]=45,H[x]=50,H[M]=55,H[P]=60,j.prototype={parse:function(e){this._loadTokens(e),this.index=0;var t=this.expression(0);if(this._lookahead(0)!==l){var r=this._lookaheadToken(0),n=new Error("Unexpected token type: "+r.type+", value: "+r.value);throw n.name="ParserError",n}return t},_loadTokens:function(e){var t=(new B).tokenize(e);t.push({type:l,value:"",start:e.length}),this.tokens=t},expression:function(e){var t=this._lookaheadToken(0);this._advance();for(var r=this.nud(t),n=this._lookahead(0);e<H[n];)this._advance(),r=this.led(n,r),n=this._lookahead(0);return r},_lookahead:function(e){return this.tokens[this.index+e].type},_lookaheadToken:function(e){return this.tokens[this.index+e]},_advance:function(){this.index++},nud:function(e){var t,r;switch(e.type){case G:return{type:"Literal",value:e.value};case u:return{type:"Field",name:e.value};case p:var n={type:"Field",name:e.value};if(this._lookahead(0)===P)throw new Error("Quoted identifier not allowed for function names.");return n;case w:return{type:"NotExpression",children:[t=this.expression(H.Not)]};case T:return t=null,{type:"ValueProjection",children:[{type:"Identity"},t=this._lookahead(0)===d?{type:"Identity"}:this._parseProjectionRHS(H.Star)]};case N:return this.led(e.type,{type:"Identity"});case x:return this._parseMultiselectHash();case b:return{type:"Projection",children:[{type:b,children:[{type:"Identity"}]},t=this._parseProjectionRHS(H.Flatten)]};case M:return this._lookahead(0)===v||this._lookahead(0)===f?(t=this._parseIndexExpression(),this._projectIfSlice({type:"Identity"},t)):this._lookahead(0)===T&&this._lookahead(1)===d?(this._advance(),this._advance(),{type:"Projection",children:[{type:"Identity"},t=this._parseProjectionRHS(H.Star)]}):this._parseMultiselectList();case _:return{type:_};case g:return{type:"ExpressionReference",children:[r=this.expression(H.Expref)]};case P:for(var i=[];this._lookahead(0)!==h;)this._lookahead(0)===_?(r={type:_},this._advance()):r=this.expression(0),i.push(r);return this._match(h),i[0];default:this._errorToken(e)}},led:function(e,t){var r;switch(e){case k:var n=H.Dot;return this._lookahead(0)!==T?{type:"Subexpression",children:[t,r=this._parseDotRHS(n)]}:(this._advance(),{type:"ValueProjection",children:[t,r=this._parseProjectionRHS(n)]});case y:return r=this.expression(H.Pipe),{type:y,children:[t,r]};case A:return{type:"OrExpression",children:[t,r=this.expression(H.Or)]};case O:return{type:"AndExpression",children:[t,r=this.expression(H.And)]};case P:for(var i,a=t.name,o=[];this._lookahead(0)!==h;)this._lookahead(0)===_?(i={type:_},this._advance()):i=this.expression(0),this._lookahead(0)===m&&this._match(m),o.push(i);return this._match(h),{type:"Function",name:a,children:o};case N:var s=this.expression(0);return this._match(d),{type:"FilterProjection",children:[t,r=this._lookahead(0)===b?{type:"Identity"}:this._parseProjectionRHS(H.Filter),s]};case b:return{type:"Projection",children:[{type:b,children:[t]},this._parseProjectionRHS(H.Flatten)]};case S:case D:case R:case L:case I:case C:return this._parseComparator(t,e);case M:var c=this._lookaheadToken(0);return c.type===v||c.type===f?(r=this._parseIndexExpression(),this._projectIfSlice(t,r)):(this._match(T),this._match(d),{type:"Projection",children:[t,r=this._parseProjectionRHS(H.Star)]});default:this._errorToken(this._lookaheadToken(0))}},_match:function(e){if(this._lookahead(0)!==e){var t=this._lookaheadToken(0),r=new Error("Expected "+e+", got: "+t.type);throw r.name="ParserError",r}this._advance()},_errorToken:function(e){var t=new Error("Invalid token ("+e.type+'): "'+e.value+'"');throw t.name="ParserError",t},_parseIndexExpression:function(){if(this._lookahead(0)===f||this._lookahead(1)===f)return this._parseSliceExpression();var e={type:"Index",value:this._lookaheadToken(0).value};return this._advance(),this._match(d),e},_projectIfSlice:function(e,t){var r={type:"IndexExpression",children:[e,t]};return"Slice"===t.type?{type:"Projection",children:[r,this._parseProjectionRHS(H.Star)]}:r},_parseSliceExpression:function(){for(var e=[null,null,null],t=0,r=this._lookahead(0);r!==d&&t<3;){if(r===f)t++,this._advance();else{if(r!==v){var n=this._lookahead(0),i=new Error("Syntax error, unexpected token: "+n.value+"("+n.type+")");throw i.name="Parsererror",i}e[t]=this._lookaheadToken(0).value,this._advance()}r=this._lookahead(0)}return this._match(d),{type:"Slice",children:e}},_parseComparator:function(e,t){return{type:"Comparator",name:t,children:[e,this.expression(H[t])]}},_parseDotRHS:function(e){var t=this._lookahead(0);return[u,p,T].indexOf(t)>=0?this.expression(e):t===M?(this._match(M),this._parseMultiselectList()):t===x?(this._match(x),this._parseMultiselectHash()):void 0},_parseProjectionRHS:function(e){var t;if(H[this._lookahead(0)]<10)t={type:"Identity"};else if(this._lookahead(0)===M)t=this.expression(e);else if(this._lookahead(0)===N)t=this.expression(e);else{if(this._lookahead(0)!==k){var r=this._lookaheadToken(0),n=new Error("Sytanx error, unexpected token: "+r.value+"("+r.type+")");throw n.name="ParserError",n}this._match(k),t=this._parseDotRHS(e)}return t},_parseMultiselectList:function(){for(var e=[];this._lookahead(0)!==d;){var t=this.expression(0);if(e.push(t),this._lookahead(0)===m&&(this._match(m),this._lookahead(0)===d))throw new Error("Unexpected token Rbracket")}return this._match(d),{type:"MultiSelectList",children:e}},_parseMultiselectHash:function(){for(var e,t,r,n=[],i=[u,p];;){if(e=this._lookaheadToken(0),i.indexOf(e.type)<0)throw new Error("Expecting an identifier token, got: "+e.type);if(t=e.value,this._advance(),this._match(f),r={type:"KeyValuePair",name:t,value:this.expression(0)},n.push(r),this._lookahead(0)===m)this._match(m);else if(this._lookahead(0)===E){this._match(E);break}}return{type:"MultiSelectHash",children:n}}},q.prototype={search:function(e,t){return this.visit(e,t)},visit:function(e,a){var o,s,c,l,u,p,d,h,m;switch(e.type){case"Field":return null!==a&&r(a)?void 0===(p=a[e.name])?null:p:null;case"Subexpression":for(c=this.visit(e.children[0],a),m=1;m<e.children.length;m++)if(null===(c=this.visit(e.children[1],c)))return null;return c;case"IndexExpression":return d=this.visit(e.children[0],a),this.visit(e.children[1],d);case"Index":if(!t(a))return null;var f=e.value;return f<0&&(f=a.length+f),void 0===(c=a[f])&&(c=null),c;case"Slice":if(!t(a))return null;var E=e.children.slice(0),v=this.computeSliceParams(a.length,E),A=v[0],O=v[1],T=v[2];if(c=[],T>0)for(m=A;m<O;m+=T)c.push(a[m]);else for(m=A;m>O;m+=T)c.push(a[m]);return c;case"Projection":var N=this.visit(e.children[0],a);if(!t(N))return null;for(h=[],m=0;m<N.length;m++)null!==(s=this.visit(e.children[1],N[m]))&&h.push(s);return h;case"ValueProjection":if(!r(N=this.visit(e.children[0],a)))return null;h=[];var k=function(e){for(var t=Object.keys(e),r=[],n=0;n<t.length;n++)r.push(e[t[n]]);return r}(N);for(m=0;m<k.length;m++)null!==(s=this.visit(e.children[1],k[m]))&&h.push(s);return h;case"FilterProjection":if(!t(N=this.visit(e.children[0],a)))return null;var w=[],x=[];for(m=0;m<N.length;m++)i(o=this.visit(e.children[2],N[m]))||w.push(N[m]);for(var M=0;M<w.length;M++)null!==(s=this.visit(e.children[1],w[M]))&&x.push(s);return x;case"Comparator":switch(l=this.visit(e.children[0],a),u=this.visit(e.children[1],a),e.name){case S:c=n(l,u);break;case D:c=!n(l,u);break;case R:c=l>u;break;case L:c=l>=u;break;case I:c=l<u;break;case C:c=l<=u;break;default:throw new Error("Unknown comparator: "+e.name)}return c;case b:var P=this.visit(e.children[0],a);if(!t(P))return null;var G=[];for(m=0;m<P.length;m++)t(s=P[m])?G.push.apply(G,s):G.push(s);return G;case"Identity":return a;case"MultiSelectList":if(null===a)return null;for(h=[],m=0;m<e.children.length;m++)h.push(this.visit(e.children[m],a));return h;case"MultiSelectHash":if(null===a)return null;var U;for(h={},m=0;m<e.children.length;m++)h[(U=e.children[m]).name]=this.visit(U.value,a);return h;case"OrExpression":return i(o=this.visit(e.children[0],a))&&(o=this.visit(e.children[1],a)),o;case"AndExpression":return!0===i(l=this.visit(e.children[0],a))?l:this.visit(e.children[1],a);case"NotExpression":return i(l=this.visit(e.children[0],a));case"Literal":return e.value;case y:return d=this.visit(e.children[0],a),this.visit(e.children[1],d);case _:return a;case"Function":var F=[];for(m=0;m<e.children.length;m++)F.push(this.visit(e.children[m],a));return this.runtime.callFunction(e.name,F);case"ExpressionReference":var V=e.children[0];return V.jmespathType=g,V;default:throw new Error("Unknown node type: "+e.type)}},computeSliceParams:function(e,t){var r=t[0],n=t[1],i=t[2],a=[null,null,null];if(null===i)i=1;else if(0===i){var o=new Error("Invalid slice, step cannot be 0");throw o.name="RuntimeError",o}var s=i<0;return r=null===r?s?e-1:0:this.capSliceRange(e,r,i),n=null===n?s?-1:e:this.capSliceRange(e,n,i),a[0]=r,a[1]=n,a[2]=i,a},capSliceRange:function(e,t,r){return t<0?(t+=e)<0&&(t=r<0?-1:0):t>=e&&(t=r<0?e-1:e),t}},W.prototype={callFunction:function(e,t){var r=this.functionTable[e];if(void 0===r)throw new Error("Unknown function: "+e+"()");return this._validateArgs(e,t,r._signature),r._func.call(this,t)},_validateArgs:function(e,t,r){var n,i,a,o;if(r[r.length-1].variadic){if(t.length<r.length)throw n=1===r.length?" argument":" arguments",new Error("ArgumentError: "+e+"() takes at least"+r.length+n+" but received "+t.length)}else if(t.length!==r.length)throw n=1===r.length?" argument":" arguments",new Error("ArgumentError: "+e+"() takes "+r.length+n+" but received "+t.length);for(var s=0;s<r.length;s++){o=!1,i=r[s].types,a=this._getTypeName(t[s]);for(var l=0;l<i.length;l++)if(this._typeMatches(a,i[l],t[s])){o=!0;break}if(!o){var u=i.map((function(e){return c[e]})).join(",");throw new Error("TypeError: "+e+"() expected argument "+(s+1)+" to be type "+u+" but received type "+c[a]+" instead.")}}},_typeMatches:function(e,t,r){if(1===t)return!0;if(9!==t&&8!==t&&3!==t)return e===t;if(3===t)return 3===e;if(3===e){var n;8===t?n=o:9===t&&(n=s);for(var i=0;i<r.length;i++)if(!this._typeMatches(this._getTypeName(r[i]),n,r[i]))return!1;return!0}},_getTypeName:function(e){switch(Object.prototype.toString.call(e)){case"[object String]":return s;case"[object Number]":return o;case"[object Array]":return 3;case"[object Boolean]":return 5;case"[object Null]":return 7;case"[object Object]":return e.jmespathType===g?6:4}},_functionStartsWith:function(e){return 0===e[0].lastIndexOf(e[1])},_functionEndsWith:function(e){var t=e[0],r=e[1];return-1!==t.indexOf(r,t.length-r.length)},_functionReverse:function(e){if(this._getTypeName(e[0])===s){for(var t=e[0],r="",n=t.length-1;n>=0;n--)r+=t[n];return r}var i=e[0].slice(0);return i.reverse(),i},_functionAbs:function(e){return Math.abs(e[0])},_functionCeil:function(e){return Math.ceil(e[0])},_functionAvg:function(e){for(var t=0,r=e[0],n=0;n<r.length;n++)t+=r[n];return t/r.length},_functionContains:function(e){return e[0].indexOf(e[1])>=0},_functionFloor:function(e){return Math.floor(e[0])},_functionLength:function(e){return r(e[0])?Object.keys(e[0]).length:e[0].length},_functionMap:function(e){for(var t=[],r=this._interpreter,n=e[0],i=e[1],a=0;a<i.length;a++)t.push(r.visit(n,i[a]));return t},_functionMerge:function(e){for(var t={},r=0;r<e.length;r++){var n=e[r];for(var i in n)t[i]=n[i]}return t},_functionMax:function(e){if(e[0].length>0){if(this._getTypeName(e[0][0])===o)return Math.max.apply(Math,e[0]);for(var t=e[0],r=t[0],n=1;n<t.length;n++)r.localeCompare(t[n])<0&&(r=t[n]);return r}return null},_functionMin:function(e){if(e[0].length>0){if(this._getTypeName(e[0][0])===o)return Math.min.apply(Math,e[0]);for(var t=e[0],r=t[0],n=1;n<t.length;n++)t[n].localeCompare(r)<0&&(r=t[n]);return r}return null},_functionSum:function(e){for(var t=0,r=e[0],n=0;n<r.length;n++)t+=r[n];return t},_functionType:function(e){switch(this._getTypeName(e[0])){case o:return"number";case s:return"string";case 3:return"array";case 4:return"object";case 5:return"boolean";case 6:return"expref";case 7:return"null"}},_functionKeys:function(e){return Object.keys(e[0])},_functionValues:function(e){for(var t=e[0],r=Object.keys(t),n=[],i=0;i<r.length;i++)n.push(t[r[i]]);return n},_functionJoin:function(e){var t=e[0];return e[1].join(t)},_functionToArray:function(e){return 3===this._getTypeName(e[0])?e[0]:[e[0]]},_functionToString:function(e){return this._getTypeName(e[0])===s?e[0]:JSON.stringify(e[0])},_functionToNumber:function(e){var t,r=this._getTypeName(e[0]);return r===o?e[0]:r!==s||(t=+e[0],isNaN(t))?null:t},_functionNotNull:function(e){for(var t=0;t<e.length;t++)if(7!==this._getTypeName(e[t]))return e[t];return null},_functionSort:function(e){var t=e[0].slice(0);return t.sort(),t},_functionSortBy:function(e){var t=e[0].slice(0);if(0===t.length)return t;var r=this._interpreter,n=e[1],i=this._getTypeName(r.visit(n,t[0]));if([o,s].indexOf(i)<0)throw new Error("TypeError");for(var a=this,c=[],l=0;l<t.length;l++)c.push([l,t[l]]);c.sort((function(e,t){var o=r.visit(n,e[1]),s=r.visit(n,t[1]);if(a._getTypeName(o)!==i)throw new Error("TypeError: expected "+i+", received "+a._getTypeName(o));if(a._getTypeName(s)!==i)throw new Error("TypeError: expected "+i+", received "+a._getTypeName(s));return o>s?1:o<s?-1:e[0]-t[0]}));for(var u=0;u<c.length;u++)t[u]=c[u][1];return t},_functionMaxBy:function(e){for(var t,r,n=e[1],i=e[0],a=this.createKeyFunction(n,[o,s]),c=-1/0,l=0;l<i.length;l++)(r=a(i[l]))>c&&(c=r,t=i[l]);return t},_functionMinBy:function(e){for(var t,r,n=e[1],i=e[0],a=this.createKeyFunction(n,[o,s]),c=1/0,l=0;l<i.length;l++)(r=a(i[l]))<c&&(c=r,t=i[l]);return t},createKeyFunction:function(e,t){var r=this,n=this._interpreter;return function(i){var a=n.visit(e,i);if(t.indexOf(r._getTypeName(a))<0){var o="TypeError: expected one of "+t+", received "+r._getTypeName(a);throw new Error(o)}return a}}},e.tokenize=function(e){return(new B).tokenize(e)},e.compile=function(e){return(new j).parse(e)},e.search=function(e,t){var r=new j,n=new W,i=new q(n);n._interpreter=i;var a=r.parse(t);return i.search(a,e)},e.strictDeepEqual=n}(t)},3578:function(e,t,r){"undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==r.g&&r.g,e.exports=function(){"use strict";var e,t="3.7.5",r=t,n="function"==typeof atob,i="function"==typeof btoa,a="function"==typeof Buffer,o="function"==typeof TextDecoder?new TextDecoder:void 0,s="function"==typeof TextEncoder?new TextEncoder:void 0,c=Array.prototype.slice.call("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="),l=(e={},c.forEach((function(t,r){return e[t]=r})),e),u=/^(?:[A-Za-z\d+\/]{4})*?(?:[A-Za-z\d+\/]{2}(?:==)?|[A-Za-z\d+\/]{3}=?)?$/,p=String.fromCharCode.bind(String),d="function"==typeof Uint8Array.from?Uint8Array.from.bind(Uint8Array):function(e){return new Uint8Array(Array.prototype.slice.call(e,0))},h=function(e){return e.replace(/=/g,"").replace(/[+\/]/g,(function(e){return"+"==e?"-":"_"}))},m=function(e){return e.replace(/[^A-Za-z0-9\+\/]/g,"")},f=function(e){for(var t,r,n,i,a="",o=e.length%3,s=0;s<e.length;){if((r=e.charCodeAt(s++))>255||(n=e.charCodeAt(s++))>255||(i=e.charCodeAt(s++))>255)throw new TypeError("invalid character found");a+=c[(t=r<<16|n<<8|i)>>18&63]+c[t>>12&63]+c[t>>6&63]+c[63&t]}return o?a.slice(0,o-3)+"===".substring(o):a},E=i?function(e){return btoa(e)}:a?function(e){return Buffer.from(e,"binary").toString("base64")}:f,v=a?function(e){return Buffer.from(e).toString("base64")}:function(e){for(var t=[],r=0,n=e.length;r<n;r+=4096)t.push(p.apply(null,e.subarray(r,r+4096)));return E(t.join(""))},_=function(e,t){return void 0===t&&(t=!1),t?h(v(e)):v(e)},g=function(e){if(e.length<2)return(t=e.charCodeAt(0))<128?e:t<2048?p(192|t>>>6)+p(128|63&t):p(224|t>>>12&15)+p(128|t>>>6&63)+p(128|63&t);var t=65536+1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320);return p(240|t>>>18&7)+p(128|t>>>12&63)+p(128|t>>>6&63)+p(128|63&t)},y=/[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g,A=function(e){return e.replace(y,g)},O=a?function(e){return Buffer.from(e,"utf8").toString("base64")}:s?function(e){return v(s.encode(e))}:function(e){return E(A(e))},S=function(e,t){return void 0===t&&(t=!1),t?h(O(e)):O(e)},R=function(e){return S(e,!0)},I=/[\xC0-\xDF][\x80-\xBF]|[\xE0-\xEF][\x80-\xBF]{2}|[\xF0-\xF7][\x80-\xBF]{3}/g,L=function(e){switch(e.length){case 4:var t=((7&e.charCodeAt(0))<<18|(63&e.charCodeAt(1))<<12|(63&e.charCodeAt(2))<<6|63&e.charCodeAt(3))-65536;return p(55296+(t>>>10))+p(56320+(1023&t));case 3:return p((15&e.charCodeAt(0))<<12|(63&e.charCodeAt(1))<<6|63&e.charCodeAt(2));default:return p((31&e.charCodeAt(0))<<6|63&e.charCodeAt(1))}},C=function(e){return e.replace(I,L)},D=function(e){if(e=e.replace(/\s+/g,""),!u.test(e))throw new TypeError("malformed base64.");e+="==".slice(2-(3&e.length));for(var t,r,n,i="",a=0;a<e.length;)t=l[e.charAt(a++)]<<18|l[e.charAt(a++)]<<12|(r=l[e.charAt(a++)])<<6|(n=l[e.charAt(a++)]),i+=64===r?p(t>>16&255):64===n?p(t>>16&255,t>>8&255):p(t>>16&255,t>>8&255,255&t);return i},b=n?function(e){return atob(m(e))}:a?function(e){return Buffer.from(e,"base64").toString("binary")}:D,T=a?function(e){return d(Buffer.from(e,"base64"))}:function(e){return d(b(e).split("").map((function(e){return e.charCodeAt(0)})))},N=function(e){return T(w(e))},k=a?function(e){return Buffer.from(e,"base64").toString("utf8")}:o?function(e){return o.decode(T(e))}:function(e){return C(b(e))},w=function(e){return m(e.replace(/[-_]/g,(function(e){return"-"==e?"+":"/"})))},x=function(e){return k(w(e))},M=function(e){return{value:e,enumerable:!1,writable:!0,configurable:!0}},P=function(){var e=function(e,t){return Object.defineProperty(String.prototype,e,M(t))};e("fromBase64",(function(){return x(this)})),e("toBase64",(function(e){return S(this,e)})),e("toBase64URI",(function(){return S(this,!0)})),e("toBase64URL",(function(){return S(this,!0)})),e("toUint8Array",(function(){return N(this)}))},G=function(){var e=function(e,t){return Object.defineProperty(Uint8Array.prototype,e,M(t))};e("toBase64",(function(e){return _(this,e)})),e("toBase64URI",(function(){return _(this,!0)})),e("toBase64URL",(function(){return _(this,!0)}))},U={version:t,VERSION:r,atob:b,atobPolyfill:D,btoa:E,btoaPolyfill:f,fromBase64:x,toBase64:S,encode:S,encodeURI:R,encodeURL:R,utob:A,btou:C,decode:x,isValid:function(e){if("string"!=typeof e)return!1;var t=e.replace(/\s+/g,"").replace(/={0,2}$/,"");return!/[^\s0-9a-zA-Z\+/]/.test(t)||!/[^\s0-9a-zA-Z\-_]/.test(t)},fromUint8Array:_,toUint8Array:N,extendString:P,extendUint8Array:G,extendBuiltins:function(){P(),G()},Base64:{}};return Object.keys(U).forEach((function(e){return U.Base64[e]=U[e]})),U}()},5029:(e,t,r)=>{var n;!function(){"use strict";var t="input is invalid type",i="object"==typeof window,a=i?window:{};a.JS_SHA256_NO_WINDOW&&(i=!1);var o=!i&&"object"==typeof self,s=!a.JS_SHA256_NO_NODE_JS&&"object"==typeof process&&process.versions&&process.versions.node;s?a=r.g:o&&(a=self);var c=!a.JS_SHA256_NO_COMMON_JS&&e.exports,l=r.amdO,u=!a.JS_SHA256_NO_ARRAY_BUFFER&&"undefined"!=typeof ArrayBuffer,p="0123456789abcdef".split(""),d=[-2147483648,8388608,32768,128],h=[24,16,8,0],m=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],f=["hex","array","digest","arrayBuffer"],E=[];!a.JS_SHA256_NO_NODE_JS&&Array.isArray||(Array.isArray=function(e){return"[object Array]"===Object.prototype.toString.call(e)}),!u||!a.JS_SHA256_NO_ARRAY_BUFFER_IS_VIEW&&ArrayBuffer.isView||(ArrayBuffer.isView=function(e){return"object"==typeof e&&e.buffer&&e.buffer.constructor===ArrayBuffer});var v=function(e,t){return function(r){return new O(t,!0).update(r)[e]()}},_=function(e){var t=v("hex",e);s&&(t=g(t,e)),t.create=function(){return new O(e)},t.update=function(e){return t.create().update(e)};for(var r=0;r<f.length;++r){var n=f[r];t[n]=v(n,e)}return t},g=function(e,n){var i,o=r(2040),s=r(1581).Buffer,c=n?"sha224":"sha256";return i=s.from&&!a.JS_SHA256_NO_BUFFER_FROM?s.from:function(e){return new s(e)},function(r){if("string"==typeof r)return o.createHash(c).update(r,"utf8").digest("hex");if(null==r)throw new Error(t);return r.constructor===ArrayBuffer&&(r=new Uint8Array(r)),Array.isArray(r)||ArrayBuffer.isView(r)||r.constructor===s?o.createHash(c).update(i(r)).digest("hex"):e(r)}},y=function(e,t){return function(r,n){return new S(r,t,!0).update(n)[e]()}},A=function(e){var t=y("hex",e);t.create=function(t){return new S(t,e)},t.update=function(e,r){return t.create(e).update(r)};for(var r=0;r<f.length;++r){var n=f[r];t[n]=y(n,e)}return t};function O(e,t){t?(E[0]=E[16]=E[1]=E[2]=E[3]=E[4]=E[5]=E[6]=E[7]=E[8]=E[9]=E[10]=E[11]=E[12]=E[13]=E[14]=E[15]=0,this.blocks=E):this.blocks=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],e?(this.h0=3238371032,this.h1=914150663,this.h2=812702999,this.h3=4144912697,this.h4=4290775857,this.h5=1750603025,this.h6=1694076839,this.h7=3204075428):(this.h0=1779033703,this.h1=3144134277,this.h2=1013904242,this.h3=2773480762,this.h4=1359893119,this.h5=2600822924,this.h6=528734635,this.h7=1541459225),this.block=this.start=this.bytes=this.hBytes=0,this.finalized=this.hashed=!1,this.first=!0,this.is224=e}function S(e,r,n){var i,a=typeof e;if("string"===a){var o,s=[],c=e.length,l=0;for(i=0;i<c;++i)(o=e.charCodeAt(i))<128?s[l++]=o:o<2048?(s[l++]=192|o>>6,s[l++]=128|63&o):o<55296||o>=57344?(s[l++]=224|o>>12,s[l++]=128|o>>6&63,s[l++]=128|63&o):(o=65536+((1023&o)<<10|1023&e.charCodeAt(++i)),s[l++]=240|o>>18,s[l++]=128|o>>12&63,s[l++]=128|o>>6&63,s[l++]=128|63&o);e=s}else{if("object"!==a)throw new Error(t);if(null===e)throw new Error(t);if(u&&e.constructor===ArrayBuffer)e=new Uint8Array(e);else if(!(Array.isArray(e)||u&&ArrayBuffer.isView(e)))throw new Error(t)}e.length>64&&(e=new O(r,!0).update(e).array());var p=[],d=[];for(i=0;i<64;++i){var h=e[i]||0;p[i]=92^h,d[i]=54^h}O.call(this,r,n),this.update(d),this.oKeyPad=p,this.inner=!0,this.sharedMemory=n}O.prototype.update=function(e){if(!this.finalized){var r,n=typeof e;if("string"!==n){if("object"!==n)throw new Error(t);if(null===e)throw new Error(t);if(u&&e.constructor===ArrayBuffer)e=new Uint8Array(e);else if(!(Array.isArray(e)||u&&ArrayBuffer.isView(e)))throw new Error(t);r=!0}for(var i,a,o=0,s=e.length,c=this.blocks;o<s;){if(this.hashed&&(this.hashed=!1,c[0]=this.block,c[16]=c[1]=c[2]=c[3]=c[4]=c[5]=c[6]=c[7]=c[8]=c[9]=c[10]=c[11]=c[12]=c[13]=c[14]=c[15]=0),r)for(a=this.start;o<s&&a<64;++o)c[a>>2]|=e[o]<<h[3&a++];else for(a=this.start;o<s&&a<64;++o)(i=e.charCodeAt(o))<128?c[a>>2]|=i<<h[3&a++]:i<2048?(c[a>>2]|=(192|i>>6)<<h[3&a++],c[a>>2]|=(128|63&i)<<h[3&a++]):i<55296||i>=57344?(c[a>>2]|=(224|i>>12)<<h[3&a++],c[a>>2]|=(128|i>>6&63)<<h[3&a++],c[a>>2]|=(128|63&i)<<h[3&a++]):(i=65536+((1023&i)<<10|1023&e.charCodeAt(++o)),c[a>>2]|=(240|i>>18)<<h[3&a++],c[a>>2]|=(128|i>>12&63)<<h[3&a++],c[a>>2]|=(128|i>>6&63)<<h[3&a++],c[a>>2]|=(128|63&i)<<h[3&a++]);this.lastByteIndex=a,this.bytes+=a-this.start,a>=64?(this.block=c[16],this.start=a-64,this.hash(),this.hashed=!0):this.start=a}return this.bytes>4294967295&&(this.hBytes+=this.bytes/4294967296<<0,this.bytes=this.bytes%4294967296),this}},O.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var e=this.blocks,t=this.lastByteIndex;e[16]=this.block,e[t>>2]|=d[3&t],this.block=e[16],t>=56&&(this.hashed||this.hash(),e[0]=this.block,e[16]=e[1]=e[2]=e[3]=e[4]=e[5]=e[6]=e[7]=e[8]=e[9]=e[10]=e[11]=e[12]=e[13]=e[14]=e[15]=0),e[14]=this.hBytes<<3|this.bytes>>>29,e[15]=this.bytes<<3,this.hash()}},O.prototype.hash=function(){var e,t,r,n,i,a,o,s,c,l=this.h0,u=this.h1,p=this.h2,d=this.h3,h=this.h4,f=this.h5,E=this.h6,v=this.h7,_=this.blocks;for(e=16;e<64;++e)t=((i=_[e-15])>>>7|i<<25)^(i>>>18|i<<14)^i>>>3,r=((i=_[e-2])>>>17|i<<15)^(i>>>19|i<<13)^i>>>10,_[e]=_[e-16]+t+_[e-7]+r<<0;for(c=u&p,e=0;e<64;e+=4)this.first?(this.is224?(a=300032,v=(i=_[0]-1413257819)-150054599<<0,d=i+24177077<<0):(a=704751109,v=(i=_[0]-210244248)-1521486534<<0,d=i+143694565<<0),this.first=!1):(t=(l>>>2|l<<30)^(l>>>13|l<<19)^(l>>>22|l<<10),n=(a=l&u)^l&p^c,v=d+(i=v+(r=(h>>>6|h<<26)^(h>>>11|h<<21)^(h>>>25|h<<7))+(h&f^~h&E)+m[e]+_[e])<<0,d=i+(t+n)<<0),t=(d>>>2|d<<30)^(d>>>13|d<<19)^(d>>>22|d<<10),n=(o=d&l)^d&u^a,E=p+(i=E+(r=(v>>>6|v<<26)^(v>>>11|v<<21)^(v>>>25|v<<7))+(v&h^~v&f)+m[e+1]+_[e+1])<<0,t=((p=i+(t+n)<<0)>>>2|p<<30)^(p>>>13|p<<19)^(p>>>22|p<<10),n=(s=p&d)^p&l^o,f=u+(i=f+(r=(E>>>6|E<<26)^(E>>>11|E<<21)^(E>>>25|E<<7))+(E&v^~E&h)+m[e+2]+_[e+2])<<0,t=((u=i+(t+n)<<0)>>>2|u<<30)^(u>>>13|u<<19)^(u>>>22|u<<10),n=(c=u&p)^u&d^s,h=l+(i=h+(r=(f>>>6|f<<26)^(f>>>11|f<<21)^(f>>>25|f<<7))+(f&E^~f&v)+m[e+3]+_[e+3])<<0,l=i+(t+n)<<0,this.chromeBugWorkAround=!0;this.h0=this.h0+l<<0,this.h1=this.h1+u<<0,this.h2=this.h2+p<<0,this.h3=this.h3+d<<0,this.h4=this.h4+h<<0,this.h5=this.h5+f<<0,this.h6=this.h6+E<<0,this.h7=this.h7+v<<0},O.prototype.hex=function(){this.finalize();var e=this.h0,t=this.h1,r=this.h2,n=this.h3,i=this.h4,a=this.h5,o=this.h6,s=this.h7,c=p[e>>28&15]+p[e>>24&15]+p[e>>20&15]+p[e>>16&15]+p[e>>12&15]+p[e>>8&15]+p[e>>4&15]+p[15&e]+p[t>>28&15]+p[t>>24&15]+p[t>>20&15]+p[t>>16&15]+p[t>>12&15]+p[t>>8&15]+p[t>>4&15]+p[15&t]+p[r>>28&15]+p[r>>24&15]+p[r>>20&15]+p[r>>16&15]+p[r>>12&15]+p[r>>8&15]+p[r>>4&15]+p[15&r]+p[n>>28&15]+p[n>>24&15]+p[n>>20&15]+p[n>>16&15]+p[n>>12&15]+p[n>>8&15]+p[n>>4&15]+p[15&n]+p[i>>28&15]+p[i>>24&15]+p[i>>20&15]+p[i>>16&15]+p[i>>12&15]+p[i>>8&15]+p[i>>4&15]+p[15&i]+p[a>>28&15]+p[a>>24&15]+p[a>>20&15]+p[a>>16&15]+p[a>>12&15]+p[a>>8&15]+p[a>>4&15]+p[15&a]+p[o>>28&15]+p[o>>24&15]+p[o>>20&15]+p[o>>16&15]+p[o>>12&15]+p[o>>8&15]+p[o>>4&15]+p[15&o];return this.is224||(c+=p[s>>28&15]+p[s>>24&15]+p[s>>20&15]+p[s>>16&15]+p[s>>12&15]+p[s>>8&15]+p[s>>4&15]+p[15&s]),c},O.prototype.toString=O.prototype.hex,O.prototype.digest=function(){this.finalize();var e=this.h0,t=this.h1,r=this.h2,n=this.h3,i=this.h4,a=this.h5,o=this.h6,s=this.h7,c=[e>>24&255,e>>16&255,e>>8&255,255&e,t>>24&255,t>>16&255,t>>8&255,255&t,r>>24&255,r>>16&255,r>>8&255,255&r,n>>24&255,n>>16&255,n>>8&255,255&n,i>>24&255,i>>16&255,i>>8&255,255&i,a>>24&255,a>>16&255,a>>8&255,255&a,o>>24&255,o>>16&255,o>>8&255,255&o];return this.is224||c.push(s>>24&255,s>>16&255,s>>8&255,255&s),c},O.prototype.array=O.prototype.digest,O.prototype.arrayBuffer=function(){this.finalize();var e=new ArrayBuffer(this.is224?28:32),t=new DataView(e);return t.setUint32(0,this.h0),t.setUint32(4,this.h1),t.setUint32(8,this.h2),t.setUint32(12,this.h3),t.setUint32(16,this.h4),t.setUint32(20,this.h5),t.setUint32(24,this.h6),this.is224||t.setUint32(28,this.h7),e},S.prototype=new O,S.prototype.finalize=function(){if(O.prototype.finalize.call(this),this.inner){this.inner=!1;var e=this.array();O.call(this,this.is224,this.sharedMemory),this.update(this.oKeyPad),this.update(e),O.prototype.finalize.call(this)}};var R=_();R.sha256=R,R.sha224=_(!0),R.sha256.hmac=A(),R.sha224.hmac=A(!0),c?e.exports=R:(a.sha256=R.sha256,a.sha224=R.sha224,l&&(void 0===(n=function(){return R}.call(R,r,R,e))||(e.exports=n)))}()},9793:(e,t,r)=>{"use strict";r.r(t)},991:(e,t,r)=>{"use strict";const{Deflate:n,deflate:i,deflateRaw:a,gzip:o}=r(8143),{Inflate:s,inflate:c,inflateRaw:l,ungzip:u}=r(5613),p=r(2436);e.exports.Deflate=n,e.exports.deflate=i,e.exports.deflateRaw=a,e.exports.gzip=o,e.exports.Inflate=s,e.exports.inflate=c,e.exports.inflateRaw=l,e.exports.ungzip=u,e.exports.constants=p},8143:(e,t,r)=>{"use strict";const n=r(3152),i=r(7609),a=r(9141),o=r(5710),s=r(8894),c=Object.prototype.toString,{Z_NO_FLUSH:l,Z_SYNC_FLUSH:u,Z_FULL_FLUSH:p,Z_FINISH:d,Z_OK:h,Z_STREAM_END:m,Z_DEFAULT_COMPRESSION:f,Z_DEFAULT_STRATEGY:E,Z_DEFLATED:v}=r(2436);function _(e){this.options=i.assign({level:f,method:v,chunkSize:16384,windowBits:15,memLevel:8,strategy:E},e||{});let t=this.options;t.raw&&t.windowBits>0?t.windowBits=-t.windowBits:t.gzip&&t.windowBits>0&&t.windowBits<16&&(t.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new s,this.strm.avail_out=0;let r=n.deflateInit2(this.strm,t.level,t.method,t.windowBits,t.memLevel,t.strategy);if(r!==h)throw new Error(o[r]);if(t.header&&n.deflateSetHeader(this.strm,t.header),t.dictionary){let e;if(e="string"==typeof t.dictionary?a.string2buf(t.dictionary):"[object ArrayBuffer]"===c.call(t.dictionary)?new Uint8Array(t.dictionary):t.dictionary,r=n.deflateSetDictionary(this.strm,e),r!==h)throw new Error(o[r]);this._dict_set=!0}}function g(e,t){const r=new _(t);if(r.push(e,!0),r.err)throw r.msg||o[r.err];return r.result}_.prototype.push=function(e,t){const r=this.strm,i=this.options.chunkSize;let o,s;if(this.ended)return!1;for(s=t===~~t?t:!0===t?d:l,"string"==typeof e?r.input=a.string2buf(e):"[object ArrayBuffer]"===c.call(e)?r.input=new Uint8Array(e):r.input=e,r.next_in=0,r.avail_in=r.input.length;;)if(0===r.avail_out&&(r.output=new Uint8Array(i),r.next_out=0,r.avail_out=i),(s===u||s===p)&&r.avail_out<=6)this.onData(r.output.subarray(0,r.next_out)),r.avail_out=0;else{if(o=n.deflate(r,s),o===m)return r.next_out>0&&this.onData(r.output.subarray(0,r.next_out)),o=n.deflateEnd(this.strm),this.onEnd(o),this.ended=!0,o===h;if(0!==r.avail_out){if(s>0&&r.next_out>0)this.onData(r.output.subarray(0,r.next_out)),r.avail_out=0;else if(0===r.avail_in)break}else this.onData(r.output)}return!0},_.prototype.onData=function(e){this.chunks.push(e)},_.prototype.onEnd=function(e){e===h&&(this.result=i.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg},e.exports.Deflate=_,e.exports.deflate=g,e.exports.deflateRaw=function(e,t){return(t=t||{}).raw=!0,g(e,t)},e.exports.gzip=function(e,t){return(t=t||{}).gzip=!0,g(e,t)},e.exports.constants=r(2436)},5613:(e,t,r)=>{"use strict";const n=r(1863),i=r(7609),a=r(9141),o=r(5710),s=r(8894),c=r(8235),l=Object.prototype.toString,{Z_NO_FLUSH:u,Z_FINISH:p,Z_OK:d,Z_STREAM_END:h,Z_NEED_DICT:m,Z_STREAM_ERROR:f,Z_DATA_ERROR:E,Z_MEM_ERROR:v}=r(2436);function _(e){this.options=i.assign({chunkSize:65536,windowBits:15,to:""},e||{});const t=this.options;t.raw&&t.windowBits>=0&&t.windowBits<16&&(t.windowBits=-t.windowBits,0===t.windowBits&&(t.windowBits=-15)),!(t.windowBits>=0&&t.windowBits<16)||e&&e.windowBits||(t.windowBits+=32),t.windowBits>15&&t.windowBits<48&&0==(15&t.windowBits)&&(t.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new s,this.strm.avail_out=0;let r=n.inflateInit2(this.strm,t.windowBits);if(r!==d)throw new Error(o[r]);if(this.header=new c,n.inflateGetHeader(this.strm,this.header),t.dictionary&&("string"==typeof t.dictionary?t.dictionary=a.string2buf(t.dictionary):"[object ArrayBuffer]"===l.call(t.dictionary)&&(t.dictionary=new Uint8Array(t.dictionary)),t.raw&&(r=n.inflateSetDictionary(this.strm,t.dictionary),r!==d)))throw new Error(o[r])}function g(e,t){const r=new _(t);if(r.push(e),r.err)throw r.msg||o[r.err];return r.result}_.prototype.push=function(e,t){const r=this.strm,i=this.options.chunkSize,o=this.options.dictionary;let s,c,_;if(this.ended)return!1;for(c=t===~~t?t:!0===t?p:u,"[object ArrayBuffer]"===l.call(e)?r.input=new Uint8Array(e):r.input=e,r.next_in=0,r.avail_in=r.input.length;;){for(0===r.avail_out&&(r.output=new Uint8Array(i),r.next_out=0,r.avail_out=i),s=n.inflate(r,c),s===m&&o&&(s=n.inflateSetDictionary(r,o),s===d?s=n.inflate(r,c):s===E&&(s=m));r.avail_in>0&&s===h&&r.state.wrap>0&&0!==e[r.next_in];)n.inflateReset(r),s=n.inflate(r,c);switch(s){case f:case E:case m:case v:return this.onEnd(s),this.ended=!0,!1}if(_=r.avail_out,r.next_out&&(0===r.avail_out||s===h))if("string"===this.options.to){let e=a.utf8border(r.output,r.next_out),t=r.next_out-e,n=a.buf2string(r.output,e);r.next_out=t,r.avail_out=i-t,t&&r.output.set(r.output.subarray(e,e+t),0),this.onData(n)}else this.onData(r.output.length===r.next_out?r.output:r.output.subarray(0,r.next_out));if(s!==d||0!==_){if(s===h)return s=n.inflateEnd(this.strm),this.onEnd(s),this.ended=!0,!0;if(0===r.avail_in)break}}return!0},_.prototype.onData=function(e){this.chunks.push(e)},_.prototype.onEnd=function(e){e===d&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=i.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg},e.exports.Inflate=_,e.exports.inflate=g,e.exports.inflateRaw=function(e,t){return(t=t||{}).raw=!0,g(e,t)},e.exports.ungzip=g,e.exports.constants=r(2436)},7609:e=>{"use strict";const t=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);e.exports.assign=function(e){const r=Array.prototype.slice.call(arguments,1);for(;r.length;){const n=r.shift();if(n){if("object"!=typeof n)throw new TypeError(n+"must be non-object");for(const r in n)t(n,r)&&(e[r]=n[r])}}return e},e.exports.flattenChunks=e=>{let t=0;for(let r=0,n=e.length;r<n;r++)t+=e[r].length;const r=new Uint8Array(t);for(let t=0,n=0,i=e.length;t<i;t++){let i=e[t];r.set(i,n),n+=i.length}return r}},9141:e=>{"use strict";let t=!0;try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(e){t=!1}const r=new Uint8Array(256);for(let e=0;e<256;e++)r[e]=e>=252?6:e>=248?5:e>=240?4:e>=224?3:e>=192?2:1;r[254]=r[254]=1,e.exports.string2buf=e=>{if("function"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(e);let t,r,n,i,a,o=e.length,s=0;for(i=0;i<o;i++)r=e.charCodeAt(i),55296==(64512&r)&&i+1<o&&(n=e.charCodeAt(i+1),56320==(64512&n)&&(r=65536+(r-55296<<10)+(n-56320),i++)),s+=r<128?1:r<2048?2:r<65536?3:4;for(t=new Uint8Array(s),a=0,i=0;a<s;i++)r=e.charCodeAt(i),55296==(64512&r)&&i+1<o&&(n=e.charCodeAt(i+1),56320==(64512&n)&&(r=65536+(r-55296<<10)+(n-56320),i++)),r<128?t[a++]=r:r<2048?(t[a++]=192|r>>>6,t[a++]=128|63&r):r<65536?(t[a++]=224|r>>>12,t[a++]=128|r>>>6&63,t[a++]=128|63&r):(t[a++]=240|r>>>18,t[a++]=128|r>>>12&63,t[a++]=128|r>>>6&63,t[a++]=128|63&r);return t},e.exports.buf2string=(e,n)=>{const i=n||e.length;if("function"==typeof TextDecoder&&TextDecoder.prototype.decode)return(new TextDecoder).decode(e.subarray(0,n));let a,o;const s=new Array(2*i);for(o=0,a=0;a<i;){let t=e[a++];if(t<128){s[o++]=t;continue}let n=r[t];if(n>4)s[o++]=65533,a+=n-1;else{for(t&=2===n?31:3===n?15:7;n>1&&a<i;)t=t<<6|63&e[a++],n--;n>1?s[o++]=65533:t<65536?s[o++]=t:(t-=65536,s[o++]=55296|t>>10&1023,s[o++]=56320|1023&t)}}return((e,r)=>{if(r<65534&&e.subarray&&t)return String.fromCharCode.apply(null,e.length===r?e:e.subarray(0,r));let n="";for(let t=0;t<r;t++)n+=String.fromCharCode(e[t]);return n})(s,o)},e.exports.utf8border=(e,t)=>{(t=t||e.length)>e.length&&(t=e.length);let n=t-1;for(;n>=0&&128==(192&e[n]);)n--;return n<0||0===n?t:n+r[e[n]]>t?n:t}},5530:e=>{"use strict";e.exports=(e,t,r,n)=>{let i=65535&e|0,a=e>>>16&65535|0,o=0;for(;0!==r;){o=r>2e3?2e3:r,r-=o;do{i=i+t[n++]|0,a=a+i|0}while(--o);i%=65521,a%=65521}return i|a<<16|0}},2436:e=>{"use strict";e.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},1383:e=>{"use strict";const t=new Uint32Array((()=>{let e,t=[];for(var r=0;r<256;r++){e=r;for(var n=0;n<8;n++)e=1&e?3988292384^e>>>1:e>>>1;t[r]=e}return t})());e.exports=(e,r,n,i)=>{const a=t,o=i+n;e^=-1;for(let t=i;t<o;t++)e=e>>>8^a[255&(e^r[t])];return-1^e}},3152:(e,t,r)=>{"use strict";const{_tr_init:n,_tr_stored_block:i,_tr_flush_block:a,_tr_tally:o,_tr_align:s}=r(7322),c=r(5530),l=r(1383),u=r(5710),{Z_NO_FLUSH:p,Z_PARTIAL_FLUSH:d,Z_FULL_FLUSH:h,Z_FINISH:m,Z_BLOCK:f,Z_OK:E,Z_STREAM_END:v,Z_STREAM_ERROR:_,Z_DATA_ERROR:g,Z_BUF_ERROR:y,Z_DEFAULT_COMPRESSION:A,Z_FILTERED:O,Z_HUFFMAN_ONLY:S,Z_RLE:R,Z_FIXED:I,Z_DEFAULT_STRATEGY:L,Z_UNKNOWN:C,Z_DEFLATED:D}=r(2436),b=258,T=262,N=42,k=113,w=666,x=(e,t)=>(e.msg=u[t],t),M=e=>2*e-(e>4?9:0),P=e=>{let t=e.length;for(;--t>=0;)e[t]=0},G=e=>{let t,r,n,i=e.w_size;t=e.hash_size,n=t;do{r=e.head[--n],e.head[n]=r>=i?r-i:0}while(--t);t=i,n=t;do{r=e.prev[--n],e.prev[n]=r>=i?r-i:0}while(--t)};let U=(e,t,r)=>(t<<e.hash_shift^r)&e.hash_mask;const F=e=>{const t=e.state;let r=t.pending;r>e.avail_out&&(r=e.avail_out),0!==r&&(e.output.set(t.pending_buf.subarray(t.pending_out,t.pending_out+r),e.next_out),e.next_out+=r,t.pending_out+=r,e.total_out+=r,e.avail_out-=r,t.pending-=r,0===t.pending&&(t.pending_out=0))},V=(e,t)=>{a(e,e.block_start>=0?e.block_start:-1,e.strstart-e.block_start,t),e.block_start=e.strstart,F(e.strm)},z=(e,t)=>{e.pending_buf[e.pending++]=t},B=(e,t)=>{e.pending_buf[e.pending++]=t>>>8&255,e.pending_buf[e.pending++]=255&t},H=(e,t,r,n)=>{let i=e.avail_in;return i>n&&(i=n),0===i?0:(e.avail_in-=i,t.set(e.input.subarray(e.next_in,e.next_in+i),r),1===e.state.wrap?e.adler=c(e.adler,t,i,r):2===e.state.wrap&&(e.adler=l(e.adler,t,i,r)),e.next_in+=i,e.total_in+=i,i)},j=(e,t)=>{let r,n,i=e.max_chain_length,a=e.strstart,o=e.prev_length,s=e.nice_match;const c=e.strstart>e.w_size-T?e.strstart-(e.w_size-T):0,l=e.window,u=e.w_mask,p=e.prev,d=e.strstart+b;let h=l[a+o-1],m=l[a+o];e.prev_length>=e.good_match&&(i>>=2),s>e.lookahead&&(s=e.lookahead);do{if(r=t,l[r+o]===m&&l[r+o-1]===h&&l[r]===l[a]&&l[++r]===l[a+1]){a+=2,r++;do{}while(l[++a]===l[++r]&&l[++a]===l[++r]&&l[++a]===l[++r]&&l[++a]===l[++r]&&l[++a]===l[++r]&&l[++a]===l[++r]&&l[++a]===l[++r]&&l[++a]===l[++r]&&a<d);if(n=b-(d-a),a=d-b,n>o){if(e.match_start=t,o=n,n>=s)break;h=l[a+o-1],m=l[a+o]}}}while((t=p[t&u])>c&&0!=--i);return o<=e.lookahead?o:e.lookahead},q=e=>{const t=e.w_size;let r,n,i;do{if(n=e.window_size-e.lookahead-e.strstart,e.strstart>=t+(t-T)&&(e.window.set(e.window.subarray(t,t+t-n),0),e.match_start-=t,e.strstart-=t,e.block_start-=t,e.insert>e.strstart&&(e.insert=e.strstart),G(e),n+=t),0===e.strm.avail_in)break;if(r=H(e.strm,e.window,e.strstart+e.lookahead,n),e.lookahead+=r,e.lookahead+e.insert>=3)for(i=e.strstart-e.insert,e.ins_h=e.window[i],e.ins_h=U(e,e.ins_h,e.window[i+1]);e.insert&&(e.ins_h=U(e,e.ins_h,e.window[i+3-1]),e.prev[i&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=i,i++,e.insert--,!(e.lookahead+e.insert<3)););}while(e.lookahead<T&&0!==e.strm.avail_in)},W=(e,t)=>{let r,n,a,o=e.pending_buf_size-5>e.w_size?e.w_size:e.pending_buf_size-5,s=0,c=e.strm.avail_in;do{if(r=65535,a=e.bi_valid+42>>3,e.strm.avail_out<a)break;if(a=e.strm.avail_out-a,n=e.strstart-e.block_start,r>n+e.strm.avail_in&&(r=n+e.strm.avail_in),r>a&&(r=a),r<o&&(0===r&&t!==m||t===p||r!==n+e.strm.avail_in))break;s=t===m&&r===n+e.strm.avail_in?1:0,i(e,0,0,s),e.pending_buf[e.pending-4]=r,e.pending_buf[e.pending-3]=r>>8,e.pending_buf[e.pending-2]=~r,e.pending_buf[e.pending-1]=~r>>8,F(e.strm),n&&(n>r&&(n=r),e.strm.output.set(e.window.subarray(e.block_start,e.block_start+n),e.strm.next_out),e.strm.next_out+=n,e.strm.avail_out-=n,e.strm.total_out+=n,e.block_start+=n,r-=n),r&&(H(e.strm,e.strm.output,e.strm.next_out,r),e.strm.next_out+=r,e.strm.avail_out-=r,e.strm.total_out+=r)}while(0===s);return c-=e.strm.avail_in,c&&(c>=e.w_size?(e.matches=2,e.window.set(e.strm.input.subarray(e.strm.next_in-e.w_size,e.strm.next_in),0),e.strstart=e.w_size,e.insert=e.strstart):(e.window_size-e.strstart<=c&&(e.strstart-=e.w_size,e.window.set(e.window.subarray(e.w_size,e.w_size+e.strstart),0),e.matches<2&&e.matches++,e.insert>e.strstart&&(e.insert=e.strstart)),e.window.set(e.strm.input.subarray(e.strm.next_in-c,e.strm.next_in),e.strstart),e.strstart+=c,e.insert+=c>e.w_size-e.insert?e.w_size-e.insert:c),e.block_start=e.strstart),e.high_water<e.strstart&&(e.high_water=e.strstart),s?4:t!==p&&t!==m&&0===e.strm.avail_in&&e.strstart===e.block_start?2:(a=e.window_size-e.strstart,e.strm.avail_in>a&&e.block_start>=e.w_size&&(e.block_start-=e.w_size,e.strstart-=e.w_size,e.window.set(e.window.subarray(e.w_size,e.w_size+e.strstart),0),e.matches<2&&e.matches++,a+=e.w_size,e.insert>e.strstart&&(e.insert=e.strstart)),a>e.strm.avail_in&&(a=e.strm.avail_in),a&&(H(e.strm,e.window,e.strstart,a),e.strstart+=a,e.insert+=a>e.w_size-e.insert?e.w_size-e.insert:a),e.high_water<e.strstart&&(e.high_water=e.strstart),a=e.bi_valid+42>>3,a=e.pending_buf_size-a>65535?65535:e.pending_buf_size-a,o=a>e.w_size?e.w_size:a,n=e.strstart-e.block_start,(n>=o||(n||t===m)&&t!==p&&0===e.strm.avail_in&&n<=a)&&(r=n>a?a:n,s=t===m&&0===e.strm.avail_in&&r===n?1:0,i(e,e.block_start,r,s),e.block_start+=r,F(e.strm)),s?3:1)},K=(e,t)=>{let r,n;for(;;){if(e.lookahead<T){if(q(e),e.lookahead<T&&t===p)return 1;if(0===e.lookahead)break}if(r=0,e.lookahead>=3&&(e.ins_h=U(e,e.ins_h,e.window[e.strstart+3-1]),r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),0!==r&&e.strstart-r<=e.w_size-T&&(e.match_length=j(e,r)),e.match_length>=3)if(n=o(e,e.strstart-e.match_start,e.match_length-3),e.lookahead-=e.match_length,e.match_length<=e.max_lazy_match&&e.lookahead>=3){e.match_length--;do{e.strstart++,e.ins_h=U(e,e.ins_h,e.window[e.strstart+3-1]),r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart}while(0!=--e.match_length);e.strstart++}else e.strstart+=e.match_length,e.match_length=0,e.ins_h=e.window[e.strstart],e.ins_h=U(e,e.ins_h,e.window[e.strstart+1]);else n=o(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++;if(n&&(V(e,!1),0===e.strm.avail_out))return 1}return e.insert=e.strstart<2?e.strstart:2,t===m?(V(e,!0),0===e.strm.avail_out?3:4):e.sym_next&&(V(e,!1),0===e.strm.avail_out)?1:2},Y=(e,t)=>{let r,n,i;for(;;){if(e.lookahead<T){if(q(e),e.lookahead<T&&t===p)return 1;if(0===e.lookahead)break}if(r=0,e.lookahead>=3&&(e.ins_h=U(e,e.ins_h,e.window[e.strstart+3-1]),r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),e.prev_length=e.match_length,e.prev_match=e.match_start,e.match_length=2,0!==r&&e.prev_length<e.max_lazy_match&&e.strstart-r<=e.w_size-T&&(e.match_length=j(e,r),e.match_length<=5&&(e.strategy===O||3===e.match_length&&e.strstart-e.match_start>4096)&&(e.match_length=2)),e.prev_length>=3&&e.match_length<=e.prev_length){i=e.strstart+e.lookahead-3,n=o(e,e.strstart-1-e.prev_match,e.prev_length-3),e.lookahead-=e.prev_length-1,e.prev_length-=2;do{++e.strstart<=i&&(e.ins_h=U(e,e.ins_h,e.window[e.strstart+3-1]),r=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart)}while(0!=--e.prev_length);if(e.match_available=0,e.match_length=2,e.strstart++,n&&(V(e,!1),0===e.strm.avail_out))return 1}else if(e.match_available){if(n=o(e,0,e.window[e.strstart-1]),n&&V(e,!1),e.strstart++,e.lookahead--,0===e.strm.avail_out)return 1}else e.match_available=1,e.strstart++,e.lookahead--}return e.match_available&&(n=o(e,0,e.window[e.strstart-1]),e.match_available=0),e.insert=e.strstart<2?e.strstart:2,t===m?(V(e,!0),0===e.strm.avail_out?3:4):e.sym_next&&(V(e,!1),0===e.strm.avail_out)?1:2};function Z(e,t,r,n,i){this.good_length=e,this.max_lazy=t,this.nice_length=r,this.max_chain=n,this.func=i}const J=[new Z(0,0,0,0,W),new Z(4,4,8,4,K),new Z(4,5,16,8,K),new Z(4,6,32,32,K),new Z(4,4,16,16,Y),new Z(8,16,32,32,Y),new Z(8,16,128,128,Y),new Z(8,32,128,256,Y),new Z(32,128,258,1024,Y),new Z(32,258,258,4096,Y)];function X(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=D,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Uint16Array(1146),this.dyn_dtree=new Uint16Array(122),this.bl_tree=new Uint16Array(78),P(this.dyn_ltree),P(this.dyn_dtree),P(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Uint16Array(16),this.heap=new Uint16Array(573),P(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Uint16Array(573),P(this.depth),this.sym_buf=0,this.lit_bufsize=0,this.sym_next=0,this.sym_end=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}const Q=e=>{if(!e)return 1;const t=e.state;return!t||t.strm!==e||t.status!==N&&57!==t.status&&69!==t.status&&73!==t.status&&91!==t.status&&103!==t.status&&t.status!==k&&t.status!==w?1:0},$=e=>{if(Q(e))return x(e,_);e.total_in=e.total_out=0,e.data_type=C;const t=e.state;return t.pending=0,t.pending_out=0,t.wrap<0&&(t.wrap=-t.wrap),t.status=2===t.wrap?57:t.wrap?N:k,e.adler=2===t.wrap?0:1,t.last_flush=-2,n(t),E},ee=e=>{const t=$(e);var r;return t===E&&((r=e.state).window_size=2*r.w_size,P(r.head),r.max_lazy_match=J[r.level].max_lazy,r.good_match=J[r.level].good_length,r.nice_match=J[r.level].nice_length,r.max_chain_length=J[r.level].max_chain,r.strstart=0,r.block_start=0,r.lookahead=0,r.insert=0,r.match_length=r.prev_length=2,r.match_available=0,r.ins_h=0),t},te=(e,t,r,n,i,a)=>{if(!e)return _;let o=1;if(t===A&&(t=6),n<0?(o=0,n=-n):n>15&&(o=2,n-=16),i<1||i>9||r!==D||n<8||n>15||t<0||t>9||a<0||a>I||8===n&&1!==o)return x(e,_);8===n&&(n=9);const s=new X;return e.state=s,s.strm=e,s.status=N,s.wrap=o,s.gzhead=null,s.w_bits=n,s.w_size=1<<s.w_bits,s.w_mask=s.w_size-1,s.hash_bits=i+7,s.hash_size=1<<s.hash_bits,s.hash_mask=s.hash_size-1,s.hash_shift=~~((s.hash_bits+3-1)/3),s.window=new Uint8Array(2*s.w_size),s.head=new Uint16Array(s.hash_size),s.prev=new Uint16Array(s.w_size),s.lit_bufsize=1<<i+6,s.pending_buf_size=4*s.lit_bufsize,s.pending_buf=new Uint8Array(s.pending_buf_size),s.sym_buf=s.lit_bufsize,s.sym_end=3*(s.lit_bufsize-1),s.level=t,s.strategy=a,s.method=r,ee(e)};e.exports.deflateInit=(e,t)=>te(e,t,D,15,8,L),e.exports.deflateInit2=te,e.exports.deflateReset=ee,e.exports.deflateResetKeep=$,e.exports.deflateSetHeader=(e,t)=>Q(e)||2!==e.state.wrap?_:(e.state.gzhead=t,E),e.exports.deflate=(e,t)=>{if(Q(e)||t>f||t<0)return e?x(e,_):_;const r=e.state;if(!e.output||0!==e.avail_in&&!e.input||r.status===w&&t!==m)return x(e,0===e.avail_out?y:_);const n=r.last_flush;if(r.last_flush=t,0!==r.pending){if(F(e),0===e.avail_out)return r.last_flush=-1,E}else if(0===e.avail_in&&M(t)<=M(n)&&t!==m)return x(e,y);if(r.status===w&&0!==e.avail_in)return x(e,y);if(r.status===N&&0===r.wrap&&(r.status=k),r.status===N){let t=D+(r.w_bits-8<<4)<<8,n=-1;if(n=r.strategy>=S||r.level<2?0:r.level<6?1:6===r.level?2:3,t|=n<<6,0!==r.strstart&&(t|=32),t+=31-t%31,B(r,t),0!==r.strstart&&(B(r,e.adler>>>16),B(r,65535&e.adler)),e.adler=1,r.status=k,F(e),0!==r.pending)return r.last_flush=-1,E}if(57===r.status)if(e.adler=0,z(r,31),z(r,139),z(r,8),r.gzhead)z(r,(r.gzhead.text?1:0)+(r.gzhead.hcrc?2:0)+(r.gzhead.extra?4:0)+(r.gzhead.name?8:0)+(r.gzhead.comment?16:0)),z(r,255&r.gzhead.time),z(r,r.gzhead.time>>8&255),z(r,r.gzhead.time>>16&255),z(r,r.gzhead.time>>24&255),z(r,9===r.level?2:r.strategy>=S||r.level<2?4:0),z(r,255&r.gzhead.os),r.gzhead.extra&&r.gzhead.extra.length&&(z(r,255&r.gzhead.extra.length),z(r,r.gzhead.extra.length>>8&255)),r.gzhead.hcrc&&(e.adler=l(e.adler,r.pending_buf,r.pending,0)),r.gzindex=0,r.status=69;else if(z(r,0),z(r,0),z(r,0),z(r,0),z(r,0),z(r,9===r.level?2:r.strategy>=S||r.level<2?4:0),z(r,3),r.status=k,F(e),0!==r.pending)return r.last_flush=-1,E;if(69===r.status){if(r.gzhead.extra){let t=r.pending,n=(65535&r.gzhead.extra.length)-r.gzindex;for(;r.pending+n>r.pending_buf_size;){let i=r.pending_buf_size-r.pending;if(r.pending_buf.set(r.gzhead.extra.subarray(r.gzindex,r.gzindex+i),r.pending),r.pending=r.pending_buf_size,r.gzhead.hcrc&&r.pending>t&&(e.adler=l(e.adler,r.pending_buf,r.pending-t,t)),r.gzindex+=i,F(e),0!==r.pending)return r.last_flush=-1,E;t=0,n-=i}let i=new Uint8Array(r.gzhead.extra);r.pending_buf.set(i.subarray(r.gzindex,r.gzindex+n),r.pending),r.pending+=n,r.gzhead.hcrc&&r.pending>t&&(e.adler=l(e.adler,r.pending_buf,r.pending-t,t)),r.gzindex=0}r.status=73}if(73===r.status){if(r.gzhead.name){let t,n=r.pending;do{if(r.pending===r.pending_buf_size){if(r.gzhead.hcrc&&r.pending>n&&(e.adler=l(e.adler,r.pending_buf,r.pending-n,n)),F(e),0!==r.pending)return r.last_flush=-1,E;n=0}t=r.gzindex<r.gzhead.name.length?255&r.gzhead.name.charCodeAt(r.gzindex++):0,z(r,t)}while(0!==t);r.gzhead.hcrc&&r.pending>n&&(e.adler=l(e.adler,r.pending_buf,r.pending-n,n)),r.gzindex=0}r.status=91}if(91===r.status){if(r.gzhead.comment){let t,n=r.pending;do{if(r.pending===r.pending_buf_size){if(r.gzhead.hcrc&&r.pending>n&&(e.adler=l(e.adler,r.pending_buf,r.pending-n,n)),F(e),0!==r.pending)return r.last_flush=-1,E;n=0}t=r.gzindex<r.gzhead.comment.length?255&r.gzhead.comment.charCodeAt(r.gzindex++):0,z(r,t)}while(0!==t);r.gzhead.hcrc&&r.pending>n&&(e.adler=l(e.adler,r.pending_buf,r.pending-n,n))}r.status=103}if(103===r.status){if(r.gzhead.hcrc){if(r.pending+2>r.pending_buf_size&&(F(e),0!==r.pending))return r.last_flush=-1,E;z(r,255&e.adler),z(r,e.adler>>8&255),e.adler=0}if(r.status=k,F(e),0!==r.pending)return r.last_flush=-1,E}if(0!==e.avail_in||0!==r.lookahead||t!==p&&r.status!==w){let n=0===r.level?W(r,t):r.strategy===S?((e,t)=>{let r;for(;;){if(0===e.lookahead&&(q(e),0===e.lookahead)){if(t===p)return 1;break}if(e.match_length=0,r=o(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++,r&&(V(e,!1),0===e.strm.avail_out))return 1}return e.insert=0,t===m?(V(e,!0),0===e.strm.avail_out?3:4):e.sym_next&&(V(e,!1),0===e.strm.avail_out)?1:2})(r,t):r.strategy===R?((e,t)=>{let r,n,i,a;const s=e.window;for(;;){if(e.lookahead<=b){if(q(e),e.lookahead<=b&&t===p)return 1;if(0===e.lookahead)break}if(e.match_length=0,e.lookahead>=3&&e.strstart>0&&(i=e.strstart-1,n=s[i],n===s[++i]&&n===s[++i]&&n===s[++i])){a=e.strstart+b;do{}while(n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&i<a);e.match_length=b-(a-i),e.match_length>e.lookahead&&(e.match_length=e.lookahead)}if(e.match_length>=3?(r=o(e,1,e.match_length-3),e.lookahead-=e.match_length,e.strstart+=e.match_length,e.match_length=0):(r=o(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++),r&&(V(e,!1),0===e.strm.avail_out))return 1}return e.insert=0,t===m?(V(e,!0),0===e.strm.avail_out?3:4):e.sym_next&&(V(e,!1),0===e.strm.avail_out)?1:2})(r,t):J[r.level].func(r,t);if(3!==n&&4!==n||(r.status=w),1===n||3===n)return 0===e.avail_out&&(r.last_flush=-1),E;if(2===n&&(t===d?s(r):t!==f&&(i(r,0,0,!1),t===h&&(P(r.head),0===r.lookahead&&(r.strstart=0,r.block_start=0,r.insert=0))),F(e),0===e.avail_out))return r.last_flush=-1,E}return t!==m?E:r.wrap<=0?v:(2===r.wrap?(z(r,255&e.adler),z(r,e.adler>>8&255),z(r,e.adler>>16&255),z(r,e.adler>>24&255),z(r,255&e.total_in),z(r,e.total_in>>8&255),z(r,e.total_in>>16&255),z(r,e.total_in>>24&255)):(B(r,e.adler>>>16),B(r,65535&e.adler)),F(e),r.wrap>0&&(r.wrap=-r.wrap),0!==r.pending?E:v)},e.exports.deflateEnd=e=>{if(Q(e))return _;const t=e.state.status;return e.state=null,t===k?x(e,g):E},e.exports.deflateSetDictionary=(e,t)=>{let r=t.length;if(Q(e))return _;const n=e.state,i=n.wrap;if(2===i||1===i&&n.status!==N||n.lookahead)return _;if(1===i&&(e.adler=c(e.adler,t,r,0)),n.wrap=0,r>=n.w_size){0===i&&(P(n.head),n.strstart=0,n.block_start=0,n.insert=0);let e=new Uint8Array(n.w_size);e.set(t.subarray(r-n.w_size,r),0),t=e,r=n.w_size}const a=e.avail_in,o=e.next_in,s=e.input;for(e.avail_in=r,e.next_in=0,e.input=t,q(n);n.lookahead>=3;){let e=n.strstart,t=n.lookahead-2;do{n.ins_h=U(n,n.ins_h,n.window[e+3-1]),n.prev[e&n.w_mask]=n.head[n.ins_h],n.head[n.ins_h]=e,e++}while(--t);n.strstart=e,n.lookahead=2,q(n)}return n.strstart+=n.lookahead,n.block_start=n.strstart,n.insert=n.lookahead,n.lookahead=0,n.match_length=n.prev_length=2,n.match_available=0,e.next_in=o,e.input=s,e.avail_in=a,n.wrap=i,E},e.exports.deflateInfo="pako deflate (from Nodeca project)"},8235:e=>{"use strict";e.exports=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}},8121:e=>{"use strict";const t=16209;e.exports=function(e,r){let n,i,a,o,s,c,l,u,p,d,h,m,f,E,v,_,g,y,A,O,S,R,I,L;const C=e.state;n=e.next_in,I=e.input,i=n+(e.avail_in-5),a=e.next_out,L=e.output,o=a-(r-e.avail_out),s=a+(e.avail_out-257),c=C.dmax,l=C.wsize,u=C.whave,p=C.wnext,d=C.window,h=C.hold,m=C.bits,f=C.lencode,E=C.distcode,v=(1<<C.lenbits)-1,_=(1<<C.distbits)-1;e:do{m<15&&(h+=I[n++]<<m,m+=8,h+=I[n++]<<m,m+=8),g=f[h&v];t:for(;;){if(y=g>>>24,h>>>=y,m-=y,y=g>>>16&255,0===y)L[a++]=65535&g;else{if(!(16&y)){if(0==(64&y)){g=f[(65535&g)+(h&(1<<y)-1)];continue t}if(32&y){C.mode=16191;break e}e.msg="invalid literal/length code",C.mode=t;break e}A=65535&g,y&=15,y&&(m<y&&(h+=I[n++]<<m,m+=8),A+=h&(1<<y)-1,h>>>=y,m-=y),m<15&&(h+=I[n++]<<m,m+=8,h+=I[n++]<<m,m+=8),g=E[h&_];r:for(;;){if(y=g>>>24,h>>>=y,m-=y,y=g>>>16&255,!(16&y)){if(0==(64&y)){g=E[(65535&g)+(h&(1<<y)-1)];continue r}e.msg="invalid distance code",C.mode=t;break e}if(O=65535&g,y&=15,m<y&&(h+=I[n++]<<m,m+=8,m<y&&(h+=I[n++]<<m,m+=8)),O+=h&(1<<y)-1,O>c){e.msg="invalid distance too far back",C.mode=t;break e}if(h>>>=y,m-=y,y=a-o,O>y){if(y=O-y,y>u&&C.sane){e.msg="invalid distance too far back",C.mode=t;break e}if(S=0,R=d,0===p){if(S+=l-y,y<A){A-=y;do{L[a++]=d[S++]}while(--y);S=a-O,R=L}}else if(p<y){if(S+=l+p-y,y-=p,y<A){A-=y;do{L[a++]=d[S++]}while(--y);if(S=0,p<A){y=p,A-=y;do{L[a++]=d[S++]}while(--y);S=a-O,R=L}}}else if(S+=p-y,y<A){A-=y;do{L[a++]=d[S++]}while(--y);S=a-O,R=L}for(;A>2;)L[a++]=R[S++],L[a++]=R[S++],L[a++]=R[S++],A-=3;A&&(L[a++]=R[S++],A>1&&(L[a++]=R[S++]))}else{S=a-O;do{L[a++]=L[S++],L[a++]=L[S++],L[a++]=L[S++],A-=3}while(A>2);A&&(L[a++]=L[S++],A>1&&(L[a++]=L[S++]))}break}}break}}while(n<i&&a<s);A=m>>3,n-=A,m-=A<<3,h&=(1<<m)-1,e.next_in=n,e.next_out=a,e.avail_in=n<i?i-n+5:5-(n-i),e.avail_out=a<s?s-a+257:257-(a-s),C.hold=h,C.bits=m}},1863:(e,t,r)=>{"use strict";const n=r(5530),i=r(1383),a=r(8121),o=r(7371),{Z_FINISH:s,Z_BLOCK:c,Z_TREES:l,Z_OK:u,Z_STREAM_END:p,Z_NEED_DICT:d,Z_STREAM_ERROR:h,Z_DATA_ERROR:m,Z_MEM_ERROR:f,Z_BUF_ERROR:E,Z_DEFLATED:v}=r(2436),_=16180,g=16190,y=16191,A=16192,O=16194,S=16199,R=16200,I=16206,L=16209,C=16210,D=e=>(e>>>24&255)+(e>>>8&65280)+((65280&e)<<8)+((255&e)<<24);function b(){this.strm=null,this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}const T=e=>{if(!e)return 1;const t=e.state;return!t||t.strm!==e||t.mode<_||t.mode>16211?1:0},N=e=>{if(T(e))return h;const t=e.state;return e.total_in=e.total_out=t.total=0,e.msg="",t.wrap&&(e.adler=1&t.wrap),t.mode=_,t.last=0,t.havedict=0,t.flags=-1,t.dmax=32768,t.head=null,t.hold=0,t.bits=0,t.lencode=t.lendyn=new Int32Array(852),t.distcode=t.distdyn=new Int32Array(592),t.sane=1,t.back=-1,u},k=e=>{if(T(e))return h;const t=e.state;return t.wsize=0,t.whave=0,t.wnext=0,N(e)},w=(e,t)=>{let r;if(T(e))return h;const n=e.state;return t<0?(r=0,t=-t):(r=5+(t>>4),t<48&&(t&=15)),t&&(t<8||t>15)?h:(null!==n.window&&n.wbits!==t&&(n.window=null),n.wrap=r,n.wbits=t,k(e))},x=(e,t)=>{if(!e)return h;const r=new b;e.state=r,r.strm=e,r.window=null,r.mode=_;const n=w(e,t);return n!==u&&(e.state=null),n};let M,P,G=!0;const U=e=>{if(G){M=new Int32Array(512),P=new Int32Array(32);let t=0;for(;t<144;)e.lens[t++]=8;for(;t<256;)e.lens[t++]=9;for(;t<280;)e.lens[t++]=7;for(;t<288;)e.lens[t++]=8;for(o(1,e.lens,0,288,M,0,e.work,{bits:9}),t=0;t<32;)e.lens[t++]=5;o(2,e.lens,0,32,P,0,e.work,{bits:5}),G=!1}e.lencode=M,e.lenbits=9,e.distcode=P,e.distbits=5},F=(e,t,r,n)=>{let i;const a=e.state;return null===a.window&&(a.wsize=1<<a.wbits,a.wnext=0,a.whave=0,a.window=new Uint8Array(a.wsize)),n>=a.wsize?(a.window.set(t.subarray(r-a.wsize,r),0),a.wnext=0,a.whave=a.wsize):(i=a.wsize-a.wnext,i>n&&(i=n),a.window.set(t.subarray(r-n,r-n+i),a.wnext),(n-=i)?(a.window.set(t.subarray(r-n,r),0),a.wnext=n,a.whave=a.wsize):(a.wnext+=i,a.wnext===a.wsize&&(a.wnext=0),a.whave<a.wsize&&(a.whave+=i))),0};e.exports.inflateReset=k,e.exports.inflateReset2=w,e.exports.inflateResetKeep=N,e.exports.inflateInit=e=>x(e,15),e.exports.inflateInit2=x,e.exports.inflate=(e,t)=>{let r,b,N,k,w,x,M,P,G,V,z,B,H,j,q,W,K,Y,Z,J,X,Q,$=0;const ee=new Uint8Array(4);let te,re;const ne=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);if(T(e)||!e.output||!e.input&&0!==e.avail_in)return h;r=e.state,r.mode===y&&(r.mode=A),w=e.next_out,N=e.output,M=e.avail_out,k=e.next_in,b=e.input,x=e.avail_in,P=r.hold,G=r.bits,V=x,z=M,Q=u;e:for(;;)switch(r.mode){case _:if(0===r.wrap){r.mode=A;break}for(;G<16;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}if(2&r.wrap&&35615===P){0===r.wbits&&(r.wbits=15),r.check=0,ee[0]=255&P,ee[1]=P>>>8&255,r.check=i(r.check,ee,2,0),P=0,G=0,r.mode=16181;break}if(r.head&&(r.head.done=!1),!(1&r.wrap)||(((255&P)<<8)+(P>>8))%31){e.msg="incorrect header check",r.mode=L;break}if((15&P)!==v){e.msg="unknown compression method",r.mode=L;break}if(P>>>=4,G-=4,X=8+(15&P),0===r.wbits&&(r.wbits=X),X>15||X>r.wbits){e.msg="invalid window size",r.mode=L;break}r.dmax=1<<r.wbits,r.flags=0,e.adler=r.check=1,r.mode=512&P?16189:y,P=0,G=0;break;case 16181:for(;G<16;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}if(r.flags=P,(255&r.flags)!==v){e.msg="unknown compression method",r.mode=L;break}if(57344&r.flags){e.msg="unknown header flags set",r.mode=L;break}r.head&&(r.head.text=P>>8&1),512&r.flags&&4&r.wrap&&(ee[0]=255&P,ee[1]=P>>>8&255,r.check=i(r.check,ee,2,0)),P=0,G=0,r.mode=16182;case 16182:for(;G<32;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}r.head&&(r.head.time=P),512&r.flags&&4&r.wrap&&(ee[0]=255&P,ee[1]=P>>>8&255,ee[2]=P>>>16&255,ee[3]=P>>>24&255,r.check=i(r.check,ee,4,0)),P=0,G=0,r.mode=16183;case 16183:for(;G<16;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}r.head&&(r.head.xflags=255&P,r.head.os=P>>8),512&r.flags&&4&r.wrap&&(ee[0]=255&P,ee[1]=P>>>8&255,r.check=i(r.check,ee,2,0)),P=0,G=0,r.mode=16184;case 16184:if(1024&r.flags){for(;G<16;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}r.length=P,r.head&&(r.head.extra_len=P),512&r.flags&&4&r.wrap&&(ee[0]=255&P,ee[1]=P>>>8&255,r.check=i(r.check,ee,2,0)),P=0,G=0}else r.head&&(r.head.extra=null);r.mode=16185;case 16185:if(1024&r.flags&&(B=r.length,B>x&&(B=x),B&&(r.head&&(X=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Uint8Array(r.head.extra_len)),r.head.extra.set(b.subarray(k,k+B),X)),512&r.flags&&4&r.wrap&&(r.check=i(r.check,b,B,k)),x-=B,k+=B,r.length-=B),r.length))break e;r.length=0,r.mode=16186;case 16186:if(2048&r.flags){if(0===x)break e;B=0;do{X=b[k+B++],r.head&&X&&r.length<65536&&(r.head.name+=String.fromCharCode(X))}while(X&&B<x);if(512&r.flags&&4&r.wrap&&(r.check=i(r.check,b,B,k)),x-=B,k+=B,X)break e}else r.head&&(r.head.name=null);r.length=0,r.mode=16187;case 16187:if(4096&r.flags){if(0===x)break e;B=0;do{X=b[k+B++],r.head&&X&&r.length<65536&&(r.head.comment+=String.fromCharCode(X))}while(X&&B<x);if(512&r.flags&&4&r.wrap&&(r.check=i(r.check,b,B,k)),x-=B,k+=B,X)break e}else r.head&&(r.head.comment=null);r.mode=16188;case 16188:if(512&r.flags){for(;G<16;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}if(4&r.wrap&&P!==(65535&r.check)){e.msg="header crc mismatch",r.mode=L;break}P=0,G=0}r.head&&(r.head.hcrc=r.flags>>9&1,r.head.done=!0),e.adler=r.check=0,r.mode=y;break;case 16189:for(;G<32;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}e.adler=r.check=D(P),P=0,G=0,r.mode=g;case g:if(0===r.havedict)return e.next_out=w,e.avail_out=M,e.next_in=k,e.avail_in=x,r.hold=P,r.bits=G,d;e.adler=r.check=1,r.mode=y;case y:if(t===c||t===l)break e;case A:if(r.last){P>>>=7&G,G-=7&G,r.mode=I;break}for(;G<3;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}switch(r.last=1&P,P>>>=1,G-=1,3&P){case 0:r.mode=16193;break;case 1:if(U(r),r.mode=S,t===l){P>>>=2,G-=2;break e}break;case 2:r.mode=16196;break;case 3:e.msg="invalid block type",r.mode=L}P>>>=2,G-=2;break;case 16193:for(P>>>=7&G,G-=7&G;G<32;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}if((65535&P)!=(P>>>16^65535)){e.msg="invalid stored block lengths",r.mode=L;break}if(r.length=65535&P,P=0,G=0,r.mode=O,t===l)break e;case O:r.mode=16195;case 16195:if(B=r.length,B){if(B>x&&(B=x),B>M&&(B=M),0===B)break e;N.set(b.subarray(k,k+B),w),x-=B,k+=B,M-=B,w+=B,r.length-=B;break}r.mode=y;break;case 16196:for(;G<14;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}if(r.nlen=257+(31&P),P>>>=5,G-=5,r.ndist=1+(31&P),P>>>=5,G-=5,r.ncode=4+(15&P),P>>>=4,G-=4,r.nlen>286||r.ndist>30){e.msg="too many length or distance symbols",r.mode=L;break}r.have=0,r.mode=16197;case 16197:for(;r.have<r.ncode;){for(;G<3;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}r.lens[ne[r.have++]]=7&P,P>>>=3,G-=3}for(;r.have<19;)r.lens[ne[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,te={bits:r.lenbits},Q=o(0,r.lens,0,19,r.lencode,0,r.work,te),r.lenbits=te.bits,Q){e.msg="invalid code lengths set",r.mode=L;break}r.have=0,r.mode=16198;case 16198:for(;r.have<r.nlen+r.ndist;){for(;$=r.lencode[P&(1<<r.lenbits)-1],q=$>>>24,W=$>>>16&255,K=65535&$,!(q<=G);){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}if(K<16)P>>>=q,G-=q,r.lens[r.have++]=K;else{if(16===K){for(re=q+2;G<re;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}if(P>>>=q,G-=q,0===r.have){e.msg="invalid bit length repeat",r.mode=L;break}X=r.lens[r.have-1],B=3+(3&P),P>>>=2,G-=2}else if(17===K){for(re=q+3;G<re;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}P>>>=q,G-=q,X=0,B=3+(7&P),P>>>=3,G-=3}else{for(re=q+7;G<re;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}P>>>=q,G-=q,X=0,B=11+(127&P),P>>>=7,G-=7}if(r.have+B>r.nlen+r.ndist){e.msg="invalid bit length repeat",r.mode=L;break}for(;B--;)r.lens[r.have++]=X}}if(r.mode===L)break;if(0===r.lens[256]){e.msg="invalid code -- missing end-of-block",r.mode=L;break}if(r.lenbits=9,te={bits:r.lenbits},Q=o(1,r.lens,0,r.nlen,r.lencode,0,r.work,te),r.lenbits=te.bits,Q){e.msg="invalid literal/lengths set",r.mode=L;break}if(r.distbits=6,r.distcode=r.distdyn,te={bits:r.distbits},Q=o(2,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,te),r.distbits=te.bits,Q){e.msg="invalid distances set",r.mode=L;break}if(r.mode=S,t===l)break e;case S:r.mode=R;case R:if(x>=6&&M>=258){e.next_out=w,e.avail_out=M,e.next_in=k,e.avail_in=x,r.hold=P,r.bits=G,a(e,z),w=e.next_out,N=e.output,M=e.avail_out,k=e.next_in,b=e.input,x=e.avail_in,P=r.hold,G=r.bits,r.mode===y&&(r.back=-1);break}for(r.back=0;$=r.lencode[P&(1<<r.lenbits)-1],q=$>>>24,W=$>>>16&255,K=65535&$,!(q<=G);){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}if(W&&0==(240&W)){for(Y=q,Z=W,J=K;$=r.lencode[J+((P&(1<<Y+Z)-1)>>Y)],q=$>>>24,W=$>>>16&255,K=65535&$,!(Y+q<=G);){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}P>>>=Y,G-=Y,r.back+=Y}if(P>>>=q,G-=q,r.back+=q,r.length=K,0===W){r.mode=16205;break}if(32&W){r.back=-1,r.mode=y;break}if(64&W){e.msg="invalid literal/length code",r.mode=L;break}r.extra=15&W,r.mode=16201;case 16201:if(r.extra){for(re=r.extra;G<re;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}r.length+=P&(1<<r.extra)-1,P>>>=r.extra,G-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=16202;case 16202:for(;$=r.distcode[P&(1<<r.distbits)-1],q=$>>>24,W=$>>>16&255,K=65535&$,!(q<=G);){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}if(0==(240&W)){for(Y=q,Z=W,J=K;$=r.distcode[J+((P&(1<<Y+Z)-1)>>Y)],q=$>>>24,W=$>>>16&255,K=65535&$,!(Y+q<=G);){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}P>>>=Y,G-=Y,r.back+=Y}if(P>>>=q,G-=q,r.back+=q,64&W){e.msg="invalid distance code",r.mode=L;break}r.offset=K,r.extra=15&W,r.mode=16203;case 16203:if(r.extra){for(re=r.extra;G<re;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}r.offset+=P&(1<<r.extra)-1,P>>>=r.extra,G-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){e.msg="invalid distance too far back",r.mode=L;break}r.mode=16204;case 16204:if(0===M)break e;if(B=z-M,r.offset>B){if(B=r.offset-B,B>r.whave&&r.sane){e.msg="invalid distance too far back",r.mode=L;break}B>r.wnext?(B-=r.wnext,H=r.wsize-B):H=r.wnext-B,B>r.length&&(B=r.length),j=r.window}else j=N,H=w-r.offset,B=r.length;B>M&&(B=M),M-=B,r.length-=B;do{N[w++]=j[H++]}while(--B);0===r.length&&(r.mode=R);break;case 16205:if(0===M)break e;N[w++]=r.length,M--,r.mode=R;break;case I:if(r.wrap){for(;G<32;){if(0===x)break e;x--,P|=b[k++]<<G,G+=8}if(z-=M,e.total_out+=z,r.total+=z,4&r.wrap&&z&&(e.adler=r.check=r.flags?i(r.check,N,z,w-z):n(r.check,N,z,w-z)),z=M,4&r.wrap&&(r.flags?P:D(P))!==r.check){e.msg="incorrect data check",r.mode=L;break}P=0,G=0}r.mode=16207;case 16207:if(r.wrap&&r.flags){for(;G<32;){if(0===x)break e;x--,P+=b[k++]<<G,G+=8}if(4&r.wrap&&P!==(4294967295&r.total)){e.msg="incorrect length check",r.mode=L;break}P=0,G=0}r.mode=16208;case 16208:Q=p;break e;case L:Q=m;break e;case C:return f;default:return h}return e.next_out=w,e.avail_out=M,e.next_in=k,e.avail_in=x,r.hold=P,r.bits=G,(r.wsize||z!==e.avail_out&&r.mode<L&&(r.mode<I||t!==s))&&F(e,e.output,e.next_out,z-e.avail_out)?(r.mode=C,f):(V-=e.avail_in,z-=e.avail_out,e.total_in+=V,e.total_out+=z,r.total+=z,4&r.wrap&&z&&(e.adler=r.check=r.flags?i(r.check,N,z,e.next_out-z):n(r.check,N,z,e.next_out-z)),e.data_type=r.bits+(r.last?64:0)+(r.mode===y?128:0)+(r.mode===S||r.mode===O?256:0),(0===V&&0===z||t===s)&&Q===u&&(Q=E),Q)},e.exports.inflateEnd=e=>{if(T(e))return h;let t=e.state;return t.window&&(t.window=null),e.state=null,u},e.exports.inflateGetHeader=(e,t)=>{if(T(e))return h;const r=e.state;return 0==(2&r.wrap)?h:(r.head=t,t.done=!1,u)},e.exports.inflateSetDictionary=(e,t)=>{const r=t.length;let i,a,o;return T(e)?h:(i=e.state,0!==i.wrap&&i.mode!==g?h:i.mode===g&&(a=1,a=n(a,t,r,0),a!==i.check)?m:(o=F(e,t,r,r),o?(i.mode=C,f):(i.havedict=1,u)))},e.exports.inflateInfo="pako inflate (from Nodeca project)"},7371:e=>{"use strict";const t=new Uint16Array([3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0]),r=new Uint8Array([16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78]),n=new Uint16Array([1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0]),i=new Uint8Array([16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64]);e.exports=(e,a,o,s,c,l,u,p)=>{const d=p.bits;let h,m,f,E,v,_,g=0,y=0,A=0,O=0,S=0,R=0,I=0,L=0,C=0,D=0,b=null;const T=new Uint16Array(16),N=new Uint16Array(16);let k,w,x,M=null;for(g=0;g<=15;g++)T[g]=0;for(y=0;y<s;y++)T[a[o+y]]++;for(S=d,O=15;O>=1&&0===T[O];O--);if(S>O&&(S=O),0===O)return c[l++]=20971520,c[l++]=20971520,p.bits=1,0;for(A=1;A<O&&0===T[A];A++);for(S<A&&(S=A),L=1,g=1;g<=15;g++)if(L<<=1,L-=T[g],L<0)return-1;if(L>0&&(0===e||1!==O))return-1;for(N[1]=0,g=1;g<15;g++)N[g+1]=N[g]+T[g];for(y=0;y<s;y++)0!==a[o+y]&&(u[N[a[o+y]]++]=y);if(0===e?(b=M=u,_=20):1===e?(b=t,M=r,_=257):(b=n,M=i,_=0),D=0,y=0,g=A,v=l,R=S,I=0,f=-1,C=1<<S,E=C-1,1===e&&C>852||2===e&&C>592)return 1;for(;;){k=g-I,u[y]+1<_?(w=0,x=u[y]):u[y]>=_?(w=M[u[y]-_],x=b[u[y]-_]):(w=96,x=0),h=1<<g-I,m=1<<R,A=m;do{m-=h,c[v+(D>>I)+m]=k<<24|w<<16|x|0}while(0!==m);for(h=1<<g-1;D&h;)h>>=1;if(0!==h?(D&=h-1,D+=h):D=0,y++,0==--T[g]){if(g===O)break;g=a[o+u[y]]}if(g>S&&(D&E)!==f){for(0===I&&(I=S),v+=A,R=g-I,L=1<<R;R+I<O&&(L-=T[R+I],!(L<=0));)R++,L<<=1;if(C+=1<<R,1===e&&C>852||2===e&&C>592)return 1;f=D&E,c[f]=S<<24|R<<16|v-l|0}}return 0!==D&&(c[v+D]=g-I<<24|64<<16|0),p.bits=S,0}},5710:e=>{"use strict";e.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},7322:e=>{"use strict";function t(e){let t=e.length;for(;--t>=0;)e[t]=0}const r=new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]),n=new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]),i=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]),a=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),o=new Array(576);t(o);const s=new Array(60);t(s);const c=new Array(512);t(c);const l=new Array(256);t(l);const u=new Array(29);t(u);const p=new Array(30);function d(e,t,r,n,i){this.static_tree=e,this.extra_bits=t,this.extra_base=r,this.elems=n,this.max_length=i,this.has_stree=e&&e.length}let h,m,f;function E(e,t){this.dyn_tree=e,this.max_code=0,this.stat_desc=t}t(p);const v=e=>e<256?c[e]:c[256+(e>>>7)],_=(e,t)=>{e.pending_buf[e.pending++]=255&t,e.pending_buf[e.pending++]=t>>>8&255},g=(e,t,r)=>{e.bi_valid>16-r?(e.bi_buf|=t<<e.bi_valid&65535,_(e,e.bi_buf),e.bi_buf=t>>16-e.bi_valid,e.bi_valid+=r-16):(e.bi_buf|=t<<e.bi_valid&65535,e.bi_valid+=r)},y=(e,t,r)=>{g(e,r[2*t],r[2*t+1])},A=(e,t)=>{let r=0;do{r|=1&e,e>>>=1,r<<=1}while(--t>0);return r>>>1},O=(e,t,r)=>{const n=new Array(16);let i,a,o=0;for(i=1;i<=15;i++)o=o+r[i-1]<<1,n[i]=o;for(a=0;a<=t;a++){let t=e[2*a+1];0!==t&&(e[2*a]=A(n[t]++,t))}},S=e=>{let t;for(t=0;t<286;t++)e.dyn_ltree[2*t]=0;for(t=0;t<30;t++)e.dyn_dtree[2*t]=0;for(t=0;t<19;t++)e.bl_tree[2*t]=0;e.dyn_ltree[512]=1,e.opt_len=e.static_len=0,e.sym_next=e.matches=0},R=e=>{e.bi_valid>8?_(e,e.bi_buf):e.bi_valid>0&&(e.pending_buf[e.pending++]=e.bi_buf),e.bi_buf=0,e.bi_valid=0},I=(e,t,r,n)=>{const i=2*t,a=2*r;return e[i]<e[a]||e[i]===e[a]&&n[t]<=n[r]},L=(e,t,r)=>{const n=e.heap[r];let i=r<<1;for(;i<=e.heap_len&&(i<e.heap_len&&I(t,e.heap[i+1],e.heap[i],e.depth)&&i++,!I(t,n,e.heap[i],e.depth));)e.heap[r]=e.heap[i],r=i,i<<=1;e.heap[r]=n},C=(e,t,i)=>{let a,o,s,c,d=0;if(0!==e.sym_next)do{a=255&e.pending_buf[e.sym_buf+d++],a+=(255&e.pending_buf[e.sym_buf+d++])<<8,o=e.pending_buf[e.sym_buf+d++],0===a?y(e,o,t):(s=l[o],y(e,s+256+1,t),c=r[s],0!==c&&(o-=u[s],g(e,o,c)),a--,s=v(a),y(e,s,i),c=n[s],0!==c&&(a-=p[s],g(e,a,c)))}while(d<e.sym_next);y(e,256,t)},D=(e,t)=>{const r=t.dyn_tree,n=t.stat_desc.static_tree,i=t.stat_desc.has_stree,a=t.stat_desc.elems;let o,s,c,l=-1;for(e.heap_len=0,e.heap_max=573,o=0;o<a;o++)0!==r[2*o]?(e.heap[++e.heap_len]=l=o,e.depth[o]=0):r[2*o+1]=0;for(;e.heap_len<2;)c=e.heap[++e.heap_len]=l<2?++l:0,r[2*c]=1,e.depth[c]=0,e.opt_len--,i&&(e.static_len-=n[2*c+1]);for(t.max_code=l,o=e.heap_len>>1;o>=1;o--)L(e,r,o);c=a;do{o=e.heap[1],e.heap[1]=e.heap[e.heap_len--],L(e,r,1),s=e.heap[1],e.heap[--e.heap_max]=o,e.heap[--e.heap_max]=s,r[2*c]=r[2*o]+r[2*s],e.depth[c]=(e.depth[o]>=e.depth[s]?e.depth[o]:e.depth[s])+1,r[2*o+1]=r[2*s+1]=c,e.heap[1]=c++,L(e,r,1)}while(e.heap_len>=2);e.heap[--e.heap_max]=e.heap[1],((e,t)=>{const r=t.dyn_tree,n=t.max_code,i=t.stat_desc.static_tree,a=t.stat_desc.has_stree,o=t.stat_desc.extra_bits,s=t.stat_desc.extra_base,c=t.stat_desc.max_length;let l,u,p,d,h,m,f=0;for(d=0;d<=15;d++)e.bl_count[d]=0;for(r[2*e.heap[e.heap_max]+1]=0,l=e.heap_max+1;l<573;l++)u=e.heap[l],d=r[2*r[2*u+1]+1]+1,d>c&&(d=c,f++),r[2*u+1]=d,u>n||(e.bl_count[d]++,h=0,u>=s&&(h=o[u-s]),m=r[2*u],e.opt_len+=m*(d+h),a&&(e.static_len+=m*(i[2*u+1]+h)));if(0!==f){do{for(d=c-1;0===e.bl_count[d];)d--;e.bl_count[d]--,e.bl_count[d+1]+=2,e.bl_count[c]--,f-=2}while(f>0);for(d=c;0!==d;d--)for(u=e.bl_count[d];0!==u;)p=e.heap[--l],p>n||(r[2*p+1]!==d&&(e.opt_len+=(d-r[2*p+1])*r[2*p],r[2*p+1]=d),u--)}})(e,t),O(r,l,e.bl_count)},b=(e,t,r)=>{let n,i,a=-1,o=t[1],s=0,c=7,l=4;for(0===o&&(c=138,l=3),t[2*(r+1)+1]=65535,n=0;n<=r;n++)i=o,o=t[2*(n+1)+1],++s<c&&i===o||(s<l?e.bl_tree[2*i]+=s:0!==i?(i!==a&&e.bl_tree[2*i]++,e.bl_tree[32]++):s<=10?e.bl_tree[34]++:e.bl_tree[36]++,s=0,a=i,0===o?(c=138,l=3):i===o?(c=6,l=3):(c=7,l=4))},T=(e,t,r)=>{let n,i,a=-1,o=t[1],s=0,c=7,l=4;for(0===o&&(c=138,l=3),n=0;n<=r;n++)if(i=o,o=t[2*(n+1)+1],!(++s<c&&i===o)){if(s<l)do{y(e,i,e.bl_tree)}while(0!=--s);else 0!==i?(i!==a&&(y(e,i,e.bl_tree),s--),y(e,16,e.bl_tree),g(e,s-3,2)):s<=10?(y(e,17,e.bl_tree),g(e,s-3,3)):(y(e,18,e.bl_tree),g(e,s-11,7));s=0,a=i,0===o?(c=138,l=3):i===o?(c=6,l=3):(c=7,l=4)}};let N=!1;const k=(e,t,r,n)=>{g(e,0+(n?1:0),3),R(e),_(e,r),_(e,~r),r&&e.pending_buf.set(e.window.subarray(t,t+r),e.pending),e.pending+=r};e.exports._tr_init=e=>{N||((()=>{let e,t,a,E,v;const _=new Array(16);for(a=0,E=0;E<28;E++)for(u[E]=a,e=0;e<1<<r[E];e++)l[a++]=E;for(l[a-1]=E,v=0,E=0;E<16;E++)for(p[E]=v,e=0;e<1<<n[E];e++)c[v++]=E;for(v>>=7;E<30;E++)for(p[E]=v<<7,e=0;e<1<<n[E]-7;e++)c[256+v++]=E;for(t=0;t<=15;t++)_[t]=0;for(e=0;e<=143;)o[2*e+1]=8,e++,_[8]++;for(;e<=255;)o[2*e+1]=9,e++,_[9]++;for(;e<=279;)o[2*e+1]=7,e++,_[7]++;for(;e<=287;)o[2*e+1]=8,e++,_[8]++;for(O(o,287,_),e=0;e<30;e++)s[2*e+1]=5,s[2*e]=A(e,5);h=new d(o,r,257,286,15),m=new d(s,n,0,30,15),f=new d(new Array(0),i,0,19,7)})(),N=!0),e.l_desc=new E(e.dyn_ltree,h),e.d_desc=new E(e.dyn_dtree,m),e.bl_desc=new E(e.bl_tree,f),e.bi_buf=0,e.bi_valid=0,S(e)},e.exports._tr_stored_block=k,e.exports._tr_flush_block=(e,t,r,n)=>{let i,c,l=0;e.level>0?(2===e.strm.data_type&&(e.strm.data_type=(e=>{let t,r=4093624447;for(t=0;t<=31;t++,r>>>=1)if(1&r&&0!==e.dyn_ltree[2*t])return 0;if(0!==e.dyn_ltree[18]||0!==e.dyn_ltree[20]||0!==e.dyn_ltree[26])return 1;for(t=32;t<256;t++)if(0!==e.dyn_ltree[2*t])return 1;return 0})(e)),D(e,e.l_desc),D(e,e.d_desc),l=(e=>{let t;for(b(e,e.dyn_ltree,e.l_desc.max_code),b(e,e.dyn_dtree,e.d_desc.max_code),D(e,e.bl_desc),t=18;t>=3&&0===e.bl_tree[2*a[t]+1];t--);return e.opt_len+=3*(t+1)+5+5+4,t})(e),i=e.opt_len+3+7>>>3,c=e.static_len+3+7>>>3,c<=i&&(i=c)):i=c=r+5,r+4<=i&&-1!==t?k(e,t,r,n):4===e.strategy||c===i?(g(e,2+(n?1:0),3),C(e,o,s)):(g(e,4+(n?1:0),3),((e,t,r,n)=>{let i;for(g(e,t-257,5),g(e,r-1,5),g(e,n-4,4),i=0;i<n;i++)g(e,e.bl_tree[2*a[i]+1],3);T(e,e.dyn_ltree,t-1),T(e,e.dyn_dtree,r-1)})(e,e.l_desc.max_code+1,e.d_desc.max_code+1,l+1),C(e,e.dyn_ltree,e.dyn_dtree)),S(e),n&&R(e)},e.exports._tr_tally=(e,t,r)=>(e.pending_buf[e.sym_buf+e.sym_next++]=t,e.pending_buf[e.sym_buf+e.sym_next++]=t>>8,e.pending_buf[e.sym_buf+e.sym_next++]=r,0===t?e.dyn_ltree[2*r]++:(e.matches++,t--,e.dyn_ltree[2*(l[r]+256+1)]++,e.dyn_dtree[2*v(t)]++),e.sym_next===e.sym_end),e.exports._tr_align=e=>{g(e,2,3),y(e,256,o),(e=>{16===e.bi_valid?(_(e,e.bi_buf),e.bi_buf=0,e.bi_valid=0):e.bi_valid>=8&&(e.pending_buf[e.pending++]=255&e.bi_buf,e.bi_buf>>=8,e.bi_valid-=8)})(e)}},8894:e=>{"use strict";e.exports=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},8891:(e,t,r)=>{"use strict";const n=r(9742),i=r(1998),a=r(9400),o=r(7728),s=Symbol("encodeFragmentIdentifier");function c(e){if("string"!=typeof e||1!==e.length)throw new TypeError("arrayFormatSeparator must be single character string")}function l(e,t){return t.encode?t.strict?n(e):encodeURIComponent(e):e}function u(e,t){return t.decode?i(e):e}function p(e){return Array.isArray(e)?e.sort():"object"==typeof e?p(Object.keys(e)).sort(((e,t)=>Number(e)-Number(t))).map((t=>e[t])):e}function d(e){const t=e.indexOf("#");return-1!==t&&(e=e.slice(0,t)),e}function h(e){const t=(e=d(e)).indexOf("?");return-1===t?"":e.slice(t+1)}function m(e,t){return t.parseNumbers&&!Number.isNaN(Number(e))&&"string"==typeof e&&""!==e.trim()?e=Number(e):!t.parseBooleans||null===e||"true"!==e.toLowerCase()&&"false"!==e.toLowerCase()||(e="true"===e.toLowerCase()),e}function f(e,t){c((t=Object.assign({decode:!0,sort:!0,arrayFormat:"none",arrayFormatSeparator:",",parseNumbers:!1,parseBooleans:!1},t)).arrayFormatSeparator);const r=function(e){let t;switch(e.arrayFormat){case"index":return(e,r,n)=>{t=/\[(\d*)\]$/.exec(e),e=e.replace(/\[\d*\]$/,""),t?(void 0===n[e]&&(n[e]={}),n[e][t[1]]=r):n[e]=r};case"bracket":return(e,r,n)=>{t=/(\[\])$/.exec(e),e=e.replace(/\[\]$/,""),t?void 0!==n[e]?n[e]=[].concat(n[e],r):n[e]=[r]:n[e]=r};case"colon-list-separator":return(e,r,n)=>{t=/(:list)$/.exec(e),e=e.replace(/:list$/,""),t?void 0!==n[e]?n[e]=[].concat(n[e],r):n[e]=[r]:n[e]=r};case"comma":case"separator":return(t,r,n)=>{const i="string"==typeof r&&r.includes(e.arrayFormatSeparator),a="string"==typeof r&&!i&&u(r,e).includes(e.arrayFormatSeparator);r=a?u(r,e):r;const o=i||a?r.split(e.arrayFormatSeparator).map((t=>u(t,e))):null===r?r:u(r,e);n[t]=o};case"bracket-separator":return(t,r,n)=>{const i=/(\[\])$/.test(t);if(t=t.replace(/\[\]$/,""),!i)return void(n[t]=r?u(r,e):r);const a=null===r?[]:r.split(e.arrayFormatSeparator).map((t=>u(t,e)));void 0!==n[t]?n[t]=[].concat(n[t],a):n[t]=a};default:return(e,t,r)=>{void 0!==r[e]?r[e]=[].concat(r[e],t):r[e]=t}}}(t),n=Object.create(null);if("string"!=typeof e)return n;if(!(e=e.trim().replace(/^[?#&]/,"")))return n;for(const i of e.split("&")){if(""===i)continue;let[e,o]=a(t.decode?i.replace(/\+/g," "):i,"=");o=void 0===o?null:["comma","separator","bracket-separator"].includes(t.arrayFormat)?o:u(o,t),r(u(e,t),o,n)}for(const e of Object.keys(n)){const r=n[e];if("object"==typeof r&&null!==r)for(const e of Object.keys(r))r[e]=m(r[e],t);else n[e]=m(r,t)}return!1===t.sort?n:(!0===t.sort?Object.keys(n).sort():Object.keys(n).sort(t.sort)).reduce(((e,t)=>{const r=n[t];return Boolean(r)&&"object"==typeof r&&!Array.isArray(r)?e[t]=p(r):e[t]=r,e}),Object.create(null))}t.extract=h,t.parse=f,t.stringify=(e,t)=>{if(!e)return"";c((t=Object.assign({encode:!0,strict:!0,arrayFormat:"none",arrayFormatSeparator:","},t)).arrayFormatSeparator);const r=r=>t.skipNull&&(e=>null==e)(e[r])||t.skipEmptyString&&""===e[r],n=function(e){switch(e.arrayFormat){case"index":return t=>(r,n)=>{const i=r.length;return void 0===n||e.skipNull&&null===n||e.skipEmptyString&&""===n?r:null===n?[...r,[l(t,e),"[",i,"]"].join("")]:[...r,[l(t,e),"[",l(i,e),"]=",l(n,e)].join("")]};case"bracket":return t=>(r,n)=>void 0===n||e.skipNull&&null===n||e.skipEmptyString&&""===n?r:null===n?[...r,[l(t,e),"[]"].join("")]:[...r,[l(t,e),"[]=",l(n,e)].join("")];case"colon-list-separator":return t=>(r,n)=>void 0===n||e.skipNull&&null===n||e.skipEmptyString&&""===n?r:null===n?[...r,[l(t,e),":list="].join("")]:[...r,[l(t,e),":list=",l(n,e)].join("")];case"comma":case"separator":case"bracket-separator":{const t="bracket-separator"===e.arrayFormat?"[]=":"=";return r=>(n,i)=>void 0===i||e.skipNull&&null===i||e.skipEmptyString&&""===i?n:(i=null===i?"":i,0===n.length?[[l(r,e),t,l(i,e)].join("")]:[[n,l(i,e)].join(e.arrayFormatSeparator)])}default:return t=>(r,n)=>void 0===n||e.skipNull&&null===n||e.skipEmptyString&&""===n?r:null===n?[...r,l(t,e)]:[...r,[l(t,e),"=",l(n,e)].join("")]}}(t),i={};for(const t of Object.keys(e))r(t)||(i[t]=e[t]);const a=Object.keys(i);return!1!==t.sort&&a.sort(t.sort),a.map((r=>{const i=e[r];return void 0===i?"":null===i?l(r,t):Array.isArray(i)?0===i.length&&"bracket-separator"===t.arrayFormat?l(r,t)+"[]":i.reduce(n(r),[]).join("&"):l(r,t)+"="+l(i,t)})).filter((e=>e.length>0)).join("&")},t.parseUrl=(e,t)=>{t=Object.assign({decode:!0},t);const[r,n]=a(e,"#");return Object.assign({url:r.split("?")[0]||"",query:f(h(e),t)},t&&t.parseFragmentIdentifier&&n?{fragmentIdentifier:u(n,t)}:{})},t.stringifyUrl=(e,r)=>{r=Object.assign({encode:!0,strict:!0,[s]:!0},r);const n=d(e.url).split("?")[0]||"",i=t.extract(e.url),a=t.parse(i,{sort:!1}),o=Object.assign(a,e.query);let c=t.stringify(o,r);c&&(c=`?${c}`);let u=function(e){let t="";const r=e.indexOf("#");return-1!==r&&(t=e.slice(r)),t}(e.url);return e.fragmentIdentifier&&(u=`#${r[s]?l(e.fragmentIdentifier,r):e.fragmentIdentifier}`),`${n}${c}${u}`},t.pick=(e,r,n)=>{n=Object.assign({parseFragmentIdentifier:!0,[s]:!1},n);const{url:i,query:a,fragmentIdentifier:c}=t.parseUrl(e,n);return t.stringifyUrl({url:i,query:o(a,r),fragmentIdentifier:c},n)},t.exclude=(e,r,n)=>{const i=Array.isArray(r)?e=>!r.includes(e):(e,t)=>!r(e,t);return t.pick(e,i,n)}},9350:e=>{"use strict";function t(e,t){return Object.prototype.hasOwnProperty.call(e,t)}e.exports=function(e,r,n,i){r=r||"&",n=n||"=";var a={};if("string"!=typeof e||0===e.length)return a;var o=/\+/g;e=e.split(r);var s=1e3;i&&"number"==typeof i.maxKeys&&(s=i.maxKeys);var c=e.length;s>0&&c>s&&(c=s);for(var l=0;l<c;++l){var u,p,d,h,m=e[l].replace(o,"%20"),f=m.indexOf(n);f>=0?(u=m.substr(0,f),p=m.substr(f+1)):(u=m,p=""),d=decodeURIComponent(u),h=decodeURIComponent(p),t(a,d)?Array.isArray(a[d])?a[d].push(h):a[d]=[a[d],h]:a[d]=h}return a}},4104:e=>{"use strict";var t=function(e){switch(typeof e){case"string":return e;case"boolean":return e?"true":"false";case"number":return isFinite(e)?e:"";default:return""}};e.exports=function(e,r,n,i){return r=r||"&",n=n||"=",null===e&&(e=void 0),"object"==typeof e?Object.keys(e).map((function(i){var a=encodeURIComponent(t(i))+n;return Array.isArray(e[i])?e[i].map((function(e){return a+encodeURIComponent(t(e))})).join(r):a+encodeURIComponent(t(e[i]))})).join(r):i?encodeURIComponent(t(i))+n+encodeURIComponent(t(e)):""}},8966:(e,t,r)=>{"use strict";t.decode=t.parse=r(9350),t.encode=t.stringify=r(4104)},504:(e,t,r)=>{"use strict";var n=r(8750),i=r(6300),a=r(1365)(),o=r(7502),s=n("%TypeError%"),c=n("%Math.floor%");e.exports=function(e,t){if("function"!=typeof e)throw new s("`fn` is not a function");if("number"!=typeof t||t<0||t>4294967295||c(t)!==t)throw new s("`length` must be a positive 32-bit integer");var r=arguments.length>2&&!!arguments[2],n=!0,l=!0;if("length"in e&&o){var u=o(e,"length");u&&!u.configurable&&(n=!1),u&&!u.writable&&(l=!1)}return(n||l||!r)&&(a?i(e,"length",t,!0,!0):i(e,"length",t)),e}},9400:e=>{"use strict";e.exports=(e,t)=>{if("string"!=typeof e||"string"!=typeof t)throw new TypeError("Expected the arguments to be of type `string`");if(""===t)return[e];const r=e.indexOf(t);return-1===r?[e]:[e.slice(0,r),e.slice(r+t.length)]}},9742:e=>{"use strict";e.exports=e=>encodeURIComponent(e).replace(/[!'()*]/g,(e=>`%${e.charCodeAt(0).toString(16).toUpperCase()}`))},4165:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isCustomClientProvider=void 0,t.isCustomClientProvider=function(e){return null!=e.createProvider}},8191:function(e,t,r){"use strict";var n=this&&this.__assign||function(){return n=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var i in t=arguments[r])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},n.apply(this,arguments)},i=this&&this.__awaiter||function(e,t,r,n){return new(r||(r=Promise))((function(i,a){function o(e){try{c(n.next(e))}catch(e){a(e)}}function s(e){try{c(n.throw(e))}catch(e){a(e)}}function c(e){e.done?i(e.value):function(e){return e instanceof r?e:new r((function(t){t(e)}))}(e.value).then(o,s)}c((n=n.apply(e,t||[])).next())}))},a=this&&this.__generator||function(e,t){var r,n,i,a,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return a={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(c){return function(s){if(r)throw new TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&s[0]?n.return:s[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,s[1])).done)return i;switch(n=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!((i=(i=o.trys).length>0&&i[i.length-1])||6!==s[0]&&2!==s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]<i[3])){o.label=s[1];break}if(6===s[0]&&o.label<i[1]){o.label=i[1],i=s;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(s);break}i[2]&&o.ops.pop(),o.trys.pop();continue}s=t.call(e,o)}catch(e){s=[6,e],n=0}finally{r=i=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,c])}}},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.CloudFileManagerClient=t.CloudFileManagerClientEvent=void 0;var s=o(r(3336)),c=o(r(2611)),l=o(r(1081)),u=o(r(5427)),p=o(r(9638)),d=o(r(4782)),h=o(r(9396)),m=r(4165),f=r(2428),E=o(r(3774)),v=o(r(3818)),_=o(r(8277)),g=o(r(3137)),y=o(r(9624)),A=o(r(711)),O=o(r(8524)),S=o(r(1673)),R=o(r(5254)),I=o(r(6262)),L=o(r(6946)),C=o(r(3641)),D=r(9210),b=r(2826),T=r(3770),N=0,k={},w=function(){function e(e,t,r,n){void 0===r&&(r=null),this.type=e,null==t&&(t={}),this.data=t,this.callback=r,null==n&&(n={}),this.state=n,N++,this.id=N}return e.prototype.postMessage=function(e){this.callback&&(k[this.id]=this);var t=c.default.clone(this.data);delete t.client;var r={type:"cfm::event",eventId:this.id,eventType:this.type,eventData:t};return e.postMessage(r,"*")},e}();t.CloudFileManagerClientEvent=w;var x=function(){function e(e){var t=this;this.shouldAutoSave=this.shouldAutoSave.bind(this),this.state={availableProviders:[]},this._listeners=[],this._resetState(),this._ui=new f.CloudFileManagerUI(this),this.providers={},this.urlProvider=new L.default,this.onUnload=this.onUnload.bind(this),(0,T.setOnUnload)(this.onUnload),this.connectedPromise=new Promise((function(e,r){t.connectedPromiseResolver={resolve:function(){e(),t.connectedPromiseResolver=null},reject:function(){r(),t.connectedPromiseResolver=null}}}))}return e.prototype.setAppOptions=function(e){var t,r,n,i,a,o;null==e&&(e={}),this.appOptions=e,null==this.appOptions.wrapFileContent&&(this.appOptions.wrapFileContent=!0),D.CloudContent.wrapFileContent=this.appOptions.wrapFileContent,this.appOptions.isClientContent&&(D.cloudContentFactory.isClientContent=this.appOptions.isClientContent);for(var s={},c=0,l=[E.default,v.default,_.default,y.default,g.default,A.default,R.default,I.default,S.default,C.default];c<l.length;c++)(o=l[c]).Available()&&(s[o.Name]=o);if(!this.appOptions.providers){this.appOptions.providers=[];for(var u=0,d=Object.keys(s||{});u<d.length;u++)a=d[u],e.providers.push(a)}D.CloudMetadata.Extension=this.appOptions.extension,D.CloudMetadata.ReadableExtensions=this.appOptions.readableExtensions||[],D.CloudMetadata.Extension&&D.CloudMetadata.ReadableExtensions.push(D.CloudMetadata.Extension);var f=this.appOptions.readableMimeTypes||[];f.push(this.appOptions.mimeType);var O=this.appOptions.providers.slice();(0,h.default)("saveSecondaryFileViaPostMessage")&&O.push("postMessage");for(var L=O.includes("interactiveApi"),b=[],T=null,N=0,k=O;N<k.length;N++){var w=k[N],x=(0,p.default)(w)?[w,{}]:[w.name,w],M=x[0],P=x[1];if(null==P.mimeType&&(P.mimeType=this.appOptions.mimeType),P.readableMimetypes=f,M)if((0,m.isCustomClientProvider)(P)&&(s[M]=P.createProvider(D.ProviderInterface)),s[M]){if(!(o=s[M]).hasValidOptions||o.hasValidOptions(P)){var G=new o(P,this);if(this.providers[M]=G,T=this._getShareProvider(),G.urlDisplayName&&(this.providers[G.urlDisplayName]=G),b.push(G),!L&&"lara"===M){var U=new g.default(P,this);this.providers.interactiveApi=U,b.push(U)}}}else this.alert("Unknown provider: ".concat(M));else this.alert("Invalid provider spec - must either be string or object with name property")}return this._setState({availableProviders:b,shareProvider:T}),this.appOptions.ui||(this.appOptions.ui={}),this.appOptions.ui.windowTitleSuffix||(this.appOptions.ui.windowTitleSuffix=document.title),this.appOptions.ui.windowTitleSeparator||(this.appOptions.ui.windowTitleSeparator=" - "),this._setWindowTitle(),this._ui.init(this.appOptions.ui),this.appOptions.autoSaveInterval&&this.autoSave(this.appOptions.autoSaveInterval),D.cloudContentFactory.setEnvelopeMetadata({cfmVersion:"2.0.0-pre.1",appName:this.appOptions.appName||"",appVersion:this.appOptions.appVersion||"",appBuildNum:this.appOptions.appBuildNum||""}),this.newFileOpensInNewTab=null===(r=null===(t=this.appOptions.ui)||void 0===t?void 0:t.newFileOpensInNewTab)||void 0===r||r,this.newFileAddsNewToQuery=null===(n=this.appOptions.ui)||void 0===n?void 0:n.newFileAddsNewToQuery,(null===(i=this.appOptions.ui)||void 0===i?void 0:i.confirmCloseIfDirty)&&this._setupConfirmOnClose(),this._startPostMessageListener()},e.prototype._getShareProvider=function(){return new O.default(this,new S.default(this))},e.prototype.setProviderOptions=function(e,t){for(var r=0,i=this.state.availableProviders;r<i.length;r++){var a=i[r];if(a.name===e){a.options=n(n({},a.options),{newOptions:t});break}}},e.prototype.connect=function(){var e;return null===(e=this.connectedPromiseResolver)||void 0===e||e.resolve(),this._event("connected",{client:this})},e.prototype.processUrlParams=function(){var e,t,r,n,i,a=this.appOptions.hashParams;if(a.sharedContentId)return this.openSharedContent(a.sharedContentId);if(a.fileParams)return 0===a.fileParams.indexOf("http")?this.openUrlFile(a.fileParams):(r=(e=a.fileParams.split(":"))[0],n=e[1],this.openProviderFile(r,n));if(a.copyParams)return this.openCopiedFile(a.copyParams);if(a.newInFolderParams)return r=(t=a.newInFolderParams.split(":"))[0],i=t[1],this.createNewInFolder(r,i);if(this.haveTempFile())return this.openAndClearTempFile();for(var o=0,s=this.state.availableProviders;o<s.length;o++)if(s[o].handleUrlParams())return;return this.ready()},e.prototype.ready=function(){return this._event("ready")},e.prototype.rendered=function(){return this._event("rendered",{client:this})},e.prototype.listen=function(e){if(e)return this._listeners.push(e)},e.prototype.log=function(e,t){if(this._event("log",{logEvent:e,logEventData:t}),this.appOptions.log)return this.appOptions.log(e,t)},e.prototype.autoProvider=function(e){for(var t=0,r=this.state.availableProviders;t<r.length;t++){var n=r[t];if(n.canAuto(e))return n}},e.prototype.appendMenuItem=function(e){return this._ui.appendMenuItem(e),this},e.prototype.prependMenuItem=function(e){return this._ui.prependMenuItem(e),this},e.prototype.replaceMenuItem=function(e,t){return this._ui.replaceMenuItem(e,t),this},e.prototype.insertMenuItemBefore=function(e,t){return this._ui.insertMenuItemBefore(e,t),this},e.prototype.insertMenuItemAfter=function(e,t){return this._ui.insertMenuItemAfter(e,t),this},e.prototype.setMenuBarInfo=function(e){return this._ui.setMenuBarInfo(e)},e.prototype.newFile=function(e){return void 0===e&&(e=null),this._closeCurrentFile(),this._resetState(),window.location.hash="",this._event("newedFile",{content:""},e)},e.prototype.newFileDialog=function(e){var t=this;return void 0===e&&(e=null),this.newFileOpensInNewTab?window.open(this.getCurrentUrl(this.newFileAddsNewToQuery?"#new":null),"_blank"):this.state.dirty?this._autoSaveInterval&&this.state.metadata?(this.save(),this.newFile(e)):this.confirm((0,u.default)("~CONFIRM.NEW_FILE"),(function(){return t.newFile(e)})):this.newFile(e)},e.prototype.openFile=function(e,t){var r,n=this;return void 0===t&&(t=null),(null===(r=null==e?void 0:e.provider)||void 0===r?void 0:r.can(D.ECapabilities.load,e))?(this._event("willOpenFile",{op:"openFile"}),e.provider.load(e,(function(r,i){return r?n.alert(r,(function(){return n.ready()})):(n._closeCurrentFile(),i=n._filterLoadedContent(i),n._fileOpened(i,e,{openedContent:i.clone()},n._getHashParams(e)),"function"==typeof t&&t(i,e),e.provider.fileOpened(i,e))}))):this.openFileDialog(t)},e.prototype.openFileDialog=function(e){var t=this;void 0===e&&(e=null);var r=function(){return t._ui.openFileDialog((function(r){return t.openFile(r,e)}))};return this.state.dirty?this.confirm((0,u.default)("~CONFIRM.OPEN_FILE"),r):r()},e.prototype.closeFile=function(e){return void 0===e&&(e=null),this._closeCurrentFile(),this._resetState(),window.location.hash="",this._event("closedFile",{content:""}),"function"==typeof e?e():void 0},e.prototype.closeFileDialog=function(e){var t=this;return void 0===e&&(e=null),this.state.dirty?this.confirm((0,u.default)("~CONFIRM.CLOSE_FILE"),(function(){return t.closeFile(e)})):this.closeFile(e)},e.prototype.importData=function(e,t){return void 0===t&&(t=null),this._event("importedData",e),"function"==typeof t?t(e):void 0},e.prototype.importDataDialog=function(e){var t=this;return void 0===e&&(e=null),this._ui.importDataDialog((function(r){return t.importData(r,e)}))},e.prototype.readLocalFile=function(e,t){void 0===t&&(t=null);var r=new FileReader;return r.onload=function(r){return"function"==typeof t?t({name:e.name,content:r.target.result}):void 0},r.readAsText(e)},e.prototype.openLocalFile=function(e,t){var r=this;return void 0===t&&(t=null),this._event("willOpenFile",{op:"openLocalFile"}),this.readLocalFile(e,(function(e){var n=D.cloudContentFactory.createEnvelopedCloudContent(e.content);n=r._filterLoadedContent(n);var i=new D.CloudMetadata({name:e.name,type:D.CloudMetadata.File});return r._fileOpened(n,i,{openedContent:n.clone()}),"function"==typeof t?t(n,i):void 0}))},e.prototype.importLocalFile=function(e,t){var r=this;return void 0===t&&(t=null),this.readLocalFile(e,(function(e){return r.importData(e,t)}))},e.prototype.openSharedContent=function(e){var t=this,r=this.state.shareProvider;this._event("willOpenFile",{op:"openSharedContent"}),r.loadSharedContent&&r.loadSharedContent(e,(function(e,r,n){e?t.alert(e,(function(){return t.ready()})):(r=t._filterLoadedContent(r),t._fileOpened(r,n,{overwritable:!1,openedContent:r.clone()}))}))},e.prototype.parseUrlAuthorizeAndOpen=function(){var e,t=this;if(null!=(null===(e=this.appOptions.hashParams)||void 0===e?void 0:e.fileParams)){var r=this.appOptions.hashParams.fileParams.split(":"),n=r[0],i=r[1],a=this.providers[n];if(a)return a.authorize((function(){return t.openProviderFile(n,i)}))}},e.prototype.disconnectCurrentFile=function(){console.warn("Closing file (rejected reauth)"),this.state.metadata&&(this.state.metadata.provider=null),this._setState({saving:null,saved:null}),window.location.hash="",this._event("ready")},e.prototype.confirmAuthorizeAndOpen=function(e,t){var r=this;return this.confirm((0,u.default)("~CONFIRM.AUTHORIZE_OPEN"),(function(){return e.authorize((function(){return r._event("willOpenFile",{op:"confirmAuthorizeAndOpen"}),e.openSaved(t,(function(t,n,i){return t?r.alert(t):(n=r._filterLoadedContent(n),r._fileOpened(n,i,{openedContent:n.clone()},r._getHashParams(i)),e.fileOpened(n,i))}))}))}),(function(){return r.disconnectCurrentFile()}))},e.prototype.openProviderFileWhenConnected=function(e,t){var r=this;this.connectedPromise.then((function(){return r.openProviderFile(e,t)}))},e.prototype.openProviderFile=function(e,t){var r=this,n=this.providers[e];return n?n.authorized((function(e){return e||!n.isAuthorizationRequired()?(r._event("willOpenFile",{op:"openProviderFile"}),n.openSaved(t,(function(e,t,i){if(e)return r.alert(e,(function(){return r.ready()}));var a={openedContent:(t=r._filterLoadedContent(t)).clone(),dirty:t.requiresConversion()};return r._fileOpened(t,i,a,r._getHashParams(i)),n.fileOpened(t,i)}))):r.confirmAuthorizeAndOpen(n,t)}),{forceAuthorization:!0}):this.alert((0,u.default)("~ALERT.NO_PROVIDER"),(function(){return r.ready()}))},e.prototype.openUrlFile=function(e){var t=this;return this.urlProvider.openFileFromUrl(e,(function(e,r,n){return t._event("willOpenFile",{op:"openUrlFile"}),e?t.alert(e,(function(){return t.ready()})):(r=t._filterLoadedContent(r),t._fileOpened(r,n,{openedContent:r.clone()},t._getHashParams(n)))}))},e.prototype.createNewInFolder=function(e,t){var r=this.providers[e];return r&&r.can(D.ECapabilities.setFolder,this.state.metadata)&&(null==this.state.metadata&&(this.state.metadata=new D.CloudMetadata({type:D.CloudMetadata.File,provider:r})),this.state.metadata.parent=new D.CloudMetadata({type:D.CloudMetadata.Folder,providerData:{id:t}}),this._ui.editInitialFilename()),this._event("newedFile",{content:""})},e.prototype.setInitialFilename=function(e){return this.state.metadata.rename(e),this.save()},e.prototype.isSaveInProgress=function(){return null!=this.state.saving},e.prototype.confirmAuthorizeAndSave=function(e,t){var r=this;return this.confirm((0,u.default)("~CONFIRM.AUTHORIZE_SAVE"),(function(){return r.state.metadata.provider.authorize((function(){return r.saveFile(e,r.state.metadata,t)}))}),(function(){r.disconnectCurrentFile()}))},e.prototype.save=function(e){var t=this;return void 0===e&&(e=null),this._event("getContent",{shared:this._sharedMetadata()},(function(r){return t.saveContent(r,e)}))},e.prototype.saveContent=function(e,t){var r,n=this;void 0===t&&(t=null);var i=(null===(r=this.state.metadata)||void 0===r?void 0:r.provider)||this.autoProvider(D.ECapabilities.save);return null!=i?i.authorized((function(r){return r||!i.isAuthorizationRequired()?n.saveFile(e,n.state.metadata,t):n.confirmAuthorizeAndSave(e,t)})):this.saveFileDialog(e,t)},e.prototype.saveFile=function(e,t,r){var n;void 0===r&&(r=null);var i=t&&!t.overwritable,a=null===(n=null==t?void 0:t.provider)||void 0===n?void 0:n.can(D.ECapabilities.resave,t);return!i&&a?this.saveFileNoDialog(e,t,r):this.saveFileDialog(e,r)},e.prototype.saveFileNoDialog=function(e,t,r){var n,i,a=this;void 0===r&&(r=null),this._setState({saving:t});var o=this._createOrUpdateCurrentContent(e,t);return o=(null===(i=(n=this.appOptions).contentSaveFilter)||void 0===i?void 0:i.call(n,o))||o,t.provider.save(o,t,(function(n,i,s){var c;if(!n)return a.state.showingSaveAlert&&a.hideAlert(),a._setState({failures:0,showingSaveAlert:!1}),a.state.metadata!==t&&a._closeCurrentFile(),null!=t.autoSaveDisabled&&delete t.autoSaveDisabled,a._fileChanged("savedFile",o,t,{saved:!0},a._getHashParams(t)),"function"==typeof r?r(o,t,s):void 0;if(401===i||403===i||404===i)return t.autoSaveDisabled=!0,a._setState({metadata:t,saving:null}),a.confirmAuthorizeAndSave(e,r);if(a._setState({saving:null}),(c=a.state.failures)?c++:c=1,1===c){a._setState({failures:c,showingSaveAlert:!0});var l=n.toString();return a.isAutoSaving()&&(l="".concat(l,"<br><br>").concat((0,u.default)("~FILE_STATUS.CONTINUE_SAVE"))),a.alert(l,(function(){a._setState({showingSaveAlert:!1})}))}a._setState({failures:c})}))},e.prototype.saveFileDialog=function(e,t){var r=this;return void 0===e&&(e=null),void 0===t&&(t=null),this._ui.saveFileDialog((function(n){return r._dialogSave(e,n,t)}))},e.prototype.saveFileAsDialog=function(e,t){var r=this;return void 0===e&&(e=null),void 0===t&&(t=null),this._ui.saveFileAsDialog((function(n){return r._dialogSave(e,n,t)}))},e.prototype.createCopy=function(e,t){var r=this;void 0===e&&(e=null),void 0===t&&(t=null);var n=function(e){var n;return r.saveCopiedFile(e,null===(n=r.state.metadata)||void 0===n?void 0:n.name,(function(e,n){return e?"function"==typeof t?t(e):void 0:(window.open(r.getCurrentUrl("#copy=".concat(n))),"function"==typeof t?t(n):void 0)}))};return null==e?this._event("getContent",{},(function(e){return n(e)})):n(e)},e.prototype.saveCopiedFile=function(e,t,r){try{for(var n="cfm-copy::",i=0,a=0,o=Object.keys(window.localStorage||{});a<o.length;a++){var s=o[a];if(s.substr(0,10)===n){var c=parseInt(s.substr(10),10);i=Math.max(i,c)}}i++;var l=JSON.stringify({name:(null==t?void 0:t.length)?"Copy of ".concat(t):"Copy of Untitled Document",stringContent:e});return window.localStorage.setItem("".concat(n).concat(i),l),"function"==typeof r?r(null,i):void 0}catch(e){var u="margin: 10px 0;",p='\n <div style="'.concat("text-align: left",'">\n <p style="').concat(u,'">The document is either too large to copy within the app, or your browser does not allow local storage.</p>\n\n <p style="').concat(u,'">To copy this file you must duplicate it outside the app using these steps:</p>\n\n <ol style="').concat("margin: 10px 10px 10px 30px; padding: 0;",'">\n <li>Save the document.</li>\n <li>Duplicate it using Google Drive or your local file system.</li>\n <li>Open or import the newly duplicated document.</li>\n </ol>\n </div>\n ');return this.alert(p,"Copy Error")}},e.prototype.openCopiedFile=function(e){this._event("willOpenFile",{op:"openCopiedFile"});try{var t="cfm-copy::".concat(e),r=JSON.parse(window.localStorage.getItem(t)),n=D.cloudContentFactory.createEnvelopedCloudContent(r.stringContent);n=this._filterLoadedContent(n);var i=new D.CloudMetadata({name:r.name,type:D.CloudMetadata.File});return window.location.hash="",this._fileOpened(n,i,{dirty:!0,openedContent:n.clone()}),window.localStorage.removeItem(t)}catch(e){(0,b.reportError)("Unable to load copied file")}},e.prototype.haveTempFile=function(){try{return!!JSON.parse(window.localStorage.getItem("cfm-tempfile"))}catch(e){return!1}},e.prototype.saveTempFile=function(e){var t=this;return this._event("getContent",{shared:this._sharedMetadata()},(function(r){var n,i=t._createOrUpdateCurrentContent(r);try{var a=null===(n=t.state.metadata)||void 0===n?void 0:n.name,o=JSON.stringify({name:a,stringContent:r});window.localStorage.setItem("cfm-tempfile",o);var s=new D.CloudMetadata({name:a,type:D.CloudMetadata.File});return t._fileChanged("savedFile",i,s,{saved:!0},""),null==e?void 0:e(null)}catch(t){return null==e?void 0:e("Unable to temporarily save copied file")}}))},e.prototype.openAndClearTempFile=function(){this._event("willOpenFile",{op:"openAndClearTempFile"});try{var e="cfm-tempfile",t=JSON.parse(window.localStorage.getItem(e)),r=t.name,n=t.stringContent,i=D.cloudContentFactory.createEnvelopedCloudContent(n);i=this._filterLoadedContent(i);var a=new D.CloudMetadata({name:r,type:D.CloudMetadata.File});return this._fileOpened(i,a,{dirty:!0,openedContent:i.clone()}),window.localStorage.removeItem(e)}catch(e){(0,b.reportError)("Unable to load temp file")}},e.prototype._sharedMetadata=function(){var e;return(null===(e=this.state.currentContent)||void 0===e?void 0:e.getSharedMetadata())||{}},e.prototype.shareGetLink=function(){return this._ui.shareDialog(this)},e.prototype.shareUpdate=function(){var e=this;return this.share((function(){return e.alert((0,u.default)("~SHARE_UPDATE.MESSAGE"),(0,u.default)("~SHARE_UPDATE.TITLE"))}))},e.prototype.toggleShare=function(e){return this.isShared()?this.unshare(e):this.share(e)},e.prototype.isShared=function(){var e,t=null===(e=this.state)||void 0===e?void 0:e.currentContent;if(t&&!t.get("isUnshared")){var r=t.get("sharedDocumentId"),n=t.get("sharedDocumentUrl");return r||n}return!1},e.prototype.canEditShared=function(){var e=(null!=this.state.currentContent?this.state.currentContent.get("accessKeys"):void 0)||{};return((null!=this.state.currentContent?this.state.currentContent.get("shareEditKey"):void 0)||e.readWrite)&&!(null!=this.state.currentContent?this.state.currentContent.get("isUnshared"):void 0)},e.prototype.setShareState=function(e,t){var r=this;if(this.state.shareProvider){var n=this.state.shareProvider.getSharingMetadata(e);return this._event("getContent",{shared:n},(function(i){r._setState({sharing:e});var a=D.cloudContentFactory.createEnvelopedCloudContent(i);a.addMetadata(n);var o=r._createOrUpdateCurrentContent(i,r.state.metadata);return a.set("docName",o.get("docName")),r.state.metadata&&(a.getClientContent().name=r.state.metadata.name),e?o.remove("isUnshared"):o.set("isUnshared",!0),r.state.shareProvider.share(e,o,a,r.state.metadata,(function(e,n){return e?r.alert(e):null==t?void 0:t(null,n,o)}))}))}},e.prototype.share=function(e){var t=this;return this.state.metadata||(this.state.metadata=new D.CloudMetadata({name:(0,u.default)("~MENUBAR.UNTITLED_DOCUMENT"),type:D.CloudMetadata.File})),this.setShareState(!0,(function(r,n,i){return t._fileChanged("sharedFile",i,t.state.metadata),null==e?void 0:e(null,n)}))},e.prototype.unshare=function(e){var t=this;return this.setShareState(!1,(function(r,n,i){return t._fileChanged("unsharedFile",i,t.state.metadata),null==e?void 0:e(null)}))},e.prototype.revertToShared=function(e){var t,r,n,i=this;void 0===e&&(e=null);var a=(null===(t=this.state.currentContent)||void 0===t?void 0:t.get("sharedDocumentUrl"))||(null===(r=this.state.currentContent)||void 0===r?void 0:r.get("url"))||(null===(n=this.state.currentContent)||void 0===n?void 0:n.get("sharedDocumentId"));if(a&&null!=this.state.shareProvider)return this.state.shareProvider.loadSharedContent(a,(function(t,r,n){var a;return t?i.alert(t):(r=i._filterLoadedContent(r),i.state.currentContent.copyMetadataTo(r),!n.name&&(a=r.get("docName"))&&(n.name=a),i._fileOpened(r,n,{dirty:!0,openedContent:r.clone()}),null==e?void 0:e(null))}))},e.prototype.revertToSharedDialog=function(e){var t=this;if(void 0===e&&(e=null),(null!=this.state.currentContent?this.state.currentContent.get("sharedDocumentId"):void 0)&&null!=this.state.shareProvider)return this.confirm((0,u.default)("~CONFIRM.REVERT_TO_SHARED_VIEW"),(function(){return t.revertToShared(e)}))},e.prototype.downloadDialog=function(e){var t=this;return void 0===e&&(e=null),this._event("getContent",{shared:this._sharedMetadata()},(function(r){var n,i=D.cloudContentFactory.createEnvelopedCloudContent(r);return null!=t.state.currentContent&&t.state.currentContent.copyMetadataTo(i),t._ui.downloadDialog(null===(n=t.state.metadata)||void 0===n?void 0:n.name,i,e)}))},e.prototype.getDownloadBlob=function(e,t,r){var n,i;if(null==r&&(r="text/plain"),"string"==typeof e)i=r.indexOf("image")>=0?d.default.toByteArray(e):e;else if(t)i=JSON.stringify(e.getContent());else{var a=e.clone().getContent();delete a.sharedDocumentId,delete a.sharedDocumentUrl,delete a.shareEditKey,delete a.isUnshared,delete a.accessKeys,null!=(null===(n=a.metadata)||void 0===n?void 0:n.shared)&&delete a.metadata.shared,i=JSON.stringify(a)}return new Blob([i],{type:r})},e.prototype.getDownloadUrl=function(e,t,r){null==r&&(r="text/plain");var n=window.URL||window.webkitURL;if(n)return n.createObjectURL(this.getDownloadBlob(e,t,r))},e.prototype.rename=function(e,t,r){var n,i=this,a=this.state.dirty,o=function(e){var n;null!=i.state.currentContent&&i.state.currentContent.addMetadata({docName:e.name}),i._fileChanged("renamedFile",i.state.currentContent,e,{dirty:a},i._getHashParams(e));var o=function(){return"function"==typeof r?r(t):void 0};(null===(n=null==e?void 0:e.provider)||void 0===n?void 0:n.name)===v.default.Name||!(null==e?void 0:e.provider)&&!i.autoProvider(D.ECapabilities.save)?o():i.save(o)};if(t!==(null!=this.state.metadata?this.state.metadata.name:void 0))return(null===(n=null==e?void 0:e.provider)||void 0===n?void 0:n.can(D.ECapabilities.rename,e))?this.state.metadata.provider.rename(this.state.metadata,t,(function(e,t){return e?i.alert(e):o(t)})):(e?e.rename(t):e=new D.CloudMetadata({name:t,type:D.CloudMetadata.File}),o(e))},e.prototype.renameDialog=function(e){var t=this;return void 0===e&&(e=null),this._ui.renameDialog(null!=this.state.metadata?this.state.metadata.name:void 0,(function(r){return t.rename(t.state.metadata,r,e)}))},e.prototype.revertToLastOpened=function(e){if(void 0===e&&(e=null),this._event("willOpenFile",{op:"revertToLastOpened"}),null!=this.state.openedContent&&this.state.metadata)return this._fileOpened(this.state.openedContent,this.state.metadata,{openedContent:this.state.openedContent.clone()})},e.prototype.revertToLastOpenedDialog=function(e){var t=this;return void 0===e&&(e=null),null!=this.state.openedContent&&this.state.metadata?this.confirm((0,u.default)("~CONFIRM.REVERT_TO_LAST_OPENED"),(function(){return t.revertToLastOpened(e)})):"function"==typeof e?e("No initial opened version was found for the currently active file"):void 0},e.prototype.saveSecondaryFileAsDialog=function(e,t,r,n){var i=this,a=l.default.getType(t);t&&!r&&a&&(r=a);var o=this.autoProvider(D.ECapabilities.export);if(o){var s={provider:o,extension:t,mimeType:r};return this.saveSecondaryFile(e,s,n)}var c={content:e,extension:t,mimeType:r};return this._ui.saveSecondaryFileAsDialog(c,(function(a){return t&&(a.filename=D.CloudMetadata.newExtension(a.filename,t)),r&&(a.mimeType=r),i.saveSecondaryFile(e,a,n)}))},e.prototype.saveSecondaryFile=function(e,t,r){var n,i=this;if(void 0===r&&(r=null),null===(n=null==t?void 0:t.provider)||void 0===n?void 0:n.can(D.ECapabilities.export,t))return t.provider.saveAsExport(e,t,(function(n,a){return n?i.alert(n):null==r?void 0:r(e,t)}))},e.prototype.dirty=function(e){if(void 0===e&&(e=!0),this._setState({dirty:e,saved:this.state.saved&&!e}),window.self!==window.top)return window.parent.postMessage({type:"cfm::setDirty",isDirty:e},"*")},e.prototype.shouldAutoSave=function(){var e,t=this.state.metadata;return this.state.dirty&&!(null==t?void 0:t.autoSaveDisabled)&&!this.isSaveInProgress()&&(null===(e=null==t?void 0:t.provider)||void 0===e?void 0:e.can(D.ECapabilities.resave,t))},e.prototype.autoSave=function(e){var t=this;if(this._autoSaveInterval&&clearInterval(this._autoSaveInterval),e>1e3&&(e=Math.round(e/1e3)),e>0)return this._autoSaveInterval=window.setInterval((function(){if(t.shouldAutoSave())return t.save()}),1e3*e)},e.prototype.isAutoSaving=function(){return null!=this._autoSaveInterval},e.prototype.changeLanguage=function(e,t){var r,n,i=this;if(t){var a=function(r){return r?(i.alert(r),i.confirm((0,u.default)("~CONFIRM.CHANGE_LANGUAGE"),(function(){return t(e)}))):t(e)};return(null===(n=null===(r=this.state.metadata)||void 0===r?void 0:r.provider)||void 0===n?void 0:n.can(D.ECapabilities.save))?this.save((function(e){return a(e)})):this.saveTempFile(a)}},e.prototype.showBlockingModal=function(e){return this._ui.showBlockingModal(e)},e.prototype.hideBlockingModal=function(){return this._ui.hideBlockingModal()},e.prototype.getCurrentUrl=function(e){return"".concat(window.location.origin).concat(window.location.pathname).concat(window.location.search).concat(e||"")},e.prototype.removeQueryParams=function(e){for(var t=window.location.href,r=t.split("#"),n=0,i=e;n<i.length;n++){var a=i[n],o=new RegExp("([?&])".concat(a,"=.*?(&|#|$)(.*)"),"g");o.test(t)&&(r[0]=r[0].replace(o,"$1$3").replace(/(&|\?)$/,""))}if((t=r[0]+(null!=r[1]?"#".concat(r[1]):""))!==window.location.href)return history.pushState({originalUrl:window.location.href},"",t)},e.prototype.confirm=function(e,t,r){return this.confirmDialog({message:e,callback:t,rejectCallback:r})},e.prototype.confirmDialog=function(e){return this._ui.confirmDialog(e)},e.prototype.alert=function(e,t,r){return c.default.isFunction(t)&&(r=t,t=null),this._ui.alertDialog(e,t||(0,u.default)("~CLIENT_ERROR.TITLE"),r)},e.prototype.hideAlert=function(){this._ui.hideAlertDialog()},e.prototype.selectInteractiveStateDialog=function(e,t){this._event("requiresUserInteraction"),this._ui.selectInteractiveStateDialog(n(n({},e),{onSelect:t}))},e.prototype.onUnload=function(e){return i(this,void 0,void 0,(function(){var t=this;return a(this,(function(r){return e.unloading?[2,new Promise((function(e){var r;(null===(r=t.state.metadata)||void 0===r?void 0:r.provider)?t.save((function(t,r,n){e(n||t)})):e(void 0)}))]:[2,Promise.resolve(void 0)]}))}))},e.prototype._dialogSave=function(e,t,r){var n=this;return null!=e?this.saveFileNoDialog(e,t,r):this._event("getContent",{shared:this._sharedMetadata()},(function(e){return n.saveFileNoDialog(e,t,r)}))},e.prototype._updateMetaDataOverwritable=function(e){null!=e&&(e.overwritable=null==e.overwritable||e.overwritable)},e.prototype._fileChanged=function(e,t,r,n,i){return void 0===i&&(i=null),null==n&&(n={}),this._updateMetaDataOverwritable(r),this._updateState(t,r,n,i),this._event(e,{content:null!=t?t.getClientContent():void 0,shared:this._sharedMetadata()})},e.prototype._fileOpened=function(e,t,r,n){var i,a,o=this;void 0===n&&(n=null),null==r&&(r={});var s={content:null!==(a=null===(i=null==e?void 0:e.getClientContent)||void 0===i?void 0:i.call(e))&&void 0!==a?a:e};this._updateState(e,t,r,n);var c=t.mimeType||t.contentType;return s.metadata={contentType:c,url:t.url,filename:t.filename},this._event("openedFile",s,(function(i,a){return i?o.alert(i,(function(){return o.ready()})):(o._updateMetaDataOverwritable(t),o.appOptions.wrapFileContent||e.addMetadata(a),o._updateState(e,t,r,n),o.ready())}))},e.prototype._updateState=function(e,t,r,i){void 0===r&&(r={}),void 0===i&&(i=null);var a=n({currentContent:e,metadata:t,saving:null,saved:!1,dirty:!r.saved&&(null==e?void 0:e.requiresConversion())},r);return this._setWindowTitle(null==t?void 0:t.name),null!==i&&(window.location.hash=i),this._setState(a)},e.prototype._event=function(e,t,r){var n;void 0===r&&(r=null),null==t&&(t={});for(var i=new w(e,t,r,this.state),a=0,o=this._listeners;a<o.length;a++)(0,o[a])(i);var s="renamedFile"===e;if((null===(n=this.appOptions)||void 0===n?void 0:n.sendPostMessageClientEvents)&&this.iframe&&!s)return i.postMessage(this.iframe.contentWindow)},e.prototype._setState=function(e){return this.state=n(n({},this.state),e),this._event("stateChanged")},e.prototype._resetState=function(){return this._setState({openedContent:null,currentContent:null,metadata:null,dirty:!1,saving:null,saved:!1,failures:0})},e.prototype._closeCurrentFile=function(){var e,t=this.state.metadata;if(null===(e=null==t?void 0:t.provider)||void 0===e?void 0:e.can(D.ECapabilities.close,t))return t.provider.close(t)},e.prototype._createOrUpdateCurrentContent=function(e,t){var r;return void 0===t&&(t=null),null!=this.state.currentContent?(r=this.state.currentContent).setText(e):r=D.cloudContentFactory.createEnvelopedCloudContent(e),null!=t&&r.addMetadata({docName:t.name}),r},e.prototype._setWindowTitle=function(e){var t;if(!(null===(t=this.appOptions)||void 0===t?void 0:t.appSetsWindowTitle)){var r=this.appOptions.ui;if(r){var n=r.windowTitleSeparator,i=r.windowTitleSuffix;if(i){var a=(e||"").length>0?e:(0,u.default)("~MENUBAR.UNTITLED_DOCUMENT");document.title="".concat(a).concat(n).concat(i)}}}},e.prototype._getHashParams=function(e){var t,r,n=(null===(t=null==e?void 0:e.provider)||void 0===t?void 0:t.canOpenSaved())||!1,i=n?null===(r=null==e?void 0:e.provider)||void 0===r?void 0:r.getOpenSavedParams(e):null;return n&&null!=i&&"string"==typeof i?"#file=".concat(e.provider.urlDisplayName||e.provider.name,":").concat(encodeURIComponent(i)):(null==e?void 0:e.provider)instanceof L.default&&0===window.location.hash.indexOf("#file=http")?window.location.hash:""},e.prototype._startPostMessageListener=function(){var e=this;return(0,s.default)(window).on("message",(function(t){var r,n,i=t.originalEvent,a=i.data||{},o=function(e,t){null==t&&(t={});var r=c.default.merge({},t,{type:e});return i.source.postMessage(r,i.origin)};switch(null==a?void 0:a.type){case"cfm::getCommands":return o("cfm::commands",{commands:["cfm::autosave","cfm::event","cfm::event:reply","cfm::setDirty","cfm::iframedClientConnected"]});case"cfm::autosave":return e.shouldAutoSave()?e.save((function(){return o("cfm::autosaved",{saved:!0})})):o("cfm::autosaved",{saved:!1});case"cfm::event":return e._event(a.eventType,a.eventData,(function(){var e=JSON.stringify(Array.prototype.slice.call(arguments));return o("cfm::event:reply",{eventId:a.eventId,callbackArgs:e})}));case"cfm::event:reply":var s=k[a.eventId],l=JSON.parse((null==a?void 0:a.callbackArgs)||null);return null===(r=null==s?void 0:s.callback)||void 0===r?void 0:r.apply(e,l);case"cfm::setDirty":return e.dirty(a.isDirty);case"cfm::iframedClientConnected":return null===(n=e.connectedPromiseResolver)||void 0===n||n.resolve(),e.processUrlParams()}}))},e.prototype._setupConfirmOnClose=function(){var e=this;return(0,s.default)(window).on("beforeunload",(function(t){if(e.state.dirty)return t.preventDefault(),t.returnValue=!0}))},e.prototype._filterLoadedContent=function(e){var t,r;return(null===(r=(t=this.appOptions).contentLoadFilter)||void 0===r?void 0:r.call(t,e))||e},e}();t.CloudFileManagerClient=x},143:function(e,t,r){"use strict";var n=this&&this.__assign||function(){return n=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var i in t=arguments[r])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},n.apply(this,arguments)},i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.CloudFileManager=void 0;var a=i(r(7363)),o=i(r(1533)),s=i(r(8173)),c=r(2428),l=r(8191),u=i(r(9201)),p=function(){function e(){this.DefaultMenu=c.CloudFileManagerUIMenu.DefaultMenu,this.client=new l.CloudFileManagerClient,this.appOptions={}}return e.prototype.init=function(e){this.appOptions=e,this.appOptions.hashParams={sharedContentId:(0,u.default)("shared"),fileParams:(0,u.default)("file"),copyParams:(0,u.default)("copy"),newInFolderParams:(0,u.default)("newInFolder")},this.client.setAppOptions(this.appOptions)},e.prototype.createFrame=function(e,t,r){this.appOptions=e,this.appOptions.usingIframe=!0,this.appOptions.appOrMenuElemId=t,this.init(this.appOptions),this.client.listen(r),this._renderApp(document.getElementById(t))},e.prototype.clientConnect=function(e){try{null!=this.appOptions.appOrMenuElemId?this._renderApp(document.getElementById(this.appOptions.appOrMenuElemId)):this._createHiddenApp()}catch(e){console.error("Unable render app: ".concat(e))}this.client.listen(e),this.client.connect(),this.client.processUrlParams(),window.parent!==window&&window.parent.postMessage({type:"cfm::iframedClientConnected"},"*")},e.prototype._createHiddenApp=function(){var e=document.createElement("div");document.body.appendChild(e),this._renderApp(e)},e.prototype._renderApp=function(e){var t=this.appOptions.renderRoot||o.default.render;this.appOptions.client=this.client,t(a.default.createElement(s.default,n({},this.appOptions)),e),this.client.iframe=e.getElementsByTagName("iframe")[0],this.client.rendered()},e}();t.CloudFileManager=p},9872:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.createReactClassFactory=t.createReactFactory=void 0;var i=n(r(7987)),a=n(r(7363));t.createReactFactory=function(e){return a.default.createElement.bind(null,e)},t.createReactClassFactory=function(e){return(0,t.createReactFactory)((0,i.default)(e))}},5337:function(e,t,r){var n,i=i||function(e){"use strict";if(!(void 0===e||"undefined"!=typeof navigator&&/MSIE [1-9]\./.test(navigator.userAgent))){var t=e.document,r=function(){return e.URL||e.webkitURL||e},n=t.createElementNS("http://www.w3.org/1999/xhtml","a"),i="download"in n,a=/constructor/i.test(e.HTMLElement)||e.safari,o=/CriOS\/[\d]+/.test(navigator.userAgent),s=function(t){(e.setImmediate||e.setTimeout)((function(){throw t}),0)},c=function(e){setTimeout((function(){"string"==typeof e?r().revokeObjectURL(e):e.remove()}),4e4)},l=function(e){return/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob([String.fromCharCode(65279),e],{type:e.type}):e},u=function(t,u,p){p||(t=l(t));var d,h=this,m=function(){!function(e,t,r){for(var n=(t=[].concat(t)).length;n--;){var i=e["on"+t[n]];if("function"==typeof i)try{i.call(e,e)}catch(e){s(e)}}}(h,"writestart progress write writeend".split(" "))};if(h.readyState=h.INIT,i)return d=r().createObjectURL(t),void setTimeout((function(){var e,t;n.href=d,n.download=u,e=n,t=new MouseEvent("click"),e.dispatchEvent(t),m(),c(d),h.readyState=h.DONE}));!function(){if((o||a)&&e.FileReader){var n=new FileReader;return n.onloadend=function(){var t=o?n.result:n.result.replace(/^data:[^;]*;/,"data:attachment/file;");e.open(t,"_blank")||(e.location.href=t),t=void 0,h.readyState=h.DONE,m()},n.readAsDataURL(t),void(h.readyState=h.INIT)}d||(d=r().createObjectURL(t)),e.location.href=d,h.readyState=h.DONE,m(),c(d)}()},p=u.prototype;return"undefined"!=typeof navigator&&navigator.msSaveOrOpenBlob?function(e,t,r){return t=t||e.name||"download",r||(e=l(e)),navigator.msSaveOrOpenBlob(e,t)}:(p.abort=function(){},p.readyState=p.INIT=0,p.WRITING=1,p.DONE=2,p.error=p.onwritestart=p.onprogress=p.onwrite=p.onabort=p.onerror=p.onwriteend=null,function(e,t,r){return new u(e,t||e.name||"download",r)})}}("undefined"!=typeof self&&self||"undefined"!=typeof window&&window||this.content);e.exports?e.exports.saveAs=i:null!==r.amdD&&null!==r.amdO&&(void 0===(n=function(){return i}.call(t,r,t,e))||(e.exports=n))},711:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=a(r(3336)),s=a(r(2611)),c=a(r(6903)),l=r(9872),u=c.default.div,p=c.default.button,d=c.default.span,h=a(r(9396)),m=a(r(9201)),f=a(r(5427)),E=a(r(991)),v=r(9210),_=r(9210),g=r(9210),y=a(r(9612)),A=a(r(2614)),O=r(2826),S=(0,l.createReactClassFactory)({displayName:"DocumentStoreAuthorizationDialog",getInitialState:function(){return{docStoreAvailable:!1}},UNSAFE_componentWillMount:function(){var e=this;return this.props.provider._onDocStoreLoaded((function(){return e.setState({docStoreAvailable:!0})}))},authenticate:function(){return this.props.provider.authorize()},render:function(){return u({className:"document-store-auth"},u({className:"document-store-concord-logo"},""),u({className:"document-store-footer"},this.state.docStoreAvailable?p({onClick:this.authenticate},"Login to Concord"):"Trying to log into Concord..."))}}),R=function(e){function t(r,n){var i=e.call(this,{name:t.Name,displayName:(null==r?void 0:r.displayName)||(0,f.default)("~PROVIDER.DOCUMENT_STORE"),urlDisplayName:null==r?void 0:r.urlDisplayName,capabilities:{save:t.isNotDeprecated(v.ECapabilities.save),resave:t.isNotDeprecated(v.ECapabilities.save),export:!1,load:t.isNotDeprecated(v.ECapabilities.load),list:t.isNotDeprecated(v.ECapabilities.list),remove:t.isNotDeprecated(v.ECapabilities.remove),rename:t.isNotDeprecated(v.ECapabilities.rename),close:!1}})||this;return i._loginWindow=null,i.options=r,i.client=n,i.urlParams={documentServer:(0,h.default)("documentServer"),recordid:(0,h.default)("recordid"),runKey:(0,h.default)("runKey"),docName:(0,h.default)("doc"),docOwner:(0,h.default)("owner")},i.removableQueryParams=["recordid","doc","owner"],i.docStoreUrl=new y.default(i.urlParams.documentServer),i.user=null,i.savedContent=new A.default(i.options.patchObjectHash),i}return i(t,e),Object.defineProperty(t,"deprecationPhase",{get:function(){return 3},enumerable:!1,configurable:!0}),t.isNotDeprecated=function(e){return"save"===e?t.deprecationPhase<2:t.deprecationPhase<3},t.prototype.can=function(t,r){return("save"!==t&&"resave"!==t||!function(e,t){return null!=e?e.owner:void 0}(null==r?void 0:r.providerData))&&e.prototype.can.call(this,t,r)},t.prototype.isAuthorizationRequired=function(){return!(this.urlParams.runKey||this.urlParams.docName&&this.urlParams.docOwner)},t.prototype.authorized=function(e){return this.authCallback=e,this.authCallback?this.user?this.authCallback(!0):this._checkLogin():null!==this.user},t.prototype.authorize=function(e){return this._showLoginWindow(e)},t.prototype._onDocStoreLoaded=function(e){if(this.docStoreLoadedCallback=e,this._docStoreLoaded)return this.docStoreLoadedCallback()},t.prototype._checkLogin=function(){var e=this,t=function(t){if(e.user=t,e._docStoreLoaded=!0,"function"==typeof e.docStoreLoadedCallback&&e.docStoreLoadedCallback(),t&&null!=e._loginWindow&&e._loginWindow.close(),e.authCallback)return e.authCallback(null!=t)};return o.default.ajax({dataType:"json",url:this.docStoreUrl.checkLogin(),xhrFields:{withCredentials:!0},success:function(e){return t(e)},error:function(){return t(null)}})},t.prototype._showLoginWindow=function(e){var t,r,n=this;if(this._loginWindow&&!this._loginWindow.closed)this._loginWindow.focus();else{var i=(1e3,480,t=window.screenLeft||screen.left,r=window.screenTop||screen.top,{left:(window.innerWidth||document.documentElement.clientWidth||screen.width)/2-500+t,top:(window.innerHeight||document.documentElement.clientHeight||screen.height)/2-240+r}),a=["width=".concat(1e3),"height=".concat(480),"top=".concat(i.top)||0,"left=".concat(i.left)||0,"dependent=yes","resizable=no","location=no","dialog=yes","menubar=no"];if(this._loginWindow=window.open(this.docStoreUrl.authorize(),"auth",a.join()),this._loginWindow)var o=setInterval((function(){try{if(n._loginWindow.location.host===window.location.host&&(clearInterval(o),n._loginWindow.close(),n._checkLogin(),e))return e()}catch(e){(0,O.reportError)(e)}}),200)}return this._loginWindow},t.prototype.renderAuthorizationDialog=function(){return S({provider:this,authCallback:this.authCallback})},t.prototype.renderUser=function(){return this.user?d({},d({className:"document-store-icon"}),this.user.name):null},t.prototype.filterTabComponent=function(e,t){return"save"===e&&this.disableForNextSave?(this.disableForNextSave=!1,null):t},t.prototype.deprecationMessage=function(){return'<div style="text-align: left">\n <p style="margin: 10px 0;">\n <strong>\n tr(\'~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE\')}\n </strong>\n </p>\n <p style="margin: 10px 0;">\n tr(\'~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE\')}\n </p>\n</div>'},t.prototype.onProviderTabSelected=function(e){if("save"===e&&this.deprecationMessage())return this.client.alert(this.deprecationMessage(),(0,f.default)("~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE"))},t.prototype.handleUrlParams=function(){return this.urlParams.recordid?(this.client.openProviderFile(this.name,{id:this.urlParams.recordid}),!0):!(!this.urlParams.docName||!this.urlParams.docOwner||(this.client.openProviderFile(this.name,{name:this.urlParams.docName,owner:this.urlParams.docOwner}),0))},t.prototype.list=function(e,t){var r=this;return o.default.ajax({dataType:"json",url:this.docStoreUrl.listDocuments(),context:this,xhrFields:{withCredentials:!0},success:function(e){for(var r=[],n=0,i=Object.keys(e||{});n<i.length;n++){var a=e[i[n]];this.matchesExtension(a.name)&&r.push(new g.CloudMetadata({name:a.name,providerData:{id:a.id},type:g.CloudMetadata.File,provider:this}))}return t(null,r)},error:function(){return t(null,[])},statusCode:{403:function(){return r.user=null,r.authCallback(!1)}}})},t.prototype.load=function(e,t){var r,n,i=this,a=!e.sharedContentId,s=(null!=e.providerData?e.providerData.id:void 0)||e.sharedContentId,c={};return s&&(c.recordid=s),this.urlParams.runKey&&(c.runKey=this.urlParams.runKey),s||((null===(r=e.providerData)||void 0===r?void 0:r.name)&&(c.recordname=e.providerData.name),(null===(n=e.providerData)||void 0===n?void 0:n.owner)&&(c.owner=e.providerData.owner)),o.default.ajax({url:this.docStoreUrl.loadDocument(),dataType:"json",data:c,context:this,xhrFields:{withCredentials:a},success:function(r){var n,i=_.cloudContentFactory.createEnvelopedCloudContent(r);return e.rename(e.name||e.providerData.name||r.docName||r.name||(null===(n=r.content)||void 0===n?void 0:n.name)),e.name&&i.addMetadata({docName:e.filename}),t(null,i)},statusCode:{403:function(){return i.user=null,t((0,f.default)("~DOCSTORE.LOAD_403_ERROR",{filename:e.name||"the file"}),403)}},error:function(r){var n;if(403!==r.status){var i=e.sharedContentId?(0,f.default)("~DOCSTORE.LOAD_SHARED_404_ERROR"):(0,f.default)("~DOCSTORE.LOAD_404_ERROR",{filename:e.name||(null===(n=e.providerData)||void 0===n?void 0:n.id)||"the file"});return t(i)}}})},t.prototype.save=function(e,t,r){var n=this,i=e.getContent(),a=this.savedContent.createPatch(i,this.options.patch&&t.overwritable);if(!a.shouldPatch||a.diffLength){var c={};t.providerData.id&&(c.recordid=t.providerData.id),!a.shouldPatch&&t.filename&&(c.recordname=t.filename),this.urlParams.runKey&&(c.runKey=this.urlParams.runKey);var l="POST",u=a.shouldPatch?this.docStoreUrl.patchDocument(c):this.docStoreUrl.saveDocument(c),p={operation:"save",provider:"DocumentStoreProvider",shouldPatch:a.shouldPatch,method:l,url:u,params:JSON.stringify(c),content:a.sendContent.substr(0,512)};return this.client.log("save",p),o.default.ajax({dataType:"json",type:l,url:u,data:E.default.deflate(a.sendContent),contentType:a.mimeType,processData:!1,beforeSend:function(e){return e.setRequestHeader("Content-Encoding","deflate")},context:this,xhrFields:{withCredentials:!0},success:function(e){return this.savedContent.updateContent(this.options.patch?s.default.cloneDeep(i):null),e.id&&(t.providerData.id=e.id),r(null,e)},statusCode:{403:function(){return n.user=null,r((0,f.default)("~DOCSTORE.SAVE_403_ERROR",{filename:t.name}),403)}},error:function(e){try{if(403===e.status)return;var n=JSON.parse(e.responseText);return"error.duplicate"===n.message?r((0,f.default)("~DOCSTORE.SAVE_DUPLICATE_ERROR",{filename:t.name})):r((0,f.default)("~DOCSTORE.SAVE_ERROR_WITH_MESSAGE",{filename:t.name,message:n.message}))}catch(e){return r((0,f.default)("~DOCSTORE.SAVE_ERROR",{filename:t.name}))}}})}r(null)},t.prototype.remove=function(e,t){var r=this;return o.default.ajax({url:this.docStoreUrl.deleteDocument(),data:{recordname:e.filename},context:this,xhrFields:{withCredentials:!0},success:function(e){return t(null,e)},statusCode:{403:function(){return r.user=null,t((0,f.default)("~DOCSTORE.REMOVE_403_ERROR",{filename:e.name}),403)}},error:function(r){if(403!==r.status)return t((0,f.default)("~DOCSTORE.REMOVE_ERROR",{filename:e.name}))}})},t.prototype.rename=function(e,t,r){var n=this;return o.default.ajax({url:this.docStoreUrl.renameDocument(),data:{recordid:e.providerData.id,newRecordname:g.CloudMetadata.withExtension(t)},context:this,xhrFields:{withCredentials:!0},success:function(n){return e.rename(t),r(null,e)},statusCode:{403:function(){return n.user=null,r((0,f.default)("~DOCSTORE.RENAME_403_ERROR",{filename:e.name}),403)}},error:function(t){if(403!==t.status)return r((0,f.default)("~DOCSTORE.RENAME_ERROR",{filename:e.name}))}})},t.prototype.canOpenSaved=function(){return!0},t.prototype.openSaved=function(e,t){var r=this,n="object"==typeof e?e:{id:e},i=new g.CloudMetadata({type:g.CloudMetadata.File,provider:this,providerData:n});return this.load(i,(function(e,n){return r.client.removeQueryParams(r.removableQueryParams),t(e,n,i)}))},t.prototype.getOpenSavedParams=function(e){return e.providerData.id},t.prototype.fileOpened=function(e,t){var r=this,n=this.options.deprecationPhase||0,i=!!(0,h.default)("launchFromLara")||!!(0,m.default)("lara");if(n&&!i)return this.client.confirmDialog({title:(0,f.default)("~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE"),message:this.deprecationMessage(),yesTitle:(0,f.default)("~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE"),noTitle:(0,f.default)("~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER"),hideNoButton:n>=3,callback:function(){return r.disableForNextSave=!0,r.client.saveFileAsDialog(e)},rejectCallback:function(){n>1&&(r.client.appOptions.autoSaveInterval=null)}})},t.Name="documentStore",t}(v.ProviderInterface);t.default=R},9612:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e){this.docStoreUrl=e||"//document-store.concord.org",this.docStoreUrl=this.docStoreUrl.replace(/\/+$/,"")}return e.prototype.addParams=function(e,t){if(!t)return e;var r=[];for(var n in t){var i=t[n];r.push([n,i].map(encodeURI).join("="))}return e+"?"+r.join("&")},e.prototype.authorize=function(e){return this.addParams("".concat(this.docStoreUrl,"/user/authenticate"),e)},e.prototype.checkLogin=function(e){return this.addParams("".concat(this.docStoreUrl,"/user/info"),e)},e.prototype.listDocuments=function(e){return this.addParams("".concat(this.docStoreUrl,"/document/all"),e)},e.prototype.loadDocument=function(e){return this.addParams("".concat(this.docStoreUrl,"/document/open"),e)},e.prototype.saveDocument=function(e){return this.addParams("".concat(this.docStoreUrl,"/document/save"),e)},e.prototype.patchDocument=function(e){return this.addParams("".concat(this.docStoreUrl,"/document/patch"),e)},e.prototype.deleteDocument=function(e){return this.addParams("".concat(this.docStoreUrl,"/document/delete"),e)},e.prototype.renameDocument=function(e){return this.addParams("".concat(this.docStoreUrl,"/document/rename"),e)},e.prototype.v2Document=function(e,t){return this.addParams("".concat(this.docStoreUrl,"/v2/documents/").concat(e),t)},e.prototype.v2CreateDocument=function(e){return{method:"POST",url:this.v2Document("",e)}},e.prototype.v2LoadDocument=function(e,t){return{method:"GET",url:this.v2Document(e,t)}},e.prototype.v2SaveDocument=function(e,t){return{method:"PUT",url:this.v2Document(e,t)}},e.prototype.v2PatchDocument=function(e,t){return{method:"PATCH",url:this.v2Document(e,t)}},e}();t.default=r},8277:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__assign||function(){return a=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var i in t=arguments[r])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},a.apply(this,arguments)},o=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),s=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),c=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)"default"!==r&&Object.prototype.hasOwnProperty.call(e,r)&&o(t,e,r);return s(t,e),t},l=this&&this.__spreadArray||function(e,t,r){if(r||2===arguments.length)for(var n,i=0,a=t.length;i<a;i++)!n&&i in t||(n||(n=Array.prototype.slice.call(t,0,i)),n[i]=t[i]);return e.concat(n||Array.prototype.slice.call(t))},u=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var p,d,h=u(r(6903)),m=r(9872),f=c(r(5427)),E=r(9210);!function(e){e.notLoaded="not-loaded",e.loaded="loaded",e.errored="errored",e.missingScopes="missing-scopes"}(p||(p={})),function(e){e.none="none",e.myDrive="my-drive",e.sharedWithMe="shared-with-me",e.sharedDrives="shared-drives"}(d||(d={}));var v=void 0,_=h.default.div,g=h.default.button,y=h.default.span,A=h.default.strong,O=h.default.input,S=(0,m.createReactClassFactory)({displayName:"GoogleFileDialogTabView",getInitialState:function(){var e,t;return{filename:null!==(t=null===(e=this.props.client.state.metadata)||void 0===e?void 0:e.name)&&void 0!==t?t:(0,f.default)("~MENUBAR.UNTITLED_DOCUMENT")}},save:function(){var e=this.state.filename;if(0!==(e=e.trim()).length){var t=new E.CloudMetadata({name:e,type:E.ICloudFileTypes.File,parent:null,overwritable:!0,provider:this.props.provider,providerData:{id:null}});this.props.onConfirm(t)}},cancel:function(){this.props.onCancel()},isOpen:function(){return"openFile"===this.props.dialog.action},isSave:function(){return!this.isOpen()},showPicker:function(e){var t,r,n,i,a=this.props.provider,o=a.options,s=a.readableMimetypes,c=o.apiKey,l=o.appId,u="file"===e?s.join(","):"nonsense-mimetype-to-filter-out-files/kajhdflkajfhaslkdjfhasdlfkjhsdfkljh",p=new google.picker.DocsView(google.picker.ViewId.DOCS),d=new google.picker.DocsView(google.picker.ViewId.DOCS),h=new google.picker.DocsView(google.picker.ViewId.DOCS),m=new google.picker.DocsView(google.picker.ViewId.DOCS);p.setMimeTypes(u),d.setMimeTypes(u),h.setMimeTypes(u),m.setMimeTypes(u),p.setMode(google.picker.DocsViewMode.LIST),d.setMode(google.picker.DocsViewMode.LIST),h.setMode(google.picker.DocsViewMode.LIST),m.setMode(google.picker.DocsViewMode.LIST),p.setIncludeFolders(!0),d.setIncludeFolders(!0),h.setIncludeFolders(!0),m.setIncludeFolders(!0),"folder"===e&&(p.setSelectFolderEnabled(!0),d.setSelectFolderEnabled(!0),h.setSelectFolderEnabled(!0),m.setSelectFolderEnabled(!0)),p.setOwnedByMe(!0),d.setStarred(!0),m.setEnableDrives(!0),null===(t=p.setLabel)||void 0===t||t.call(p,(0,f.default)("~GOOGLE_DRIVE.MY_DRIVE")),null===(r=h.setLabel)||void 0===r||r.call(h,(0,f.default)("~GOOGLE_DRIVE.SHARED_WITH_ME")),null===(n=m.setLabel)||void 0===n||n.call(m,(0,f.default)("~GOOGLE_DRIVE.SHARED_DRIVES")),null===(i=d.setLabel)||void 0===i||i.call(d,"★ ".concat((0,f.default)("~GOOGLE_DRIVE.STARRED"))),this.picker=(new google.picker.PickerBuilder).setLocale((0,f.getDefaultLang)()).setDeveloperKey(c).setAppId(l).setOAuthToken(this.props.provider.authToken.access_token).setTitle("file"===e?(0,f.default)("~GOOGLE_DRIVE.SELECT_A_FILE"):(0,f.default)("~GOOGLE_DRIVE.SELECT_A_FOLDER")).addView(p).addView(h).addView(m).addView(d).setCallback(this.pickerCallback).build(),this.picker.setVisible(!0)},pickerCallback:function(e){var t=this,r=this.props.client.appOptions.readableExtensions;if(e.action===google.picker.Action.PICKED){var n=e[google.picker.Response.DOCUMENTS][0],i=n[google.picker.Document.TYPE],a=n[google.picker.Document.NAME],o=a,s=n[google.picker.Document.ID],c=n[google.picker.Document.PARENT_ID];if("folder"===i)o=this.state.filename,c=s,s=null;else{if((null==r?void 0:r.length)>0&&!r.map((function(e){return e.trim()})).reduce((function(e,t){return e||a.endsWith(".".concat(t))||0===t.length}),!1))return void this.props.client.alert((0,f.default)("~GOOGLE_DRIVE.SELECT_VALID_FILE"),(0,f.default)("~GOOGLE_DRIVE.SELECT_A_FILE"));this.isSave()&&this.state.filename!==(0,f.default)("~MENUBAR.UNTITLED_DOCUMENT")&&(o=this.state.filename)}var l=c?new E.CloudMetadata({type:E.CloudMetadata.Folder,provider:this.props.provider,providerData:{id:c}}):null,u=new E.CloudMetadata({name:o,type:E.ICloudFileTypes.File,parent:l,overwritable:!0,provider:this.props.provider,providerData:{id:s}});if(this.isOpen())this.props.onConfirm(u);else{var p=function(){return t.props.onConfirm(u)};if(s){var d=(0,f.default)("~FILE_DIALOG.OVERWRITE_CONFIRM",{filename:a});this.props.client.confirm(d,p)}else p()}}else e.action,google.picker.Action.CANCEL},componentDidMount:function(){var e=this;this.observer=new IntersectionObserver((function(t){e.isOpen()&&t.find((function(e){return e.isIntersecting}))&&e.showPicker("file")}),{root:this.ref.parentElement}),this.observer.observe(this.ref)},componentWillUnmount:function(){var e,t;null===(e=this.picker)||void 0===e||e.setVisible(!1),null===(t=this.picker)||void 0===t||t.dispose(),this.observer.unobserve(this.ref)},filenameChanged:function(){this.setState({filename:this.filenameRef.value})},renderLogo:function(){return _({className:"google-drive-concord-logo"},"")},renderUserInfo:function(){var e=this.props.user;if(e)return _({className:"provider-message"},_({},y({style:{marginRight:5}},(0,f.default)("~GOOGLE_DRIVE.USERNAME_LABEL")),A({},e.name)))},renderOpen:function(){var e=this;return _({className:"dialogTab googleFileDialogTab openDialog",ref:function(t){return e.ref=t}},this.renderLogo(),_({className:"main-buttons"},g({onClick:function(){return e.showPicker("file")}},(0,f.default)("~GOOGLE_DRIVE.REOPEN_DRIVE"))),this.renderUserInfo(),_({className:"buttons"},g({onClick:this.cancel},(0,f.default)("~FILE_DIALOG.CANCEL"))))},renderSave:function(){var e=this,t=this.state.filename.trim().length>0,r=t?"":"disabled";return _({className:"dialogTab googleFileDialogTab saveDialog",ref:function(t){return e.ref=t}},O({type:"text",ref:function(t){return e.filenameRef=t},value:this.state.filename,placeholder:(0,f.default)("~FILE_DIALOG.FILENAME"),onChange:this.filenameChanged,onKeyDown:this.watchForEnter}),this.renderLogo(),_({className:"main-buttons"},g({onClick:this.save,className:r,disabled:!t},(0,f.default)("~GOOGLE_DRIVE.QUICK_SAVE")),g({onClick:function(){return e.showPicker("folder")},className:r,disabled:!t},(0,f.default)("~GOOGLE_DRIVE.PICK_FOLDER")),g({onClick:function(){return e.showPicker("file")},className:r,disabled:!t},(0,f.default)("~GOOGLE_DRIVE.PICK_FILE"))),this.renderUserInfo(),_({className:"buttons"},g({onClick:this.cancel},(0,f.default)("~FILE_DIALOG.CANCEL"))))},render:function(){return this.isOpen()?this.renderOpen():this.renderSave()}}),R=(0,m.createReactClassFactory)({displayName:"GoogleDriveAuthorizationDialog",getInitialState:function(){return{apiLoadState:this.props.provider.apiLoadState}},UNSAFE_componentWillMount:function(){var e=this;return this.props.provider.waitForAPILoad().then((function(){if(e._isMounted)return e.setState({apiLoadState:e.props.provider.apiLoadState})}))},componentDidMount:function(){var e=this;this._isMounted=!0,this.setState({apiLoadState:this.props.provider.apiLoadState}),v=function(t){e.setState(t)}},componentWillUnmount:function(){return this._isMounted=!1},authenticate:function(){return this.props.provider.authorize(this.props.provider.authCallback)},render:function(){var e,t=((e={})[p.notLoaded]=(0,f.default)("~GOOGLE_DRIVE.CONNECTING_MESSAGE"),e[p.loaded]=g({onClick:this.authenticate},(0,f.default)("~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL")),e[p.errored]=(0,f.default)("~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE"),e[p.missingScopes]=_({className:"google-drive-missing-scopes"},_({},(0,f.default)("~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE")),_({},g({onClick:this.authenticate},(0,f.default)("~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL")))),e)[this.state.apiLoadState]||"An unknown error occurred!";return _({className:"google-drive-auth"},_({className:"google-drive-concord-logo"},""),_({className:"google-drive-footer"},t))}}),I=function(e){function t(r,n){var i=e.call(this,{name:t.Name,displayName:(null==r?void 0:r.displayName)||(0,f.default)("~PROVIDER.GOOGLE_DRIVE"),urlDisplayName:null==r?void 0:r.urlDisplayName,capabilities:{save:!0,resave:!0,export:!0,load:!0,list:!0,remove:!1,rename:!0,close:!0,setFolder:!0}})||this;if(i.options=r,i.client=n,i.authToken=null,i.user=null,i.apiKey=i.options.apiKey,i.clientId=i.options.clientId,i.appId=i.options.appId,!i.apiKey)throw new Error((0,f.default)("~GOOGLE_DRIVE.ERROR_MISSING_APIKEY"));if(!i.clientId)throw new Error((0,f.default)("~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID"));if(!i.appId)throw new Error((0,f.default)("~GOOGLE_DRIVE.ERROR_MISSING_APPID"));return i.scopes=(i.options.scopes||["https://www.googleapis.com/auth/drive.install","https://www.googleapis.com/auth/drive.file","https://www.googleapis.com/auth/userinfo.profile"]).join(" "),i.mimeType=i.options.mimeType||"text/plain",i.readableMimetypes=i.options.readableMimetypes,i.apiLoadState=p.notLoaded,i.waitForAPILoad().then((function(){return i.apiLoadState=p.loaded})).catch((function(){return i.apiLoadState=p.errored})),i}return i(t,e),t.prototype.authorized=function(e,r){var n=this;return null!=e&&(this.authCallback=e),this.apiLoadState!==p.loaded||e?e?this.authToken?e(!0):(null==r?void 0:r.forceAuthorization)?this.client.confirmDialog({className:"login-to-google-confirm-dialog",title:(0,f.default)("~PROVIDER.GOOGLE_DRIVE"),yesTitle:(0,f.default)("~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL"),hideNoButton:!0,hideTitleText:!0,callback:function(){return n.doAuthorize(t.SHOW_POPUP)}}):this.doAuthorize(t.IMMEDIATE):null!==this.authToken:null!==gapi.client.getToken()},t.prototype.doAuthorize=function(e){var t=this;return this.waitForAPILoad().then((function(){t.tokenClient.callback=function(e){if(!(null==e?void 0:e.error)){var r=l([e],t.scopes.split(" "),!0);google.accounts.oauth2.hasGrantedAllScopes.apply(null,r)?gapi.client.oauth2.userinfo.get().then((function(r){var n=r.result;t.user=n,t.authToken=e,"function"==typeof t.authCallback&&t.authCallback(!0)})):null==v||v({apiLoadState:p.missingScopes})}},e||t.tokenClient.requestAccessToken({prompt:t.promptForConsent?"consent":""})}))},t.prototype.authorize=function(e){this.authCallback=e,this.doAuthorize(!t.IMMEDIATE)},t.prototype.renderAuthorizationDialog=function(){return R({provider:this})},t.prototype.renderUser=function(){return this.user?y({className:"gdrive-user"},y({className:"gdrive-icon"}),this.user.name):null},t.prototype.renderFileDialogTabView=function(e){return S(a(a({},e),{user:this.user,logout:this.logout.bind(this)}))},t.prototype.save=function(e,t,r){var n=this;return this.waitForAPILoad().then((function(){return n.saveFile(e,t,r)}))},t.prototype.load=function(e,t){var r=this;return this.waitForAPILoad().then((function(){return r.loadFile(e,t)}))},t.prototype.can=function(t,r){return!(t===E.ECapabilities.resave&&r&&!r.overwritable)&&e.prototype.can.call(this,t,r)},t.prototype.remove=function(e,t){return this.waitForAPILoad().then((function(){return gapi.client.drive.files.delete({fileId:e.providerData.id}).execute((function(e){return null==t?void 0:t(null==e?void 0:e.error)}))}))},t.prototype.rename=function(e,t,r){return this.waitForAPILoad().then((function(){return gapi.client.drive.files.update({fileId:e.providerData.id,resource:{name:E.CloudMetadata.withExtension(t)}}).execute((function(n){return(null!=n?n.error:void 0)?null==r?void 0:r(n.error):(e.rename(t),null==r?void 0:r(null,e))}))}))},t.prototype.close=function(e,t){},t.prototype.canOpenSaved=function(){return!0},t.prototype.openSaved=function(e,t){var r=e.split(";"),n={type:E.CloudMetadata.File,provider:this,providerData:{id:r[0]}};r.length>1&&(n.providerData.driveId=r[1]);var i=new E.CloudMetadata(n);return this.load(i,(function(e,r){return t(e,r,i)}))},t.prototype.getOpenSavedParams=function(e){var t=[e.providerData.id];return e.providerData.driveId&&t.push(e.providerData.driveId),t.join(";")},t.prototype.fileDialogDisabled=function(e){return!e||e.providerData.driveType===d.sharedDrives&&!e.providerData.driveId},t.prototype.logout=function(){var e;this.user=null,this.authToken=null,this.promptForConsent=!0,gapi.client.setToken(null),null===(e=this.onAuthorizationChangeCallback)||void 0===e||e.call(this,!1)},t.prototype.onAuthorizationChange=function(e){this.onAuthorizationChangeCallback=e},t.prototype.isAuthorizationRequired=function(){return!0},t.prototype.waitForAPILoad=function(){return t.apiLoadPromise||(t.apiLoadPromise=Promise.all([this.waitForGISLoad(),this.waitForGAPILoad()]))},t.prototype.waitForGAPILoad=function(){return t.gapiLoadPromise||(t.gapiLoadPromise=new Promise((function(e,t){var r=document.createElement("script");r.src="https://apis.google.com/js/api.js",r.onload=function(){gapi.load("client",(function(){gapi.load("client:picker",(function(){gapi.client.init({}).then((function(){gapi.client.load("https://www.googleapis.com/discovery/v1/apis/drive/v3/rest"),gapi.client.load("https://www.googleapis.com/discovery/v1/apis/oauth2/v1/rest"),e()})).catch(t)}))}))},document.head.appendChild(r)})))},t.prototype.waitForGISLoad=function(){var e=this;return t.gisLoadPromise||(t.gisLoadPromise=new Promise((function(t){var r=document.createElement("script");r.src="https://accounts.google.com/gsi/client",r.onload=function(){e.tokenClient=google.accounts.oauth2.initTokenClient({client_id:e.clientId,scope:e.scopes}),t()},document.head.appendChild(r)})))},t.prototype.loadFile=function(e,t){var r,n=this,i=(null===(r=e.providerData.shortcutDetails)||void 0===r?void 0:r.targetId)||e.providerData.id,a={fileId:i,fields:"id, mimeType, name, parents, capabilities(canEdit)"},o=e.providerData.driveId;return o&&(a.driveId=o,a.supportsAllDrives=!0),gapi.client.drive.files.get(a).execute((function(r){var a;e.rename(r.name),e.overwritable=r.capabilities.canEdit,e.providerData={id:r.id},o&&(e.providerData.driveId=o),e.mimeType=r.mimeType,null==e.parent&&(null===(a=r.parents)||void 0===a?void 0:a.length)&&(e.parent=new E.CloudMetadata({type:E.CloudMetadata.Folder,provider:n,providerData:{id:r.parents[0]}}));var s=new XMLHttpRequest;return s.open("GET","https://www.googleapis.com/drive/v3/files/".concat(i,"?alt=media")),s.setRequestHeader("Authorization","Bearer ".concat(n.authToken.access_token)),s.onload=function(){switch(s.status){case 200:t(null,E.cloudContentFactory.createEnvelopedCloudContent(s.responseText));break;case 403:t("Sorry, you do not have access to the requested file");break;default:t("Unable to download file content: Error ".concat(s.status))}},s.onerror=function(){return t("Unable to download file content")},s.send()}))},t.prototype.saveFile=function(e,t,r){var n,i,a,o,s,c=this,l="-------314159265358979323846",u=t.mimeType||this.mimeType,p={name:t.filename,mimeType:u},d=(null===(n=t.providerData.shortcutDetails)||void 0===n?void 0:n.targetId)||t.providerData.id,h=!!d,m=null===(i=t.parent)||void 0===i?void 0:i.providerData.driveId;if(!h){var E=(null===(o=null===(a=t.parent)||void 0===a?void 0:a.providerData.shortcutDetails)||void 0===o?void 0:o.targetId)||(null===(s=t.parent)||void 0===s?void 0:s.providerData.id);p.parents=[E||"root"]}m&&(p.driveId=m);var v=JSON.stringify(p),_=Array.from(h?["PATCH","/upload/drive/v3/files/".concat(d)]:["POST","/upload/drive/v3/files"]),g=_[0],y=_[1],A="";0===u.indexOf("image/")&&(A="\r\nContent-Transfer-Encoding: base64");var O=["\r\n--".concat(l,"\r\nContent-Type: application/json; charset=UTF-8\r\n\r\n").concat(v),"\r\n--".concat(l,"\r\nContent-Type: ").concat(u).concat(A,"\r\n\r\n").concat(("function"==typeof e.getContentAsJSON?e.getContentAsJSON():void 0)||e),"\r\n--".concat(l,"--")].join("");return gapi.client.request({path:y,method:g,params:{uploadType:"multipart",supportsAllDrives:!0},headers:{"Content-Type":'multipart/related; boundary="'.concat(l,'"'),"Content-Length":O.length},body:O}).execute((function(e){if(r)return(null!=e?e.error:void 0)?r((0,f.default)("~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG",{message:e.error.message}),e.error.code):e?(t.providerData={id:e.id},m&&(t.providerData.driveId=m),r(null,e)):r(c.apiError(e,(0,f.default)("~GOOGLE_DRIVE.UNABLE_TO_UPLOAD")))}))},t.prototype.apiError=function(e,t){return(null==e?void 0:e.message)?"".concat(t,": ").concat(e.message):t},t.prototype.topLevelDrives=function(){var e=[new E.CloudMetadata({name:(0,f.default)("~GOOGLE_DRIVE.MY_DRIVE"),type:E.CloudMetadata.Folder,provider:this,providerData:{driveType:d.myDrive}}),new E.CloudMetadata({name:(0,f.default)("~GOOGLE_DRIVE.SHARED_WITH_ME"),type:E.CloudMetadata.Folder,provider:this,providerData:{driveType:d.sharedWithMe}})];return this.options.disableSharedDrives||e.push(new E.CloudMetadata({name:(0,f.default)("~GOOGLE_DRIVE.SHARED_DRIVES"),type:E.CloudMetadata.Folder,provider:this,providerData:{driveType:d.sharedDrives}})),e},t.Name="googleDrive",t.hasValidOptions=function(e){return"string"==typeof(null==e?void 0:e.clientId)&&"string"==typeof(null==e?void 0:e.apiKey)},t.IMMEDIATE=!0,t.SHOW_POPUP=!1,t.gisLoadPromise=null,t.gapiLoadPromise=null,t.apiLoadPromise=null,t}(E.ProviderInterface);t.default=I},3137:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__awaiter||function(e,t,r,n){return new(r||(r=Promise))((function(i,a){function o(e){try{c(n.next(e))}catch(e){a(e)}}function s(e){try{c(n.throw(e))}catch(e){a(e)}}function c(e){e.done?i(e.value):function(e){return e instanceof r?e:new r((function(t){t(e)}))}(e.value).then(o,s)}c((n=n.apply(e,t||[])).next())}))},o=this&&this.__generator||function(e,t){var r,n,i,a,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return a={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(c){return function(s){if(r)throw new TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&s[0]?n.return:s[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,s[1])).done)return i;switch(n=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!((i=(i=o.trys).length>0&&i[i.length-1])||6!==s[0]&&2!==s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]<i[3])){o.label=s[1];break}if(6===s[0]&&o.label<i[1]){o.label=i[1],i=s;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(s);break}i[2]&&o.ops.pop(),o.trys.pop();continue}s=t.call(e,o)}catch(e){s=[6,e],n=0}finally{r=i=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,c])}}},s=this&&this.__rest||function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(n=Object.getOwnPropertySymbols(e);i<n.length;i++)t.indexOf(n[i])<0&&Object.prototype.propertyIsEnumerable.call(e,n[i])&&(r[n[i]]=e[n[i]])}return r},c=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.kAttachmentFilename=t.kDynamicAttachmentSizeThreshold=t.kAttachmentUrlParameter=t.setInteractiveState=t.shouldSaveAsAttachment=void 0;var l=c(r(8891)),u=r(2611),p=r(9210),d=r(3770),h=r(2485);t.shouldSaveAsAttachment=function(e){return l.default.parse(location.search).interactiveApi===t.kAttachmentUrlParameter||!!(JSON.stringify(e).length>=t.kDynamicAttachmentSizeThreshold)},t.setInteractiveState=function(e){return a(void 0,void 0,void 0,(function(){var r,n,i,a,s;return o(this,(function(o){switch(o.label){case 0:return n=(0,u.cloneDeep)(e),(0,t.shouldSaveAsAttachment)(n)?(a="application/json"==(i="string"===n?"text/plain":"application/json")?JSON.stringify(n):n,[4,(0,d.writeAttachment)({name:t.kAttachmentFilename,content:a,contentType:i})]):[3,2];case 1:return(s=o.sent()).ok?(r=m(i),[3,3]):[2,{error:s.statusText}];case 2:r=n,o.label=3;case 3:return(0,d.setInteractiveState)(r),(0,d.flushStateUpdates)(),[2,{error:null}]}}))}))},t.kAttachmentUrlParameter="attachment",t.kDynamicAttachmentSizeThreshold=491520,t.kAttachmentFilename="file.json";var m=function(e){return{__attachment__:t.kAttachmentFilename,contentType:e}},f=function(e){function r(t,n){var i=e.call(this,{name:r.Name,capabilities:{save:!0,resave:!0,export:!1,load:!0,list:!1,remove:!1,rename:!1,close:!1}})||this;return i.options=t,i.client=n,i.handleInitInteractive(),i}return i(r,e),r.prototype.getInitInteractiveMessage=function(){var e;return null!==(e=this.initInteractivePromise)&&void 0!==e?e:this.initInteractivePromise=(0,d.getInitInteractiveMessage)()},r.prototype.isReady=function(){return this.readyPromise},r.prototype.logLaraData=function(e,t){var r,n;if(t){var i={operation:"open",runStateUrl:e,run_remote_endpoint:t};null===(n=null===(r=this.options)||void 0===r?void 0:r.logLaraData)||void 0===n||n.call(r,i)}},r.prototype.handleRunRemoteEndpoint=function(e){var t;return a(this,void 0,void 0,(function(){var r,n;return o(this,(function(i){switch(i.label){case 0:return"runtime"!==e.mode?[2]:e&&(null===(t=this.options)||void 0===t?void 0:t.logLaraData)?e.runRemoteEndpoint?(this.logLaraData(e.interactiveStateUrl,e.runRemoteEndpoint),[3,7]):[3,1]:[2];case 1:if(!e.classInfoUrl||!e.interactiveStateUrl)return[3,7];i.label=2;case 2:return i.trys.push([2,6,,7]),[4,fetch(e.interactiveStateUrl,{credentials:"include"})];case 3:return(r=i.sent()).ok?[4,r.json()]:[3,5];case 4:n=i.sent(),this.logLaraData(e.interactiveStateUrl,null==n?void 0:n.run_remote_endpoint),i.label=5;case 5:return[3,7];case 6:return i.sent(),[3,7];case 7:return[2]}}))}))},r.prototype.readAttachmentContent=function(e,t){return a(this,void 0,void 0,(function(){var r;return o(this,(function(n){switch(n.label){case 0:return[4,(0,d.readAttachment)({name:e.__attachment__,interactiveId:t})];case 1:if((r=n.sent()).ok)return[2,"application/json"===e.contentType?r.json():r.text()];throw new Error('Error reading attachment contents! ["'.concat(r.statusText,'"]'))}}))}))},r.prototype.processRawInteractiveState=function(e,r){return a(this,void 0,void 0,(function(){var n;return o(this,(function(i){switch(i.label){case 0:return"object"!=typeof(a=e)||a.__attachment__!==t.kAttachmentFilename?[3,2]:[4,this.readAttachmentContent(e,r)];case 1:return n=i.sent(),[3,3];case 2:n=(0,u.cloneDeep)(e),i.label=3;case 3:return[2,n]}var a}))}))},r.prototype.selectFromInteractiveStates=function(e){return a(this,void 0,void 0,(function(){var t=this;return o(this,(function(r){return[2,new Promise((function(r,n){t.client.selectInteractiveStateDialog(e,(function(e){r(e)}))}))]}))}))},r.prototype.getInitialInteractiveStateAndinteractiveId=function(e){var r;return a(this,void 0,void 0,(function(){var n,i,a,s,c,l,u,p,d;return o(this,(function(o){switch(o.label){case 0:return"authoring"===e.mode||"reportItem"===e.mode?[2,null]:"report"===e.mode?[2,{interactiveState:e.interactiveState}]:(n=e.interactiveState,i=null===(r=e.interactive)||void 0===r?void 0:r.id,a=!!n,s=e.allLinkedStates,i&&(null==s?void 0:s.length)>0?(c=s[0],l=void 0,l=c.updatedAt?s.slice().sort((function(e,t){return new Date(t.updatedAt).getTime()-new Date(e.updatedAt).getTime()}))[0]:c,u=new Date(e.updatedAt||Date.now()),p=new Date(l.updatedAt||Date.now()),d=new Date(c.updatedAt||Date.now()),a&&p&&p>u?[4,this.selectFromInteractiveStates({state1:l,state2:e,interactiveStateAvailable:a})]:[3,6]):[3,10]);case 1:return n=o.sent(),i=n===l.interactiveState?l.interactive.id:e.interactive.id,n!==l.interactiveState?[3,3]:[4,(0,t.setInteractiveState)(null)];case 2:return o.sent(),[3,5];case 3:return[4,(0,t.setInteractiveState)("touch")];case 4:o.sent(),o.label=5;case 5:return[2,{interactiveState:n,interactiveId:i}];case 6:return!a&&c!==l&&d&&p&&p>d?[4,this.selectFromInteractiveStates({state1:l,state2:c,interactiveStateAvailable:a})]:[3,8];case 7:return n=o.sent(),i=n===l.interactiveState?l.interactive.id:c.interactive.id,[2,{interactiveState:n,interactiveId:i}];case 8:return a||!c?[3,10]:(n=c.interactiveState,i=c.interactive.id,[4,(0,t.setInteractiveState)(n)]);case 9:o.sent(),o.label=10;case 10:return[2,{interactiveState:n,interactiveId:i}]}}))}))},r.prototype.getInteractiveId=function(e){return"runtime"===e.mode?e.interactive.id:void 0},r.prototype.handleInitialInteractiveState=function(e){return a(this,void 0,void 0,(function(){var t,r,n,i,a;return o(this,(function(o){switch(o.label){case 0:return[4,this.getInitialInteractiveStateAndinteractiveId(e)];case 1:r=o.sent(),n=r.interactiveState,i=r.interactiveId,o.label=2;case 2:return o.trys.push([2,4,,5]),[4,this.processRawInteractiveState(n,i)];case 3:return t=o.sent(),[3,5];case 4:return o.sent(),[3,5];case 5:return a={documentId:l.default.parse(location.search).documentId,interactiveState:t},this.client.openProviderFileWhenConnected(this.name,a),[2]}}))}))},r.prototype.handleInitInteractive=function(){var e=this;this.readyPromise=new Promise((function(t){e.getInitInteractiveMessage().then((function(r){e.initInteractiveMessage=r,Promise.all([e.handleRunRemoteEndpoint(r),e.handleInitialInteractiveState(r)]).then((function(){return t(!0)}))}))}))},r.prototype.handleUrlParams=function(){if(void 0!==l.default.parse(location.search).interactiveApi)return!0},r.prototype.filterTabComponent=function(e,t){return null},r.prototype.load=function(e,t){return a(this,void 0,void 0,(function(){var r,n,i,a,s,c,l;return o(this,(function(o){switch(o.label){case 0:return[4,this.getInitInteractiveMessage()];case 1:r=o.sent(),o.label=2;case 2:return o.trys.push([2,5,,6]),n=this.getInteractiveId(r),a=this.rewriteInteractiveState,s=this.processRawInteractiveState,[4,(0,u.cloneDeep)((0,d.getInteractiveState)())];case 3:return[4,s.apply(this,[o.sent(),n])];case 4:return i=a.apply(this,[o.sent()]),c=p.cloudContentFactory.createEnvelopedCloudContent(i),t(null,c,e),[3,6];case 5:return l=o.sent(),t(l.message),[3,6];case 6:return[2]}}))}))},r.prototype.save=function(e,r,n,i){return a(this,void 0,void 0,(function(){var r,i;return o(this,(function(a){switch(a.label){case 0:return[4,this.getInitInteractiveMessage()];case 1:return a.sent(),r=e.getContent(),[4,(0,t.setInteractiveState)(r)];case 2:return(i=a.sent()).error?null==n||n(i.error):null==n||n(null,200,r),[2]}}))}))},r.prototype.canOpenSaved=function(){return!0},r.prototype.getOpenSavedParams=function(e){return e.providerData},r.prototype.openSaved=function(e,r){return a(this,void 0,void 0,(function(){var n,i,a,c,l,u,d,m,f=this;return o(this,(function(o){switch(o.label){case 0:return n=e.interactiveState,i=s(e,["interactiveState"]),a=function(e){var t=p.cloudContentFactory.createEnvelopedCloudContent(e),n=new p.CloudMetadata({type:p.CloudMetadata.File,provider:f,providerData:i});r(null,t,n)},null==n||(0,h.isEmptyObject)(n)?[3,1]:(a(this.rewriteInteractiveState(n)),[3,13]);case 1:if(!e.documentId)return[3,11];o.label=2;case 2:return o.trys.push([2,9,,10]),[4,fetch(e.documentId)];case 3:return c=o.sent(),u=this.rewriteInteractiveState,c.ok?[4,c.json()]:[3,5];case 4:return d=o.sent(),[3,6];case 5:d=void 0,o.label=6;case 6:return(l=u.apply(this,[d]))?[4,(0,t.setInteractiveState)(l)]:[3,8];case 7:(m=o.sent()).error?r(m.error):a(l),o.label=8;case 8:return[2];case 9:return o.sent(),[3,10];case 10:return r("Unable to open saved document: ".concat(e.documentId,"!")),[3,13];case 11:return[4,(0,t.setInteractiveState)("")];case 12:o.sent(),a(""),o.label=13;case 13:return[2]}}))}))},r.prototype.rewriteInteractiveState=function(e){var t,r;if(e&&this.isObject(e)){var n=null===(r=null===(t=this.initInteractiveMessage)||void 0===t?void 0:t.hostFeatures)||void 0===r?void 0:r.domain;n&&this.rewriteSensorInteractiveUrls(e,n)}return e},r.prototype.isObject=function(e){return!(!e||"object"!=typeof e)},r.prototype.rewriteSensorInteractiveUrls=function(e,t){if(Array.isArray(e))for(var r=0,n=e;r<n.length;r++){var i=n[r];this.rewriteSensorInteractiveUrls(i,t)}else if(this.isObject(e))for(var a in e){var o=e[a];if("string"==typeof o){var s=o.trim().match(/^(https?:\/\/)([^\/]+)(\/sensor-interactive\/.*)$/);s&&(e[a]="".concat(s[1]).concat(t).concat(s[3]))}else(this.isObject(o)||Array.isArray(o))&&this.rewriteSensorInteractiveUrls(o,t)}},r.Name="interactiveApi",r}(p.ProviderInterface);t.default=f},9624:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=a(r(3336)),s=r(9210),c=a(r(9612)),l=a(r(2614)),u=a(r(9396)),p=r(3578),d=a(r(991)),h=a(r(2611)),m=function(e){function t(r,n){var i=e.call(this,{name:t.Name,capabilities:{save:!0,resave:!0,export:!1,load:!0,list:!1,remove:!1,rename:!1,close:!1}})||this;return i.options=r,i.client=n,i.urlParams={documentServer:(0,u.default)("documentServer"),launchFromLara:(0,u.default)("launchFromLara")},i.removableQueryParams=["launchFromLara","runAsGuest"],i.laraParams=i.urlParams.launchFromLara?i.decodeParams(i.urlParams.launchFromLara):null,i.openSavedParams=null,i.collaboratorUrls=[],i.docStoreUrl=new c.default(i.urlParams.documentServer),i.savedContent=new l.default(i.options.patchObjectHash),i}return i(t,e),t.prototype.encodeParams=function(e){return p.Base64.encodeURI(JSON.stringify(e))},t.prototype.decodeParams=function(e){var t;try{t=JSON.parse(p.Base64.decode(e))}catch(e){t=null}return t},t.prototype.handleUrlParams=function(){return!!this.laraParams&&(this.client.openProviderFile(this.name,this.laraParams),!0)},t.prototype.logLaraData=function(e){var t;return(null===(t=this.collaboratorUrls)||void 0===t?void 0:t.length)&&(e.collaboratorUrls=this.collaboratorUrls),this.options.logLaraData&&this.options.logLaraData(e),this.client.log("logLaraData",e)},t.prototype.filterTabComponent=function(e,t){return null},t.prototype.extractRawDataFromRunState=function(e){var t=(null==e?void 0:e.raw_data)||{};if("string"==typeof t)try{t=JSON.parse(t)}catch(e){t={}}return t},t.prototype.can=function(t,r){var n,i,a,o,s=null!=(null===(i=null===(n=null==r?void 0:r.providerData)||void 0===n?void 0:n.accessKeys)||void 0===i?void 0:i.readOnly)&&null==(null===(o=null===(a=null==r?void 0:r.providerData)||void 0===a?void 0:a.accessKeys)||void 0===o?void 0:o.readWrite),c=["save","resave","remove","rename"].indexOf(t)>=0;return e.prototype.can.call(this,t,r)&&!(c&&s)},t.prototype.load=function(e,t){var r,n,i,a,c,l,u=this,p=this.docStoreUrl.v2LoadDocument(null===(r=e.providerData)||void 0===r?void 0:r.recordid),d=p.method,h=p.url;return(null===(i=null===(n=e.providerData)||void 0===n?void 0:n.accessKeys)||void 0===i?void 0:i.readOnly)?l="RO::".concat(e.providerData.accessKeys.readOnly):(null===(c=null===(a=e.providerData)||void 0===a?void 0:a.accessKeys)||void 0===c?void 0:c.readWrite)&&(l="RW::".concat(e.providerData.accessKeys.readWrite)),o.default.ajax({type:d,url:h,dataType:"json",data:{accessKey:l},context:this,success:function(r){var n,i;u.logLaraData({operation:"open",documentID:null===(n=e.providerData)||void 0===n?void 0:n.recordid,documentUrl:h});var a=s.cloudContentFactory.createEnvelopedCloudContent(r);return e.rename(e.name||r.docName||r.name||(null===(i=r.content)||void 0===i?void 0:i.name)),e.name&&a.addMetadata({docName:e.filename}),t(null,a)},error:function(r){var n;return t("Unable to load ".concat(e.name||(null===(n=e.providerData)||void 0===n?void 0:n.recordid)||"file"))}})},t.prototype.save=function(e,t,r,n){var i,a,s=e.getContent(),c=this.options.patch&&t.overwritable&&!n,l=this.savedContent.createPatch(s,c);if(!l.shouldPatch||l.diffLength){var u={};!l.shouldPatch&&t.filename&&(u.recordname=t.filename),null!=(null===(a=null===(i=null==t?void 0:t.providerData)||void 0===i?void 0:i.accessKeys)||void 0===a?void 0:a.readWrite)&&(u.accessKey="RW::".concat(t.providerData.accessKeys.readWrite));var p=l.shouldPatch?this.docStoreUrl.v2PatchDocument(t.providerData.recordid,u):this.docStoreUrl.v2SaveDocument(t.providerData.recordid,u),m=p.method,f=p.url,E={operation:"save",provider:"LaraProvider",shouldPatch:l.shouldPatch,method:m,url:f.substr(0,f.indexOf("accessKey")+16)+"...",params:JSON.stringify({recordname:u.recordname}),content:l.sendContent.substr(0,512)};return this.client.log("save",E),o.default.ajax({dataType:"json",type:m,url:f,data:d.default.deflate(l.sendContent),contentType:l.mimeType,processData:!1,beforeSend:function(e){return e.setRequestHeader("Content-Encoding","deflate")},context:this,success:function(e){return this.savedContent.updateContent(this.options.patch?h.default.cloneDeep(s):null),e.recordid&&(t.providerData.recordid=e.recordid),r(null,e)},error:function(n){if(l.shouldPatch)return this.save(e,t,r,!0);try{var i=JSON.parse(n.responseText);return"error.duplicate"===i.message?r("Unable to create ".concat(t.name,". File already exists.")):r("Unable to save ".concat(t.name,": [").concat(i.message,"]"))}catch(e){return r("Unable to save ".concat(t.name))}}})}r(null)},t.prototype.canOpenSaved=function(){return!0},t.prototype.openSaved=function(e,t){var r,n=this,i=new s.CloudMetadata({type:s.CloudMetadata.File,provider:this}),a="string"==typeof e?this.decodeParams(e):e;this.openSavedParams=a,this.collaboratorUrls=(null===(r=null==a?void 0:a.collaboratorUrls)||void 0===r?void 0:r.length)?a.collaboratorUrls:[];var c=function(e,t){return i.providerData=e,n.load(i,(function(e,r){n.client.removeQueryParams(n.removableQueryParams),t(e,r,i)}))};if(null==a?void 0:a.recordid)return c(a,t);if(!(null==a?void 0:a.url))return t("Cannot open the specified document");o.default.ajax({type:"GET",url:a.url,dataType:"json",xhrFields:{withCredentials:!0}}).done((function(e,r,i){var s={operation:"open",runStateUrl:a.url,documentID:a.source};return null!=(null==e?void 0:e.run_remote_endpoint)&&(s.run_remote_endpoint=e.run_remote_endpoint),n.logLaraData(s),function(e,r,i,a){var s,l,u=n.extractRawDataFromRunState(a),p=u.docStore,m=n.collaboratorUrls.length>0,f=function(e,t,r){var n=h.default.cloneDeep(u);n.docStore=t;var i=JSON.stringify(n),a="string"==typeof(null==n?void 0:n.learner_url)?n.learner_url:null,s=a?"&learner_url=".concat(encodeURIComponent(a)):"",c=e.slice(),l=function(){0===c.length?r(null):function(e,t){o.default.ajax({type:"PUT",url:"".concat(e,"?raw_data=").concat(encodeURIComponent(i)).concat(s),dataType:"json",xhrFields:{withCredentials:!0}}).done((function(e,r,n){return!1===(null==e?void 0:e.success)?t("Could not open the specified document because an error occurred [updateState] (".concat(e.message,")")):t(null)})).fail((function(e,r,n){return t("Could not open the specified document because an error occurred [updateState]")}))}(c.shift(),(function(e){e?r(e):l()}))};l()},E=function(e){p={recordid:e.id,accessKeys:{readOnly:e.readAccessKey,readWrite:e.readWriteAccessKey}};var t=window.location.origin?"".concat(window.location.origin).concat(window.location.pathname):"".concat(window.location.protocol,"//").concat(window.location.host).concat(window.location.pathname),r={recordid:e.id,accessKeys:{readOnly:e.readAccessKey}},i=n.encodeParams(r);return null==u.lara_options&&(u.lara_options={}),u.lara_options.reporting_url="".concat(t,"?launchFromLara=").concat(i)};if((null==p?void 0:p.recordid)&&((null===(s=p.accessKeys)||void 0===s?void 0:s.readOnly)||(null===(l=p.accessKeys)||void 0===l?void 0:l.readWrite))){var v=function(e){var t={source:p.recordid,accessKey:"RO::".concat(p.accessKeys.readOnly)},r=n.docStoreUrl.v2CreateDocument(t),i=r.method,a=r.url;return o.default.ajax({type:i,url:a,dataType:"json"}).done((function(t,r,i){var o={operation:"clone",documentID:p.recordid,documentUrl:a};return null!=(null!=u?u.run_remote_endpoint:void 0)&&(o.run_remote_endpoint=u.run_remote_endpoint),n.logLaraData(o),E(t),e(null)})).fail((function(t,r,n){return e("Could not open the specified document because an error occurred [createCopy]")}))},_=function(e,t){if(e)return t(e);var r=h.default.cloneDeep(p);return r.collaborator="follower",f(n.collaboratorUrls,r,t)},g=function(t,r){return t?r(t):(p.collaborator="leader",f([e],p,r))},y=function(t,r){return t?r(t):(delete p.collaborator,f([e],p,r))},A=function(e){return e?t(e):c(h.default.cloneDeep(p),t)};return p.collaborator?"leader"===p.collaborator?m?_(null,A):v((function(e){return y(e,A)})):v(m?function(e){return g(e,(function(e){return _(e,A)}))}:function(e){return y(e,A)}):m?g(null,(function(e){return _(e,A)})):A()}if(r){var O=function(r,i,a){E(r),m&&(p.collaborator="leader");var o=h.default.merge({},p,{url:e}),s=function(){return c(o,t)};return f([e],p,(function(e){return e?t(e):m?(p.collaborator="follower",f(n.collaboratorUrls,p,(function(e){return e?t(e):s()}))):s()}))},S=function(e,r,n){t("Could not open the specified document because an error occurred [createCopy]")};if("string"!=typeof r||!r.match(/^http?s/)){var R={source:r};i&&(R.accessKey="RO::".concat(i));var I=n.docStoreUrl.v2CreateDocument(R),L=I.method,C=I.url;return o.default.ajax({type:L,url:C,dataType:"json"}).done(O).fail(S)}o.default.ajax({url:r}).done((function(e){var t=n.docStoreUrl.v2CreateDocument({}),r=t.method,i=t.url,a="string"==typeof e?e:JSON.stringify(e);return o.default.ajax({type:r,dataType:"json",contentType:"application/json",processData:!1,data:d.default.deflate(a),beforeSend:function(e){return e.setRequestHeader("Content-Encoding","deflate")},url:i}).done(O).fail(S)})).fail(S)}else t("Could not open the specified document because an error occurred [noSource]")}(a.url,a.source,a.readOnlyKey,e)})).fail((function(e,r,n){return t("Could not open the specified document because an error occurred [getState]")}))},t.prototype.getOpenSavedParams=function(e){var t=this.openSavedParams?this.openSavedParams:this.laraParams?{url:this.laraParams.url,source:this.laraParams.source}:e;return this.encodeParams(t)},t.Name="lara",t}(s.ProviderInterface);t.default=m},5254:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=r(9872),s=a(r(5427)),c=r(9210),l=a(r(9336)),u=a(r(8310)),p=(0,o.createReactFactory)(l.default),d=(0,o.createReactFactory)(u.default),h=function(e){function t(r,n){var i=e.call(this,{name:t.Name,displayName:r.displayName||(0,s.default)("~PROVIDER.LOCAL_FILE"),urlDisplayName:r.urlDisplayName||t.Name,capabilities:{save:!0,resave:!1,export:!0,load:!0,list:!0,remove:!1,rename:!1,close:!1}})||this;return i.options=r,i.client=n,i}return i(t,e),t.prototype.filterTabComponent=function(e,t){return"list"===e?p:"save"===e||"export"===e?d:t},t.prototype.list=function(e,t){},t.prototype.save=function(e,t,r){return"function"==typeof r?r(null):void 0},t.prototype.load=function(e,t){var r=new FileReader;return r.onload=function(e){var r=c.cloudContentFactory.createEnvelopedCloudContent(e.target.result);return t(null,r)},r.readAsText(e.providerData.file)},t.prototype.canOpenSaved=function(){return!1},t.Name="localFile",t}(c.ProviderInterface);t.default=h},3774:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=a(r(5427)),s=r(9210),c=function(e){function t(r,n){var i=e.call(this,{name:t.Name,displayName:(null==r?void 0:r.displayName)||(0,o.default)("~PROVIDER.LOCAL_STORAGE"),urlDisplayName:null==r?void 0:r.urlDisplayName,capabilities:{save:!0,resave:!0,export:!0,load:!0,list:!0,remove:!0,rename:!0,close:!1}})||this;return i.options=r,i.client=n,i}return i(t,e),t.Available=function(){try{var e="LocalStorageProvider::auth";return window.localStorage.setItem(e,e),window.localStorage.removeItem(e),!0}catch(e){return!1}},t.prototype.save=function(e,t,r){var n;try{var i=this._getKey(t.filename);return window.localStorage.setItem(i,(null===(n=e.getContentAsJSON)||void 0===n?void 0:n.call(e))||e),null==r?void 0:r(null)}catch(e){return null==r?void 0:r("Unable to save: ".concat(e.message))}},t.prototype.load=function(e,t){try{var r=window.localStorage.getItem(this._getKey(e.filename));return t(null,s.cloudContentFactory.createEnvelopedCloudContent(r))}catch(r){return t("Unable to load '".concat(e.name,"': ").concat(r.message))}},t.prototype.list=function(e,t,r){for(var n,i=null==r?void 0:r.extension,a=i?[i]:s.CloudMetadata.ReadableExtensions,o=[],c=this._getKey(((null===(n=null==e?void 0:e.path)||void 0===n?void 0:n.call(e))||[]).join("/")),l=0,u=Object.keys(window.localStorage||{});l<u.length;l++){var p=u[l];if(p.substr(0,c.length)===c){var d=p.substr(c.length).split("/"),h=(d[0],d.slice(1)),m=p.substr(c.length);this.matchesExtension(m,a)&&o.push(new s.CloudMetadata({name:m,type:h.length>0?s.CloudMetadata.Folder:s.CloudMetadata.File,parent:e,provider:this}))}}return t(null,o)},t.prototype.remove=function(e,t){try{return window.localStorage.removeItem(this._getKey(e.filename)),null==t?void 0:t(null)}catch(e){return null==t?void 0:t("Unable to delete")}},t.prototype.rename=function(e,t,r){try{var n=window.localStorage.getItem(this._getKey(e.filename));return window.localStorage.setItem(this._getKey(s.CloudMetadata.withExtension(t)),n),window.localStorage.removeItem(this._getKey(e.filename)),e.rename(t),null==r?void 0:r(null,e)}catch(e){return null==r?void 0:r("Unable to rename")}},t.prototype.canOpenSaved=function(){return!0},t.prototype.openSaved=function(e,t){var r=new s.CloudMetadata({name:e,type:s.CloudMetadata.File,parent:null,provider:this});return this.load(r,(function(e,n){return t(e,n,r)}))},t.prototype.getOpenSavedParams=function(e){return e.name},t.prototype._getKey=function(e){return void 0===e&&(e=""),"cfm::".concat(e.replace(/\t/g," "))},t.Name="localStorage",t}(s.ProviderInterface);t.default=c},2614:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(1041)),a=function(){function e(e,t){this.patchObjectHash=e,this.savedContent=t}return e.prototype.createPatch=function(e,t){var r=t&&this.savedContent?this._createDiff(this.savedContent,e):void 0,n={shouldPatch:!1,mimeType:"application/json",contentJson:JSON.stringify(e),diffLength:null==r?void 0:r.length,diffJson:r&&JSON.stringify(r)};return t&&null!=n.diffJson&&n.diffJson.length<n.contentJson.length?(n.shouldPatch=!0,n.sendContent=n.diffJson,n.mimeType="application/json-patch+json"):n.sendContent=n.contentJson,n},e.prototype.updateContent=function(e){return this.savedContent=e},e.prototype._createDiff=function(e,t){try{var r={hash:this.patchObjectHash,invertible:!1},n=JSON.parse(JSON.stringify(e)),a=JSON.parse(JSON.stringify(t));return i.default.diff(n,a,r)}catch(e){return null}},e}();t.default=a},6262:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=r(9210),s=a(r(9396)),c=function(e){function t(r,n){var i=e.call(this,{name:t.Name,capabilities:{save:!1,resave:!1,export:!!(0,s.default)("saveSecondaryFileViaPostMessage")&&"auto",load:!1,list:!1,remove:!1,rename:!1,close:!1}})||this;return i.client=n,i.options=r||{},i}return i(t,e),t.prototype.canOpenSaved=function(){return!1},t.prototype.saveAsExport=function(e,t,r){window.parent.postMessage({action:"saveSecondaryFile",extension:t.extension,mimeType:t.mimeType,content:e},"*"),null==r||r(null)},t.Name="postMessage",t}(o.ProviderInterface);t.default=c},9210:function(e,t,r){"use strict";var n=this&&this.__assign||function(){return n=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var i in t=arguments[r])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},n.apply(this,arguments)},i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.ProviderInterface=t.cloudContentFactory=t.CloudContent=t.CloudMetadata=t.CloudFile=t.ECapabilities=t.ICloudFileTypes=void 0;var a,o=i(r(9638)),s=i(r(2611));!function(e){e.File="file",e.Folder="folder",e.Label="label",e.Extension="extension"}(a||(t.ICloudFileTypes=a={}));t.CloudFile=function(e){this.content=e.content,this.metadata=e.metadata};var c=function(){function e(e){var t,r,n;this.name=e.name,this.type=e.type,this.description=e.description,this.content=e.content,this.url=e.url,this.provider=null!==(t=e.provider)&&void 0!==t?t:null,this.parent=e.parent,this.providerData=null!==(r=e.providerData)&&void 0!==r?r:{},this.overwritable=null===(n=e.overwritable)||void 0===n||n,this.sharedContentId=e.sharedContentId,this.sharedContentSecretKey=e.sharedContentSecretKey,this.mimeType=e.mimeType,this.updateFilename()}return e.mapTypeToCloudMetadataType=function(e){return e||a.File},e.nameIncludesExtension=function(e){return e.indexOf(".")>=0},e.withExtension=function(e,t,r){if(r&&this.nameIncludesExtension(e))return e;var n=this.Extension||t;return n?this.newExtension(e,n):e},e.newExtension=function(e,t){return e.split(".")[0]+"."+t},e.prototype.path=function(){for(var e=[],t=this.parent;null!==t;)e.unshift(t),t=t.parent;return e},e.prototype.rename=function(e){return this.name=e,this.updateFilename()},e.prototype.updateFilename=function(){if(this.filename=this.name,null!=(null!=this.name?this.name.substr:void 0)&&null!=e.Extension&&this.type===a.File){var t=e.Extension.length;if(t>0)return this.name.substr(-t-1)===".".concat(e.Extension)?this.name=this.name.substr(0,this.name.length-(t+1)):this.filename+=".".concat(e.Extension)}},e.Folder=a.Folder,e.File=a.File,e.Label=a.Label,e.Extension=null,e}();t.CloudMetadata=c;var l,u=function(){function e(){this.isClientContent=function(e){return"object"==typeof e&&"metadata"in e&&!!e.metadata},this.envelopeMetadata={cfmVersion:"2.0.0-pre.1",appName:"",appVersion:"",appBuildNum:""}}return e.prototype.setEnvelopeMetadata=function(e){var t;for(t in e)this.envelopeMetadata[t]=e[t]},e.prototype.createEnvelopedCloudContent=function(e){return new p(this.envelopContent(e),this._identifyContentFormat(e))},e.prototype.envelopContent=function(e){return n(n({},this.envelopeMetadata),this._wrapIfNeeded(e))},e.prototype._identifyContentFormat=function(e){if(null!=e){var t={isCfmWrapped:!1,isPreCfmFormat:!1};if((0,o.default)(e))try{e=JSON.parse(e)}catch(e){}return this.isClientContent(e)||(null!=e.cfmVersion||null!=e.content?t.isCfmWrapped=!0:t.isPreCfmFormat=!0),t}},e.prototype._wrapIfNeeded=function(e){if((0,o.default)(e))try{e=JSON.parse(e)}catch(e){}return"object"==typeof e&&null!=(null==e?void 0:e.content)?e:{content:e}},e}(),p=function(){function e(e,t){this.content=null!=e?e:{},this.contentFormat=t}return e.prototype.getContent=function(){return e.wrapFileContent?this.content:this.content.content},e.prototype.getContentAsJSON=function(){return JSON.stringify(this.getContent())},e.prototype.getClientContent=function(){return e.wrapFileContent?this.content.content:this.content},e.prototype.requiresConversion=function(){var t,r;return e.wrapFileContent!==(null===(t=this.contentFormat)||void 0===t?void 0:t.isCfmWrapped)||(null===(r=this.contentFormat)||void 0===r?void 0:r.isPreCfmFormat)},e.prototype.clone=function(){return new e(s.default.cloneDeep(this.content),s.default.cloneDeep(this.contentFormat))},e.prototype.setText=function(e){return this.content.content=e},e.prototype.getText=function(){return null==this.content.content?"":(0,o.default)(this.content.content)?this.content.content:JSON.stringify(this.content.content)},e.prototype.addMetadata=function(e){var t=[];for(var r in e)t.push(this.content[r]=e[r]);return t},e.prototype.get=function(e){return this.content[e]},e.prototype.set=function(e,t){this.content[e]=t},e.prototype.remove=function(e){delete this.content[e]},e.prototype.getSharedMetadata=function(){var e={};return null!=this.content._permissions&&(e._permissions=this.content._permissions),null!=this.content.shareEditKey&&(e.shareEditKey=this.content.shareEditKey),null!=this.content.sharedDocumentId&&(e.sharedDocumentId=this.content.sharedDocumentId),null!=this.content.sharedDocumentUrl&&(e.sharedDocumentUrl=this.content.sharedDocumentUrl),null!=this.content.accessKeys&&(e.accessKeys=this.content.accessKeys),e},e.prototype.copyMetadataTo=function(e){for(var t={},r=0,n=Object.keys(this.content||{});r<n.length;r++){var i=n[r],a=this.content[i];"content"!==i&&(t[i]=a)}return e.addMetadata(t)},e.wrapFileContent=!0,e}();t.CloudContent=p,function(e){e.save="save",e.resave="resave",e.load="load",e.list="list",e.remove="remove",e.rename="rename",e.close="close",e.export="export",e.setFolder="setFolder"}(l||(t.ECapabilities=l={}));var d=function(){function e(e){this.name=e.name,this.displayName=e.displayName,this.urlDisplayName=e.urlDisplayName,this.capabilities=e.capabilities}return e.Available=function(){return!0},e.hasValidOptions=function(e){return!0},e.prototype.can=function(e,t){return!!this.capabilities[e]},e.prototype.canAuto=function(e){return"auto"===this.capabilities[e]},e.prototype.isAuthorizationRequired=function(){return!1},e.prototype.authorized=function(e,t){null==e||e(!0)},e.prototype.authorize=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];console.warn("authorize not implemented")},e.prototype.renderAuthorizationDialog=function(){console.warn("renderAuthorizationDialog not implemented")},e.prototype.renderUser=function(){console.warn("renderUser not implemented")},e.prototype.filterTabComponent=function(e,t){return t},e.prototype.matchesExtension=function(e,t){if(!e)return!1;if(null==(t=t||c.ReadableExtensions)?void 0:t.length){for(var r=0,n=t;r<n.length;r++){var i=n[r];if(e.substr(-i.length)===i)return!0;if(""===i&&-1===e.indexOf("."))return!0}return!1}return!0},e.prototype.handleUrlParams=function(){return!1},e.prototype.dialog=function(e){return this._notImplemented("dialog")},e.prototype.save=function(e,t,r,n){return this._notImplemented("save")},e.prototype.saveAsExport=function(e,t,r){return this.can(l.save,t)?this.save(e,t,r):this._notImplemented("saveAsExport")},e.prototype.load=function(e,t){return this._notImplemented("load")},e.prototype.list=function(e,t,r){return this._notImplemented("list")},e.prototype.remove=function(e,t){return this._notImplemented("remove")},e.prototype.rename=function(e,t,r){return this._notImplemented("rename")},e.prototype.close=function(e,t){return this._notImplemented("close")},e.prototype.setFolder=function(e){return this._notImplemented("setFolder")},e.prototype.canOpenSaved=function(){return!1},e.prototype.openSaved=function(e,t){return this._notImplemented("openSaved")},e.prototype.getOpenSavedParams=function(e){this._notImplemented("getOpenSavedParams")},e.prototype.fileOpened=function(e,t){},e.prototype._notImplemented=function(e){alert("".concat(e," not implemented for ").concat(this.name," provider"))},e.prototype.fileDialogDisabled=function(e){return!1},e}();t.ProviderInterface=d;var h=new u;t.cloudContentFactory=h},3818:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=a(r(3336)),s=a(r(2611)),c=a(r(5427)),l=a(r(9638)),u=a(r(4394)),p=r(9210),d=r(2826),h=function(e){function t(r,n){var i=e.call(this,{name:t.Name,displayName:(null==r?void 0:r.displayName)||(0,c.default)("~PROVIDER.READ_ONLY"),urlDisplayName:null==r?void 0:r.urlDisplayName,capabilities:{save:!1,resave:!1,export:!1,load:!0,list:!0,remove:!1,rename:!1,close:!1}})||this;return i._loadTree=function(e){var t=i.displayName,r=function(r){return Promise.all(i.promises).then((function(){return null!=r?e(null,r):((0,d.reportError)("No contents found for ".concat(t," provider")),e(null,{}))}),(function(){return e("No contents found for ".concat(t," provider"))}))};if(null!==i.tree)return r(i.tree);if(i.options.json)return i.tree=i._convertJSONToMetadataTree(i.options.json),r(i.tree);if(i.options.jsonCallback)return i.options.jsonCallback((function(t,n){return t?e(t):(i.tree=i._convertJSONToMetadataTree(i.options.json),r(i.tree))}));if(i.options.src){var n=i.options.src.replace(/\/[^/]*$/,"/");return o.default.ajax({dataType:"json",url:i.options.src,success:function(e){return i.tree=i._convertJSONToMetadataTree(e,n),i.options.alphabetize&&i.tree.sort((function(e,t){return e.name<t.name?-1:e.name>t.name?1:0})),r(i.tree)},error:function(e,t,n){var a=i._createErrorMetadata(null);return i.tree=[a],r(i.tree)}})}return r(null)},i.options=r,i.client=n,i.tree=null,i.promises=[],i}return i(t,e),t.prototype.load=function(e,t){var r=this;if(!e||(0,u.default)(e&&e.type===p.CloudMetadata.File))return t("Unable to load specified content");if(null!=e.content)t(null,e.content);else if(null!=e.url)o.default.ajax({dataType:"json",url:e.url,success:function(e){return t(null,p.cloudContentFactory.createEnvelopedCloudContent(e))},error:function(){return t("Unable to load '".concat(e.name,"'"))}});else if(null!=(null==e?void 0:e.name))return this._loadTree((function(n,i){if(n)return t(n);var a=r._findFile(i,e.name);null!=a?r.load(a,t):t("Unable to load '".concat(e.name,"'"))}))},t.prototype.list=function(e,t){var r=this;return this._loadTree((function(n,i){if(n)return t(n);var a=(null==e?void 0:e.type)===p.CloudMetadata.Folder?e.providerData.children:r.tree;return t(null,s.default.map(a,(function(e){return new p.CloudMetadata(e)})))}))},t.prototype.canOpenSaved=function(){return!0},t.prototype.openSaved=function(e,t){var r=new p.CloudMetadata({name:unescape(e),type:p.CloudMetadata.File,parent:null,provider:this});return this.load(r,(function(e,n){return t(e,n,r)}))},t.prototype.getOpenSavedParams=function(e){return e.name},t.prototype._convertJSONToMetadataTree=function(e,t,r){var n,i,a=this,s=[];if((0,u.default)(e))for(var c=0,d=Array.from(e);c<d.length;c++){var h=d[c];i=p.CloudMetadata.mapTypeToCloudMetadataType(h.type);var m=h.url||h.location;t&&!(m.startsWith("http://")||m.startsWith("https://")||m.startsWith("//"))&&(m=t+m),n=new p.CloudMetadata({name:h.name,type:i,description:h.description,mimeType:h.mimeType,content:null!=h.content?p.cloudContentFactory.createEnvelopedCloudContent(h.content):void 0,url:m,parent:r,provider:this,providerData:{children:null}}),i===p.CloudMetadata.Folder&&this.promises.push(function(e,r){return new Promise((function(n,i){return null!=e.children?(r.providerData.children=a._convertJSONToMetadataTree(e.children,t,r),n(r)):null!=e.url?o.default.ajax({dataType:"json",url:e.url,success:function(i){return r.providerData.children=a._convertJSONToMetadataTree(i,t,r),(a.options.alphabetize||e.alphabetize)&&r.providerData.children.sort((function(e,t){return e.name<t.name?-1:e.name>t.name?1:0})),n(r)},error:function(e,t,i){var o=a._createErrorMetadata(r);return r.providerData.children=[o],n(r)}}):void 0}))}(h,n)),s.push(n)}else for(var f=0,E=Object.keys(e||{});f<E.length;f++){var v=E[f],_=e[v];i=(0,l.default)(_)?p.CloudMetadata.File:p.CloudMetadata.Folder,n=new p.CloudMetadata({name:v,type:i,content:p.cloudContentFactory.createEnvelopedCloudContent(_),parent:r,provider:this,providerData:{children:null}}),i===p.CloudMetadata.Folder&&(n.providerData.children=this._convertJSONToMetadataTree(_,t,n)),s.push(n)}return s},t.prototype._findFile=function(e,t){for(var r=0,n=Array.from(e);r<n.length;r++){var i=n[r];if((null==i?void 0:i.type)===p.CloudMetadata.File){if((null==i?void 0:i.name)===t)return i}else if(m(null!=i.providerData?i.providerData.children:void 0,(function(e){return e.length}))){var a=this._findFile(i.providerData.children,t);if(null!=a)return a}}return null},t.prototype._createErrorMetadata=function(e){return new p.CloudMetadata({name:(0,c.default)("~FILE_DIALOG.LOAD_FOLDER_ERROR"),type:p.CloudMetadata.Label,content:"",parent:e,provider:this,providerData:{children:null}})},t.Name="readOnly",t}(p.ProviderInterface);function m(e,t){return null!=e?t(e):void 0}t.default=h},1673:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=r(9210),s=r(5792),c=r(2826),l=a(r(5427)),u=function(e){function t(r){var n=this,i={urlDisplayName:"S3 Provider",name:t.Name,displayName:"S3 Provider",capabilities:{save:!0,load:!0,export:!1,resave:!1,list:!1,remove:!1,rename:!1,close:!1}};return(n=e.call(this,i)||this).options=i,n.client=r,n}return i(t,e),t.prototype.save=function(e,t,r){var n=e;"string"!=typeof n&&(n=JSON.stringify(n)),(0,s.createFile)({fileContent:n}).then((function(e){var n=e.publicUrl,i=(e.resourceId,e.readWriteToken);t.sharedContentSecretKey=i,t.url=n,t.sharedDocumentUrl=n,r(n)}))},t.prototype.loadFromUrl=function(e,t,r){fetch(e).then((function(e){if(404!==e.status)return e.json().then((function(e){var n,i=o.cloudContentFactory.createEnvelopedCloudContent(e),a=t.name||t.providerData.name||e.docName||e.name||(null===(n=e.content)||void 0===n?void 0:n.name);return t.rename(a),t.name&&i.addMetadata({docName:t.filename}),r(null,i)})).catch((function(e){r("Unable to load '".concat(t.name,"': ").concat(e.message))}));r((0,l.default)("~DOCSTORE.LOAD_SHARED_404_ERROR"))}))},t.prototype.getLoadUrlFromSharedContentId=function(e){return e.match(/^http/)?e:e.match(/^(\d)+$/)?(0,s.getLegacyUrl)(e):((0,c.reportError)("Can't find URL from sharedDocumentId: \"".concat(e,'"')),null)},t.prototype.load=function(e,t){var r=e.sharedContentId,n=this.getLoadUrlFromSharedContentId(r);null!==n?this.loadFromUrl(n,e,t):t("Unable to load ".concat(r))},t.Name="s3-provider",t}(o.ProviderInterface);t.default=u},8524:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(9210),i=r(5792),a=r(2826),o=r(5029),s=function(){function e(e,t){this.provider=t,this.client=e}return e.prototype.loadSharedContent=function(e,t){var r=new n.CloudMetadata({sharedContentId:e,type:n.ICloudFileTypes.File,overwritable:!1});this.provider.load(r,(function(e,n){return t(e,n,r)}))},e.prototype.getSharingMetadata=function(e){return{_permissions:e?1:0}},e.prototype.updateShare=function(e,t,r,n){(0,i.updateFile)({newFileContent:e,resourceId:t,readWriteToken:r}).then((function(){n(null,t)})).catch((function(e){return(0,a.reportError)(e),n("Unable to update shared file ".concat(e))}))},e.prototype.deleteShare=function(e,t,r){(0,i.deleteFile)({resourceId:e,readWriteToken:t}).then((function(){r(null,e)})).catch((function(e){return(0,a.reportError)(e),r("Unable to delete shared file ".concat(e))}))},e.prototype.createShare=function(e,t,r,n){(0,i.createFile)({fileContent:t}).then((function(t){var i=t.publicUrl,a=t.resourceId,o=t.readWriteToken;return r.sharedContentSecretKey=o,r.url=i,e.addMetadata({sharedDocumentId:a,sharedDocumentUrl:i,accessKeys:{readOnly:i,readWrite:o}}),n(null,o)})).catch((function(e){return n("Unable to share file ".concat(e))}))},e.prototype.share=function(e,t,r,n,i){var a=t.get("sharedDocumentId"),s=t.get("accessKeys"),c=t.get("shareEditKey"),l=(null==s?void 0:s.readWrite)||c,u=r.getContentAsJSON();if(a&&l)0!==l.indexOf("read-write-token")&&((a=s.readOnly)||(a=(0,o.sha256)(l)),l="read-write-token:doc-store-imported:"+l),e?this.updateShare(u,a,l,i):this.deleteShare(a,l,i);else{if(!e)return i("Unable to stop sharing the file - no access key");this.createShare(t,u,n,i)}},e.Name="s3-share-provider",e}();t.default=s},3641:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)});Object.defineProperty(t,"__esModule",{value:!0});var a=r(9210),o=function(e){function t(r,n){var i=e.call(this,{name:t.Name,displayName:(null==r?void 0:r.displayName)||"Test Provider",urlDisplayName:null==r?void 0:r.urlDisplayName,capabilities:{save:!0,resave:!0,export:!0,load:!0,list:!0,remove:!0,rename:!0,close:!1}})||this;return i.options=r,i.client=n,i.files={},i}return i(t,e),t.Available=function(){return!0},t.prototype.save=function(e,t,r){return this.files[t.filename]={content:e,metadata:t},null==r?void 0:r(null)},t.prototype.load=function(e,t){var r=this.files[e.filename];return r?t(null,r.content):t("Unable to load '".concat(e.name,"': file not previously saved"))},t.prototype.list=function(e,t){return t(null,Object.values(this.files).map((function(e){return e.metadata})))},t.prototype.remove=function(e,t){return delete this.files[e.filename],null==t?void 0:t(null)},t.prototype.rename=function(e,t,r){var n=this.files[e.filename];return delete this.files[e.filename],this.files[t]=n,e.name=t,null==r?void 0:r(null,e)},t.prototype.canOpenSaved=function(){return!0},t.prototype.canAuto=function(){return!0},t.prototype.openSaved=function(e,t){var r=new a.CloudMetadata({name:e,type:a.CloudMetadata.File,parent:null,provider:this});return this.load(r,(function(e,n){return t(e,n,r)}))},t.prototype.getOpenSavedParams=function(e){return e.name},t.prototype._getKey=function(e){return void 0===e&&(e=""),"cfm::".concat(e.replace(/\t/g," "))},t.Name="testProvider",t}(a.ProviderInterface);t.default=o},6946:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=a(r(3336)),s=r(9210),c=function(e){function t(r,n){var i=e.call(this,{name:t.name,displayName:"URL Provider",urlDisplayName:(null==r?void 0:r.urlDisplayName)||t.name,capabilities:{save:!1,resave:!1,export:!1,load:!1,list:!1,remove:!1,rename:!1,close:!1}})||this;return i.options=r,i.client=n,i}return i(t,e),t.prototype.canOpenSaved=function(){return!1},t.prototype.openFileFromUrl=function(e,t){var r=new s.CloudMetadata({type:s.ICloudFileTypes.File,url:e,parent:null,provider:this});return o.default.ajax({url:r.url,success:function(e){return t(null,s.cloudContentFactory.createEnvelopedCloudContent(e),r)},error:function(){t("Unable to load document from '".concat(r.url,"'"))}})},t.Name="url-provider",t}(s.ProviderInterface);t.default=c},2428:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.CloudFileManagerUIMenu=t.CloudFileManagerUI=t.CloudFileManagerUIEvent=void 0;var i=n(r(5427)),a=n(r(9638)),o=function(e,t){this.type=e,null==t&&(t={}),this.data=t};t.CloudFileManagerUIEvent=o;var s=function(){function e(e,t){this.options=e,this.items=this.parseMenuItems(e.menu,t)}return e.prototype.parseMenuItems=function(e,t){for(var r,n=this,o=function(e){var r;return(null===(r=t[e])||void 0===r?void 0:r.bind(t))||function(){return t.alert("No ".concat(e," action is available in the client"))}},s=function(e){switch(e){case"revertSubMenu":return function(){return null!=t.state.openedContent&&null!=t.state.metadata||t.canEditShared()};case"revertToLastOpenedDialog":return function(){return null!=t.state.openedContent&&null!=t.state.metadata};case"shareGetLink":case"shareSubMenu":return function(){return null!=t.state.shareProvider};case"revertToSharedDialog":return function(){return t.isShared()};case"shareUpdate":return function(){return t.canEditShared()};default:return!0}},c=function(e){return e?n.parseMenuItems(e,t):null},l={newFileDialog:(0,i.default)("~MENU.NEW"),openFileDialog:(0,i.default)("~MENU.OPEN"),closeFileDialog:(0,i.default)("~MENU.CLOSE"),revertToLastOpenedDialog:(0,i.default)("~MENU.REVERT_TO_LAST_OPENED"),revertToSharedDialog:(0,i.default)("~MENU.REVERT_TO_SHARED_VIEW"),save:(0,i.default)("~MENU.SAVE"),saveFileAsDialog:(0,i.default)("~MENU.SAVE_AS"),saveSecondaryFileAsDialog:(0,i.default)("~MENU.EXPORT_AS"),createCopy:(0,i.default)("~MENU.CREATE_COPY"),shareGetLink:(0,i.default)("~MENU.SHARE_GET_LINK"),shareUpdate:(0,i.default)("~MENU.SHARE_UPDATE"),downloadDialog:(0,i.default)("~MENU.DOWNLOAD"),renameDialog:(0,i.default)("~MENU.RENAME"),revertSubMenu:(0,i.default)("~MENU.REVERT_TO"),shareSubMenu:(0,i.default)("~MENU.SHARE")},u={revertSubMenu:["revertToLastOpenedDialog","revertToSharedDialog"],shareSubMenu:["shareGetLink","shareUpdate"]},p=[],d=0;d<e.length;d++){var h,m=e[d];"separator"===m?h={key:"seperator".concat(d),separator:!0}:(0,a.default)(m)?h={key:m,name:(null===(r=this.options.menuNames)||void 0===r?void 0:r[m])||l[m]||"Unknown item: ".concat(m),enabled:s(m),items:c(u[m]),action:o(m)}:(h=m,(0,a.default)(m.action)?(h.key=m.action,h.enabled=s(m.action),h.action=o(m.action)):h.enabled||(h.enabled=!0),m.items&&(h.items=c(m.items))),p.push(h)}return p},e.DefaultMenu=["newFileDialog","openFileDialog","revertSubMenu","separator","save","createCopy","shareSubMenu","renameDialog"],e}();t.CloudFileManagerUIMenu=s;var c=function(){function e(e){var t=this;this.isInitialized=new Promise((function(e,r){t.resolveIsInitialized=e})),this.client=e,this.menu=null,this.listenerCallbacks=[]}return e.prototype.init=function(e){if(null!==(e=e||{}).menu)return void 0===e.menu&&(e.menu=s.DefaultMenu),this.menu=new s(e,this.client)},e.prototype.listen=function(e){return this.listenerCallbacks.push(e)},e.prototype.listenerCallback=function(e){var t=this;this.isInitialized.then((function(){Array.from(t.listenerCallbacks).map((function(t){return t(e)}))}))},e.prototype.appendMenuItem=function(e){return this.listenerCallback(new o("appendMenuItem",e))},e.prototype.prependMenuItem=function(e){return this.listenerCallback(new o("prependMenuItem",e))},e.prototype.replaceMenuItem=function(e,t){return this.listenerCallback(new o("replaceMenuItem",{key:e,item:t}))},e.prototype.insertMenuItemBefore=function(e,t){return this.listenerCallback(new o("insertMenuItemBefore",{key:e,item:t}))},e.prototype.insertMenuItemAfter=function(e,t){return this.listenerCallback(new o("insertMenuItemAfter",{key:e,item:t}))},e.prototype.setMenuBarInfo=function(e){return this.listenerCallback(new o("setMenuBarInfo",e))},e.prototype.saveFileDialog=function(e){return this._showProviderDialog("saveFile",(0,i.default)("~DIALOG.SAVE"),e)},e.prototype.saveFileAsDialog=function(e){return this._showProviderDialog("saveFileAs",(0,i.default)("~DIALOG.SAVE_AS"),e)},e.prototype.saveSecondaryFileAsDialog=function(e,t){return this._showProviderDialog("saveSecondaryFileAs",(0,i.default)("~DIALOG.EXPORT_AS"),t,e)},e.prototype.openFileDialog=function(e){return this._showProviderDialog("openFile",(0,i.default)("~DIALOG.OPEN"),e)},e.prototype.importDataDialog=function(e){return this.listenerCallback(new o("showImportDialog",{callback:e}))},e.prototype.downloadDialog=function(e,t,r){return this.listenerCallback(new o("showDownloadDialog",{filename:e,content:t,callback:r}))},e.prototype.renameDialog=function(e,t){return this.listenerCallback(new o("showRenameDialog",{filename:e,callback:t}))},e.prototype.shareDialog=function(e,t){return void 0===t&&(t=!1),this.listenerCallback(new o("showShareDialog",{client:e,enableLaraSharing:t}))},e.prototype.showBlockingModal=function(e){return this.listenerCallback(new o("showBlockingModal",e))},e.prototype.hideBlockingModal=function(){return this.listenerCallback(new o("hideBlockingModal"))},e.prototype.editInitialFilename=function(){return this.listenerCallback(new o("editInitialFilename"))},e.prototype.alertDialog=function(e,t,r){return this.listenerCallback(new o("showAlertDialog",{title:t,message:e,callback:r}))},e.prototype.hideAlertDialog=function(){return this.listenerCallback(new o("hideAlertDialog"))},e.prototype.confirmDialog=function(e){return this.listenerCallback(new o("showConfirmDialog",e))},e.prototype.selectInteractiveStateDialog=function(e){return this.listenerCallback(new o("showSelectInteractiveStateDialog",e))},e.prototype._showProviderDialog=function(e,t,r,n){return this.listenerCallback(new o("showProviderDialog",{action:e,title:t,callback:r,data:n}))},e}();t.CloudFileManagerUI=c},7575:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.S3_SHARED_DOC_PATH_LEGACY=t.TOKEN_SERVICE_TOOL_TYPE=t.TOKEN_SERVICE_TOOL_NAME=t.DEFAULT_MAX_AGE_SECONDS=t.getTokenServiceEnv=void 0,t.getTokenServiceEnv=function(){return process.env.TOKEN_SERVICE_ENV||"production"},t.DEFAULT_MAX_AGE_SECONDS=60,t.TOKEN_SERVICE_TOOL_NAME="cfm-shared",t.TOKEN_SERVICE_TOOL_TYPE="s3Folder",t.S3_SHARED_DOC_PATH_LEGACY="legacy-document-store"},9201:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var t=null;return location.hash.substr(1).split("&").some((function(r){if(r.split("=")[0]===e){for(var n=r.split("=")[1];n=decodeURIComponent(n),/%20|%25/.test(n););return t=n}return!1})),t}},9396:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){e=e.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var t="[\\?&]".concat(e,"=([^&#]*)"),r=new RegExp(t).exec(window.location.href);return(null!=r?r.length:void 0)>1?decodeURIComponent(r[1]):null}},4394:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){return Array.isArray(e)}},2485:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isEmptyObject=void 0;var n=r(2611);t.isEmptyObject=function(e){return"object"==typeof e&&(0,n.isEmpty)(e)}},9638:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){return"string"==typeof e}},2826:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.reportError=void 0,t.reportError=function(e){"function"==typeof console.error&&console.error(e)}},5792:function(e,t,r){"use strict";var n=this&&this.__awaiter||function(e,t,r,n){return new(r||(r=Promise))((function(i,a){function o(e){try{c(n.next(e))}catch(e){a(e)}}function s(e){try{c(n.throw(e))}catch(e){a(e)}}function c(e){e.done?i(e.value):function(e){return e instanceof r?e:new r((function(t){t(e)}))}(e.value).then(o,s)}c((n=n.apply(e,t||[])).next())}))},i=this&&this.__generator||function(e,t){var r,n,i,a,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return a={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(c){return function(s){if(r)throw new TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&s[0]?n.return:s[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,s[1])).done)return i;switch(n=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!((i=(i=o.trys).length>0&&i[i.length-1])||6!==s[0]&&2!==s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]<i[3])){o.label=s[1];break}if(6===s[0]&&o.label<i[1]){o.label=i[1],i=s;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(s);break}i[2]&&o.ops.pop(),o.trys.pop();continue}s=t.call(e,o)}catch(e){s=[6,e],n=0}finally{r=i=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,c])}}},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.getLegacyUrl=t.deleteFile=t.updateFile=t.createFile=void 0;var o=r(8296),s=a(r(4405)),c=r(7575),l="file.json";t.createFile=function(e){var t=e.fileContent;return n(void 0,void 0,void 0,(function(){var e,r,n,a,u,p,d,h,m,f,E;return i(this,(function(i){switch(i.label){case 0:return[4,(e=new o.TokenServiceClient({env:(0,c.getTokenServiceEnv)()})).createResource({tool:c.TOKEN_SERVICE_TOOL_NAME,type:c.TOKEN_SERVICE_TOOL_TYPE,name:l,description:"Document created by CFM",accessRuleType:"readWriteToken"})];case 1:return r=i.sent(),n=e.getReadWriteToken(r)||"",[4,e.getCredentials(r.id,n)];case 2:return a=i.sent(),u=r.bucket,p=r.region,d=a.accessKeyId,h=a.secretAccessKey,m=a.sessionToken,f=new s.default({region:p,accessKeyId:d,secretAccessKey:h,sessionToken:m}),E=e.getPublicS3Path(r,l),[4,f.upload({Bucket:u,Key:E,Body:t,ContentType:"text/html",ContentEncoding:"UTF-8",CacheControl:"max-age=".concat(c.DEFAULT_MAX_AGE_SECONDS)}).promise()];case 3:return i.sent(),[2,{publicUrl:e.getPublicS3Url(r,l),resourceId:r.id,readWriteToken:n}]}}))}))},t.updateFile=function(e){var t=e.newFileContent,r=e.resourceId,a=e.readWriteToken;return n(void 0,void 0,void 0,(function(){var e,n,u,p,d,h,m,f,E,v;return i(this,(function(i){switch(i.label){case 0:return[4,(e=new o.TokenServiceClient({env:(0,c.getTokenServiceEnv)()})).getResource(r)];case 1:return n=i.sent(),[4,e.getCredentials(n.id,a)];case 2:return u=i.sent(),p=n.bucket,d=n.region,h=u.accessKeyId,m=u.secretAccessKey,f=u.sessionToken,E=new s.default({region:d,accessKeyId:h,secretAccessKey:m,sessionToken:f}),v=e.getPublicS3Path(n,l),[4,E.upload({Bucket:p,Key:v,Body:t,ContentType:"text/html",ContentEncoding:"UTF-8",CacheControl:"max-age=".concat(c.DEFAULT_MAX_AGE_SECONDS)}).promise()];case 3:return i.sent(),[2]}}))}))},t.deleteFile=function(e){var t=e.resourceId,r=e.readWriteToken;return n(void 0,void 0,void 0,(function(){var e,n,a,u,p,d,h,m,f,E;return i(this,(function(i){switch(i.label){case 0:return[4,(e=new o.TokenServiceClient({env:(0,c.getTokenServiceEnv)()})).getResource(t)];case 1:return n=i.sent(),[4,e.getCredentials(n.id,r)];case 2:return a=i.sent(),u=n.bucket,p=n.region,d=a.accessKeyId,h=a.secretAccessKey,m=a.sessionToken,f=new s.default({region:p,accessKeyId:d,secretAccessKey:h,sessionToken:m}),E=e.getPublicS3Path(n,l),[4,f.deleteObject({Bucket:u,Key:E}).promise()];case 3:return i.sent(),[2]}}))}))},t.getLegacyUrl=function(e){return"".concat("production"===(0,c.getTokenServiceEnv)()?"https://models-resources.concord.org":"https://token-service-files.concordqa.org","/").concat(c.S3_SHARED_DOC_PATH_LEGACY,"/").concat(e)}},5427:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.getDefaultLang=void 0;var i=n(r(8075)),a=n(r(593)),o=n(r(3150)),s=n(r(3080)),c=n(r(1645)),l=n(r(9051)),u=n(r(8537)),p=n(r(5189)),d=n(r(5481)),h=n(r(9258)),m=n(r(8881)),f=n(r(9122)),E=n(r(1556)),v=n(r(5176)),_=n(r(2193)),g=n(r(3878)),y=n(r(8986)),A=[{key:"de",contents:a.default},{key:"el",contents:o.default},{key:"en-US",contents:s.default},{key:"es",contents:c.default},{key:"fa",contents:l.default},{key:"he",contents:u.default},{key:"ja",contents:p.default},{key:"ko",contents:d.default},{key:"nb",contents:h.default},{key:"nn",contents:m.default},{key:"pl",contents:f.default},{key:"pt-BR",contents:E.default},{key:"th",contents:v.default},{key:"tr",contents:_.default},{key:"zh",contents:g.default},{key:"zh-TW",contents:y.default}],O=function(e){return e.split("-")[0]},S={};A.forEach((function(e){S[e.key.toLowerCase()]=e.contents;var t=O(e.key);t&&!S[t]&&(S[t]=e.contents)}));var R,I=i.default.lang||((R=document.documentElement.lang)&&"unknown"!==R?R:void 0)||function(){for(var e=window.navigator,t=e?(e.languages||[]).concat([e.language,e.browserLanguage,e.systemLanguage,e.userLanguage]):[],r=0,n=Array.from(t);r<n.length;r++){var i=n[r];if(i)return i}}(),L=O(I||""),C=I&&S[I.toLowerCase()]?I:L&&S[L]?L:"en",D=/%\{\s*([^}\s]*)\s*\}/g;t.getDefaultLang=function(){return C},t.default=function(e,t,r){null==t&&(t={}),null==r&&(r=C),r=r.toLowerCase();var n=null!=S[r]?S[r][e]:void 0;return null==n&&(n=e),n.replace(D,(function(e,r){return Object.prototype.hasOwnProperty.call(t,r)?t[r]:"'** UKNOWN KEY: ".concat(r," **")}))}},8075:(e,t)=>{"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0});var n={};(null===(r=null===window||void 0===window?void 0:window.location)||void 0===r?void 0:r.search)&&(window.onpopstate=function(){for(var e,t=/\+/g,r=/([^&=]+)=?([^&]*)/g,i=function(e){return decodeURIComponent(e.replace(t," "))},a=window.location.search.substring(1);e=r.exec(a);)n[i(e[1])]=i(e[2])})(),t.default=n},2929:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(7987)),a=n(r(6903)),o=r(9872),s=n(r(3994)),c=n(r(5427)),l=a.default.div,u=a.default.button,p=(0,o.createReactFactory)(s.default);t.default=(0,i.default)({displayName:"AlertDialogView",close:function(){return"function"==typeof this.props.close&&this.props.close(),"function"==typeof this.props.callback?this.props.callback():void 0},render:function(){return p({title:this.props.title||(0,c.default)("~ALERT_DIALOG.TITLE"),close:this.close,zIndex:500},l({className:"alert-dialog"},l({className:"alert-dialog-message",dangerouslySetInnerHTML:{__html:this.props.message}}),l({className:"buttons"},u({onClick:this.close},(0,c.default)("~ALERT_DIALOG.CLOSE")))))}})},8173:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__assign||function(){return a=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var i in t=arguments[r])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},a.apply(this,arguments)},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var s=o(r(2611)),c=o(r(7363)),l=o(r(6903)),u=r(9872),p=o(r(6390)),d=o(r(7164)),h=o(r(5421)),m=o(r(5769)),f=o(r(4470)),E=o(r(7777)),v=o(r(2929)),_=o(r(3331)),g=o(r(4036)),y=o(r(5035)),A=(0,u.createReactFactory)(p.default),O=(0,u.createReactFactory)(d.default),S=(0,u.createReactFactory)(h.default),R=(0,u.createReactFactory)(m.default),I=(0,u.createReactFactory)(E.default),L=(0,u.createReactFactory)(v.default),C=(0,u.createReactFactory)(_.default),D=(0,u.createReactFactory)(g.default),b=(0,u.createReactFactory)(y.default),T=o(r(5427)),N=o(r(9638)),k=l.default.div,w=l.default.iframe,x=(0,u.createReactClassFactory)({displayName:"CloudFileManagerInnerApp",shouldComponentUpdate:function(e){return e.app!==this.props.app},render:function(){return k({className:"innerApp"},w({src:this.props.app,allow:this.props.iframeAllow}))}}),M=function(e){function t(t){var r,n,i,o=e.call(this,t)||this;return o._getMenuItemIndex=function(e){var t;if((0,N.default)(e)){for(t=0;t<o.state.menuItems.length;t++){var r=o.state.menuItems[t];if(("string"==typeof r?r:r.key)===e)return t}return-1}return t=parseInt(e,10),isNaN(t)||t<0||t>o.state.menuItems.length-1?-1:t},o.closeDialogs=function(){return o.setState({providerDialog:null,downloadDialog:null,renameDialog:null,shareDialog:null,importDialog:null,selectInteractiveStateDialog:null})},o.closeAlert=function(){return o.setState({alertDialog:null})},o.closeConfirm=function(){return o.setState({confirmDialog:null})},o.renderDialogs=function(){return k({},function(){var e,t,r,n;if(o.state.blockingModalProps)return I(o.state.blockingModalProps);if(o.state.providerDialog)return O({client:o.props.client,dialog:o.state.providerDialog,close:o.closeDialogs});if(o.state.downloadDialog)return S({client:o.props.client,filename:o.state.downloadDialog.filename,mimeType:o.state.downloadDialog.mimeType,content:o.state.downloadDialog.content,close:o.closeDialogs});if(o.state.renameDialog)return R({filename:o.state.renameDialog.filename,callback:o.state.renameDialog.callback,close:o.closeDialogs});if(o.state.importDialog)return D({client:o.props.client,dialog:o.state.importDialog,close:o.closeDialogs});if(o.state.shareDialog){var i=o.props,s=i.client,l=i.enableLaraSharing,u=i.ui;return c.default.createElement(f.default,{currentBaseUrl:s.getCurrentUrl(),isShared:s.isShared(),sharedDocumentId:null===(t=null===(e=s.state)||void 0===e?void 0:e.currentContent)||void 0===t?void 0:t.get("sharedDocumentId"),sharedDocumentUrl:null===(n=null===(r=s.state)||void 0===r?void 0:r.currentContent)||void 0===n?void 0:n.get("sharedDocumentUrl"),settings:(null==u?void 0:u.shareDialog)||{},enableLaraSharing:l,onAlert:function(e,t){return s.alert(e,t)},onToggleShare:function(e){return s.toggleShare(e)},onUpdateShare:function(){return s.shareUpdate()},close:o.closeDialogs})}return o.state.selectInteractiveStateDialog?c.default.createElement(b,a({},o.state.selectInteractiveStateDialog,{close:o.closeDialogs})):void 0}(),o.state.alertDialog?L({title:o.state.alertDialog.title,message:o.state.alertDialog.message,callback:o.state.alertDialog.callback,close:o.closeAlert}):void 0,o.state.confirmDialog?C(s.default.merge({},o.state.confirmDialog,{close:o.closeConfirm})):void 0)},o.displayName="CloudFileManager",o.state={filename:o.getFilename(o.props.client.state.metadata),provider:null===(r=o.props.client.state.metadata)||void 0===r?void 0:r.provider,menuItems:(null===(n=o.props.client._ui.menu)||void 0===n?void 0:n.items)||[],menuOptions:(null===(i=o.props.ui)||void 0===i?void 0:i.menuBar)||{},providerDialog:null,downloadDialog:null,renameDialog:null,shareDialog:null,blockingModalProps:null,alertDialog:null,confirmDialog:null,importDialog:null,selectInteractiveStateDialog:null,dirty:!1},o}return i(t,e),t.prototype.getFilename=function(e){return(null==e?void 0:e.name)||null},t.prototype.componentDidMount=function(){var e=this;this.props.client.listen((function(t){var r=function(){var e;if(t.state.saving)return{message:(0,T.default)("~FILE_STATUS.SAVING"),type:"info"};if(t.state.saved){var r=null===(e=t.state.metadata.provider)||void 0===e?void 0:e.displayName;return{message:r?(0,T.default)("~FILE_STATUS.SAVED_TO_PROVIDER",{providerName:r}):(0,T.default)("~FILE_STATUS.SAVED"),type:"info"}}return t.state.failures?{message:(0,T.default)("~FILE_STATUS.FAILURE"),type:"alert"}:t.state.dirty?{message:(0,T.default)("~FILE_STATUS.UNSAVED"),type:"alert"}:null}();if(e.setState({filename:e.getFilename(t.state.metadata),provider:null!=t.state.metadata?t.state.metadata.provider:void 0,fileStatus:r}),"connected"===t.type)return e.setState({menuItems:(null!=e.props.client._ui.menu?e.props.client._ui.menu.items:void 0)||[]})})),this.props.client._ui.listen((function(t){var r=e.state.menuOptions;switch(t.type){case"showProviderDialog":return e.setState({providerDialog:t.data});case"showDownloadDialog":return e.setState({downloadDialog:t.data});case"showRenameDialog":return e.setState({renameDialog:t.data});case"showImportDialog":return e.setState({importDialog:t.data});case"showShareDialog":return e.setState({shareDialog:t.data});case"showBlockingModal":return e.setState({blockingModalProps:t.data});case"hideBlockingModal":return e.setState({blockingModalProps:null});case"showAlertDialog":return e.setState({alertDialog:t.data});case"hideAlertDialog":return e.setState({alertDialog:null});case"showConfirmDialog":return e.setState({confirmDialog:t.data});case"showSelectInteractiveStateDialog":return e.setState({selectInteractiveStateDialog:t.data});case"appendMenuItem":return e.state.menuItems.push(t.data),e.setState({menuItems:e.state.menuItems});case"prependMenuItem":return e.state.menuItems.unshift(t.data),e.setState({menuItems:e.state.menuItems});case"replaceMenuItem":var n=e._getMenuItemIndex(t.data.key);if(-1!==n){var i=e.state.menuItems;return i[n]=t.data.item,e.setState({menuItems:i}),e.setState({menuItems:e.state.menuItems})}break;case"insertMenuItemBefore":if(-1!==(n=e._getMenuItemIndex(t.data.key)))return 0===n?e.state.menuItems.unshift(t.data.item):e.state.menuItems.splice(n,0,t.data.item),e.setState({menuItems:e.state.menuItems});break;case"insertMenuItemAfter":if(-1!==(n=e._getMenuItemIndex(t.data.key)))return n===e.state.menuItems.length-1?e.state.menuItems.push(t.data.item):e.state.menuItems.splice(n+1,0,t.data.item),e.setState({menuItems:e.state.menuItems});break;case"setMenuBarInfo":return r.info=t.data,e.setState({menuOptions:r}),e.setState({menuOptions:e.state.menuOptions})}})),this.props.client._ui.resolveIsInitialized(!0)},t.prototype.render=function(){var e=this.props.hideMenuBar?[]:this.state.menuItems;return this.props.appOrMenuElemId?k({className:this.props.usingIframe?"app":"view"},A({client:this.props.client,filename:this.state.filename,provider:this.state.provider,fileStatus:this.state.fileStatus,items:e,options:this.state.menuOptions}),this.props.usingIframe?x({app:this.props.app,iframeAllow:this.props.iframeAllow}):void 0,this.renderDialogs()):this.state.providerDialog||this.state.downloadDialog?k({className:"app"},this.renderDialogs()):null},t}(c.default.Component);t.default=M},7777:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(7987)),a=n(r(6903)),o=r(9872),s=a.default.div,c=n(r(684)),l=(0,o.createReactFactory)(c.default);t.default=(0,i.default)({displayName:"BlockingModal",close:function(){return"function"==typeof this.props.close?this.props.close():void 0},drop:function(e){return"function"==typeof this.props.onDrop?this.props.onDrop(e):void 0},render:function(){return l({close:this.props.close},s({className:"modal-dialog",onDrop:this.drop},s({className:"modal-dialog-wrapper"},s({className:"modal-dialog-title"},this.props.title||"Untitled Dialog"),s({className:"modal-dialog-workspace"},s({className:"modal-dialog-blocking-message"},this.props.message)))))}})},3331:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(7987)),a=n(r(6903)),o=n(r(42)),s=r(9872),c=a.default.div,l=a.default.button,u=n(r(3994)),p=(0,s.createReactFactory)(u.default),d=n(r(5427));t.default=(0,i.default)({displayName:"ConfirmDialogView",confirm:function(){return"function"==typeof this.props.callback&&this.props.callback(),"function"==typeof this.props.close?this.props.close():void 0},reject:function(){return"function"==typeof this.props.rejectCallback&&this.props.rejectCallback(),"function"==typeof this.props.close?this.props.close():void 0},render:function(){var e=(0,o.default)("confirm-dialog",this.props.className);return p({title:this.props.title||(0,d.default)("~CONFIRM_DIALOG.TITLE"),close:this.reject,zIndex:500},c({className:e},c({className:"confirm-dialog-message",dangerouslySetInnerHTML:{__html:this.props.message}}),c({className:"buttons"},l({onClick:this.confirm},this.props.yesTitle||(0,d.default)("~CONFIRM_DIALOG.YES")),this.props.hideNoButton?void 0:l({onClick:this.reject},this.props.noTitle||(0,d.default)("~CONFIRM_DIALOG.NO")))))}})},5421:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(7987)),a=n(r(6903)),o=r(9872),s=n(r(5427)),c=r(9210),l=n(r(3994)),u=a.default.div,p=a.default.input,d=a.default.a,h=a.default.button,m=(0,o.createReactFactory)(l.default);t.default=(0,i.default)({displayName:"DownloadDialogView",getInitialState:function(){var e=c.CloudMetadata.withExtension(this.props.filename||(0,s.default)("~MENUBAR.UNTITLED_DOCUMENT"),"json");return{filename:e,trimmedFilename:this.trim(e),includeShareInfo:!1,shared:this.props.client.isShared()}},componentDidMount:function(){return this.filenameRef.focus()},updateFilename:function(){var e=this.filenameRef.value;return this.setState({filename:e,trimmedFilename:this.trim(e)})},updateIncludeShareInfo:function(){return this.setState({includeShareInfo:this.includeShareInfoRef.checked})},trim:function(e){return e.replace(/^\s+|\s+$/,"")},download:function(e,t){return this.downloadDisabled()?(null!=e&&e.preventDefault(),this.filenameRef.focus()):(this.downloadRef.setAttribute("href",this.props.client.getDownloadUrl(this.props.content,this.state.includeShareInfo)),t&&this.downloadRef.click(),this.props.close())},downloadDisabled:function(){return 0===this.state.trimmedFilename.length},watchForEnter:function(e){if(13===e.keyCode&&!this.downloadDisabled())return e.preventDefault(),e.stopPropagation(),this.download(null,!0)},render:function(){var e=this;return m({title:(0,s.default)("~DIALOG.DOWNLOAD"),close:this.props.close},u({className:"download-dialog"},p({type:"text",ref:function(t){return e.filenameRef=t},placeholder:"Filename",value:this.state.filename,onChange:this.updateFilename,onKeyDown:this.watchForEnter}),this.state.shared?u({className:"download-share"},p({type:"checkbox",ref:function(t){return e.includeShareInfoRef=t},value:this.state.includeShareInfo,onChange:this.updateIncludeShareInfo}),(0,s.default)("~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO")):void 0,u({className:"buttons"},d({href:"#",ref:function(t){return e.downloadRef=t},className:this.downloadDisabled()?"disabled":"",download:this.state.trimmedFilename,onClick:this.download},(0,s.default)("~DOWNLOAD_DIALOG.DOWNLOAD")),h({onClick:this.props.close},(0,s.default)("~DOWNLOAD_DIALOG.CANCEL")))))}})},1281:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.TriangleOnlyAnchor=t.DefaultAnchor=void 0;var i=n(r(6903)),a=i.default.svg,o=i.default.g,s=i.default.rect,c=i.default.polygon,l=a({className:"default-anchor",version:"1.1",width:33,height:18,viewBox:"0 0 33 18",enableBackground:"new 0 0 33 18"},o({},s({x:2,y:3,width:16,height:2}),s({x:2,y:8,width:16,height:2}),s({x:2,y:13,width:16,height:2}),c({points:"21,7 25,13 29,7"})));t.DefaultAnchor=l;var u=a({className:"triangle-only-anchor",version:"1.1",width:8,height:18,viewBox:"0 0 8 18",enableBackground:"new 0 0 33 18"},c({points:"0,7 4,13 8,7"}));t.TriangleOnlyAnchor=u},9881:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(3336)),a=n(r(7987)),o=n(r(1533)),s=n(r(6903)),c=r(9872),l=r(1281),u=s.default.div,p=s.default.i,d=s.default.ul,h=s.default.li,m=(0,c.createReactClassFactory)({displayName:"DropdownItem",clicked:function(){return this.props.item.items?this.showSubMenu():this.props.select(this.props.item)},mouseEnter:function(){return this.showSubMenu()},showSubMenu:function(){if(this.props.item.items){var e=(0,i.default)(o.default.findDOMNode(this.itemRef)),t=e.parent().parent();return this.props.setSubMenu({style:{position:"absolute",left:t.width(),top:e.position().top-parseInt(e.css("padding-top"),10)},items:this.props.item.items})}return"function"==typeof this.props.setSubMenu?this.props.setSubMenu(null):void 0},render:function(){var e=this,t=null==this.props.item.enabled||("function"==typeof this.props.item.enabled?this.props.item.enabled():this.props.item.enabled),r=["menuItem"];if(this.props.item.separator)return r.push("separator"),h({className:r.join(" ")},"");t&&(this.props.item.action||this.props.item.items)||r.push("disabled");var n=this.props.item.name||this.props.item.content||this.props.item;return h({ref:function(t){return e.itemRef=t},className:r.join(" "),onClick:this.clicked,onMouseEnter:this.mouseEnter},this.props.item.items?p({className:"icon-inspectorArrow-collapse"}):void 0,n)}}),f="cfm-menu dg-wants-touch",E=(0,a.default)({displayName:"Dropdown",getInitialState:function(){return{showingMenu:!1,subMenu:null}},componentDidMount:function(){if(window.addEventListener)return window.addEventListener("mousedown",this.checkClose,!0),window.addEventListener("touchstart",this.checkClose,!0)},componentWillUnmount:function(){if(window.removeEventListener)return window.removeEventListener("mousedown",this.checkClose,!0),window.removeEventListener("touchstart",this.checkClose,!0)},checkClose:function(e){if(this.state.showingMenu){for(var t=e.target;null!=t;){if("string"==typeof t.className&&t.className.indexOf(f)>=0)return;t=t.parentNode}return this.setState({showingMenu:!1,subMenu:!1})}},setSubMenu:function(e){return this.setState({subMenu:e})},select:function(e){if(!(null!=e?e.items:void 0)){var t=!this.state.showingMenu;if(this.setState({showingMenu:t}),e)return"function"==typeof e.action?e.action():void 0}},render:function(){var e,t,r=this,n="".concat(f," ").concat(this.state.showingMenu?"menu-showing":"menu-hidden"),i="menu ".concat(this.props.className?this.props.className:""),a="menu-anchor ".concat(this.props.menuAnchorClassName?this.props.menuAnchorClassName:"");return u({className:i},(null!=this.props.items?this.props.items.length:void 0)>0?u({},u({className:"".concat(f," ").concat(a),onClick:function(){return r.select(null)}},this.props.menuAnchor?this.props.menuAnchor:l.DefaultAnchor),u({className:n},d({},function(){var n=[];for(e=0;e<r.props.items.length;e++)t=r.props.items[e],n.push(m({key:e,item:t,select:r.select,setSubMenu:r.setSubMenu}));return n}()),this.state.subMenu?u({className:n,style:this.state.subMenu.style},d({},function(){var n=[];for(e=0;e<r.state.subMenu.items.length;e++)t=r.state.subMenu.items[e],n.push(m({key:e,item:t,select:r.select}));return n}())):void 0)):void 0)}});t.default=E},2377:function(e,t,r){"use strict";var n=this&&this.__assign||function(){return n=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var i in t=arguments[r])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},n.apply(this,arguments)},i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var a=i(r(3336)),o=i(r(2611)),s=i(r(7987)),c=i(r(6903)),l=r(9872),u=r(9210),p=i(r(5427)),d=c.default.div,h=c.default.i,m=c.default.input,f=c.default.button,E=h,v=(0,l.createReactClassFactory)({displayName:"FileListFile",componentDidMount:function(){return this.lastClick=0},fileSelected:function(e){e.preventDefault(),e.stopPropagation();var t=(new Date).getTime();return this.props.fileSelected(this.props.metadata),t-this.lastClick<=250&&this.props.fileConfirmed(),this.lastClick=t},render:function(){var e=this.props.metadata.type!==u.CloudMetadata.Label?"selectable":"",t=this.props.selected?"selected":"",r=this.props.isSubFolder?"subfolder":"";return d({className:"".concat(e," ").concat(t," ").concat(r),title:this.props.metadata.description||void 0,onClick:this.props.metadata.type!==u.CloudMetadata.Label?this.fileSelected:void 0},E({className:this.props.metadata.type===u.CloudMetadata.Folder?"icon-inspectorArrow-collapse":this.props.metadata.type===u.CloudMetadata.File?"icon-noteTool":void 0}),this.props.metadata.name)}}),_=(0,l.createReactClassFactory)({displayName:"FileList",getInitialState:function(){return{loading:!0}},componentDidMount:function(){return this._isMounted=!0,this.load(this.props.folder)},UNSAFE_componentWillReceiveProps:function(e){if(e.folder!==this.props.folder)return this.load(e.folder)},componentWillUnmount:function(){return this._isMounted=!1},load:function(e){var t=this;return this.setState({loading:!0}),this.props.provider.list(e,(function(e,r){return t._isMounted&&t.setState({loading:!1}),e?t.props.client.alert(e):t.props.listLoaded(r)}),this.props.listOptions)},parentSelected:function(e){var t;return this.props.fileSelected(null===(t=this.props.folder)||void 0===t?void 0:t.parent)},fileSelected:function(e){this.state.loading||this.props.fileSelected(e)},fileConfirmed:function(){this.state.loading||this.props.fileConfirmed()},render:function(){var e=[],t=null!=this.props.folder;if(!this.state.loading){t&&e.push(d({key:"parent",className:"selectable",onClick:this.parentSelected},E({className:"icon-paletteArrow-collapse"}),this.props.folder.name));for(var r=0;r<this.props.list.length;r++){var n=this.props.list[r];e.push(v({key:r,metadata:n,selected:this.props.selectedFile===n,fileSelected:this.fileSelected,fileConfirmed:this.fileConfirmed,isSubFolder:t}))}}return d({className:"filelist"},this.state.loading?d({key:"loading"},(0,p.default)("~FILE_DIALOG.LOADING")):this.props.overrideMessage||e)}}),g=(0,s.default)({displayName:"FileDialogTab",getInitialState:function(){var e,t,r;this._isMounted=!0;var n=this.getStateForFolder(null===(e=this.props.client.state.metadata)||void 0===e?void 0:e.parent,!0)||null;return n.filename=(null===(t=n.metadata)||void 0===t?void 0:t.name)||"",this.isOpen()||(n.search=n.filename||(0,p.default)("~MENUBAR.UNTITLED_DOCUMENT"),this.isExport()&&(null===(r=this.props.dialog.data)||void 0===r?void 0:r.extension)&&(n.search=u.CloudMetadata.newExtension(n.search,this.props.dialog.data.extension))),this._isAuthorized=!1,n.authorized=!1,n},UNSAFE_componentWillMount:function(){var e,t,r=this,n=function(e){if(r._isAuthorized=e,r._isMounted)return r.setState({authorized:e})};return null===(t=(e=this.props.provider).onAuthorizationChange)||void 0===t||t.call(e,(function(e){r._isAuthorized&&!e&&r.setState(r.getInitialState()),n(e)})),this.props.provider.authorized(n)},componentDidMount:function(){if(this._isMounted=!0,this.state.authorized!==this._isAuthorized)return this.setState({authorized:this._isAuthorized})},componentWillUnmount:function(){var e,t;return null===(t=(e=this.props.provider).onAuthorizationChange)||void 0===t||t.call(e,null),this._isMounted=!1},render:function(){return!this.props.provider.isAuthorizationRequired()||this.props.provider.authorized()?this.props.provider.renderFileDialogTabView?this.props.provider.renderFileDialogTabView(n(n({},this.props),{onConfirm:this.confirmed,onCancel:this.cancel})):this.renderWhenAuthorized():this.props.provider.renderAuthorizationDialog()},isOpen:function(){return"openFile"===this.props.dialog.action},isExport:function(){return"saveSecondaryFileAs"===this.props.dialog.action},searchChanged:function(e){var t=e.target.value;return this.setState({search:t,filename:"",metadata:null})},listLoaded:function(e){if(this._isMounted)return this.setState({list:e})},getSaveMetadata:function(){var e=this.props.client.state.metadata?o.default.clone(this.props.client.state.metadata):null;return e&&(this.props.provider===e.provider?e.providerData=o.default.cloneDeep(e.providerData):(e.provider=null,e.providerData=null,e.forceSaveDialog=!1)),e},getStateForFolder:function(e,t){var r,n=this.isOpen()?(null===(r=this.state)||void 0===r?void 0:r.metadata)||null:this.getSaveMetadata();t?e=null:null!=n&&(n.parent=e);var i={folder:e,metadata:n,filename:"",list:[]};return this.isOpen()&&(i.search=""),i},fileSelected:function(e){if((null==e?void 0:e.type)===u.CloudMetadata.Folder)return this.setState(this.getStateForFolder(e));if((null==e?void 0:e.type)===u.CloudMetadata.File){var t={filename:e.name,metadata:e};return this.isOpen()||(t.search=t.filename),this.setState(t)}return this.setState(this.getStateForFolder(null))},confirmed:function(e){var t=e;return t.provider!==this.props.provider&&(t.provider=this.props.provider,t.providerData={}),"function"==typeof this.props.dialog.callback&&this.props.dialog.callback(t),this.setState({metadata:t}),this.props.close()},confirm:function(){var e,t=this,r=a.default.trim(this.finalConfirmedFilename()),n=this.findMetadata(r,this.state.list,null===(e=this.props.dialog.data)||void 0===e?void 0:e.extension),i=this.state.metadata||n;return this.isExport()&&i&&!n&&(i.providerData={}),i?this.isOpen()?this.confirmed(i):n?this.props.client.confirm("Are you sure you want to overwrite ".concat(n.name,"?"),(function(){return t.confirmed(n)})):this.confirmed(i):this.isOpen()?this.props.client.alert("".concat(r," not found")):this.confirmed(new u.CloudMetadata({name:r,type:u.CloudMetadata.File,parent:this.state.folder||null,provider:this.props.provider}))},remove:function(){var e=this;if(this.state.metadata&&this.state.metadata.type!==u.CloudMetadata.Folder)return this.props.client.confirm((0,p.default)("~FILE_DIALOG.REMOVE_CONFIRM",{filename:this.state.metadata.name}),(function(){return e.props.provider.remove(e.state.metadata,(function(t){if(!t){e.props.client.alert((0,p.default)("~FILE_DIALOG.REMOVED_MESSAGE",{filename:e.state.metadata.name}),(0,p.default)("~FILE_DIALOG.REMOVED_TITLE"));var r=e.state.list.slice(0),n=r.indexOf(e.state.metadata);return r.splice(n,1),e.setState({list:r,metadata:null,filename:"",search:""})}}))}))},cancel:function(){return this.props.close()},findMetadata:function(e,t,r){for(var n=void 0!==r,i=n&&u.CloudMetadata.newExtension(e,r),a=0,o=Array.from(t);a<o.length;a++){var s=o[a];if(n?s.filename===i:s.name===e)return s}return null},watchForEnter:function(e){if(13===e.keyCode&&!this.confirmDisabled())return this.confirm()},finalConfirmedFilename:function(){return this.isOpen()?this.state.filename:this.state.filename||this.state.search||""},confirmDisabled:function(){return this.props.provider.fileDialogDisabled(this.state.folder)||0===this.finalConfirmedFilename().length||this.isOpen()&&!this.state.metadata},clearListFilter:function(){var e;this.setState({search:""}),null===(e=this.inputRef)||void 0===e||e.focus()},renderWhenAuthorized:function(){var e,t=this,r=this.confirmDisabled(),n=null===this.state.metadata||this.state.metadata.type===u.CloudMetadata.Folder,i=this.isOpen(),a=this.state.search||"",o=a.toLowerCase(),s=i&&a.length>0,c=s?this.state.list.filter((function(e){return-1!==e.name.toLowerCase().indexOf(o)})):this.state.list,l=c.length!==this.state.list.length,h=s&&l&&0===c.length?d({},'No files found matching "'.concat(a,'"')):null,E=this.isExport()&&(null===(e=this.props.dialog.data)||void 0===e?void 0:e.extension)?{extension:this.props.dialog.data.extension}:void 0;return d({className:"dialogTab"},m({type:"text",value:a,placeholder:(0,p.default)(i?"~FILE_DIALOG.FILTER":"~FILE_DIALOG.FILENAME"),autoFocus:!0,onChange:this.searchChanged,onKeyDown:this.watchForEnter,ref:function(e){return t.inputRef=e}}),l&&d({className:"dialogClearFilter",onClick:this.clearListFilter},"X"),_({provider:this.props.provider,folder:this.state.folder,selectedFile:this.state.metadata,fileSelected:this.fileSelected,fileConfirmed:this.confirm,list:c,listLoaded:this.listLoaded,client:this.props.client,overrideMessage:h,listOptions:E}),d({className:"buttons"},f({onClick:this.confirm,disabled:r,className:r?"disabled":""},this.isOpen()?(0,p.default)("~FILE_DIALOG.OPEN"):(0,p.default)("~FILE_DIALOG.SAVE")),this.props.provider.can("remove")?f({onClick:this.remove,disabled:n,className:n?"disabled":""},(0,p.default)("~FILE_DIALOG.REMOVE")):void 0,f({onClick:this.cancel},(0,p.default)("~FILE_DIALOG.CANCEL"))))}});t.default=g},5671:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.Spinner=void 0;var i=n(r(7363));t.Spinner=function(e){var t=e.size,r=void 0===t?100:t,n=e.fill,a=void 0===n?"#000":n;return i.default.createElement("svg",{width:"".concat(r,"px"),height:"".concat(r,"px"),xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(r," ").concat(r),preserveAspectRatio:"xMidYMid",className:"uil-spin"},i.default.createElement("rect",{x:"0",y:"0",width:r,height:r,fill:"none",className:"bk"}),i.default.createElement("g",{transform:"translate(50 50)"},i.default.createElement("g",{transform:"rotate(0) translate(34 0)"},i.default.createElement("circle",{cx:"0",cy:"0",r:"8",fill:a},i.default.createElement("animate",{attributeName:"opacity",from:"1",to:"0.1",begin:"0s",dur:"1s",repeatCount:"indefinite"}),i.default.createElement("animateTransform",{attributeName:"transform",type:"scale",from:"1.5",to:"1",begin:"0s",dur:"1s",repeatCount:"indefinite"}))),i.default.createElement("g",{transform:"rotate(45) translate(34 0)"},i.default.createElement("circle",{cx:"0",cy:"0",r:"8",fill:a},i.default.createElement("animate",{attributeName:"opacity",from:"1",to:"0.1",begin:"0.12s",dur:"1s",repeatCount:"indefinite"}),i.default.createElement("animateTransform",{attributeName:"transform",type:"scale",from:"1.5",to:"1",begin:"0.12s",dur:"1s",repeatCount:"indefinite"}))),i.default.createElement("g",{transform:"rotate(90) translate(34 0)"},i.default.createElement("circle",{cx:"0",cy:"0",r:"8",fill:a},i.default.createElement("animate",{attributeName:"opacity",from:"1",to:"0.1",begin:"0.25s",dur:"1s",repeatCount:"indefinite"}),i.default.createElement("animateTransform",{attributeName:"transform",type:"scale",from:"1.5",to:"1",begin:"0.25s",dur:"1s",repeatCount:"indefinite"}))),i.default.createElement("g",{transform:"rotate(135) translate(34 0)"},i.default.createElement("circle",{cx:"0",cy:"0",r:"8",fill:a},i.default.createElement("animate",{attributeName:"opacity",from:"1",to:"0.1",begin:"0.37s",dur:"1s",repeatCount:"indefinite"}),i.default.createElement("animateTransform",{attributeName:"transform",type:"scale",from:"1.5",to:"1",begin:"0.37s",dur:"1s",repeatCount:"indefinite"}))),i.default.createElement("g",{transform:"rotate(180) translate(34 0)"},i.default.createElement("circle",{cx:"0",cy:"0",r:"8",fill:a},i.default.createElement("animate",{attributeName:"opacity",from:"1",to:"0.1",begin:"0.5s",dur:"1s",repeatCount:"indefinite"}),i.default.createElement("animateTransform",{attributeName:"transform",type:"scale",from:"1.5",to:"1",begin:"0.5s",dur:"1s",repeatCount:"indefinite"}))),i.default.createElement("g",{transform:"rotate(225) translate(34 0)"},i.default.createElement("circle",{cx:"0",cy:"0",r:"8",fill:a},i.default.createElement("animate",{attributeName:"opacity",from:"1",to:"0.1",begin:"0.62s",dur:"1s",repeatCount:"indefinite"}),i.default.createElement("animateTransform",{attributeName:"transform",type:"scale",from:"1.5",to:"1",begin:"0.62s",dur:"1s",repeatCount:"indefinite"}))),i.default.createElement("g",{transform:"rotate(270) translate(34 0)"},i.default.createElement("circle",{cx:"0",cy:"0",r:"8",fill:a},i.default.createElement("animate",{attributeName:"opacity",from:"1",to:"0.1",begin:"0.75s",dur:"1s",repeatCount:"indefinite"}),i.default.createElement("animateTransform",{attributeName:"transform",type:"scale",from:"1.5",to:"1",begin:"0.75s",dur:"1s",repeatCount:"indefinite"}))),i.default.createElement("g",{transform:"rotate(315) translate(34 0)"},i.default.createElement("circle",{cx:"0",cy:"0",r:"8",fill:a},i.default.createElement("animate",{attributeName:"opacity",from:"1",to:"0.1",begin:"0.87s",dur:"1s",repeatCount:"indefinite"}),i.default.createElement("animateTransform",{attributeName:"transform",type:"scale",from:"1.5",to:"1",begin:"0.87s",dur:"1s",repeatCount:"indefinite"})))))}},4036:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(7987)),a=r(9872),o=n(r(5607)),s=n(r(5427)),c=n(r(358)),l=n(r(9336)),u=n(r(399)),p=(0,a.createReactFactory)(c.default),d=(0,a.createReactFactory)(l.default),h=(0,a.createReactFactory)(u.default);t.default=(0,i.default)({displayName:"ImportTabbedDialog",importFile:function(e,t){var r=this;if("localFile"===e.provider){var n=new FileReader;return n.onload=function(n){var i={file:{name:e.providerData.file.name,content:n.target.result,object:e.providerData.file},via:t};return"function"==typeof r.props.dialog.callback?r.props.dialog.callback(i):void 0},n.readAsText(e.providerData.file)}},importUrl:function(e,t){var r,n;return null===(n=(r=this.props.dialog).callback)||void 0===n?void 0:n.call(r,{url:e,via:t})},render:function(){var e=[o.default.Tab({key:0,label:(0,s.default)("~IMPORT.LOCAL_FILE"),component:d({client:this.props.client,dialog:{callback:this.importFile},provider:"localFile",close:this.props.close})}),o.default.Tab({key:1,label:(0,s.default)("~IMPORT.URL"),component:h({client:this.props.client,dialog:{callback:this.importUrl},close:this.props.close})})];return p({title:(0,s.default)("~DIALOG.IMPORT_DATA"),close:this.props.close,tabs:e,selectedTabIndex:0})}})},9336:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(7987)),a=n(r(6903)),o=a.default.div,s=a.default.input,c=a.default.button,l=n(r(5427)),u=r(9210);t.default=(0,i.default)({displayName:"LocalFileListTab",componentDidMount:function(){this.dropZoneRef.addEventListener("drop",this.drop)},componentWillUnmount:function(){this.dropZoneRef.removeEventListener("drop",this.drop)},getInitialState:function(){return{hover:!1}},changed:function(e){var t=e.target.files;return t.length>1?this.props.client.alert((0,l.default)("~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED")):1===t.length?this.openFile(t[0],"select"):void 0},openFile:function(e,t){var r=new u.CloudMetadata({name:e.name.split(".")[0],type:u.CloudMetadata.File,parent:null,provider:this.props.provider,providerData:{file:e}});return"function"==typeof this.props.dialog.callback&&this.props.dialog.callback(r,t),this.props.close()},cancel:function(){return this.props.close()},dragEnter:function(e){return e.preventDefault(),this.setState({hover:!0})},dragLeave:function(e){return e.preventDefault(),this.setState({hover:!1})},drop:function(e){e.preventDefault(),e.stopPropagation();var t=e.dataTransfer?e.dataTransfer.files:e.target.files;t.length>1?this.props.client.alert((0,l.default)("~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED")):1===t.length&&this.openFile(t[0],"drop")},render:function(){var e=this,t="dropArea".concat(this.state.hover?" dropHover":"");return o({className:"dialogTab localFileLoad"},o({ref:function(t){return e.dropZoneRef=t},className:t,onDragEnter:this.dragEnter,onDragLeave:this.dragLeave},(0,l.default)("~LOCAL_FILE_DIALOG.DROP_FILE_HERE"),s({type:"file",onChange:this.changed})),o({className:"buttons"},c({onClick:this.cancel},(0,l.default)("~FILE_DIALOG.CANCEL"))))}})},8310:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(7987)),a=n(r(6903)),o=a.default.div,s=a.default.input,c=a.default.button,l=a.default.a,u=n(r(5427)),p=r(9210),d=r(9210),h=n(r(5337));t.default=(0,i.default)({displayName:"LocalFileSaveTab",getInitialState:function(){var e=null!=(null!=this.props.dialog.data?this.props.dialog.data.content:void 0),t=e&&this.props.dialog.data.extension?this.props.dialog.data.extension:"json",r=(null!=this.props.client.state.metadata?this.props.client.state.metadata.name:void 0)||(0,u.default)("~MENUBAR.UNTITLED_DOCUMENT");return{filename:r,supportsDownloadAttribute:void 0!==document.createElement("a").download,downloadFilename:this.getDownloadFilename(e,r,t),extension:t,mimeType:e&&null!=this.props.dialog.data.mimeType?this.props.dialog.data.mimeType:"text/plain",shared:this.props.client.isShared(),hasPropsContent:e,includeShareInfo:e,gotContent:e,content:null!=this.props.dialog.data?this.props.dialog.data.content:void 0}},componentDidMount:function(){var e=this;return this.state.hasPropsContent||this.props.client._event("getContent",{shared:this.props.client._sharedMetadata()},(function(t){var r=d.cloudContentFactory.createEnvelopedCloudContent(t);return function(e,t){null!=e&&e.copyMetadataTo(r)}(null!=e.props.client.state?e.props.client.state.currentContent:void 0),e.setState({gotContent:!0,content:r})})),this.downloadRef.addEventListener("click",this.confirm)},componentWillUnmount:function(){return this.downloadRef.removeEventListener("click",this.confirm)},filenameChanged:function(){var e=this.filenameRef.value;return this.setState({filename:e,downloadFilename:this.getDownloadFilename(this.state.hasPropsContent,e,this.state.extension)})},includeShareInfoChanged:function(){return this.setState({includeShareInfo:this.includeShareInfoRef.checked})},getDownloadFilename:function(e,t,r){var n=t.replace(/^\s+|\s+$/,"");return e?p.CloudMetadata.newExtension(n,r):p.CloudMetadata.withExtension(n,r)},confirm:function(e,t){if(!this.confirmDisabled()){if(this.state.supportsDownloadAttribute)this.downloadRef.href=this.props.client.getDownloadUrl(this.state.content,this.state.includeShareInfo,this.state.mimeType),t&&this.downloadRef.click();else{var r=this.props.client.getDownloadBlob(this.state.content,this.state.includeShareInfo,this.state.mimeType);h.default.saveAs(r,this.state.downloadFilename,!0),null!=e&&e.preventDefault()}var n=new p.CloudMetadata({name:this.state.downloadFilename.split(".")[0],type:p.CloudMetadata.File,parent:null,provider:this.props.provider});return this.props.dialog.callback(n),this.props.close(),this.state.supportsDownloadAttribute}null!=e&&e.preventDefault()},contextMenu:function(e){this.downloadRef.href=this.props.client.getDownloadUrl(this.state.content,this.state.includeShareInfo,this.state.mimeType)},cancel:function(){this.props.close()},watchForEnter:function(e){13!==e.keyCode||this.confirmDisabled()||(e.preventDefault(),e.stopPropagation(),this.confirm(null,!0))},confirmDisabled:function(){return 0===this.state.downloadFilename.length||!this.state.gotContent},render:function(){var e=this,t=this.confirmDisabled(),r=l({href:"#",ref:function(t){return e.downloadRef=t},className:t?"disabled":"",download:this.state.downloadFilename,onContextMenu:this.contextMenu},(0,u.default)("~FILE_DIALOG.DOWNLOAD")),n=c({ref:function(t){return e.downloadRef=t},className:t?"disabled":""},(0,u.default)("~FILE_DIALOG.DOWNLOAD"));return o({className:"dialogTab localFileSave"},s({type:"text",ref:function(t){return e.filenameRef=t},value:this.state.filename,placeholder:(0,u.default)("~FILE_DIALOG.FILENAME"),onChange:this.filenameChanged,onKeyDown:this.watchForEnter}),o({className:"saveArea"},this.state.shared&&!this.state.hasPropsContent?o({className:"shareCheckbox"},s({type:"checkbox",ref:function(t){return e.includeShareInfoRef=t},value:this.state.includeShareInfo,onChange:this.includeShareInfoChanged}),(0,u.default)("~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO")):void 0),o({className:"buttons"},this.state.supportsDownloadAttribute?r:n,c({onClick:this.cancel},(0,u.default)("~FILE_DIALOG.CANCEL"))))}})},6390:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(7987)),a=n(r(1533)),o=n(r(6903)),s=r(9872),c=n(r(9881)),l=r(1281),u=n(r(5427)),p=o.default.div,d=o.default.i,h=o.default.span,m=o.default.input,f=(0,s.createReactFactory)(c.default);t.default=(0,i.default)({displayName:"MenuBar",componentDidMount:function(){var e=this;return window.addEventListener&&(window.addEventListener("mousedown",this.checkBlur,!0),window.addEventListener("touchstart",this.checkBlur,!0)),this.props.client._ui.listen((function(t){if("editInitialFilename"===t.type)return e.setState({editingFilename:!0,editingInitialFilename:!0}),setTimeout((function(){return e.focusFilename()}),10)}))},componentWillUnmount:function(){if(window.removeEventListener)return window.removeEventListener("mousedown",this.checkBlur,!0),window.removeEventListener("touchstart",this.checkBlur,!0)},getFilename:function(e){return(null!=e.filename?e.filename.length:void 0)>0?e.filename:(0,u.default)("~MENUBAR.UNTITLED_DOCUMENT")},getEditableFilename:function(e){return(null!=e.filename?e.filename.length:void 0)>0?e.filename:(0,u.default)("~MENUBAR.UNTITLED_DOCUMENT")},getInitialState:function(){return{editingFilename:!1,filename:this.getFilename(this.props),editableFilename:this.getEditableFilename(this.props),initialEditableFilename:this.getEditableFilename(this.props),editingInitialFilename:!1}},UNSAFE_componentWillReceiveProps:function(e){return this.setState({filename:this.getFilename(e),editableFilename:this.getEditableFilename(e),provider:e.provider})},filenameClicked:function(e){var t=this;return e.preventDefault(),e.stopPropagation(),this.setState({editingFilename:!0,editingInitialFilename:!1}),setTimeout((function(){return t.focusFilename()}),10)},filenameChanged:function(){return this.setState({editableFilename:this.filename().value})},filenameBlurred:function(){return this.rename()},filename:function(){return a.default.findDOMNode(this.filenameRef)},focusFilename:function(){var e=this.filename();return e.focus(),e.select()},cancelEdit:function(){return this.setState({editingFilename:!1,editableFilename:(null!=this.state.filename?this.state.filename.length:void 0)>0?this.state.filename:this.state.initialEditableFilename})},rename:function(){var e=this.state.editableFilename.replace(/^\s+|\s+$/,"");return e.length>0?(this.state.editingInitialFilename?this.props.client.setInitialFilename(e):this.props.client.rename(this.props.client.state.metadata,e),this.setState({editingFilename:!1,filename:e,editableFilename:e})):this.cancelEdit()},watchForEnter:function(e){return 13===e.keyCode?this.rename():27===e.keyCode?this.cancelEdit():void 0},help:function(){return window.open(this.props.options.help,"_blank")},infoClicked:function(){return"function"==typeof this.props.options.onInfoClicked?this.props.options.onInfoClicked(this.props.client):void 0},checkBlur:function(e){if(this.state.editingFilename&&e.target!==this.filename())return this.filenameBlurred()},langChanged:function(e){var t=this.props,r=t.client,n=t.options.languageMenu.onLangChanged;if(null!=n)return r.changeLanguage(e,n)},renderLanguageMenu:function(){var e=this,t=this.props.options.languageMenu,r=t.options.filter((function(e){return e.langCode!==t.currentLang})).map((function(t){var r,n=t.label||t.langCode.toUpperCase();return t.flag&&(r="flag flag-".concat(t.flag)),{content:h({className:"lang-option"},p({className:r}),n),action:function(){return e.langChanged(t.langCode)}}})),n=t.options.filter((function(e){return null!=e.flag})).length>0?{flag:"us"}:{label:"English"},i=t.options.filter((function(e){return e.langCode===t.currentLang}))[0]||n,a=i.flag,o=i.label,s=a?p({className:"flag flag-".concat(a)}):p({className:"lang-menu with-border"},h({className:"lang-label"},o||n.label),l.TriangleOnlyAnchor);return f({className:"lang-menu",menuAnchorClassName:"menu-anchor-right",items:r,menuAnchor:s})},render:function(){var e=this,t=this.props.provider,r=t&&t.isAuthorizationRequired()&&t.authorized();return p({className:"menu-bar"},p({className:"menu-bar-left"},f({items:this.props.items}),this.state.editingFilename?p({className:"menu-bar-content-filename"},m({ref:function(t){return e.filenameRef=t},value:this.state.editableFilename,onChange:this.filenameChanged,onKeyDown:this.watchForEnter})):p({className:"menu-bar-content-filename",onClick:this.filenameClicked},this.state.filename),this.props.fileStatus?h({className:"menu-bar-file-status-".concat(this.props.fileStatus.type)},this.props.fileStatus.message):void 0),p({className:"menu-bar-right"},this.props.options.info?h({className:"menu-bar-info",onClick:this.infoClicked},this.props.options.info):void 0,r?this.props.provider.renderUser():void 0,this.props.options.help?d({style:{fontSize:"13px"},className:"clickable icon-help",onClick:this.help}):void 0,this.props.options.languageMenu?this.renderLanguageMenu():void 0))}})},3994:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(7363)),a=n(r(684));t.default=function(e){var t=e.title,r=e.zIndex,n=void 0===r?10:r,o=e.close,s=e.children;return i.default.createElement(a.default,{zIndex:n,close:o},i.default.createElement("div",{className:"modal-dialog","data-testid":"modal-dialog"},i.default.createElement("div",{className:"modal-dialog-wrapper"},i.default.createElement("div",{className:"modal-dialog-title","data-testid":"modal-dialog-title"},o?i.default.createElement("i",{className:"modal-dialog-title-close icon-ex","data-testid":"modal-dialog-close",onClick:function(){return null==o?void 0:o()}}):void 0,t||"Untitled Dialog"),i.default.createElement("div",{className:"modal-dialog-workspace","data-testid":"modal-dialog-workspace"},s))))}},358:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(7987)),a=r(9872),o=n(r(3994)),s=n(r(5607)),c=(0,a.createReactFactory)(o.default),l=(0,a.createReactFactory)(s.default);t.default=(0,i.default)({displayName:"ModalTabbedDialogView",render:function(){return c({title:this.props.title,close:this.props.close},l({tabs:this.props.tabs,selectedTabIndex:this.props.selectedTabIndex}))}})},684:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=a(r(3336)),s=a(r(7363)),c=function(e){function t(t){var r=e.call(this,t)||this;r.closeOnEscape=function(e){var t,n;27===e.keyCode&&(null===(n=(t=r.props).close)||void 0===n||n.call(t))},r.updateStyles=function(){var e=r.getDimensions();r.setState({backgroundStyle:r.getBackgroundStyle(e),contentStyle:r.getContentStyle(e)})};var n=r.getDimensions();return r.state={backgroundStyle:r.getBackgroundStyle(n),contentStyle:r.getContentStyle(n)},r}return i(t,e),t.prototype.getDimensions=function(){return{width:"100vw",height:"100vh"}},t.prototype.getBackgroundStyle=function(e){return this.props.zIndex?{zIndex:this.props.zIndex,width:e.width,height:e.height}:e},t.prototype.getContentStyle=function(e){return this.props.zIndex?{zIndex:this.props.zIndex+1,width:e.width,height:e.height}:e},t.prototype.componentDidMount=function(){(0,o.default)(window).bind("keyup",this.closeOnEscape),(0,o.default)(window).bind("resize",this.updateStyles)},t.prototype.componentWillUnmount=function(){(0,o.default)(window).unbind("keyup",this.closeOnEscape),(0,o.default)(window).unbind("resize",this.updateStyles)},t.prototype.render=function(){var e=this.state,t=e.backgroundStyle,r=e.contentStyle;return s.default.createElement("div",{className:"modal"},s.default.createElement("div",{className:"modal-background",style:t}),s.default.createElement("div",{className:"modal-content",style:r},this.props.children))},t}(s.default.Component);t.default=c},7164:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(7987)),a=r(9872),o=n(r(5427)),s=n(r(5607)),c=n(r(358)),l=n(r(2377)),u=n(r(1154)),p=(0,a.createReactFactory)(c.default),d=(0,a.createReactFactory)(l.default),h=(0,a.createReactFactory)(u.default);function m(e,t){return null!=e?t(e):void 0}t.default=(0,i.default)({displayName:"ProviderTabbedDialog",render:function(){for(var e=this,t=Array.from(function(){switch(e.props.dialog.action){case"openFile":return["list",d];case"saveFile":case"saveFileAs":case"createCopy":return["save",d];case"saveSecondaryFileAs":return["export",d];case"selectProvider":return[null,h]}}()),r=t[0],n=t[1],i=[],a=0,c=0;c<this.props.client.state.availableProviders.length;c++){var l=this.props.client.state.availableProviders[c];if(!r||l.capabilities[r]){var u=l.filterTabComponent(r,n);if(u){var f=u({client:this.props.client,dialog:this.props.dialog,close:this.props.close,provider:l}),E=l.onProviderTabSelected?l.onProviderTabSelected.bind(l):null;i.push(s.default.Tab({key:c,label:(0,o.default)(l.displayName),component:f,capability:r,onSelected:E})),l.name===m(null!=this.props.client.state.metadata?this.props.client.state.metadata.provider:void 0,(function(e){return e.name}))&&(a=i.length-1)}}}return p({title:(0,o.default)(this.props.dialog.title),close:this.props.close,tabs:i,selectedTabIndex:a})}})},5769:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(7987)),a=n(r(1533)),o=n(r(6903)),s=r(9872),c=n(r(5427)),l=n(r(3994)),u=o.default.div,p=o.default.input,d=o.default.button,h=(0,s.createReactFactory)(l.default);t.default=(0,i.default)({displayName:"RenameDialogView",getInitialState:function(){var e=this.props.filename||"";return{filename:e,trimmedFilename:this.trim(e)}},componentDidMount:function(){return this.filename=a.default.findDOMNode(this.filenameRef),this.filename.focus()},updateFilename:function(){var e=this.filename.value;return this.setState({filename:e,trimmedFilename:this.trim(e)})},trim:function(e){return e.replace(/^\s+|\s+$/,"")},rename:function(e){return this.state.trimmedFilename.length>0?("function"==typeof this.props.callback&&this.props.callback(this.state.filename),this.props.close()):(e.preventDefault(),this.filename.focus())},render:function(){var e=this;return h({title:(0,c.default)("~DIALOG.RENAME"),close:this.props.close},u({className:"rename-dialog"},p({ref:function(t){return e.filenameRef=t},placeholder:"Filename",value:this.state.filename,onChange:this.updateFilename}),u({className:"buttons"},d({className:0===this.state.trimmedFilename.length?"disabled":"",onClick:this.rename},(0,c.default)("~RENAME_DIALOG.RENAME")),d({onClick:this.props.close},(0,c.default)("~RENAME_DIALOG.CANCEL")))))}})},5035:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=a(r(7363)),s=a(r(5427)),c=a(r(3994)),l=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.state={preview:!1},t.handleSelect=function(){var e,r;t.props.onSelect(t.props.version.interactiveState),null===(r=(e=t.props).close)||void 0===r||r.call(e)},t.handleTogglePreview=function(){t.setState((function(e){var r=!e.preview;return t.props.onPreview(r),{preview:r}}))},t}return i(t,e),t.prototype.UNSAFE_componentWillReceiveProps=function(e){!e.showingOverlay&&this.state.preview&&this.setState({preview:!1})},t.prototype.render=function(){var e=this.state.preview,t=this.props.version,r=new Date(t.updatedAt).toLocaleString(),n="preview".concat(e?" preview-active":""),i=e?"preview-iframe-fullsize":"preview-iframe";return o.default.createElement("div",{className:"version-info"},o.default.createElement("div",{className:"dialog-button",onClick:this.handleSelect},(0,s.default)("~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION")),o.default.createElement("div",{className:n,onClick:this.handleTogglePreview},o.default.createElement("div",{className:"iframe-wrapper"},o.default.createElement("iframe",{className:i,src:t.externalReportUrl}))),o.default.createElement("div",{className:"center preview-label",onClick:this.handleTogglePreview},(0,s.default)("~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW")),o.default.createElement("table",{className:"version-desc"},o.default.createElement("tbody",null,o.default.createElement("tr",null,o.default.createElement("th",null,(0,s.default)("~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT")),o.default.createElement("td",null,r)),o.default.createElement("tr",null,o.default.createElement("th",null,(0,s.default)("~DIALOG.SELECT_INTERACTIVE_STATE.PAGE")),o.default.createElement("td",null,o.default.createElement("span",null,t.pageNumber),o.default.createElement("span",null,t.pageName?" - ".concat(t.pageName):""))),o.default.createElement("tr",null,o.default.createElement("th",null,(0,s.default)("~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY")),o.default.createElement("td",null,t.activityName)))))},t}(o.default.Component),u=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.state={showOverlay:!1},t.handleOnPreview=function(e){t.setState({showOverlay:e})},t.handleHideOverlay=function(){t.setState({showOverlay:!1})},t}return i(t,e),t.prototype.render=function(){var e=this.state.showOverlay,t=this.props,r=t.state1,n=t.state2,i=t.interactiveStateAvailable,a=t.onSelect,u=t.close,p="overlay".concat(e?" show-overlay":""),d=i?(0,s.default)("~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED"):(0,s.default)("~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED");return o.default.createElement(c.default,{title:(0,s.default)("~DIALOG.SELECT_INTERACTIVE_STATE.TITLE")},o.default.createElement("div",{className:"select-interactive-state-dialog"},o.default.createElement("div",{className:p,onClick:this.handleHideOverlay},(0,s.default)("~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO")),o.default.createElement("div",{className:"content"},o.default.createElement("div",{id:"question"},d),o.default.createElement("div",{className:"scroll-wrapper"},o.default.createElement("div",{className:"versions"},o.default.createElement(l,{version:r,showingOverlay:e,onSelect:a,onPreview:this.handleOnPreview,close:u}),o.default.createElement(l,{version:n,showingOverlay:e,onSelect:a,onPreview:this.handleOnPreview,close:u}))))))},t}(o.default.Component);t.default=u},1154:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(6903)),a=r(9872),o=i.default.div,s=(0,a.createReactClassFactory)({displayName:"SelectProviderDialogTab",render:function(){return o({},"TODO: SelectProviderDialogTab: ".concat(this.props.provider.displayName))}});t.default=s},2090:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.ShareDialogStatusView=void 0;var i=n(r(7363)),a=n(r(5427));t.ShareDialogStatusView=function(e){var t=e.isSharing,r=e.previewLink,n=e.onToggleShare,o=e.onUpdateShare;return i.default.createElement("div",null,i.default.createElement("div",{className:"share-status","data-testid":"share-status"},(0,a.default)("~SHARE_DIALOG.SHARE_STATE"),i.default.createElement("strong",null,(0,a.default)(t?"~SHARE_DIALOG.SHARE_STATE_ENABLED":"~SHARE_DIALOG.SHARE_STATE_DISABLED"),t&&i.default.createElement("a",{href:"#",onClick:n,"data-testid":"toggle-anchor"},(0,a.default)("~SHARE_DIALOG.STOP_SHARING")))),i.default.createElement("div",{className:"share-button"},i.default.createElement("button",{onClick:t?o:n,"data-testid":"share-button-element"},(0,a.default)(t?"~SHARE_DIALOG.UPDATE_SHARING":"~SHARE_DIALOG.ENABLE_SHARING")),i.default.createElement("div",{className:t?"share-button-help-sharing":"share-button-help-not-sharing"},t?i.default.createElement("a",{href:r,target:"_blank",rel:"noreferrer","data-testid":"preview-anchor"},(0,a.default)("~SHARE_DIALOG.PREVIEW_SHARING")):(0,a.default)("~SHARE_DIALOG.ENABLE_SHARING_MESSAGE"))))}},2170:function(e,t,r){"use strict";var n=this&&this.__assign||function(){return n=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var i in t=arguments[r])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},n.apply(this,arguments)},i=this&&this.__rest||function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(n=Object.getOwnPropertySymbols(e);i<n.length;i++)t.indexOf(n[i])<0&&Object.prototype.propertyIsEnumerable.call(e,n[i])&&(r[n[i]]=e[n[i]])}return r},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.ShareDialogTabsView=t.LinkTabContents=t.LaraApiTabContents=t.EmbedTabContents=void 0;var o=a(r(42)),s=a(r(7363)),c=a(r(4981)),l=a(r(5427)),u=function(e){var t=e.icon,r=e.url,n=c.default[t];return s.default.createElement("a",{className:"social-icon",href:r,target:"_blank",rel:"noreferrer"},s.default.createElement("div",{className:"social-container"},s.default.createElement("svg",{className:"social-svg",viewBox:"0 0 64 64"},s.default.createElement("g",{className:"social-svg-background"},s.default.createElement("circle",{cx:32,cy:32,r:31})),s.default.createElement("g",{className:"social-svg-icon"},s.default.createElement("path",{d:n.icon})),s.default.createElement("g",{className:"social-svg-mask",style:{fill:n.color}},s.default.createElement("path",{d:n.mask})))))},p=function(e){var t=e.onClick;return document.execCommand||window.clipboardData?s.default.createElement("a",{className:"copy-link",href:"#",onClick:t,"data-testid":"copy-anchor-link"},(0,l.default)("~SHARE_DIALOG.COPY")):null};t.EmbedTabContents=function(e){var t=e.url,r=e.onCopyClick;return s.default.createElement("div",{"data-testid":"embed-tab-contents"},(0,l.default)("~SHARE_DIALOG.EMBED_MESSAGE"),s.default.createElement(p,{onClick:r}),s.default.createElement("div",null,s.default.createElement("textarea",{value:t||"",readOnly:!0})))},t.LaraApiTabContents=function(e){var t=e.mode,r=e.linkUrl,n=e.serverUrlLabel,i=e.serverUrl,a=e.fullscreenScaling,o=e.visibilityToggles,c=e.onCopyClick,u=e.onChangeServerUrl,d=e.onChangeFullscreenScaling,h=e.onChangeVisibilityToggles;return s.default.createElement("div",{className:t,"data-testid":"lara-api-tab-contents"},(0,l.default)("lara"===t?"~SHARE_DIALOG.LARA_MESSAGE":"~SHARE_DIALOG.INTERACTIVE_API_MESSAGE"),s.default.createElement(p,{onClick:c}),s.default.createElement("div",null,s.default.createElement("input",{value:r,readOnly:!0})),s.default.createElement("div",{className:"lara-api-settings"},s.default.createElement("div",{className:"codap-server-url"},n,s.default.createElement("div",null,s.default.createElement("input",{value:i||"","data-testid":"server-url-input",onChange:u}))),s.default.createElement("div",{className:"fullscreen-scaling"},s.default.createElement("input",{type:"checkbox","data-testid":"fullscreen-scaling-checkbox",checked:a,onChange:d}),(0,l.default)("~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING")),s.default.createElement("div",{className:"visibility-toggles"},s.default.createElement("input",{type:"checkbox","data-testid":"visibility-toggles-checkbox",checked:o,onChange:h}),(0,l.default)("~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES"))))},t.LinkTabContents=function(e){var t=e.url,r=e.onCopyClick,n=encodeURIComponent(t),i="https://www.facebook.com/sharer/sharer.php?u=".concat(n),a="https://twitter.com/home?status=".concat(n);return s.default.createElement("div",{"data-testid":"link-tab-contents"},(0,l.default)("~SHARE_DIALOG.LINK_MESSAGE"),s.default.createElement(p,{onClick:r}),s.default.createElement("div",null,s.default.createElement("input",{value:t||"",readOnly:!0})),s.default.createElement("div",{className:"social-icons"},s.default.createElement(u,{icon:"facebook",url:i}),s.default.createElement(u,{icon:"twitter",url:a})))},t.ShareDialogTabsView=function(e){var r=e.tabSelected,a=e.embedUrl,c=e.linkUrl,u=e.interactiveApi,p=e.onSelectTab,d=e.onCopyClick,h=i(e,["tabSelected","embedUrl","linkUrl","interactiveApi","onSelectTab","onCopyClick"]);return s.default.createElement("div",{"data-testid":"share-dialog-tabs-view"},s.default.createElement("ul",{className:"sharing-tabs"},s.default.createElement("li",{className:(0,o.default)("sharing-tab","sharing-tab-link",{"sharing-tab-selected":"link"===r}),style:{marginLeft:10},onClick:function(){return p("link")},"data-testid":"sharing-tab-link"},(0,l.default)("~SHARE_DIALOG.LINK_TAB")),s.default.createElement("li",{className:(0,o.default)("sharing-tab","sharing-tab-embed",{"sharing-tab-selected":"embed"===r}),onClick:function(){return p("embed")},"data-testid":"sharing-tab-embed"},(0,l.default)("~SHARE_DIALOG.EMBED_TAB")),u&&s.default.createElement("li",{className:(0,o.default)("sharing-tab","sharing-tab-api",{"sharing-tab-selected":"api"===r}),onClick:function(){return p("api")},"data-testid":"sharing-tab-api"},"Interactive API")),s.default.createElement("div",{className:"sharing-tab-contents"},function(){switch(r){case"link":return s.default.createElement(t.LinkTabContents,{url:c,onCopyClick:d});case"embed":return s.default.createElement(t.EmbedTabContents,{url:a,onCopyClick:d});case"api":var e=u.linkUrl,o=i(u,["linkUrl"]);return s.default.createElement(t.LaraApiTabContents,n({mode:"api",linkUrl:e,onCopyClick:d},h,o));default:return null}}()))}},4470:function(e,t,r){"use strict";var n,i=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=a(r(7363)),s=a(r(3994)),c=r(4485),l=r(2090),u=r(2170),p=a(r(5427)),d="".concat("https://cloud-file-manager.concord.org","/autolaunch/autolaunch.html"),h=function(e){function t(t){var r,n,i=e.call(this,t)||this;return i.copy=function(e){var t,r,n;e.preventDefault();var a=!1,o=function(){switch(i.state.tabSelected){case"embed":return i.getEmbed();case"link":return i.getShareLink();case"lara":return i.getLara();case"api":return i.getInteractiveApiLink()}}();try{return(t=document.createElement("mark")).textContent=o,t.style.all="unset",t.style.position="fixed",t.style.top="0",t.style.clip="rect(0, 0, 0, 0)",t.style.whiteSpace="pre",t.style.webkitUserSelect="text",t.style.MozUserSelect="text",t.style.msUserSelect="text",t.style.userSelect="text",document.body.appendChild(t),(n=document.getSelection()).removeAllRanges(),(r=document.createRange()).selectNode(t),n.addRange(r),a=document.execCommand("copy")}catch(e){try{return window.clipboardData.setData("text",o),a=!0}catch(e){return a=!1}}finally{n&&("function"==typeof n.removeRange?n.removeRange(r):n.removeAllRanges()),t&&document.body.removeChild(t),i.props.onAlert((0,p.default)(a?"~SHARE_DIALOG.COPY_SUCCESS":"~SHARE_DIALOG.COPY_ERROR"),(0,p.default)("~SHARE_DIALOG.COPY_TITLE"))}},i.updateShare=function(){return i.props.onUpdateShare()},i.toggleShare=function(e){return e.preventDefault(),i.setState({isLoadingShared:!0}),i.props.onToggleShare((function(){return i.setState({link:i.getShareLink(),embed:i.getEmbed(),isLoadingShared:!1})}))},i.selectShareTab=function(e){i.setState({tabSelected:e})},i.changedLaraServerUrl=function(e){return i.setState({laraServerUrl:e.target.value})},i.changedInteractiveApiServerUrl=function(e){return i.setState({interactiveApiServerUrl:e.target.value})},i.changedFullscreenScaling=function(e){return i.setState({fullscreenScaling:e.target.checked})},i.changedGraphVisToggles=function(e){return i.setState({graphVisToggles:e.target.checked})},i.state={link:i.getShareLink(),embed:i.getEmbed(),laraServerUrl:(null===(r=i.props.settings)||void 0===r?void 0:r.serverUrl)||"https://codap.concord.org/releases/latest/",laraServerUrlLabel:(null===(n=i.props.settings)||void 0===n?void 0:n.serverUrlLabel)||(0,p.default)("~SHARE_DIALOG.LARA_CODAP_URL"),interactiveApiServerUrl:i.props.currentBaseUrl,interactiveApiServerUrlLabel:"Server URL",fullscreenScaling:!0,graphVisToggles:!1,tabSelected:"link",isLoadingShared:!1},i}return i(t,e),t.prototype.getShareUrl=function(){var e=this.props,t=e.isShared,r=e.sharedDocumentId,n=e.sharedDocumentUrl;if(t){if(n)return n;if(r)return r}return null},t.prototype.getShareLink=function(){var e=this.getShareUrl();return e?"".concat(this.props.currentBaseUrl,"#shared=").concat(encodeURIComponent(e)):null},t.prototype.getEmbed=function(){return this.getShareLink()?'<iframe width="398px" height="313px" frameborder="no" scrolling="no" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true" src="'.concat(this.getShareLink(),'"></iframe>'):null},t.prototype.getEncodedServerUrl=function(e){var t=e.includes("?")?"&":"?",r=this.state.graphVisToggles?"app=is":"";return encodeURIComponent("".concat(e).concat(t).concat(r))},t.prototype.getLara=function(){var e=encodeURIComponent(this.getShareUrl()),t=this.getEncodedServerUrl(this.state.laraServerUrl),r=this.state.fullscreenScaling?"&scaling":"";return"".concat(d,"?documentId=").concat(e,"&server=").concat(t).concat(r)},t.prototype.getInteractiveApiLink=function(){var e=encodeURIComponent(this.getShareUrl()),t=this.state.interactiveApiServerUrl.includes("?")?"&":"?",r=this.state.graphVisToggles?"app=is&":"",n="".concat(this.state.interactiveApiServerUrl).concat(t).concat(r,"interactiveApi&documentId=").concat(e);return this.state.fullscreenScaling&&(n="".concat("https://models-resources.concord.org/question-interactives/full-screen/","?wrappedInteractive=").concat(encodeURIComponent(n))),n},t.prototype.render=function(){var e=this.props.isShared,t=this.state,r=t.isLoadingShared,n=t.link,i=e||null!=n;return o.default.createElement(s.default,{title:(0,p.default)("~DIALOG.SHARED"),close:this.props.close},o.default.createElement("div",{className:"share-dialog","data-testid":"share-dialog"},o.default.createElement("div",{className:"share-top-dialog"},r?o.default.createElement(c.ShareLoadingView,null):o.default.createElement(l.ShareDialogStatusView,{isSharing:i,previewLink:this.state.link,onToggleShare:this.toggleShare,onUpdateShare:this.updateShare})),i&&o.default.createElement(u.ShareDialogTabsView,{tabSelected:this.state.tabSelected,linkUrl:this.state.link,embedUrl:this.state.embed,interactiveApi:this.props.enableLaraSharing?{linkUrl:this.getInteractiveApiLink(),serverUrlLabel:this.state.interactiveApiServerUrlLabel,serverUrl:this.state.interactiveApiServerUrl,onChangeServerUrl:this.changedInteractiveApiServerUrl}:void 0,fullscreenScaling:this.state.fullscreenScaling,visibilityToggles:this.state.graphVisToggles,onChangeFullscreenScaling:this.changedFullscreenScaling,onChangeVisibilityToggles:this.changedGraphVisToggles,onSelectTab:this.selectShareTab,onCopyClick:this.copy}),o.default.createElement("div",{className:"buttons"},o.default.createElement("button",{onClick:this.props.close},(0,p.default)("~SHARE_DIALOG.CLOSE"))),!1))},t}(o.default.Component);t.default=h},4485:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.ShareLoadingView=void 0;var i=n(r(7363)),a=n(r(5427)),o=r(5671);t.ShareLoadingView=function(e){return i.default.createElement("div",{className:"share-loading-view","data-testid":"share-loading-view"},i.default.createElement(o.Spinner,{fill:"gray",size:100}),(0,a.default)("~SHARE_DIALOG.PLEASE_WAIT"))}},5607:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(7987)),a=n(r(6903)),o=r(9872),s=a.default.div,c=a.default.ul,l=a.default.li,u=function(e){null==e&&(e={}),this.label=e.label,this.component=e.component,this.capability=e.capability,this.onSelected=e.onSelected},p=(0,o.createReactClassFactory)({displayName:"TabbedPanelTab",clicked:function(e){return e.preventDefault(),this.props.onSelected(this.props.index)},render:function(){var e=this.props.selected?"tab-selected":"";return l({className:e,onClick:this.clicked},this.props.label)}});t.default=(0,i.default)({displayName:"TabbedPanelView",getInitialState:function(){return{selectedTabIndex:this.props.selectedTabIndex||0}},componentDidMount:function(){return"function"==typeof this.props.tabs[this.state.selectedTabIndex].onSelected?this.props.tabs[this.state.selectedTabIndex].onSelected(this.props.tabs[this.state.selectedTabIndex].capability):void 0},statics:{Tab:function(e){return new u(e)}},selectedTab:function(e){return"function"==typeof this.props.tabs[e].onSelected&&this.props.tabs[e].onSelected(this.props.tabs[e].capability),this.setState({selectedTabIndex:e})},renderTab:function(e,t){return p({label:e.label,key:t,index:t,selected:t===this.state.selectedTabIndex,onSelected:this.selectedTab})},renderTabs:function(){var e=this;return s({className:"workspace-tabs"},Array.from(this.props.tabs).map((function(t,r){return c({key:r},e.renderTab(t,r))})))},renderSelectedPanel:function(){var e=this;return s({className:"workspace-tab-component"},Array.from(this.props.tabs).map((function(t,r){return s({key:r,style:{display:r===e.state.selectedTabIndex?"block":"none"}},t.component)})))},render:function(){return s({className:"tabbed-panel"},this.renderTabs(),this.renderSelectedPanel())}})},399:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(r(3336)),a=n(r(7987)),o=n(r(1533)),s=n(r(6903)),c=s.default.div,l=s.default.input,u=s.default.button,p=n(r(5427));t.default=(0,a.default)({displayName:"UrlTab",getInitialState:function(){return{hover:!1}},importUrl:function(e,t){return"function"==typeof this.props.dialog.callback&&this.props.dialog.callback(e,t),this.props.close()},import:function(){var e=i.default.trim(o.default.findDOMNode(this.urlRef).value);return 0===e.length?this.props.client.alert((0,p.default)("~IMPORT_URL.PLEASE_ENTER_URL")):this.importUrl(e,"select")},cancel:function(){return this.props.close()},dragEnter:function(e){return e.preventDefault(),this.setState({hover:!0})},dragLeave:function(e){return e.preventDefault(),this.setState({hover:!1})},drop:function(e){if(e.preventDefault(),e.dataTransfer){var t=(e.dataTransfer.getData("url")||e.dataTransfer.getData("text/uri-list")||"").split("\n");if(t.length>1)return this.props.client.alert((0,p.default)("~IMPORT_URL.MULTIPLE_URLS_DROPPED"));if(1===t.length)return this.importUrl(t[0],"drop")}},render:function(){var e=this,t="urlDropArea".concat(this.state.hover?" dropHover":"");return c({className:"dialogTab urlImport"},c({className:t,onDragEnter:this.dragEnter,onDragLeave:this.dragLeave,onDrop:this.drop},(0,p.default)("~URL_TAB.DROP_URL_HERE")),l({ref:function(t){return e.urlRef=t},placeholder:"URL"}),c({className:"buttons"},u({onClick:this.import},(0,p.default)("~URL_TAB.IMPORT")),u({onClick:this.cancel},(0,p.default)("~FILE_DIALOG.CANCEL"))))}})},8884:function(e,t,r){var n;e=r.nmd(e),function(i){t&&t.nodeType,e&&e.nodeType;var a="object"==typeof r.g&&r.g;a.global!==a&&a.window!==a&&a.self;var o,s=2147483647,c=36,l=26,u=38,p=700,d=/^xn--/,h=/[^\x20-\x7E]/,m=/[\x2E\u3002\uFF0E\uFF61]/g,f={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},E=c-1,v=Math.floor,_=String.fromCharCode;function g(e){throw RangeError(f[e])}function y(e,t){for(var r=e.length,n=[];r--;)n[r]=t(e[r]);return n}function A(e,t){var r=e.split("@"),n="";return r.length>1&&(n=r[0]+"@",e=r[1]),n+y((e=e.replace(m,".")).split("."),t).join(".")}function O(e){for(var t,r,n=[],i=0,a=e.length;i<a;)(t=e.charCodeAt(i++))>=55296&&t<=56319&&i<a?56320==(64512&(r=e.charCodeAt(i++)))?n.push(((1023&t)<<10)+(1023&r)+65536):(n.push(t),i--):n.push(t);return n}function S(e){return y(e,(function(e){var t="";return e>65535&&(t+=_((e-=65536)>>>10&1023|55296),e=56320|1023&e),t+_(e)})).join("")}function R(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function I(e,t,r){var n=0;for(e=r?v(e/p):e>>1,e+=v(e/t);e>E*l>>1;n+=c)e=v(e/E);return v(n+(E+1)*e/(e+u))}function L(e){var t,r,n,i,a,o,u,p,d,h,m,f=[],E=e.length,_=0,y=128,A=72;for((r=e.lastIndexOf("-"))<0&&(r=0),n=0;n<r;++n)e.charCodeAt(n)>=128&&g("not-basic"),f.push(e.charCodeAt(n));for(i=r>0?r+1:0;i<E;){for(a=_,o=1,u=c;i>=E&&g("invalid-input"),((p=(m=e.charCodeAt(i++))-48<10?m-22:m-65<26?m-65:m-97<26?m-97:c)>=c||p>v((s-_)/o))&&g("overflow"),_+=p*o,!(p<(d=u<=A?1:u>=A+l?l:u-A));u+=c)o>v(s/(h=c-d))&&g("overflow"),o*=h;A=I(_-a,t=f.length+1,0==a),v(_/t)>s-y&&g("overflow"),y+=v(_/t),_%=t,f.splice(_++,0,y)}return S(f)}function C(e){var t,r,n,i,a,o,u,p,d,h,m,f,E,y,A,S=[];for(f=(e=O(e)).length,t=128,r=0,a=72,o=0;o<f;++o)(m=e[o])<128&&S.push(_(m));for(n=i=S.length,i&&S.push("-");n<f;){for(u=s,o=0;o<f;++o)(m=e[o])>=t&&m<u&&(u=m);for(u-t>v((s-r)/(E=n+1))&&g("overflow"),r+=(u-t)*E,t=u,o=0;o<f;++o)if((m=e[o])<t&&++r>s&&g("overflow"),m==t){for(p=r,d=c;!(p<(h=d<=a?1:d>=a+l?l:d-a));d+=c)A=p-h,y=c-h,S.push(_(R(h+A%y,0))),p=v(A/y);S.push(_(R(p,0))),a=I(r,E,n==i),r=0,++n}++r,++t}return S.join("")}o={version:"1.3.2",ucs2:{decode:O,encode:S},decode:L,encode:C,toASCII:function(e){return A(e,(function(e){return h.test(e)?"xn--"+C(e):e}))},toUnicode:function(e){return A(e,(function(e){return d.test(e)?L(e.slice(4).toLowerCase()):e}))}},void 0===(n=function(){return o}.call(t,r,t,e))||(e.exports=n)}()},4760:(e,t,r)=>{var n=r(8884);function i(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}t.parse=v,t.resolve=function(e,t){return v(e,!1,!0).resolve(t)},t.resolveObject=function(e,t){return e?v(e,!1,!0).resolveObject(t):t},t.format=function(e){return _(e)&&(e=v(e)),e instanceof i?e.format():i.prototype.format.call(e)},t.Url=i;var a=/^([a-z0-9.+-]+:)/i,o=/:[0-9]*$/,s=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),c=["'"].concat(s),l=["%","/","?",";","#"].concat(c),u=["/","?","#"],p=/^[a-z0-9A-Z_-]{0,63}$/,d=/^([a-z0-9A-Z_-]{0,63})(.*)$/,h={javascript:!0,"javascript:":!0},m={javascript:!0,"javascript:":!0},f={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},E=r(8966);function v(e,t,r){if(e&&g(e)&&e instanceof i)return e;var n=new i;return n.parse(e,t,r),n}function _(e){return"string"==typeof e}function g(e){return"object"==typeof e&&null!==e}function y(e){return null===e}i.prototype.parse=function(e,t,r){if(!_(e))throw new TypeError("Parameter 'url' must be a string, not "+typeof e);var i=e;i=i.trim();var o=a.exec(i);if(o){var s=(o=o[0]).toLowerCase();this.protocol=s,i=i.substr(o.length)}if(r||o||i.match(/^\/\/[^@\/]+@[^@\/]+/)){var v="//"===i.substr(0,2);!v||o&&m[o]||(i=i.substr(2),this.slashes=!0)}if(!m[o]&&(v||o&&!f[o])){for(var g,y,A=-1,O=0;O<u.length;O++)-1!==(S=i.indexOf(u[O]))&&(-1===A||S<A)&&(A=S);for(-1!==(y=-1===A?i.lastIndexOf("@"):i.lastIndexOf("@",A))&&(g=i.slice(0,y),i=i.slice(y+1),this.auth=decodeURIComponent(g)),A=-1,O=0;O<l.length;O++){var S;-1!==(S=i.indexOf(l[O]))&&(-1===A||S<A)&&(A=S)}-1===A&&(A=i.length),this.host=i.slice(0,A),i=i.slice(A),this.parseHost(),this.hostname=this.hostname||"";var R="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1];if(!R)for(var I=this.hostname.split(/\./),L=(O=0,I.length);O<L;O++){var C=I[O];if(C&&!C.match(p)){for(var D="",b=0,T=C.length;b<T;b++)C.charCodeAt(b)>127?D+="x":D+=C[b];if(!D.match(p)){var N=I.slice(0,O),k=I.slice(O+1),w=C.match(d);w&&(N.push(w[1]),k.unshift(w[2])),k.length&&(i="/"+k.join(".")+i),this.hostname=N.join(".");break}}}if(this.hostname.length>255?this.hostname="":this.hostname=this.hostname.toLowerCase(),!R){var x=this.hostname.split("."),M=[];for(O=0;O<x.length;++O){var P=x[O];M.push(P.match(/[^A-Za-z0-9_-]/)?"xn--"+n.encode(P):P)}this.hostname=M.join(".")}var G=this.port?":"+this.port:"",U=this.hostname||"";this.host=U+G,this.href+=this.host,R&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),"/"!==i[0]&&(i="/"+i))}if(!h[s])for(O=0,L=c.length;O<L;O++){var F=c[O],V=encodeURIComponent(F);V===F&&(V=escape(F)),i=i.split(F).join(V)}var z=i.indexOf("#");-1!==z&&(this.hash=i.substr(z),i=i.slice(0,z));var B=i.indexOf("?");return-1!==B?(this.search=i.substr(B),this.query=i.substr(B+1),t&&(this.query=E.parse(this.query)),i=i.slice(0,B)):t&&(this.search="",this.query={}),i&&(this.pathname=i),f[s]&&this.hostname&&!this.pathname&&(this.pathname="/"),(this.pathname||this.search)&&(G=this.pathname||"",P=this.search||"",this.path=G+P),this.href=this.format(),this},i.prototype.format=function(){var e=this.auth||"";e&&(e=(e=encodeURIComponent(e)).replace(/%3A/i,":"),e+="@");var t=this.protocol||"",r=this.pathname||"",n=this.hash||"",i=!1,a="";this.host?i=e+this.host:this.hostname&&(i=e+(-1===this.hostname.indexOf(":")?this.hostname:"["+this.hostname+"]"),this.port&&(i+=":"+this.port)),this.query&&g(this.query)&&Object.keys(this.query).length&&(a=E.stringify(this.query));var o=this.search||a&&"?"+a||"";return t&&":"!==t.substr(-1)&&(t+=":"),this.slashes||(!t||f[t])&&!1!==i?(i="//"+(i||""),r&&"/"!==r.charAt(0)&&(r="/"+r)):i||(i=""),n&&"#"!==n.charAt(0)&&(n="#"+n),o&&"?"!==o.charAt(0)&&(o="?"+o),t+i+(r=r.replace(/[?#]/g,(function(e){return encodeURIComponent(e)})))+(o=o.replace("#","%23"))+n},i.prototype.resolve=function(e){return this.resolveObject(v(e,!1,!0)).format()},i.prototype.resolveObject=function(e){if(_(e)){var t=new i;t.parse(e,!1,!0),e=t}var r=new i;if(Object.keys(this).forEach((function(e){r[e]=this[e]}),this),r.hash=e.hash,""===e.href)return r.href=r.format(),r;if(e.slashes&&!e.protocol)return Object.keys(e).forEach((function(t){"protocol"!==t&&(r[t]=e[t])})),f[r.protocol]&&r.hostname&&!r.pathname&&(r.path=r.pathname="/"),r.href=r.format(),r;if(e.protocol&&e.protocol!==r.protocol){if(!f[e.protocol])return Object.keys(e).forEach((function(t){r[t]=e[t]})),r.href=r.format(),r;if(r.protocol=e.protocol,e.host||m[e.protocol])r.pathname=e.pathname;else{for(var n=(e.pathname||"").split("/");n.length&&!(e.host=n.shift()););e.host||(e.host=""),e.hostname||(e.hostname=""),""!==n[0]&&n.unshift(""),n.length<2&&n.unshift(""),r.pathname=n.join("/")}if(r.search=e.search,r.query=e.query,r.host=e.host||"",r.auth=e.auth,r.hostname=e.hostname||e.host,r.port=e.port,r.pathname||r.search){var a=r.pathname||"",o=r.search||"";r.path=a+o}return r.slashes=r.slashes||e.slashes,r.href=r.format(),r}var s=r.pathname&&"/"===r.pathname.charAt(0),c=e.host||e.pathname&&"/"===e.pathname.charAt(0),l=c||s||r.host&&e.pathname,u=l,p=r.pathname&&r.pathname.split("/")||[],d=(n=e.pathname&&e.pathname.split("/")||[],r.protocol&&!f[r.protocol]);if(d&&(r.hostname="",r.port=null,r.host&&(""===p[0]?p[0]=r.host:p.unshift(r.host)),r.host="",e.protocol&&(e.hostname=null,e.port=null,e.host&&(""===n[0]?n[0]=e.host:n.unshift(e.host)),e.host=null),l=l&&(""===n[0]||""===p[0])),c)r.host=e.host||""===e.host?e.host:r.host,r.hostname=e.hostname||""===e.hostname?e.hostname:r.hostname,r.search=e.search,r.query=e.query,p=n;else if(n.length)p||(p=[]),p.pop(),p=p.concat(n),r.search=e.search,r.query=e.query;else if(null!=e.search)return d&&(r.hostname=r.host=p.shift(),(A=!!(r.host&&r.host.indexOf("@")>0)&&r.host.split("@"))&&(r.auth=A.shift(),r.host=r.hostname=A.shift())),r.search=e.search,r.query=e.query,y(r.pathname)&&y(r.search)||(r.path=(r.pathname?r.pathname:"")+(r.search?r.search:"")),r.href=r.format(),r;if(!p.length)return r.pathname=null,r.search?r.path="/"+r.search:r.path=null,r.href=r.format(),r;for(var h=p.slice(-1)[0],E=(r.host||e.host)&&("."===h||".."===h)||""===h,v=0,g=p.length;g>=0;g--)"."==(h=p[g])?p.splice(g,1):".."===h?(p.splice(g,1),v++):v&&(p.splice(g,1),v--);if(!l&&!u)for(;v--;v)p.unshift("..");!l||""===p[0]||p[0]&&"/"===p[0].charAt(0)||p.unshift(""),E&&"/"!==p.join("/").substr(-1)&&p.push("");var A,O=""===p[0]||p[0]&&"/"===p[0].charAt(0);return d&&(r.hostname=r.host=O?"":p.length?p.shift():"",(A=!!(r.host&&r.host.indexOf("@")>0)&&r.host.split("@"))&&(r.auth=A.shift(),r.host=r.hostname=A.shift())),(l=l||r.host&&p.length)&&!O&&p.unshift(""),p.length?r.pathname=p.join("/"):(r.pathname=null,r.path=null),y(r.pathname)&&y(r.search)||(r.path=(r.pathname?r.pathname:"")+(r.search?r.search:"")),r.auth=e.auth||r.auth,r.slashes=r.slashes||e.slashes,r.href=r.format(),r},i.prototype.parseHost=function(){var e=this.host,t=o.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)}},6579:e=>{e.exports=function(e){return e&&"object"==typeof e&&"function"==typeof e.copy&&"function"==typeof e.fill&&"function"==typeof e.readUInt8}},7673:(e,t,r)=>{"use strict";var n=r(7740),i=r(8265),a=r(2505),o=r(387);function s(e){return e.call.bind(e)}var c="undefined"!=typeof BigInt,l="undefined"!=typeof Symbol,u=s(Object.prototype.toString),p=s(Number.prototype.valueOf),d=s(String.prototype.valueOf),h=s(Boolean.prototype.valueOf);if(c)var m=s(BigInt.prototype.valueOf);if(l)var f=s(Symbol.prototype.valueOf);function E(e,t){if("object"!=typeof e)return!1;try{return t(e),!0}catch(e){return!1}}function v(e){return"[object Map]"===u(e)}function _(e){return"[object Set]"===u(e)}function g(e){return"[object WeakMap]"===u(e)}function y(e){return"[object WeakSet]"===u(e)}function A(e){return"[object ArrayBuffer]"===u(e)}function O(e){return"undefined"!=typeof ArrayBuffer&&(A.working?A(e):e instanceof ArrayBuffer)}function S(e){return"[object DataView]"===u(e)}function R(e){return"undefined"!=typeof DataView&&(S.working?S(e):e instanceof DataView)}t.isArgumentsObject=n,t.isGeneratorFunction=i,t.isTypedArray=o,t.isPromise=function(e){return"undefined"!=typeof Promise&&e instanceof Promise||null!==e&&"object"==typeof e&&"function"==typeof e.then&&"function"==typeof e.catch},t.isArrayBufferView=function(e){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):o(e)||R(e)},t.isUint8Array=function(e){return"Uint8Array"===a(e)},t.isUint8ClampedArray=function(e){return"Uint8ClampedArray"===a(e)},t.isUint16Array=function(e){return"Uint16Array"===a(e)},t.isUint32Array=function(e){return"Uint32Array"===a(e)},t.isInt8Array=function(e){return"Int8Array"===a(e)},t.isInt16Array=function(e){return"Int16Array"===a(e)},t.isInt32Array=function(e){return"Int32Array"===a(e)},t.isFloat32Array=function(e){return"Float32Array"===a(e)},t.isFloat64Array=function(e){return"Float64Array"===a(e)},t.isBigInt64Array=function(e){return"BigInt64Array"===a(e)},t.isBigUint64Array=function(e){return"BigUint64Array"===a(e)},v.working="undefined"!=typeof Map&&v(new Map),t.isMap=function(e){return"undefined"!=typeof Map&&(v.working?v(e):e instanceof Map)},_.working="undefined"!=typeof Set&&_(new Set),t.isSet=function(e){return"undefined"!=typeof Set&&(_.working?_(e):e instanceof Set)},g.working="undefined"!=typeof WeakMap&&g(new WeakMap),t.isWeakMap=function(e){return"undefined"!=typeof WeakMap&&(g.working?g(e):e instanceof WeakMap)},y.working="undefined"!=typeof WeakSet&&y(new WeakSet),t.isWeakSet=function(e){return y(e)},A.working="undefined"!=typeof ArrayBuffer&&A(new ArrayBuffer),t.isArrayBuffer=O,S.working="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView&&S(new DataView(new ArrayBuffer(1),0,1)),t.isDataView=R;var I="undefined"!=typeof SharedArrayBuffer?SharedArrayBuffer:void 0;function L(e){return"[object SharedArrayBuffer]"===u(e)}function C(e){return void 0!==I&&(void 0===L.working&&(L.working=L(new I)),L.working?L(e):e instanceof I)}function D(e){return E(e,p)}function b(e){return E(e,d)}function T(e){return E(e,h)}function N(e){return c&&E(e,m)}function k(e){return l&&E(e,f)}t.isSharedArrayBuffer=C,t.isAsyncFunction=function(e){return"[object AsyncFunction]"===u(e)},t.isMapIterator=function(e){return"[object Map Iterator]"===u(e)},t.isSetIterator=function(e){return"[object Set Iterator]"===u(e)},t.isGeneratorObject=function(e){return"[object Generator]"===u(e)},t.isWebAssemblyCompiledModule=function(e){return"[object WebAssembly.Module]"===u(e)},t.isNumberObject=D,t.isStringObject=b,t.isBooleanObject=T,t.isBigIntObject=N,t.isSymbolObject=k,t.isBoxedPrimitive=function(e){return D(e)||b(e)||T(e)||N(e)||k(e)},t.isAnyArrayBuffer=function(e){return"undefined"!=typeof Uint8Array&&(O(e)||C(e))},["isProxy","isExternal","isModuleNamespaceObject"].forEach((function(e){Object.defineProperty(t,e,{enumerable:!1,value:function(){throw new Error(e+" is not supported in userland")}})}))},1323:(e,t,r)=>{var n=Object.getOwnPropertyDescriptors||function(e){for(var t=Object.keys(e),r={},n=0;n<t.length;n++)r[t[n]]=Object.getOwnPropertyDescriptor(e,t[n]);return r},i=/%[sdj%]/g;t.format=function(e){if(!_(e)){for(var t=[],r=0;r<arguments.length;r++)t.push(c(arguments[r]));return t.join(" ")}r=1;for(var n=arguments,a=n.length,o=String(e).replace(i,(function(e){if("%%"===e)return"%";if(r>=a)return e;switch(e){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch(e){return"[Circular]"}default:return e}})),s=n[r];r<a;s=n[++r])E(s)||!A(s)?o+=" "+s:o+=" "+c(s);return o},t.deprecate=function(e,r){if("undefined"!=typeof process&&!0===process.noDeprecation)return e;if("undefined"==typeof process)return function(){return t.deprecate(e,r).apply(this,arguments)};var n=!1;return function(){if(!n){if(process.throwDeprecation)throw new Error(r);process.traceDeprecation?console.trace(r):console.error(r),n=!0}return e.apply(this,arguments)}};var a={},o=/^$/;if(process.env.NODE_DEBUG){var s=process.env.NODE_DEBUG;s=s.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase(),o=new RegExp("^"+s+"$","i")}function c(e,r){var n={seen:[],stylize:u};return arguments.length>=3&&(n.depth=arguments[2]),arguments.length>=4&&(n.colors=arguments[3]),f(r)?n.showHidden=r:r&&t._extend(n,r),g(n.showHidden)&&(n.showHidden=!1),g(n.depth)&&(n.depth=2),g(n.colors)&&(n.colors=!1),g(n.customInspect)&&(n.customInspect=!0),n.colors&&(n.stylize=l),p(n,e,n.depth)}function l(e,t){var r=c.styles[t];return r?"["+c.colors[r][0]+"m"+e+"["+c.colors[r][1]+"m":e}function u(e,t){return e}function p(e,r,n){if(e.customInspect&&r&&R(r.inspect)&&r.inspect!==t.inspect&&(!r.constructor||r.constructor.prototype!==r)){var i=r.inspect(n,e);return _(i)||(i=p(e,i,n)),i}var a=function(e,t){if(g(t))return e.stylize("undefined","undefined");if(_(t)){var r="'"+JSON.stringify(t).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return e.stylize(r,"string")}return v(t)?e.stylize(""+t,"number"):f(t)?e.stylize(""+t,"boolean"):E(t)?e.stylize("null","null"):void 0}(e,r);if(a)return a;var o=Object.keys(r),s=function(e){var t={};return e.forEach((function(e,r){t[e]=!0})),t}(o);if(e.showHidden&&(o=Object.getOwnPropertyNames(r)),S(r)&&(o.indexOf("message")>=0||o.indexOf("description")>=0))return d(r);if(0===o.length){if(R(r)){var c=r.name?": "+r.name:"";return e.stylize("[Function"+c+"]","special")}if(y(r))return e.stylize(RegExp.prototype.toString.call(r),"regexp");if(O(r))return e.stylize(Date.prototype.toString.call(r),"date");if(S(r))return d(r)}var l,u="",A=!1,I=["{","}"];return m(r)&&(A=!0,I=["[","]"]),R(r)&&(u=" [Function"+(r.name?": "+r.name:"")+"]"),y(r)&&(u=" "+RegExp.prototype.toString.call(r)),O(r)&&(u=" "+Date.prototype.toUTCString.call(r)),S(r)&&(u=" "+d(r)),0!==o.length||A&&0!=r.length?n<0?y(r)?e.stylize(RegExp.prototype.toString.call(r),"regexp"):e.stylize("[Object]","special"):(e.seen.push(r),l=A?function(e,t,r,n,i){for(var a=[],o=0,s=t.length;o<s;++o)D(t,String(o))?a.push(h(e,t,r,n,String(o),!0)):a.push("");return i.forEach((function(i){i.match(/^\d+$/)||a.push(h(e,t,r,n,i,!0))})),a}(e,r,n,s,o):o.map((function(t){return h(e,r,n,s,t,A)})),e.seen.pop(),function(e,t,r){return e.reduce((function(e,t){return t.indexOf("\n"),e+t.replace(/\u001b\[\d\d?m/g,"").length+1}),0)>60?r[0]+(""===t?"":t+"\n ")+" "+e.join(",\n ")+" "+r[1]:r[0]+t+" "+e.join(", ")+" "+r[1]}(l,u,I)):I[0]+u+I[1]}function d(e){return"["+Error.prototype.toString.call(e)+"]"}function h(e,t,r,n,i,a){var o,s,c;if((c=Object.getOwnPropertyDescriptor(t,i)||{value:t[i]}).get?s=c.set?e.stylize("[Getter/Setter]","special"):e.stylize("[Getter]","special"):c.set&&(s=e.stylize("[Setter]","special")),D(n,i)||(o="["+i+"]"),s||(e.seen.indexOf(c.value)<0?(s=E(r)?p(e,c.value,null):p(e,c.value,r-1)).indexOf("\n")>-1&&(s=a?s.split("\n").map((function(e){return" "+e})).join("\n").slice(2):"\n"+s.split("\n").map((function(e){return" "+e})).join("\n")):s=e.stylize("[Circular]","special")),g(o)){if(a&&i.match(/^\d+$/))return s;(o=JSON.stringify(""+i)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(o=o.slice(1,-1),o=e.stylize(o,"name")):(o=o.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),o=e.stylize(o,"string"))}return o+": "+s}function m(e){return Array.isArray(e)}function f(e){return"boolean"==typeof e}function E(e){return null===e}function v(e){return"number"==typeof e}function _(e){return"string"==typeof e}function g(e){return void 0===e}function y(e){return A(e)&&"[object RegExp]"===I(e)}function A(e){return"object"==typeof e&&null!==e}function O(e){return A(e)&&"[object Date]"===I(e)}function S(e){return A(e)&&("[object Error]"===I(e)||e instanceof Error)}function R(e){return"function"==typeof e}function I(e){return Object.prototype.toString.call(e)}function L(e){return e<10?"0"+e.toString(10):e.toString(10)}t.debuglog=function(e){if(e=e.toUpperCase(),!a[e])if(o.test(e)){var r=process.pid;a[e]=function(){var n=t.format.apply(t,arguments);console.error("%s %d: %s",e,r,n)}}else a[e]=function(){};return a[e]},t.inspect=c,c.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},c.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},t.types=r(7673),t.isArray=m,t.isBoolean=f,t.isNull=E,t.isNullOrUndefined=function(e){return null==e},t.isNumber=v,t.isString=_,t.isSymbol=function(e){return"symbol"==typeof e},t.isUndefined=g,t.isRegExp=y,t.types.isRegExp=y,t.isObject=A,t.isDate=O,t.types.isDate=O,t.isError=S,t.types.isNativeError=S,t.isFunction=R,t.isPrimitive=function(e){return null===e||"boolean"==typeof e||"number"==typeof e||"string"==typeof e||"symbol"==typeof e||void 0===e},t.isBuffer=r(6579);var C=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function D(e,t){return Object.prototype.hasOwnProperty.call(e,t)}t.log=function(){var e,r;console.log("%s - %s",(r=[L((e=new Date).getHours()),L(e.getMinutes()),L(e.getSeconds())].join(":"),[e.getDate(),C[e.getMonth()],r].join(" ")),t.format.apply(t,arguments))},t.inherits=r(87),t._extend=function(e,t){if(!t||!A(t))return e;for(var r=Object.keys(t),n=r.length;n--;)e[r[n]]=t[r[n]];return e};var b="undefined"!=typeof Symbol?Symbol("util.promisify.custom"):void 0;function T(e,t){if(!e){var r=new Error("Promise was rejected with a falsy value");r.reason=e,e=r}return t(e)}t.promisify=function(e){if("function"!=typeof e)throw new TypeError('The "original" argument must be of type Function');if(b&&e[b]){var t;if("function"!=typeof(t=e[b]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(t,b,{value:t,enumerable:!1,writable:!1,configurable:!0}),t}function t(){for(var t,r,n=new Promise((function(e,n){t=e,r=n})),i=[],a=0;a<arguments.length;a++)i.push(arguments[a]);i.push((function(e,n){e?r(e):t(n)}));try{e.apply(this,i)}catch(e){r(e)}return n}return Object.setPrototypeOf(t,Object.getPrototypeOf(e)),b&&Object.defineProperty(t,b,{value:t,enumerable:!1,writable:!1,configurable:!0}),Object.defineProperties(t,n(e))},t.promisify.custom=b,t.callbackify=function(e){if("function"!=typeof e)throw new TypeError('The "original" argument must be of type Function');function t(){for(var t=[],r=0;r<arguments.length;r++)t.push(arguments[r]);var n=t.pop();if("function"!=typeof n)throw new TypeError("The last argument must be of type Function");var i=this,a=function(){return n.apply(i,arguments)};e.apply(this,t).then((function(e){process.nextTick(a.bind(null,null,e))}),(function(e){process.nextTick(T.bind(null,e,a))}))}return Object.setPrototypeOf(t,Object.getPrototypeOf(e)),Object.defineProperties(t,n(e)),t}},2505:(e,t,r)=>{"use strict";var n=r(5278),i=r(973),a=r(4573),o=r(2737),s=r(7502),c=o("Object.prototype.toString"),l=r(698)(),u="undefined"==typeof globalThis?r.g:globalThis,p=i(),d=o("String.prototype.slice"),h=Object.getPrototypeOf,m=o("Array.prototype.indexOf",!0)||function(e,t){for(var r=0;r<e.length;r+=1)if(e[r]===t)return r;return-1},f={__proto__:null};n(p,l&&s&&h?function(e){var t=new u[e];if(Symbol.toStringTag in t){var r=h(t),n=s(r,Symbol.toStringTag);if(!n){var i=h(r);n=s(i,Symbol.toStringTag)}f["$"+e]=a(n.get)}}:function(e){var t=new u[e],r=t.slice||t.set;r&&(f["$"+e]=a(r))}),e.exports=function(e){if(!e||"object"!=typeof e)return!1;if(!l){var t=d(c(e),8,-1);return m(p,t)>-1?t:"Object"===t&&function(e){var t=!1;return n(f,(function(r,n){if(!t)try{r(e),t=d(n,1)}catch(e){}})),t}(e)}return s?function(e){var t=!1;return n(f,(function(r,n){if(!t)try{"$"+r(e)===n&&(t=d(n,1))}catch(e){}})),t}(e):null}},3336:e=>{"use strict";e.exports=$},7363:e=>{"use strict";e.exports=React},1533:e=>{"use strict";e.exports=ReactDOM},6903:e=>{"use strict";e.exports=ReactDOMFactories},2611:e=>{"use strict";e.exports=_},7987:e=>{"use strict";e.exports=createReactClass},1359:()=>{},1581:()=>{},2040:()=>{},973:(e,t,r)=>{"use strict";var n=["BigInt64Array","BigUint64Array","Float32Array","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Uint8Array","Uint8ClampedArray"],i="undefined"==typeof globalThis?r.g:globalThis;e.exports=function(){for(var e=[],t=0;t<n.length;t++)"function"==typeof i[n[t]]&&(e[e.length]=n[t]);return e}},1081:(e,t,r)=>{"use strict";r.r(t),r.d(t,{Mime:()=>p,default:()=>d});const n={"application/prs.cww":["cww"],"application/prs.xsf+xml":["xsf"],"application/vnd.1000minds.decision-model+xml":["1km"],"application/vnd.3gpp.pic-bw-large":["plb"],"application/vnd.3gpp.pic-bw-small":["psb"],"application/vnd.3gpp.pic-bw-var":["pvb"],"application/vnd.3gpp2.tcap":["tcap"],"application/vnd.3m.post-it-notes":["pwn"],"application/vnd.accpac.simply.aso":["aso"],"application/vnd.accpac.simply.imp":["imp"],"application/vnd.acucobol":["acu"],"application/vnd.acucorp":["atc","acutc"],"application/vnd.adobe.air-application-installer-package+zip":["air"],"application/vnd.adobe.formscentral.fcdt":["fcdt"],"application/vnd.adobe.fxp":["fxp","fxpl"],"application/vnd.adobe.xdp+xml":["xdp"],"application/vnd.adobe.xfdf":["*xfdf"],"application/vnd.age":["age"],"application/vnd.ahead.space":["ahead"],"application/vnd.airzip.filesecure.azf":["azf"],"application/vnd.airzip.filesecure.azs":["azs"],"application/vnd.amazon.ebook":["azw"],"application/vnd.americandynamics.acc":["acc"],"application/vnd.amiga.ami":["ami"],"application/vnd.android.package-archive":["apk"],"application/vnd.anser-web-certificate-issue-initiation":["cii"],"application/vnd.anser-web-funds-transfer-initiation":["fti"],"application/vnd.antix.game-component":["atx"],"application/vnd.apple.installer+xml":["mpkg"],"application/vnd.apple.keynote":["key"],"application/vnd.apple.mpegurl":["m3u8"],"application/vnd.apple.numbers":["numbers"],"application/vnd.apple.pages":["pages"],"application/vnd.apple.pkpass":["pkpass"],"application/vnd.aristanetworks.swi":["swi"],"application/vnd.astraea-software.iota":["iota"],"application/vnd.audiograph":["aep"],"application/vnd.balsamiq.bmml+xml":["bmml"],"application/vnd.blueice.multipass":["mpm"],"application/vnd.bmi":["bmi"],"application/vnd.businessobjects":["rep"],"application/vnd.chemdraw+xml":["cdxml"],"application/vnd.chipnuts.karaoke-mmd":["mmd"],"application/vnd.cinderella":["cdy"],"application/vnd.citationstyles.style+xml":["csl"],"application/vnd.claymore":["cla"],"application/vnd.cloanto.rp9":["rp9"],"application/vnd.clonk.c4group":["c4g","c4d","c4f","c4p","c4u"],"application/vnd.cluetrust.cartomobile-config":["c11amc"],"application/vnd.cluetrust.cartomobile-config-pkg":["c11amz"],"application/vnd.commonspace":["csp"],"application/vnd.contact.cmsg":["cdbcmsg"],"application/vnd.cosmocaller":["cmc"],"application/vnd.crick.clicker":["clkx"],"application/vnd.crick.clicker.keyboard":["clkk"],"application/vnd.crick.clicker.palette":["clkp"],"application/vnd.crick.clicker.template":["clkt"],"application/vnd.crick.clicker.wordbank":["clkw"],"application/vnd.criticaltools.wbs+xml":["wbs"],"application/vnd.ctc-posml":["pml"],"application/vnd.cups-ppd":["ppd"],"application/vnd.curl.car":["car"],"application/vnd.curl.pcurl":["pcurl"],"application/vnd.dart":["dart"],"application/vnd.data-vision.rdz":["rdz"],"application/vnd.dbf":["dbf"],"application/vnd.dece.data":["uvf","uvvf","uvd","uvvd"],"application/vnd.dece.ttml+xml":["uvt","uvvt"],"application/vnd.dece.unspecified":["uvx","uvvx"],"application/vnd.dece.zip":["uvz","uvvz"],"application/vnd.denovo.fcselayout-link":["fe_launch"],"application/vnd.dna":["dna"],"application/vnd.dolby.mlp":["mlp"],"application/vnd.dpgraph":["dpg"],"application/vnd.dreamfactory":["dfac"],"application/vnd.ds-keypoint":["kpxx"],"application/vnd.dvb.ait":["ait"],"application/vnd.dvb.service":["svc"],"application/vnd.dynageo":["geo"],"application/vnd.ecowin.chart":["mag"],"application/vnd.enliven":["nml"],"application/vnd.epson.esf":["esf"],"application/vnd.epson.msf":["msf"],"application/vnd.epson.quickanime":["qam"],"application/vnd.epson.salt":["slt"],"application/vnd.epson.ssf":["ssf"],"application/vnd.eszigno3+xml":["es3","et3"],"application/vnd.ezpix-album":["ez2"],"application/vnd.ezpix-package":["ez3"],"application/vnd.fdf":["*fdf"],"application/vnd.fdsn.mseed":["mseed"],"application/vnd.fdsn.seed":["seed","dataless"],"application/vnd.flographit":["gph"],"application/vnd.fluxtime.clip":["ftc"],"application/vnd.framemaker":["fm","frame","maker","book"],"application/vnd.frogans.fnc":["fnc"],"application/vnd.frogans.ltf":["ltf"],"application/vnd.fsc.weblaunch":["fsc"],"application/vnd.fujitsu.oasys":["oas"],"application/vnd.fujitsu.oasys2":["oa2"],"application/vnd.fujitsu.oasys3":["oa3"],"application/vnd.fujitsu.oasysgp":["fg5"],"application/vnd.fujitsu.oasysprs":["bh2"],"application/vnd.fujixerox.ddd":["ddd"],"application/vnd.fujixerox.docuworks":["xdw"],"application/vnd.fujixerox.docuworks.binder":["xbd"],"application/vnd.fuzzysheet":["fzs"],"application/vnd.genomatix.tuxedo":["txd"],"application/vnd.geogebra.file":["ggb"],"application/vnd.geogebra.tool":["ggt"],"application/vnd.geometry-explorer":["gex","gre"],"application/vnd.geonext":["gxt"],"application/vnd.geoplan":["g2w"],"application/vnd.geospace":["g3w"],"application/vnd.gmx":["gmx"],"application/vnd.google-apps.document":["gdoc"],"application/vnd.google-apps.presentation":["gslides"],"application/vnd.google-apps.spreadsheet":["gsheet"],"application/vnd.google-earth.kml+xml":["kml"],"application/vnd.google-earth.kmz":["kmz"],"application/vnd.grafeq":["gqf","gqs"],"application/vnd.groove-account":["gac"],"application/vnd.groove-help":["ghf"],"application/vnd.groove-identity-message":["gim"],"application/vnd.groove-injector":["grv"],"application/vnd.groove-tool-message":["gtm"],"application/vnd.groove-tool-template":["tpl"],"application/vnd.groove-vcard":["vcg"],"application/vnd.hal+xml":["hal"],"application/vnd.handheld-entertainment+xml":["zmm"],"application/vnd.hbci":["hbci"],"application/vnd.hhe.lesson-player":["les"],"application/vnd.hp-hpgl":["hpgl"],"application/vnd.hp-hpid":["hpid"],"application/vnd.hp-hps":["hps"],"application/vnd.hp-jlyt":["jlt"],"application/vnd.hp-pcl":["pcl"],"application/vnd.hp-pclxl":["pclxl"],"application/vnd.hydrostatix.sof-data":["sfd-hdstx"],"application/vnd.ibm.minipay":["mpy"],"application/vnd.ibm.modcap":["afp","listafp","list3820"],"application/vnd.ibm.rights-management":["irm"],"application/vnd.ibm.secure-container":["sc"],"application/vnd.iccprofile":["icc","icm"],"application/vnd.igloader":["igl"],"application/vnd.immervision-ivp":["ivp"],"application/vnd.immervision-ivu":["ivu"],"application/vnd.insors.igm":["igm"],"application/vnd.intercon.formnet":["xpw","xpx"],"application/vnd.intergeo":["i2g"],"application/vnd.intu.qbo":["qbo"],"application/vnd.intu.qfx":["qfx"],"application/vnd.ipunplugged.rcprofile":["rcprofile"],"application/vnd.irepository.package+xml":["irp"],"application/vnd.is-xpr":["xpr"],"application/vnd.isac.fcs":["fcs"],"application/vnd.jam":["jam"],"application/vnd.jcp.javame.midlet-rms":["rms"],"application/vnd.jisp":["jisp"],"application/vnd.joost.joda-archive":["joda"],"application/vnd.kahootz":["ktz","ktr"],"application/vnd.kde.karbon":["karbon"],"application/vnd.kde.kchart":["chrt"],"application/vnd.kde.kformula":["kfo"],"application/vnd.kde.kivio":["flw"],"application/vnd.kde.kontour":["kon"],"application/vnd.kde.kpresenter":["kpr","kpt"],"application/vnd.kde.kspread":["ksp"],"application/vnd.kde.kword":["kwd","kwt"],"application/vnd.kenameaapp":["htke"],"application/vnd.kidspiration":["kia"],"application/vnd.kinar":["kne","knp"],"application/vnd.koan":["skp","skd","skt","skm"],"application/vnd.kodak-descriptor":["sse"],"application/vnd.las.las+xml":["lasxml"],"application/vnd.llamagraphics.life-balance.desktop":["lbd"],"application/vnd.llamagraphics.life-balance.exchange+xml":["lbe"],"application/vnd.lotus-1-2-3":["123"],"application/vnd.lotus-approach":["apr"],"application/vnd.lotus-freelance":["pre"],"application/vnd.lotus-notes":["nsf"],"application/vnd.lotus-organizer":["org"],"application/vnd.lotus-screencam":["scm"],"application/vnd.lotus-wordpro":["lwp"],"application/vnd.macports.portpkg":["portpkg"],"application/vnd.mapbox-vector-tile":["mvt"],"application/vnd.mcd":["mcd"],"application/vnd.medcalcdata":["mc1"],"application/vnd.mediastation.cdkey":["cdkey"],"application/vnd.mfer":["mwf"],"application/vnd.mfmp":["mfm"],"application/vnd.micrografx.flo":["flo"],"application/vnd.micrografx.igx":["igx"],"application/vnd.mif":["mif"],"application/vnd.mobius.daf":["daf"],"application/vnd.mobius.dis":["dis"],"application/vnd.mobius.mbk":["mbk"],"application/vnd.mobius.mqy":["mqy"],"application/vnd.mobius.msl":["msl"],"application/vnd.mobius.plc":["plc"],"application/vnd.mobius.txf":["txf"],"application/vnd.mophun.application":["mpn"],"application/vnd.mophun.certificate":["mpc"],"application/vnd.mozilla.xul+xml":["xul"],"application/vnd.ms-artgalry":["cil"],"application/vnd.ms-cab-compressed":["cab"],"application/vnd.ms-excel":["xls","xlm","xla","xlc","xlt","xlw"],"application/vnd.ms-excel.addin.macroenabled.12":["xlam"],"application/vnd.ms-excel.sheet.binary.macroenabled.12":["xlsb"],"application/vnd.ms-excel.sheet.macroenabled.12":["xlsm"],"application/vnd.ms-excel.template.macroenabled.12":["xltm"],"application/vnd.ms-fontobject":["eot"],"application/vnd.ms-htmlhelp":["chm"],"application/vnd.ms-ims":["ims"],"application/vnd.ms-lrm":["lrm"],"application/vnd.ms-officetheme":["thmx"],"application/vnd.ms-outlook":["msg"],"application/vnd.ms-pki.seccat":["cat"],"application/vnd.ms-pki.stl":["*stl"],"application/vnd.ms-powerpoint":["ppt","pps","pot"],"application/vnd.ms-powerpoint.addin.macroenabled.12":["ppam"],"application/vnd.ms-powerpoint.presentation.macroenabled.12":["pptm"],"application/vnd.ms-powerpoint.slide.macroenabled.12":["sldm"],"application/vnd.ms-powerpoint.slideshow.macroenabled.12":["ppsm"],"application/vnd.ms-powerpoint.template.macroenabled.12":["potm"],"application/vnd.ms-project":["*mpp","mpt"],"application/vnd.ms-word.document.macroenabled.12":["docm"],"application/vnd.ms-word.template.macroenabled.12":["dotm"],"application/vnd.ms-works":["wps","wks","wcm","wdb"],"application/vnd.ms-wpl":["wpl"],"application/vnd.ms-xpsdocument":["xps"],"application/vnd.mseq":["mseq"],"application/vnd.musician":["mus"],"application/vnd.muvee.style":["msty"],"application/vnd.mynfc":["taglet"],"application/vnd.neurolanguage.nlu":["nlu"],"application/vnd.nitf":["ntf","nitf"],"application/vnd.noblenet-directory":["nnd"],"application/vnd.noblenet-sealer":["nns"],"application/vnd.noblenet-web":["nnw"],"application/vnd.nokia.n-gage.ac+xml":["*ac"],"application/vnd.nokia.n-gage.data":["ngdat"],"application/vnd.nokia.n-gage.symbian.install":["n-gage"],"application/vnd.nokia.radio-preset":["rpst"],"application/vnd.nokia.radio-presets":["rpss"],"application/vnd.novadigm.edm":["edm"],"application/vnd.novadigm.edx":["edx"],"application/vnd.novadigm.ext":["ext"],"application/vnd.oasis.opendocument.chart":["odc"],"application/vnd.oasis.opendocument.chart-template":["otc"],"application/vnd.oasis.opendocument.database":["odb"],"application/vnd.oasis.opendocument.formula":["odf"],"application/vnd.oasis.opendocument.formula-template":["odft"],"application/vnd.oasis.opendocument.graphics":["odg"],"application/vnd.oasis.opendocument.graphics-template":["otg"],"application/vnd.oasis.opendocument.image":["odi"],"application/vnd.oasis.opendocument.image-template":["oti"],"application/vnd.oasis.opendocument.presentation":["odp"],"application/vnd.oasis.opendocument.presentation-template":["otp"],"application/vnd.oasis.opendocument.spreadsheet":["ods"],"application/vnd.oasis.opendocument.spreadsheet-template":["ots"],"application/vnd.oasis.opendocument.text":["odt"],"application/vnd.oasis.opendocument.text-master":["odm"],"application/vnd.oasis.opendocument.text-template":["ott"],"application/vnd.oasis.opendocument.text-web":["oth"],"application/vnd.olpc-sugar":["xo"],"application/vnd.oma.dd2+xml":["dd2"],"application/vnd.openblox.game+xml":["obgx"],"application/vnd.openofficeorg.extension":["oxt"],"application/vnd.openstreetmap.data+xml":["osm"],"application/vnd.openxmlformats-officedocument.presentationml.presentation":["pptx"],"application/vnd.openxmlformats-officedocument.presentationml.slide":["sldx"],"application/vnd.openxmlformats-officedocument.presentationml.slideshow":["ppsx"],"application/vnd.openxmlformats-officedocument.presentationml.template":["potx"],"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":["xlsx"],"application/vnd.openxmlformats-officedocument.spreadsheetml.template":["xltx"],"application/vnd.openxmlformats-officedocument.wordprocessingml.document":["docx"],"application/vnd.openxmlformats-officedocument.wordprocessingml.template":["dotx"],"application/vnd.osgeo.mapguide.package":["mgp"],"application/vnd.osgi.dp":["dp"],"application/vnd.osgi.subsystem":["esa"],"application/vnd.palm":["pdb","pqa","oprc"],"application/vnd.pawaafile":["paw"],"application/vnd.pg.format":["str"],"application/vnd.pg.osasli":["ei6"],"application/vnd.picsel":["efif"],"application/vnd.pmi.widget":["wg"],"application/vnd.pocketlearn":["plf"],"application/vnd.powerbuilder6":["pbd"],"application/vnd.previewsystems.box":["box"],"application/vnd.proteus.magazine":["mgz"],"application/vnd.publishare-delta-tree":["qps"],"application/vnd.pvi.ptid1":["ptid"],"application/vnd.pwg-xhtml-print+xml":["xhtm"],"application/vnd.quark.quarkxpress":["qxd","qxt","qwd","qwt","qxl","qxb"],"application/vnd.rar":["rar"],"application/vnd.realvnc.bed":["bed"],"application/vnd.recordare.musicxml":["mxl"],"application/vnd.recordare.musicxml+xml":["musicxml"],"application/vnd.rig.cryptonote":["cryptonote"],"application/vnd.rim.cod":["cod"],"application/vnd.rn-realmedia":["rm"],"application/vnd.rn-realmedia-vbr":["rmvb"],"application/vnd.route66.link66+xml":["link66"],"application/vnd.sailingtracker.track":["st"],"application/vnd.seemail":["see"],"application/vnd.sema":["sema"],"application/vnd.semd":["semd"],"application/vnd.semf":["semf"],"application/vnd.shana.informed.formdata":["ifm"],"application/vnd.shana.informed.formtemplate":["itp"],"application/vnd.shana.informed.interchange":["iif"],"application/vnd.shana.informed.package":["ipk"],"application/vnd.simtech-mindmapper":["twd","twds"],"application/vnd.smaf":["mmf"],"application/vnd.smart.teacher":["teacher"],"application/vnd.software602.filler.form+xml":["fo"],"application/vnd.solent.sdkm+xml":["sdkm","sdkd"],"application/vnd.spotfire.dxp":["dxp"],"application/vnd.spotfire.sfs":["sfs"],"application/vnd.stardivision.calc":["sdc"],"application/vnd.stardivision.draw":["sda"],"application/vnd.stardivision.impress":["sdd"],"application/vnd.stardivision.math":["smf"],"application/vnd.stardivision.writer":["sdw","vor"],"application/vnd.stardivision.writer-global":["sgl"],"application/vnd.stepmania.package":["smzip"],"application/vnd.stepmania.stepchart":["sm"],"application/vnd.sun.wadl+xml":["wadl"],"application/vnd.sun.xml.calc":["sxc"],"application/vnd.sun.xml.calc.template":["stc"],"application/vnd.sun.xml.draw":["sxd"],"application/vnd.sun.xml.draw.template":["std"],"application/vnd.sun.xml.impress":["sxi"],"application/vnd.sun.xml.impress.template":["sti"],"application/vnd.sun.xml.math":["sxm"],"application/vnd.sun.xml.writer":["sxw"],"application/vnd.sun.xml.writer.global":["sxg"],"application/vnd.sun.xml.writer.template":["stw"],"application/vnd.sus-calendar":["sus","susp"],"application/vnd.svd":["svd"],"application/vnd.symbian.install":["sis","sisx"],"application/vnd.syncml+xml":["xsm"],"application/vnd.syncml.dm+wbxml":["bdm"],"application/vnd.syncml.dm+xml":["xdm"],"application/vnd.syncml.dmddf+xml":["ddf"],"application/vnd.tao.intent-module-archive":["tao"],"application/vnd.tcpdump.pcap":["pcap","cap","dmp"],"application/vnd.tmobile-livetv":["tmo"],"application/vnd.trid.tpt":["tpt"],"application/vnd.triscape.mxs":["mxs"],"application/vnd.trueapp":["tra"],"application/vnd.ufdl":["ufd","ufdl"],"application/vnd.uiq.theme":["utz"],"application/vnd.umajin":["umj"],"application/vnd.unity":["unityweb"],"application/vnd.uoml+xml":["uoml","uo"],"application/vnd.vcx":["vcx"],"application/vnd.visio":["vsd","vst","vss","vsw"],"application/vnd.visionary":["vis"],"application/vnd.vsf":["vsf"],"application/vnd.wap.wbxml":["wbxml"],"application/vnd.wap.wmlc":["wmlc"],"application/vnd.wap.wmlscriptc":["wmlsc"],"application/vnd.webturbo":["wtb"],"application/vnd.wolfram.player":["nbp"],"application/vnd.wordperfect":["wpd"],"application/vnd.wqd":["wqd"],"application/vnd.wt.stf":["stf"],"application/vnd.xara":["xar"],"application/vnd.xfdl":["xfdl"],"application/vnd.yamaha.hv-dic":["hvd"],"application/vnd.yamaha.hv-script":["hvs"],"application/vnd.yamaha.hv-voice":["hvp"],"application/vnd.yamaha.openscoreformat":["osf"],"application/vnd.yamaha.openscoreformat.osfpvg+xml":["osfpvg"],"application/vnd.yamaha.smaf-audio":["saf"],"application/vnd.yamaha.smaf-phrase":["spf"],"application/vnd.yellowriver-custom-menu":["cmp"],"application/vnd.zul":["zir","zirz"],"application/vnd.zzazz.deck+xml":["zaz"],"application/x-7z-compressed":["7z"],"application/x-abiword":["abw"],"application/x-ace-compressed":["ace"],"application/x-apple-diskimage":["*dmg"],"application/x-arj":["arj"],"application/x-authorware-bin":["aab","x32","u32","vox"],"application/x-authorware-map":["aam"],"application/x-authorware-seg":["aas"],"application/x-bcpio":["bcpio"],"application/x-bdoc":["*bdoc"],"application/x-bittorrent":["torrent"],"application/x-blorb":["blb","blorb"],"application/x-bzip":["bz"],"application/x-bzip2":["bz2","boz"],"application/x-cbr":["cbr","cba","cbt","cbz","cb7"],"application/x-cdlink":["vcd"],"application/x-cfs-compressed":["cfs"],"application/x-chat":["chat"],"application/x-chess-pgn":["pgn"],"application/x-chrome-extension":["crx"],"application/x-cocoa":["cco"],"application/x-conference":["nsc"],"application/x-cpio":["cpio"],"application/x-csh":["csh"],"application/x-debian-package":["*deb","udeb"],"application/x-dgc-compressed":["dgc"],"application/x-director":["dir","dcr","dxr","cst","cct","cxt","w3d","fgd","swa"],"application/x-doom":["wad"],"application/x-dtbncx+xml":["ncx"],"application/x-dtbook+xml":["dtb"],"application/x-dtbresource+xml":["res"],"application/x-dvi":["dvi"],"application/x-envoy":["evy"],"application/x-eva":["eva"],"application/x-font-bdf":["bdf"],"application/x-font-ghostscript":["gsf"],"application/x-font-linux-psf":["psf"],"application/x-font-pcf":["pcf"],"application/x-font-snf":["snf"],"application/x-font-type1":["pfa","pfb","pfm","afm"],"application/x-freearc":["arc"],"application/x-futuresplash":["spl"],"application/x-gca-compressed":["gca"],"application/x-glulx":["ulx"],"application/x-gnumeric":["gnumeric"],"application/x-gramps-xml":["gramps"],"application/x-gtar":["gtar"],"application/x-hdf":["hdf"],"application/x-httpd-php":["php"],"application/x-install-instructions":["install"],"application/x-iso9660-image":["*iso"],"application/x-iwork-keynote-sffkey":["*key"],"application/x-iwork-numbers-sffnumbers":["*numbers"],"application/x-iwork-pages-sffpages":["*pages"],"application/x-java-archive-diff":["jardiff"],"application/x-java-jnlp-file":["jnlp"],"application/x-keepass2":["kdbx"],"application/x-latex":["latex"],"application/x-lua-bytecode":["luac"],"application/x-lzh-compressed":["lzh","lha"],"application/x-makeself":["run"],"application/x-mie":["mie"],"application/x-mobipocket-ebook":["*prc","mobi"],"application/x-ms-application":["application"],"application/x-ms-shortcut":["lnk"],"application/x-ms-wmd":["wmd"],"application/x-ms-wmz":["wmz"],"application/x-ms-xbap":["xbap"],"application/x-msaccess":["mdb"],"application/x-msbinder":["obd"],"application/x-mscardfile":["crd"],"application/x-msclip":["clp"],"application/x-msdos-program":["*exe"],"application/x-msdownload":["*exe","*dll","com","bat","*msi"],"application/x-msmediaview":["mvb","m13","m14"],"application/x-msmetafile":["*wmf","*wmz","*emf","emz"],"application/x-msmoney":["mny"],"application/x-mspublisher":["pub"],"application/x-msschedule":["scd"],"application/x-msterminal":["trm"],"application/x-mswrite":["wri"],"application/x-netcdf":["nc","cdf"],"application/x-ns-proxy-autoconfig":["pac"],"application/x-nzb":["nzb"],"application/x-perl":["pl","pm"],"application/x-pilot":["*prc","*pdb"],"application/x-pkcs12":["p12","pfx"],"application/x-pkcs7-certificates":["p7b","spc"],"application/x-pkcs7-certreqresp":["p7r"],"application/x-rar-compressed":["*rar"],"application/x-redhat-package-manager":["rpm"],"application/x-research-info-systems":["ris"],"application/x-sea":["sea"],"application/x-sh":["sh"],"application/x-shar":["shar"],"application/x-shockwave-flash":["swf"],"application/x-silverlight-app":["xap"],"application/x-sql":["*sql"],"application/x-stuffit":["sit"],"application/x-stuffitx":["sitx"],"application/x-subrip":["srt"],"application/x-sv4cpio":["sv4cpio"],"application/x-sv4crc":["sv4crc"],"application/x-t3vm-image":["t3"],"application/x-tads":["gam"],"application/x-tar":["tar"],"application/x-tcl":["tcl","tk"],"application/x-tex":["tex"],"application/x-tex-tfm":["tfm"],"application/x-texinfo":["texinfo","texi"],"application/x-tgif":["*obj"],"application/x-ustar":["ustar"],"application/x-virtualbox-hdd":["hdd"],"application/x-virtualbox-ova":["ova"],"application/x-virtualbox-ovf":["ovf"],"application/x-virtualbox-vbox":["vbox"],"application/x-virtualbox-vbox-extpack":["vbox-extpack"],"application/x-virtualbox-vdi":["vdi"],"application/x-virtualbox-vhd":["vhd"],"application/x-virtualbox-vmdk":["vmdk"],"application/x-wais-source":["src"],"application/x-web-app-manifest+json":["webapp"],"application/x-x509-ca-cert":["der","crt","pem"],"application/x-xfig":["fig"],"application/x-xliff+xml":["*xlf"],"application/x-xpinstall":["xpi"],"application/x-xz":["xz"],"application/x-zmachine":["z1","z2","z3","z4","z5","z6","z7","z8"],"audio/vnd.dece.audio":["uva","uvva"],"audio/vnd.digital-winds":["eol"],"audio/vnd.dra":["dra"],"audio/vnd.dts":["dts"],"audio/vnd.dts.hd":["dtshd"],"audio/vnd.lucent.voice":["lvp"],"audio/vnd.ms-playready.media.pya":["pya"],"audio/vnd.nuera.ecelp4800":["ecelp4800"],"audio/vnd.nuera.ecelp7470":["ecelp7470"],"audio/vnd.nuera.ecelp9600":["ecelp9600"],"audio/vnd.rip":["rip"],"audio/x-aac":["*aac"],"audio/x-aiff":["aif","aiff","aifc"],"audio/x-caf":["caf"],"audio/x-flac":["flac"],"audio/x-m4a":["*m4a"],"audio/x-matroska":["mka"],"audio/x-mpegurl":["m3u"],"audio/x-ms-wax":["wax"],"audio/x-ms-wma":["wma"],"audio/x-pn-realaudio":["ram","ra"],"audio/x-pn-realaudio-plugin":["rmp"],"audio/x-realaudio":["*ra"],"audio/x-wav":["*wav"],"chemical/x-cdx":["cdx"],"chemical/x-cif":["cif"],"chemical/x-cmdf":["cmdf"],"chemical/x-cml":["cml"],"chemical/x-csml":["csml"],"chemical/x-xyz":["xyz"],"image/prs.btif":["btif","btf"],"image/prs.pti":["pti"],"image/vnd.adobe.photoshop":["psd"],"image/vnd.airzip.accelerator.azv":["azv"],"image/vnd.dece.graphic":["uvi","uvvi","uvg","uvvg"],"image/vnd.djvu":["djvu","djv"],"image/vnd.dvb.subtitle":["*sub"],"image/vnd.dwg":["dwg"],"image/vnd.dxf":["dxf"],"image/vnd.fastbidsheet":["fbs"],"image/vnd.fpx":["fpx"],"image/vnd.fst":["fst"],"image/vnd.fujixerox.edmics-mmr":["mmr"],"image/vnd.fujixerox.edmics-rlc":["rlc"],"image/vnd.microsoft.icon":["ico"],"image/vnd.ms-dds":["dds"],"image/vnd.ms-modi":["mdi"],"image/vnd.ms-photo":["wdp"],"image/vnd.net-fpx":["npx"],"image/vnd.pco.b16":["b16"],"image/vnd.tencent.tap":["tap"],"image/vnd.valve.source.texture":["vtf"],"image/vnd.wap.wbmp":["wbmp"],"image/vnd.xiff":["xif"],"image/vnd.zbrush.pcx":["pcx"],"image/x-3ds":["3ds"],"image/x-cmu-raster":["ras"],"image/x-cmx":["cmx"],"image/x-freehand":["fh","fhc","fh4","fh5","fh7"],"image/x-icon":["*ico"],"image/x-jng":["jng"],"image/x-mrsid-image":["sid"],"image/x-ms-bmp":["*bmp"],"image/x-pcx":["*pcx"],"image/x-pict":["pic","pct"],"image/x-portable-anymap":["pnm"],"image/x-portable-bitmap":["pbm"],"image/x-portable-graymap":["pgm"],"image/x-portable-pixmap":["ppm"],"image/x-rgb":["rgb"],"image/x-tga":["tga"],"image/x-xbitmap":["xbm"],"image/x-xpixmap":["xpm"],"image/x-xwindowdump":["xwd"],"message/vnd.wfa.wsc":["wsc"],"model/vnd.cld":["cld"],"model/vnd.collada+xml":["dae"],"model/vnd.dwf":["dwf"],"model/vnd.gdl":["gdl"],"model/vnd.gtw":["gtw"],"model/vnd.mts":["mts"],"model/vnd.opengex":["ogex"],"model/vnd.parasolid.transmit.binary":["x_b"],"model/vnd.parasolid.transmit.text":["x_t"],"model/vnd.pytha.pyox":["pyo","pyox"],"model/vnd.sap.vds":["vds"],"model/vnd.usda":["usda"],"model/vnd.usdz+zip":["usdz"],"model/vnd.valve.source.compiled-map":["bsp"],"model/vnd.vtu":["vtu"],"text/prs.lines.tag":["dsc"],"text/vnd.curl":["curl"],"text/vnd.curl.dcurl":["dcurl"],"text/vnd.curl.mcurl":["mcurl"],"text/vnd.curl.scurl":["scurl"],"text/vnd.dvb.subtitle":["sub"],"text/vnd.familysearch.gedcom":["ged"],"text/vnd.fly":["fly"],"text/vnd.fmi.flexstor":["flx"],"text/vnd.graphviz":["gv"],"text/vnd.in3d.3dml":["3dml"],"text/vnd.in3d.spot":["spot"],"text/vnd.sun.j2me.app-descriptor":["jad"],"text/vnd.wap.wml":["wml"],"text/vnd.wap.wmlscript":["wmls"],"text/x-asm":["s","asm"],"text/x-c":["c","cc","cxx","cpp","h","hh","dic"],"text/x-component":["htc"],"text/x-fortran":["f","for","f77","f90"],"text/x-handlebars-template":["hbs"],"text/x-java-source":["java"],"text/x-lua":["lua"],"text/x-markdown":["mkd"],"text/x-nfo":["nfo"],"text/x-opml":["opml"],"text/x-org":["*org"],"text/x-pascal":["p","pas"],"text/x-processing":["pde"],"text/x-sass":["sass"],"text/x-scss":["scss"],"text/x-setext":["etx"],"text/x-sfv":["sfv"],"text/x-suse-ymp":["ymp"],"text/x-uuencode":["uu"],"text/x-vcalendar":["vcs"],"text/x-vcard":["vcf"],"video/vnd.dece.hd":["uvh","uvvh"],"video/vnd.dece.mobile":["uvm","uvvm"],"video/vnd.dece.pd":["uvp","uvvp"],"video/vnd.dece.sd":["uvs","uvvs"],"video/vnd.dece.video":["uvv","uvvv"],"video/vnd.dvb.file":["dvb"],"video/vnd.fvt":["fvt"],"video/vnd.mpegurl":["mxu","m4u"],"video/vnd.ms-playready.media.pyv":["pyv"],"video/vnd.uvvu.mp4":["uvu","uvvu"],"video/vnd.vivo":["viv"],"video/x-f4v":["f4v"],"video/x-fli":["fli"],"video/x-flv":["flv"],"video/x-m4v":["m4v"],"video/x-matroska":["mkv","mk3d","mks"],"video/x-mng":["mng"],"video/x-ms-asf":["asf","asx"],"video/x-ms-vob":["vob"],"video/x-ms-wm":["wm"],"video/x-ms-wmv":["wmv"],"video/x-ms-wmx":["wmx"],"video/x-ms-wvx":["wvx"],"video/x-msvideo":["avi"],"video/x-sgi-movie":["movie"],"video/x-smv":["smv"],"x-conference/x-cooltalk":["ice"]};Object.freeze(n);const i=n,a={"application/andrew-inset":["ez"],"application/appinstaller":["appinstaller"],"application/applixware":["aw"],"application/appx":["appx"],"application/appxbundle":["appxbundle"],"application/atom+xml":["atom"],"application/atomcat+xml":["atomcat"],"application/atomdeleted+xml":["atomdeleted"],"application/atomsvc+xml":["atomsvc"],"application/atsc-dwd+xml":["dwd"],"application/atsc-held+xml":["held"],"application/atsc-rsat+xml":["rsat"],"application/automationml-aml+xml":["aml"],"application/automationml-amlx+zip":["amlx"],"application/bdoc":["bdoc"],"application/calendar+xml":["xcs"],"application/ccxml+xml":["ccxml"],"application/cdfx+xml":["cdfx"],"application/cdmi-capability":["cdmia"],"application/cdmi-container":["cdmic"],"application/cdmi-domain":["cdmid"],"application/cdmi-object":["cdmio"],"application/cdmi-queue":["cdmiq"],"application/cpl+xml":["cpl"],"application/cu-seeme":["cu"],"application/cwl":["cwl"],"application/dash+xml":["mpd"],"application/dash-patch+xml":["mpp"],"application/davmount+xml":["davmount"],"application/docbook+xml":["dbk"],"application/dssc+der":["dssc"],"application/dssc+xml":["xdssc"],"application/ecmascript":["ecma"],"application/emma+xml":["emma"],"application/emotionml+xml":["emotionml"],"application/epub+zip":["epub"],"application/exi":["exi"],"application/express":["exp"],"application/fdf":["fdf"],"application/fdt+xml":["fdt"],"application/font-tdpfr":["pfr"],"application/geo+json":["geojson"],"application/gml+xml":["gml"],"application/gpx+xml":["gpx"],"application/gxf":["gxf"],"application/gzip":["gz"],"application/hjson":["hjson"],"application/hyperstudio":["stk"],"application/inkml+xml":["ink","inkml"],"application/ipfix":["ipfix"],"application/its+xml":["its"],"application/java-archive":["jar","war","ear"],"application/java-serialized-object":["ser"],"application/java-vm":["class"],"application/javascript":["*js"],"application/json":["json","map"],"application/json5":["json5"],"application/jsonml+json":["jsonml"],"application/ld+json":["jsonld"],"application/lgr+xml":["lgr"],"application/lost+xml":["lostxml"],"application/mac-binhex40":["hqx"],"application/mac-compactpro":["cpt"],"application/mads+xml":["mads"],"application/manifest+json":["webmanifest"],"application/marc":["mrc"],"application/marcxml+xml":["mrcx"],"application/mathematica":["ma","nb","mb"],"application/mathml+xml":["mathml"],"application/mbox":["mbox"],"application/media-policy-dataset+xml":["mpf"],"application/mediaservercontrol+xml":["mscml"],"application/metalink+xml":["metalink"],"application/metalink4+xml":["meta4"],"application/mets+xml":["mets"],"application/mmt-aei+xml":["maei"],"application/mmt-usd+xml":["musd"],"application/mods+xml":["mods"],"application/mp21":["m21","mp21"],"application/mp4":["*mp4","*mpg4","mp4s","m4p"],"application/msix":["msix"],"application/msixbundle":["msixbundle"],"application/msword":["doc","dot"],"application/mxf":["mxf"],"application/n-quads":["nq"],"application/n-triples":["nt"],"application/node":["cjs"],"application/octet-stream":["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"],"application/oda":["oda"],"application/oebps-package+xml":["opf"],"application/ogg":["ogx"],"application/omdoc+xml":["omdoc"],"application/onenote":["onetoc","onetoc2","onetmp","onepkg"],"application/oxps":["oxps"],"application/p2p-overlay+xml":["relo"],"application/patch-ops-error+xml":["xer"],"application/pdf":["pdf"],"application/pgp-encrypted":["pgp"],"application/pgp-keys":["asc"],"application/pgp-signature":["sig","*asc"],"application/pics-rules":["prf"],"application/pkcs10":["p10"],"application/pkcs7-mime":["p7m","p7c"],"application/pkcs7-signature":["p7s"],"application/pkcs8":["p8"],"application/pkix-attr-cert":["ac"],"application/pkix-cert":["cer"],"application/pkix-crl":["crl"],"application/pkix-pkipath":["pkipath"],"application/pkixcmp":["pki"],"application/pls+xml":["pls"],"application/postscript":["ai","eps","ps"],"application/provenance+xml":["provx"],"application/pskc+xml":["pskcxml"],"application/raml+yaml":["raml"],"application/rdf+xml":["rdf","owl"],"application/reginfo+xml":["rif"],"application/relax-ng-compact-syntax":["rnc"],"application/resource-lists+xml":["rl"],"application/resource-lists-diff+xml":["rld"],"application/rls-services+xml":["rs"],"application/route-apd+xml":["rapd"],"application/route-s-tsid+xml":["sls"],"application/route-usd+xml":["rusd"],"application/rpki-ghostbusters":["gbr"],"application/rpki-manifest":["mft"],"application/rpki-roa":["roa"],"application/rsd+xml":["rsd"],"application/rss+xml":["rss"],"application/rtf":["rtf"],"application/sbml+xml":["sbml"],"application/scvp-cv-request":["scq"],"application/scvp-cv-response":["scs"],"application/scvp-vp-request":["spq"],"application/scvp-vp-response":["spp"],"application/sdp":["sdp"],"application/senml+xml":["senmlx"],"application/sensml+xml":["sensmlx"],"application/set-payment-initiation":["setpay"],"application/set-registration-initiation":["setreg"],"application/shf+xml":["shf"],"application/sieve":["siv","sieve"],"application/smil+xml":["smi","smil"],"application/sparql-query":["rq"],"application/sparql-results+xml":["srx"],"application/sql":["sql"],"application/srgs":["gram"],"application/srgs+xml":["grxml"],"application/sru+xml":["sru"],"application/ssdl+xml":["ssdl"],"application/ssml+xml":["ssml"],"application/swid+xml":["swidtag"],"application/tei+xml":["tei","teicorpus"],"application/thraud+xml":["tfi"],"application/timestamped-data":["tsd"],"application/toml":["toml"],"application/trig":["trig"],"application/ttml+xml":["ttml"],"application/ubjson":["ubj"],"application/urc-ressheet+xml":["rsheet"],"application/urc-targetdesc+xml":["td"],"application/voicexml+xml":["vxml"],"application/wasm":["wasm"],"application/watcherinfo+xml":["wif"],"application/widget":["wgt"],"application/winhlp":["hlp"],"application/wsdl+xml":["wsdl"],"application/wspolicy+xml":["wspolicy"],"application/xaml+xml":["xaml"],"application/xcap-att+xml":["xav"],"application/xcap-caps+xml":["xca"],"application/xcap-diff+xml":["xdf"],"application/xcap-el+xml":["xel"],"application/xcap-ns+xml":["xns"],"application/xenc+xml":["xenc"],"application/xfdf":["xfdf"],"application/xhtml+xml":["xhtml","xht"],"application/xliff+xml":["xlf"],"application/xml":["xml","xsl","xsd","rng"],"application/xml-dtd":["dtd"],"application/xop+xml":["xop"],"application/xproc+xml":["xpl"],"application/xslt+xml":["*xsl","xslt"],"application/xspf+xml":["xspf"],"application/xv+xml":["mxml","xhvml","xvml","xvm"],"application/yang":["yang"],"application/yin+xml":["yin"],"application/zip":["zip"],"audio/3gpp":["*3gpp"],"audio/aac":["adts","aac"],"audio/adpcm":["adp"],"audio/amr":["amr"],"audio/basic":["au","snd"],"audio/midi":["mid","midi","kar","rmi"],"audio/mobile-xmf":["mxmf"],"audio/mp3":["*mp3"],"audio/mp4":["m4a","mp4a"],"audio/mpeg":["mpga","mp2","mp2a","mp3","m2a","m3a"],"audio/ogg":["oga","ogg","spx","opus"],"audio/s3m":["s3m"],"audio/silk":["sil"],"audio/wav":["wav"],"audio/wave":["*wav"],"audio/webm":["weba"],"audio/xm":["xm"],"font/collection":["ttc"],"font/otf":["otf"],"font/ttf":["ttf"],"font/woff":["woff"],"font/woff2":["woff2"],"image/aces":["exr"],"image/apng":["apng"],"image/avci":["avci"],"image/avcs":["avcs"],"image/avif":["avif"],"image/bmp":["bmp","dib"],"image/cgm":["cgm"],"image/dicom-rle":["drle"],"image/dpx":["dpx"],"image/emf":["emf"],"image/fits":["fits"],"image/g3fax":["g3"],"image/gif":["gif"],"image/heic":["heic"],"image/heic-sequence":["heics"],"image/heif":["heif"],"image/heif-sequence":["heifs"],"image/hej2k":["hej2"],"image/hsj2":["hsj2"],"image/ief":["ief"],"image/jls":["jls"],"image/jp2":["jp2","jpg2"],"image/jpeg":["jpeg","jpg","jpe"],"image/jph":["jph"],"image/jphc":["jhc"],"image/jpm":["jpm","jpgm"],"image/jpx":["jpx","jpf"],"image/jxr":["jxr"],"image/jxra":["jxra"],"image/jxrs":["jxrs"],"image/jxs":["jxs"],"image/jxsc":["jxsc"],"image/jxsi":["jxsi"],"image/jxss":["jxss"],"image/ktx":["ktx"],"image/ktx2":["ktx2"],"image/png":["png"],"image/sgi":["sgi"],"image/svg+xml":["svg","svgz"],"image/t38":["t38"],"image/tiff":["tif","tiff"],"image/tiff-fx":["tfx"],"image/webp":["webp"],"image/wmf":["wmf"],"message/disposition-notification":["disposition-notification"],"message/global":["u8msg"],"message/global-delivery-status":["u8dsn"],"message/global-disposition-notification":["u8mdn"],"message/global-headers":["u8hdr"],"message/rfc822":["eml","mime"],"model/3mf":["3mf"],"model/gltf+json":["gltf"],"model/gltf-binary":["glb"],"model/iges":["igs","iges"],"model/jt":["jt"],"model/mesh":["msh","mesh","silo"],"model/mtl":["mtl"],"model/obj":["obj"],"model/prc":["prc"],"model/step+xml":["stpx"],"model/step+zip":["stpz"],"model/step-xml+zip":["stpxz"],"model/stl":["stl"],"model/u3d":["u3d"],"model/vrml":["wrl","vrml"],"model/x3d+binary":["*x3db","x3dbz"],"model/x3d+fastinfoset":["x3db"],"model/x3d+vrml":["*x3dv","x3dvz"],"model/x3d+xml":["x3d","x3dz"],"model/x3d-vrml":["x3dv"],"text/cache-manifest":["appcache","manifest"],"text/calendar":["ics","ifb"],"text/coffeescript":["coffee","litcoffee"],"text/css":["css"],"text/csv":["csv"],"text/html":["html","htm","shtml"],"text/jade":["jade"],"text/javascript":["js","mjs"],"text/jsx":["jsx"],"text/less":["less"],"text/markdown":["md","markdown"],"text/mathml":["mml"],"text/mdx":["mdx"],"text/n3":["n3"],"text/plain":["txt","text","conf","def","list","log","in","ini"],"text/richtext":["rtx"],"text/rtf":["*rtf"],"text/sgml":["sgml","sgm"],"text/shex":["shex"],"text/slim":["slim","slm"],"text/spdx":["spdx"],"text/stylus":["stylus","styl"],"text/tab-separated-values":["tsv"],"text/troff":["t","tr","roff","man","me","ms"],"text/turtle":["ttl"],"text/uri-list":["uri","uris","urls"],"text/vcard":["vcard"],"text/vtt":["vtt"],"text/wgsl":["wgsl"],"text/xml":["*xml"],"text/yaml":["yaml","yml"],"video/3gpp":["3gp","3gpp"],"video/3gpp2":["3g2"],"video/h261":["h261"],"video/h263":["h263"],"video/h264":["h264"],"video/iso.segment":["m4s"],"video/jpeg":["jpgv"],"video/jpm":["*jpm","*jpgm"],"video/mj2":["mj2","mjp2"],"video/mp2t":["ts"],"video/mp4":["mp4","mp4v","mpg4"],"video/mpeg":["mpeg","mpg","mpe","m1v","m2v"],"video/ogg":["ogv"],"video/quicktime":["qt","mov"],"video/webm":["webm"]};Object.freeze(a);const o=a;var s,c,l,u=function(e,t,r,n){if("a"===r&&!n)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!n:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===r?n:"a"===r?n.call(e):n?n.value:t.get(e)};s=new WeakMap,c=new WeakMap,l=new WeakMap;const p=class{constructor(...e){s.set(this,new Map),c.set(this,new Map),l.set(this,new Map);for(const t of e)this.define(t)}define(e,t=!1){for(let[r,n]of Object.entries(e)){r=r.toLowerCase(),n=n.map((e=>e.toLowerCase())),u(this,l,"f").has(r)||u(this,l,"f").set(r,new Set);const e=u(this,l,"f").get(r);let i=!0;for(let a of n){const n=a.startsWith("*");if(a=n?a.slice(1):a,e?.add(a),i&&u(this,c,"f").set(r,a),i=!1,n)continue;const o=u(this,s,"f").get(a);if(o&&o!=r&&!t)throw new Error(`"${r} -> ${a}" conflicts with "${o} -> ${a}". Pass \`force=true\` to override this definition.`);u(this,s,"f").set(a,r)}}return this}getType(e){if("string"!=typeof e)return null;const t=e.replace(/^.*[/\\]/,"").toLowerCase(),r=t.replace(/^.*\./,"").toLowerCase(),n=t.length<e.length;return r.length<t.length-1||!n?u(this,s,"f").get(r)??null:null}getExtension(e){return"string"!=typeof e?null:(e=e?.split?.(";")[0],(e&&u(this,c,"f").get(e.trim().toLowerCase()))??null)}getAllExtensions(e){return"string"!=typeof e?null:u(this,l,"f").get(e.toLowerCase())??null}_freeze(){this.define=()=>{throw new Error("define() not allowed for built-in Mime objects. See https://github.com/broofa/mime/blob/main/README.md#custom-mime-instances")},Object.freeze(this);for(const e of u(this,l,"f").values())Object.freeze(e);return this}_getTestState(){return{types:u(this,s,"f"),extensions:u(this,c,"f")}}},d=new p(o,i)._freeze()},8416:e=>{"use strict";e.exports=JSON.parse('{"version":"2.0","metadata":{"apiVersion":"2014-06-30","endpointPrefix":"cognito-identity","jsonVersion":"1.1","protocol":"json","serviceFullName":"Amazon Cognito Identity","serviceId":"Cognito Identity","signatureVersion":"v4","targetPrefix":"AWSCognitoIdentityService","uid":"cognito-identity-2014-06-30"},"operations":{"CreateIdentityPool":{"input":{"type":"structure","required":["IdentityPoolName","AllowUnauthenticatedIdentities"],"members":{"IdentityPoolName":{},"AllowUnauthenticatedIdentities":{"type":"boolean"},"AllowClassicFlow":{"type":"boolean"},"SupportedLoginProviders":{"shape":"S5"},"DeveloperProviderName":{},"OpenIdConnectProviderARNs":{"shape":"S9"},"CognitoIdentityProviders":{"shape":"Sb"},"SamlProviderARNs":{"shape":"Sg"},"IdentityPoolTags":{"shape":"Sh"}}},"output":{"shape":"Sk"}},"DeleteIdentities":{"input":{"type":"structure","required":["IdentityIdsToDelete"],"members":{"IdentityIdsToDelete":{"type":"list","member":{}}}},"output":{"type":"structure","members":{"UnprocessedIdentityIds":{"type":"list","member":{"type":"structure","members":{"IdentityId":{},"ErrorCode":{}}}}}}},"DeleteIdentityPool":{"input":{"type":"structure","required":["IdentityPoolId"],"members":{"IdentityPoolId":{}}}},"DescribeIdentity":{"input":{"type":"structure","required":["IdentityId"],"members":{"IdentityId":{}}},"output":{"shape":"Sv"}},"DescribeIdentityPool":{"input":{"type":"structure","required":["IdentityPoolId"],"members":{"IdentityPoolId":{}}},"output":{"shape":"Sk"}},"GetCredentialsForIdentity":{"input":{"type":"structure","required":["IdentityId"],"members":{"IdentityId":{},"Logins":{"shape":"S10"},"CustomRoleArn":{}}},"output":{"type":"structure","members":{"IdentityId":{},"Credentials":{"type":"structure","members":{"AccessKeyId":{},"SecretKey":{},"SessionToken":{},"Expiration":{"type":"timestamp"}}}}},"authtype":"none"},"GetId":{"input":{"type":"structure","required":["IdentityPoolId"],"members":{"AccountId":{},"IdentityPoolId":{},"Logins":{"shape":"S10"}}},"output":{"type":"structure","members":{"IdentityId":{}}},"authtype":"none"},"GetIdentityPoolRoles":{"input":{"type":"structure","required":["IdentityPoolId"],"members":{"IdentityPoolId":{}}},"output":{"type":"structure","members":{"IdentityPoolId":{},"Roles":{"shape":"S1c"},"RoleMappings":{"shape":"S1e"}}}},"GetOpenIdToken":{"input":{"type":"structure","required":["IdentityId"],"members":{"IdentityId":{},"Logins":{"shape":"S10"}}},"output":{"type":"structure","members":{"IdentityId":{},"Token":{}}},"authtype":"none"},"GetOpenIdTokenForDeveloperIdentity":{"input":{"type":"structure","required":["IdentityPoolId","Logins"],"members":{"IdentityPoolId":{},"IdentityId":{},"Logins":{"shape":"S10"},"PrincipalTags":{"shape":"S1s"},"TokenDuration":{"type":"long"}}},"output":{"type":"structure","members":{"IdentityId":{},"Token":{}}}},"GetPrincipalTagAttributeMap":{"input":{"type":"structure","required":["IdentityPoolId","IdentityProviderName"],"members":{"IdentityPoolId":{},"IdentityProviderName":{}}},"output":{"type":"structure","members":{"IdentityPoolId":{},"IdentityProviderName":{},"UseDefaults":{"type":"boolean"},"PrincipalTags":{"shape":"S1s"}}}},"ListIdentities":{"input":{"type":"structure","required":["IdentityPoolId","MaxResults"],"members":{"IdentityPoolId":{},"MaxResults":{"type":"integer"},"NextToken":{},"HideDisabled":{"type":"boolean"}}},"output":{"type":"structure","members":{"IdentityPoolId":{},"Identities":{"type":"list","member":{"shape":"Sv"}},"NextToken":{}}}},"ListIdentityPools":{"input":{"type":"structure","required":["MaxResults"],"members":{"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"IdentityPools":{"type":"list","member":{"type":"structure","members":{"IdentityPoolId":{},"IdentityPoolName":{}}}},"NextToken":{}}}},"ListTagsForResource":{"input":{"type":"structure","required":["ResourceArn"],"members":{"ResourceArn":{}}},"output":{"type":"structure","members":{"Tags":{"shape":"Sh"}}}},"LookupDeveloperIdentity":{"input":{"type":"structure","required":["IdentityPoolId"],"members":{"IdentityPoolId":{},"IdentityId":{},"DeveloperUserIdentifier":{},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"IdentityId":{},"DeveloperUserIdentifierList":{"type":"list","member":{}},"NextToken":{}}}},"MergeDeveloperIdentities":{"input":{"type":"structure","required":["SourceUserIdentifier","DestinationUserIdentifier","DeveloperProviderName","IdentityPoolId"],"members":{"SourceUserIdentifier":{},"DestinationUserIdentifier":{},"DeveloperProviderName":{},"IdentityPoolId":{}}},"output":{"type":"structure","members":{"IdentityId":{}}}},"SetIdentityPoolRoles":{"input":{"type":"structure","required":["IdentityPoolId","Roles"],"members":{"IdentityPoolId":{},"Roles":{"shape":"S1c"},"RoleMappings":{"shape":"S1e"}}}},"SetPrincipalTagAttributeMap":{"input":{"type":"structure","required":["IdentityPoolId","IdentityProviderName"],"members":{"IdentityPoolId":{},"IdentityProviderName":{},"UseDefaults":{"type":"boolean"},"PrincipalTags":{"shape":"S1s"}}},"output":{"type":"structure","members":{"IdentityPoolId":{},"IdentityProviderName":{},"UseDefaults":{"type":"boolean"},"PrincipalTags":{"shape":"S1s"}}}},"TagResource":{"input":{"type":"structure","required":["ResourceArn","Tags"],"members":{"ResourceArn":{},"Tags":{"shape":"Sh"}}},"output":{"type":"structure","members":{}}},"UnlinkDeveloperIdentity":{"input":{"type":"structure","required":["IdentityId","IdentityPoolId","DeveloperProviderName","DeveloperUserIdentifier"],"members":{"IdentityId":{},"IdentityPoolId":{},"DeveloperProviderName":{},"DeveloperUserIdentifier":{}}}},"UnlinkIdentity":{"input":{"type":"structure","required":["IdentityId","Logins","LoginsToRemove"],"members":{"IdentityId":{},"Logins":{"shape":"S10"},"LoginsToRemove":{"shape":"Sw"}}},"authtype":"none"},"UntagResource":{"input":{"type":"structure","required":["ResourceArn","TagKeys"],"members":{"ResourceArn":{},"TagKeys":{"type":"list","member":{}}}},"output":{"type":"structure","members":{}}},"UpdateIdentityPool":{"input":{"shape":"Sk"},"output":{"shape":"Sk"}}},"shapes":{"S5":{"type":"map","key":{},"value":{}},"S9":{"type":"list","member":{}},"Sb":{"type":"list","member":{"type":"structure","members":{"ProviderName":{},"ClientId":{},"ServerSideTokenCheck":{"type":"boolean"}}}},"Sg":{"type":"list","member":{}},"Sh":{"type":"map","key":{},"value":{}},"Sk":{"type":"structure","required":["IdentityPoolId","IdentityPoolName","AllowUnauthenticatedIdentities"],"members":{"IdentityPoolId":{},"IdentityPoolName":{},"AllowUnauthenticatedIdentities":{"type":"boolean"},"AllowClassicFlow":{"type":"boolean"},"SupportedLoginProviders":{"shape":"S5"},"DeveloperProviderName":{},"OpenIdConnectProviderARNs":{"shape":"S9"},"CognitoIdentityProviders":{"shape":"Sb"},"SamlProviderARNs":{"shape":"Sg"},"IdentityPoolTags":{"shape":"Sh"}}},"Sv":{"type":"structure","members":{"IdentityId":{},"Logins":{"shape":"Sw"},"CreationDate":{"type":"timestamp"},"LastModifiedDate":{"type":"timestamp"}}},"Sw":{"type":"list","member":{}},"S10":{"type":"map","key":{},"value":{}},"S1c":{"type":"map","key":{},"value":{}},"S1e":{"type":"map","key":{},"value":{"type":"structure","required":["Type"],"members":{"Type":{},"AmbiguousRoleResolution":{},"RulesConfiguration":{"type":"structure","required":["Rules"],"members":{"Rules":{"type":"list","member":{"type":"structure","required":["Claim","MatchType","Value","RoleARN"],"members":{"Claim":{},"MatchType":{},"Value":{},"RoleARN":{}}}}}}}}},"S1s":{"type":"map","key":{},"value":{}}}}')},3342:e=>{"use strict";e.exports=JSON.parse('{"o":{"ListIdentityPools":{"input_token":"NextToken","limit_key":"MaxResults","output_token":"NextToken","result_key":"IdentityPools"}}}')},2077:e=>{"use strict";e.exports=JSON.parse('{"acm":{"name":"ACM","cors":true},"apigateway":{"name":"APIGateway","cors":true},"applicationautoscaling":{"prefix":"application-autoscaling","name":"ApplicationAutoScaling","cors":true},"appstream":{"name":"AppStream"},"autoscaling":{"name":"AutoScaling","cors":true},"batch":{"name":"Batch"},"budgets":{"name":"Budgets"},"clouddirectory":{"name":"CloudDirectory","versions":["2016-05-10*"]},"cloudformation":{"name":"CloudFormation","cors":true},"cloudfront":{"name":"CloudFront","versions":["2013-05-12*","2013-11-11*","2014-05-31*","2014-10-21*","2014-11-06*","2015-04-17*","2015-07-27*","2015-09-17*","2016-01-13*","2016-01-28*","2016-08-01*","2016-08-20*","2016-09-07*","2016-09-29*","2016-11-25*","2017-03-25*","2017-10-30*","2018-06-18*","2018-11-05*","2019-03-26*"],"cors":true},"cloudhsm":{"name":"CloudHSM","cors":true},"cloudsearch":{"name":"CloudSearch"},"cloudsearchdomain":{"name":"CloudSearchDomain"},"cloudtrail":{"name":"CloudTrail","cors":true},"cloudwatch":{"prefix":"monitoring","name":"CloudWatch","cors":true},"cloudwatchevents":{"prefix":"events","name":"CloudWatchEvents","versions":["2014-02-03*"],"cors":true},"cloudwatchlogs":{"prefix":"logs","name":"CloudWatchLogs","cors":true},"codebuild":{"name":"CodeBuild","cors":true},"codecommit":{"name":"CodeCommit","cors":true},"codedeploy":{"name":"CodeDeploy","cors":true},"codepipeline":{"name":"CodePipeline","cors":true},"cognitoidentity":{"prefix":"cognito-identity","name":"CognitoIdentity","cors":true},"cognitoidentityserviceprovider":{"prefix":"cognito-idp","name":"CognitoIdentityServiceProvider","cors":true},"cognitosync":{"prefix":"cognito-sync","name":"CognitoSync","cors":true},"configservice":{"prefix":"config","name":"ConfigService","cors":true},"cur":{"name":"CUR","cors":true},"datapipeline":{"name":"DataPipeline"},"devicefarm":{"name":"DeviceFarm","cors":true},"directconnect":{"name":"DirectConnect","cors":true},"directoryservice":{"prefix":"ds","name":"DirectoryService"},"discovery":{"name":"Discovery"},"dms":{"name":"DMS"},"dynamodb":{"name":"DynamoDB","cors":true},"dynamodbstreams":{"prefix":"streams.dynamodb","name":"DynamoDBStreams","cors":true},"ec2":{"name":"EC2","versions":["2013-06-15*","2013-10-15*","2014-02-01*","2014-05-01*","2014-06-15*","2014-09-01*","2014-10-01*","2015-03-01*","2015-04-15*","2015-10-01*","2016-04-01*","2016-09-15*"],"cors":true},"ecr":{"name":"ECR","cors":true},"ecs":{"name":"ECS","cors":true},"efs":{"prefix":"elasticfilesystem","name":"EFS","cors":true},"elasticache":{"name":"ElastiCache","versions":["2012-11-15*","2014-03-24*","2014-07-15*","2014-09-30*"],"cors":true},"elasticbeanstalk":{"name":"ElasticBeanstalk","cors":true},"elb":{"prefix":"elasticloadbalancing","name":"ELB","cors":true},"elbv2":{"prefix":"elasticloadbalancingv2","name":"ELBv2","cors":true},"emr":{"prefix":"elasticmapreduce","name":"EMR","cors":true},"es":{"name":"ES"},"elastictranscoder":{"name":"ElasticTranscoder","cors":true},"firehose":{"name":"Firehose","cors":true},"gamelift":{"name":"GameLift","cors":true},"glacier":{"name":"Glacier"},"health":{"name":"Health"},"iam":{"name":"IAM","cors":true},"importexport":{"name":"ImportExport"},"inspector":{"name":"Inspector","versions":["2015-08-18*"],"cors":true},"iot":{"name":"Iot","cors":true},"iotdata":{"prefix":"iot-data","name":"IotData","cors":true},"kinesis":{"name":"Kinesis","cors":true},"kinesisanalytics":{"name":"KinesisAnalytics"},"kms":{"name":"KMS","cors":true},"lambda":{"name":"Lambda","cors":true},"lexruntime":{"prefix":"runtime.lex","name":"LexRuntime","cors":true},"lightsail":{"name":"Lightsail"},"machinelearning":{"name":"MachineLearning","cors":true},"marketplacecommerceanalytics":{"name":"MarketplaceCommerceAnalytics","cors":true},"marketplacemetering":{"prefix":"meteringmarketplace","name":"MarketplaceMetering"},"mturk":{"prefix":"mturk-requester","name":"MTurk","cors":true},"mobileanalytics":{"name":"MobileAnalytics","cors":true},"opsworks":{"name":"OpsWorks","cors":true},"opsworkscm":{"name":"OpsWorksCM"},"organizations":{"name":"Organizations"},"pinpoint":{"name":"Pinpoint"},"polly":{"name":"Polly","cors":true},"rds":{"name":"RDS","versions":["2014-09-01*"],"cors":true},"redshift":{"name":"Redshift","cors":true},"rekognition":{"name":"Rekognition","cors":true},"resourcegroupstaggingapi":{"name":"ResourceGroupsTaggingAPI"},"route53":{"name":"Route53","cors":true},"route53domains":{"name":"Route53Domains","cors":true},"s3":{"name":"S3","dualstackAvailable":true,"cors":true},"s3control":{"name":"S3Control","dualstackAvailable":true,"xmlNoDefaultLists":true},"servicecatalog":{"name":"ServiceCatalog","cors":true},"ses":{"prefix":"email","name":"SES","cors":true},"shield":{"name":"Shield"},"simpledb":{"prefix":"sdb","name":"SimpleDB"},"sms":{"name":"SMS"},"snowball":{"name":"Snowball"},"sns":{"name":"SNS","cors":true},"sqs":{"name":"SQS","cors":true},"ssm":{"name":"SSM","cors":true},"storagegateway":{"name":"StorageGateway","cors":true},"stepfunctions":{"prefix":"states","name":"StepFunctions"},"sts":{"name":"STS","cors":true},"support":{"name":"Support"},"swf":{"name":"SWF"},"xray":{"name":"XRay","cors":true},"waf":{"name":"WAF","cors":true},"wafregional":{"prefix":"waf-regional","name":"WAFRegional"},"workdocs":{"name":"WorkDocs","cors":true},"workspaces":{"name":"WorkSpaces"},"codestar":{"name":"CodeStar"},"lexmodelbuildingservice":{"prefix":"lex-models","name":"LexModelBuildingService","cors":true},"marketplaceentitlementservice":{"prefix":"entitlement.marketplace","name":"MarketplaceEntitlementService"},"athena":{"name":"Athena","cors":true},"greengrass":{"name":"Greengrass"},"dax":{"name":"DAX"},"migrationhub":{"prefix":"AWSMigrationHub","name":"MigrationHub"},"cloudhsmv2":{"name":"CloudHSMV2","cors":true},"glue":{"name":"Glue"},"mobile":{"name":"Mobile"},"pricing":{"name":"Pricing","cors":true},"costexplorer":{"prefix":"ce","name":"CostExplorer","cors":true},"mediaconvert":{"name":"MediaConvert"},"medialive":{"name":"MediaLive"},"mediapackage":{"name":"MediaPackage"},"mediastore":{"name":"MediaStore"},"mediastoredata":{"prefix":"mediastore-data","name":"MediaStoreData","cors":true},"appsync":{"name":"AppSync"},"guardduty":{"name":"GuardDuty"},"mq":{"name":"MQ"},"comprehend":{"name":"Comprehend","cors":true},"iotjobsdataplane":{"prefix":"iot-jobs-data","name":"IoTJobsDataPlane"},"kinesisvideoarchivedmedia":{"prefix":"kinesis-video-archived-media","name":"KinesisVideoArchivedMedia","cors":true},"kinesisvideomedia":{"prefix":"kinesis-video-media","name":"KinesisVideoMedia","cors":true},"kinesisvideo":{"name":"KinesisVideo","cors":true},"sagemakerruntime":{"prefix":"runtime.sagemaker","name":"SageMakerRuntime"},"sagemaker":{"name":"SageMaker"},"translate":{"name":"Translate","cors":true},"resourcegroups":{"prefix":"resource-groups","name":"ResourceGroups","cors":true},"alexaforbusiness":{"name":"AlexaForBusiness"},"cloud9":{"name":"Cloud9"},"serverlessapplicationrepository":{"prefix":"serverlessrepo","name":"ServerlessApplicationRepository"},"servicediscovery":{"name":"ServiceDiscovery"},"workmail":{"name":"WorkMail"},"autoscalingplans":{"prefix":"autoscaling-plans","name":"AutoScalingPlans"},"transcribeservice":{"prefix":"transcribe","name":"TranscribeService"},"connect":{"name":"Connect","cors":true},"acmpca":{"prefix":"acm-pca","name":"ACMPCA"},"fms":{"name":"FMS"},"secretsmanager":{"name":"SecretsManager","cors":true},"iotanalytics":{"name":"IoTAnalytics","cors":true},"iot1clickdevicesservice":{"prefix":"iot1click-devices","name":"IoT1ClickDevicesService"},"iot1clickprojects":{"prefix":"iot1click-projects","name":"IoT1ClickProjects"},"pi":{"name":"PI"},"neptune":{"name":"Neptune"},"mediatailor":{"name":"MediaTailor"},"eks":{"name":"EKS"},"dlm":{"name":"DLM"},"signer":{"name":"Signer"},"chime":{"name":"Chime"},"pinpointemail":{"prefix":"pinpoint-email","name":"PinpointEmail"},"ram":{"name":"RAM"},"route53resolver":{"name":"Route53Resolver"},"pinpointsmsvoice":{"prefix":"sms-voice","name":"PinpointSMSVoice"},"quicksight":{"name":"QuickSight"},"rdsdataservice":{"prefix":"rds-data","name":"RDSDataService"},"amplify":{"name":"Amplify"},"datasync":{"name":"DataSync"},"robomaker":{"name":"RoboMaker"},"transfer":{"name":"Transfer"},"globalaccelerator":{"name":"GlobalAccelerator"},"comprehendmedical":{"name":"ComprehendMedical","cors":true},"kinesisanalyticsv2":{"name":"KinesisAnalyticsV2"},"mediaconnect":{"name":"MediaConnect"},"fsx":{"name":"FSx"},"securityhub":{"name":"SecurityHub"},"appmesh":{"name":"AppMesh","versions":["2018-10-01*"]},"licensemanager":{"prefix":"license-manager","name":"LicenseManager"},"kafka":{"name":"Kafka"},"apigatewaymanagementapi":{"name":"ApiGatewayManagementApi"},"apigatewayv2":{"name":"ApiGatewayV2"},"docdb":{"name":"DocDB"},"backup":{"name":"Backup"},"worklink":{"name":"WorkLink"},"textract":{"name":"Textract"},"managedblockchain":{"name":"ManagedBlockchain"},"mediapackagevod":{"prefix":"mediapackage-vod","name":"MediaPackageVod"},"groundstation":{"name":"GroundStation"},"iotthingsgraph":{"name":"IoTThingsGraph"},"iotevents":{"name":"IoTEvents"},"ioteventsdata":{"prefix":"iotevents-data","name":"IoTEventsData"},"personalize":{"name":"Personalize","cors":true},"personalizeevents":{"prefix":"personalize-events","name":"PersonalizeEvents","cors":true},"personalizeruntime":{"prefix":"personalize-runtime","name":"PersonalizeRuntime","cors":true},"applicationinsights":{"prefix":"application-insights","name":"ApplicationInsights"},"servicequotas":{"prefix":"service-quotas","name":"ServiceQuotas"},"ec2instanceconnect":{"prefix":"ec2-instance-connect","name":"EC2InstanceConnect"},"eventbridge":{"name":"EventBridge"},"lakeformation":{"name":"LakeFormation"},"forecastservice":{"prefix":"forecast","name":"ForecastService","cors":true},"forecastqueryservice":{"prefix":"forecastquery","name":"ForecastQueryService","cors":true},"qldb":{"name":"QLDB"},"qldbsession":{"prefix":"qldb-session","name":"QLDBSession"},"workmailmessageflow":{"name":"WorkMailMessageFlow"},"codestarnotifications":{"prefix":"codestar-notifications","name":"CodeStarNotifications"},"savingsplans":{"name":"SavingsPlans"},"sso":{"name":"SSO"},"ssooidc":{"prefix":"sso-oidc","name":"SSOOIDC"},"marketplacecatalog":{"prefix":"marketplace-catalog","name":"MarketplaceCatalog","cors":true},"dataexchange":{"name":"DataExchange"},"sesv2":{"name":"SESV2"},"migrationhubconfig":{"prefix":"migrationhub-config","name":"MigrationHubConfig"},"connectparticipant":{"name":"ConnectParticipant"},"appconfig":{"name":"AppConfig"},"iotsecuretunneling":{"name":"IoTSecureTunneling"},"wafv2":{"name":"WAFV2"},"elasticinference":{"prefix":"elastic-inference","name":"ElasticInference"},"imagebuilder":{"name":"Imagebuilder"},"schemas":{"name":"Schemas"},"accessanalyzer":{"name":"AccessAnalyzer"},"codegurureviewer":{"prefix":"codeguru-reviewer","name":"CodeGuruReviewer"},"codeguruprofiler":{"name":"CodeGuruProfiler"},"computeoptimizer":{"prefix":"compute-optimizer","name":"ComputeOptimizer"},"frauddetector":{"name":"FraudDetector"},"kendra":{"name":"Kendra"},"networkmanager":{"name":"NetworkManager"},"outposts":{"name":"Outposts"},"augmentedairuntime":{"prefix":"sagemaker-a2i-runtime","name":"AugmentedAIRuntime"},"ebs":{"name":"EBS"},"kinesisvideosignalingchannels":{"prefix":"kinesis-video-signaling","name":"KinesisVideoSignalingChannels","cors":true},"detective":{"name":"Detective"},"codestarconnections":{"prefix":"codestar-connections","name":"CodeStarconnections"},"synthetics":{"name":"Synthetics"},"iotsitewise":{"name":"IoTSiteWise"},"macie2":{"name":"Macie2"},"codeartifact":{"name":"CodeArtifact"},"honeycode":{"name":"Honeycode"},"ivs":{"name":"IVS"},"braket":{"name":"Braket"},"identitystore":{"name":"IdentityStore"},"appflow":{"name":"Appflow"},"redshiftdata":{"prefix":"redshift-data","name":"RedshiftData"},"ssoadmin":{"prefix":"sso-admin","name":"SSOAdmin"},"timestreamquery":{"prefix":"timestream-query","name":"TimestreamQuery"},"timestreamwrite":{"prefix":"timestream-write","name":"TimestreamWrite"},"s3outposts":{"name":"S3Outposts"},"databrew":{"name":"DataBrew"},"servicecatalogappregistry":{"prefix":"servicecatalog-appregistry","name":"ServiceCatalogAppRegistry"},"networkfirewall":{"prefix":"network-firewall","name":"NetworkFirewall"},"mwaa":{"name":"MWAA"},"amplifybackend":{"name":"AmplifyBackend"},"appintegrations":{"name":"AppIntegrations"},"connectcontactlens":{"prefix":"connect-contact-lens","name":"ConnectContactLens"},"devopsguru":{"prefix":"devops-guru","name":"DevOpsGuru"},"ecrpublic":{"prefix":"ecr-public","name":"ECRPUBLIC"},"lookoutvision":{"name":"LookoutVision"},"sagemakerfeaturestoreruntime":{"prefix":"sagemaker-featurestore-runtime","name":"SageMakerFeatureStoreRuntime"},"customerprofiles":{"prefix":"customer-profiles","name":"CustomerProfiles"},"auditmanager":{"name":"AuditManager"},"emrcontainers":{"prefix":"emr-containers","name":"EMRcontainers"},"healthlake":{"name":"HealthLake"},"sagemakeredge":{"prefix":"sagemaker-edge","name":"SagemakerEdge"},"amp":{"name":"Amp","cors":true},"greengrassv2":{"name":"GreengrassV2"},"iotdeviceadvisor":{"name":"IotDeviceAdvisor"},"iotfleethub":{"name":"IoTFleetHub"},"iotwireless":{"name":"IoTWireless"},"location":{"name":"Location","cors":true},"wellarchitected":{"name":"WellArchitected"},"lexmodelsv2":{"prefix":"models.lex.v2","name":"LexModelsV2"},"lexruntimev2":{"prefix":"runtime.lex.v2","name":"LexRuntimeV2","cors":true},"fis":{"name":"Fis"},"lookoutmetrics":{"name":"LookoutMetrics"},"mgn":{"name":"Mgn"},"lookoutequipment":{"name":"LookoutEquipment"},"nimble":{"name":"Nimble"},"finspace":{"name":"Finspace"},"finspacedata":{"prefix":"finspace-data","name":"Finspacedata"},"ssmcontacts":{"prefix":"ssm-contacts","name":"SSMContacts"},"ssmincidents":{"prefix":"ssm-incidents","name":"SSMIncidents"},"applicationcostprofiler":{"name":"ApplicationCostProfiler"},"apprunner":{"name":"AppRunner"},"proton":{"name":"Proton"},"route53recoverycluster":{"prefix":"route53-recovery-cluster","name":"Route53RecoveryCluster"},"route53recoverycontrolconfig":{"prefix":"route53-recovery-control-config","name":"Route53RecoveryControlConfig"},"route53recoveryreadiness":{"prefix":"route53-recovery-readiness","name":"Route53RecoveryReadiness"},"chimesdkidentity":{"prefix":"chime-sdk-identity","name":"ChimeSDKIdentity"},"chimesdkmessaging":{"prefix":"chime-sdk-messaging","name":"ChimeSDKMessaging"},"snowdevicemanagement":{"prefix":"snow-device-management","name":"SnowDeviceManagement"},"memorydb":{"name":"MemoryDB"},"opensearch":{"name":"OpenSearch"},"kafkaconnect":{"name":"KafkaConnect"},"voiceid":{"prefix":"voice-id","name":"VoiceID"},"wisdom":{"name":"Wisdom"},"account":{"name":"Account"},"cloudcontrol":{"name":"CloudControl"},"grafana":{"name":"Grafana"},"panorama":{"name":"Panorama"},"chimesdkmeetings":{"prefix":"chime-sdk-meetings","name":"ChimeSDKMeetings"},"resiliencehub":{"name":"Resiliencehub"},"migrationhubstrategy":{"name":"MigrationHubStrategy"},"appconfigdata":{"name":"AppConfigData"},"drs":{"name":"Drs"},"migrationhubrefactorspaces":{"prefix":"migration-hub-refactor-spaces","name":"MigrationHubRefactorSpaces"},"evidently":{"name":"Evidently"},"inspector2":{"name":"Inspector2"},"rbin":{"name":"Rbin"},"rum":{"name":"RUM"},"backupgateway":{"prefix":"backup-gateway","name":"BackupGateway"},"iottwinmaker":{"name":"IoTTwinMaker"},"workspacesweb":{"prefix":"workspaces-web","name":"WorkSpacesWeb"},"amplifyuibuilder":{"name":"AmplifyUIBuilder"},"keyspaces":{"name":"Keyspaces"},"billingconductor":{"name":"Billingconductor"},"pinpointsmsvoicev2":{"prefix":"pinpoint-sms-voice-v2","name":"PinpointSMSVoiceV2"},"ivschat":{"name":"Ivschat"},"chimesdkmediapipelines":{"prefix":"chime-sdk-media-pipelines","name":"ChimeSDKMediaPipelines"},"emrserverless":{"prefix":"emr-serverless","name":"EMRServerless"},"m2":{"name":"M2"},"connectcampaigns":{"name":"ConnectCampaigns"},"redshiftserverless":{"prefix":"redshift-serverless","name":"RedshiftServerless"},"rolesanywhere":{"name":"RolesAnywhere"},"licensemanagerusersubscriptions":{"prefix":"license-manager-user-subscriptions","name":"LicenseManagerUserSubscriptions"},"backupstorage":{"name":"BackupStorage"},"privatenetworks":{"name":"PrivateNetworks"},"supportapp":{"prefix":"support-app","name":"SupportApp"},"controltower":{"name":"ControlTower"},"iotfleetwise":{"name":"IoTFleetWise"},"migrationhuborchestrator":{"name":"MigrationHubOrchestrator"},"connectcases":{"name":"ConnectCases"},"resourceexplorer2":{"prefix":"resource-explorer-2","name":"ResourceExplorer2"},"scheduler":{"name":"Scheduler"},"chimesdkvoice":{"prefix":"chime-sdk-voice","name":"ChimeSDKVoice"},"iotroborunner":{"prefix":"iot-roborunner","name":"IoTRoboRunner"},"ssmsap":{"prefix":"ssm-sap","name":"SsmSap"},"oam":{"name":"OAM"},"arczonalshift":{"prefix":"arc-zonal-shift","name":"ARCZonalShift"},"omics":{"name":"Omics"},"opensearchserverless":{"name":"OpenSearchServerless"},"securitylake":{"name":"SecurityLake"},"simspaceweaver":{"name":"SimSpaceWeaver"},"docdbelastic":{"prefix":"docdb-elastic","name":"DocDBElastic"},"sagemakergeospatial":{"prefix":"sagemaker-geospatial","name":"SageMakerGeospatial"},"codecatalyst":{"name":"CodeCatalyst"},"pipes":{"name":"Pipes"},"sagemakermetrics":{"prefix":"sagemaker-metrics","name":"SageMakerMetrics"},"kinesisvideowebrtcstorage":{"prefix":"kinesis-video-webrtc-storage","name":"KinesisVideoWebRTCStorage"},"licensemanagerlinuxsubscriptions":{"prefix":"license-manager-linux-subscriptions","name":"LicenseManagerLinuxSubscriptions"},"kendraranking":{"prefix":"kendra-ranking","name":"KendraRanking"},"cleanrooms":{"name":"CleanRooms"},"cloudtraildata":{"prefix":"cloudtrail-data","name":"CloudTrailData"},"tnb":{"name":"Tnb"},"internetmonitor":{"name":"InternetMonitor"},"ivsrealtime":{"prefix":"ivs-realtime","name":"IVSRealTime"},"vpclattice":{"prefix":"vpc-lattice","name":"VPCLattice"},"osis":{"name":"OSIS"},"mediapackagev2":{"name":"MediaPackageV2"},"paymentcryptography":{"prefix":"payment-cryptography","name":"PaymentCryptography"},"paymentcryptographydata":{"prefix":"payment-cryptography-data","name":"PaymentCryptographyData"},"codegurusecurity":{"prefix":"codeguru-security","name":"CodeGuruSecurity"},"verifiedpermissions":{"name":"VerifiedPermissions"},"appfabric":{"name":"AppFabric"},"medicalimaging":{"prefix":"medical-imaging","name":"MedicalImaging"},"entityresolution":{"name":"EntityResolution"},"managedblockchainquery":{"prefix":"managedblockchain-query","name":"ManagedBlockchainQuery"},"neptunedata":{"name":"Neptunedata"},"pcaconnectorad":{"prefix":"pca-connector-ad","name":"PcaConnectorAd"},"bedrock":{"name":"Bedrock"},"bedrockruntime":{"prefix":"bedrock-runtime","name":"BedrockRuntime"},"datazone":{"name":"DataZone"},"launchwizard":{"prefix":"launch-wizard","name":"LaunchWizard"},"trustedadvisor":{"name":"TrustedAdvisor"},"cloudfrontkeyvaluestore":{"prefix":"cloudfront-keyvaluestore","name":"CloudFrontKeyValueStore"},"inspectorscan":{"prefix":"inspector-scan","name":"InspectorScan"},"bcmdataexports":{"prefix":"bcm-data-exports","name":"BCMDataExports"},"costoptimizationhub":{"prefix":"cost-optimization-hub","name":"CostOptimizationHub"},"eksauth":{"prefix":"eks-auth","name":"EKSAuth"},"freetier":{"name":"FreeTier"},"repostspace":{"name":"Repostspace"},"workspacesthinclient":{"prefix":"workspaces-thin-client","name":"WorkSpacesThinClient"},"b2bi":{"name":"B2bi"},"bedrockagent":{"prefix":"bedrock-agent","name":"BedrockAgent"},"bedrockagentruntime":{"prefix":"bedrock-agent-runtime","name":"BedrockAgentRuntime"},"qbusiness":{"name":"QBusiness"},"qconnect":{"name":"QConnect"},"cleanroomsml":{"name":"CleanRoomsML"},"marketplaceagreement":{"prefix":"marketplace-agreement","name":"MarketplaceAgreement"},"marketplacedeployment":{"prefix":"marketplace-deployment","name":"MarketplaceDeployment"},"neptunegraph":{"prefix":"neptune-graph","name":"NeptuneGraph"},"networkmonitor":{"name":"NetworkMonitor"}}')},2671:e=>{"use strict";e.exports=JSON.parse('{"version":"2.0","metadata":{"apiVersion":"2006-03-01","checksumFormat":"md5","endpointPrefix":"s3","globalEndpoint":"s3.amazonaws.com","protocol":"rest-xml","serviceAbbreviation":"Amazon S3","serviceFullName":"Amazon Simple Storage Service","serviceId":"S3","signatureVersion":"s3","uid":"s3-2006-03-01"},"operations":{"AbortMultipartUpload":{"http":{"method":"DELETE","requestUri":"/{Bucket}/{Key+}","responseCode":204},"input":{"type":"structure","required":["Bucket","Key","UploadId"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"contextParam":{"name":"Key"},"location":"uri","locationName":"Key"},"UploadId":{"location":"querystring","locationName":"uploadId"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}}},"CompleteMultipartUpload":{"http":{"requestUri":"/{Bucket}/{Key+}"},"input":{"type":"structure","required":["Bucket","Key","UploadId"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"contextParam":{"name":"Key"},"location":"uri","locationName":"Key"},"MultipartUpload":{"locationName":"CompleteMultipartUpload","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"},"type":"structure","members":{"Parts":{"locationName":"Part","type":"list","member":{"type":"structure","members":{"ETag":{},"ChecksumCRC32":{},"ChecksumCRC32C":{},"ChecksumSHA1":{},"ChecksumSHA256":{},"PartNumber":{"type":"integer"}}},"flattened":true}}},"UploadId":{"location":"querystring","locationName":"uploadId"},"ChecksumCRC32":{"location":"header","locationName":"x-amz-checksum-crc32"},"ChecksumCRC32C":{"location":"header","locationName":"x-amz-checksum-crc32c"},"ChecksumSHA1":{"location":"header","locationName":"x-amz-checksum-sha1"},"ChecksumSHA256":{"location":"header","locationName":"x-amz-checksum-sha256"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKey":{"shape":"Sk","location":"header","locationName":"x-amz-server-side-encryption-customer-key"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"}},"payload":"MultipartUpload"},"output":{"type":"structure","members":{"Location":{},"Bucket":{},"Key":{},"Expiration":{"location":"header","locationName":"x-amz-expiration"},"ETag":{},"ChecksumCRC32":{},"ChecksumCRC32C":{},"ChecksumSHA1":{},"ChecksumSHA256":{},"ServerSideEncryption":{"location":"header","locationName":"x-amz-server-side-encryption"},"VersionId":{"location":"header","locationName":"x-amz-version-id"},"SSEKMSKeyId":{"shape":"Sr","location":"header","locationName":"x-amz-server-side-encryption-aws-kms-key-id"},"BucketKeyEnabled":{"location":"header","locationName":"x-amz-server-side-encryption-bucket-key-enabled","type":"boolean"},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}}},"CopyObject":{"http":{"method":"PUT","requestUri":"/{Bucket}/{Key+}"},"input":{"type":"structure","required":["Bucket","CopySource","Key"],"members":{"ACL":{"location":"header","locationName":"x-amz-acl"},"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"CacheControl":{"location":"header","locationName":"Cache-Control"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-checksum-algorithm"},"ContentDisposition":{"location":"header","locationName":"Content-Disposition"},"ContentEncoding":{"location":"header","locationName":"Content-Encoding"},"ContentLanguage":{"location":"header","locationName":"Content-Language"},"ContentType":{"location":"header","locationName":"Content-Type"},"CopySource":{"location":"header","locationName":"x-amz-copy-source"},"CopySourceIfMatch":{"location":"header","locationName":"x-amz-copy-source-if-match"},"CopySourceIfModifiedSince":{"location":"header","locationName":"x-amz-copy-source-if-modified-since","type":"timestamp"},"CopySourceIfNoneMatch":{"location":"header","locationName":"x-amz-copy-source-if-none-match"},"CopySourceIfUnmodifiedSince":{"location":"header","locationName":"x-amz-copy-source-if-unmodified-since","type":"timestamp"},"Expires":{"location":"header","locationName":"Expires","type":"timestamp"},"GrantFullControl":{"location":"header","locationName":"x-amz-grant-full-control"},"GrantRead":{"location":"header","locationName":"x-amz-grant-read"},"GrantReadACP":{"location":"header","locationName":"x-amz-grant-read-acp"},"GrantWriteACP":{"location":"header","locationName":"x-amz-grant-write-acp"},"Key":{"location":"uri","locationName":"Key"},"Metadata":{"shape":"S1b","location":"headers","locationName":"x-amz-meta-"},"MetadataDirective":{"location":"header","locationName":"x-amz-metadata-directive"},"TaggingDirective":{"location":"header","locationName":"x-amz-tagging-directive"},"ServerSideEncryption":{"location":"header","locationName":"x-amz-server-side-encryption"},"StorageClass":{"location":"header","locationName":"x-amz-storage-class"},"WebsiteRedirectLocation":{"location":"header","locationName":"x-amz-website-redirect-location"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKey":{"shape":"Sk","location":"header","locationName":"x-amz-server-side-encryption-customer-key"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"SSEKMSKeyId":{"shape":"Sr","location":"header","locationName":"x-amz-server-side-encryption-aws-kms-key-id"},"SSEKMSEncryptionContext":{"shape":"S1i","location":"header","locationName":"x-amz-server-side-encryption-context"},"BucketKeyEnabled":{"location":"header","locationName":"x-amz-server-side-encryption-bucket-key-enabled","type":"boolean"},"CopySourceSSECustomerAlgorithm":{"location":"header","locationName":"x-amz-copy-source-server-side-encryption-customer-algorithm"},"CopySourceSSECustomerKey":{"shape":"S1k","location":"header","locationName":"x-amz-copy-source-server-side-encryption-customer-key"},"CopySourceSSECustomerKeyMD5":{"location":"header","locationName":"x-amz-copy-source-server-side-encryption-customer-key-MD5"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"Tagging":{"location":"header","locationName":"x-amz-tagging"},"ObjectLockMode":{"location":"header","locationName":"x-amz-object-lock-mode"},"ObjectLockRetainUntilDate":{"shape":"S1o","location":"header","locationName":"x-amz-object-lock-retain-until-date"},"ObjectLockLegalHoldStatus":{"location":"header","locationName":"x-amz-object-lock-legal-hold"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"ExpectedSourceBucketOwner":{"location":"header","locationName":"x-amz-source-expected-bucket-owner"}}},"output":{"type":"structure","members":{"CopyObjectResult":{"type":"structure","members":{"ETag":{},"LastModified":{"type":"timestamp"},"ChecksumCRC32":{},"ChecksumCRC32C":{},"ChecksumSHA1":{},"ChecksumSHA256":{}}},"Expiration":{"location":"header","locationName":"x-amz-expiration"},"CopySourceVersionId":{"location":"header","locationName":"x-amz-copy-source-version-id"},"VersionId":{"location":"header","locationName":"x-amz-version-id"},"ServerSideEncryption":{"location":"header","locationName":"x-amz-server-side-encryption"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"SSEKMSKeyId":{"shape":"Sr","location":"header","locationName":"x-amz-server-side-encryption-aws-kms-key-id"},"SSEKMSEncryptionContext":{"shape":"S1i","location":"header","locationName":"x-amz-server-side-encryption-context"},"BucketKeyEnabled":{"location":"header","locationName":"x-amz-server-side-encryption-bucket-key-enabled","type":"boolean"},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}},"payload":"CopyObjectResult"},"alias":"PutObjectCopy","staticContextParams":{"DisableS3ExpressSessionAuth":{"value":true}}},"CreateBucket":{"http":{"method":"PUT","requestUri":"/{Bucket}"},"input":{"type":"structure","required":["Bucket"],"members":{"ACL":{"location":"header","locationName":"x-amz-acl"},"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"CreateBucketConfiguration":{"locationName":"CreateBucketConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"},"type":"structure","members":{"LocationConstraint":{},"Location":{"type":"structure","members":{"Type":{},"Name":{}}},"Bucket":{"type":"structure","members":{"DataRedundancy":{},"Type":{}}}}},"GrantFullControl":{"location":"header","locationName":"x-amz-grant-full-control"},"GrantRead":{"location":"header","locationName":"x-amz-grant-read"},"GrantReadACP":{"location":"header","locationName":"x-amz-grant-read-acp"},"GrantWrite":{"location":"header","locationName":"x-amz-grant-write"},"GrantWriteACP":{"location":"header","locationName":"x-amz-grant-write-acp"},"ObjectLockEnabledForBucket":{"location":"header","locationName":"x-amz-bucket-object-lock-enabled","type":"boolean"},"ObjectOwnership":{"location":"header","locationName":"x-amz-object-ownership"}},"payload":"CreateBucketConfiguration"},"output":{"type":"structure","members":{"Location":{"location":"header","locationName":"Location"}}},"alias":"PutBucket","staticContextParams":{"DisableAccessPoints":{"value":true},"UseS3ExpressControlEndpoint":{"value":true}}},"CreateMultipartUpload":{"http":{"requestUri":"/{Bucket}/{Key+}?uploads"},"input":{"type":"structure","required":["Bucket","Key"],"members":{"ACL":{"location":"header","locationName":"x-amz-acl"},"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"CacheControl":{"location":"header","locationName":"Cache-Control"},"ContentDisposition":{"location":"header","locationName":"Content-Disposition"},"ContentEncoding":{"location":"header","locationName":"Content-Encoding"},"ContentLanguage":{"location":"header","locationName":"Content-Language"},"ContentType":{"location":"header","locationName":"Content-Type"},"Expires":{"location":"header","locationName":"Expires","type":"timestamp"},"GrantFullControl":{"location":"header","locationName":"x-amz-grant-full-control"},"GrantRead":{"location":"header","locationName":"x-amz-grant-read"},"GrantReadACP":{"location":"header","locationName":"x-amz-grant-read-acp"},"GrantWriteACP":{"location":"header","locationName":"x-amz-grant-write-acp"},"Key":{"contextParam":{"name":"Key"},"location":"uri","locationName":"Key"},"Metadata":{"shape":"S1b","location":"headers","locationName":"x-amz-meta-"},"ServerSideEncryption":{"location":"header","locationName":"x-amz-server-side-encryption"},"StorageClass":{"location":"header","locationName":"x-amz-storage-class"},"WebsiteRedirectLocation":{"location":"header","locationName":"x-amz-website-redirect-location"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKey":{"shape":"Sk","location":"header","locationName":"x-amz-server-side-encryption-customer-key"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"SSEKMSKeyId":{"shape":"Sr","location":"header","locationName":"x-amz-server-side-encryption-aws-kms-key-id"},"SSEKMSEncryptionContext":{"shape":"S1i","location":"header","locationName":"x-amz-server-side-encryption-context"},"BucketKeyEnabled":{"location":"header","locationName":"x-amz-server-side-encryption-bucket-key-enabled","type":"boolean"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"Tagging":{"location":"header","locationName":"x-amz-tagging"},"ObjectLockMode":{"location":"header","locationName":"x-amz-object-lock-mode"},"ObjectLockRetainUntilDate":{"shape":"S1o","location":"header","locationName":"x-amz-object-lock-retain-until-date"},"ObjectLockLegalHoldStatus":{"location":"header","locationName":"x-amz-object-lock-legal-hold"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-checksum-algorithm"}}},"output":{"type":"structure","members":{"AbortDate":{"location":"header","locationName":"x-amz-abort-date","type":"timestamp"},"AbortRuleId":{"location":"header","locationName":"x-amz-abort-rule-id"},"Bucket":{"locationName":"Bucket"},"Key":{},"UploadId":{},"ServerSideEncryption":{"location":"header","locationName":"x-amz-server-side-encryption"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"SSEKMSKeyId":{"shape":"Sr","location":"header","locationName":"x-amz-server-side-encryption-aws-kms-key-id"},"SSEKMSEncryptionContext":{"shape":"S1i","location":"header","locationName":"x-amz-server-side-encryption-context"},"BucketKeyEnabled":{"location":"header","locationName":"x-amz-server-side-encryption-bucket-key-enabled","type":"boolean"},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-checksum-algorithm"}}},"alias":"InitiateMultipartUpload"},"CreateSession":{"http":{"method":"GET","requestUri":"/{Bucket}?session"},"input":{"type":"structure","required":["Bucket"],"members":{"SessionMode":{"location":"header","locationName":"x-amz-create-session-mode"},"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"}}},"output":{"type":"structure","required":["Credentials"],"members":{"Credentials":{"locationName":"Credentials","type":"structure","required":["AccessKeyId","SecretAccessKey","SessionToken","Expiration"],"members":{"AccessKeyId":{"locationName":"AccessKeyId"},"SecretAccessKey":{"shape":"S2h","locationName":"SecretAccessKey"},"SessionToken":{"shape":"S2h","locationName":"SessionToken"},"Expiration":{"locationName":"Expiration","type":"timestamp"}}}}},"staticContextParams":{"DisableS3ExpressSessionAuth":{"value":true}}},"DeleteBucket":{"http":{"method":"DELETE","requestUri":"/{Bucket}","responseCode":204},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"DeleteBucketAnalyticsConfiguration":{"http":{"method":"DELETE","requestUri":"/{Bucket}?analytics","responseCode":204},"input":{"type":"structure","required":["Bucket","Id"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Id":{"location":"querystring","locationName":"id"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"DeleteBucketCors":{"http":{"method":"DELETE","requestUri":"/{Bucket}?cors","responseCode":204},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"DeleteBucketEncryption":{"http":{"method":"DELETE","requestUri":"/{Bucket}?encryption","responseCode":204},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"DeleteBucketIntelligentTieringConfiguration":{"http":{"method":"DELETE","requestUri":"/{Bucket}?intelligent-tiering","responseCode":204},"input":{"type":"structure","required":["Bucket","Id"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Id":{"location":"querystring","locationName":"id"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"DeleteBucketInventoryConfiguration":{"http":{"method":"DELETE","requestUri":"/{Bucket}?inventory","responseCode":204},"input":{"type":"structure","required":["Bucket","Id"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Id":{"location":"querystring","locationName":"id"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"DeleteBucketLifecycle":{"http":{"method":"DELETE","requestUri":"/{Bucket}?lifecycle","responseCode":204},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"DeleteBucketMetricsConfiguration":{"http":{"method":"DELETE","requestUri":"/{Bucket}?metrics","responseCode":204},"input":{"type":"structure","required":["Bucket","Id"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Id":{"location":"querystring","locationName":"id"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"DeleteBucketOwnershipControls":{"http":{"method":"DELETE","requestUri":"/{Bucket}?ownershipControls","responseCode":204},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"DeleteBucketPolicy":{"http":{"method":"DELETE","requestUri":"/{Bucket}?policy","responseCode":204},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"DeleteBucketReplication":{"http":{"method":"DELETE","requestUri":"/{Bucket}?replication","responseCode":204},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"DeleteBucketTagging":{"http":{"method":"DELETE","requestUri":"/{Bucket}?tagging","responseCode":204},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"DeleteBucketWebsite":{"http":{"method":"DELETE","requestUri":"/{Bucket}?website","responseCode":204},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"DeleteObject":{"http":{"method":"DELETE","requestUri":"/{Bucket}/{Key+}","responseCode":204},"input":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"contextParam":{"name":"Key"},"location":"uri","locationName":"Key"},"MFA":{"location":"header","locationName":"x-amz-mfa"},"VersionId":{"location":"querystring","locationName":"versionId"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"BypassGovernanceRetention":{"location":"header","locationName":"x-amz-bypass-governance-retention","type":"boolean"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"DeleteMarker":{"location":"header","locationName":"x-amz-delete-marker","type":"boolean"},"VersionId":{"location":"header","locationName":"x-amz-version-id"},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}}},"DeleteObjectTagging":{"http":{"method":"DELETE","requestUri":"/{Bucket}/{Key+}?tagging","responseCode":204},"input":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"location":"uri","locationName":"Key"},"VersionId":{"location":"querystring","locationName":"versionId"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"VersionId":{"location":"header","locationName":"x-amz-version-id"}}}},"DeleteObjects":{"http":{"requestUri":"/{Bucket}?delete"},"input":{"type":"structure","required":["Bucket","Delete"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Delete":{"locationName":"Delete","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"},"type":"structure","required":["Objects"],"members":{"Objects":{"locationName":"Object","type":"list","member":{"type":"structure","required":["Key"],"members":{"Key":{},"VersionId":{}}},"flattened":true},"Quiet":{"type":"boolean"}}},"MFA":{"location":"header","locationName":"x-amz-mfa"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"BypassGovernanceRetention":{"location":"header","locationName":"x-amz-bypass-governance-retention","type":"boolean"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"}},"payload":"Delete"},"output":{"type":"structure","members":{"Deleted":{"type":"list","member":{"type":"structure","members":{"Key":{},"VersionId":{},"DeleteMarker":{"type":"boolean"},"DeleteMarkerVersionId":{}}},"flattened":true},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"},"Errors":{"locationName":"Error","type":"list","member":{"type":"structure","members":{"Key":{},"VersionId":{},"Code":{},"Message":{}}},"flattened":true}}},"alias":"DeleteMultipleObjects","httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true}},"DeletePublicAccessBlock":{"http":{"method":"DELETE","requestUri":"/{Bucket}?publicAccessBlock","responseCode":204},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketAccelerateConfiguration":{"http":{"method":"GET","requestUri":"/{Bucket}?accelerate"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"}}},"output":{"type":"structure","members":{"Status":{},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketAcl":{"http":{"method":"GET","requestUri":"/{Bucket}?acl"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"Owner":{"shape":"S3q"},"Grants":{"shape":"S3t","locationName":"AccessControlList"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketAnalyticsConfiguration":{"http":{"method":"GET","requestUri":"/{Bucket}?analytics"},"input":{"type":"structure","required":["Bucket","Id"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Id":{"location":"querystring","locationName":"id"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"AnalyticsConfiguration":{"shape":"S42"}},"payload":"AnalyticsConfiguration"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketCors":{"http":{"method":"GET","requestUri":"/{Bucket}?cors"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"CORSRules":{"shape":"S4h","locationName":"CORSRule"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketEncryption":{"http":{"method":"GET","requestUri":"/{Bucket}?encryption"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"ServerSideEncryptionConfiguration":{"shape":"S4u"}},"payload":"ServerSideEncryptionConfiguration"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketIntelligentTieringConfiguration":{"http":{"method":"GET","requestUri":"/{Bucket}?intelligent-tiering"},"input":{"type":"structure","required":["Bucket","Id"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Id":{"location":"querystring","locationName":"id"}}},"output":{"type":"structure","members":{"IntelligentTieringConfiguration":{"shape":"S50"}},"payload":"IntelligentTieringConfiguration"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketInventoryConfiguration":{"http":{"method":"GET","requestUri":"/{Bucket}?inventory"},"input":{"type":"structure","required":["Bucket","Id"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Id":{"location":"querystring","locationName":"id"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"InventoryConfiguration":{"shape":"S5a"}},"payload":"InventoryConfiguration"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketLifecycle":{"http":{"method":"GET","requestUri":"/{Bucket}?lifecycle"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"Rules":{"shape":"S5q","locationName":"Rule"}}},"deprecated":true,"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketLifecycleConfiguration":{"http":{"method":"GET","requestUri":"/{Bucket}?lifecycle"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"Rules":{"shape":"S66","locationName":"Rule"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketLocation":{"http":{"method":"GET","requestUri":"/{Bucket}?location"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"LocationConstraint":{}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketLogging":{"http":{"method":"GET","requestUri":"/{Bucket}?logging"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"LoggingEnabled":{"shape":"S6i"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketMetricsConfiguration":{"http":{"method":"GET","requestUri":"/{Bucket}?metrics"},"input":{"type":"structure","required":["Bucket","Id"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Id":{"location":"querystring","locationName":"id"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"MetricsConfiguration":{"shape":"S6u"}},"payload":"MetricsConfiguration"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketNotification":{"http":{"method":"GET","requestUri":"/{Bucket}?notification"},"input":{"shape":"S6y"},"output":{"shape":"S6z"},"deprecated":true,"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketNotificationConfiguration":{"http":{"method":"GET","requestUri":"/{Bucket}?notification"},"input":{"shape":"S6y"},"output":{"shape":"S7a"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketOwnershipControls":{"http":{"method":"GET","requestUri":"/{Bucket}?ownershipControls"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"OwnershipControls":{"shape":"S7r"}},"payload":"OwnershipControls"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketPolicy":{"http":{"method":"GET","requestUri":"/{Bucket}?policy"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"Policy":{}},"payload":"Policy"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketPolicyStatus":{"http":{"method":"GET","requestUri":"/{Bucket}?policyStatus"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"PolicyStatus":{"type":"structure","members":{"IsPublic":{"locationName":"IsPublic","type":"boolean"}}}},"payload":"PolicyStatus"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketReplication":{"http":{"method":"GET","requestUri":"/{Bucket}?replication"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"ReplicationConfiguration":{"shape":"S83"}},"payload":"ReplicationConfiguration"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketRequestPayment":{"http":{"method":"GET","requestUri":"/{Bucket}?requestPayment"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"Payer":{}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketTagging":{"http":{"method":"GET","requestUri":"/{Bucket}?tagging"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","required":["TagSet"],"members":{"TagSet":{"shape":"S48"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketVersioning":{"http":{"method":"GET","requestUri":"/{Bucket}?versioning"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"Status":{},"MFADelete":{"locationName":"MfaDelete"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetBucketWebsite":{"http":{"method":"GET","requestUri":"/{Bucket}?website"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"RedirectAllRequestsTo":{"shape":"S96"},"IndexDocument":{"shape":"S99"},"ErrorDocument":{"shape":"S9b"},"RoutingRules":{"shape":"S9c"}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"GetObject":{"http":{"method":"GET","requestUri":"/{Bucket}/{Key+}"},"input":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"IfMatch":{"location":"header","locationName":"If-Match"},"IfModifiedSince":{"location":"header","locationName":"If-Modified-Since","type":"timestamp"},"IfNoneMatch":{"location":"header","locationName":"If-None-Match"},"IfUnmodifiedSince":{"location":"header","locationName":"If-Unmodified-Since","type":"timestamp"},"Key":{"contextParam":{"name":"Key"},"location":"uri","locationName":"Key"},"Range":{"location":"header","locationName":"Range"},"ResponseCacheControl":{"location":"querystring","locationName":"response-cache-control"},"ResponseContentDisposition":{"location":"querystring","locationName":"response-content-disposition"},"ResponseContentEncoding":{"location":"querystring","locationName":"response-content-encoding"},"ResponseContentLanguage":{"location":"querystring","locationName":"response-content-language"},"ResponseContentType":{"location":"querystring","locationName":"response-content-type"},"ResponseExpires":{"location":"querystring","locationName":"response-expires","type":"timestamp","timestampFormat":"rfc822"},"VersionId":{"location":"querystring","locationName":"versionId"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKey":{"shape":"Sk","location":"header","locationName":"x-amz-server-side-encryption-customer-key"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"PartNumber":{"location":"querystring","locationName":"partNumber","type":"integer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"ChecksumMode":{"location":"header","locationName":"x-amz-checksum-mode"}}},"output":{"type":"structure","members":{"Body":{"streaming":true,"type":"blob"},"DeleteMarker":{"location":"header","locationName":"x-amz-delete-marker","type":"boolean"},"AcceptRanges":{"location":"header","locationName":"accept-ranges"},"Expiration":{"location":"header","locationName":"x-amz-expiration"},"Restore":{"location":"header","locationName":"x-amz-restore"},"LastModified":{"location":"header","locationName":"Last-Modified","type":"timestamp"},"ContentLength":{"location":"header","locationName":"Content-Length","type":"long"},"ETag":{"location":"header","locationName":"ETag"},"ChecksumCRC32":{"location":"header","locationName":"x-amz-checksum-crc32"},"ChecksumCRC32C":{"location":"header","locationName":"x-amz-checksum-crc32c"},"ChecksumSHA1":{"location":"header","locationName":"x-amz-checksum-sha1"},"ChecksumSHA256":{"location":"header","locationName":"x-amz-checksum-sha256"},"MissingMeta":{"location":"header","locationName":"x-amz-missing-meta","type":"integer"},"VersionId":{"location":"header","locationName":"x-amz-version-id"},"CacheControl":{"location":"header","locationName":"Cache-Control"},"ContentDisposition":{"location":"header","locationName":"Content-Disposition"},"ContentEncoding":{"location":"header","locationName":"Content-Encoding"},"ContentLanguage":{"location":"header","locationName":"Content-Language"},"ContentRange":{"location":"header","locationName":"Content-Range"},"ContentType":{"location":"header","locationName":"Content-Type"},"Expires":{"location":"header","locationName":"Expires","type":"timestamp"},"WebsiteRedirectLocation":{"location":"header","locationName":"x-amz-website-redirect-location"},"ServerSideEncryption":{"location":"header","locationName":"x-amz-server-side-encryption"},"Metadata":{"shape":"S1b","location":"headers","locationName":"x-amz-meta-"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"SSEKMSKeyId":{"shape":"Sr","location":"header","locationName":"x-amz-server-side-encryption-aws-kms-key-id"},"BucketKeyEnabled":{"location":"header","locationName":"x-amz-server-side-encryption-bucket-key-enabled","type":"boolean"},"StorageClass":{"location":"header","locationName":"x-amz-storage-class"},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"},"ReplicationStatus":{"location":"header","locationName":"x-amz-replication-status"},"PartsCount":{"location":"header","locationName":"x-amz-mp-parts-count","type":"integer"},"TagCount":{"location":"header","locationName":"x-amz-tagging-count","type":"integer"},"ObjectLockMode":{"location":"header","locationName":"x-amz-object-lock-mode"},"ObjectLockRetainUntilDate":{"shape":"S1o","location":"header","locationName":"x-amz-object-lock-retain-until-date"},"ObjectLockLegalHoldStatus":{"location":"header","locationName":"x-amz-object-lock-legal-hold"}},"payload":"Body"},"httpChecksum":{"requestValidationModeMember":"ChecksumMode","responseAlgorithms":["CRC32","CRC32C","SHA256","SHA1"]}},"GetObjectAcl":{"http":{"method":"GET","requestUri":"/{Bucket}/{Key+}?acl"},"input":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"contextParam":{"name":"Key"},"location":"uri","locationName":"Key"},"VersionId":{"location":"querystring","locationName":"versionId"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"Owner":{"shape":"S3q"},"Grants":{"shape":"S3t","locationName":"AccessControlList"},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}}},"GetObjectAttributes":{"http":{"method":"GET","requestUri":"/{Bucket}/{Key+}?attributes"},"input":{"type":"structure","required":["Bucket","Key","ObjectAttributes"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"location":"uri","locationName":"Key"},"VersionId":{"location":"querystring","locationName":"versionId"},"MaxParts":{"location":"header","locationName":"x-amz-max-parts","type":"integer"},"PartNumberMarker":{"location":"header","locationName":"x-amz-part-number-marker","type":"integer"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKey":{"shape":"Sk","location":"header","locationName":"x-amz-server-side-encryption-customer-key"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"ObjectAttributes":{"location":"header","locationName":"x-amz-object-attributes","type":"list","member":{}}}},"output":{"type":"structure","members":{"DeleteMarker":{"location":"header","locationName":"x-amz-delete-marker","type":"boolean"},"LastModified":{"location":"header","locationName":"Last-Modified","type":"timestamp"},"VersionId":{"location":"header","locationName":"x-amz-version-id"},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"},"ETag":{},"Checksum":{"type":"structure","members":{"ChecksumCRC32":{},"ChecksumCRC32C":{},"ChecksumSHA1":{},"ChecksumSHA256":{}}},"ObjectParts":{"type":"structure","members":{"TotalPartsCount":{"locationName":"PartsCount","type":"integer"},"PartNumberMarker":{"type":"integer"},"NextPartNumberMarker":{"type":"integer"},"MaxParts":{"type":"integer"},"IsTruncated":{"type":"boolean"},"Parts":{"locationName":"Part","type":"list","member":{"type":"structure","members":{"PartNumber":{"type":"integer"},"Size":{"type":"long"},"ChecksumCRC32":{},"ChecksumCRC32C":{},"ChecksumSHA1":{},"ChecksumSHA256":{}}},"flattened":true}}},"StorageClass":{},"ObjectSize":{"type":"long"}}}},"GetObjectLegalHold":{"http":{"method":"GET","requestUri":"/{Bucket}/{Key+}?legal-hold"},"input":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"location":"uri","locationName":"Key"},"VersionId":{"location":"querystring","locationName":"versionId"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"LegalHold":{"shape":"Saq"}},"payload":"LegalHold"}},"GetObjectLockConfiguration":{"http":{"method":"GET","requestUri":"/{Bucket}?object-lock"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"ObjectLockConfiguration":{"shape":"Sat"}},"payload":"ObjectLockConfiguration"}},"GetObjectRetention":{"http":{"method":"GET","requestUri":"/{Bucket}/{Key+}?retention"},"input":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"location":"uri","locationName":"Key"},"VersionId":{"location":"querystring","locationName":"versionId"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"Retention":{"shape":"Sb1"}},"payload":"Retention"}},"GetObjectTagging":{"http":{"method":"GET","requestUri":"/{Bucket}/{Key+}?tagging"},"input":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"location":"uri","locationName":"Key"},"VersionId":{"location":"querystring","locationName":"versionId"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"}}},"output":{"type":"structure","required":["TagSet"],"members":{"VersionId":{"location":"header","locationName":"x-amz-version-id"},"TagSet":{"shape":"S48"}}}},"GetObjectTorrent":{"http":{"method":"GET","requestUri":"/{Bucket}/{Key+}?torrent"},"input":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"location":"uri","locationName":"Key"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"Body":{"streaming":true,"type":"blob"},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}},"payload":"Body"}},"GetPublicAccessBlock":{"http":{"method":"GET","requestUri":"/{Bucket}?publicAccessBlock"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"PublicAccessBlockConfiguration":{"shape":"Sb8"}},"payload":"PublicAccessBlockConfiguration"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"HeadBucket":{"http":{"method":"HEAD","requestUri":"/{Bucket}"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"BucketLocationType":{"location":"header","locationName":"x-amz-bucket-location-type"},"BucketLocationName":{"location":"header","locationName":"x-amz-bucket-location-name"},"BucketRegion":{"location":"header","locationName":"x-amz-bucket-region"},"AccessPointAlias":{"location":"header","locationName":"x-amz-access-point-alias","type":"boolean"}}}},"HeadObject":{"http":{"method":"HEAD","requestUri":"/{Bucket}/{Key+}"},"input":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"IfMatch":{"location":"header","locationName":"If-Match"},"IfModifiedSince":{"location":"header","locationName":"If-Modified-Since","type":"timestamp"},"IfNoneMatch":{"location":"header","locationName":"If-None-Match"},"IfUnmodifiedSince":{"location":"header","locationName":"If-Unmodified-Since","type":"timestamp"},"Key":{"contextParam":{"name":"Key"},"location":"uri","locationName":"Key"},"Range":{"location":"header","locationName":"Range"},"VersionId":{"location":"querystring","locationName":"versionId"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKey":{"shape":"Sk","location":"header","locationName":"x-amz-server-side-encryption-customer-key"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"PartNumber":{"location":"querystring","locationName":"partNumber","type":"integer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"ChecksumMode":{"location":"header","locationName":"x-amz-checksum-mode"}}},"output":{"type":"structure","members":{"DeleteMarker":{"location":"header","locationName":"x-amz-delete-marker","type":"boolean"},"AcceptRanges":{"location":"header","locationName":"accept-ranges"},"Expiration":{"location":"header","locationName":"x-amz-expiration"},"Restore":{"location":"header","locationName":"x-amz-restore"},"ArchiveStatus":{"location":"header","locationName":"x-amz-archive-status"},"LastModified":{"location":"header","locationName":"Last-Modified","type":"timestamp"},"ContentLength":{"location":"header","locationName":"Content-Length","type":"long"},"ChecksumCRC32":{"location":"header","locationName":"x-amz-checksum-crc32"},"ChecksumCRC32C":{"location":"header","locationName":"x-amz-checksum-crc32c"},"ChecksumSHA1":{"location":"header","locationName":"x-amz-checksum-sha1"},"ChecksumSHA256":{"location":"header","locationName":"x-amz-checksum-sha256"},"ETag":{"location":"header","locationName":"ETag"},"MissingMeta":{"location":"header","locationName":"x-amz-missing-meta","type":"integer"},"VersionId":{"location":"header","locationName":"x-amz-version-id"},"CacheControl":{"location":"header","locationName":"Cache-Control"},"ContentDisposition":{"location":"header","locationName":"Content-Disposition"},"ContentEncoding":{"location":"header","locationName":"Content-Encoding"},"ContentLanguage":{"location":"header","locationName":"Content-Language"},"ContentType":{"location":"header","locationName":"Content-Type"},"Expires":{"location":"header","locationName":"Expires","type":"timestamp"},"WebsiteRedirectLocation":{"location":"header","locationName":"x-amz-website-redirect-location"},"ServerSideEncryption":{"location":"header","locationName":"x-amz-server-side-encryption"},"Metadata":{"shape":"S1b","location":"headers","locationName":"x-amz-meta-"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"SSEKMSKeyId":{"shape":"Sr","location":"header","locationName":"x-amz-server-side-encryption-aws-kms-key-id"},"BucketKeyEnabled":{"location":"header","locationName":"x-amz-server-side-encryption-bucket-key-enabled","type":"boolean"},"StorageClass":{"location":"header","locationName":"x-amz-storage-class"},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"},"ReplicationStatus":{"location":"header","locationName":"x-amz-replication-status"},"PartsCount":{"location":"header","locationName":"x-amz-mp-parts-count","type":"integer"},"ObjectLockMode":{"location":"header","locationName":"x-amz-object-lock-mode"},"ObjectLockRetainUntilDate":{"shape":"S1o","location":"header","locationName":"x-amz-object-lock-retain-until-date"},"ObjectLockLegalHoldStatus":{"location":"header","locationName":"x-amz-object-lock-legal-hold"}}}},"ListBucketAnalyticsConfigurations":{"http":{"method":"GET","requestUri":"/{Bucket}?analytics"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContinuationToken":{"location":"querystring","locationName":"continuation-token"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"IsTruncated":{"type":"boolean"},"ContinuationToken":{},"NextContinuationToken":{},"AnalyticsConfigurationList":{"locationName":"AnalyticsConfiguration","type":"list","member":{"shape":"S42"},"flattened":true}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"ListBucketIntelligentTieringConfigurations":{"http":{"method":"GET","requestUri":"/{Bucket}?intelligent-tiering"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContinuationToken":{"location":"querystring","locationName":"continuation-token"}}},"output":{"type":"structure","members":{"IsTruncated":{"type":"boolean"},"ContinuationToken":{},"NextContinuationToken":{},"IntelligentTieringConfigurationList":{"locationName":"IntelligentTieringConfiguration","type":"list","member":{"shape":"S50"},"flattened":true}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"ListBucketInventoryConfigurations":{"http":{"method":"GET","requestUri":"/{Bucket}?inventory"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContinuationToken":{"location":"querystring","locationName":"continuation-token"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"ContinuationToken":{},"InventoryConfigurationList":{"locationName":"InventoryConfiguration","type":"list","member":{"shape":"S5a"},"flattened":true},"IsTruncated":{"type":"boolean"},"NextContinuationToken":{}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"ListBucketMetricsConfigurations":{"http":{"method":"GET","requestUri":"/{Bucket}?metrics"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContinuationToken":{"location":"querystring","locationName":"continuation-token"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"IsTruncated":{"type":"boolean"},"ContinuationToken":{},"NextContinuationToken":{},"MetricsConfigurationList":{"locationName":"MetricsConfiguration","type":"list","member":{"shape":"S6u"},"flattened":true}}}},"ListBuckets":{"http":{"method":"GET"},"output":{"type":"structure","members":{"Buckets":{"shape":"Sbx"},"Owner":{"shape":"S3q"}}},"alias":"GetService"},"ListDirectoryBuckets":{"http":{"method":"GET"},"input":{"type":"structure","members":{"ContinuationToken":{"location":"querystring","locationName":"continuation-token"},"MaxDirectoryBuckets":{"location":"querystring","locationName":"max-directory-buckets","type":"integer"}}},"output":{"type":"structure","members":{"Buckets":{"shape":"Sbx"},"ContinuationToken":{}}},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"ListMultipartUploads":{"http":{"method":"GET","requestUri":"/{Bucket}?uploads"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Delimiter":{"location":"querystring","locationName":"delimiter"},"EncodingType":{"location":"querystring","locationName":"encoding-type"},"KeyMarker":{"location":"querystring","locationName":"key-marker"},"MaxUploads":{"location":"querystring","locationName":"max-uploads","type":"integer"},"Prefix":{"contextParam":{"name":"Prefix"},"location":"querystring","locationName":"prefix"},"UploadIdMarker":{"location":"querystring","locationName":"upload-id-marker"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"}}},"output":{"type":"structure","members":{"Bucket":{},"KeyMarker":{},"UploadIdMarker":{},"NextKeyMarker":{},"Prefix":{},"Delimiter":{},"NextUploadIdMarker":{},"MaxUploads":{"type":"integer"},"IsTruncated":{"type":"boolean"},"Uploads":{"locationName":"Upload","type":"list","member":{"type":"structure","members":{"UploadId":{},"Key":{},"Initiated":{"type":"timestamp"},"StorageClass":{},"Owner":{"shape":"S3q"},"Initiator":{"shape":"Scg"},"ChecksumAlgorithm":{}}},"flattened":true},"CommonPrefixes":{"shape":"Sch"},"EncodingType":{},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}}},"ListObjectVersions":{"http":{"method":"GET","requestUri":"/{Bucket}?versions"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Delimiter":{"location":"querystring","locationName":"delimiter"},"EncodingType":{"location":"querystring","locationName":"encoding-type"},"KeyMarker":{"location":"querystring","locationName":"key-marker"},"MaxKeys":{"location":"querystring","locationName":"max-keys","type":"integer"},"Prefix":{"contextParam":{"name":"Prefix"},"location":"querystring","locationName":"prefix"},"VersionIdMarker":{"location":"querystring","locationName":"version-id-marker"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"OptionalObjectAttributes":{"shape":"Scm","location":"header","locationName":"x-amz-optional-object-attributes"}}},"output":{"type":"structure","members":{"IsTruncated":{"type":"boolean"},"KeyMarker":{},"VersionIdMarker":{},"NextKeyMarker":{},"NextVersionIdMarker":{},"Versions":{"locationName":"Version","type":"list","member":{"type":"structure","members":{"ETag":{},"ChecksumAlgorithm":{"shape":"Scs"},"Size":{"type":"long"},"StorageClass":{},"Key":{},"VersionId":{},"IsLatest":{"type":"boolean"},"LastModified":{"type":"timestamp"},"Owner":{"shape":"S3q"},"RestoreStatus":{"shape":"Scv"}}},"flattened":true},"DeleteMarkers":{"locationName":"DeleteMarker","type":"list","member":{"type":"structure","members":{"Owner":{"shape":"S3q"},"Key":{},"VersionId":{},"IsLatest":{"type":"boolean"},"LastModified":{"type":"timestamp"}}},"flattened":true},"Name":{},"Prefix":{},"Delimiter":{},"MaxKeys":{"type":"integer"},"CommonPrefixes":{"shape":"Sch"},"EncodingType":{},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}},"alias":"GetBucketObjectVersions"},"ListObjects":{"http":{"method":"GET","requestUri":"/{Bucket}"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Delimiter":{"location":"querystring","locationName":"delimiter"},"EncodingType":{"location":"querystring","locationName":"encoding-type"},"Marker":{"location":"querystring","locationName":"marker"},"MaxKeys":{"location":"querystring","locationName":"max-keys","type":"integer"},"Prefix":{"contextParam":{"name":"Prefix"},"location":"querystring","locationName":"prefix"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"OptionalObjectAttributes":{"shape":"Scm","location":"header","locationName":"x-amz-optional-object-attributes"}}},"output":{"type":"structure","members":{"IsTruncated":{"type":"boolean"},"Marker":{},"NextMarker":{},"Contents":{"shape":"Sd4"},"Name":{},"Prefix":{},"Delimiter":{},"MaxKeys":{"type":"integer"},"CommonPrefixes":{"shape":"Sch"},"EncodingType":{},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}},"alias":"GetBucket"},"ListObjectsV2":{"http":{"method":"GET","requestUri":"/{Bucket}?list-type=2"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Delimiter":{"location":"querystring","locationName":"delimiter"},"EncodingType":{"location":"querystring","locationName":"encoding-type"},"MaxKeys":{"location":"querystring","locationName":"max-keys","type":"integer"},"Prefix":{"contextParam":{"name":"Prefix"},"location":"querystring","locationName":"prefix"},"ContinuationToken":{"location":"querystring","locationName":"continuation-token"},"FetchOwner":{"location":"querystring","locationName":"fetch-owner","type":"boolean"},"StartAfter":{"location":"querystring","locationName":"start-after"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"OptionalObjectAttributes":{"shape":"Scm","location":"header","locationName":"x-amz-optional-object-attributes"}}},"output":{"type":"structure","members":{"IsTruncated":{"type":"boolean"},"Contents":{"shape":"Sd4"},"Name":{},"Prefix":{},"Delimiter":{},"MaxKeys":{"type":"integer"},"CommonPrefixes":{"shape":"Sch"},"EncodingType":{},"KeyCount":{"type":"integer"},"ContinuationToken":{},"NextContinuationToken":{},"StartAfter":{},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}}},"ListParts":{"http":{"method":"GET","requestUri":"/{Bucket}/{Key+}"},"input":{"type":"structure","required":["Bucket","Key","UploadId"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"contextParam":{"name":"Key"},"location":"uri","locationName":"Key"},"MaxParts":{"location":"querystring","locationName":"max-parts","type":"integer"},"PartNumberMarker":{"location":"querystring","locationName":"part-number-marker","type":"integer"},"UploadId":{"location":"querystring","locationName":"uploadId"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKey":{"shape":"Sk","location":"header","locationName":"x-amz-server-side-encryption-customer-key"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"}}},"output":{"type":"structure","members":{"AbortDate":{"location":"header","locationName":"x-amz-abort-date","type":"timestamp"},"AbortRuleId":{"location":"header","locationName":"x-amz-abort-rule-id"},"Bucket":{},"Key":{},"UploadId":{},"PartNumberMarker":{"type":"integer"},"NextPartNumberMarker":{"type":"integer"},"MaxParts":{"type":"integer"},"IsTruncated":{"type":"boolean"},"Parts":{"locationName":"Part","type":"list","member":{"type":"structure","members":{"PartNumber":{"type":"integer"},"LastModified":{"type":"timestamp"},"ETag":{},"Size":{"type":"long"},"ChecksumCRC32":{},"ChecksumCRC32C":{},"ChecksumSHA1":{},"ChecksumSHA256":{}}},"flattened":true},"Initiator":{"shape":"Scg"},"Owner":{"shape":"S3q"},"StorageClass":{},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"},"ChecksumAlgorithm":{}}}},"PutBucketAccelerateConfiguration":{"http":{"method":"PUT","requestUri":"/{Bucket}?accelerate"},"input":{"type":"structure","required":["Bucket","AccelerateConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"AccelerateConfiguration":{"locationName":"AccelerateConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"},"type":"structure","members":{"Status":{}}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"}},"payload":"AccelerateConfiguration"},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":false},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketAcl":{"http":{"method":"PUT","requestUri":"/{Bucket}?acl"},"input":{"type":"structure","required":["Bucket"],"members":{"ACL":{"location":"header","locationName":"x-amz-acl"},"AccessControlPolicy":{"shape":"Sdj","locationName":"AccessControlPolicy","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"GrantFullControl":{"location":"header","locationName":"x-amz-grant-full-control"},"GrantRead":{"location":"header","locationName":"x-amz-grant-read"},"GrantReadACP":{"location":"header","locationName":"x-amz-grant-read-acp"},"GrantWrite":{"location":"header","locationName":"x-amz-grant-write"},"GrantWriteACP":{"location":"header","locationName":"x-amz-grant-write-acp"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"AccessControlPolicy"},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketAnalyticsConfiguration":{"http":{"method":"PUT","requestUri":"/{Bucket}?analytics"},"input":{"type":"structure","required":["Bucket","Id","AnalyticsConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Id":{"location":"querystring","locationName":"id"},"AnalyticsConfiguration":{"shape":"S42","locationName":"AnalyticsConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"AnalyticsConfiguration"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketCors":{"http":{"method":"PUT","requestUri":"/{Bucket}?cors"},"input":{"type":"structure","required":["Bucket","CORSConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"CORSConfiguration":{"locationName":"CORSConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"},"type":"structure","required":["CORSRules"],"members":{"CORSRules":{"shape":"S4h","locationName":"CORSRule"}}},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"CORSConfiguration"},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketEncryption":{"http":{"method":"PUT","requestUri":"/{Bucket}?encryption"},"input":{"type":"structure","required":["Bucket","ServerSideEncryptionConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"ServerSideEncryptionConfiguration":{"shape":"S4u","locationName":"ServerSideEncryptionConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"ServerSideEncryptionConfiguration"},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketIntelligentTieringConfiguration":{"http":{"method":"PUT","requestUri":"/{Bucket}?intelligent-tiering"},"input":{"type":"structure","required":["Bucket","Id","IntelligentTieringConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Id":{"location":"querystring","locationName":"id"},"IntelligentTieringConfiguration":{"shape":"S50","locationName":"IntelligentTieringConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}}},"payload":"IntelligentTieringConfiguration"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketInventoryConfiguration":{"http":{"method":"PUT","requestUri":"/{Bucket}?inventory"},"input":{"type":"structure","required":["Bucket","Id","InventoryConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Id":{"location":"querystring","locationName":"id"},"InventoryConfiguration":{"shape":"S5a","locationName":"InventoryConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"InventoryConfiguration"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketLifecycle":{"http":{"method":"PUT","requestUri":"/{Bucket}?lifecycle"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"LifecycleConfiguration":{"locationName":"LifecycleConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"},"type":"structure","required":["Rules"],"members":{"Rules":{"shape":"S5q","locationName":"Rule"}}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"LifecycleConfiguration"},"deprecated":true,"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketLifecycleConfiguration":{"http":{"method":"PUT","requestUri":"/{Bucket}?lifecycle"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"LifecycleConfiguration":{"locationName":"LifecycleConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"},"type":"structure","required":["Rules"],"members":{"Rules":{"shape":"S66","locationName":"Rule"}}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"LifecycleConfiguration"},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketLogging":{"http":{"method":"PUT","requestUri":"/{Bucket}?logging"},"input":{"type":"structure","required":["Bucket","BucketLoggingStatus"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"BucketLoggingStatus":{"locationName":"BucketLoggingStatus","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"},"type":"structure","members":{"LoggingEnabled":{"shape":"S6i"}}},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"BucketLoggingStatus"},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketMetricsConfiguration":{"http":{"method":"PUT","requestUri":"/{Bucket}?metrics"},"input":{"type":"structure","required":["Bucket","Id","MetricsConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Id":{"location":"querystring","locationName":"id"},"MetricsConfiguration":{"shape":"S6u","locationName":"MetricsConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"MetricsConfiguration"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketNotification":{"http":{"method":"PUT","requestUri":"/{Bucket}?notification"},"input":{"type":"structure","required":["Bucket","NotificationConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"NotificationConfiguration":{"shape":"S6z","locationName":"NotificationConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"NotificationConfiguration"},"deprecated":true,"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketNotificationConfiguration":{"http":{"method":"PUT","requestUri":"/{Bucket}?notification"},"input":{"type":"structure","required":["Bucket","NotificationConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"NotificationConfiguration":{"shape":"S7a","locationName":"NotificationConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"SkipDestinationValidation":{"location":"header","locationName":"x-amz-skip-destination-validation","type":"boolean"}},"payload":"NotificationConfiguration"},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketOwnershipControls":{"http":{"method":"PUT","requestUri":"/{Bucket}?ownershipControls"},"input":{"type":"structure","required":["Bucket","OwnershipControls"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"OwnershipControls":{"shape":"S7r","locationName":"OwnershipControls","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}}},"payload":"OwnershipControls"},"httpChecksum":{"requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketPolicy":{"http":{"method":"PUT","requestUri":"/{Bucket}?policy"},"input":{"type":"structure","required":["Bucket","Policy"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"ConfirmRemoveSelfBucketAccess":{"location":"header","locationName":"x-amz-confirm-remove-self-bucket-access","type":"boolean"},"Policy":{},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"Policy"},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketReplication":{"http":{"method":"PUT","requestUri":"/{Bucket}?replication"},"input":{"type":"structure","required":["Bucket","ReplicationConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"ReplicationConfiguration":{"shape":"S83","locationName":"ReplicationConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"Token":{"location":"header","locationName":"x-amz-bucket-object-lock-token"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"ReplicationConfiguration"},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketRequestPayment":{"http":{"method":"PUT","requestUri":"/{Bucket}?requestPayment"},"input":{"type":"structure","required":["Bucket","RequestPaymentConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"RequestPaymentConfiguration":{"locationName":"RequestPaymentConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"},"type":"structure","required":["Payer"],"members":{"Payer":{}}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"RequestPaymentConfiguration"},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketTagging":{"http":{"method":"PUT","requestUri":"/{Bucket}?tagging"},"input":{"type":"structure","required":["Bucket","Tagging"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"Tagging":{"shape":"Se9","locationName":"Tagging","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"Tagging"},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketVersioning":{"http":{"method":"PUT","requestUri":"/{Bucket}?versioning"},"input":{"type":"structure","required":["Bucket","VersioningConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"MFA":{"location":"header","locationName":"x-amz-mfa"},"VersioningConfiguration":{"locationName":"VersioningConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"},"type":"structure","members":{"MFADelete":{"locationName":"MfaDelete"},"Status":{}}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"VersioningConfiguration"},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutBucketWebsite":{"http":{"method":"PUT","requestUri":"/{Bucket}?website"},"input":{"type":"structure","required":["Bucket","WebsiteConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"WebsiteConfiguration":{"locationName":"WebsiteConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"},"type":"structure","members":{"ErrorDocument":{"shape":"S9b"},"IndexDocument":{"shape":"S99"},"RedirectAllRequestsTo":{"shape":"S96"},"RoutingRules":{"shape":"S9c"}}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"WebsiteConfiguration"},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"PutObject":{"http":{"method":"PUT","requestUri":"/{Bucket}/{Key+}"},"input":{"type":"structure","required":["Bucket","Key"],"members":{"ACL":{"location":"header","locationName":"x-amz-acl"},"Body":{"streaming":true,"type":"blob"},"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"CacheControl":{"location":"header","locationName":"Cache-Control"},"ContentDisposition":{"location":"header","locationName":"Content-Disposition"},"ContentEncoding":{"location":"header","locationName":"Content-Encoding"},"ContentLanguage":{"location":"header","locationName":"Content-Language"},"ContentLength":{"location":"header","locationName":"Content-Length","type":"long"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ContentType":{"location":"header","locationName":"Content-Type"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"ChecksumCRC32":{"location":"header","locationName":"x-amz-checksum-crc32"},"ChecksumCRC32C":{"location":"header","locationName":"x-amz-checksum-crc32c"},"ChecksumSHA1":{"location":"header","locationName":"x-amz-checksum-sha1"},"ChecksumSHA256":{"location":"header","locationName":"x-amz-checksum-sha256"},"Expires":{"location":"header","locationName":"Expires","type":"timestamp"},"GrantFullControl":{"location":"header","locationName":"x-amz-grant-full-control"},"GrantRead":{"location":"header","locationName":"x-amz-grant-read"},"GrantReadACP":{"location":"header","locationName":"x-amz-grant-read-acp"},"GrantWriteACP":{"location":"header","locationName":"x-amz-grant-write-acp"},"Key":{"contextParam":{"name":"Key"},"location":"uri","locationName":"Key"},"Metadata":{"shape":"S1b","location":"headers","locationName":"x-amz-meta-"},"ServerSideEncryption":{"location":"header","locationName":"x-amz-server-side-encryption"},"StorageClass":{"location":"header","locationName":"x-amz-storage-class"},"WebsiteRedirectLocation":{"location":"header","locationName":"x-amz-website-redirect-location"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKey":{"shape":"Sk","location":"header","locationName":"x-amz-server-side-encryption-customer-key"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"SSEKMSKeyId":{"shape":"Sr","location":"header","locationName":"x-amz-server-side-encryption-aws-kms-key-id"},"SSEKMSEncryptionContext":{"shape":"S1i","location":"header","locationName":"x-amz-server-side-encryption-context"},"BucketKeyEnabled":{"location":"header","locationName":"x-amz-server-side-encryption-bucket-key-enabled","type":"boolean"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"Tagging":{"location":"header","locationName":"x-amz-tagging"},"ObjectLockMode":{"location":"header","locationName":"x-amz-object-lock-mode"},"ObjectLockRetainUntilDate":{"shape":"S1o","location":"header","locationName":"x-amz-object-lock-retain-until-date"},"ObjectLockLegalHoldStatus":{"location":"header","locationName":"x-amz-object-lock-legal-hold"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"Body"},"output":{"type":"structure","members":{"Expiration":{"location":"header","locationName":"x-amz-expiration"},"ETag":{"location":"header","locationName":"ETag"},"ChecksumCRC32":{"location":"header","locationName":"x-amz-checksum-crc32"},"ChecksumCRC32C":{"location":"header","locationName":"x-amz-checksum-crc32c"},"ChecksumSHA1":{"location":"header","locationName":"x-amz-checksum-sha1"},"ChecksumSHA256":{"location":"header","locationName":"x-amz-checksum-sha256"},"ServerSideEncryption":{"location":"header","locationName":"x-amz-server-side-encryption"},"VersionId":{"location":"header","locationName":"x-amz-version-id"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"SSEKMSKeyId":{"shape":"Sr","location":"header","locationName":"x-amz-server-side-encryption-aws-kms-key-id"},"SSEKMSEncryptionContext":{"shape":"S1i","location":"header","locationName":"x-amz-server-side-encryption-context"},"BucketKeyEnabled":{"location":"header","locationName":"x-amz-server-side-encryption-bucket-key-enabled","type":"boolean"},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":false}},"PutObjectAcl":{"http":{"method":"PUT","requestUri":"/{Bucket}/{Key+}?acl"},"input":{"type":"structure","required":["Bucket","Key"],"members":{"ACL":{"location":"header","locationName":"x-amz-acl"},"AccessControlPolicy":{"shape":"Sdj","locationName":"AccessControlPolicy","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"GrantFullControl":{"location":"header","locationName":"x-amz-grant-full-control"},"GrantRead":{"location":"header","locationName":"x-amz-grant-read"},"GrantReadACP":{"location":"header","locationName":"x-amz-grant-read-acp"},"GrantWrite":{"location":"header","locationName":"x-amz-grant-write"},"GrantWriteACP":{"location":"header","locationName":"x-amz-grant-write-acp"},"Key":{"contextParam":{"name":"Key"},"location":"uri","locationName":"Key"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"VersionId":{"location":"querystring","locationName":"versionId"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"AccessControlPolicy"},"output":{"type":"structure","members":{"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true}},"PutObjectLegalHold":{"http":{"method":"PUT","requestUri":"/{Bucket}/{Key+}?legal-hold"},"input":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"location":"uri","locationName":"Key"},"LegalHold":{"shape":"Saq","locationName":"LegalHold","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"VersionId":{"location":"querystring","locationName":"versionId"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"LegalHold"},"output":{"type":"structure","members":{"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true}},"PutObjectLockConfiguration":{"http":{"method":"PUT","requestUri":"/{Bucket}?object-lock"},"input":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ObjectLockConfiguration":{"shape":"Sat","locationName":"ObjectLockConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"Token":{"location":"header","locationName":"x-amz-bucket-object-lock-token"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"ObjectLockConfiguration"},"output":{"type":"structure","members":{"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true}},"PutObjectRetention":{"http":{"method":"PUT","requestUri":"/{Bucket}/{Key+}?retention"},"input":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"location":"uri","locationName":"Key"},"Retention":{"shape":"Sb1","locationName":"Retention","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"VersionId":{"location":"querystring","locationName":"versionId"},"BypassGovernanceRetention":{"location":"header","locationName":"x-amz-bypass-governance-retention","type":"boolean"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"Retention"},"output":{"type":"structure","members":{"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true}},"PutObjectTagging":{"http":{"method":"PUT","requestUri":"/{Bucket}/{Key+}?tagging"},"input":{"type":"structure","required":["Bucket","Key","Tagging"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"location":"uri","locationName":"Key"},"VersionId":{"location":"querystring","locationName":"versionId"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"Tagging":{"shape":"Se9","locationName":"Tagging","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"}},"payload":"Tagging"},"output":{"type":"structure","members":{"VersionId":{"location":"header","locationName":"x-amz-version-id"}}},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true}},"PutPublicAccessBlock":{"http":{"method":"PUT","requestUri":"/{Bucket}?publicAccessBlock"},"input":{"type":"structure","required":["Bucket","PublicAccessBlockConfiguration"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"PublicAccessBlockConfiguration":{"shape":"Sb8","locationName":"PublicAccessBlockConfiguration","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"PublicAccessBlockConfiguration"},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":true},"staticContextParams":{"UseS3ExpressControlEndpoint":{"value":true}}},"RestoreObject":{"http":{"requestUri":"/{Bucket}/{Key+}?restore"},"input":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"location":"uri","locationName":"Key"},"VersionId":{"location":"querystring","locationName":"versionId"},"RestoreRequest":{"locationName":"RestoreRequest","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"},"type":"structure","members":{"Days":{"type":"integer"},"GlacierJobParameters":{"type":"structure","required":["Tier"],"members":{"Tier":{}}},"Type":{},"Tier":{},"Description":{},"SelectParameters":{"type":"structure","required":["InputSerialization","ExpressionType","Expression","OutputSerialization"],"members":{"InputSerialization":{"shape":"Sez"},"ExpressionType":{},"Expression":{},"OutputSerialization":{"shape":"Sfe"}}},"OutputLocation":{"type":"structure","members":{"S3":{"type":"structure","required":["BucketName","Prefix"],"members":{"BucketName":{},"Prefix":{},"Encryption":{"type":"structure","required":["EncryptionType"],"members":{"EncryptionType":{},"KMSKeyId":{"shape":"Sr"},"KMSContext":{}}},"CannedACL":{},"AccessControlList":{"shape":"S3t"},"Tagging":{"shape":"Se9"},"UserMetadata":{"type":"list","member":{"locationName":"MetadataEntry","type":"structure","members":{"Name":{},"Value":{}}}},"StorageClass":{}}}}}}},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"RestoreRequest"},"output":{"type":"structure","members":{"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"},"RestoreOutputPath":{"location":"header","locationName":"x-amz-restore-output-path"}}},"alias":"PostObjectRestore","httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":false}},"SelectObjectContent":{"http":{"requestUri":"/{Bucket}/{Key+}?select&select-type=2"},"input":{"locationName":"SelectObjectContentRequest","xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"},"type":"structure","required":["Bucket","Key","Expression","ExpressionType","InputSerialization","OutputSerialization"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"Key":{"location":"uri","locationName":"Key"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKey":{"shape":"Sk","location":"header","locationName":"x-amz-server-side-encryption-customer-key"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"Expression":{},"ExpressionType":{},"RequestProgress":{"type":"structure","members":{"Enabled":{"type":"boolean"}}},"InputSerialization":{"shape":"Sez"},"OutputSerialization":{"shape":"Sfe"},"ScanRange":{"type":"structure","members":{"Start":{"type":"long"},"End":{"type":"long"}}},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"output":{"type":"structure","members":{"Payload":{"type":"structure","members":{"Records":{"type":"structure","members":{"Payload":{"eventpayload":true,"type":"blob"}},"event":true},"Stats":{"type":"structure","members":{"Details":{"eventpayload":true,"type":"structure","members":{"BytesScanned":{"type":"long"},"BytesProcessed":{"type":"long"},"BytesReturned":{"type":"long"}}}},"event":true},"Progress":{"type":"structure","members":{"Details":{"eventpayload":true,"type":"structure","members":{"BytesScanned":{"type":"long"},"BytesProcessed":{"type":"long"},"BytesReturned":{"type":"long"}}}},"event":true},"Cont":{"type":"structure","members":{},"event":true},"End":{"type":"structure","members":{},"event":true}},"eventstream":true}},"payload":"Payload"}},"UploadPart":{"http":{"method":"PUT","requestUri":"/{Bucket}/{Key+}"},"input":{"type":"structure","required":["Bucket","Key","PartNumber","UploadId"],"members":{"Body":{"streaming":true,"type":"blob"},"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ContentLength":{"location":"header","locationName":"Content-Length","type":"long"},"ContentMD5":{"location":"header","locationName":"Content-MD5"},"ChecksumAlgorithm":{"location":"header","locationName":"x-amz-sdk-checksum-algorithm"},"ChecksumCRC32":{"location":"header","locationName":"x-amz-checksum-crc32"},"ChecksumCRC32C":{"location":"header","locationName":"x-amz-checksum-crc32c"},"ChecksumSHA1":{"location":"header","locationName":"x-amz-checksum-sha1"},"ChecksumSHA256":{"location":"header","locationName":"x-amz-checksum-sha256"},"Key":{"contextParam":{"name":"Key"},"location":"uri","locationName":"Key"},"PartNumber":{"location":"querystring","locationName":"partNumber","type":"integer"},"UploadId":{"location":"querystring","locationName":"uploadId"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKey":{"shape":"Sk","location":"header","locationName":"x-amz-server-side-encryption-customer-key"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}},"payload":"Body"},"output":{"type":"structure","members":{"ServerSideEncryption":{"location":"header","locationName":"x-amz-server-side-encryption"},"ETag":{"location":"header","locationName":"ETag"},"ChecksumCRC32":{"location":"header","locationName":"x-amz-checksum-crc32"},"ChecksumCRC32C":{"location":"header","locationName":"x-amz-checksum-crc32c"},"ChecksumSHA1":{"location":"header","locationName":"x-amz-checksum-sha1"},"ChecksumSHA256":{"location":"header","locationName":"x-amz-checksum-sha256"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"SSEKMSKeyId":{"shape":"Sr","location":"header","locationName":"x-amz-server-side-encryption-aws-kms-key-id"},"BucketKeyEnabled":{"location":"header","locationName":"x-amz-server-side-encryption-bucket-key-enabled","type":"boolean"},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}}},"httpChecksum":{"requestAlgorithmMember":"ChecksumAlgorithm","requestChecksumRequired":false}},"UploadPartCopy":{"http":{"method":"PUT","requestUri":"/{Bucket}/{Key+}"},"input":{"type":"structure","required":["Bucket","CopySource","Key","PartNumber","UploadId"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"CopySource":{"location":"header","locationName":"x-amz-copy-source"},"CopySourceIfMatch":{"location":"header","locationName":"x-amz-copy-source-if-match"},"CopySourceIfModifiedSince":{"location":"header","locationName":"x-amz-copy-source-if-modified-since","type":"timestamp"},"CopySourceIfNoneMatch":{"location":"header","locationName":"x-amz-copy-source-if-none-match"},"CopySourceIfUnmodifiedSince":{"location":"header","locationName":"x-amz-copy-source-if-unmodified-since","type":"timestamp"},"CopySourceRange":{"location":"header","locationName":"x-amz-copy-source-range"},"Key":{"location":"uri","locationName":"Key"},"PartNumber":{"location":"querystring","locationName":"partNumber","type":"integer"},"UploadId":{"location":"querystring","locationName":"uploadId"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKey":{"shape":"Sk","location":"header","locationName":"x-amz-server-side-encryption-customer-key"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"CopySourceSSECustomerAlgorithm":{"location":"header","locationName":"x-amz-copy-source-server-side-encryption-customer-algorithm"},"CopySourceSSECustomerKey":{"shape":"S1k","location":"header","locationName":"x-amz-copy-source-server-side-encryption-customer-key"},"CopySourceSSECustomerKeyMD5":{"location":"header","locationName":"x-amz-copy-source-server-side-encryption-customer-key-MD5"},"RequestPayer":{"location":"header","locationName":"x-amz-request-payer"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"},"ExpectedSourceBucketOwner":{"location":"header","locationName":"x-amz-source-expected-bucket-owner"}}},"output":{"type":"structure","members":{"CopySourceVersionId":{"location":"header","locationName":"x-amz-copy-source-version-id"},"CopyPartResult":{"type":"structure","members":{"ETag":{},"LastModified":{"type":"timestamp"},"ChecksumCRC32":{},"ChecksumCRC32C":{},"ChecksumSHA1":{},"ChecksumSHA256":{}}},"ServerSideEncryption":{"location":"header","locationName":"x-amz-server-side-encryption"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-server-side-encryption-customer-algorithm"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-server-side-encryption-customer-key-MD5"},"SSEKMSKeyId":{"shape":"Sr","location":"header","locationName":"x-amz-server-side-encryption-aws-kms-key-id"},"BucketKeyEnabled":{"location":"header","locationName":"x-amz-server-side-encryption-bucket-key-enabled","type":"boolean"},"RequestCharged":{"location":"header","locationName":"x-amz-request-charged"}},"payload":"CopyPartResult"},"staticContextParams":{"DisableS3ExpressSessionAuth":{"value":true}}},"WriteGetObjectResponse":{"http":{"requestUri":"/WriteGetObjectResponse"},"input":{"type":"structure","required":["RequestRoute","RequestToken"],"members":{"RequestRoute":{"hostLabel":true,"location":"header","locationName":"x-amz-request-route"},"RequestToken":{"location":"header","locationName":"x-amz-request-token"},"Body":{"streaming":true,"type":"blob"},"StatusCode":{"location":"header","locationName":"x-amz-fwd-status","type":"integer"},"ErrorCode":{"location":"header","locationName":"x-amz-fwd-error-code"},"ErrorMessage":{"location":"header","locationName":"x-amz-fwd-error-message"},"AcceptRanges":{"location":"header","locationName":"x-amz-fwd-header-accept-ranges"},"CacheControl":{"location":"header","locationName":"x-amz-fwd-header-Cache-Control"},"ContentDisposition":{"location":"header","locationName":"x-amz-fwd-header-Content-Disposition"},"ContentEncoding":{"location":"header","locationName":"x-amz-fwd-header-Content-Encoding"},"ContentLanguage":{"location":"header","locationName":"x-amz-fwd-header-Content-Language"},"ContentLength":{"location":"header","locationName":"Content-Length","type":"long"},"ContentRange":{"location":"header","locationName":"x-amz-fwd-header-Content-Range"},"ContentType":{"location":"header","locationName":"x-amz-fwd-header-Content-Type"},"ChecksumCRC32":{"location":"header","locationName":"x-amz-fwd-header-x-amz-checksum-crc32"},"ChecksumCRC32C":{"location":"header","locationName":"x-amz-fwd-header-x-amz-checksum-crc32c"},"ChecksumSHA1":{"location":"header","locationName":"x-amz-fwd-header-x-amz-checksum-sha1"},"ChecksumSHA256":{"location":"header","locationName":"x-amz-fwd-header-x-amz-checksum-sha256"},"DeleteMarker":{"location":"header","locationName":"x-amz-fwd-header-x-amz-delete-marker","type":"boolean"},"ETag":{"location":"header","locationName":"x-amz-fwd-header-ETag"},"Expires":{"location":"header","locationName":"x-amz-fwd-header-Expires","type":"timestamp"},"Expiration":{"location":"header","locationName":"x-amz-fwd-header-x-amz-expiration"},"LastModified":{"location":"header","locationName":"x-amz-fwd-header-Last-Modified","type":"timestamp"},"MissingMeta":{"location":"header","locationName":"x-amz-fwd-header-x-amz-missing-meta","type":"integer"},"Metadata":{"shape":"S1b","location":"headers","locationName":"x-amz-meta-"},"ObjectLockMode":{"location":"header","locationName":"x-amz-fwd-header-x-amz-object-lock-mode"},"ObjectLockLegalHoldStatus":{"location":"header","locationName":"x-amz-fwd-header-x-amz-object-lock-legal-hold"},"ObjectLockRetainUntilDate":{"shape":"S1o","location":"header","locationName":"x-amz-fwd-header-x-amz-object-lock-retain-until-date"},"PartsCount":{"location":"header","locationName":"x-amz-fwd-header-x-amz-mp-parts-count","type":"integer"},"ReplicationStatus":{"location":"header","locationName":"x-amz-fwd-header-x-amz-replication-status"},"RequestCharged":{"location":"header","locationName":"x-amz-fwd-header-x-amz-request-charged"},"Restore":{"location":"header","locationName":"x-amz-fwd-header-x-amz-restore"},"ServerSideEncryption":{"location":"header","locationName":"x-amz-fwd-header-x-amz-server-side-encryption"},"SSECustomerAlgorithm":{"location":"header","locationName":"x-amz-fwd-header-x-amz-server-side-encryption-customer-algorithm"},"SSEKMSKeyId":{"shape":"Sr","location":"header","locationName":"x-amz-fwd-header-x-amz-server-side-encryption-aws-kms-key-id"},"SSECustomerKeyMD5":{"location":"header","locationName":"x-amz-fwd-header-x-amz-server-side-encryption-customer-key-MD5"},"StorageClass":{"location":"header","locationName":"x-amz-fwd-header-x-amz-storage-class"},"TagCount":{"location":"header","locationName":"x-amz-fwd-header-x-amz-tagging-count","type":"integer"},"VersionId":{"location":"header","locationName":"x-amz-fwd-header-x-amz-version-id"},"BucketKeyEnabled":{"location":"header","locationName":"x-amz-fwd-header-x-amz-server-side-encryption-bucket-key-enabled","type":"boolean"}},"payload":"Body"},"authtype":"v4-unsigned-body","endpoint":{"hostPrefix":"{RequestRoute}."},"staticContextParams":{"UseObjectLambdaEndpoint":{"value":true}}}},"shapes":{"Sk":{"type":"blob","sensitive":true},"Sr":{"type":"string","sensitive":true},"S1b":{"type":"map","key":{},"value":{}},"S1i":{"type":"string","sensitive":true},"S1k":{"type":"blob","sensitive":true},"S1o":{"type":"timestamp","timestampFormat":"iso8601"},"S2h":{"type":"string","sensitive":true},"S3q":{"type":"structure","members":{"DisplayName":{},"ID":{}}},"S3t":{"type":"list","member":{"locationName":"Grant","type":"structure","members":{"Grantee":{"shape":"S3v"},"Permission":{}}}},"S3v":{"type":"structure","required":["Type"],"members":{"DisplayName":{},"EmailAddress":{},"ID":{},"Type":{"locationName":"xsi:type","xmlAttribute":true},"URI":{}},"xmlNamespace":{"prefix":"xsi","uri":"http://www.w3.org/2001/XMLSchema-instance"}},"S42":{"type":"structure","required":["Id","StorageClassAnalysis"],"members":{"Id":{},"Filter":{"type":"structure","members":{"Prefix":{},"Tag":{"shape":"S45"},"And":{"type":"structure","members":{"Prefix":{},"Tags":{"shape":"S48","flattened":true,"locationName":"Tag"}}}}},"StorageClassAnalysis":{"type":"structure","members":{"DataExport":{"type":"structure","required":["OutputSchemaVersion","Destination"],"members":{"OutputSchemaVersion":{},"Destination":{"type":"structure","required":["S3BucketDestination"],"members":{"S3BucketDestination":{"type":"structure","required":["Format","Bucket"],"members":{"Format":{},"BucketAccountId":{},"Bucket":{},"Prefix":{}}}}}}}}}}},"S45":{"type":"structure","required":["Key","Value"],"members":{"Key":{},"Value":{}}},"S48":{"type":"list","member":{"shape":"S45","locationName":"Tag"}},"S4h":{"type":"list","member":{"type":"structure","required":["AllowedMethods","AllowedOrigins"],"members":{"ID":{},"AllowedHeaders":{"locationName":"AllowedHeader","type":"list","member":{},"flattened":true},"AllowedMethods":{"locationName":"AllowedMethod","type":"list","member":{},"flattened":true},"AllowedOrigins":{"locationName":"AllowedOrigin","type":"list","member":{},"flattened":true},"ExposeHeaders":{"locationName":"ExposeHeader","type":"list","member":{},"flattened":true},"MaxAgeSeconds":{"type":"integer"}}},"flattened":true},"S4u":{"type":"structure","required":["Rules"],"members":{"Rules":{"locationName":"Rule","type":"list","member":{"type":"structure","members":{"ApplyServerSideEncryptionByDefault":{"type":"structure","required":["SSEAlgorithm"],"members":{"SSEAlgorithm":{},"KMSMasterKeyID":{"shape":"Sr"}}},"BucketKeyEnabled":{"type":"boolean"}}},"flattened":true}}},"S50":{"type":"structure","required":["Id","Status","Tierings"],"members":{"Id":{},"Filter":{"type":"structure","members":{"Prefix":{},"Tag":{"shape":"S45"},"And":{"type":"structure","members":{"Prefix":{},"Tags":{"shape":"S48","flattened":true,"locationName":"Tag"}}}}},"Status":{},"Tierings":{"locationName":"Tiering","type":"list","member":{"type":"structure","required":["Days","AccessTier"],"members":{"Days":{"type":"integer"},"AccessTier":{}}},"flattened":true}}},"S5a":{"type":"structure","required":["Destination","IsEnabled","Id","IncludedObjectVersions","Schedule"],"members":{"Destination":{"type":"structure","required":["S3BucketDestination"],"members":{"S3BucketDestination":{"type":"structure","required":["Bucket","Format"],"members":{"AccountId":{},"Bucket":{},"Format":{},"Prefix":{},"Encryption":{"type":"structure","members":{"SSES3":{"locationName":"SSE-S3","type":"structure","members":{}},"SSEKMS":{"locationName":"SSE-KMS","type":"structure","required":["KeyId"],"members":{"KeyId":{"shape":"Sr"}}}}}}}}},"IsEnabled":{"type":"boolean"},"Filter":{"type":"structure","required":["Prefix"],"members":{"Prefix":{}}},"Id":{},"IncludedObjectVersions":{},"OptionalFields":{"type":"list","member":{"locationName":"Field"}},"Schedule":{"type":"structure","required":["Frequency"],"members":{"Frequency":{}}}}},"S5q":{"type":"list","member":{"type":"structure","required":["Prefix","Status"],"members":{"Expiration":{"shape":"S5s"},"ID":{},"Prefix":{},"Status":{},"Transition":{"shape":"S5x"},"NoncurrentVersionTransition":{"shape":"S5z"},"NoncurrentVersionExpiration":{"shape":"S61"},"AbortIncompleteMultipartUpload":{"shape":"S62"}}},"flattened":true},"S5s":{"type":"structure","members":{"Date":{"shape":"S5t"},"Days":{"type":"integer"},"ExpiredObjectDeleteMarker":{"type":"boolean"}}},"S5t":{"type":"timestamp","timestampFormat":"iso8601"},"S5x":{"type":"structure","members":{"Date":{"shape":"S5t"},"Days":{"type":"integer"},"StorageClass":{}}},"S5z":{"type":"structure","members":{"NoncurrentDays":{"type":"integer"},"StorageClass":{},"NewerNoncurrentVersions":{"type":"integer"}}},"S61":{"type":"structure","members":{"NoncurrentDays":{"type":"integer"},"NewerNoncurrentVersions":{"type":"integer"}}},"S62":{"type":"structure","members":{"DaysAfterInitiation":{"type":"integer"}}},"S66":{"type":"list","member":{"type":"structure","required":["Status"],"members":{"Expiration":{"shape":"S5s"},"ID":{},"Prefix":{"deprecated":true},"Filter":{"type":"structure","members":{"Prefix":{},"Tag":{"shape":"S45"},"ObjectSizeGreaterThan":{"type":"long"},"ObjectSizeLessThan":{"type":"long"},"And":{"type":"structure","members":{"Prefix":{},"Tags":{"shape":"S48","flattened":true,"locationName":"Tag"},"ObjectSizeGreaterThan":{"type":"long"},"ObjectSizeLessThan":{"type":"long"}}}}},"Status":{},"Transitions":{"locationName":"Transition","type":"list","member":{"shape":"S5x"},"flattened":true},"NoncurrentVersionTransitions":{"locationName":"NoncurrentVersionTransition","type":"list","member":{"shape":"S5z"},"flattened":true},"NoncurrentVersionExpiration":{"shape":"S61"},"AbortIncompleteMultipartUpload":{"shape":"S62"}}},"flattened":true},"S6i":{"type":"structure","required":["TargetBucket","TargetPrefix"],"members":{"TargetBucket":{},"TargetGrants":{"type":"list","member":{"locationName":"Grant","type":"structure","members":{"Grantee":{"shape":"S3v"},"Permission":{}}}},"TargetPrefix":{},"TargetObjectKeyFormat":{"type":"structure","members":{"SimplePrefix":{"locationName":"SimplePrefix","type":"structure","members":{}},"PartitionedPrefix":{"locationName":"PartitionedPrefix","type":"structure","members":{"PartitionDateSource":{}}}}}}},"S6u":{"type":"structure","required":["Id"],"members":{"Id":{},"Filter":{"type":"structure","members":{"Prefix":{},"Tag":{"shape":"S45"},"AccessPointArn":{},"And":{"type":"structure","members":{"Prefix":{},"Tags":{"shape":"S48","flattened":true,"locationName":"Tag"},"AccessPointArn":{}}}}}}},"S6y":{"type":"structure","required":["Bucket"],"members":{"Bucket":{"contextParam":{"name":"Bucket"},"location":"uri","locationName":"Bucket"},"ExpectedBucketOwner":{"location":"header","locationName":"x-amz-expected-bucket-owner"}}},"S6z":{"type":"structure","members":{"TopicConfiguration":{"type":"structure","members":{"Id":{},"Events":{"shape":"S72","locationName":"Event"},"Event":{"deprecated":true},"Topic":{}}},"QueueConfiguration":{"type":"structure","members":{"Id":{},"Event":{"deprecated":true},"Events":{"shape":"S72","locationName":"Event"},"Queue":{}}},"CloudFunctionConfiguration":{"type":"structure","members":{"Id":{},"Event":{"deprecated":true},"Events":{"shape":"S72","locationName":"Event"},"CloudFunction":{},"InvocationRole":{}}}}},"S72":{"type":"list","member":{},"flattened":true},"S7a":{"type":"structure","members":{"TopicConfigurations":{"locationName":"TopicConfiguration","type":"list","member":{"type":"structure","required":["TopicArn","Events"],"members":{"Id":{},"TopicArn":{"locationName":"Topic"},"Events":{"shape":"S72","locationName":"Event"},"Filter":{"shape":"S7d"}}},"flattened":true},"QueueConfigurations":{"locationName":"QueueConfiguration","type":"list","member":{"type":"structure","required":["QueueArn","Events"],"members":{"Id":{},"QueueArn":{"locationName":"Queue"},"Events":{"shape":"S72","locationName":"Event"},"Filter":{"shape":"S7d"}}},"flattened":true},"LambdaFunctionConfigurations":{"locationName":"CloudFunctionConfiguration","type":"list","member":{"type":"structure","required":["LambdaFunctionArn","Events"],"members":{"Id":{},"LambdaFunctionArn":{"locationName":"CloudFunction"},"Events":{"shape":"S72","locationName":"Event"},"Filter":{"shape":"S7d"}}},"flattened":true},"EventBridgeConfiguration":{"type":"structure","members":{}}}},"S7d":{"type":"structure","members":{"Key":{"locationName":"S3Key","type":"structure","members":{"FilterRules":{"locationName":"FilterRule","type":"list","member":{"type":"structure","members":{"Name":{},"Value":{}}},"flattened":true}}}}},"S7r":{"type":"structure","required":["Rules"],"members":{"Rules":{"locationName":"Rule","type":"list","member":{"type":"structure","required":["ObjectOwnership"],"members":{"ObjectOwnership":{}}},"flattened":true}}},"S83":{"type":"structure","required":["Role","Rules"],"members":{"Role":{},"Rules":{"locationName":"Rule","type":"list","member":{"type":"structure","required":["Status","Destination"],"members":{"ID":{},"Priority":{"type":"integer"},"Prefix":{"deprecated":true},"Filter":{"type":"structure","members":{"Prefix":{},"Tag":{"shape":"S45"},"And":{"type":"structure","members":{"Prefix":{},"Tags":{"shape":"S48","flattened":true,"locationName":"Tag"}}}}},"Status":{},"SourceSelectionCriteria":{"type":"structure","members":{"SseKmsEncryptedObjects":{"type":"structure","required":["Status"],"members":{"Status":{}}},"ReplicaModifications":{"type":"structure","required":["Status"],"members":{"Status":{}}}}},"ExistingObjectReplication":{"type":"structure","required":["Status"],"members":{"Status":{}}},"Destination":{"type":"structure","required":["Bucket"],"members":{"Bucket":{},"Account":{},"StorageClass":{},"AccessControlTranslation":{"type":"structure","required":["Owner"],"members":{"Owner":{}}},"EncryptionConfiguration":{"type":"structure","members":{"ReplicaKmsKeyID":{}}},"ReplicationTime":{"type":"structure","required":["Status","Time"],"members":{"Status":{},"Time":{"shape":"S8p"}}},"Metrics":{"type":"structure","required":["Status"],"members":{"Status":{},"EventThreshold":{"shape":"S8p"}}}}},"DeleteMarkerReplication":{"type":"structure","members":{"Status":{}}}}},"flattened":true}}},"S8p":{"type":"structure","members":{"Minutes":{"type":"integer"}}},"S96":{"type":"structure","required":["HostName"],"members":{"HostName":{},"Protocol":{}}},"S99":{"type":"structure","required":["Suffix"],"members":{"Suffix":{}}},"S9b":{"type":"structure","required":["Key"],"members":{"Key":{}}},"S9c":{"type":"list","member":{"locationName":"RoutingRule","type":"structure","required":["Redirect"],"members":{"Condition":{"type":"structure","members":{"HttpErrorCodeReturnedEquals":{},"KeyPrefixEquals":{}}},"Redirect":{"type":"structure","members":{"HostName":{},"HttpRedirectCode":{},"Protocol":{},"ReplaceKeyPrefixWith":{},"ReplaceKeyWith":{}}}}}},"Saq":{"type":"structure","members":{"Status":{}}},"Sat":{"type":"structure","members":{"ObjectLockEnabled":{},"Rule":{"type":"structure","members":{"DefaultRetention":{"type":"structure","members":{"Mode":{},"Days":{"type":"integer"},"Years":{"type":"integer"}}}}}}},"Sb1":{"type":"structure","members":{"Mode":{},"RetainUntilDate":{"shape":"S5t"}}},"Sb8":{"type":"structure","members":{"BlockPublicAcls":{"locationName":"BlockPublicAcls","type":"boolean"},"IgnorePublicAcls":{"locationName":"IgnorePublicAcls","type":"boolean"},"BlockPublicPolicy":{"locationName":"BlockPublicPolicy","type":"boolean"},"RestrictPublicBuckets":{"locationName":"RestrictPublicBuckets","type":"boolean"}}},"Sbx":{"type":"list","member":{"locationName":"Bucket","type":"structure","members":{"Name":{},"CreationDate":{"type":"timestamp"}}}},"Scg":{"type":"structure","members":{"ID":{},"DisplayName":{}}},"Sch":{"type":"list","member":{"type":"structure","members":{"Prefix":{}}},"flattened":true},"Scm":{"type":"list","member":{}},"Scs":{"type":"list","member":{},"flattened":true},"Scv":{"type":"structure","members":{"IsRestoreInProgress":{"type":"boolean"},"RestoreExpiryDate":{"type":"timestamp"}}},"Sd4":{"type":"list","member":{"type":"structure","members":{"Key":{},"LastModified":{"type":"timestamp"},"ETag":{},"ChecksumAlgorithm":{"shape":"Scs"},"Size":{"type":"long"},"StorageClass":{},"Owner":{"shape":"S3q"},"RestoreStatus":{"shape":"Scv"}}},"flattened":true},"Sdj":{"type":"structure","members":{"Grants":{"shape":"S3t","locationName":"AccessControlList"},"Owner":{"shape":"S3q"}}},"Se9":{"type":"structure","required":["TagSet"],"members":{"TagSet":{"shape":"S48"}}},"Sez":{"type":"structure","members":{"CSV":{"type":"structure","members":{"FileHeaderInfo":{},"Comments":{},"QuoteEscapeCharacter":{},"RecordDelimiter":{},"FieldDelimiter":{},"QuoteCharacter":{},"AllowQuotedRecordDelimiter":{"type":"boolean"}}},"CompressionType":{},"JSON":{"type":"structure","members":{"Type":{}}},"Parquet":{"type":"structure","members":{}}}},"Sfe":{"type":"structure","members":{"CSV":{"type":"structure","members":{"QuoteFields":{},"QuoteEscapeCharacter":{},"RecordDelimiter":{},"FieldDelimiter":{},"QuoteCharacter":{}}},"JSON":{"type":"structure","members":{"RecordDelimiter":{}}}}}},"clientContextParams":{"Accelerate":{"documentation":"Enables this client to use S3 Transfer Acceleration endpoints.","type":"boolean"},"DisableMultiRegionAccessPoints":{"documentation":"Disables this client\'s usage of Multi-Region Access Points.","type":"boolean"},"DisableS3ExpressSessionAuth":{"documentation":"Disables this client\'s usage of Session Auth for S3Express\\n buckets and reverts to using conventional SigV4 for those.","type":"boolean"},"ForcePathStyle":{"documentation":"Forces this client to use path-style addressing for buckets.","type":"boolean"},"UseArnRegion":{"documentation":"Enables this client to use an ARN\'s region when constructing an endpoint instead of the client\'s configured region.","type":"boolean"}}}')},6854:e=>{"use strict";e.exports=JSON.parse('{"o":{"ListBuckets":{"result_key":"Buckets"},"ListDirectoryBuckets":{"input_token":"ContinuationToken","limit_key":"MaxDirectoryBuckets","output_token":"ContinuationToken","result_key":"Buckets"},"ListMultipartUploads":{"input_token":["KeyMarker","UploadIdMarker"],"limit_key":"MaxUploads","more_results":"IsTruncated","output_token":["NextKeyMarker","NextUploadIdMarker"],"result_key":["Uploads","CommonPrefixes"]},"ListObjectVersions":{"input_token":["KeyMarker","VersionIdMarker"],"limit_key":"MaxKeys","more_results":"IsTruncated","output_token":["NextKeyMarker","NextVersionIdMarker"],"result_key":["Versions","DeleteMarkers","CommonPrefixes"]},"ListObjects":{"input_token":"Marker","limit_key":"MaxKeys","more_results":"IsTruncated","output_token":"NextMarker || Contents[-1].Key","result_key":["Contents","CommonPrefixes"]},"ListObjectsV2":{"input_token":"ContinuationToken","limit_key":"MaxKeys","output_token":"NextContinuationToken","result_key":["Contents","CommonPrefixes"]},"ListParts":{"input_token":"PartNumberMarker","limit_key":"MaxParts","more_results":"IsTruncated","output_token":"NextPartNumberMarker","result_key":"Parts"}}}')},318:e=>{"use strict";e.exports=JSON.parse('{"V":{"BucketExists":{"delay":5,"operation":"HeadBucket","maxAttempts":20,"acceptors":[{"expected":200,"matcher":"status","state":"success"},{"expected":301,"matcher":"status","state":"success"},{"expected":403,"matcher":"status","state":"success"},{"expected":404,"matcher":"status","state":"retry"}]},"BucketNotExists":{"delay":5,"operation":"HeadBucket","maxAttempts":20,"acceptors":[{"expected":404,"matcher":"status","state":"success"}]},"ObjectExists":{"delay":5,"operation":"HeadObject","maxAttempts":20,"acceptors":[{"expected":200,"matcher":"status","state":"success"},{"expected":404,"matcher":"status","state":"retry"}]},"ObjectNotExists":{"delay":5,"operation":"HeadObject","maxAttempts":20,"acceptors":[{"expected":404,"matcher":"status","state":"success"}]}}}')},675:e=>{"use strict";e.exports=JSON.parse('{"version":"2.0","metadata":{"apiVersion":"2011-06-15","endpointPrefix":"sts","globalEndpoint":"sts.amazonaws.com","protocol":"query","serviceAbbreviation":"AWS STS","serviceFullName":"AWS Security Token Service","serviceId":"STS","signatureVersion":"v4","uid":"sts-2011-06-15","xmlNamespace":"https://sts.amazonaws.com/doc/2011-06-15/"},"operations":{"AssumeRole":{"input":{"type":"structure","required":["RoleArn","RoleSessionName"],"members":{"RoleArn":{},"RoleSessionName":{},"PolicyArns":{"shape":"S4"},"Policy":{},"DurationSeconds":{"type":"integer"},"Tags":{"shape":"S8"},"TransitiveTagKeys":{"type":"list","member":{}},"ExternalId":{},"SerialNumber":{},"TokenCode":{},"SourceIdentity":{},"ProvidedContexts":{"type":"list","member":{"type":"structure","members":{"ProviderArn":{},"ContextAssertion":{}}}}}},"output":{"resultWrapper":"AssumeRoleResult","type":"structure","members":{"Credentials":{"shape":"Sl"},"AssumedRoleUser":{"shape":"Sq"},"PackedPolicySize":{"type":"integer"},"SourceIdentity":{}}}},"AssumeRoleWithSAML":{"input":{"type":"structure","required":["RoleArn","PrincipalArn","SAMLAssertion"],"members":{"RoleArn":{},"PrincipalArn":{},"SAMLAssertion":{"type":"string","sensitive":true},"PolicyArns":{"shape":"S4"},"Policy":{},"DurationSeconds":{"type":"integer"}}},"output":{"resultWrapper":"AssumeRoleWithSAMLResult","type":"structure","members":{"Credentials":{"shape":"Sl"},"AssumedRoleUser":{"shape":"Sq"},"PackedPolicySize":{"type":"integer"},"Subject":{},"SubjectType":{},"Issuer":{},"Audience":{},"NameQualifier":{},"SourceIdentity":{}}}},"AssumeRoleWithWebIdentity":{"input":{"type":"structure","required":["RoleArn","RoleSessionName","WebIdentityToken"],"members":{"RoleArn":{},"RoleSessionName":{},"WebIdentityToken":{"type":"string","sensitive":true},"ProviderId":{},"PolicyArns":{"shape":"S4"},"Policy":{},"DurationSeconds":{"type":"integer"}}},"output":{"resultWrapper":"AssumeRoleWithWebIdentityResult","type":"structure","members":{"Credentials":{"shape":"Sl"},"SubjectFromWebIdentityToken":{},"AssumedRoleUser":{"shape":"Sq"},"PackedPolicySize":{"type":"integer"},"Provider":{},"Audience":{},"SourceIdentity":{}}}},"DecodeAuthorizationMessage":{"input":{"type":"structure","required":["EncodedMessage"],"members":{"EncodedMessage":{}}},"output":{"resultWrapper":"DecodeAuthorizationMessageResult","type":"structure","members":{"DecodedMessage":{}}}},"GetAccessKeyInfo":{"input":{"type":"structure","required":["AccessKeyId"],"members":{"AccessKeyId":{}}},"output":{"resultWrapper":"GetAccessKeyInfoResult","type":"structure","members":{"Account":{}}}},"GetCallerIdentity":{"input":{"type":"structure","members":{}},"output":{"resultWrapper":"GetCallerIdentityResult","type":"structure","members":{"UserId":{},"Account":{},"Arn":{}}}},"GetFederationToken":{"input":{"type":"structure","required":["Name"],"members":{"Name":{},"Policy":{},"PolicyArns":{"shape":"S4"},"DurationSeconds":{"type":"integer"},"Tags":{"shape":"S8"}}},"output":{"resultWrapper":"GetFederationTokenResult","type":"structure","members":{"Credentials":{"shape":"Sl"},"FederatedUser":{"type":"structure","required":["FederatedUserId","Arn"],"members":{"FederatedUserId":{},"Arn":{}}},"PackedPolicySize":{"type":"integer"}}}},"GetSessionToken":{"input":{"type":"structure","members":{"DurationSeconds":{"type":"integer"},"SerialNumber":{},"TokenCode":{}}},"output":{"resultWrapper":"GetSessionTokenResult","type":"structure","members":{"Credentials":{"shape":"Sl"}}}}},"shapes":{"S4":{"type":"list","member":{"type":"structure","members":{"arn":{}}}},"S8":{"type":"list","member":{"type":"structure","required":["Key","Value"],"members":{"Key":{},"Value":{}}}},"Sl":{"type":"structure","required":["AccessKeyId","SecretAccessKey","SessionToken","Expiration"],"members":{"AccessKeyId":{},"SecretAccessKey":{"type":"string","sensitive":true},"SessionToken":{},"Expiration":{"type":"timestamp"}}},"Sq":{"type":"structure","required":["AssumedRoleId","Arn"],"members":{"AssumedRoleId":{},"Arn":{}}}}}')},3215:e=>{"use strict";e.exports={o:{}}},4260:e=>{"use strict";e.exports=JSON.parse('{"rules":{"*/*":{"endpoint":"{service}.{region}.amazonaws.com"},"cn-*/*":{"endpoint":"{service}.{region}.amazonaws.com.cn"},"us-iso-*/*":"usIso","us-isob-*/*":"usIsob","*/budgets":"globalSSL","*/cloudfront":"globalSSL","*/sts":"globalSSL","*/importexport":{"endpoint":"{service}.amazonaws.com","signatureVersion":"v2","globalEndpoint":true},"*/route53":"globalSSL","cn-*/route53":{"endpoint":"{service}.amazonaws.com.cn","globalEndpoint":true,"signingRegion":"cn-northwest-1"},"us-gov-*/route53":"globalGovCloud","us-iso-*/route53":{"endpoint":"{service}.c2s.ic.gov","globalEndpoint":true,"signingRegion":"us-iso-east-1"},"us-isob-*/route53":{"endpoint":"{service}.sc2s.sgov.gov","globalEndpoint":true,"signingRegion":"us-isob-east-1"},"*/waf":"globalSSL","*/iam":"globalSSL","cn-*/iam":{"endpoint":"{service}.cn-north-1.amazonaws.com.cn","globalEndpoint":true,"signingRegion":"cn-north-1"},"us-iso-*/iam":{"endpoint":"{service}.us-iso-east-1.c2s.ic.gov","globalEndpoint":true,"signingRegion":"us-iso-east-1"},"us-gov-*/iam":"globalGovCloud","*/ce":{"endpoint":"{service}.us-east-1.amazonaws.com","globalEndpoint":true,"signingRegion":"us-east-1"},"cn-*/ce":{"endpoint":"{service}.cn-northwest-1.amazonaws.com.cn","globalEndpoint":true,"signingRegion":"cn-northwest-1"},"us-gov-*/sts":{"endpoint":"{service}.{region}.amazonaws.com"},"us-gov-west-1/s3":"s3signature","us-west-1/s3":"s3signature","us-west-2/s3":"s3signature","eu-west-1/s3":"s3signature","ap-southeast-1/s3":"s3signature","ap-southeast-2/s3":"s3signature","ap-northeast-1/s3":"s3signature","sa-east-1/s3":"s3signature","us-east-1/s3":{"endpoint":"{service}.amazonaws.com","signatureVersion":"s3"},"us-east-1/sdb":{"endpoint":"{service}.amazonaws.com","signatureVersion":"v2"},"*/sdb":{"endpoint":"{service}.{region}.amazonaws.com","signatureVersion":"v2"},"*/resource-explorer-2":"dualstackByDefault","*/kendra-ranking":"dualstackByDefault","*/internetmonitor":"dualstackByDefault","*/codecatalyst":"globalDualstackByDefault"},"fipsRules":{"*/*":"fipsStandard","us-gov-*/*":"fipsStandard","us-iso-*/*":{"endpoint":"{service}-fips.{region}.c2s.ic.gov"},"us-iso-*/dms":"usIso","us-isob-*/*":{"endpoint":"{service}-fips.{region}.sc2s.sgov.gov"},"us-isob-*/dms":"usIsob","cn-*/*":{"endpoint":"{service}-fips.{region}.amazonaws.com.cn"},"*/api.ecr":"fips.api.ecr","*/api.sagemaker":"fips.api.sagemaker","*/batch":"fipsDotPrefix","*/eks":"fipsDotPrefix","*/models.lex":"fips.models.lex","*/runtime.lex":"fips.runtime.lex","*/runtime.sagemaker":{"endpoint":"runtime-fips.sagemaker.{region}.amazonaws.com"},"*/iam":"fipsWithoutRegion","*/route53":"fipsWithoutRegion","*/transcribe":"fipsDotPrefix","*/waf":"fipsWithoutRegion","us-gov-*/transcribe":"fipsDotPrefix","us-gov-*/api.ecr":"fips.api.ecr","us-gov-*/models.lex":"fips.models.lex","us-gov-*/runtime.lex":"fips.runtime.lex","us-gov-*/access-analyzer":"fipsWithServiceOnly","us-gov-*/acm":"fipsWithServiceOnly","us-gov-*/acm-pca":"fipsWithServiceOnly","us-gov-*/api.sagemaker":"fipsWithServiceOnly","us-gov-*/appconfig":"fipsWithServiceOnly","us-gov-*/application-autoscaling":"fipsWithServiceOnly","us-gov-*/autoscaling":"fipsWithServiceOnly","us-gov-*/autoscaling-plans":"fipsWithServiceOnly","us-gov-*/batch":"fipsWithServiceOnly","us-gov-*/cassandra":"fipsWithServiceOnly","us-gov-*/clouddirectory":"fipsWithServiceOnly","us-gov-*/cloudformation":"fipsWithServiceOnly","us-gov-*/cloudshell":"fipsWithServiceOnly","us-gov-*/cloudtrail":"fipsWithServiceOnly","us-gov-*/config":"fipsWithServiceOnly","us-gov-*/connect":"fipsWithServiceOnly","us-gov-*/databrew":"fipsWithServiceOnly","us-gov-*/dlm":"fipsWithServiceOnly","us-gov-*/dms":"fipsWithServiceOnly","us-gov-*/dynamodb":"fipsWithServiceOnly","us-gov-*/ec2":"fipsWithServiceOnly","us-gov-*/eks":"fipsWithServiceOnly","us-gov-*/elasticache":"fipsWithServiceOnly","us-gov-*/elasticbeanstalk":"fipsWithServiceOnly","us-gov-*/elasticloadbalancing":"fipsWithServiceOnly","us-gov-*/elasticmapreduce":"fipsWithServiceOnly","us-gov-*/events":"fipsWithServiceOnly","us-gov-*/fis":"fipsWithServiceOnly","us-gov-*/glacier":"fipsWithServiceOnly","us-gov-*/greengrass":"fipsWithServiceOnly","us-gov-*/guardduty":"fipsWithServiceOnly","us-gov-*/identitystore":"fipsWithServiceOnly","us-gov-*/imagebuilder":"fipsWithServiceOnly","us-gov-*/kafka":"fipsWithServiceOnly","us-gov-*/kinesis":"fipsWithServiceOnly","us-gov-*/logs":"fipsWithServiceOnly","us-gov-*/mediaconvert":"fipsWithServiceOnly","us-gov-*/monitoring":"fipsWithServiceOnly","us-gov-*/networkmanager":"fipsWithServiceOnly","us-gov-*/organizations":"fipsWithServiceOnly","us-gov-*/outposts":"fipsWithServiceOnly","us-gov-*/participant.connect":"fipsWithServiceOnly","us-gov-*/ram":"fipsWithServiceOnly","us-gov-*/rds":"fipsWithServiceOnly","us-gov-*/redshift":"fipsWithServiceOnly","us-gov-*/resource-groups":"fipsWithServiceOnly","us-gov-*/runtime.sagemaker":"fipsWithServiceOnly","us-gov-*/serverlessrepo":"fipsWithServiceOnly","us-gov-*/servicecatalog-appregistry":"fipsWithServiceOnly","us-gov-*/servicequotas":"fipsWithServiceOnly","us-gov-*/sns":"fipsWithServiceOnly","us-gov-*/sqs":"fipsWithServiceOnly","us-gov-*/ssm":"fipsWithServiceOnly","us-gov-*/streams.dynamodb":"fipsWithServiceOnly","us-gov-*/sts":"fipsWithServiceOnly","us-gov-*/support":"fipsWithServiceOnly","us-gov-*/swf":"fipsWithServiceOnly","us-gov-west-1/states":"fipsWithServiceOnly","us-iso-east-1/elasticfilesystem":{"endpoint":"elasticfilesystem-fips.{region}.c2s.ic.gov"},"us-gov-west-1/organizations":"fipsWithServiceOnly","us-gov-west-1/route53":{"endpoint":"route53.us-gov.amazonaws.com"},"*/resource-explorer-2":"fipsDualstackByDefault","*/kendra-ranking":"dualstackByDefault","*/internetmonitor":"dualstackByDefault","*/codecatalyst":"fipsGlobalDualstackByDefault"},"dualstackRules":{"*/*":{"endpoint":"{service}.{region}.api.aws"},"cn-*/*":{"endpoint":"{service}.{region}.api.amazonwebservices.com.cn"},"*/s3":"dualstackLegacy","cn-*/s3":"dualstackLegacyCn","*/s3-control":"dualstackLegacy","cn-*/s3-control":"dualstackLegacyCn","ap-south-1/ec2":"dualstackLegacyEc2","eu-west-1/ec2":"dualstackLegacyEc2","sa-east-1/ec2":"dualstackLegacyEc2","us-east-1/ec2":"dualstackLegacyEc2","us-east-2/ec2":"dualstackLegacyEc2","us-west-2/ec2":"dualstackLegacyEc2"},"dualstackFipsRules":{"*/*":{"endpoint":"{service}-fips.{region}.api.aws"},"cn-*/*":{"endpoint":"{service}-fips.{region}.api.amazonwebservices.com.cn"},"*/s3":"dualstackFipsLegacy","cn-*/s3":"dualstackFipsLegacyCn","*/s3-control":"dualstackFipsLegacy","cn-*/s3-control":"dualstackFipsLegacyCn"},"patterns":{"globalSSL":{"endpoint":"https://{service}.amazonaws.com","globalEndpoint":true,"signingRegion":"us-east-1"},"globalGovCloud":{"endpoint":"{service}.us-gov.amazonaws.com","globalEndpoint":true,"signingRegion":"us-gov-west-1"},"s3signature":{"endpoint":"{service}.{region}.amazonaws.com","signatureVersion":"s3"},"usIso":{"endpoint":"{service}.{region}.c2s.ic.gov"},"usIsob":{"endpoint":"{service}.{region}.sc2s.sgov.gov"},"fipsStandard":{"endpoint":"{service}-fips.{region}.amazonaws.com"},"fipsDotPrefix":{"endpoint":"fips.{service}.{region}.amazonaws.com"},"fipsWithoutRegion":{"endpoint":"{service}-fips.amazonaws.com"},"fips.api.ecr":{"endpoint":"ecr-fips.{region}.amazonaws.com"},"fips.api.sagemaker":{"endpoint":"api-fips.sagemaker.{region}.amazonaws.com"},"fips.models.lex":{"endpoint":"models-fips.lex.{region}.amazonaws.com"},"fips.runtime.lex":{"endpoint":"runtime-fips.lex.{region}.amazonaws.com"},"fipsWithServiceOnly":{"endpoint":"{service}.{region}.amazonaws.com"},"dualstackLegacy":{"endpoint":"{service}.dualstack.{region}.amazonaws.com"},"dualstackLegacyCn":{"endpoint":"{service}.dualstack.{region}.amazonaws.com.cn"},"dualstackFipsLegacy":{"endpoint":"{service}-fips.dualstack.{region}.amazonaws.com"},"dualstackFipsLegacyCn":{"endpoint":"{service}-fips.dualstack.{region}.amazonaws.com.cn"},"dualstackLegacyEc2":{"endpoint":"api.ec2.{region}.aws"},"dualstackByDefault":{"endpoint":"{service}.{region}.api.aws"},"fipsDualstackByDefault":{"endpoint":"{service}-fips.{region}.api.aws"},"globalDualstackByDefault":{"endpoint":"{service}.global.api.aws"},"fipsGlobalDualstackByDefault":{"endpoint":"{service}-fips.global.api.aws"}}}')},4981:e=>{"use strict";e.exports=JSON.parse('{"fivehundredpix":{"icon":"M42.9,27.6c-2.1,0-3.6,1-5.8,3.5c-1.9-2.5-3.8-3.5-5.8-3.5c-1.7,0-3.7,0.7-4.7,3.2 c-1-2-2.7-2.6-4.1-2.6c-1,0-2,0.2-2.9,1.1l0.6-3.3h6.2v-2.5h-8.4l-1.5,8v0.2h2.7c0.6-1,1.5-1.2,2.3-1.2c1.2,0,2.3,0.6,2.6,2.4v0.7 c-0.2,1.6-1.3,2.6-2.6,2.6c-1.1,0-2.3-0.6-2.4-2.2h-3v0.7c0,0.3,0.5,1.5,0.5,1.6c1.3,2.1,3.4,2.5,5,2.5c1.8,0,3.9-0.7,5.1-3.2 c1.1,2.4,3,3.1,4.8,3.1c2.1,0,3.5-0.9,5.7-3.3c1.9,2.3,3.7,3.3,5.7,3.3c3.4,0,5.1-2.6,5.1-5.6C48,30,46.2,27.6,42.9,27.6z M34.7,33.7c-0.4,0.4-1,0.9-1.4,1.1c-0.7,0.4-1.3,0.6-1.9,0.6c-0.6,0-1.7-0.4-2.1-1.3c-0.1-0.2-0.2-0.6-0.2-0.7v-0.9 c0.3-1.5,1.1-2.1,2.2-2.1c0.1,0,0.6,0,0.9,0.1c0.4,0.1,0.7,0.3,1.1,0.6c0.4,0.3,2,1.6,2,1.8C35.3,33.2,34.9,33.5,34.7,33.7z M42.9,35.5c-1.3,0-2.6-0.9-3.9-2.3c1.4-1.5,2.5-2.6,3.8-2.6c1.5,0,2.3,1.1,2.3,2.5C45.2,34.4,44.4,35.5,42.9,35.5z","mask":"M33.3,31.3c-0.4-0.2-0.7-0.4-1.1-0.6c-0.3-0.1-0.8-0.1-0.9-0.1c-1.1,0-1.9,0.6-2.2,2.1v0.9c0,0.1,0.1,0.4,0.2,0.7 c0.3,0.9,1.4,1.3,2.1,1.3s1.2-0.2,1.9-0.6c0.5-0.3,1-0.7,1.4-1.1c0.2-0.2,0.5-0.5,0.5-0.6C35.3,32.8,33.7,31.6,33.3,31.3z M42.8,30.6c-1.3,0-2.4,1-3.8,2.6c1.3,1.5,2.6,2.3,3.9,2.3c1.5,0,2.2-1.1,2.2-2.4C45.2,31.7,44.3,30.6,42.8,30.6z M0,0v64h64V0H0z M42.9,38.5c-2,0-3.8-1-5.7-3.3c-2.2,2.4-3.7,3.3-5.7,3.3c-1.8,0-3.7-0.7-4.8-3.1c-1.2,2.5-3.3,3.2-5.1,3.2c-1.6,0-3.8-0.4-5-2.5 C16.5,36,16,34.8,16,34.5v-0.7h3c0.1,1.6,1.3,2.2,2.4,2.2c1.3,0,2.4-0.9,2.6-2.6v-0.7c-0.2-1.8-1.3-2.4-2.6-2.4 c-0.8,0-1.6,0.2-2.3,1.2h-2.7v-0.2l1.5-8h8.4v2.5h-6.2l-0.6,3.3c1-0.9,2-1.1,2.9-1.1c1.4,0,3.2,0.6,4.1,2.6c1-2.4,3-3.2,4.7-3.2 c2,0,3.9,1,5.8,3.5c2.1-2.6,3.7-3.5,5.8-3.5c3.3,0,5.1,2.4,5.1,5.4C48,35.9,46.2,38.5,42.9,38.5z","color":"#222222"},"bandsintown":{"icon":"M25.8,39.3h13.4v1.1H24.7V18h-5.6v28h25.8V33.7h-19V39.3z M31.4,24.7h-5.6v7.8h5.6V24.7z M38.2,24.7h-5.6v7.8h5.6V24.7z M39.3,18v14.6h5.6V18H39.3z","mask":"M0,0v64h64V0H0z M32.6,24.7h5.6v7.8h-5.6V24.7z M25.8,24.7h5.6v7.8h-5.6V24.7z M44.9,46H19.1V18h5.6v22.4h14.6 v-1.1H25.8v-5.6h19V46z M44.9,32.6h-5.6V18h5.6V32.6z","color":"#1B8793"},"behance":{"icon":"M29.1,31c0.8-0.4,1.5-0.9,1.9-1.5c0.4-0.6,0.6-1.4,0.6-2.3c0-0.9-0.1-1.6-0.4-2.2 c-0.3-0.6-0.7-1.1-1.2-1.4c-0.5-0.4-1.1-0.6-1.9-0.8c-0.7-0.2-1.5-0.2-2.4-0.2H17v18.5h8.9c0.8,0,1.6-0.1,2.4-0.3 c0.8-0.2,1.5-0.5,2.1-1c0.6-0.4,1.1-1,1.5-1.7c0.4-0.7,0.5-1.5,0.5-2.4c0-1.2-0.3-2.1-0.8-3C31.1,31.9,30.2,31.3,29.1,31z M21.1,25.7h3.8c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.2,0.9,0.3c0.3,0.2,0.5,0.4,0.6,0.6c0.2,0.3,0.2,0.6,0.2,1.1c0,0.8-0.2,1.3-0.7,1.7 c-0.5,0.3-1.1,0.5-1.8,0.5h-4.1V25.7z M28.2,36.7c-0.2,0.3-0.4,0.6-0.7,0.7c-0.3,0.2-0.6,0.3-1,0.4c-0.4,0.1-0.7,0.1-1.1,0.1h-4.3 v-5.1h4.4c0.9,0,1.6,0.2,2.1,0.6c0.5,0.4,0.8,1.1,0.8,2C28.4,36,28.3,36.4,28.2,36.7z M46.7,32.3c-0.2-0.9-0.6-1.8-1.2-2.5 C45,29,44.3,28.4,43.5,28c-0.8-0.4-1.8-0.7-3-0.7c-1,0-1.9,0.2-2.8,0.5c-0.8,0.4-1.6,0.9-2.2,1.5c-0.6,0.6-1.1,1.4-1.4,2.2 c-0.3,0.9-0.5,1.8-0.5,2.8c0,1,0.2,2,0.5,2.8c0.3,0.9,0.8,1.6,1.4,2.2c0.6,0.6,1.3,1.1,2.2,1.4c0.9,0.3,1.8,0.5,2.9,0.5 c1.5,0,2.8-0.3,3.9-1c1.1-0.7,1.9-1.8,2.4-3.4h-3.2c-0.1,0.4-0.4,0.8-1,1.2c-0.5,0.4-1.2,0.6-1.9,0.6c-1,0-1.8-0.3-2.4-0.8 c-0.6-0.5-0.9-1.5-0.9-2.6H47C47,34.2,47,33.2,46.7,32.3z M37.3,32.9c0-0.3,0.1-0.6,0.2-0.9c0.1-0.3,0.3-0.6,0.5-0.9 c0.2-0.3,0.5-0.5,0.9-0.7c0.4-0.2,0.9-0.3,1.5-0.3c0.9,0,1.6,0.3,2.1,0.7c0.4,0.5,0.8,1.2,0.8,2.1H37.3z M44.1,23.8h-7.5v1.8h7.5 V23.8z","mask":"M40.4,30.1c-0.6,0-1.1,0.1-1.5,0.3c-0.4,0.2-0.7,0.4-0.9,0.7c-0.2,0.3-0.4,0.6-0.5,0.9c-0.1,0.3-0.2,0.6-0.2,0.9 h6c-0.1-0.9-0.4-1.6-0.8-2.1C42,30.3,41.3,30.1,40.4,30.1z M25.5,32.8h-4.4v5.1h4.3c0.4,0,0.8,0,1.1-0.1c0.4-0.1,0.7-0.2,1-0.4 c0.3-0.2,0.5-0.4,0.7-0.7c0.2-0.3,0.2-0.7,0.2-1.2c0-1-0.3-1.6-0.8-2C27.1,33,26.4,32.8,25.5,32.8z M27,29.5 c0.5-0.3,0.7-0.9,0.7-1.7c0-0.4-0.1-0.8-0.2-1.1c-0.2-0.3-0.4-0.5-0.6-0.6c-0.3-0.2-0.6-0.3-0.9-0.3c-0.3-0.1-0.7-0.1-1-0.1h-3.8 v4.3h4.1C25.9,30.1,26.5,29.9,27,29.5z M0,0v64h64V0H0z M36.6,23.8h7.5v1.8h-7.5V23.8z M31.9,38.1c-0.4,0.7-0.9,1.2-1.5,1.7 c-0.6,0.4-1.3,0.8-2.1,1c-0.8,0.2-1.6,0.3-2.4,0.3H17V22.6h8.7c0.9,0,1.7,0.1,2.4,0.2c0.7,0.2,1.3,0.4,1.9,0.8 c0.5,0.4,0.9,0.8,1.2,1.4c0.3,0.6,0.4,1.3,0.4,2.2c0,0.9-0.2,1.7-0.6,2.3c-0.4,0.6-1,1.1-1.9,1.5c1.1,0.3,2,0.9,2.5,1.7 c0.6,0.8,0.8,1.8,0.8,3C32.5,36.6,32.3,37.4,31.9,38.1z M47,35.3h-9.6c0,1.1,0.4,2.1,0.9,2.6c0.5,0.5,1.3,0.8,2.4,0.8 c0.7,0,1.4-0.2,1.9-0.6c0.5-0.4,0.9-0.8,1-1.2h3.2c-0.5,1.6-1.3,2.8-2.4,3.4c-1.1,0.7-2.4,1-3.9,1c-1.1,0-2-0.2-2.9-0.5 c-0.8-0.3-1.6-0.8-2.2-1.4c-0.6-0.6-1-1.4-1.4-2.2c-0.3-0.9-0.5-1.8-0.5-2.8c0-1,0.2-1.9,0.5-2.8c0.3-0.9,0.8-1.6,1.4-2.2 c0.6-0.6,1.3-1.1,2.2-1.5c0.8-0.4,1.8-0.5,2.8-0.5c1.1,0,2.1,0.2,3,0.7c0.8,0.4,1.5,1,2.1,1.8c0.5,0.7,0.9,1.6,1.2,2.5 C47,33.2,47,34.2,47,35.3z","color":"#007CFF"},"codepen":{"icon":"M24.4,35l6.8,4.5v-4L27.4,33L24.4,35z M23.8,30.6v2.7l2.1-1.4L23.8,30.6z M31.2,28.5v-4L24.4,29 l3,2L31.2,28.5z M39.6,29l-6.8-4.5v4l3.7,2.5L39.6,29z M32,30l-3,2l3,2l3-2L32,30z M32,16c-8.8,0-16,7.2-16,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C48,23.2,40.8,16,32,16z M41.9,35.1c0,0.3-0.1,0.6-0.4,0.7l-9.1,5.9c-0.3,0.2-0.6,0.2-0.9,0l-9.1-5.9 c-0.2-0.2-0.4-0.4-0.4-0.7v-6.2c0-0.3,0.1-0.6,0.4-0.7l9.1-5.9c0.3-0.2,0.6-0.2,0.9,0l9.1,5.9c0.2,0.2,0.4,0.4,0.4,0.7V35.1z M32.8,35.5v4l6.8-4.5l-3-2L32.8,35.5z M40.2,33.4v-2.7L38.1,32L40.2,33.4z","mask":"M0,0v64h64V0H0z M32,48c-8.8,0-16-7.2-16-16c0-8.8,7.2-16,16-16s16,7.2,16,16C48,40.8,40.8,48,32,48z M32.5,22.3 c-0.3-0.2-0.6-0.2-0.9,0l-9.1,5.9c-0.2,0.2-0.4,0.4-0.4,0.7v6.2c0,0.3,0.1,0.6,0.4,0.7l9.1,5.9c0.3,0.2,0.6,0.2,0.9,0l9.1-5.9 c0.2-0.2,0.4-0.4,0.4-0.7v-6.2c0-0.3-0.1-0.6-0.4-0.7L32.5,22.3z M32.8,24.5l6.8,4.5l-3,2l-3.7-2.5V24.5z M31.2,24.5v4L27.4,31l-3-2 L31.2,24.5z M23.8,30.6l2.1,1.4l-2.1,1.4V30.6z M31.2,39.5L24.4,35l3-2l3.7,2.5V39.5z M32,34l-3-2l3-2l3,2L32,34z M32.8,39.5v-4 l3.7-2.5l3,2L32.8,39.5z M40.2,33.4L38.1,32l2.1-1.4V33.4z","color":"##151515"},"dribbble":{"icon":"M32,48c-8.8,0-16-7.2-16-16s7.2-16,16-16 s16,7.2,16,16S40.8,48,32,48z M45.5,34.2C45,34,41.3,32.9,37,33.6c1.8,4.9,2.5,8.9,2.7,9.7C42.7,41.3,44.9,38,45.5,34.2z M37.3,44.6 c-0.2-1.2-1-5.4-2.9-10.4c0,0-0.1,0-0.1,0c-7.7,2.7-10.5,8-10.7,8.5c2.3,1.8,5.2,2.9,8.4,2.9C33.9,45.7,35.7,45.3,37.3,44.6z M21.8,41.2c0.3-0.5,4.1-6.7,11.1-9c0.2-0.1,0.4-0.1,0.5-0.2c-0.3-0.8-0.7-1.6-1.1-2.3c-6.8,2-13.4,2-14,1.9c0,0.1,0,0.3,0,0.4 C18.3,35.5,19.7,38.7,21.8,41.2z M18.6,29.2c0.6,0,6.2,0,12.6-1.7c-2.3-4-4.7-7.4-5.1-7.9C22.4,21.5,19.5,25,18.6,29.2z M28.8,18.7 c0.4,0.5,2.9,3.9,5.1,8c4.9-1.8,6.9-4.6,7.2-4.9c-2.4-2.1-5.6-3.4-9.1-3.4C30.9,18.4,29.8,18.5,28.8,18.7z M42.6,23.4 c-0.3,0.4-2.6,3.3-7.6,5.4c0.3,0.7,0.6,1.3,0.9,2c0.1,0.2,0.2,0.5,0.3,0.7c4.5-0.6,9.1,0.3,9.5,0.4C45.6,28.7,44.5,25.7,42.6,23.4z","mask":"M34.3,34.3c-7.7,2.7-10.5,8-10.7,8.5c2.3,1.8,5.2,2.9,8.4,2.9c1.9,0,3.7-0.4,5.3-1.1 C37.1,43.4,36.3,39.2,34.3,34.3C34.4,34.2,34.4,34.3,34.3,34.3z M31.3,27.6c-2.3-4-4.7-7.4-5.1-7.9c-3.8,1.8-6.7,5.3-7.6,9.6 C19.2,29.2,24.9,29.3,31.3,27.6z M33,32.1c0.2-0.1,0.4-0.1,0.5-0.2c-0.3-0.8-0.7-1.6-1.1-2.3c-6.8,2-13.4,2-14,1.9 c0,0.1,0,0.3,0,0.4c0,3.5,1.3,6.7,3.5,9.1C22.2,40.6,25.9,34.4,33,32.1z M41.1,21.8c-2.4-2.1-5.6-3.4-9.1-3.4 c-1.1,0-2.2,0.1-3.2,0.4c0.4,0.5,2.9,3.9,5.1,8C38.8,24.9,40.8,22.1,41.1,21.8z M34.9,28.8c0.3,0.7,0.6,1.3,0.9,2 c0.1,0.2,0.2,0.5,0.3,0.7c4.5-0.6,9.1,0.3,9.5,0.4c0-3.2-1.2-6.2-3.1-8.5C42.3,23.8,40,26.7,34.9,28.8z M37,33.6 c1.8,4.9,2.5,8.9,2.7,9.7c3.1-2.1,5.2-5.4,5.9-9.2C45,34,41.3,32.9,37,33.6z M0,0v64h64V0H0z M32,48c-8.8,0-16-7.2-16-16 s7.2-16,16-16s16,7.2,16,16S40.8,48,32,48z","color":"#ea4c89"},"dropbox":{"icon":"M25.4,17.1L16,23.3l6.5,5.2l9.5-5.9L25.4,17.1z M16,33.7l9.4,6.1l6.6-5.5l-9.5-5.9L16,33.7z M32,34.3l6.6,5.5l9.4-6.1l-6.5-5.2L32,34.3z M48,23.3l-9.4-6.1L32,22.6l9.5,5.9L48,23.3z M32,35.5L25.4,41l-2.8-1.8v2.1l9.4,5.7 l9.4-5.7v-2.1L38.6,41L32,35.5z","mask":"M0,0v64h64V0H0z M41.5,41.2L32,46.9l-9.4-5.7v-2.1l2.8,1.8l6.6-5.5l6.6,5.5l2.8-1.8V41.2z M48,33.7l-9.4,6.1 L32,34.3l-6.6,5.5L16,33.7l6.5-5.2L16,23.3l9.4-6.1l6.6,5.5l6.6-5.5l9.4,6.1l-6.5,5.2L48,33.7z M22.5,28.5l9.5,5.9l9.5-5.9L32,22.6 L22.5,28.5z","color":"#1081DE"},"email":{"icon":"M17,22v20h30V22H17z M41.1,25L32,32.1L22.9,25H41.1z M20,39V26.6l12,9.3l12-9.3V39H20z","mask":"M41.1,25H22.9l9.1,7.1L41.1,25z M44,26.6l-12,9.3l-12-9.3V39h24V26.6z M0,0v64h64V0H0z M47,42H17V22h30V42z","color":"#7f7f7f"},"facebook":{"icon":"M34.1,47V33.3h4.6l0.7-5.3h-5.3v-3.4c0-1.5,0.4-2.6,2.6-2.6l2.8,0v-4.8c-0.5-0.1-2.2-0.2-4.1-0.2 c-4.1,0-6.9,2.5-6.9,7V28H24v5.3h4.6V47H34.1z","mask":"M0,0v64h64V0H0z M39.6,22l-2.8,0c-2.2,0-2.6,1.1-2.6,2.6V28h5.3l-0.7,5.3h-4.6V47h-5.5V33.3H24V28h4.6V24 c0-4.6,2.8-7,6.9-7c2,0,3.6,0.1,4.1,0.2V22z","color":"#3b5998"},"flickr":{"icon":"M32,16c-8.8,0-16,7.2-16,16s7.2,16,16,16s16-7.2,16-16S40.8,16,32,16z M26,37c-2.8,0-5-2.2-5-5 s2.2-5,5-5s5,2.2,5,5S28.8,37,26,37z M38,37c-2.8,0-5-2.2-5-5s2.2-5,5-5s5,2.2,5,5S40.8,37,38,37z","mask":"M38,27c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S40.8,27,38,27z M0,0v64h64V0H0z M32,48c-8.8,0-16-7.2-16-16 s7.2-16,16-16s16,7.2,16,16S40.8,48,32,48z M26,27c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S28.8,27,26,27z","color":"#0063db"},"foursquare":{"icon":"M41.5,17c0,0-14.3,0-16.5,0c-2.3,0-3,1.7-3,2.8c0,1.1,0,26.3,0,26.3c0,1.2,0.7,1.7,1,1.8 c0.4,0.1,1.4,0.3,2-0.4c0,0,7.8-9.1,7.9-9.2c0.2-0.2,0.2-0.2,0.4-0.2c0.4,0,3.4,0,5.1,0c2.1,0,2.5-1.5,2.7-2.4 c0.2-0.7,2.3-11.3,2.9-14.7C44.6,18.4,43.9,17,41.5,17z M41.1,35.7c0.2-0.7,2.3-11.3,2.9-14.7 M40.5,21.5l-0.7,3.6 c-0.1,0.4-0.6,0.8-1,0.8c-0.5,0-6.4,0-6.4,0c-0.7,0-1.2,0.5-1.2,1.2v0.8c0,0.7,0.5,1.2,1.2,1.2c0,0,5,0,5.5,0c0.5,0,1,0.6,0.9,1.1 c-0.1,0.5-0.6,3.3-0.7,3.6c-0.1,0.3-0.4,0.8-1,0.8c-0.5,0-4.5,0-4.5,0c-0.8,0-1.1,0.1-1.6,0.8c-0.5,0.7-5.4,6.5-5.4,6.5 c0,0.1-0.1,0-0.1,0V21.4c0-0.5,0.4-1,1-1c0,0,12.8,0,13.3,0C40.2,20.4,40.6,20.9,40.5,21.5z","mask":"M39.7,20.4c-0.5,0-13.3,0-13.3,0c-0.6,0-1,0.5-1,1v20.5c0,0.1,0,0.1,0.1,0c0,0,4.9-5.9,5.4-6.5 c0.5-0.7,0.8-0.8,1.6-0.8c0,0,3.9,0,4.5,0c0.6,0,1-0.5,1-0.8c0.1-0.3,0.6-3,0.7-3.6c0.1-0.5-0.4-1.1-0.9-1.1c-0.5,0-5.5,0-5.5,0 c-0.7,0-1.2-0.5-1.2-1.2v-0.8c0-0.7,0.5-1.2,1.2-1.2c0,0,6,0,6.4,0c0.5,0,0.9-0.4,1-0.8l0.7-3.6C40.6,20.9,40.2,20.4,39.7,20.4z M0,0v64h64V0H0z M44,20.9l-1,5.2c-0.8,4.2-1.8,9-1.9,9.5c-0.2,0.9-0.6,2.4-2.7,2.4h-5.1c-0.2,0-0.2,0-0.4,0.2 c-0.1,0.1-7.9,9.2-7.9,9.2c-0.6,0.7-1.6,0.6-2,0.4c-0.4-0.1-1-0.6-1-1.8c0,0,0-25.2,0-26.3c0-1.1,0.7-2.8,3-2.8c2.3,0,16.5,0,16.5,0 C43.9,17,44.6,18.4,44,20.9z","color":"#0072b1"},"github":{"icon":"M32,16c-8.8,0-16,7.2-16,16c0,7.1,4.6,13.1,10.9,15.2 c0.8,0.1,1.1-0.3,1.1-0.8c0-0.4,0-1.4,0-2.7c-4.5,1-5.4-2.1-5.4-2.1c-0.7-1.8-1.8-2.3-1.8-2.3c-1.5-1,0.1-1,0.1-1 c1.6,0.1,2.5,1.6,2.5,1.6c1.4,2.4,3.7,1.7,4.7,1.3c0.1-1,0.6-1.7,1-2.1c-3.6-0.4-7.3-1.8-7.3-7.9c0-1.7,0.6-3.2,1.6-4.3 c-0.2-0.4-0.7-2,0.2-4.2c0,0,1.3-0.4,4.4,1.6c1.3-0.4,2.6-0.5,4-0.5c1.4,0,2.7,0.2,4,0.5c3.1-2.1,4.4-1.6,4.4-1.6 c0.9,2.2,0.3,3.8,0.2,4.2c1,1.1,1.6,2.5,1.6,4.3c0,6.1-3.7,7.5-7.3,7.9c0.6,0.5,1.1,1.5,1.1,3c0,2.1,0,3.9,0,4.4 c0,0.4,0.3,0.9,1.1,0.8C43.4,45.1,48,39.1,48,32C48,23.2,40.8,16,32,16z","mask":"M0,0v64h64V0H0z M37.1,47.2c-0.8,0.2-1.1-0.3-1.1-0.8c0-0.5,0-2.3,0-4.4c0-1.5-0.5-2.5-1.1-3 c3.6-0.4,7.3-1.7,7.3-7.9c0-1.7-0.6-3.2-1.6-4.3c0.2-0.4,0.7-2-0.2-4.2c0,0-1.3-0.4-4.4,1.6c-1.3-0.4-2.6-0.5-4-0.5 c-1.4,0-2.7,0.2-4,0.5c-3.1-2.1-4.4-1.6-4.4-1.6c-0.9,2.2-0.3,3.8-0.2,4.2c-1,1.1-1.6,2.5-1.6,4.3c0,6.1,3.7,7.5,7.3,7.9 c-0.5,0.4-0.9,1.1-1,2.1c-0.9,0.4-3.2,1.1-4.7-1.3c0,0-0.8-1.5-2.5-1.6c0,0-1.6,0-0.1,1c0,0,1,0.5,1.8,2.3c0,0,0.9,3.1,5.4,2.1 c0,1.3,0,2.3,0,2.7c0,0.4-0.3,0.9-1.1,0.8C20.6,45.1,16,39.1,16,32c0-8.8,7.2-16,16-16c8.8,0,16,7.2,16,16 C48,39.1,43.4,45.1,37.1,47.2z","color":"#4183c4"},"google_play":{"icon":"M24.4,45.6l16-8.8l-3.6-3.6L24.4,45.6z M22.2,18.5c-0.1,0.2-0.2,0.5-0.2,0.9v25.1 c0,0.4,0.1,0.6,0.2,0.9L35.6,32L22.2,18.5z M47.1,30.8L42.1,28L38.1,32l4,4l5-2.8C48.3,32.5,48.3,31.4,47.1,30.8z M40.4,27.1 l-15.9-8.8l12.3,12.3L40.4,27.1z","mask":"M0,0v64h64V0H0z M40.4,27.1l-3.6,3.6L24.5,18.4L40.4,27.1z M22,44.5V19.4c0-0.4,0.1-0.7,0.2-0.9L35.6,32 L22.2,45.4C22.1,45.2,22,44.9,22,44.5z M24.4,45.6l12.4-12.4l3.6,3.6L24.4,45.6z M47.1,33.2l-5,2.8l-4-4l3.9-3.9l5.1,2.8 C48.3,31.4,48.3,32.5,47.1,33.2z","color":"#40BBC1"},"google":{"icon":"M35.4,17h-8c-1.1,0-2.2,0.1-3.4,0.4 c-1.2,0.3-2.4,0.9-3.5,1.8c-1.7,1.6-2.5,3.4-2.5,5.4c0,1.6,0.6,3.1,1.8,4.3c1.1,1.3,2.7,2,4.9,2c0.4,0,0.8,0,1.3-0.1 c-0.1,0.2-0.2,0.4-0.2,0.7c-0.1,0.2-0.2,0.5-0.2,0.9c0,0.6,0.1,1.1,0.4,1.5c0.2,0.4,0.5,0.8,0.8,1.2c-0.9,0-2.1,0.1-3.5,0.4 c-1.4,0.2-2.8,0.7-4.1,1.5c-1.2,0.7-1.9,1.5-2.4,2.4c-0.5,0.9-0.7,1.7-0.7,2.5c0,1.5,0.7,2.8,2.1,3.9c1.4,1.2,3.5,1.8,6.3,1.8 c3.3-0.1,5.9-0.9,7.7-2.4c1.7-1.5,2.6-3.2,2.6-5.2c0-1.4-0.3-2.5-0.9-3.3c-0.6-0.8-1.4-1.6-2.2-2.3l-1.4-1.1 c-0.2-0.2-0.4-0.4-0.6-0.7c-0.2-0.3-0.4-0.6-0.4-1c0-0.4,0.1-0.8,0.4-1.1c0.2-0.3,0.4-0.6,0.7-0.8c0.4-0.4,0.8-0.7,1.2-1.1 c0.3-0.4,0.6-0.7,0.9-1.2c0.6-0.9,0.9-2,0.9-3.4c0-0.8-0.1-1.5-0.3-2.1c-0.2-0.6-0.5-1.1-0.7-1.5c-0.3-0.5-0.6-0.8-0.9-1.2 c-0.3-0.3-0.6-0.5-0.8-0.7H33L35.4,17z M31,38.9c0.7,0.8,1,1.6,1,2.7c0,1.3-0.5,2.3-1.5,3.1c-1,0.8-2.4,1.2-4.3,1.3 c-2.1,0-3.8-0.5-5-1.4c-1.3-0.9-1.9-2.1-1.9-3.5c0-0.7,0.1-1.3,0.4-1.8c0.3-0.5,0.6-0.9,0.9-1.2c0.4-0.3,0.8-0.6,1.1-0.7 c0.4-0.2,0.7-0.3,0.9-0.4c0.9-0.3,1.7-0.5,2.5-0.6c0.8-0.1,1.4-0.1,1.6-0.1c0.3,0,0.6,0,0.9,0C29.2,37.3,30.3,38.2,31,38.9z M29.7,27.1c-0.1,0.5-0.3,1.1-0.7,1.6c-0.7,0.7-1.6,1.1-2.6,1.1c-0.8,0-1.6-0.3-2.2-0.8c-0.6-0.5-1.2-1.1-1.6-1.9 c-0.8-1.6-1.3-3.1-1.3-4.5c0-1.1,0.3-2.1,0.9-3c0.7-0.9,1.6-1.3,2.7-1.3c0.8,0,1.5,0.3,2.2,0.7c0.6,0.5,1.1,1.1,1.5,1.9 c0.8,1.6,1.2,3.2,1.2,4.8C29.8,26.1,29.8,26.5,29.7,27.1z M43.7,29.5v-4.3h-2.5v4.3H37V32h4.2v4.2h2.5V32H48v-2.5H43.7z","mask":"M0,0v64h64V0H0z M31.3,19.1c0.3,0.3,0.6,0.7,0.9,1.2c0.3,0.4,0.5,0.9,0.7,1.5c0.2,0.6,0.3,1.3,0.3,2.1 c0,1.4-0.3,2.6-0.9,3.4c-0.3,0.4-0.6,0.8-0.9,1.2c-0.4,0.4-0.8,0.7-1.2,1.1c-0.2,0.2-0.5,0.5-0.7,0.8c-0.2,0.3-0.4,0.7-0.4,1.1 c0,0.4,0.1,0.8,0.4,1c0.2,0.3,0.4,0.5,0.6,0.7l1.4,1.1c0.8,0.7,1.6,1.5,2.2,2.3c0.6,0.8,0.9,2,0.9,3.3c0,1.9-0.9,3.7-2.6,5.2 c-1.8,1.6-4.3,2.4-7.7,2.4c-2.8,0-4.9-0.6-6.3-1.8c-1.4-1.1-2.1-2.4-2.1-3.9c0-0.7,0.2-1.6,0.7-2.5c0.4-0.9,1.2-1.7,2.4-2.4 c1.3-0.7,2.7-1.2,4.1-1.5c1.4-0.2,2.6-0.3,3.5-0.4c-0.3-0.4-0.5-0.8-0.8-1.2c-0.3-0.4-0.4-0.9-0.4-1.5c0-0.4,0-0.6,0.2-0.9 c0.1-0.2,0.2-0.5,0.2-0.7c-0.5,0.1-0.9,0.1-1.3,0.1c-2.1,0-3.8-0.7-4.9-2c-1.2-1.2-1.8-2.7-1.8-4.3c0-2,0.8-3.8,2.5-5.4 c1.1-0.9,2.3-1.6,3.5-1.8c1.2-0.2,2.3-0.4,3.4-0.4h8L33,18.4h-2.5C30.7,18.6,31,18.8,31.3,19.1z M48,32h-4.3v4.2h-2.5V32H37v-2.5 h4.2v-4.3h2.5v4.3H48V32z M27.1,19.1c-0.6-0.5-1.4-0.7-2.2-0.7c-1.1,0-2,0.5-2.7,1.3c-0.6,0.9-0.9,1.9-0.9,3c0,1.5,0.4,3,1.3,4.5 c0.4,0.7,0.9,1.4,1.6,1.9c0.6,0.5,1.4,0.8,2.2,0.8c1.1,0,1.9-0.4,2.6-1.1c0.3-0.5,0.6-1,0.7-1.6c0.1-0.5,0.1-1,0.1-1.4 c0-1.6-0.4-3.2-1.2-4.8C28.2,20.2,27.7,19.5,27.1,19.1z M26.9,36.2c-0.2,0-0.7,0-1.6,0.1c-0.8,0.1-1.7,0.3-2.5,0.6 c-0.2,0.1-0.5,0.2-0.9,0.4c-0.4,0.2-0.7,0.4-1.1,0.7c-0.4,0.3-0.7,0.7-0.9,1.2c-0.3,0.5-0.4,1.1-0.4,1.8c0,1.4,0.6,2.6,1.9,3.5 c1.2,0.9,2.9,1.4,5,1.4c1.9,0,3.3-0.4,4.3-1.3c1-0.8,1.5-1.8,1.5-3.1c0-1-0.3-1.9-1-2.7c-0.7-0.7-1.8-1.6-3.3-2.6 C27.5,36.2,27.2,36.2,26.9,36.2z","color":"#dd4b39"},"instagram":{"icon":"M43.5,29.7h-2.6c0.2,0.7,0.3,1.5,0.3,2.3 c0,5.1-4.1,9.2-9.2,9.2c-5.1,0-9.2-4.1-9.2-9.2c0-0.8,0.1-1.6,0.3-2.3h-2.6v12.7c0,0.6,0.5,1.2,1.2,1.2h20.8c0.6,0,1.2-0.5,1.2-1.2 V29.7z M43.5,21.6c0-0.6-0.5-1.2-1.2-1.2h-3.5c-0.6,0-1.2,0.5-1.2,1.2v3.5c0,0.6,0.5,1.2,1.2,1.2h3.5c0.6,0,1.2-0.5,1.2-1.2V21.6z M32,26.2c-3.2,0-5.8,2.6-5.8,5.8c0,3.2,2.6,5.8,5.8,5.8s5.8-2.6,5.8-5.8C37.8,28.8,35.2,26.2,32,26.2 M43.5,47H20.5 c-1.9,0-3.5-1.6-3.5-3.5V20.5c0-1.9,1.5-3.5,3.5-3.5h23.1c1.9,0,3.5,1.5,3.5,3.5v23.1C47,45.4,45.5,47,43.5,47","mask":"M41.2,32c0,5.1-4.1,9.2-9.2,9.2c-5.1,0-9.2-4.1-9.2-9.2c0-0.8,0.1-1.6,0.3-2.3h-2.6v12.7c0,0.6,0.5,1.2,1.2,1.2 h20.8c0.6,0,1.2-0.5,1.2-1.2V29.7h-2.6C41.1,30.4,41.2,31.2,41.2,32z M32,37.8c3.2,0,5.8-2.6,5.8-5.8c0-3.2-2.6-5.8-5.8-5.8 c-3.2,0-5.8,2.6-5.8,5.8C26.2,35.2,28.8,37.8,32,37.8z M42.4,20.5h-3.5c-0.6,0-1.2,0.5-1.2,1.2v3.5c0,0.6,0.5,1.2,1.2,1.2h3.5 c0.6,0,1.2-0.5,1.2-1.2v-3.5C43.5,21,43,20.5,42.4,20.5z M0,0v64h64V0H0z M47,43.5c0,1.9-1.5,3.5-3.5,3.5H20.5 c-1.9,0-3.5-1.6-3.5-3.5V20.5c0-1.9,1.5-3.5,3.5-3.5h23.1c1.9,0,3.5,1.5,3.5,3.5V43.5z","color":"#3f729b"},"itunes":{"icon":"M41.1,17c-0.1,0-0.2,0-0.3,0l-14.7,3c-0.6,0.1-1.1,0.7-1.1,1.4v17.6c0,0.8-0.6,1.4-1.4,1.4 h-2.8c-1.9,0-3.4,1.5-3.4,3.4c0,1.9,1.5,3.4,3.4,3.4h2c2.2,0,4-1.8,4-4V27.4c0-0.4,0.3-0.8,0.7-0.9l12.1-2.4c0.1,0,0.1,0,0.2,0 c0.5,0,0.9,0.4,0.9,0.9v11c0,0.8-0.6,1.4-1.4,1.4h-2.8c-1.9,0-3.4,1.5-3.4,3.4c0,1.9,1.5,3.4,3.4,3.4h2c2.2,0,4-1.8,4-4V18.4 C42.5,17.6,41.9,17,41.1,17z","mask":"M0,0v64h64V0H0z M42.5,40c0,2.2-1.8,4-4,4h-2c-1.9,0-3.4-1.5-3.4-3.4s1.5-3.4,3.4-3.4h2.8c0.8,0,1.4-0.6,1.4-1.4 v-11c0-0.5-0.4-0.9-0.9-0.9c-0.1,0-0.1,0-0.2,0l-12.1,2.4c-0.4,0.1-0.7,0.4-0.7,0.9V43c0,2.2-1.8,4-4,4h-2c-1.9,0-3.4-1.5-3.4-3.4 c0-1.9,1.5-3.4,3.4-3.4h2.8c0.8,0,1.4-0.6,1.4-1.4V21.3c0-0.7,0.5-1.2,1.1-1.4l14.7-3c0.1,0,0.2,0,0.3,0c0.8,0,1.4,0.6,1.4,1.4V40z","color":"#E049D1"},"linkedin":{"icon":"M20.4,44h5.4V26.6h-5.4V44z M23.1,18c-1.7,0-3.1,1.4-3.1,3.1c0,1.7,1.4,3.1,3.1,3.1 c1.7,0,3.1-1.4,3.1-3.1C26.2,19.4,24.8,18,23.1,18z M39.5,26.2c-2.6,0-4.4,1.4-5.1,2.8h-0.1v-2.4h-5.2V44h5.4v-8.6 c0-2.3,0.4-4.5,3.2-4.5c2.8,0,2.8,2.6,2.8,4.6V44H46v-9.5C46,29.8,45,26.2,39.5,26.2z","mask":"M0,0v64h64V0H0z M25.8,44h-5.4V26.6h5.4V44z M23.1,24.3c-1.7,0-3.1-1.4-3.1-3.1c0-1.7,1.4-3.1,3.1-3.1 c1.7,0,3.1,1.4,3.1,3.1C26.2,22.9,24.8,24.3,23.1,24.3z M46,44h-5.4v-8.4c0-2,0-4.6-2.8-4.6c-2.8,0-3.2,2.2-3.2,4.5V44h-5.4V26.6 h5.2V29h0.1c0.7-1.4,2.5-2.8,5.1-2.8c5.5,0,6.5,3.6,6.5,8.3V44z","color":"#007fb1"},"medium":{"icon":"M47,23.7h-1.2c-0.4,0-0.9,0.6-0.9,1v14.7c0,0.4,0.5,1,0.9,1H47v3.4H36.4v-3.4h2.1V24.9h-0.1 l-5.3,18.9h-4.1l-5.2-18.9h-0.1v15.5H26v3.4h-9v-3.4h1.2c0.5,0,1-0.6,1-1V24.7c0-0.4-0.5-1-1-1H17v-3.6h11.3l3.7,13.8h0.1l3.7-13.8 H47V23.7z","mask":"M0,0v64h64V0H0z M47,23.7h-1.2c-0.4,0-0.9,0.6-0.9,1v14.7c0,0.4,0.5,1,0.9,1H47v3.4H36.4v-3.4h2.1V24.9h-0.1 l-5.3,18.9h-4.1l-5.2-18.9h-0.1v15.5H26v3.4h-9v-3.4h1.2c0.5,0,1-0.6,1-1V24.7c0-0.4-0.5-1-1-1H17v-3.6h11.3l3.7,13.8h0.1l3.7-13.8 H47V23.7z","color":"#333332"},"meetup":{"icon":"M30.8,33.4c0-6.3,1.9-11.9,3.5-15.3c0.5-1.1,0.9-1.4,1.9-1.4c1.3,0,2.9,0.2,4.1,0.4 c1.1,0.2,1.5,1.6,1.7,2.5c1.2,4.5,4.7,18.7,5.5,22.4c0.2,0.8,0.6,2,0.1,2.3c-0.4,0.2-2.5,0.9-3.9,1c-0.6,0.1-1.1-0.6-1.4-1.5 c-1.5-4.6-3.5-11.8-5.2-16.6c0,3.7-0.3,10.8-0.4,12c-0.1,1.7-0.4,3.7-1.8,3.9c-1.1,0.2-2.4,0.4-4,0.4c-1.3,0-1.8-0.9-2.4-1.8 c-1-1.4-3.1-4.8-4.1-6.9c0.3,2.3,0.7,4.7,0.9,5.8c0.1,0.8,0,1.5-0.6,1.9c-1,0.7-3.2,1.4-4.1,1.4c-0.8,0-1.5-0.8-1.6-1.6 c-0.7-3.4-1.2-8-1.1-11.1c0-2.8,0-5.9,0.2-8.3c0-0.7,0.3-1.1,0.9-1.4c1.2-0.5,3-0.6,4.7-0.3c0.8,0.1,1,0.8,1.4,1.4 C26.9,25.5,28.9,29.5,30.8,33.4z","mask":"M0,0v64h64V0H0z M47.8,44.3c-0.4,0.2-2.5,0.9-3.9,1c-0.6,0.1-1.1-0.6-1.4-1.5c-1.5-4.6-3.5-11.8-5.2-16.6 c0,3.7-0.3,10.8-0.4,12c-0.1,1.7-0.4,3.7-1.8,3.9c-1.1,0.2-2.4,0.4-4,0.4c-1.3,0-1.8-0.9-2.4-1.8c-1-1.4-3.1-4.8-4.1-6.9 c0.3,2.3,0.7,4.7,0.9,5.8c0.1,0.8,0,1.5-0.6,1.9c-1,0.7-3.2,1.4-4.1,1.4c-0.8,0-1.5-0.8-1.6-1.6c-0.7-3.4-1.2-8-1.1-11.1 c0-2.8,0-5.9,0.2-8.3c0-0.7,0.3-1.1,0.9-1.4c1.2-0.5,3-0.6,4.7-0.3c0.8,0.1,1,0.8,1.4,1.4c1.7,2.8,3.8,6.7,5.7,10.6 c0-6.3,1.9-11.9,3.5-15.3c0.5-1.1,0.9-1.4,1.9-1.4c1.3,0,2.9,0.2,4.1,0.4c1.1,0.2,1.5,1.6,1.7,2.5c1.2,4.5,4.7,18.7,5.5,22.4 C47.8,42.8,48.3,44,47.8,44.3z","color":"#E51937"},"npm":{"icon":"M18.9,20v25.6H32V25.5h7.5V46h5.6V20H18.9z","mask":"M68,0v68H0V0H68z M18.9,20v25.6H32V25.5h7.5V46h5.6V20H18.9z","color":"#cb3837"},"pinterest":{"icon":"M32,16c-8.8,0-16,7.2-16,16c0,6.6,3.9,12.2,9.6,14.7c0-1.1,0-2.5,0.3-3.7 c0.3-1.3,2.1-8.7,2.1-8.7s-0.5-1-0.5-2.5c0-2.4,1.4-4.1,3.1-4.1c1.5,0,2.2,1.1,2.2,2.4c0,1.5-0.9,3.7-1.4,5.7 c-0.4,1.7,0.9,3.1,2.5,3.1c3,0,5.1-3.9,5.1-8.5c0-3.5-2.4-6.1-6.7-6.1c-4.9,0-7.9,3.6-7.9,7.7c0,1.4,0.4,2.4,1.1,3.1 c0.3,0.3,0.3,0.5,0.2,0.9c-0.1,0.3-0.3,1-0.3,1.3c-0.1,0.4-0.4,0.6-0.8,0.4c-2.2-0.9-3.3-3.4-3.3-6.1c0-4.5,3.8-10,11.4-10 c6.1,0,10.1,4.4,10.1,9.2c0,6.3-3.5,11-8.6,11c-1.7,0-3.4-0.9-3.9-2c0,0-0.9,3.7-1.1,4.4c-0.3,1.2-1,2.5-1.6,3.4 c1.4,0.4,3,0.7,4.5,0.7c8.8,0,16-7.2,16-16C48,23.2,40.8,16,32,16z","mask":"M0,0v64h64V0H0z M32,48c-1.6,0-3.1-0.2-4.5-0.7c0.6-1,1.3-2.2,1.6-3.4c0.2-0.7,1.1-4.4,1.1-4.4 c0.6,1.1,2.2,2,3.9,2c5.1,0,8.6-4.7,8.6-11c0-4.7-4-9.2-10.1-9.2c-7.6,0-11.4,5.5-11.4,10c0,2.8,1,5.2,3.3,6.1 c0.4,0.1,0.7,0,0.8-0.4c0.1-0.3,0.2-1,0.3-1.3c0.1-0.4,0.1-0.5-0.2-0.9c-0.6-0.8-1.1-1.7-1.1-3.1c0-4,3-7.7,7.9-7.7 c4.3,0,6.7,2.6,6.7,6.1c0,4.6-2,8.5-5.1,8.5c-1.7,0-2.9-1.4-2.5-3.1c0.5-2,1.4-4.2,1.4-5.7c0-1.3-0.7-2.4-2.2-2.4 c-1.7,0-3.1,1.8-3.1,4.1c0,1.5,0.5,2.5,0.5,2.5s-1.8,7.4-2.1,8.7c-0.3,1.2-0.3,2.6-0.3,3.7C19.9,44.2,16,38.6,16,32 c0-8.8,7.2-16,16-16c8.8,0,16,7.2,16,16C48,40.8,40.8,48,32,48z","color":"#cb2128"},"rdio":{"icon":"M47.3,25.7c-3.2,0.1-7.1-2.4-8.7-3.4c-0.1-0.1-0.3-0.2-0.4-0.2c-0.2-0.1-0.3-0.2-0.5-0.3v9.3h0 c0,0.8-0.2,1.7-0.8,2.6l0,0.1c-1.5,2.4-4.7,3.9-7.7,2.9c-2.9-1-3.7-3.8-2.1-6.3l0-0.1c1.5-2.4,4.7-3.9,7.7-2.9 c0.2,0.1,0.4,0.2,0.6,0.3v-6.8c-1.1-0.3-2.2-0.5-3.4-0.5c-6.9,0-12,5.2-12,11.6v0.1c0,6.4,5.1,11.5,12,11.5c6.9,0,12-5.2,12-11.6 v-0.1c0-0.5,0-1-0.1-1.5C47.5,29.5,49,25.8,47.3,25.7z","mask":"M0,0v64h64V0H0z M43.9,30.5c0.1,0.5,0.1,1,0.1,1.5V32c0,6.4-5.1,11.6-12,11.6c-6.9,0-12-5.1-12-11.5V32 c0-6.4,5.1-11.6,12-11.6c1.2,0,2.3,0.2,3.4,0.5v6.8c-0.2-0.1-0.4-0.2-0.6-0.3c-3-1-6.2,0.4-7.7,2.9l0,0.1c-1.5,2.5-0.8,5.3,2.1,6.3 c3,1,6.2-0.4,7.7-2.9l0-0.1c0.5-0.8,0.8-1.7,0.8-2.6h0v-9.3c0.2,0.1,0.3,0.2,0.5,0.3c0.1,0.1,0.3,0.2,0.4,0.2c1.5,1,5.4,3.5,8.7,3.4 C49,25.8,47.5,29.5,43.9,30.5z","color":"#0475C5"},"rss":{"icon":"M24,36c-2.2,0-4,1.8-4,4c0,2.2,1.8,4,4,4s4-1.8,4-4C28,37.8,26.2,36,24,36z M23,18 c-1.1,0-2,0.9-2,2s0.9,2,2,2c10.5,0,19,8.5,19,19c0,1.1,0.9,2,2,2s2-0.9,2-2C46,28.3,35.7,18,23,18z M23,27c-1.1,0-2,0.9-2,2 s0.9,2,2,2c5.5,0,10,4.5,10,10c0,1.1,0.9,2,2,2s2-0.9,2-2C37,33.3,30.7,27,23,27z","mask":"M0,0v64h64V0H0z M24,44c-2.2,0-4-1.8-4-4c0-2.2,1.8-4,4-4s4,1.8,4,4C28,42.2,26.2,44,24,44z M35,43 c-1.1,0-2-0.9-2-2c0-5.5-4.5-10-10-10c-1.1,0-2-0.9-2-2s0.9-2,2-2c7.7,0,14,6.3,14,14C37,42.1,36.1,43,35,43z M44,43 c-1.1,0-2-0.9-2-2c0-10.5-8.5-19-19-19c-1.1,0-2-0.9-2-2s0.9-2,2-2c12.7,0,23,10.3,23,23C46,42.1,45.1,43,44,43z","color":"#EF8733"},"sharethis":{"icon":"M28.3875,32.0001C28.3875,32.0843 28.3683,32.1632 28.3633,32.2471L37.1647,36.6464C37.9182,36.0083 38.8823,35.61 39.9474,35.61C42.3418,35.6105 44.2821,37.5509 44.2821,39.945C44.2821,42.3418 42.3417,44.2821 39.9474,44.2821C37.551,44.2821 35.6127,42.3417 35.6127,39.945C35.6127,39.8587 35.6319,39.7816 35.6367,39.698L26.8353,35.2984C26.0795,35.9341 25.1177,36.3324 24.0526,36.3324C21.6584,36.3324 19.7179,34.3941 19.7179,32.0001C19.7179,29.6036 21.6584,27.6628 24.0526,27.6628C25.1176,27.6628 26.0798,28.0635 26.8353,28.6992L35.6367,24.2997C35.6319,24.2156 35.6127,24.1365 35.6127,24.0502C35.6127,21.6584 37.551,19.7179 39.9474,19.7179C42.3418,19.7179 44.2821,21.6584 44.2821,24.0502C44.2821,26.4466 42.3417,28.3875 39.9474,28.3875C38.88,28.3875 37.9178,27.9868 37.1647,27.3487L28.3633,31.7506C28.368,31.8347 28.3875,31.9138 28.3875,32.0001Z","mask":"M0,0L64,0L64,64L0,64L0,0ZM28.3875,32.0001C28.3875,32.0843 28.3683,32.1632 28.3633,32.2471L37.1647,36.6464C37.9182,36.0083 38.8823,35.61 39.9474,35.61C42.3418,35.6105 44.2821,37.5509 44.2821,39.945C44.2821,42.3418 42.3417,44.2821 39.9474,44.2821C37.551,44.2821 35.6127,42.3417 35.6127,39.945C35.6127,39.8587 35.6319,39.7816 35.6367,39.698L26.8353,35.2984C26.0795,35.9341 25.1177,36.3324 24.0526,36.3324C21.6584,36.3324 19.7179,34.3941 19.7179,32.0001C19.7179,29.6036 21.6584,27.6628 24.0526,27.6628C25.1176,27.6628 26.0798,28.0635 26.8353,28.6992L35.6367,24.2997C35.6319,24.2156 35.6127,24.1365 35.6127,24.0502C35.6127,21.6584 37.551,19.7179 39.9474,19.7179C42.3418,19.7179 44.2821,21.6584 44.2821,24.0502C44.2821,26.4466 42.3417,28.3875 39.9474,28.3875C38.88,28.3875 37.9178,27.9868 37.1647,27.3487L28.3633,31.7506C28.368,31.8347 28.3875,31.9138 28.3875,32.0001Z","color":"#00BF00"},"smugmug":{"icon":"M25.4,22.9c2.8,0,4.1-1.7,3.9-3.1 c-0.1-1.2-1.3-2.4-3.6-2.4c-1.9,0-3.1,1.4-3.3,2.8C22.3,21.6,23.1,23,25.4,22.9z M39.2,22.6c2.6-0.1,3.8-1.5,3.8-2.8 c0-1.5-1.4-3-3.8-2.8c-1.9,0.2-3,1.5-3.2,2.8C35.9,21.3,36.9,22.7,39.2,22.6z M40.9,28.5c-6.6,0.7-6.9,0.7-19,1 c-5.1,0-4,17.5,6.9,17.5C39.2,47,51.7,27.4,40.9,28.5z M29,43.9c-9.5,0-8.2-11.3-6.6-11.4c11.1-0.4,13.9-0.9,17.8-0.9 C44.3,31.6,36.6,43.9,29,43.9z","mask":"M0,0v64h64V0H0z M36.1,19.8c0.2-1.3,1.3-2.6,3.2-2.8c2.4-0.2,3.8,1.3,3.8,2.8c0,1.3-1.2,2.6-3.8,2.8 C36.9,22.7,35.9,21.3,36.1,19.8z M22.5,20.2c0.2-1.4,1.4-2.8,3.3-2.8c2.3,0,3.5,1.1,3.6,2.4c0.2,1.5-1.1,3.1-3.9,3.1 C23.1,23,22.3,21.6,22.5,20.2z M28.8,47c-10.9,0-12-17.5-6.9-17.5c12.1-0.3,12.5-0.3,19-1C51.7,27.4,39.2,47,28.8,47z M40.3,31.6 c-3.9,0-6.8,0.5-17.8,0.9c-1.6,0.1-2.9,11.4,6.6,11.4C36.6,43.9,44.3,31.6,40.3,31.6z","color":"#8cca1e"},"soundcloud":{"icon":"M43.6,30c-0.6,0-1.2,0.1-1.7,0.3c-0.3-4-3.7-7.1-7.7-7.1c-1,0-2,0.2-2.8,0.5 C31.1,23.9,31,24,31,24.3v13.9c0,0.3,0.2,0.5,0.5,0.5c0,0,12.2,0,12.2,0c2.4,0,4.4-1.9,4.4-4.4C48,31.9,46,30,43.6,30z M27.2,25.1 c-0.7,0-1.2,0.5-1.2,1.1v11.3c0,0.7,0.6,1.2,1.2,1.2c0.7,0,1.2-0.6,1.2-1.2V26.2C28.4,25.6,27.8,25.1,27.2,25.1z M22.2,27.8 c-0.7,0-1.2,0.5-1.2,1.1v8.5c0,0.7,0.6,1.2,1.2,1.2s1.2-0.6,1.2-1.2V29C23.4,28.3,22.9,27.8,22.2,27.8z M17.2,30.2 c-0.7,0-1.2,0.5-1.2,1.1v4.9c0,0.7,0.6,1.2,1.2,1.2c0.7,0,1.2-0.6,1.2-1.2v-4.9C18.5,30.7,17.9,30.2,17.2,30.2z","mask":"M0,0v64h64V0H0z M18.5,36.3c0,0.7-0.6,1.2-1.2,1.2c-0.7,0-1.2-0.6-1.2-1.2v-4.9c0-0.6,0.6-1.1,1.2-1.1 c0.7,0,1.2,0.5,1.2,1.1V36.3z M23.4,37.5c0,0.7-0.6,1.2-1.2,1.2S21,38.2,21,37.5V29c0-0.6,0.6-1.1,1.2-1.1s1.2,0.5,1.2,1.1V37.5z M28.4,37.5c0,0.7-0.6,1.2-1.2,1.2c-0.7,0-1.2-0.6-1.2-1.2V26.2c0-0.6,0.6-1.1,1.2-1.1c0.7,0,1.2,0.5,1.2,1.1V37.5z M43.6,38.7 c0,0-12.1,0-12.2,0c-0.3,0-0.5-0.2-0.5-0.5V24.3c0-0.3,0.1-0.4,0.4-0.5c0.9-0.3,1.8-0.5,2.8-0.5c4,0,7.4,3.1,7.7,7.1 c0.5-0.2,1.1-0.3,1.7-0.3c2.4,0,4.4,2,4.4,4.4C48,36.8,46,38.7,43.6,38.7z","color":"#FF5700"},"spotify":{"icon":"M32,16c-8.8,0-16,7.2-16,16c0,8.8,7.2,16,16,16c8.8,0,16-7.2,16-16C48,23.2,40.8,16,32,16 M39.3,39.1c-0.3,0.5-0.9,0.6-1.4,0.3c-3.8-2.3-8.5-2.8-14.1-1.5c-0.5,0.1-1.1-0.2-1.2-0.7c-0.1-0.5,0.2-1.1,0.8-1.2 c6.1-1.4,11.3-0.8,15.5,1.8C39.5,38,39.6,38.6,39.3,39.1 M41.3,34.7c-0.4,0.6-1.1,0.8-1.7,0.4c-4.3-2.6-10.9-3.4-15.9-1.9 c-0.7,0.2-1.4-0.2-1.6-0.8c-0.2-0.7,0.2-1.4,0.8-1.6c5.8-1.8,13-0.9,18,2.1C41.5,33.4,41.7,34.1,41.3,34.7 M41.5,30.2 c-5.2-3.1-13.7-3.3-18.6-1.9c-0.8,0.2-1.6-0.2-1.9-1c-0.2-0.8,0.2-1.6,1-1.9c5.7-1.7,15-1.4,21,2.1c0.7,0.4,0.9,1.3,0.5,2.1 C43.1,30.4,42.2,30.6,41.5,30.2","mask":"M39,37.7c-4.2-2.6-9.4-3.2-15.5-1.8c-0.5,0.1-0.9,0.7-0.8,1.2c0.1,0.5,0.7,0.9,1.2,0.7c5.6-1.3,10.3-0.8,14.1,1.5 c0.5,0.3,1.1,0.1,1.4-0.3C39.6,38.6,39.5,38,39,37.7z M40.9,33c-4.9-3-12.2-3.9-18-2.1c-0.7,0.2-1,0.9-0.8,1.6 c0.2,0.7,0.9,1,1.6,0.8c5.1-1.5,11.6-0.8,15.9,1.9c0.6,0.4,1.4,0.2,1.7-0.4C41.7,34.1,41.5,33.4,40.9,33z M0,0v64h64V0H0z M32,48 c-8.8,0-16-7.2-16-16c0-8.8,7.2-16,16-16c8.8,0,16,7.2,16,16C48,40.8,40.8,48,32,48z M43,27.6c-5.9-3.5-15.3-3.9-21-2.1 c-0.8,0.2-1.2,1.1-1,1.9c0.2,0.8,1.1,1.2,1.9,1c4.9-1.5,13.4-1.2,18.6,1.9c0.7,0.4,1.6,0.2,2.1-0.5C43.9,29,43.7,28,43,27.6z","color":"#2EBD59"},"squarespace":{"icon":"M46.2,27.6c-2.4-2.4-6.3-2.4-8.7,0l-9.8,9.8c-0.6,0.6-0.6,1.6,0,2.2c0.6,0.6,1.6,0.6,2.2,0 l9.8-9.8c1.2-1.2,3.2-1.2,4.4,0c1.2,1.2,1.2,3.2,0,4.4l-9.6,9.6c1.2,1.2,3.2,1.2,4.4,0l7.5-7.5C48.6,34,48.6,30,46.2,27.6z M42.9,30.9c-0.6-0.6-1.6-0.6-2.2,0l-9.8,9.8c-1.2,1.2-3.2,1.2-4.4,0c-0.6-0.6-1.6-0.6-2.2,0c-0.6,0.6-0.6,1.6,0,2.2 c2.4,2.4,6.3,2.4,8.7,0l9.8-9.8C43.5,32.5,43.5,31.5,42.9,30.9z M39.6,21.1c-2.4-2.4-6.3-2.4-8.7,0l-9.8,9.8c-0.6,0.6-0.6,1.6,0,2.2 c0.6,0.6,1.6,0.6,2.2,0l9.8-9.8c1.2-1.2,3.2-1.2,4.4,0c0.6,0.6,1.6,0.6,2.2,0C40.2,22.7,40.2,21.7,39.6,21.1z M36.4,24.4 c-0.6-0.6-1.6-0.6-2.2,0l-9.8,9.8c-1.2,1.2-3.2,1.2-4.4,0c-1.2-1.2-1.2-3.2,0-4.4l9.6-9.6c-1.2-1.2-3.2-1.2-4.4,0l-7.5,7.5 c-2.4,2.4-2.4,6.3,0,8.7c2.4,2.4,6.3,2.4,8.7,0l9.8-9.8C37,25.9,37,25,36.4,24.4z","mask":"M0,0v64h64V0H0z M39.6,21.1c0.6,0.6,0.6,1.6,0,2.2c-0.6,0.6-1.6,0.6-2.2,0c-1.2-1.2-3.2-1.2-4.4,0l-9.8,9.8 c-0.6,0.6-1.6,0.6-2.2,0c-0.6-0.6-0.6-1.6,0-2.2l9.8-9.8C33.3,18.7,37.2,18.7,39.6,21.1z M17.8,36.4c-2.4-2.4-2.4-6.3,0-8.7l7.5-7.5 c1.2-1.2,3.2-1.2,4.4,0L20,29.8c-1.2,1.2-1.2,3.2,0,4.4c1.2,1.2,3.2,1.2,4.4,0l9.8-9.8c0.6-0.6,1.6-0.6,2.2,0c0.6,0.6,0.6,1.6,0,2.2 l-9.8,9.8C24.1,38.8,20.2,38.8,17.8,36.4z M24.4,42.9c-0.6-0.6-0.6-1.6,0-2.2c0.6-0.6,1.6-0.6,2.2,0c1.2,1.2,3.2,1.2,4.4,0l9.8-9.8 c0.6-0.6,1.6-0.6,2.2,0c0.6,0.6,0.6,1.6,0,2.2l-9.8,9.8C30.7,45.3,26.8,45.3,24.4,42.9z M46.2,36.4l-7.5,7.5c-1.2,1.2-3.2,1.2-4.4,0 l9.6-9.6c1.2-1.2,1.2-3.2,0-4.4c-1.2-1.2-3.2-1.2-4.4,0l-9.8,9.8c-0.6,0.6-1.6,0.6-2.2,0c-0.6-0.6-0.6-1.6,0-2.2l9.8-9.8 c2.4-2.4,6.3-2.4,8.7,0C48.6,30,48.6,34,46.2,36.4z","color":"#1C1C1C"},"tumblr":{"icon":"M39.2,41c-0.6,0.3-1.6,0.5-2.4,0.5c-2.4,0.1-2.9-1.7-2.9-3v-9.3h6v-4.5h-6V17c0,0-4.3,0-4.4,0 c-0.1,0-0.2,0.1-0.2,0.2c-0.3,2.3-1.4,6.4-5.9,8.1v3.9h3V39c0,3.4,2.5,8.1,9,8c2.2,0,4.7-1,5.2-1.8L39.2,41z","mask":"M0,0v64h64V0H0z M35.4,47c-6.5,0.1-9-4.7-9-8v-9.8h-3v-3.9c4.6-1.6,5.6-5.7,5.9-8.1c0-0.2,0.1-0.2,0.2-0.2 c0.1,0,4.4,0,4.4,0v7.6h6v4.5h-6v9.3c0,1.3,0.5,3,2.9,3c0.8,0,1.9-0.3,2.4-0.5l1.4,4.3C40.1,46,37.6,47,35.4,47z","color":"#2c4762"},"twitch":{"icon":"M40,25.6h-2.5v7.6H40V25.6z M33,25.6h-2.5v7.6H33V25.6z M20.9,18L19,23.1v20.4h7v3.8h3.8l3.8-3.8h5.7l7.6-7.6V18H20.9z M44.5,34.5L40,39h-7l-3.8,3.8V39h-5.7V20.5h21V34.5z","mask":"M0,0v64h64V0H0z M47,35.8l-7.6,7.6h-5.7l-3.8,3.8H26v-3.8h-7V23.1l1.9-5.1H47V35.8z M29.2,42.8L33,39h7l4.5-4.5 v-14h-21V39h5.7V42.8z M37.5,25.6H40v7.6h-2.5V25.6z M30.5,25.6H33v7.6h-2.5V25.6z","color":"#6441A5"},"twitter":{"icon":"M48,22.1c-1.2,0.5-2.4,0.9-3.8,1c1.4-0.8,2.4-2.1,2.9-3.6c-1.3,0.8-2.7,1.3-4.2,1.6 C41.7,19.8,40,19,38.2,19c-3.6,0-6.6,2.9-6.6,6.6c0,0.5,0.1,1,0.2,1.5c-5.5-0.3-10.3-2.9-13.5-6.9c-0.6,1-0.9,2.1-0.9,3.3 c0,2.3,1.2,4.3,2.9,5.5c-1.1,0-2.1-0.3-3-0.8c0,0,0,0.1,0,0.1c0,3.2,2.3,5.8,5.3,6.4c-0.6,0.1-1.1,0.2-1.7,0.2c-0.4,0-0.8,0-1.2-0.1 c0.8,2.6,3.3,4.5,6.1,4.6c-2.2,1.8-5.1,2.8-8.2,2.8c-0.5,0-1.1,0-1.6-0.1c2.9,1.9,6.4,2.9,10.1,2.9c12.1,0,18.7-10,18.7-18.7 c0-0.3,0-0.6,0-0.8C46,24.5,47.1,23.4,48,22.1z","mask":"M0,0v64h64V0H0z M44.7,25.5c0,0.3,0,0.6,0,0.8C44.7,35,38.1,45,26.1,45c-3.7,0-7.2-1.1-10.1-2.9 c0.5,0.1,1,0.1,1.6,0.1c3.1,0,5.9-1,8.2-2.8c-2.9-0.1-5.3-2-6.1-4.6c0.4,0.1,0.8,0.1,1.2,0.1c0.6,0,1.2-0.1,1.7-0.2 c-3-0.6-5.3-3.3-5.3-6.4c0,0,0-0.1,0-0.1c0.9,0.5,1.9,0.8,3,0.8c-1.8-1.2-2.9-3.2-2.9-5.5c0-1.2,0.3-2.3,0.9-3.3 c3.2,4,8.1,6.6,13.5,6.9c-0.1-0.5-0.2-1-0.2-1.5c0-3.6,2.9-6.6,6.6-6.6c1.9,0,3.6,0.8,4.8,2.1c1.5-0.3,2.9-0.8,4.2-1.6 c-0.5,1.5-1.5,2.8-2.9,3.6c1.3-0.2,2.6-0.5,3.8-1C47.1,23.4,46,24.5,44.7,25.5z","color":"#00aced"},"vevo":{"icon":"M43,21c-4.5,0-5.4,2.7-6.8,4.6c0,0-3.7,5.6-5.1,7.7l-3-12.3H20l5.1,20.6c1.1,3.7,4.1,3.4,4.1,3.4 c2.1,0,3.6-1.1,5-3.1L48,21C48,21,43.2,21,43,21z","mask":"M0,0v64h64V0H0z M34.2,41.9c-1.4,2.1-2.9,3.1-5,3.1c0,0-3,0.2-4.1-3.4L20,21h8.1l3,12.3c1.4-2.1,5.1-7.7,5.1-7.7 c1.4-1.9,2.2-4.6,6.8-4.6c0.2,0,5,0,5,0L34.2,41.9z","color":"#ED1A3B"},"vimeo":{"icon":"M47,25c-0.1,2.9-2.2,6.9-6.1,12c-4.1,5.3-7.5,8-10.4,8c-1.7,0-3.2-1.6-4.4-4.8 c-0.8-3-1.6-5.9-2.4-8.9c-0.9-3.2-1.9-4.8-2.9-4.8c-0.2,0-1,0.5-2.4,1.4L17,26c1.5-1.3,2.9-2.6,4.4-3.9c2-1.7,3.5-2.6,4.4-2.7 c2.3-0.2,3.8,1.4,4.3,4.8c0.6,3.7,1,6,1.2,6.9c0.7,3.1,1.4,4.6,2.2,4.6c0.6,0,1.6-1,2.8-3c1.3-2,1.9-3.5,2-4.5 c0.2-1.7-0.5-2.6-2-2.6c-0.7,0-1.5,0.2-2.2,0.5c1.5-4.8,4.3-7.2,8.4-7C45.7,19.1,47.2,21.1,47,25z","mask":"M0,0v64h64V0H0z M40.9,37c-4.1,5.3-7.5,8-10.4,8c-1.7,0-3.2-1.6-4.4-4.8c-0.8-3-1.6-5.9-2.4-8.9 c-0.9-3.2-1.9-4.8-2.9-4.8c-0.2,0-1,0.5-2.4,1.4L17,26c1.5-1.3,2.9-2.6,4.4-3.9c2-1.7,3.5-2.6,4.4-2.7c2.3-0.2,3.8,1.4,4.3,4.8 c0.6,3.7,1,6,1.2,6.9c0.7,3.1,1.4,4.6,2.2,4.6c0.6,0,1.6-1,2.8-3c1.3-2,1.9-3.5,2-4.5c0.2-1.7-0.5-2.6-2-2.6c-0.7,0-1.5,0.2-2.2,0.5 c1.5-4.8,4.3-7.2,8.4-7c3.1,0.1,4.5,2.1,4.4,6C46.9,27.9,44.8,31.9,40.9,37z","color":"#1ab7ea"},"vine":{"icon":"M45.2,31.9c-0.8,0.2-1.5,0.3-2.2,0.3c-3.8,0-6.7-2.6-6.7-7.2c0-2.3,0.9-3.4,2.1-3.4 c1.2,0,2,1.1,2,3.2c0,1.2-0.3,2.5-0.6,3.3c0,0,1.2,2,4.4,1.4c0.7-1.5,1-3.5,1-5.2c0-4.6-2.3-7.3-6.6-7.3c-4.4,0-7,3.4-7,7.9 c0,4.4,2.1,8.2,5.5,10c-1.4,2.9-3.3,5.4-5.2,7.3c-3.5-4.2-6.6-9.8-7.9-20.7h-5.1c2.4,18.1,9.4,23.9,11.2,25c1.1,0.6,2,0.6,2.9,0.1 c1.5-0.9,6-5.4,8.6-10.7c1.1,0,2.3-0.1,3.6-0.4V31.9z","mask":"M0,0v64h64V0H0z M38.4,21.5c-1.2,0-2.1,1.2-2.1,3.4c0,4.6,2.9,7.2,6.7,7.2c0.7,0,1.4-0.1,2.2-0.3v3.6 c-1.3,0.3-2.5,0.4-3.6,0.4c-2.5,5.3-7,9.8-8.6,10.7c-1,0.5-1.9,0.6-2.9-0.1c-1.9-1.1-8.9-6.9-11.2-25H24c1.3,10.9,4.4,16.5,7.9,20.7 c1.9-1.9,3.7-4.4,5.2-7.3c-3.4-1.7-5.5-5.5-5.5-10c0-4.5,2.6-7.9,7-7.9c4.3,0,6.6,2.7,6.6,7.3c0,1.7-0.4,3.7-1,5.2 c-3.2,0.6-4.4-1.4-4.4-1.4c0.2-0.8,0.6-2.1,0.6-3.3C40.3,22.6,39.5,21.5,38.4,21.5z","color":"#00BF8F"},"vsco":{"icon":"M32,16c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5 C34.5,17.1,33.4,16,32,16z M18.5,29.5c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5 C20.9,30.6,19.8,29.5,18.5,29.5z M25.2,22.8c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5 C27.7,23.9,26.6,22.8,25.2,22.8z M38.7,27.6c1.4,0,2.5-1.1,2.5-2.5c0-1.4-1.1-2.5-2.5-2.5c-1.4,0-2.5,1.1-2.5,2.5 C36.2,26.5,37.3,27.6,38.7,27.6z M25.1,36.2c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5 C27.6,37.3,26.5,36.2,25.1,36.2z M31.9,34.4c1.4,0,2.5-1.1,2.5-2.5c0-1.4-1.1-2.5-2.5-2.5c-1.4,0-2.5,1.1-2.5,2.5 C29.5,33.3,30.6,34.4,31.9,34.4z M45.5,29.5c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5 C48,30.6,46.9,29.5,45.5,29.5z M32,43.1c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5 C34.5,44.2,33.4,43.1,32,43.1z M38.8,36.3c-1.4,0-2.5,1.1-2.5,2.5c0,1.4,1.1,2.5,2.5,2.5c1.4,0,2.5-1.1,2.5-2.5 C41.2,37.4,40.1,36.3,38.8,36.3z","mask":"M0,0v64h64V0H0z M18.5,34.5c-1.4,0-2.5-1.1-2.5-2.5c0-1.4,1.1-2.5,2.5-2.5c1.4,0,2.5,1.1,2.5,2.5 C20.9,33.4,19.8,34.5,18.5,34.5z M25.1,41.1c-1.4,0-2.5-1.1-2.5-2.5c0-1.4,1.1-2.5,2.5-2.5c1.4,0,2.5,1.1,2.5,2.5 C27.6,40,26.5,41.1,25.1,41.1z M25.2,27.7c-1.4,0-2.5-1.1-2.5-2.5c0-1.4,1.1-2.5,2.5-2.5c1.4,0,2.5,1.1,2.5,2.5 C27.7,26.6,26.6,27.7,25.2,27.7z M32,48c-1.4,0-2.5-1.1-2.5-2.5c0-1.4,1.1-2.5,2.5-2.5c1.4,0,2.5,1.1,2.5,2.5 C34.5,46.9,33.4,48,32,48z M29.5,31.9c0-1.4,1.1-2.5,2.5-2.5c1.4,0,2.5,1.1,2.5,2.5c0,1.4-1.1,2.5-2.5,2.5 C30.6,34.4,29.5,33.3,29.5,31.9z M32,20.9c-1.4,0-2.5-1.1-2.5-2.5c0-1.4,1.1-2.5,2.5-2.5c1.4,0,2.5,1.1,2.5,2.5 C34.5,19.8,33.4,20.9,32,20.9z M38.7,22.7c1.4,0,2.5,1.1,2.5,2.5c0,1.4-1.1,2.5-2.5,2.5c-1.4,0-2.5-1.1-2.5-2.5 C36.2,23.8,37.3,22.7,38.7,22.7z M38.8,41.2c-1.4,0-2.5-1.1-2.5-2.5c0-1.4,1.1-2.5,2.5-2.5c1.4,0,2.5,1.1,2.5,2.5 C41.2,40.1,40.1,41.2,38.8,41.2z M45.5,34.5c-1.4,0-2.5-1.1-2.5-2.5c0-1.4,1.1-2.5,2.5-2.5c1.4,0,2.5,1.1,2.5,2.5 C48,33.4,46.9,34.5,45.5,34.5z","color":"#83878A"},"yelp":{"icon":"M29.5,35.7c0.5-0.1,0.9-0.6,0.9-1.2c0-0.6-0.3-1.2-0.8-1.4c0,0-1.5-0.6-1.5-0.6 c-5-2.1-5.2-2.1-5.5-2.1c-0.4,0-0.7,0.2-1,0.6c-0.5,0.8-0.7,3.3-0.5,5c0.1,0.6,0.2,1,0.3,1.3c0.2,0.4,0.5,0.6,0.9,0.6 c0.2,0,0.4,0,5.1-1.5C27.5,36.4,29.5,35.7,29.5,35.7z M32.2,37.6c-0.6-0.2-1.2-0.1-1.5,0.4c0,0-1,1.2-1,1.2 c-3.5,4.1-3.7,4.3-3.7,4.5c-0.1,0.1-0.1,0.3-0.1,0.4c0,0.2,0.1,0.4,0.3,0.6c0.8,1,4.7,2.4,6,2.2c0.4-0.1,0.7-0.3,0.9-0.7 C33,46.1,33,45.9,33,41c0,0,0-2.2,0-2.2C33.1,38.3,32.7,37.8,32.2,37.6z M32.3,16.8c-0.1-0.4-0.4-0.7-0.9-0.8 c-1.3-0.3-6.5,1.1-7.5,2.1c-0.3,0.3-0.4,0.7-0.3,1.1c0.2,0.3,6.5,10.4,6.5,10.4c0.9,1.5,1.7,1.3,2,1.2c0.3-0.1,1-0.3,0.9-2.1 C33,26.6,32.4,17.3,32.3,16.8z M36.9,33.4C36.9,33.4,36.8,33.5,36.9,33.4c0.2-0.1,0.7-0.2,1.5-0.4c5.3-1.3,5.5-1.3,5.7-1.5 c0.3-0.2,0.5-0.6,0.5-1c0,0,0,0,0,0c-0.1-1.3-2.4-4.7-3.5-5.2c-0.4-0.2-0.8-0.2-1.1,0c-0.2,0.1-0.4,0.3-3.2,4.2c0,0-1.3,1.7-1.3,1.8 c-0.3,0.4-0.3,1,0,1.5C35.8,33.3,36.3,33.6,36.9,33.4z M44.4,38.6c-0.2-0.1-0.3-0.2-5-1.7c0,0-2-0.7-2.1-0.7c-0.5-0.2-1.1,0-1.4,0.5 c-0.4,0.5-0.5,1.1-0.1,1.6l0.8,1.3c2.8,4.5,3,4.8,3.2,5c0.3,0.2,0.7,0.3,1.1,0.1c1.2-0.5,3.7-3.7,3.9-5 C44.8,39.2,44.7,38.8,44.4,38.6z","mask":"M0,0v64h64V0H0z M22.4,37.9c-0.4,0-0.7-0.2-0.9-0.6c-0.1-0.3-0.2-0.7-0.3-1.3c-0.2-1.7,0-4.2,0.5-5 c0.2-0.4,0.6-0.6,1-0.6c0.3,0,0.5,0.1,5.5,2.1c0,0,1.5,0.6,1.5,0.6c0.5,0.2,0.9,0.7,0.8,1.4c0,0.6-0.4,1.1-0.9,1.2 c0,0-2.1,0.7-2.1,0.7C22.8,37.9,22.7,37.9,22.4,37.9z M33,41c0,4.9,0,5-0.1,5.3c-0.1,0.4-0.4,0.6-0.9,0.7c-1.2,0.2-5.1-1.2-6-2.2 c-0.2-0.2-0.3-0.4-0.3-0.6c0-0.2,0-0.3,0.1-0.4c0.1-0.2,0.2-0.4,3.7-4.5c0,0,1-1.2,1-1.2c0.3-0.4,1-0.6,1.5-0.4 c0.6,0.2,0.9,0.7,0.9,1.2C33,38.8,33,41,33,41z M32.2,30.8c-0.3,0.1-1,0.3-2-1.2c0,0-6.4-10.1-6.5-10.4c-0.1-0.3,0-0.7,0.3-1.1 c1-1,6.1-2.4,7.5-2.1c0.4,0.1,0.7,0.4,0.9,0.8c0.1,0.4,0.7,9.8,0.8,11.9C33.2,30.5,32.4,30.7,32.2,30.8z M35.4,31.3 c0,0,1.3-1.8,1.3-1.8c2.8-3.9,3-4.1,3.2-4.2c0.3-0.2,0.7-0.2,1.1,0c1.1,0.5,3.4,3.9,3.5,5.2c0,0,0,0,0,0c0,0.4-0.1,0.8-0.5,1 c-0.2,0.1-0.4,0.2-5.7,1.5c-0.8,0.2-1.3,0.3-1.6,0.4c0,0,0,0,0,0c-0.5,0.1-1.1-0.1-1.4-0.6C35.1,32.3,35.1,31.7,35.4,31.3z M44.7,39.6c-0.2,1.3-2.7,4.5-3.9,5c-0.4,0.2-0.8,0.1-1.1-0.1c-0.2-0.2-0.4-0.5-3.2-5l-0.8-1.3c-0.3-0.5-0.3-1.1,0.1-1.6 c0.4-0.5,0.9-0.6,1.4-0.5c0,0,2.1,0.7,2.1,0.7c4.6,1.5,4.8,1.6,5,1.7C44.7,38.8,44.8,39.2,44.7,39.6z","color":"#B90C04"},"youtube":{"icon":"M46.7,26c0,0-0.3-2.1-1.2-3c-1.1-1.2-2.4-1.2-3-1.3C38.3,21.4,32,21.4,32,21.4h0 c0,0-6.3,0-10.5,0.3c-0.6,0.1-1.9,0.1-3,1.3c-0.9,0.9-1.2,3-1.2,3S17,28.4,17,30.9v2.3c0,2.4,0.3,4.9,0.3,4.9s0.3,2.1,1.2,3 c1.1,1.2,2.6,1.2,3.3,1.3c2.4,0.2,10.2,0.3,10.2,0.3s6.3,0,10.5-0.3c0.6-0.1,1.9-0.1,3-1.3c0.9-0.9,1.2-3,1.2-3s0.3-2.4,0.3-4.9 v-2.3C47,28.4,46.7,26,46.7,26z M28.9,35.9l0-8.4l8.1,4.2L28.9,35.9z","mask":"M0,0v64h64V0H0z M47,33.1c0,2.4-0.3,4.9-0.3,4.9s-0.3,2.1-1.2,3c-1.1,1.2-2.4,1.2-3,1.3 C38.3,42.5,32,42.6,32,42.6s-7.8-0.1-10.2-0.3c-0.7-0.1-2.2-0.1-3.3-1.3c-0.9-0.9-1.2-3-1.2-3S17,35.6,17,33.1v-2.3 c0-2.4,0.3-4.9,0.3-4.9s0.3-2.1,1.2-3c1.1-1.2,2.4-1.2,3-1.3c4.2-0.3,10.5-0.3,10.5-0.3h0c0,0,6.3,0,10.5,0.3c0.6,0.1,1.9,0.1,3,1.3 c0.9,0.9,1.2,3,1.2,3s0.3,2.4,0.3,4.9V33.1z M28.9,35.9l8.1-4.2l-8.1-4.2L28.9,35.9z","color":"#ff3333"}}')},593:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"Dokument1","~MENU.NEW":"Neu","~MENU.OPEN":"Öffnen","~MENU.CLOSE":"Schließen","~MENU.IMPORT_DATA":"Daten importieren ...","~MENU.SAVE":"Speichern","~MENU.SAVE_AS":"Speichern unter ...","~MENU.EXPORT_AS":"Datei exportieren als ...","~MENU.CREATE_COPY":"Kopie erstellen","~MENU.SHARE":"Teilen ...","~MENU.SHARE_GET_LINK":"Link erhalten für geteilte Ansicht","~MENU.SHARE_UPDATE":"Geteilte Ansicht aktualisieren","~MENU.DOWNLOAD":"Download","~MENU.RENAME":"Umbenennen","~MENU.REVERT_TO":"Zurückkehren ...","~MENU.REVERT_TO_LAST_OPENED":"Kürzlich geöffnete Fassung","~MENU.REVERT_TO_SHARED_VIEW":"Geteilte Ansicht","~DIALOG.SAVE":"Speichern","~DIALOG.SAVE_AS":"Speichern unter ...","~DIALOG.EXPORT_AS":"Datei exportieren als ...","~DIALOG.CREATE_COPY":"Kopie erstellen ...","~DIALOG.OPEN":"Öffnen","~DIALOG.DOWNLOAD":"Download","~DIALOG.RENAME":"Umbenennen","~DIALOG.SHARED":"Teilen","~DIALOG.IMPORT_DATA":"Daten importieren","~PROVIDER.LOCAL_STORAGE":"Lokaler Speicher","~PROVIDER.READ_ONLY":"Leseansicht","~PROVIDER.GOOGLE_DRIVE":"Google Drive","~PROVIDER.DOCUMENT_STORE":"Concord Cloud","~PROVIDER.LOCAL_FILE":"Lokale Datei","~FILE_STATUS.SAVING":"Speichern","~FILE_STATUS.SAVED":"Gespeichert","~FILE_STATUS.SAVED_TO_PROVIDER":"Alle Änderungen gespeichert %{providerName}","~FILE_STATUS.UNSAVED":"Ungespeichert","~FILE_DIALOG.FILENAME":"Dateiname","~FILE_DIALOG.OPEN":"Öffnen","~FILE_DIALOG.SAVE":"Speichern","~FILE_DIALOG.CANCEL":"Abbrechen","~FILE_DIALOG.REMOVE":"Löschen","~FILE_DIALOG.REMOVE_CONFIRM":"Sind Sie sicher, dass %{filename} gelöscht werden soll?","~FILE_DIALOG.REMOVED_TITLE":"Datei löschen","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename} wurde gelöscht","~FILE_DIALOG.LOADING":"Laden...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"*** Fehler beim Laden der Ordnerinhalte ***","~FILE_DIALOG.DOWNLOAD":"Download","~DOWNLOAD_DIALOG.DOWNLOAD":"Download","~DOWNLOAD_DIALOG.CANCEL":"Abbrechen","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"Information über Teilen im Dokument ","~RENAME_DIALOG.RENAME":"Umbenennen","~RENAME_DIALOG.CANCEL":"Abbrechen","~SHARE_DIALOG.COPY":"Kopieren","~SHARE_DIALOG.VIEW":"Ansicht","~SHARE_DIALOG.CLOSE":"Schließen","~SHARE_DIALOG.COPY_SUCCESS":"Die Information wurde kopiert.","~SHARE_DIALOG.COPY_ERROR":"Entschuldigung, diese Information konnte nicht kopiert werden.","~SHARE_DIALOG.COPY_TITLE":"Ergebnis kopieren","~SHARE_DIALOG.LONGEVITY_WARNING":"Die geteilte Kopie des Dokuments wird aufbewahrt, bis ein Jahr lang niemand mehr darauf zugreift.","~SHARE_UPDATE.TITLE":"Geteilte Anschicht aktualisiert","~SHARE_UPDATE.MESSAGE":"Die geteilte Ansicht wurde erfolgreich aktualisiert.","~CONFIRM.OPEN_FILE":"Es gibt ungesicherte Änderungen. Wollen Sie wirklich ein neues Dokument öffnen?","~CONFIRM.NEW_FILE":"Es gibt ungesicherte Änderungen. Wollen Sie wirklich ein neues Dokument erstellen?","~CONFIRM.AUTHORIZE_OPEN":"Um dieses Dokument zu öffnen, müssen Sie sich authorisieren. Wollen Sie fortfahren?","~CONFIRM.AUTHORIZE_SAVE":"Um dieses Dokument zu speichern, müssen Sie sich authorisieren. Wollen Sie fortfahren?","~CONFIRM.CLOSE_FILE":"Es gibt ungesicherte Änderungen. Wollen Sie das Dokument wirklich schließen?","~CONFIRM.REVERT_TO_LAST_OPENED":"Sind Sie sicher, dass Sie das Dokument in den zuletzt geöffneten Zustand zurückversetzen möchten?","~CONFIRM.REVERT_TO_SHARED_VIEW":"Sind Sie sicher, dass Sie das Dokument in den zuletzt geteilten Zustand zurückversetzen möchten?","~CONFIRM_DIALOG.TITLE":"Sind Sie sicher?","~CONFIRM_DIALOG.YES":"Ja","~CONFIRM_DIALOG.NO":"Nein","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"Datei hierher ziehen oder klicken, um eine Datei auszuwählen","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"Es kann nur eine Datei ausgewählt werden.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"Sie können nur eine Datei hierher ziehen.","~IMPORT.LOCAL_FILE":"Lokale Datei","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"Es kann nur eine URL verwendet werden.","~IMPORT_URL.PLEASE_ENTER_URL":"Adresse zum Importieren eingeben.","~URL_TAB.DROP_URL_HERE":"Ziehen Sie die URL hierher oder geben Sie die URL unten ein","~URL_TAB.IMPORT":"Importieren","~CLIENT_ERROR.TITLE":"Fehler","~ALERT_DIALOG.TITLE":"Alarm","~ALERT_DIALOG.CLOSE":"Schließen","~ALERT.NO_PROVIDER":"Das angegebene Dokument konnte nicht geöffnet werden, da kein geeigneter Anbieter verfügbar ist.","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"Login für Google","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"Verbinde zu Google...","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"Fehlende erforderliche ClientId in den GoogleDrive Optionen","~DOCSTORE.LOAD_403_ERROR":"Sie haben keine Erlaubnis, um %{filename}.<br><br> zu laden. Falls Sie ein geteiltes Dokument nutzen, könnte es ungeteilt worden sein.","~DOCSTORE.LOAD_SHARED_404_ERROR":"Das angeforderte geteilte Dokument konnte nicht geladen werden. <br><br> Möglicherweise wurde die Datei nicht geteilt?","~DOCSTORE.LOAD_404_ERROR":"%{filename} kann nicht geladen werden","~DOCSTORE.SAVE_403_ERROR":"Sie haben keine Berechtigung, um \'%{filename}\'.<br><br> zu speichern. Loggen Sie sich erneut ein.","~DOCSTORE.SAVE_DUPLICATE_ERROR":"%{filename} kann nicht erstellt werden. Das Dokument existiert bereits.","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"Kann nicht gespeichert werden: %{filename}: [%{message}]","~DOCSTORE.SAVE_ERROR":"Kann nicht gespeichert werden: %{filename}","~DOCSTORE.REMOVE_403_ERROR":"Sie haben keine Berechtigung, um \'%{filename}\'.<br><br> zu löschen. Loggen Sie sich erneut ein.","~DOCSTORE.REMOVE_ERROR":"Kann nicht gelöscht werden: %{filename}","~DOCSTORE.RENAME_403_ERROR":"Sie haben keine Berechtigung, um %{filename} umzubenennen.<br><br> Loggin Sie sich erneut ein.","~DOCSTORE.RENAME_ERROR":"Kann nicht umbenannt werden: %{filename}","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Concord Cloud Alarm","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Concord Cloud Alarm","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"An anderer Stelle speichern","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"Ich werde es später tun","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"Die Concord Cloud ist nicht erreichbar.","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"Bitte speichern Sie Ihre Dokumente an anderer Stelle.","~SHARE_DIALOG.SHARE_STATE":"Geteilte Ansicht:","~SHARE_DIALOG.SHARE_STATE_ENABLED":"aktiviert","~SHARE_DIALOG.SHARE_STATE_DISABLED":"deaktiviert","~SHARE_DIALOG.ENABLE_SHARING":"Teilen aktivieren","~SHARE_DIALOG.STOP_SHARING":"Teilen stoppen","~SHARE_DIALOG.UPDATE_SHARING":"Geteilte Ansicht aktualisieren","~SHARE_DIALOG.PREVIEW_SHARING":"Vorschau zu geteilter Ansicht","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"When Teilen aktiviert ist, wird eine Kopie der aktuellen Ansicht erstellt. Diese Kopie kann geteilt werden.","~SHARE_DIALOG.LINK_TAB":"Link","~SHARE_DIALOG.LINK_MESSAGE":"In eine Email oder Nachricht einfügen","~SHARE_DIALOG.EMBED_TAB":"Einbetten","~SHARE_DIALOG.EMBED_MESSAGE":"Code einbetten für Webseiten oder andere Inhalte","~SHARE_DIALOG.LARA_MESSAGE":"Diesen Link verwenden, um eine Aktivität in LARA zu erstellen","~SHARE_DIALOG.LARA_CODAP_URL":"CODAP Server URL:","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"Vollbild und Skalieren","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"Datensichtbarkeit in Graphen anzeigen","~CONFIRM.CHANGE_LANGUAGE":"Einige Änderungen wurden nicht gespeichert. Sind Sie sicher, dass Sie die Sprache wechseln wollen?","~FILE_STATUS.FAILURE":"Wiederholen...","~SHARE_DIALOG.PLEASE_WAIT":"Bitte warten während ein geteilter Link erzeugt wird...","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"Fehler beim Verbinden mit Google!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Es fehlt ein apiKey in den Provider Einstellungen von GoogleDrive","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"Datei kann nicht hochgeladen werden","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"Datei kann nicht hochgeladen werden: %(message)","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Diesen Link verwenden, um eine Aktivität zu erstellen","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Diese Version nutzen","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Vorschau anzeigen","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Aktualisiert am","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Seite","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Aktivität","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Eine andere Seite enthält aktuellere Daten. Welche sollen verwendet werden?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"Zum Weiterarbeiten gibt es zwei Möglichkeiten. Welche Version soll verwendet werden?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"Was soll getan werden?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"Es gibt eine schreibgeschützte Vorschau der Daten. Irgendwohin klicken, um sie zu schließen.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Please try logging in again and check all the boxes when prompted in the popup","~FILE_DIALOG.FILTER":"Filter results...","~GOOGLE_DRIVE.USERNAME_LABEL":"Username:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Select Different Google Account","~GOOGLE_DRIVE.MY_DRIVE":"My Drive","~GOOGLE_DRIVE.SHARED_DRIVES":"Shared Drives","~GOOGLE_DRIVE.SHARED_WITH_ME":"Shared With Me","~FILE_STATUS.CONTINUE_SAVE":"We will continue to try to save your changes.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},3150:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"Κείμενο Χωρίς Όνομα","~MENU.NEW":"Νέο","~MENU.OPEN":"Άνοιγμα ...","~MENU.CLOSE":"Κλείσιμο","~MENU.IMPORT_DATA":"Εισαγωγή δεδομένων ...","~MENU.SAVE":"Αποθήκευση","~MENU.SAVE_AS":"Αποθήκευση Ως ...","~MENU.EXPORT_AS":"Εξαγωγή Αρχείου Ως ...","~MENU.CREATE_COPY":"Δημιουργία αντιγράφου","~MENU.SHARE":"Κοινοποίηση","~MENU.SHARE_GET_LINK":"Λήψη συνδέσμου κοινόχρηστης προβολής","~MENU.SHARE_UPDATE":"Επικαιροποίηση κοινόχρηστης προβολής","~MENU.DOWNLOAD":"Λήψη","~MENU.RENAME":"Μετονομασία","~MENU.REVERT_TO":"Επιστροφή στο ...","~MENU.REVERT_TO_LAST_OPENED":"Κατάσταση πρόσφατου ανοίγματος","~MENU.REVERT_TO_SHARED_VIEW":"Κοινόχρηστη προβολή","~DIALOG.SAVE":"Αποθήκευση","~DIALOG.SAVE_AS":"Αποθήκευση Ως ...","~DIALOG.EXPORT_AS":"Εξαγωγή Αρχείου Ως ...","~DIALOG.CREATE_COPY":"Δημιουργία Αντιγράφου ...","~DIALOG.OPEN":"Άνοιγμα","~DIALOG.DOWNLOAD":"Λήψη","~DIALOG.RENAME":"Μετονομασία","~DIALOG.SHARED":"Κοινοποίηση","~DIALOG.IMPORT_DATA":"Εισαγωγή Δεδομένων","~PROVIDER.LOCAL_STORAGE":"Τοπική Αποθήκευση","~PROVIDER.READ_ONLY":"Μόνο Ανάγνωση","~PROVIDER.GOOGLE_DRIVE":"Google Drive","~PROVIDER.DOCUMENT_STORE":"Concord Cloud","~PROVIDER.LOCAL_FILE":"Τοπικό Αρχείο","~FILE_STATUS.SAVING":"Αποθήκευση ...","~FILE_STATUS.SAVED":"Όλες οι αλλαγές αποθηκεύθηκαν","~FILE_STATUS.SAVED_TO_PROVIDER":"Όλες οι αλλαγές αποθηκεύθηκαν στο %{providerName}","~FILE_STATUS.UNSAVED":"Μη Αποθηκευμένο","~FILE_DIALOG.FILENAME":"Όνομα Αρχείου","~FILE_DIALOG.OPEN":"Άνοιγμα","~FILE_DIALOG.SAVE":"Αποθήκευση","~FILE_DIALOG.CANCEL":"Ακύρωση","~FILE_DIALOG.REMOVE":"Διαγραφή","~FILE_DIALOG.REMOVE_CONFIRM":"Θέλετε σίγουρα να διαγράψετε το %{filename};","~FILE_DIALOG.REMOVED_TITLE":"Διαγραφή Αρχείου","~FILE_DIALOG.REMOVED_MESSAGE":"Το %{filename} διαγράφηκε","~FILE_DIALOG.LOADING":"Φόρτωση...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"*** Σφάλμα φόρτωσης περιεχομένων φακέλου ***","~FILE_DIALOG.DOWNLOAD":"Λήψη","~DOWNLOAD_DIALOG.DOWNLOAD":"Λήψη","~DOWNLOAD_DIALOG.CANCEL":"Ακύρωση","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"Να συμπεριληφθούν πληροφορίες κοινοποίησης στο αρχείο λήψης","~RENAME_DIALOG.RENAME":"Μετονομασία","~RENAME_DIALOG.CANCEL":"Ακύρωση","~SHARE_DIALOG.COPY":"Αντιγραφή","~SHARE_DIALOG.VIEW":"Προβολή","~SHARE_DIALOG.CLOSE":"Κλείσιμο","~SHARE_DIALOG.COPY_SUCCESS":"Η πληροφορίες έχουν αντιγραφεί στο πρόχειρο.","~SHARE_DIALOG.COPY_ERROR":"Λυπούμαστε, οι πληροφορίες δεν ήταν δυνατό να αντιγραφούν στο πρόχειρο.","~SHARE_DIALOG.COPY_TITLE":"Αντιγραφή Αποτελέσματος","~SHARE_DIALOG.LONGEVITY_WARNING":"Το κοινόχρηστο αντίγραφου αυτού του αρχείου θα διατηρηθεί έως ότου δεν έχει προβληθεί για περισσότερο από ένα έτος.","~SHARE_UPDATE.TITLE":"Η Κοινόχρηστη Προβολή Επικαιροποιήθηκε","~SHARE_UPDATE.MESSAGE":"Η κοινόχρηστη προβολή επικαιροποιήθηκε με επιτυχία.","~CONFIRM.OPEN_FILE":"Έχετε μη αποθηκευμένες αλλαγές. Είστε σίγουροι ότι θέλετε να ανοίξετε ένα νέο έγγραφο;","~CONFIRM.NEW_FILE":"Έχετε μη αποθηκευμένες αλλαγές. Είστε σίγουροι ότι θέλετε να δημιουργήσετε ένα νέο έγγραφο;","~CONFIRM.AUTHORIZE_OPEN":"Για το άνοιγμα του εγγράφου απαιτείται έγκριση. Θέλετε να συνεχίσετε με την έγκριση;","~CONFIRM.AUTHORIZE_SAVE":"Για την αποθήκευση του εγγράφου απαιτείται έγκριση. Θέλετε να συνεχίσετε με την έγκριση;","~CONFIRM.CLOSE_FILE":"Έχετε μη αποθηκευμένες αλλαγές. Είστε σίγουροι ότι θέλετε να κλείσετε αυτό το έγγραφο;","~CONFIRM.REVERT_TO_LAST_OPENED":"Είστε σίγουροι ότι θέλετε να επαναφέρετε το έγγραφο στην κατάσταση που το ανοίξατε την τελευταία φορά;","~CONFIRM.REVERT_TO_SHARED_VIEW":"Είστε σίγουροι ότι θέλετε να επαναφέρετε το έγγραφο στην κατάσταση που το κοινοποιήσατε την τελευταία φορά;","~CONFIRM_DIALOG.TITLE":"Είστε σίγουροι;","~CONFIRM_DIALOG.YES":"Ναι","~CONFIRM_DIALOG.NO":"Όχι","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"Σύρετε ένα αρχείο εδώ ή πατήστε εδώ για να επιλέξετε ένα αρχείο.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"Λυπούμαστε, μπορείτε να επιλέξετε ένα μόνο αρχείο για να ανοίξετε.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"Λυπούμαστε, δεν μπορείτε να σύρετε περισσότερα από ένα αρχεία.","~IMPORT.LOCAL_FILE":"Τοπικό Αρχείο","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"Λυπούμαστε, μπορείτε να επιλέξετε μόνο ένα url για να ανοίξετε.","~IMPORT_URL.PLEASE_ENTER_URL":"Παρακαλούμε πληκτρολογήστε ένα url για εισαγωγή.","~URL_TAB.DROP_URL_HERE":"Σύρετε ένα URL εδώ ή πληκτρολογήστε ένα URL παρακάτω","~URL_TAB.IMPORT":"Εισαγωγή","~CLIENT_ERROR.TITLE":"Σφάλμα","~ALERT_DIALOG.TITLE":"Προειδοποίηση","~ALERT_DIALOG.CLOSE":"Κλείσιμο","~ALERT.NO_PROVIDER":"Αυτο το αρχείο δεν ήταν δυνατό να ανοιχτεί διότι δεν είναι διαθέσιμος ο κατάλληλος πάροχος.","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"Είσοδος στο Google","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"Σύνδεση στο Google...","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"Δεν δόθηκε η απαραίτητη ταυτότητα χρήστη στiς επιλογές παρόχου του googleDrive","~DOCSTORE.LOAD_403_ERROR":"Δεν έχετε δικαίωμα φόρτωσης του %{filename}.<br><br>αν χρησιμοποιείτε κοινόχρηστο έγγραφο κάποιου άλλου, είναι πιθανό να έχει διακοπεί η κοινή χρήση.","~DOCSTORE.LOAD_SHARED_404_ERROR":"Δεν ήταν δυνατή η φόρτωση του κοινόχρηστου αρχείου που ζητήσατε.<br><br>Ίσως να μην έγινε κοινή χρήση του αρχείου;","~DOCSTORE.LOAD_404_ERROR":"Δεν ήταν δυνατή η φόρτωση του %{filename}","~DOCSTORE.SAVE_403_ERROR":"Δεν έχετε δικαίωμα αποθήκευσης του \'%{filename}\'.<br><br>Ίσως χρειάζετε να ξανασυνδεθείτε.","~DOCSTORE.SAVE_DUPLICATE_ERROR":"Δεν ήταν δυνατή η δημιουργία του %{filename}. Το αρχείο υπάρχει ήδη.","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"Δεν ήταν δυνατή η αποθήκευση του %{filename}: [%{message}]","~DOCSTORE.SAVE_ERROR":"Δεν ήταν δυνατή η αποθήκευση του %{filename}","~DOCSTORE.REMOVE_403_ERROR":"Δεν έχετε δικαίωμα διαγραφής του \'%{filename}\'.<br><br>Ίσως χρειάζετε να ξανασυνδεθείτε. ","~DOCSTORE.REMOVE_ERROR":"Δεν ήταν δυνατή η διαγραφή του %{filename} ","~DOCSTORE.RENAME_403_ERROR":"Δεν έχετε δικαίωμα μετονομασίας του \'%{filename}\'.<br><br>Ίσως χρειάζετε να ξανασυνδεθείτε. ","~DOCSTORE.RENAME_ERROR":"Δεν ήταν δυνατή η μετονομασία του %{filename} ","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Προειδοποίηση Concord Cloud","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Προειδοποίηση Concord Cloud","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"Αποθήκευση Αλλού","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"Θα το κάνω αργότερα","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"Το Concord Cloud έχει κλείσει!","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"Παρακαλούμε αποθηκεύστε τα έγγραφά σας σε άλλη τοποθεσία.","~SHARE_DIALOG.SHARE_STATE":"Κοινόχρηστη προβολή","~SHARE_DIALOG.SHARE_STATE_ENABLED":"ενεργοποιημένη","~SHARE_DIALOG.SHARE_STATE_DISABLED":"απενεργοποιημένη","~SHARE_DIALOG.ENABLE_SHARING":"Ενεργοποίηση κοινής χρήσης","~SHARE_DIALOG.STOP_SHARING":"Διακοπή κοινής χρήσης","~SHARE_DIALOG.UPDATE_SHARING":"Επικαιροποίηση κοινόχρηστης προβολής","~SHARE_DIALOG.PREVIEW_SHARING":"Προεπισκόπηση κοινόχρηστης προβολής","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"Όταν ενεργοποιείται η κοινή χρήση, δημιουργείται ένα αντίγραφο της συγκεκριμένης προβολής. Αυτό το αντίγραφο μπορεί να κοινοποιηθεί.","~SHARE_DIALOG.LINK_TAB":"Σύνδεσμος","~SHARE_DIALOG.LINK_MESSAGE":"Επικολλήστε το σε ένα email ή ένα μήνυμα κειμένου","~SHARE_DIALOG.EMBED_TAB":"Ενσωμάτωση","~SHARE_DIALOG.EMBED_MESSAGE":"Κώδικας για ενσωμάτωση σε ιστοσελίδες ή άλλο δικτυακό περιεχόμενο","~SHARE_DIALOG.LARA_MESSAGE":"Χρησιμοποιήστε αυτό το σύνδεσμο όταν δημιουργείτε μια δραστηριότητα στο LARA","~SHARE_DIALOG.LARA_CODAP_URL":"URL του διακομιστή CODAP:","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"Πλήκτρο πλήρους οθόνης και κλιμάκωση","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"Η προβολή δεδομένων ενεργοποιεί τα γραφήματα","~CONFIRM.CHANGE_LANGUAGE":"Έχετε μη αποθηκευμένες αλλαγές. Είστε σίγουροι ότι θέλετε να αλλάξετε γλώσσα;","~FILE_STATUS.FAILURE":"Retrying...","~SHARE_DIALOG.PLEASE_WAIT":"Please wait while we generate a shared link …","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"Error connecting to Google!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Missing required apiKey in googleDrive provider options","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"Unable to upload file","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"Unable to upload file: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Use this link when creating an activity for the Activity Player","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Use this version","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Click to preview","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Updated at","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Page","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Activity","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Another page contains more recent data. Which would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"There are two possibilities for continuing your work. Which version would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"What would you like to do?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"This is a read-only preview of your data. Click anywhere to close it.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Please try logging in again and check all the boxes when prompted in the popup","~FILE_DIALOG.FILTER":"Filter results...","~GOOGLE_DRIVE.USERNAME_LABEL":"Username:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Select Different Google Account","~GOOGLE_DRIVE.MY_DRIVE":"My Drive","~GOOGLE_DRIVE.SHARED_DRIVES":"Shared Drives","~GOOGLE_DRIVE.SHARED_WITH_ME":"Shared With Me","~FILE_STATUS.CONTINUE_SAVE":"We will continue to try to save your changes.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},3080:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"Untitled Document","~MENU.NEW":"New","~MENU.OPEN":"Open ...","~MENU.CLOSE":"Close","~MENU.IMPORT_DATA":"Import data...","~MENU.SAVE":"Save","~MENU.SAVE_AS":"Save As ...","~MENU.EXPORT_AS":"Export File As ...","~MENU.CREATE_COPY":"Create a copy","~MENU.SHARE":"Share...","~MENU.SHARE_GET_LINK":"Get link to shared view","~MENU.SHARE_UPDATE":"Update shared view","~MENU.DOWNLOAD":"Download","~MENU.RENAME":"Rename","~MENU.REVERT_TO":"Revert to...","~MENU.REVERT_TO_LAST_OPENED":"Recently opened state","~MENU.REVERT_TO_SHARED_VIEW":"Shared view","~DIALOG.SAVE":"Save","~DIALOG.SAVE_AS":"Save As ...","~DIALOG.EXPORT_AS":"Export File As ...","~DIALOG.CREATE_COPY":"Create A Copy ...","~DIALOG.OPEN":"Open","~DIALOG.DOWNLOAD":"Download","~DIALOG.RENAME":"Rename","~DIALOG.SHARED":"Share","~DIALOG.IMPORT_DATA":"Import Data","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Use this version","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Click to preview","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Updated at","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Page","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Activity","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Another page contains more recent data. Which would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"There are two possibilities for continuing your work. Which version would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"What would you like to do?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"This is a read-only preview of your data. Click anywhere to close it.","~PROVIDER.LOCAL_STORAGE":"Local Storage","~PROVIDER.READ_ONLY":"Read Only","~PROVIDER.GOOGLE_DRIVE":"Google Drive","~PROVIDER.DOCUMENT_STORE":"Concord Cloud","~PROVIDER.LOCAL_FILE":"Local File","~FILE_STATUS.SAVING":"Saving...","~FILE_STATUS.SAVED":"All changes saved","~FILE_STATUS.SAVED_TO_PROVIDER":"All changes saved to %{providerName}","~FILE_STATUS.UNSAVED":"Unsaved","~FILE_STATUS.FAILURE":"Retrying...","~FILE_STATUS.CONTINUE_SAVE":"We will continue to try to save your changes.","~FILE_DIALOG.FILENAME":"Filename","~FILE_DIALOG.OPEN":"Open","~FILE_DIALOG.SAVE":"Save","~FILE_DIALOG.CANCEL":"Cancel","~FILE_DIALOG.REMOVE":"Delete","~FILE_DIALOG.REMOVE_CONFIRM":"Are you sure you want to delete %{filename}?","~FILE_DIALOG.REMOVED_TITLE":"Deleted File","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename} was deleted","~FILE_DIALOG.LOADING":"Loading...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"*** Error loading folder contents ***","~FILE_DIALOG.DOWNLOAD":"Download","~FILE_DIALOG.FILTER":"Filter results...","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~DOWNLOAD_DIALOG.DOWNLOAD":"Download","~DOWNLOAD_DIALOG.CANCEL":"Cancel","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"Include sharing information in downloaded file","~RENAME_DIALOG.RENAME":"Rename","~RENAME_DIALOG.CANCEL":"Cancel","~SHARE_DIALOG.COPY":"Copy","~SHARE_DIALOG.VIEW":"View","~SHARE_DIALOG.CLOSE":"Close","~SHARE_DIALOG.COPY_SUCCESS":"The info has been copied to the clipboard.","~SHARE_DIALOG.COPY_ERROR":"Sorry, the info was not able to be copied to the clipboard.","~SHARE_DIALOG.COPY_TITLE":"Copy Result","~SHARE_DIALOG.LONGEVITY_WARNING":"The shared copy of this document will be retained until it has not been accessed for over a year.","~SHARE_DIALOG.SHARE_STATE":"Shared view: ","~SHARE_DIALOG.SHARE_STATE_ENABLED":"enabled","~SHARE_DIALOG.SHARE_STATE_DISABLED":"disabled","~SHARE_DIALOG.ENABLE_SHARING":"Enable sharing","~SHARE_DIALOG.STOP_SHARING":"Stop sharing","~SHARE_DIALOG.UPDATE_SHARING":"Update shared view","~SHARE_DIALOG.PREVIEW_SHARING":"Preview shared view","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"When sharing is enabled, a link to a copy of the current view is created. Opening this link provides each user with their own copy to interact with.","~SHARE_DIALOG.LINK_TAB":"Link","~SHARE_DIALOG.LINK_MESSAGE":"Provide others with their own copy of the shared view using the link below ","~SHARE_DIALOG.EMBED_TAB":"Embed","~SHARE_DIALOG.EMBED_MESSAGE":"Embed code for including in webpages or other web-based content","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Use this link when creating an activity for the Activity Player","~SHARE_DIALOG.LARA_MESSAGE":"Use this link when creating an activity in LARA","~SHARE_DIALOG.LARA_CODAP_URL":"CODAP Server URL:","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"Fullscreen button and scaling","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"Display data visibility toggles on graphs","~SHARE_DIALOG.PLEASE_WAIT":"Please wait while we generate a shared link …","~SHARE_UPDATE.TITLE":"Shared View Updated","~SHARE_UPDATE.MESSAGE":"The shared view was updated successfully. Updates can take up to 1 minute.","~CONFIRM.OPEN_FILE":"You have unsaved changes. Are you sure you want to open a new document?","~CONFIRM.NEW_FILE":"You have unsaved changes. Are you sure you want to create a new document?","~CONFIRM.AUTHORIZE_OPEN":"Authorization is required to open the document. Would you like to proceed with authorization?","~CONFIRM.AUTHORIZE_SAVE":"Authorization is required to save the document. Would you like to proceed with authorization?","~CONFIRM.CLOSE_FILE":"You have unsaved changes. Are you sure you want to close the document?","~CONFIRM.REVERT_TO_LAST_OPENED":"Are you sure you want to revert the document to its most recently opened state?","~CONFIRM.REVERT_TO_SHARED_VIEW":"Are you sure you want to revert the document to its most recently shared state?","~CONFIRM.CHANGE_LANGUAGE":"You have unsaved changes. Are you sure you want to change languages?","~CONFIRM_DIALOG.TITLE":"Are you sure?","~CONFIRM_DIALOG.YES":"Yes","~CONFIRM_DIALOG.NO":"No","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"Drop file here or click here to select a file.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"Sorry, you can choose only one file to open.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"Sorry, you can\'t drop more than one file.","~IMPORT.LOCAL_FILE":"Local File","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"Sorry, you can choose only one url to open.","~IMPORT_URL.PLEASE_ENTER_URL":"Please enter a url to import.","~URL_TAB.DROP_URL_HERE":"Drop URL here or enter URL below","~URL_TAB.IMPORT":"Import","~CLIENT_ERROR.TITLE":"Error","~ALERT_DIALOG.TITLE":"Alert","~ALERT_DIALOG.CLOSE":"Close","~ALERT.NO_PROVIDER":"Could not open the specified document because an appropriate provider is not available.","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"Login to Google","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"Connecting to Google...","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"Error connecting to Google!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Missing required apiKey in googleDrive provider options","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"Missing required clientId in googleDrive provider options","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"Unable to upload file","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"Unable to upload file: %{message}","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Please try logging in again and check all the boxes when prompted in the popup","~GOOGLE_DRIVE.USERNAME_LABEL":"Username:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Select Different Google Account","~GOOGLE_DRIVE.MY_DRIVE":"My Drive","~GOOGLE_DRIVE.SHARED_DRIVES":"Shared Drives","~GOOGLE_DRIVE.SHARED_WITH_ME":"Shared With Me","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application","~DOCSTORE.LOAD_403_ERROR":"You don\'t have permission to load %{filename}.<br><br>If you are using some else\'s shared document it may have been unshared.","~DOCSTORE.LOAD_SHARED_404_ERROR":"Unable to load the requested shared document.<br><br>Perhaps the file was not shared?","~DOCSTORE.LOAD_404_ERROR":"Unable to load %{filename}","~DOCSTORE.SAVE_403_ERROR":"You don\'t have permission to save \'%{filename}\'.<br><br>You may need to log in again.","~DOCSTORE.SAVE_DUPLICATE_ERROR":"Unable to create %{filename}. File already exists.","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"Unable to save %{filename}: [%{message}]","~DOCSTORE.SAVE_ERROR":"Unable to save %{filename}","~DOCSTORE.REMOVE_403_ERROR":"You don\'t have permission to remove %{filename}.<br><br>You may need to log in again.","~DOCSTORE.REMOVE_ERROR":"Unable to remove %{filename}","~DOCSTORE.RENAME_403_ERROR":"You don\'t have permission to rename %{filename}.<br><br>You may need to log in again.","~DOCSTORE.RENAME_ERROR":"Unable to rename %{filename}","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Concord Cloud Alert","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Concord Cloud Alert","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"Save Elsewhere","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"I\'ll do it later","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"The Concord Cloud has been shut down!","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"Please save your documents to another location."}')},1645:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"Documento sin título","~MENU.NEW":"Nuevo","~MENU.OPEN":"Abrir ...","~MENU.CLOSE":"Cerrar","~MENU.IMPORT_DATA":"Importar datos...","~MENU.SAVE":"Guardar","~MENU.SAVE_AS":"Guardar como ...","~MENU.EXPORT_AS":"Exportar archivo como ...","~MENU.CREATE_COPY":"Crear una copia","~MENU.SHARE":"Compartir...","~MENU.SHARE_GET_LINK":"Obtener enlace de la vista compartida","~MENU.SHARE_UPDATE":"Actualizar vista compartida","~MENU.DOWNLOAD":"Bajar","~MENU.RENAME":"Renombrar","~MENU.REVERT_TO":"Revertir a...","~MENU.REVERT_TO_LAST_OPENED":"Estado recientemente abierto","~MENU.REVERT_TO_SHARED_VIEW":"Vista compartida","~DIALOG.SAVE":"Guardar","~DIALOG.SAVE_AS":"Guardar como ...","~DIALOG.EXPORT_AS":"Exportar archivo como ...","~DIALOG.CREATE_COPY":"Crear una copia ...","~DIALOG.OPEN":"Abrir","~DIALOG.DOWNLOAD":"Bajar","~DIALOG.RENAME":"Renombrar","~DIALOG.SHARED":"Compartir","~DIALOG.IMPORT_DATA":"Importar datos","~PROVIDER.LOCAL_STORAGE":"Almacenamiento local","~PROVIDER.READ_ONLY":"Sólo lectura","~PROVIDER.GOOGLE_DRIVE":"Google Drive","~PROVIDER.DOCUMENT_STORE":"Concord Cloud","~PROVIDER.LOCAL_FILE":"Archivo local","~FILE_STATUS.SAVING":"Guardando...","~FILE_STATUS.SAVED":"Se guardaron todos los cambios","~FILE_STATUS.SAVED_TO_PROVIDER":"Se guardaron todos los cambios en %{providerName}","~FILE_STATUS.UNSAVED":"Sin guardar","~FILE_DIALOG.FILENAME":"Nombre de archivo","~FILE_DIALOG.OPEN":"Abrir","~FILE_DIALOG.SAVE":"Guardar","~FILE_DIALOG.CANCEL":"Cancelar","~FILE_DIALOG.REMOVE":"Eliminar","~FILE_DIALOG.REMOVE_CONFIRM":"¿Confirma eliminar el archivo %{filename}?","~FILE_DIALOG.REMOVED_TITLE":"Archivo eliminado","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename} fue eliminado","~FILE_DIALOG.LOADING":"Cargando...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"*** Error al cargar contenido de la carpeta ***","~FILE_DIALOG.DOWNLOAD":"Bajar","~DOWNLOAD_DIALOG.DOWNLOAD":"Bajar","~DOWNLOAD_DIALOG.CANCEL":"Cancelar","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"Incluir información para compartir en archivo bajado","~RENAME_DIALOG.RENAME":"Renombrar","~RENAME_DIALOG.CANCEL":"Cancelar","~SHARE_DIALOG.COPY":"Copiar","~SHARE_DIALOG.VIEW":"Ver","~SHARE_DIALOG.CLOSE":"Cerrar","~SHARE_DIALOG.COPY_SUCCESS":"La información ha sido copiada al portapapeles","~SHARE_DIALOG.COPY_ERROR":"Disculpas, la información no pudo copiarse al portapapeles","~SHARE_DIALOG.COPY_TITLE":"Resultado de la copia","~SHARE_DIALOG.LONGEVITY_WARNING":"La copia compartida de este documento será retenida hasta que no sea accedida a lo largo de un año.","~SHARE_UPDATE.TITLE":"Se actualizó la vista compartida","~SHARE_UPDATE.MESSAGE":"La vista compartida fue actualizada exitosamente.","~CONFIRM.OPEN_FILE":"Hay cambios sin guardar. ¿Desea igual abrir un nuevo documento?","~CONFIRM.NEW_FILE":"Hay cambios sin guardar. ¿Desea igual crear un nuevo documento?","~CONFIRM.AUTHORIZE_OPEN":"Se requiere autorización para abrir el documento. ¿Desea proceder con la autorización?","~CONFIRM.AUTHORIZE_SAVE":"Se requiere autorización para guardar el documento. ¿Desea proceder con la autorización?","~CONFIRM.CLOSE_FILE":"Hay cambios sin guardar. ¿Desea igual cerrar el documento?","~CONFIRM.REVERT_TO_LAST_OPENED":"¿Confirma que quiere revertir el documento a su estado abierto más reciente?","~CONFIRM.REVERT_TO_SHARED_VIEW":"¿Confirma que quiere revertir el documento a su estado compartido más reciente?","~CONFIRM_DIALOG.TITLE":"¿Confirma?","~CONFIRM_DIALOG.YES":"Sí","~CONFIRM_DIALOG.NO":"No","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"Arrastrar archivo acá o clic acá para seleccionar un archivo.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"Disculpas, sólo se puede elegir un archivo para abrir.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"Disculpas, no se pueden soltar más de un archivo.","~IMPORT.LOCAL_FILE":"Archivo local","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"Disculpas, sólo se puede elegir una URL para abrir","~IMPORT_URL.PLEASE_ENTER_URL":"Por favor ingresar una URL para importar.","~URL_TAB.DROP_URL_HERE":"Arrastrar URL acá or ingresar URL debajo","~URL_TAB.IMPORT":"Importar","~CLIENT_ERROR.TITLE":"Error","~ALERT_DIALOG.TITLE":"Alerta","~ALERT_DIALOG.CLOSE":"Cerrar","~ALERT.NO_PROVIDER":"No se pudo abrir el documento especificado porque no hay disponible un proveedor apropiado.","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"Loguearse en Google","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"Conectando con Google...","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"Falta el id de cliente requerido en las opciones de proveedor de GoogleDrive","~DOCSTORE.LOAD_403_ERROR":"No tiene permiso para cargar el archivo %{filename}.<br><br>Si está usando un documento compartido por otro quizás no esté más compartido.","~DOCSTORE.LOAD_SHARED_404_ERROR":"No se pudo cargar el documento compartido requerido.<br><br>Quizás el archivo no haya sido compartido de modo adecuado","~DOCSTORE.LOAD_404_ERROR":"No se pudo cargar el archivo %{filename}","~DOCSTORE.SAVE_403_ERROR":"No tiene permiso para guardar el archivo \'%{filename}\'.<br><br>Necesita loguearse de nuevo.\\n","~DOCSTORE.SAVE_DUPLICATE_ERROR":"No se pudo crear %{filename}. Ya existe un archivo con ese nombre.\\n","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"No se pudo guardar %{filename}: [%{message}]","~DOCSTORE.SAVE_ERROR":"No se pudo guardar %{filename}","~DOCSTORE.REMOVE_403_ERROR":"No tiene permiso para quitar el archivo %{filename}.<br><br>Necesita loguearse de nuevo.","~DOCSTORE.REMOVE_ERROR":"No se pudo remover %{filename}","~DOCSTORE.RENAME_403_ERROR":"No tiene permiso para renombrar el archivo %{filename}.<br><br>Necesita loguearse de nuevo.","~DOCSTORE.RENAME_ERROR":"No se pudo renombrar %{filename}","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Alerta de Concord Cloud","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Alerta de Concord Cloud","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"Guardar en cualquier lugar","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"Lo haré más tarde","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"Concord Cloud ha sido cerrado","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"Por favor guardar sus documentos en otra ubicación.","~SHARE_DIALOG.SHARE_STATE":"Vista compartida:","~SHARE_DIALOG.SHARE_STATE_ENABLED":"habilitada","~SHARE_DIALOG.SHARE_STATE_DISABLED":"deshabilitada","~SHARE_DIALOG.ENABLE_SHARING":"Habilitar compartir","~SHARE_DIALOG.STOP_SHARING":"Dejar de compartir","~SHARE_DIALOG.UPDATE_SHARING":"Actualizar vista compartida","~SHARE_DIALOG.PREVIEW_SHARING":"Vista previa","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"Cuando compartir está habilitado, se crea una copia. Esta copia puede ser compartida.","~SHARE_DIALOG.LINK_TAB":"Enlace","~SHARE_DIALOG.LINK_MESSAGE":"Pegar esto en mail o mensaje","~SHARE_DIALOG.EMBED_TAB":"Incrustar","~SHARE_DIALOG.EMBED_MESSAGE":"Código para incluir en otros sitios web","~SHARE_DIALOG.LARA_MESSAGE":"Usar este enlace al crear actividad en LARA","~SHARE_DIALOG.LARA_CODAP_URL":"URL server CODAP:","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"Pantalla completa y escalar","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"Switchear ver datos en gráficos","~CONFIRM.CHANGE_LANGUAGE":"Hay cambios sin guardar. ¿Seguro de cambiar de idioma?","~FILE_STATUS.FAILURE":"Reintento..","~SHARE_DIALOG.PLEASE_WAIT":"Por favor espere mientras se genera el enlace...","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"Error al conectarse a Google","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Falta la clave API requerida en las opciones del proveedor de Google Drive","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"No se pudo subir el archivo","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"No se pudo subir el archivo: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Usar este enlace al crear una actividad para el Activity Player","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Usar esta versión","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Clic para vista previa","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Actualizado en","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Página","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Actividad","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Hay otra página que contiene información más reciente. ¿Cuál desea utilizar?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"Hay dos posibilidades de continuar con su trabajo. ¿Cuál versión prefiere?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"¿Qué le gustaría hacer?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"Esta es una vista previa de sus datos sin edición. Clic en cualquier lado para cerrarla.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Intente iniciar sesión nuevamente y marque todas las casillas cuando se le solicite en la ventana emergente","~FILE_DIALOG.FILTER":"Resultados del filtro...","~GOOGLE_DRIVE.USERNAME_LABEL":"Nombre de usuario:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Seleccionar una cuenta de Google diferente","~GOOGLE_DRIVE.MY_DRIVE":"Mi Drive","~GOOGLE_DRIVE.SHARED_DRIVES":"Drives compartidos","~GOOGLE_DRIVE.SHARED_WITH_ME":"Compartido conmigo","~FILE_STATUS.CONTINUE_SAVE":"Seguiremos intentando guardar los cambios.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},9051:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"سند بدون عنوان","~MENU.NEW":"جدید","~MENU.OPEN":"باز کردن","~MENU.CLOSE":"بستن","~MENU.IMPORT_DATA":"انتقال داده ها","~MENU.SAVE":"ذخیره سازی","~MENU.SAVE_AS":"ذخیره سازی به عنوان ...","~MENU.EXPORT_AS":"صدور پرونده در ...","~MENU.CREATE_COPY":"ایجاد رو نوشت","~MENU.SHARE":"اشنراک گذاری ...","~MENU.SHARE_GET_LINK":"دریافت پیوند محتوای اشتراک گذاری شده","~MENU.SHARE_UPDATE":"بروز رسانی محتوای اشتراک گذاری شده","~MENU.DOWNLOAD":"دریافت","~MENU.RENAME":"تغییر نام","~MENU.REVERT_TO":"رجوع دادن به ","~MENU.REVERT_TO_LAST_OPENED":"محتوای باز شده اخیر ","~MENU.REVERT_TO_SHARED_VIEW":"محتوای اشتراک گذاری شده","~DIALOG.SAVE":"ذخیره سازی","~DIALOG.SAVE_AS":"ذخیره سازی به عنوان ...","~DIALOG.EXPORT_AS":"صدور پرونده در ...","~DIALOG.CREATE_COPY":"ایجاد نسخه براری ...","~DIALOG.OPEN":"بازکردن","~DIALOG.DOWNLOAD":"دریافت کردن","~DIALOG.RENAME":"تغییر نام","~DIALOG.SHARED":"اشتراک گذاری","~DIALOG.IMPORT_DATA":"انتقال داده ها","~PROVIDER.LOCAL_STORAGE":"حافظه محلی","~PROVIDER.READ_ONLY":"فقط خواندنی","~PROVIDER.GOOGLE_DRIVE":"Google Drive\\n","~PROVIDER.DOCUMENT_STORE":"Concord Cloud","~PROVIDER.LOCAL_FILE":"فایل محلی","~FILE_STATUS.SAVING":"درحال ذخیره سازی...","~FILE_STATUS.SAVED":"همه ی تغییرات ذخیره شد","~FILE_STATUS.SAVED_TO_PROVIDER":"همه ی تغییرات در % ذخیره شد ","~FILE_STATUS.UNSAVED":"ذخیره نشده","~FILE_DIALOG.FILENAME":"نام فایل","~FILE_DIALOG.OPEN":"باز کردن","~FILE_DIALOG.SAVE":"ذهیره کردن","~FILE_DIALOG.CANCEL":"لغو کردن","~FILE_DIALOG.REMOVE":"پاک کردن","~FILE_DIALOG.REMOVE_CONFIRM":"آیا مطمئن هستید که میخواهید % را پاک کنید؟","~FILE_DIALOG.REMOVED_TITLE":"فایل پاک شده","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename} پاک شده است","~FILE_DIALOG.LOADING":"در حال بارگزاری…","~FILE_DIALOG.LOAD_FOLDER_ERROR":"***اخطار بارگزاری محتوای پوشه***","~FILE_DIALOG.DOWNLOAD":"دریافت کردن","~DOWNLOAD_DIALOG.DOWNLOAD":"دریافت کردن","~DOWNLOAD_DIALOG.CANCEL":"لغو کردن","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"شامل اطلاعات اشتراکی در فایل دریافت شده","~RENAME_DIALOG.RENAME":"تغییر نام","~RENAME_DIALOG.CANCEL":"لغو کردن","~SHARE_DIALOG.COPY":"رونوشت","~SHARE_DIALOG.VIEW":"دیدن","~SHARE_DIALOG.CLOSE":"بستن","~SHARE_DIALOG.COPY_SUCCESS":"اطلاعات در کلیپ بورد رونوشت شدهاند","~SHARE_DIALOG.COPY_ERROR":"متاسفم، اطلاعات قابل رونوشت در کلیپ بورد نبودند","~SHARE_DIALOG.COPY_TITLE":"نتیجه کپی","~SHARE_DIALOG.LONGEVITY_WARNING":"رونوشت به اشتراک گذاشته شدهی این سند پس از آخرین مراجعه به مدت یک سال نگهداری خواهد شد.","~SHARE_UPDATE.TITLE":"نمای اشتراکی بروز شد","~SHARE_UPDATE.MESSAGE":"این نمایشی اشتراکی با موفقیت به روز رسانی شد. به روز رسانی ممکن است یک دقیقه طول بکشد.\\n","~CONFIRM.OPEN_FILE":"شما تغییرات ذخیره نشده دارید. آیا مطمئن هستید که میخواهید سند جدیدی باز کنید؟","~CONFIRM.NEW_FILE":"شما تغییرات ذخیره نشده دارید. آیا مطمئن هستید که میخواهید سند جدیدی بسازید؟","~CONFIRM.AUTHORIZE_OPEN":"برای باز کردن فایل مجوز لازم است. آیا مایل هستید با مجوز اقدام کنید؟","~CONFIRM.AUTHORIZE_SAVE":"برای ذخیره سند مجوز لازم است. آیا مایل هستید با مجوز اقدام کنید؟","~CONFIRM.CLOSE_FILE":"شما تغییرات ذخیره نشده دارید. آیا مطمئن هستید که میخواهید این سند را ببندید؟","~CONFIRM.REVERT_TO_LAST_OPENED":"آیا مطمئن هستید که میخواهید این سند را به آخرین محتوا باز شده ارجاع دهید؟","~CONFIRM.REVERT_TO_SHARED_VIEW":"آیا مطمئن هستید که میخواهید این سند را به آخرین محتوا اشتراک گذاشته شده ارجاع دهید؟","~CONFIRM_DIALOG.TITLE":"آیا مطمئن هستید؟","~CONFIRM_DIALOG.YES":"بله","~CONFIRM_DIALOG.NO":"خیر","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"فایل را اینجا رها کنید یا اینجا را کلیک کنید تا یک فایل را انتخاب کنید.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"متاسفم، شما میتوانید فقط یک فایل را باز کنید.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"متاسفم، شما نمیتوانید بیش از یک فایل را رها کنید.","~IMPORT.LOCAL_FILE":"فایل محلی","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"متاسفم، شما میتوانید فقط یک url را باز کنید.","~IMPORT_URL.PLEASE_ENTER_URL":"لطفا برای وارد شدن یک URL وارد کنید.","~URL_TAB.DROP_URL_HERE":"URL را در اینجا رها کنید یا URL را در پایین وارد کنید","~URL_TAB.IMPORT":"وارد کردن ","~CLIENT_ERROR.TITLE":"خطا","~ALERT_DIALOG.TITLE":"هشدار","~ALERT_DIALOG.CLOSE":"بستن","~ALERT.NO_PROVIDER":"سند مشخص شده باز نشد زیرا ارائهدهنده مناسبی موجود نیست.","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"ورود به گوگل","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"در حال اتصال به گوگل …","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"شناسه مشتری مورد نیاز در گزینههای ارائهدهنده گوگل درایو وجود ندارد ","~DOCSTORE.LOAD_403_ERROR":"شما اجازهی بارگزاری %{filename} را ندارید.<br><br> اگر از سند اشتراک گذاشته شدهی دیگری استفاده میکنید ممکن است به اشتراک گذاشته نشده باشد","~DOCSTORE.LOAD_SHARED_404_ERROR":"قادر به فراخوانی سند بارگزاری شده نیست.<br><br> شاید این فایل به اشتراک گذاشته نشده است؟","~DOCSTORE.LOAD_404_ERROR":"قادر به بارگزاری %{filename} نیست","~DOCSTORE.SAVE_403_ERROR":"شما اجازهی ذخیرهی %{filename} ندارید.<br><br> شاید نیاز است دوباره وارد شوید.","~DOCSTORE.SAVE_DUPLICATE_ERROR":"قادر به ساخت %{filename} نیست.فایل از پیش موجود است.","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"قادر به ذخیرهی %{filename} نیست:[%{message}]","~DOCSTORE.SAVE_ERROR":"قادر به ذخیرهی %{filename} نیست","~DOCSTORE.REMOVE_403_ERROR":"شما اجازهی حذف %{filename} را ندارید.<br><br> شاید نیاز است دوباره وارد شوید.","~DOCSTORE.REMOVE_ERROR":"قادر به حذف %{filename} نیست","~DOCSTORE.RENAME_403_ERROR":"شما اجازهی تغییر نام %{filename} را ندارید.<br><br> شاید نیاز است دوباره وارد شوید.","~DOCSTORE.RENAME_ERROR":"قادر به تغییر نام %{filename} نیست","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Concord Cloudهشدار","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Concord Cloud هشدار","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"ذخیره در جای دیگر","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"بعدا انجام خواهم داد","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"Concord Cloud بسته شده است","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"لطفا سندهایتان را در محل دیگری ذخیره کنید","~SHARE_DIALOG.SHARE_STATE":"نمای اشتراکی:","~SHARE_DIALOG.SHARE_STATE_ENABLED":"فعال","~SHARE_DIALOG.SHARE_STATE_DISABLED":"غیرفعال","~SHARE_DIALOG.ENABLE_SHARING":"فعال کردن اشتراک گذاری","~SHARE_DIALOG.STOP_SHARING":"توقف اشتراک گذاری","~SHARE_DIALOG.UPDATE_SHARING":"به روز رسانی نمای اشتراکی","~SHARE_DIALOG.PREVIEW_SHARING":"پیش نمایش نمای اشتراکی","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"زمانی که اشتراک گذاری فعال است، رونوشتی از نمای کنونی ساخته میشود. کپی می تواند به اشتراک گذاشته شود.","~SHARE_DIALOG.LINK_TAB":"پیوند","~SHARE_DIALOG.LINK_MESSAGE":"این را در یک ایمیل یا پیام متنی الصاق کنید. ","~SHARE_DIALOG.EMBED_TAB":"جاسازی کردن ","~SHARE_DIALOG.EMBED_MESSAGE":"کد را برای درج در صفحات وب یا سایر محتوای مبتنی بر وب جاسازی کنید","~SHARE_DIALOG.LARA_MESSAGE":"این پیوند را هنگام ساخت یک فعالیت در LARA به کار ببرید","~SHARE_DIALOG.LARA_CODAP_URL":"URL سرور CODAP","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"دکمه تمام صفحه و مقیاسبندی","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"نمایش کلیدهای رویت داده ها روی نمودار","~CONFIRM.CHANGE_LANGUAGE":"شما تغییرات ذخیره نشده دارید. آیا مطمئن هستید که میخواهید زبانها را تغییر دهید؟","~FILE_STATUS.FAILURE":"تلاش دوباره...","~SHARE_DIALOG.PLEASE_WAIT":"لطفا صبر کنید تا ما یک پیوند اشتراکی تولید کنیم...","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"اخطار وصل شدن به گوگل!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"API key مورد نیاز در گزینههای ارائهدهنده گوگل درایو وجود ندارد ","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"قادر به آپلود فایل نیست","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"قادر به آپلود فایل نیست: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"این پیوند را هنگام ساخت یک فعالیت برای Activity Player به کار ببرید","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"این نسخه را به کار ببرید","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"برای پیش نمایش کلیک کنید","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"به روز رسانی شده در ","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"صفحه","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"فعالیت","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"صفحهی دیگر شامل دادههای جدیدتری است. مایل هستید کدام را به کار ببرید؟","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"دو امکان برای ادامه دادن کار شما وجود دارد. مایل هستید کدام یک را به کار ببرید؟","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"مایل هستید چه کار کنید؟","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"این یک پیش نمایش فقط خواندنی از دادههایتان هست. برای بستن آن روی هر جایی کلیک کنید.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Please try logging in again and check all the boxes when prompted in the popup","~FILE_DIALOG.FILTER":"Filter results...","~GOOGLE_DRIVE.USERNAME_LABEL":"Username:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Select Different Google Account","~GOOGLE_DRIVE.MY_DRIVE":"My Drive","~GOOGLE_DRIVE.SHARED_DRIVES":"Shared Drives","~GOOGLE_DRIVE.SHARED_WITH_ME":"Shared With Me","~FILE_STATUS.CONTINUE_SAVE":"We will continue to try to save your changes.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},8537:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"מסמך לא שמור","~MENU.NEW":"חדש","~MENU.OPEN":"פתח","~MENU.CLOSE":"סגור","~MENU.IMPORT_DATA":"יבא נתונים","~MENU.SAVE":"שמור","~MENU.SAVE_AS":"שמור בשם","~MENU.EXPORT_AS":"יצא קובץ","~MENU.CREATE_COPY":"צור עותק","~MENU.SHARE":"שתף","~MENU.SHARE_GET_LINK":"קבל קישור לצפיה שיתופית","~MENU.SHARE_UPDATE":"עדכן צפיה שיתופית","~MENU.DOWNLOAD":"הורד","~MENU.RENAME":"שנה שם","~MENU.REVERT_TO":"החזר ל","~MENU.REVERT_TO_LAST_OPENED":"מצב פתוח לאחרונה","~MENU.REVERT_TO_SHARED_VIEW":"צפיה שיתופית","~DIALOG.SAVE":"שמור","~DIALOG.SAVE_AS":"שמור בשם","~DIALOG.EXPORT_AS":"יצא קובץ כ","~DIALOG.CREATE_COPY":"צור עותק...","~DIALOG.OPEN":"פתח","~DIALOG.DOWNLOAD":"הורד","~DIALOG.RENAME":"שנה שם","~DIALOG.SHARED":"שתף","~DIALOG.IMPORT_DATA":"יבא נתונים","~PROVIDER.LOCAL_STORAGE":"אחסון מקומי","~PROVIDER.READ_ONLY":"קריאה בלבד","~PROVIDER.GOOGLE_DRIVE":"שרת GOOGLE","~PROVIDER.DOCUMENT_STORE":"ענן CONCORD","~PROVIDER.LOCAL_FILE":"קובץ מקומי","~FILE_STATUS.SAVING":"שומר...","~FILE_STATUS.SAVED":"כל השינויים נשמרו","~FILE_STATUS.SAVED_TO_PROVIDER":"כל השינויים נשמרו ל %{providerName}","~FILE_STATUS.UNSAVED":"לא שמור","~FILE_DIALOG.FILENAME":"שם קובץ","~FILE_DIALOG.OPEN":"פתח","~FILE_DIALOG.SAVE":"שמור","~FILE_DIALOG.CANCEL":"בטל","~FILE_DIALOG.REMOVE":"מחק","~FILE_DIALOG.REMOVE_CONFIRM":"האם אתם בטוחים שברצונכם למחוק את %{filename}","~FILE_DIALOG.REMOVED_TITLE":"קובץ מחוק","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename} נמחק","~FILE_DIALOG.LOADING":"טוען...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"*** טעות בעת טעינת תוכן הקובץ ***","~FILE_DIALOG.DOWNLOAD":"הורד","~DOWNLOAD_DIALOG.DOWNLOAD":"הורד","~DOWNLOAD_DIALOG.CANCEL":"בטל","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"צרף נתוני שיתוף בקובץ שהורד","~RENAME_DIALOG.RENAME":"שנה שם","~RENAME_DIALOG.CANCEL":"בטל","~SHARE_DIALOG.COPY":"העתק","~SHARE_DIALOG.VIEW":"צפה","~SHARE_DIALOG.CLOSE":"סגור","~SHARE_DIALOG.COPY_SUCCESS":"המידע הועתק ללוח","~SHARE_DIALOG.COPY_ERROR":"סליחה, המידע לא ניתן להעתקה ללוח","~SHARE_DIALOG.COPY_TITLE":"העתק תוצאה","~SHARE_DIALOG.LONGEVITY_WARNING":"העותק השיתופי של מסמך זה ישמר עד שנה ללא שימוש","~SHARE_UPDATE.TITLE":"צפיה שיתופית עודכנה","~SHARE_UPDATE.MESSAGE":"הצפיה השיתופית עודכנה בהצלחה","~CONFIRM.OPEN_FILE":"ישנם שינויים לא שמורים. האם אתם בטוחים שברצונכם לפתוח מסמך חדש?","~CONFIRM.NEW_FILE":"ישנם שינויים לא שמורים. האם אתם בטוחים שברצונכם ליצור מסמך חדש?","~CONFIRM.AUTHORIZE_OPEN":"נדרש אישור לפתיחת המסמך. להמשיך עם אישור?","~CONFIRM.AUTHORIZE_SAVE":"נדרש אישור לשמירת המסמך. להמשיך עם אישור?","~CONFIRM.CLOSE_FILE":"ישנם שינויים לא שמורים. לסגור את המסמך?","~CONFIRM.REVERT_TO_LAST_OPENED":"בטוח שברצונכם להחזיר את המסמך למצב הפתוח האחרון?","~CONFIRM.REVERT_TO_SHARED_VIEW":"בטוח שברצונכם להחזיר את המסמך למצב השיתופי האחרון?","~CONFIRM_DIALOG.TITLE":"בטוח?","~CONFIRM_DIALOG.YES":"כן","~CONFIRM_DIALOG.NO":"לא","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"שחרר קובץ כאן או הקלק לבחירת קובץ","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"סליחה, ניתן לבחור רק קובץ אחד לפתיחה.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"סליחה, לא ניתן לשחרר יותר מקובץ אחד.","~IMPORT.LOCAL_FILE":"קובץ מקומי","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"סליחה, ניתן לפתוח רק קישור אחד","~IMPORT_URL.PLEASE_ENTER_URL":"הקלידו URL ליבוא","~URL_TAB.DROP_URL_HERE":"שחרר URL פה או הקלד URL מתחת","~URL_TAB.IMPORT":"יבא","~CLIENT_ERROR.TITLE":"טעות","~ALERT_DIALOG.TITLE":"אזהרה","~ALERT_DIALOG.CLOSE":"סגור","~ALERT.NO_PROVIDER":"לא ניתן לפתוח את המסמך מפני שהשרת אינו זמין","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"הכנס לGOOGLE","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"מתחבר לGOOGLE","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"חסרים פרטי לקוח בGOOGLE","~DOCSTORE.LOAD_403_ERROR":"אין אישור לפתוח את %. אם אתם משתמשים במסמך שיתופי של מישהו אחר ייתכן שהקובץ לא נשמר.","~DOCSTORE.LOAD_SHARED_404_ERROR":"לא ניתן להעלות את המסמך השיתופי המבוקש. אולי הקובץ לא שותף?","~DOCSTORE.LOAD_404_ERROR":"לא ניתן להעלות את %","~DOCSTORE.SAVE_403_ERROR":"אין אישור לשמירת \'%{filename}\'.<br><br> ייתכן שתצטרכו להכנס שוב.","~DOCSTORE.SAVE_DUPLICATE_ERROR":"לא ניתן ליצור את %{filename} הקובץ כבר קיים.","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"לא ניתן לשמור את %{filename}: [%{message}]","~DOCSTORE.SAVE_ERROR":"לא ניתן לשמור את %{filename}","~DOCSTORE.REMOVE_403_ERROR":"אין אישור להסרת %{filename}.<br><br> יש צורך להכנס שוב.","~DOCSTORE.REMOVE_ERROR":"לא ניתן להסיר את %{filename}","~DOCSTORE.RENAME_403_ERROR":"אין אישור לשינוי שם %{filename}.<br><br> יש צורך להכנס שוב.","~DOCSTORE.RENAME_ERROR":"לא ניתן לשנות את שם %{filename}","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"אזהרת ענן CONCORD","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"אזהרת ענן CONCORD","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"שמור במקום אחר","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"יותר מאוחר","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"ענן CONCORD נסגר!","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"שמור מסמך במיקום אחר.","~SHARE_DIALOG.SHARE_STATE":"תצוגה שיתופית:␣","~SHARE_DIALOG.SHARE_STATE_ENABLED":"פעיל","~SHARE_DIALOG.SHARE_STATE_DISABLED":"לא פעיל","~SHARE_DIALOG.ENABLE_SHARING":"הפעלת שיתוף","~SHARE_DIALOG.STOP_SHARING":"עצירת שיתוף","~SHARE_DIALOG.UPDATE_SHARING":"עדכון תצוגה שיתופית","~SHARE_DIALOG.PREVIEW_SHARING":"צפיה מוקדמת בתצוגה שיתופית","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"כאשר השיתוף פעיל, נוצר עותק של התצוגה הנוכחית. עותק זה יכול להיות משותף.","~SHARE_DIALOG.LINK_TAB":"קישור","~SHARE_DIALOG.LINK_MESSAGE":"הדביקו את הקישור לאימייל או להודעת טקסט","~SHARE_DIALOG.EMBED_TAB":"שילוב","~SHARE_DIALOG.EMBED_MESSAGE":"שילוב הקוד להוספה בעמודי רשת או תוכן רשתי אחר","~SHARE_DIALOG.LARA_MESSAGE":"השתמשו בקישור זה בעת יצירת פעילות LARA","~SHARE_DIALOG.LARA_CODAP_URL":"URL של שרת CODAP:","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"כפתור מסך מלא ומירכוז","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"הצגת מידע ויזואלי בגרפים","~CONFIRM.CHANGE_LANGUAGE":"יש לכם שינויים לא שמורים. אתם בטוחים שתרצו להחליף שפה?","~FILE_STATUS.FAILURE":"Retrying...","~SHARE_DIALOG.PLEASE_WAIT":"Please wait while we generate a shared link …","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"Error connecting to Google!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Missing required apiKey in googleDrive provider options","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"Unable to upload file","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"Unable to upload file: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Use this link when creating an activity for the Activity Player","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Use this version","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Click to preview","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Updated at","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Page","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Activity","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Another page contains more recent data. Which would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"There are two possibilities for continuing your work. Which version would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"What would you like to do?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"This is a read-only preview of your data. Click anywhere to close it.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Please try logging in again and check all the boxes when prompted in the popup","~FILE_DIALOG.FILTER":"Filter results...","~GOOGLE_DRIVE.USERNAME_LABEL":"Username:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Select Different Google Account","~GOOGLE_DRIVE.MY_DRIVE":"My Drive","~GOOGLE_DRIVE.SHARED_DRIVES":"Shared Drives","~GOOGLE_DRIVE.SHARED_WITH_ME":"Shared With Me","~FILE_STATUS.CONTINUE_SAVE":"We will continue to try to save your changes.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},5189:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"未保存のファイル","~MENU.NEW":"新規","~MENU.OPEN":"開く","~MENU.CLOSE":"閉じる","~MENU.IMPORT_DATA":"データを取り込む","~MENU.SAVE":"保存する","~MENU.SAVE_AS":"保存先を選択する","~MENU.EXPORT_AS":"ファイルを転送する","~MENU.CREATE_COPY":"コピーを作成する","~MENU.SHARE":"共有する","~MENU.SHARE_GET_LINK":"共有可能なリンクを取得する","~MENU.SHARE_UPDATE":"画面を更新する","~MENU.DOWNLOAD":"ダウンロードする","~MENU.RENAME":"名前を変える","~MENU.REVERT_TO":"戻る","~MENU.REVERT_TO_LAST_OPENED":"一つ戻る","~MENU.REVERT_TO_SHARED_VIEW":"画面を初期化する","~DIALOG.SAVE":"保存する","~DIALOG.SAVE_AS":"保存先を選択する","~DIALOG.EXPORT_AS":"ファイルを転送する","~DIALOG.CREATE_COPY":"コピーを作成する","~DIALOG.OPEN":"開く","~DIALOG.DOWNLOAD":"ダウンロード","~DIALOG.RENAME":"名前の変更","~DIALOG.SHARED":"共有する","~DIALOG.IMPORT_DATA":"データを取り込む","~PROVIDER.LOCAL_STORAGE":"内部ストレージ","~PROVIDER.READ_ONLY":"読み込みに限る","~PROVIDER.GOOGLE_DRIVE":"Google Drive","~PROVIDER.DOCUMENT_STORE":"Concord Cloud","~PROVIDER.LOCAL_FILE":"名前を付けて保存","~FILE_STATUS.SAVING":"保存する…","~FILE_STATUS.SAVED":"すべての変更を保存する","~FILE_STATUS.SAVED_TO_PROVIDER":"全ての変更が%{providerName}に保存されました","~FILE_STATUS.UNSAVED":"未保存です","~FILE_DIALOG.FILENAME":"ファイル名","~FILE_DIALOG.OPEN":"開く","~FILE_DIALOG.SAVE":"保存","~FILE_DIALOG.CANCEL":"キャンセル","~FILE_DIALOG.REMOVE":"削除","~FILE_DIALOG.REMOVE_CONFIRM":"%{filename}を削除しますか","~FILE_DIALOG.REMOVED_TITLE":"削除されたファイル","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename}は削除されました","~FILE_DIALOG.LOADING":"読み込み中です…","~FILE_DIALOG.LOAD_FOLDER_ERROR":"*** フォルダー内容のエラーを読み込み中 ***","~FILE_DIALOG.DOWNLOAD":"ダウンロード","~DOWNLOAD_DIALOG.DOWNLOAD":"ダウンロード","~DOWNLOAD_DIALOG.CANCEL":"キャンセル","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"ダウンロードファイル内の共有情報を含む","~RENAME_DIALOG.RENAME":"名前の変更","~RENAME_DIALOG.CANCEL":"キャンセル","~SHARE_DIALOG.COPY":"コピー","~SHARE_DIALOG.VIEW":"画面","~SHARE_DIALOG.CLOSE":"閉じる","~SHARE_DIALOG.COPY_SUCCESS":"クリップボードにコピーされました。","~SHARE_DIALOG.COPY_ERROR":"申し訳ありませんが、クリップボードにコピーできませんでした。","~SHARE_DIALOG.COPY_TITLE":"コピー結果","~SHARE_DIALOG.LONGEVITY_WARNING":"この文書の共有コピーは1年間保存されました。","~SHARE_UPDATE.TITLE":"共有画面を上書きする","~SHARE_UPDATE.MESSAGE":"共有画面の上書きに成功しました。","~CONFIRM.OPEN_FILE":"変更が保存されていません。新しいファイルを開きますか?","~CONFIRM.NEW_FILE":"変更が保存されていません。新しいファイルを作成しますか?","~CONFIRM.AUTHORIZE_OPEN":"ファイルを開くのに承認が必要です。承認を行いますか?","~CONFIRM.AUTHORIZE_SAVE":"ファイルを保存するのに承認が必要です。承認を行いますか?","~CONFIRM.CLOSE_FILE":"変更が保存されていません。ファイルを閉じますか?","~CONFIRM.REVERT_TO_LAST_OPENED":"最近開かれた状態へファイルを変換してもよろしいでしょうか?","~CONFIRM.REVERT_TO_SHARED_VIEW":"最近共有された状態へファイルを変換してもよろしいでしょうか?","~CONFIRM_DIALOG.TITLE":"よろしいですか?","~CONFIRM_DIALOG.YES":"YES","~CONFIRM_DIALOG.NO":"NO","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"ここへファイルをドロップするか、クリックするとファイルが開けます。","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"申し訳ありませんが、開けるファイルは一つまでです。","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"申し訳ありませんが、ドロップできるファイルは一つまでです。","~IMPORT.LOCAL_FILE":"自分のファイル","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"申し訳ありませんが、開けるURLは一つまでです。","~IMPORT_URL.PLEASE_ENTER_URL":"取り込むURLを入力してください。","~URL_TAB.DROP_URL_HERE":"ここにURLをドロップするか、下にURLを入力してください","~URL_TAB.IMPORT":"取り込み","~CLIENT_ERROR.TITLE":"エラー","~ALERT_DIALOG.TITLE":"警告","~ALERT_DIALOG.CLOSE":"閉じる","~ALERT.NO_PROVIDER":"適切なプロバイダーが利用できないため、このファイルを開けません。","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"グーグルにログインします","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"グーグルに接続しています…","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"グーグルドライブとの接続に失敗しました","~DOCSTORE.LOAD_403_ERROR":"%{filename}をロードするのに承認が必要です。<br><br>もしあなたが他の人の共有されたファイルを使っているならば、それは共有されていない可能性があります。","~DOCSTORE.LOAD_SHARED_404_ERROR":"共有ファイルの読み込みに失敗しました。<br><br>文章が共有されていない可能性はありませんか?","~DOCSTORE.LOAD_404_ERROR":"%{filename}の読み込みに失敗しました","~DOCSTORE.SAVE_403_ERROR":"\'%{filename}\'を保存する権限がありません。<br><br>再びログインする必要性があるかもしれません。","~DOCSTORE.SAVE_DUPLICATE_ERROR":"%{filename}を作成することができません。文章は既に存在しています。","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"%{filename}: [%{message}]を保存することができません","~DOCSTORE.SAVE_ERROR":"%{filename}を保存することができません","~DOCSTORE.REMOVE_403_ERROR":"%{filename}を削除するためには承認が必要です。<br><br>再びログインする可能性があります。","~DOCSTORE.REMOVE_ERROR":"%{filename}を削除することができません","~DOCSTORE.RENAME_403_ERROR":"%{filename}の名前を変更するには承認が必要です。<br><br>再びログインする可能性があります。","~DOCSTORE.RENAME_ERROR":"%{filename}の名前を変更することができません。","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Concord Cloud アラート","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Concord Cloud アラート","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"他の場所に保存する","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"後で行います","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"Concord Cloudはシャットダウンしました。","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"他の場所にファイルを保存してください","~SHARE_DIALOG.SHARE_STATE":"画面共有:","~SHARE_DIALOG.SHARE_STATE_ENABLED":"可能です","~SHARE_DIALOG.SHARE_STATE_DISABLED":"編集が必要です","~SHARE_DIALOG.ENABLE_SHARING":"共有可能にする","~SHARE_DIALOG.STOP_SHARING":"共有を停止します","~SHARE_DIALOG.UPDATE_SHARING":"共有されている画面を上書きします","~SHARE_DIALOG.PREVIEW_SHARING":"共有画面のプレビュー","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"共有可能になると、現在の画面のコピーが作成されます。\\nこのコピーを共有することができます。","~SHARE_DIALOG.LINK_TAB":"リンク","~SHARE_DIALOG.LINK_MESSAGE":"メールアドレスかテキストを貼り付けてください。","~SHARE_DIALOG.EMBED_TAB":"埋め込み","~SHARE_DIALOG.EMBED_MESSAGE":"ウェブページもしくは他のウェブベースコンテンツに埋め込まれたコード","~SHARE_DIALOG.LARA_MESSAGE":" LARAで活動を作成するときにこのリンクを用います","~SHARE_DIALOG.LARA_CODAP_URL":"CODAPサーバーURL:","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"フルスクリーンボタンおよびスケール","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"グラフ上にデータ可視化タグを表示する","~CONFIRM.CHANGE_LANGUAGE":"変更が保存されていません。言語を変更してもよろしいですか。","~FILE_STATUS.FAILURE":"再接続しています…","~SHARE_DIALOG.PLEASE_WAIT":"Please wait while we generate a shared link …","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"Error connecting to Google!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Missing required apiKey in googleDrive provider options","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"Unable to upload file","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"Unable to upload file: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Use this link when creating an activity for the Activity Player","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Use this version","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Click to preview","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Updated at","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Page","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Activity","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Another page contains more recent data. Which would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"There are two possibilities for continuing your work. Which version would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"What would you like to do?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"This is a read-only preview of your data. Click anywhere to close it.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Please try logging in again and check all the boxes when prompted in the popup","~FILE_DIALOG.FILTER":"Filter results...","~GOOGLE_DRIVE.USERNAME_LABEL":"Username:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Select Different Google Account","~GOOGLE_DRIVE.MY_DRIVE":"My Drive","~GOOGLE_DRIVE.SHARED_DRIVES":"Shared Drives","~GOOGLE_DRIVE.SHARED_WITH_ME":"Shared With Me","~FILE_STATUS.CONTINUE_SAVE":"We will continue to try to save your changes.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},5481:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"제목없음","~MENU.NEW":"새 문서","~MENU.OPEN":"불러오기","~MENU.CLOSE":"닫기","~MENU.IMPORT_DATA":"데이터 가져오기","~MENU.SAVE":"저장","~MENU.SAVE_AS":"다른 이름으로 저장","~MENU.EXPORT_AS":"다른 이름으로 내보내기","~MENU.CREATE_COPY":"사본 만들기","~MENU.SHARE":"공유","~MENU.SHARE_GET_LINK":"공유 문서 링크 만들기","~MENU.SHARE_UPDATE":"공유 문서 업데이트","~MENU.DOWNLOAD":"다운로드","~MENU.RENAME":"이름 바꾸기","~MENU.REVERT_TO":"되돌리기","~MENU.REVERT_TO_LAST_OPENED":"가장 최근에 불러온 상태로","~MENU.REVERT_TO_SHARED_VIEW":"공유 문서 보기","~DIALOG.SAVE":"저장","~DIALOG.SAVE_AS":"다른 이름으로 저장","~DIALOG.EXPORT_AS":"다른 이름으로 내보내기","~DIALOG.CREATE_COPY":"사본 만들기","~DIALOG.OPEN":"불러오기","~DIALOG.DOWNLOAD":"다운로드","~DIALOG.RENAME":"이름 바꾸기","~DIALOG.SHARED":"공유","~DIALOG.IMPORT_DATA":"데이터 가져오기","~PROVIDER.LOCAL_STORAGE":"로컬 저장소","~PROVIDER.READ_ONLY":"읽기 전용","~PROVIDER.GOOGLE_DRIVE":"구글 드라이브","~PROVIDER.DOCUMENT_STORE":"Concord 클라우드","~PROVIDER.LOCAL_FILE":"로컬 파일","~FILE_STATUS.SAVING":"저장 중...","~FILE_STATUS.SAVED":"모든 변경사항이 저장됨","~FILE_STATUS.SAVED_TO_PROVIDER":"모든 변경사항을 %{providerName}에 저장됨","~FILE_STATUS.UNSAVED":"저장되지 않음","~FILE_DIALOG.FILENAME":"파일명","~FILE_DIALOG.OPEN":"불러오기","~FILE_DIALOG.SAVE":"저장","~FILE_DIALOG.CANCEL":"취소","~FILE_DIALOG.REMOVE":"삭제","~FILE_DIALOG.REMOVE_CONFIRM":"%{filename}을 삭제할까요?","~FILE_DIALOG.REMOVED_TITLE":"삭제한 파일","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename}이 삭제되었습니다.","~FILE_DIALOG.LOADING":"불러오는 중...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"*** 불러오는 중 오류 발생 ***","~FILE_DIALOG.DOWNLOAD":"컴퓨터에 저장하기","~DOWNLOAD_DIALOG.DOWNLOAD":"다운로드","~DOWNLOAD_DIALOG.CANCEL":"취소","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"공유정보 포함하기","~RENAME_DIALOG.RENAME":"이름 바꾸기","~RENAME_DIALOG.CANCEL":"취소","~SHARE_DIALOG.COPY":"복사","~SHARE_DIALOG.VIEW":"보기","~SHARE_DIALOG.CLOSE":"닫기","~SHARE_DIALOG.COPY_SUCCESS":"클립보드에 복사하였습니다.","~SHARE_DIALOG.COPY_ERROR":"클립보드에 복사할 수 없습니다.","~SHARE_DIALOG.COPY_TITLE":"결과","~SHARE_DIALOG.LONGEVITY_WARNING":"공유한 사본은 1년이상 엑세스 되지 않을 때까지 보관됩니다. 1년간 사용 기록이 없으면 공유된 사본 문서가 삭제됩니다.","~SHARE_UPDATE.TITLE":"공유 문서 업데이트","~SHARE_UPDATE.MESSAGE":"공유 문서가 업데이트 되었습니다. 1분내로 반영됩니다.","~CONFIRM.OPEN_FILE":"저장하지 않은 변경사항이 있습니다. 다른 문서를 불러올까요?","~CONFIRM.NEW_FILE":"저장하지 않은 변경사항이 있습니다. 새 문서를 생성할까요?","~CONFIRM.AUTHORIZE_OPEN":"권한이 필요합니다. 계속할까요?","~CONFIRM.AUTHORIZE_SAVE":"권한이 필요합니다. 계속할까요?","~CONFIRM.CLOSE_FILE":"저장하지 않은 변경사항이 있습니다. 문서를 닫을까요?","~CONFIRM.REVERT_TO_LAST_OPENED":"문서를 가장 최근에 불러온 상태로 되돌릴까요?","~CONFIRM.REVERT_TO_SHARED_VIEW":"문서를 가장 최근에 공유한 상태로 되돌릴까요?","~CONFIRM_DIALOG.TITLE":"계속할까요?","~CONFIRM_DIALOG.YES":"예","~CONFIRM_DIALOG.NO":"아니오","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"파일을 끌어 놓거나 이곳을 클릭하여 파일을 선택하세요.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"하나의 파일만 열 수 있습니다.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"둘 이상의 파일을 삭제할 수 없습니다.","~IMPORT.LOCAL_FILE":"로컬 파일","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"하나의 URL만 선택할 수 있습니다.","~IMPORT_URL.PLEASE_ENTER_URL":"가져올 URL을 입력하세요.","~URL_TAB.DROP_URL_HERE":"URL 전체를 선택하여 이곳에 끌어 놓거나 아래에 URL을 입력하세요.","~URL_TAB.IMPORT":"데이터 가져오기","~CLIENT_ERROR.TITLE":"오류","~ALERT_DIALOG.TITLE":"알림","~ALERT_DIALOG.CLOSE":"닫기","~ALERT.NO_PROVIDER":"적절한 연결 프로그램을 찾을 수 없습니다.","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"Google에 로그인","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"Google에 연결 중...","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"구글 계정을 확인하세요.","~DOCSTORE.LOAD_403_ERROR":"%{filename}을 불러올 수 없습니다. 다른 사람의 공유 문서를 사용하고 있다면 공유가 취소되었을 수 있습니다.","~DOCSTORE.LOAD_SHARED_404_ERROR":"요청하신 공유 문서를 불러올 수 없습니다. 파일이 공유되었는지 확인하세요.","~DOCSTORE.LOAD_404_ERROR":"%{filename}을 불러올 수 없습니다.","~DOCSTORE.SAVE_403_ERROR":"%{filename}을 저장할 권한이 없습니다. 다시 로그인 하세요.","~DOCSTORE.SAVE_DUPLICATE_ERROR":"이미 존재하는 파일입니다.","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"%{filename}을 저장할 수 없습니다. : [%{message}]","~DOCSTORE.SAVE_ERROR":"%{filename}을 저장할 수 없습니다.","~DOCSTORE.REMOVE_403_ERROR":"%{filename}(를)을 삭제할 권한이 없습니다. 다시 로그인 하세요.","~DOCSTORE.REMOVE_ERROR":"%{filename}(를)을 삭제할 수 없습니다.","~DOCSTORE.RENAME_403_ERROR":"%{filename}파일명을 변경할 권한이 없습니다. 다시 로그인 하세요.","~DOCSTORE.RENAME_ERROR":"%{filename}파일명을 변경할 수 없습니다.","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Concord 클라우드 알림","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Concord 클라우드 알림","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"다른 위치에 저장하세요.","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"잠시 기다려주세요.","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"Concord 클라우드가 종료되었습니다.","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"문서를 다른 위치에 저장하세요.","~SHARE_DIALOG.SHARE_STATE":"공유 문서: ","~SHARE_DIALOG.SHARE_STATE_ENABLED":"활성화","~SHARE_DIALOG.SHARE_STATE_DISABLED":"비활성화","~SHARE_DIALOG.ENABLE_SHARING":"공유 활성화","~SHARE_DIALOG.STOP_SHARING":"공유 중지","~SHARE_DIALOG.UPDATE_SHARING":"공유 문서 업데이트","~SHARE_DIALOG.PREVIEW_SHARING":"공유 문서 미리보기","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"공유가 활성화되면 현재 문서의 복사본이 생성됩니다. 복사본은 공유할 수 있습니다.","~SHARE_DIALOG.LINK_TAB":"링크","~SHARE_DIALOG.LINK_MESSAGE":"URL 복사하기","~SHARE_DIALOG.EMBED_TAB":"임베드","~SHARE_DIALOG.EMBED_MESSAGE":"웹페이지에 추가할 코드 복사하기","~SHARE_DIALOG.LARA_MESSAGE":"LARA에서 액티비티를 만들 때 이 링크를 사용하세요.","~SHARE_DIALOG.LARA_CODAP_URL":"CODAP 서버 URL:","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"화면크기 변경","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"그래프에서 데이터 표시/숨김","~CONFIRM.CHANGE_LANGUAGE":"저장되지 않은 변경사항이 있습니다. 언어를 변경할까요?","~FILE_STATUS.FAILURE":"재시도 중...","~SHARE_DIALOG.PLEASE_WAIT":"공유 링크 생성 중...","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"구글 연결 오류","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"구글 드라이브 접근에 필요한 apiKey를 확인할 수 없습니다.","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"파일을 업로드할 수 없습니다.","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"파일을 업로드할 수 없습니다.: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Activity Player에서 액티비티를 만들 때 이 링크를 사용하십시오.","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"현재 버전 사용","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"미리보기","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"업데이트 완료","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"페이지","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"액티비티","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"다른 페이지에 최신 데이터가 포함되어 있습니다. 어떤 것을 사용할까요?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"작업을 계속할 수 있는 두 가지 버전이 있습니다. 어떤 버전을 사용할까요?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"어떤 작업을 할까요?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"미리보기 화면입니다. 닫으려면 아무 곳이나 클릭하세요.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"다시 로그인 하세요. 팝업 메시지가 표시되면 모든 체크 박스를 선택하세요.","~FILE_DIALOG.FILTER":"결과","~GOOGLE_DRIVE.USERNAME_LABEL":"사용자명:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"다른 구글 계정을 선택하세요.","~GOOGLE_DRIVE.MY_DRIVE":"내 드라이브","~GOOGLE_DRIVE.SHARED_DRIVES":"공유 드라이브","~GOOGLE_DRIVE.SHARED_WITH_ME":"공유 문서함","~FILE_STATUS.CONTINUE_SAVE":"변경 사항 저장 중...","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},9258:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"Dokument uten navn","~MENU.NEW":"Ny","~MENU.OPEN":"Åpne ...","~MENU.CLOSE":"Lukk","~MENU.IMPORT_DATA":"Importér data","~MENU.SAVE":"Lagre","~MENU.SAVE_AS":"Lagre som ...","~MENU.EXPORT_AS":"Eksportér fil som ...","~MENU.CREATE_COPY":"Lag kopi","~MENU.SHARE":"Del ...","~MENU.SHARE_GET_LINK":"Få lenke til delt visning","~MENU.SHARE_UPDATE":"Oppdatér delt visning","~MENU.DOWNLOAD":"Last ned","~MENU.RENAME":"Gi nytt navn","~MENU.REVERT_TO":"Tilbakestill til ...","~MENU.REVERT_TO_LAST_OPENED":"Siste åpnede versjon","~MENU.REVERT_TO_SHARED_VIEW":"Delt visning","~DIALOG.SAVE":"Lagre","~DIALOG.SAVE_AS":"Lagre som ...","~DIALOG.EXPORT_AS":"Eksportér fil som ...","~DIALOG.CREATE_COPY":"Lag en kopi ...","~DIALOG.OPEN":"Åpne","~DIALOG.DOWNLOAD":"Last ned","~DIALOG.RENAME":"Gi nytt navn","~DIALOG.SHARED":"Del","~DIALOG.IMPORT_DATA":"Importér data","~PROVIDER.LOCAL_STORAGE":"På denne enheten","~PROVIDER.READ_ONLY":"Kun leseversjon","~PROVIDER.GOOGLE_DRIVE":"Google Drive","~PROVIDER.DOCUMENT_STORE":"Concord Cloud","~PROVIDER.LOCAL_FILE":"Lokal fil","~FILE_STATUS.SAVING":"Lagrer...","~FILE_STATUS.SAVED":"Alle endringer lagret","~FILE_STATUS.SAVED_TO_PROVIDER":"Alle endringer lagret til","~FILE_STATUS.UNSAVED":"Ikke lagret","~FILE_DIALOG.FILENAME":"Filnavn","~FILE_DIALOG.OPEN":"Åpne","~FILE_DIALOG.SAVE":"Lagre","~FILE_DIALOG.CANCEL":"Avbryt","~FILE_DIALOG.REMOVE":"Slett","~FILE_DIALOG.REMOVE_CONFIRM":"Er du sikker på at du vil slette %{filename}?","~FILE_DIALOG.REMOVED_TITLE":"Slettet fil","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename} ble slettet","~FILE_DIALOG.LOADING":"Laster...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"***Feil ved lasting av innholdet i mappa***","~FILE_DIALOG.DOWNLOAD":"Last ned","~DOWNLOAD_DIALOG.DOWNLOAD":"Last ned","~DOWNLOAD_DIALOG.CANCEL":"Avbryt","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"Inkludér delingsinformasjon i den nedlastede fila","~RENAME_DIALOG.RENAME":"Gi nytt navn","~RENAME_DIALOG.CANCEL":"Avbryt","~SHARE_DIALOG.COPY":"Kopier","~SHARE_DIALOG.VIEW":"Se","~SHARE_DIALOG.CLOSE":"Lukk","~SHARE_DIALOG.COPY_SUCCESS":"Informasjonen har blitt kopiert til utklippstavla","~SHARE_DIALOG.COPY_ERROR":"Det var dessverre ikke mulig å kopiere innholdet til utklippstavla.","~SHARE_DIALOG.COPY_TITLE":"Kopiér","~SHARE_DIALOG.LONGEVITY_WARNING":"Den delte kopien av dette dokumentet beholdes helt til kopien ikke har vært i bruk på over ett år.","~SHARE_UPDATE.TITLE":"Delt visning oppdatert","~SHARE_UPDATE.MESSAGE":"Oppdatering av den delte visningen var vellykket.","~CONFIRM.OPEN_FILE":"Du har endringer som ikke er lagret. Er du sikker på at du vil åpne et nytt dokument?","~CONFIRM.NEW_FILE":"Du har endringer som ikke er lagret. Er du sikker på at du opprette et nytt dokument?","~CONFIRM.AUTHORIZE_OPEN":"Autorisering er nødvendig for å åpne dokumentet. Vil du gå videre med autorisering?","~CONFIRM.AUTHORIZE_SAVE":"Autorisering er nødvendig for å lagre dokumentet. Vil du gå videre med autorisering?","~CONFIRM.CLOSE_FILE":"Du har endringer som ikke er lagret. Er du sikker på at du vil lukke dokumentet?","~CONFIRM.REVERT_TO_LAST_OPENED":"Er du sikker på at du vil tilbakestille dokumentet til siste åpnede versjon?","~CONFIRM.REVERT_TO_SHARED_VIEW":"Er du sikker på at du til tilbakestille dokumentet til siste delte versjon?","~CONFIRM_DIALOG.TITLE":"Er du sikker?","~CONFIRM_DIALOG.YES":"Ja","~CONFIRM_DIALOG.NO":"Nei","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"Slipp filen her eller klikk for å velge fil","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"Du kan bare åpne én fil.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"Du kan ikke slippe mer enn én fil.","~IMPORT.LOCAL_FILE":"Lokal fil","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"Du kan bare åpne en URL.","~IMPORT_URL.PLEASE_ENTER_URL":"Skriv inn URLen du vil importere.","~URL_TAB.DROP_URL_HERE":"Slipp URL her eller skriv inn URL under","~URL_TAB.IMPORT":"Importér","~CLIENT_ERROR.TITLE":"Feil","~ALERT_DIALOG.TITLE":"Advarsel","~ALERT_DIALOG.CLOSE":"Lukk","~ALERT.NO_PROVIDER":"Kunne ikke åpne dokumentet fordi en passende tilbyder ikke er tilgjengelig.","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"Logg på Google","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"Kobler til Google...","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"Mangler nødvendig klientId i Google Drive","~DOCSTORE.LOAD_403_ERROR":"Du har ikke tillatelse til å laste %{filename}.<br><br>Hvis du bruker et dokument som noen andre har delt, så kan delingen ha blitt slått av.","~DOCSTORE.LOAD_SHARED_404_ERROR":"Klarte ikke å laste det delte dokumentet. <br><br>Sjekk om dokumentet virkelig er delt.","~DOCSTORE.LOAD_404_ERROR":"Kunne ikke laste %{filename}","~DOCSTORE.SAVE_403_ERROR":"Du har ikke tillatelse til å lagre \'%{filename}\'.<br><br>Du må kanskje logge inn på nytt.","~DOCSTORE.SAVE_DUPLICATE_ERROR":"Kunne ikke opprette %{filename}. Filen finnes allerede.","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"Kunne ikke lagre %{filename}:[%{message}]","~DOCSTORE.SAVE_ERROR":"Kunne ikke lagre %{filename}","~DOCSTORE.REMOVE_403_ERROR":"Du har ikke tillatelse til å fjerne %{filename}.<br><br>Du må kanskje logge inn på nytt.","~DOCSTORE.REMOVE_ERROR":"Kunne ikke fjerne %{filename}","~DOCSTORE.RENAME_403_ERROR":"Du har ikke tillatelse til å endre navnet på %{filename}.<br><br>Du må kanskje logge inn på nytt.","~DOCSTORE.RENAME_ERROR":"Kunne ikke endre navn på %{filename}","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Concord Cloud Advarsel","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Concord Cloud Advarsel","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"Lagre et annet sted","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"Jeg gjør det en annen gang","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"Concourd Clouden er avsluttet!","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"Velg annen plassering for å lagre dokumentene.","~SHARE_DIALOG.SHARE_STATE":"Delt visning: ","~SHARE_DIALOG.SHARE_STATE_ENABLED":"aktivert","~SHARE_DIALOG.SHARE_STATE_DISABLED":"deaktivert","~SHARE_DIALOG.ENABLE_SHARING":"Aktiver deling","~SHARE_DIALOG.STOP_SHARING":"Avslutt deling","~SHARE_DIALOG.UPDATE_SHARING":"Oppdater delt visning","~SHARE_DIALOG.PREVIEW_SHARING":"Forhåndsvisning av delt visning","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"Når deling er aktivert vil en kopi av den nåværende visningen bli opprettet. Kopien kan deles.","~SHARE_DIALOG.LINK_TAB":"Lenke","~SHARE_DIALOG.LINK_MESSAGE":"Lim inn dette i en e-post eller tekstmelding","~SHARE_DIALOG.EMBED_TAB":"Embed","~SHARE_DIALOG.EMBED_MESSAGE":"Embedkode for å sette inn på nettsteder eller annet nett-basert innhold","~SHARE_DIALOG.LARA_MESSAGE":"Bruk denne lenken når du lager en oppgave i LARA","~SHARE_DIALOG.LARA_CODAP_URL":"CODAP-server URL","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"Fullskjermknapp og skalering","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"Vis knapp for synlighet av data i grafer","~CONFIRM.CHANGE_LANGUAGE":"Du har endringer som ikke er lagret. Er du sikker på at du vil endre språk?","~FILE_STATUS.FAILURE":"Prøver på nytt...","~SHARE_DIALOG.PLEASE_WAIT":"Please wait while we generate a shared link …","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"Klarte ikke å koble til Google!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Missing required apiKey in googleDrive provider options","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"Klarte ikke å laste opp fil","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"Unable to upload file: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Use this link when creating an activity for the Activity Player","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Bruk denne versjonen","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Klikk for å forhåndsvise","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Oppdatert","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Side","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Aktivitet","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Another page contains more recent data. Which would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"There are two possibilities for continuing your work. Which version would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"Hva vil du gjøre?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"This is a read-only preview of your data. Click anywhere to close it.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Please try logging in again and check all the boxes when prompted in the popup","~FILE_DIALOG.FILTER":"Filtrer resultater...","~GOOGLE_DRIVE.USERNAME_LABEL":"Brukernavn:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Velg en annen Google-konto","~GOOGLE_DRIVE.MY_DRIVE":"My Drive","~GOOGLE_DRIVE.SHARED_DRIVES":"Shared Drives","~GOOGLE_DRIVE.SHARED_WITH_ME":"Shared With Me","~FILE_STATUS.CONTINUE_SAVE":"We will continue to try to save your changes.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},8881:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"Dokument utan namn","~MENU.NEW":"Ny","~MENU.OPEN":"Opne...","~MENU.CLOSE":"Lukk","~MENU.IMPORT_DATA":"Importér data...","~MENU.SAVE":"Lagre","~MENU.SAVE_AS":"Lagres som...","~MENU.EXPORT_AS":"Eksporter fil som...","~MENU.CREATE_COPY":"Lag ein kopi","~MENU.SHARE":"Del...","~MENU.SHARE_GET_LINK":"Få lenkje til delt visning","~MENU.SHARE_UPDATE":"Oppdatér delt visning","~MENU.DOWNLOAD":"Last ned","~MENU.RENAME":"Gi nytt namn","~MENU.REVERT_TO":"Tilbakestill til...","~MENU.REVERT_TO_LAST_OPENED":"Sist opna versjon","~MENU.REVERT_TO_SHARED_VIEW":"Delt visning","~DIALOG.SAVE":"Lagre","~DIALOG.SAVE_AS":"Lagre som...","~DIALOG.EXPORT_AS":"Eksporter fil som...","~DIALOG.CREATE_COPY":"Lag ein kopi...","~DIALOG.OPEN":"Opne","~DIALOG.DOWNLOAD":"Last ned","~DIALOG.RENAME":"Gi nytt namn","~DIALOG.SHARED":"Del","~DIALOG.IMPORT_DATA":"Importér data","~PROVIDER.LOCAL_STORAGE":"Lokal lagring","~PROVIDER.READ_ONLY":"Leseversjon","~PROVIDER.GOOGLE_DRIVE":"Google Drive","~PROVIDER.DOCUMENT_STORE":"Concord Cloud","~PROVIDER.LOCAL_FILE":"Lokal fil","~FILE_STATUS.SAVING":"Lagrer...","~FILE_STATUS.SAVED":"Alle endringer er lagra","~FILE_STATUS.SAVED_TO_PROVIDER":"Alle endringer er lagra i %{providerName}","~FILE_STATUS.UNSAVED":"Ikkje lagra","~FILE_DIALOG.FILENAME":"Filnamn","~FILE_DIALOG.OPEN":"Opne","~FILE_DIALOG.SAVE":"Lagre","~FILE_DIALOG.CANCEL":"Avbryt","~FILE_DIALOG.REMOVE":"Slett","~FILE_DIALOG.REMOVE_CONFIRM":"Er du sikker på at du vil slette %{filename}?","~FILE_DIALOG.REMOVED_TITLE":"Sletta fil","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename} vart sletta","~FILE_DIALOG.LOADING":"Lastar...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"*** Feil ved lasting av innholdet i mappa ***","~FILE_DIALOG.DOWNLOAD":"Last ned","~DOWNLOAD_DIALOG.DOWNLOAD":"Last ned","~DOWNLOAD_DIALOG.CANCEL":"Avbryt","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"Inkluder detaljer om deling i den nedlasta fila","~RENAME_DIALOG.RENAME":"Gi nytt namn","~RENAME_DIALOG.CANCEL":"Avbryt","~SHARE_DIALOG.COPY":"Kopier","~SHARE_DIALOG.VIEW":"Vis","~SHARE_DIALOG.CLOSE":"Lukk","~SHARE_DIALOG.COPY_SUCCESS":"Informasjonen har vorte kopiert til utklippstavla.","~SHARE_DIALOG.COPY_ERROR":"Orsak, informasjonen kunne ikkje bli kopiert til utklippstavla.","~SHARE_DIALOG.COPY_TITLE":"Kopier resultat","~SHARE_DIALOG.LONGEVITY_WARNING":"Den delte kopien til dette dokumentet blir behalde heilt til han ikkje har vore i bruk på over eitt år.","~SHARE_UPDATE.TITLE":"Delt visning oppdatert","~SHARE_UPDATE.MESSAGE":"Oppdateringa av den delte visninga var vellykka","~CONFIRM.OPEN_FILE":"Du har endringar som ikkje er lagra. Er du sikker på at du vil opne eit nytt dokument?","~CONFIRM.NEW_FILE":"Du har endringar som ikkje er lagra. Er du sikker på at du vil opprett eit nytt dokument?","~CONFIRM.AUTHORIZE_OPEN":"Autorisering er nødvendig for å opne dokumentet. Vil du gå vidare med autorisering?","~CONFIRM.AUTHORIZE_SAVE":"Autorisering er nødvendig for å lagre dokumentet. Vil du gå vidare med autorisering?","~CONFIRM.CLOSE_FILE":"Du har endringaer som ikkje er lagra? Er du sikker på at vil lukke dokumentet?","~CONFIRM.REVERT_TO_LAST_OPENED":"Er du sikker på at du vil stille dokumentet tilbake til siste opna versjon?","~CONFIRM.REVERT_TO_SHARED_VIEW":"Er du sikker på at du vil stille dokumentet tilbake til siste delte versjon?","~CONFIRM_DIALOG.TITLE":"Er du sikker?","~CONFIRM_DIALOG.YES":"Ja","~CONFIRM_DIALOG.NO":"Nei","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"Slepp fil her eller klikk her for å velja fil","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"Orsak, du kan berre velje ei fil som du vil opne.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"Orsak, du kan ikkje sleppe meir enn ei fil.","~IMPORT.LOCAL_FILE":"Lokal fil","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"Orska, du kan berre velge ein URL som du vil opne.","~IMPORT_URL.PLEASE_ENTER_URL":"Ver snill, skriv inn ein URL som du vil importere.","~URL_TAB.DROP_URL_HERE":"Slepp URL her eller skriv inn URL under","~URL_TAB.IMPORT":"Importér","~CLIENT_ERROR.TITLE":"Feil","~ALERT_DIALOG.TITLE":"Åtvaring","~ALERT_DIALOG.CLOSE":"Lukk","~ALERT.NO_PROVIDER":"Kunne ikkje opna dokumentet fordi ein passande tilbyder ikkje er tilgjengeleg.","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"Logg på Google","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"Koplar til Google...","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"Saknar naudsyn clientID i tilbyder alternativene i googleDrive","~DOCSTORE.LOAD_403_ERROR":"Du har ikkje løyve til å laste %{filename}.<br><br> . Om du bruker eit dokument nokon andre har delt så kan det hende dokumentet ikke er delt lenger.","~DOCSTORE.LOAD_SHARED_404_ERROR":"Kunne ikkje laste det forespurte dokumentet. <br><br>Kanskje fila ikkje er delt?","~DOCSTORE.LOAD_404_ERROR":"Kunne ikkje laste %{filename}","~DOCSTORE.SAVE_403_ERROR":"Du har ikkje løyve til å lagre \'%{filename}\'.<br><br>Du må kanskje logge inn att på nytt.","~DOCSTORE.SAVE_DUPLICATE_ERROR":"Kunne ikkje opprette %{filename}. Fila finst allereie.","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"Kunne ikkje lagre %{filename}: [%{message}]","~DOCSTORE.SAVE_ERROR":"Kunne ikkje lagre %{filename}","~DOCSTORE.REMOVE_403_ERROR":"Du har ikke løyve til å fjerne %{filename}.<br><br>Du må kanskje logge inn att på nytt.","~DOCSTORE.REMOVE_ERROR":"Kunne ikkje fjerne %{filename}","~DOCSTORE.RENAME_403_ERROR":"Du har ikkje løyve til å gi nytt namn til %{filename}.<br><br>Du må kanskje logge inn att på nytt.","~DOCSTORE.RENAME_ERROR":"Kunne ikkje gi nytt namn til %{filename}","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Concord Cloud-åtvaring","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Concord Cloud-åtvaring","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"Lagre ein annan stad","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"Eg gjer det seinare","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"Concourd Cloud har vorte","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"Ver snill og lagre dokumenta dine ein annan stad","~SHARE_DIALOG.SHARE_STATE":"Delt visning","~SHARE_DIALOG.SHARE_STATE_ENABLED":"aktivert","~SHARE_DIALOG.SHARE_STATE_DISABLED":"deaktivert","~SHARE_DIALOG.ENABLE_SHARING":"Aktivér deling","~SHARE_DIALOG.STOP_SHARING":"Avslutt deling","~SHARE_DIALOG.UPDATE_SHARING":"Oppdater delt visning","~SHARE_DIALOG.PREVIEW_SHARING":"Forhåndsvis delt visning","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"Når deling er aktivert, vil det bli laga ein kopi av den noverande visninga. Denne kopien kan deles.","~SHARE_DIALOG.LINK_TAB":"Lenke","~SHARE_DIALOG.LINK_MESSAGE":"Lim inn dette i ein e-post eller tekstmelding ","~SHARE_DIALOG.EMBED_TAB":"Bygg inn","~SHARE_DIALOG.EMBED_MESSAGE":"Bygg-inn-kode for å setja inn på nettsider eller anna nettbasert innhald.","~SHARE_DIALOG.LARA_MESSAGE":"Bruk denne linken når du lager ein aktivitet i LARA","~SHARE_DIALOG.LARA_CODAP_URL":"URL til CODAP-serveren:","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"Fullskjerm-knapp og skalering","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"Vis knapp for synlegheit av data i grafar","~CONFIRM.CHANGE_LANGUAGE":"Du har endringer som ikkje er lagra. Er du sikker på at vil byte språk?","~FILE_STATUS.FAILURE":"Retrying...","~SHARE_DIALOG.PLEASE_WAIT":"Please wait while we generate a shared link …","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"Error connecting to Google!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Missing required apiKey in googleDrive provider options","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"Unable to upload file","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"Unable to upload file: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Use this link when creating an activity for the Activity Player","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Use this version","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Click to preview","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Updated at","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Page","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Activity","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Another page contains more recent data. Which would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"There are two possibilities for continuing your work. Which version would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"What would you like to do?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"This is a read-only preview of your data. Click anywhere to close it.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Please try logging in again and check all the boxes when prompted in the popup","~FILE_DIALOG.FILTER":"Filter results...","~GOOGLE_DRIVE.USERNAME_LABEL":"Username:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Select Different Google Account","~GOOGLE_DRIVE.MY_DRIVE":"My Drive","~GOOGLE_DRIVE.SHARED_DRIVES":"Shared Drives","~GOOGLE_DRIVE.SHARED_WITH_ME":"Shared With Me","~FILE_STATUS.CONTINUE_SAVE":"We will continue to try to save your changes.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},9122:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"Dokument bez tytułu","~MENU.NEW":"Nowy","~MENU.OPEN":"Otwórz ...","~MENU.CLOSE":"Zamknij","~MENU.IMPORT_DATA":"Importuj dane...","~MENU.SAVE":"Zapisz","~MENU.SAVE_AS":"Zapisz jako ...","~MENU.EXPORT_AS":"Eksportuj plik jako ...","~MENU.CREATE_COPY":"Utwórz kopię","~MENU.SHARE":"Udostępnij...","~MENU.SHARE_GET_LINK":"Uzyskaj link do udostępnionego widoku","~MENU.SHARE_UPDATE":"Zaktualizuj udostępniony widok","~MENU.DOWNLOAD":"Pobierz","~MENU.RENAME":"Zmień nazwę","~MENU.REVERT_TO":"Przywróć do...","~MENU.REVERT_TO_LAST_OPENED":"Ostatnio otwarty stan","~MENU.REVERT_TO_SHARED_VIEW":"Udostępniony widok","~DIALOG.SAVE":"Zapisz","~DIALOG.SAVE_AS":"Zapisz jako ...","~DIALOG.EXPORT_AS":"Eksportuj plik jako ...","~DIALOG.CREATE_COPY":"Utwórz kopię ...","~DIALOG.OPEN":"Otwórz","~DIALOG.DOWNLOAD":"Pobierz","~DIALOG.RENAME":"Zmień nazwę","~DIALOG.SHARED":"Udostępnij","~DIALOG.IMPORT_DATA":"Importuj dane","~PROVIDER.LOCAL_STORAGE":"Pamięć lokalna","~PROVIDER.READ_ONLY":"Tylko odczyt","~PROVIDER.GOOGLE_DRIVE":"Dysk Google","~PROVIDER.DOCUMENT_STORE":"Chmura Concord","~PROVIDER.LOCAL_FILE":"Plik lokalny","~FILE_STATUS.SAVING":"Zapisuję...","~FILE_STATUS.SAVED":"Wszystkie zmiany zapisane","~FILE_STATUS.SAVED_TO_PROVIDER":"Wszystkie zmiany zapisane w to %{providerName}","~FILE_STATUS.UNSAVED":"Niezapisane","~FILE_DIALOG.FILENAME":"Nazwa pliku","~FILE_DIALOG.OPEN":"Otwórz","~FILE_DIALOG.SAVE":"Zapisz","~FILE_DIALOG.CANCEL":"Anuluj","~FILE_DIALOG.REMOVE":"Usuń","~FILE_DIALOG.REMOVE_CONFIRM":"Czy na pewno chcesz usunąć %{filename}?","~FILE_DIALOG.REMOVED_TITLE":"Usunięty plik","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename} został usunięty","~FILE_DIALOG.LOADING":"Ładuję...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"*** Błąd ładowania zawartości folderu ***","~FILE_DIALOG.DOWNLOAD":"Pobierz","~DOWNLOAD_DIALOG.DOWNLOAD":"Pobierz","~DOWNLOAD_DIALOG.CANCEL":"Anuluj","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"Dołącz informacje o udostępnianiu w pobranym pliku","~RENAME_DIALOG.RENAME":"Zmień nazwę","~RENAME_DIALOG.CANCEL":"Anuluj","~SHARE_DIALOG.COPY":"Kopiuj","~SHARE_DIALOG.VIEW":"Widok","~SHARE_DIALOG.CLOSE":"Zamknij","~SHARE_DIALOG.COPY_SUCCESS":"Info zostało skopiowane do schowka.","~SHARE_DIALOG.COPY_ERROR":"Przepraszamy, nie udało się skopiować info do schowka.","~SHARE_DIALOG.COPY_TITLE":"Kopiuj wynik","~SHARE_DIALOG.LONGEVITY_WARNING":"Udostępniona kopia tego dokumentu będzie przechowywana ponad rok od ostatniego użycia.","~SHARE_UPDATE.TITLE":"Zaktualizowano udostępniony widok","~SHARE_UPDATE.MESSAGE":"Udostępniony widok został zaktualizowany. Aktualizacje mogą potrwać do 1 minuty.","~CONFIRM.OPEN_FILE":"Masz niezapisane zmiany. Czy na pewno chcesz otworzyć nowy dokument?","~CONFIRM.NEW_FILE":"Masz niezapisane zmiany. Czy na pewno chcesz utworzyć nowy dokument?","~CONFIRM.AUTHORIZE_OPEN":"Do otwarcia dokumentu wymagana jest autoryzacja. Czy chcesz kontynuować z autoryzacją?","~CONFIRM.AUTHORIZE_SAVE":"Do zapisania dokumentu wymagana jest autoryzacja. Czy chcesz kontynuować z autoryzacją?","~CONFIRM.CLOSE_FILE":"Masz niezapisane zmiany. Czy na pewno chcesz zamknąć dokument?","~CONFIRM.REVERT_TO_LAST_OPENED":"Czy na pewno chcesz przywrócić dokument do jego ostatnio otwartego stanu?","~CONFIRM.REVERT_TO_SHARED_VIEW":"Czy na pewno chcesz przywrócić dokument do ostatnio udostępnionego stanu?","~CONFIRM_DIALOG.TITLE":"Jesteś pewny?","~CONFIRM_DIALOG.YES":"Tak","~CONFIRM_DIALOG.NO":"Nie","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"Upuść plik tu lub kliknij tu, aby wybrać plik.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"Przepraszamy, możesz wybrać tylko jeden plik do otwarcia.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"Przepraszamy, nie możesz upuścić więcej niż jednego pliku.","~IMPORT.LOCAL_FILE":"Plik lokalny","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"Przepraszamy, możesz wybrać tylko jeden adres URL do otwarcia.","~IMPORT_URL.PLEASE_ENTER_URL":"Wprowadź adres URL do zaimportowania.","~URL_TAB.DROP_URL_HERE":"Upuść adres URL tu lub wprowadź adres URL poniżej","~URL_TAB.IMPORT":"Importuj","~CLIENT_ERROR.TITLE":"Błąd","~ALERT_DIALOG.TITLE":"Alert","~ALERT_DIALOG.CLOSE":"Zamknij","~ALERT.NO_PROVIDER":"Nie można otworzyć określonego dokumentu, ponieważ odpowiedni dostawca jest niedostępny.","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"Zaloguj się do Google","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"Łączenie z Google...","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"Brak wymaganego id klienta w opcjach dostawcy GoogleDrive","~DOCSTORE.LOAD_403_ERROR":"Nie masz uprawnień do wczytania %{filename}.<br><br>Jeśli korzystasz z dokumentu innej osoby, jego udostępnienie mogło zostać cofnięte.","~DOCSTORE.LOAD_SHARED_404_ERROR":"Nie można pobrać żądanego dokumentu.<br><br>Być może plik nie został udostępniony?","~DOCSTORE.LOAD_404_ERROR":"Nie można pobrać %{filename}","~DOCSTORE.SAVE_403_ERROR":"Nie masz uprawnień do zapisania \'%{filename}\'.<br><br>Może być konieczne ponowne zalogowanie.","~DOCSTORE.SAVE_DUPLICATE_ERROR":"Nie można utworzyć %{filename}. Plik już istnieje.","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"Nie można zapisać %{filename}: [%{message}]","~DOCSTORE.SAVE_ERROR":"Nie można zapisać %{filename}","~DOCSTORE.REMOVE_403_ERROR":"Nie masz uprawnień do usunięcia %{filename}.<br><br>Może być konieczne ponowne zalogowanie.","~DOCSTORE.REMOVE_ERROR":"Nie można usunąć %{filename}","~DOCSTORE.RENAME_403_ERROR":"Nie masz uprawnień do zmiany nazwy %{filename}.<br><br>Może być konieczne ponowne zalogowanie.","~DOCSTORE.RENAME_ERROR":"Nie można zmienić nazwy %{filename}","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Alert Chmury Concord","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Alert Chmury Concord","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"Zapisz gdzie indziej","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"Zrobię to później","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"Chmura Concord została wyłączona!","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"Zapisz swoje dokumenty w innym miejscu.","~SHARE_DIALOG.SHARE_STATE":"Udostępniony widok: ","~SHARE_DIALOG.SHARE_STATE_ENABLED":"włączone","~SHARE_DIALOG.SHARE_STATE_DISABLED":"wyłączone","~SHARE_DIALOG.ENABLE_SHARING":"Włącz udostępnianie","~SHARE_DIALOG.STOP_SHARING":"Przestań udostępniać","~SHARE_DIALOG.UPDATE_SHARING":"Zaktualizuj udostępniony widok","~SHARE_DIALOG.PREVIEW_SHARING":"Podgląd udostępnionego widoku","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"Gdy udostępnianie jest włączone, tworzona jest kopia bieżącego widoku. Tę kopię można udostępnić.","~SHARE_DIALOG.LINK_TAB":"Link","~SHARE_DIALOG.LINK_MESSAGE":"Wklej to do e-maila lub wiadomości tekstowej ","~SHARE_DIALOG.EMBED_TAB":"Osadź","~SHARE_DIALOG.EMBED_MESSAGE":"Kod osadzania do umieszczania na stronach internetowych lub innych treściach internetowych","~SHARE_DIALOG.LARA_MESSAGE":"Użyj tego linku podczas tworzenia aktywności w LARA","~SHARE_DIALOG.LARA_CODAP_URL":"URL serwera CODAP:","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"Przycisk pełnego ekranu i skalowanie","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"Wyświetlaj przełączniki widoczności danych na wykresach","~CONFIRM.CHANGE_LANGUAGE":"Masz niezapisane zmiany. Czy na pewno chcesz zmienić język?","~FILE_STATUS.FAILURE":"Ponawiam próbę...","~SHARE_DIALOG.PLEASE_WAIT":"Poczekaj, aż wygenerujemy udostępniony link…","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"Błąd łączenia z Google!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Brak wymaganego klucza api w opcjach dostawcy Dysku Google","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"Nie można przesłać pliku","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"Nie można przesłać pliku: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Użyj tego linku podczas tworzenia aktywności dla Activity Player","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Użyj tej wersji","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Kliknij, aby wyświetlić podgląd","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Zaktualizowano","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Strona","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Aktywność","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Inna strona zawiera nowsze dane. Której użyć?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"Istnieją dwie możliwości kontynuowania pracy. Której wersji użyć?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"Co chciałbyś robić?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"To jest podgląd Twoich danych tylko do odczytu. Kliknij w dowolnym miejscu, aby je zamknąć.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Spróbuj zalogować się ponownie i zaznacz wszystkie pola, gdy pojawi się monit w wyskakującym okienku","~FILE_DIALOG.FILTER":"Filtruj wyniki...","~GOOGLE_DRIVE.USERNAME_LABEL":"Użytkownik:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Wybierz inne konto Google","~GOOGLE_DRIVE.MY_DRIVE":"Mój dysk","~GOOGLE_DRIVE.SHARED_DRIVES":"Dyski udostępnione","~GOOGLE_DRIVE.SHARED_WITH_ME":"Udostępnione mi","~FILE_STATUS.CONTINUE_SAVE":"Będziemy nadal próbować zapisać zmiany.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},1556:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"Arquivo Sem Nome","~MENU.NEW":"Novo","~MENU.OPEN":"Abrir ...","~MENU.CLOSE":"Fechar","~MENU.IMPORT_DATA":"Importar dados ...","~MENU.SAVE":"Salvar","~MENU.SAVE_AS":"Salvar como ...","~MENU.EXPORT_AS":"Exportar como ...","~MENU.CREATE_COPY":"Criar uma cópia","~MENU.SHARE":"Compartilhar ...","~MENU.SHARE_GET_LINK":"Obter link compartilhável","~MENU.SHARE_UPDATE":"Atualizar link compartilhável","~MENU.DOWNLOAD":"Download","~MENU.RENAME":"Renomear","~MENU.REVERT_TO":"Reverter para ...","~MENU.REVERT_TO_LAST_OPENED":"Versão anterior","~MENU.REVERT_TO_SHARED_VIEW":"Link compartilhável","~DIALOG.SAVE":"Salvar","~DIALOG.SAVE_AS":"Salvar como ...","~DIALOG.EXPORT_AS":"Exportar como ...","~DIALOG.CREATE_COPY":"Criar uma cópia ...","~DIALOG.OPEN":"Abrir","~DIALOG.DOWNLOAD":"Download","~DIALOG.RENAME":"Renomear","~DIALOG.SHARED":"Compartilhar","~DIALOG.IMPORT_DATA":"Importar Dados","~PROVIDER.LOCAL_STORAGE":"Armazenamento Local","~PROVIDER.READ_ONLY":"Somente Leitura","~PROVIDER.GOOGLE_DRIVE":"Google Drive","~PROVIDER.DOCUMENT_STORE":"Concord Cloud","~PROVIDER.LOCAL_FILE":"Arquivo Local","~FILE_STATUS.SAVING":"Salvando ...","~FILE_STATUS.SAVED":"As mudanças foram salvas","~FILE_STATUS.SAVED_TO_PROVIDER":"Mudanças salvas em %{providerName}","~FILE_STATUS.UNSAVED":"Não salvo","~FILE_DIALOG.FILENAME":"Nome do Arquivo","~FILE_DIALOG.OPEN":"Abrir","~FILE_DIALOG.SAVE":"Salvar","~FILE_DIALOG.CANCEL":"Cancelar","~FILE_DIALOG.REMOVE":"Excluir","~FILE_DIALOG.REMOVE_CONFIRM":"Tem certeza que deseja excluir %{filename}?","~FILE_DIALOG.REMOVED_TITLE":"Aquivo Excluido","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename} excluído","~FILE_DIALOG.LOADING":"Carregando ...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"*** Erro carregando arquivos ***","~FILE_DIALOG.DOWNLOAD":"Download","~DOWNLOAD_DIALOG.DOWNLOAD":"Download","~DOWNLOAD_DIALOG.CANCEL":"Cancelar","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"Incluir informações no arquivo baixado","~RENAME_DIALOG.RENAME":"Renomear","~RENAME_DIALOG.CANCEL":"Cancelar","~SHARE_DIALOG.COPY":"Copiar","~SHARE_DIALOG.VIEW":"Exibir","~SHARE_DIALOG.CLOSE":"Fechar","~SHARE_DIALOG.COPY_SUCCESS":"Copiado para a área de transferência.","~SHARE_DIALOG.COPY_ERROR":"Desculpe, não foi possível copiar a informação","~SHARE_DIALOG.COPY_TITLE":"Link copiado","~SHARE_DIALOG.LONGEVITY_WARNING":"Esta versão do arquivo será mantida por até 1 ano, caso não seja acessada novamente.","~SHARE_UPDATE.TITLE":"Link atualizado","~SHARE_UPDATE.MESSAGE":"O link compartilhável foi atualizado. Esse processo por levar até 1 minuto.","~CONFIRM.OPEN_FILE":"Você não salvou as alterações. Deseja abrir um novo arquivo?","~CONFIRM.NEW_FILE":"Você não salvou as alterações. Deseja criar um novo arquivo?","~CONFIRM.AUTHORIZE_OPEN":"Necessária autorização para abrir o arquivo. Deseja continuar?","~CONFIRM.AUTHORIZE_SAVE":"Necessária autorização para salvar o arquivo. Deseja continuar?","~CONFIRM.CLOSE_FILE":"Deseja sair sem salvar as alterações?","~CONFIRM.REVERT_TO_LAST_OPENED":"Deseja retomar este arquivo na sua versão aberta e mais recente?","~CONFIRM.REVERT_TO_SHARED_VIEW":"Tem certeza que deseja reverter este arquivo para a sua versão original?","~CONFIRM_DIALOG.TITLE":"Está certo disso?","~CONFIRM_DIALOG.YES":"Sim","~CONFIRM_DIALOG.NO":"Não","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"Arraste um arquivo para cá. Ou clique aqui.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"Desculpe. Abra um arquivo de cada vez.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"Desculpe. Selecione um arquivo por vez.","~IMPORT.LOCAL_FILE":"Arquivo Local","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"Desculpe, você pode abrir uma URL por vez.","~IMPORT_URL.PLEASE_ENTER_URL":"Digite uma URL para importar","~URL_TAB.DROP_URL_HERE":"Arraste uma URL para cá, ou digite uma abaixo","~URL_TAB.IMPORT":"Importar","~CLIENT_ERROR.TITLE":"Erro","~ALERT_DIALOG.TITLE":"Alerta","~ALERT_DIALOG.CLOSE":"Fechar","~ALERT.NO_PROVIDER":"Não foi possível abrir este arquivo por falta de um provedor apropriado.","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"Login no Google","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"Conectando ao Google...","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"Falta a requisição do clientId nas opções do Google Drive","~DOCSTORE.LOAD_403_ERROR":"Você não tem permissão de carregar %{filename}.<br><br> Se você está utilizando o arquivo compartilhado de alguém, deve ter sido bloqueado.","~DOCSTORE.LOAD_SHARED_404_ERROR":"Não foi possível carregar o arquivo. <br><br> Talvez ele não está disponível para compartilhamento.","~DOCSTORE.LOAD_404_ERROR":"Não foi possível carregar %{filename}","~DOCSTORE.SAVE_403_ERROR":"Você não pode salvar \'%{filename}\'.<br><br> Você deve acessar novamente sua conta.","~DOCSTORE.SAVE_DUPLICATE_ERROR":"Impossível criar %{filename}. Arquivo já existe.","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"Impossível salvar %{filename}: [%{message}]","~DOCSTORE.SAVE_ERROR":"Impossível salvar %{filename}","~DOCSTORE.REMOVE_403_ERROR":"Você não tem permissão para remover %{filename}.<br><br> Você deve acessar sua conta novamente.","~DOCSTORE.REMOVE_ERROR":"Impossível remover %{filename}","~DOCSTORE.RENAME_403_ERROR":"Você não tem permissão para renomear %{filename}.<br><br> Faça o login e tente novamente.","~DOCSTORE.RENAME_ERROR":"Não foi possível renomear %{filename}","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Alerta Concord Cloud","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Alerta Concord Cloud","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"Salvar como...","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"Farei isso depois","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"A Concord Cloud foi desligada!","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"Por favor, salve seus arquivos em outro local.","~SHARE_DIALOG.SHARE_STATE":"Compartilhar link:","~SHARE_DIALOG.SHARE_STATE_ENABLED":"habilitado","~SHARE_DIALOG.SHARE_STATE_DISABLED":"desabilitado","~SHARE_DIALOG.ENABLE_SHARING":"Habilitar","~SHARE_DIALOG.STOP_SHARING":"Desabilitar","~SHARE_DIALOG.UPDATE_SHARING":"Atualizar link","~SHARE_DIALOG.PREVIEW_SHARING":"Prévia do arquivo","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"Ao habilitar o compartilhamento, uma cópia deste arquivo pode ser compartilhada.","~SHARE_DIALOG.LINK_TAB":"Link","~SHARE_DIALOG.LINK_MESSAGE":"Colar isto em um e-mail, ou messagem de texto ","~SHARE_DIALOG.EMBED_TAB":"Incorporar","~SHARE_DIALOG.EMBED_MESSAGE":"Incorporar o código para incluir em sistemas ou páginas web.","~SHARE_DIALOG.LARA_MESSAGE":"Use este link quando criar uma atividade no LARA","~SHARE_DIALOG.LARA_CODAP_URL":"URL do Servidor CODAP:","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"Botão maximizar e redimensionar","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"Muda a visibilidade dos dados nos gráficos","~CONFIRM.CHANGE_LANGUAGE":"Você não salvou as modificações. Deseja mudar o idioma?","~FILE_STATUS.FAILURE":"Tentando novamente...","~SHARE_DIALOG.PLEASE_WAIT":"Por favor, aguarde enquanto geramos um link compartilhável …","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"Erro na conexão com o Google!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Falha na conexão com a apiKey nas opções do Google Drive","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"Não foi possível carregar o arquivo","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"Não foi possível carregar o arquivo: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Use este link ao criar uma atividade para o Activity Player","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Use esta versão","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Clique para visualizar","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Atualizado em","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Página","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Atividade","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Outra página contém dados mais recentes. Qual você gostaria de usar?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"Há duas possiblidades para continuar o seu trabalho. Qual versão você gostaria de usar?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"O que você gostaria de fazer?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"Esta é uma prévia dos seus dados. Clique em qualquer lugar para fechá-la.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Please try logging in again and check all the boxes when prompted in the popup","~FILE_DIALOG.FILTER":"Filter results...","~GOOGLE_DRIVE.USERNAME_LABEL":"Username:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Select Different Google Account","~GOOGLE_DRIVE.MY_DRIVE":"My Drive","~GOOGLE_DRIVE.SHARED_DRIVES":"Shared Drives","~GOOGLE_DRIVE.SHARED_WITH_ME":"Shared With Me","~FILE_STATUS.CONTINUE_SAVE":"We will continue to try to save your changes.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},5176:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"เอกสารไม่มีชื่อ","~MENU.NEW":"ใหม่","~MENU.OPEN":"เปิด","~MENU.CLOSE":"ปิด","~MENU.IMPORT_DATA":"นำข้อมูลเข้า","~MENU.SAVE":"บันทึก","~MENU.SAVE_AS":"บันทึกเป็น","~MENU.EXPORT_AS":"ส่งออกไฟล์เป็น ...","~MENU.CREATE_COPY":"สร้างสำเนา","~MENU.SHARE":"แชร์","~MENU.SHARE_GET_LINK":"รับลิงก์เพื่อแชร์","~MENU.SHARE_UPDATE":"อัพเดตการแชร์","~MENU.DOWNLOAD":"ดาวน์โหลด","~MENU.RENAME":"เปลี่ยนชื่อ","~MENU.REVERT_TO":"กลับเป็น ...","~MENU.REVERT_TO_LAST_OPENED":"กลับไปที่หน้าเริ่มต้น","~MENU.REVERT_TO_SHARED_VIEW":"แชร์มุมมอง","~DIALOG.SAVE":"บันทึก","~DIALOG.SAVE_AS":"บันทึกเป็น","~DIALOG.EXPORT_AS":"ส่งออกไฟล์เป็น ...","~DIALOG.CREATE_COPY":"สร้างสำเนา","~DIALOG.OPEN":"เปิด","~DIALOG.DOWNLOAD":"ดาวน์โหลด","~DIALOG.RENAME":"เปลี่ยนชื่อ","~DIALOG.SHARED":"แชร์","~DIALOG.IMPORT_DATA":"นำข้อมูลเข้า","~PROVIDER.LOCAL_STORAGE":"พื้นที่เก็บข้อมูล","~PROVIDER.READ_ONLY":"อ่านอย่างเดียว","~PROVIDER.GOOGLE_DRIVE":"Google Drive","~PROVIDER.DOCUMENT_STORE":"Concord Cloud","~PROVIDER.LOCAL_FILE":"ไฟล์ในเครื่อง","~FILE_STATUS.SAVING":"กำลังบันทึก...","~FILE_STATUS.SAVED":"บันทึกการเปลี่ยนแปลง","~FILE_STATUS.SAVED_TO_PROVIDER":"บันทึกการเปลี่ยนแปลงไปที่ %{providerName}","~FILE_STATUS.UNSAVED":"ยังไม่บันทึก","~FILE_DIALOG.FILENAME":"ชื่อไฟล์","~FILE_DIALOG.OPEN":"เปิด","~FILE_DIALOG.SAVE":"บันทึก","~FILE_DIALOG.CANCEL":"ยกเลิก","~FILE_DIALOG.REMOVE":"ลบ","~FILE_DIALOG.REMOVE_CONFIRM":"คุณแน่ใจหรือไม่ที่จะลบ %{filename}?","~FILE_DIALOG.REMOVED_TITLE":"ลบไฟล์","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename} ถูกลบแล้ว","~FILE_DIALOG.LOADING":"กำลังโหลด...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"*** ล้มเหลวในการโหลดข้อมูล ***","~FILE_DIALOG.DOWNLOAD":"ดาวน์โหลด","~DOWNLOAD_DIALOG.DOWNLOAD":"ดาวน์โหลด","~DOWNLOAD_DIALOG.CANCEL":"ยกเลิก","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"ใส่ข้อมูลการแชร์ในไฟล์ดาวน์โหลด","~RENAME_DIALOG.RENAME":"เปลี่ยนชื่อ","~RENAME_DIALOG.CANCEL":"ยกเลิก","~SHARE_DIALOG.COPY":"คัดลอก","~SHARE_DIALOG.VIEW":"มุมมอง","~SHARE_DIALOG.CLOSE":"ปิด","~SHARE_DIALOG.COPY_SUCCESS":"ข้อมูลถูกคัดลองไปที่คลิปบอร์ด","~SHARE_DIALOG.COPY_ERROR":"ขออภัย ไม่สามารถคัดลอกไปคลิปบอร์ดได้","~SHARE_DIALOG.COPY_TITLE":"คัดลอกผล","~SHARE_DIALOG.LONGEVITY_WARNING":"การแชร์เอกสารนี้จะคงอยู่จนกว่าจะไม่มีการเข้าใช้งานมากกว่า 1 ปี","~SHARE_UPDATE.TITLE":"อัพเดตการแชร์","~SHARE_UPDATE.MESSAGE":"อัพเดตการแชร์สำเร็จแล้ว. การอัพเดตใช้เวลาประมาณ 1 นาที","~CONFIRM.OPEN_FILE":"ยังไม่บันทึกการเปลี่ยนแปลง. ต้องการเปิดเอกสารใหม่หรือไม่?","~CONFIRM.NEW_FILE":"ยังไม่บันทึกการเปลี่ยนแปลง. ต้องการสร้างเอกสารใหม่หรือไม่?","~CONFIRM.AUTHORIZE_OPEN":"การเปิดเอกสารต้องการการอนุญาต. ดำเนินการต่อหรือไม่?","~CONFIRM.AUTHORIZE_SAVE":"การบันทึกเอกสารต้องการการอนุญาต. ดำเนินการต่อหรือไม่?","~CONFIRM.CLOSE_FILE":"ยังไม่บันทึกการเปลี่ยนแปลง. ต้องการปิดเอกสารนี้หรือไม่?","~CONFIRM.REVERT_TO_LAST_OPENED":"คุณแน่ใจหรือไม่ที่จะกลับไปเป็นเอกสารที่พึ่งถูกเปิดล่าสุด?","~CONFIRM.REVERT_TO_SHARED_VIEW":"คุณแน่ใจหรือไม่ที่จะกลับไปเป็นเอกสารที่พึ่งถูกแชร์ล่าสุด?","~CONFIRM_DIALOG.TITLE":"คุณแน่ใจหรือไม่?","~CONFIRM_DIALOG.YES":"ใช่","~CONFIRM_DIALOG.NO":"ไม่","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"วางไฟล์ที่นี่หรือคลิกเพื่อเลือกไฟล์","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"ขออภัย สามารถเลือกเปิดได้ 1 ไฟล์เท่านั้น","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"ขออภัย สามารถวางได้ 1 ไฟล์เท่านั้น","~IMPORT.LOCAL_FILE":"ไฟล์ในเครื่อง","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"ขออภัย สามารถใส่ 1 URL ได้เท่านั้น","~IMPORT_URL.PLEASE_ENTER_URL":"โปรดใส่ URL เพื่อนำเข้า","~URL_TAB.DROP_URL_HERE":"วาง URL ที่นี่ หรือ ใส่ URL ด้านล่าง","~URL_TAB.IMPORT":"นำเข้า","~CLIENT_ERROR.TITLE":"ผิดพลาด","~ALERT_DIALOG.TITLE":"คำเตือน","~ALERT_DIALOG.CLOSE":"ปิด","~ALERT.NO_PROVIDER":"ไม่สามารถเปิดไฟล์ได้เนื่องจากผู้ให้บริการยังไม่เปิดให้ใช้งาน","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"ลงชื่อใช้Google","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"กำลังเชื่อมต่อGoogle...","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"Missing required clientId in googleDrive provider options","~DOCSTORE.LOAD_403_ERROR":"คุณไม่ได้รับอนุญาตในการโหลดไฟล์ %{filename}.<br><br>เนื่องจากเอกสารนี้อาจจะยังไม่ถูกแชร์","~DOCSTORE.LOAD_SHARED_404_ERROR":"ไม่สามารถโหลดเอกสารที่ร้องขอได้<br><br>เอกสารนี้อาจจะยังไม่ถูกแชร์","~DOCSTORE.LOAD_404_ERROR":"ไม่สามารถโหลด %{filename}","~DOCSTORE.SAVE_403_ERROR":"คุณไม่ได้รับอนุญาตให้บันทึกไฟล์ %{filename}.<br><br>คุณอาจจะต้องลงชื่อเข้าใช้อีกครั้ง","~DOCSTORE.SAVE_DUPLICATE_ERROR":"ไม่สามารถสร้างไฟล์ %{filename}. มีไฟล์นี้อยู่แล้ว","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"ไม่สามารถบันทึก %{filename}: [%{message}]","~DOCSTORE.SAVE_ERROR":"ไม่สามารถบันทึก %{filename}","~DOCSTORE.REMOVE_403_ERROR":"คุณไม่ได้รับอนุญาตให้ย้ายไฟล์ %{filename}.<br><br>คุณอาจจะต้องลงชื่อเข้าใช้อีกครั้ง","~DOCSTORE.REMOVE_ERROR":"ไม่สามารถนำ%{filename}ออกได้","~DOCSTORE.RENAME_403_ERROR":"คุณไม่ได้รับอนุญาตให้แก้ไขชื่อไฟล์ %{filename}.<br><br>คุณอาจจะต้องลงชื่อเข้าใช้อีกครั้ง","~DOCSTORE.RENAME_ERROR":"ไม่สามารถเปลี่ยนชื่อ %{filename}","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"แจ้งเตือนจาก Concord Cloud","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"แจ้งเตือนจาก Concord Cloud","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"บันทึกที่อื่น","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"ทำในภายหลัง","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"Concord Cloud ปิดอยู่","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"โปรดบันทึกเอกสารไว้ที่อื่น","~SHARE_DIALOG.SHARE_STATE":"แชร์มุมมอง:","~SHARE_DIALOG.SHARE_STATE_ENABLED":"เปิดใช้","~SHARE_DIALOG.SHARE_STATE_DISABLED":"ปิด","~SHARE_DIALOG.ENABLE_SHARING":"เปิดใช้การแชร์","~SHARE_DIALOG.STOP_SHARING":"ยกเลิกการแชร์","~SHARE_DIALOG.UPDATE_SHARING":"อัพเดตการแชร์มุมมอง","~SHARE_DIALOG.PREVIEW_SHARING":"แสดงก่อนแชร์มุมมอง","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"เมื่อเปิดใช้งานการแชร์ สำเนาเอกสารนี้จะถูกสร้างและสามารถแชร์สำเนานี้ได้","~SHARE_DIALOG.LINK_TAB":"ลิงก์","~SHARE_DIALOG.LINK_MESSAGE":"สามารถนำไปวางที่อีเมล์/ช่องทางส่งข้อความ","~SHARE_DIALOG.EMBED_TAB":"ฝัง","~SHARE_DIALOG.EMBED_MESSAGE":"ฝังโค้ดสำหรับเว็บเพจหรือเว็บไซต์รูปแบบอื่นๆ","~SHARE_DIALOG.LARA_MESSAGE":"ใช้ลิงก์นี้เมื่อสร้างกิจกรรมไว้ใน LARA","~SHARE_DIALOG.LARA_CODAP_URL":"CODAP Server URL:","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"ปุ่มเต็มจอและปรับขนาด","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"ปรับเปลี่ยนมุมมองการดูข้อมูลได้ที่กราฟ","~CONFIRM.CHANGE_LANGUAGE":"ยังไม่บันทึกการเปลี่ยนแปลง. ต้องการเปลี่ยนภาษาหรือไม่?","~FILE_STATUS.FAILURE":"กำลังลองใหม่...","~SHARE_DIALOG.PLEASE_WAIT":"โปรดรอ..กำลังสร้างลิงก์แชร์","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"ล้มเหลวในการเชื่อมต่อ Google!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Missing required apiKey in googleDrive provider options","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"Unable to upload file","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"Unable to upload file: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Use this link when creating an activity for the Activity Player","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Use this version","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Click to preview","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Updated at","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Page","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Activity","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Another page contains more recent data. Which would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"There are two possibilities for continuing your work. Which version would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"What would you like to do?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"This is a read-only preview of your data. Click anywhere to close it.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Please try logging in again and check all the boxes when prompted in the popup","~FILE_DIALOG.FILTER":"Filter results...","~GOOGLE_DRIVE.USERNAME_LABEL":"Username:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Select Different Google Account","~GOOGLE_DRIVE.MY_DRIVE":"My Drive","~GOOGLE_DRIVE.SHARED_DRIVES":"Shared Drives","~GOOGLE_DRIVE.SHARED_WITH_ME":"Shared With Me","~FILE_STATUS.CONTINUE_SAVE":"We will continue to try to save your changes.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},2193:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"İsimsiz Dosya","~MENU.NEW":"Yeni","~MENU.OPEN":"Aç ...","~MENU.CLOSE":"Kapat","~MENU.IMPORT_DATA":"Verileri aktar...","~MENU.SAVE":"Kaydet","~MENU.SAVE_AS":"Farklı kaydet...","~MENU.EXPORT_AS":"Dosyayı dışa aktar ...","~MENU.CREATE_COPY":"Yeni bir kopya oluştur","~MENU.SHARE":"Paylaş...","~MENU.SHARE_GET_LINK":"Paylaşılabilir Bağlantıyı Al","~MENU.SHARE_UPDATE":"Paylaşılan Görünümü Güncelle","~MENU.DOWNLOAD":"İndir","~MENU.RENAME":"Yeniden Adlandır","~MENU.REVERT_TO":"Dönüştür...","~MENU.REVERT_TO_LAST_OPENED":"Son Açılan Versiyon","~MENU.REVERT_TO_SHARED_VIEW":"Paylaşılan görünüm","~DIALOG.SAVE":"Kaydet","~DIALOG.SAVE_AS":"Farklı kaydet ...","~DIALOG.EXPORT_AS":"Dosyayı Dışa Aktar...","~DIALOG.CREATE_COPY":"Kopyasını Oluştur...","~DIALOG.OPEN":"Aç","~DIALOG.DOWNLOAD":"İndir","~DIALOG.RENAME":"Yeniden Adlandır","~DIALOG.SHARED":"Paylaş","~DIALOG.IMPORT_DATA":"Verileri Aktar","~PROVIDER.LOCAL_STORAGE":"Yerel Depolama","~PROVIDER.READ_ONLY":"Yalnızca Okunabilir","~PROVIDER.GOOGLE_DRIVE":"Google Drive","~PROVIDER.DOCUMENT_STORE":"Concord Bulut Depolama","~PROVIDER.LOCAL_FILE":"Yerel Dosyalar","~FILE_STATUS.SAVING":"Kaydediliyor...","~FILE_STATUS.SAVED":"Tüm değişiklikler kaydedildi","~FILE_STATUS.SAVED_TO_PROVIDER":"Tüm Değişiklikler %{providerName} Olarak Kaydedildi","~FILE_STATUS.UNSAVED":"Kaydedilmemiş","~FILE_DIALOG.FILENAME":"Dosya Adı","~FILE_DIALOG.OPEN":"Aç","~FILE_DIALOG.SAVE":"Kaydet","~FILE_DIALOG.CANCEL":"İptal et","~FILE_DIALOG.REMOVE":"Sil","~FILE_DIALOG.REMOVE_CONFIRM":"%{filename} dosyasını silmek istediğinize emin misiniz?","~FILE_DIALOG.REMOVED_TITLE":"Dosya Silindi","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename} dosyası silindi","~FILE_DIALOG.LOADING":"Yükleniyor...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"*** İçerik yüklenirken hata oluştu ***","~FILE_DIALOG.DOWNLOAD":"İndir","~DOWNLOAD_DIALOG.DOWNLOAD":"İndir","~DOWNLOAD_DIALOG.CANCEL":"İptal et","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"Paylaşılan bilgileri indirilen dosyaya dahil et","~RENAME_DIALOG.RENAME":"Yeniden Adlandır","~RENAME_DIALOG.CANCEL":"İptal","~SHARE_DIALOG.COPY":"Kopyala","~SHARE_DIALOG.VIEW":"Görüntüle","~SHARE_DIALOG.CLOSE":"Kapat","~SHARE_DIALOG.COPY_SUCCESS":"İçerik panoya kopyalandı.","~SHARE_DIALOG.COPY_ERROR":"Üzgünüz, bu içerik panoya kopyalanamadı.","~SHARE_DIALOG.COPY_TITLE":"Sonucu Kopyala","~SHARE_DIALOG.LONGEVITY_WARNING":"Bu dosyanın bir örneği bir yıldan fazla bir süre erişilmediği taktirde saklanacaktır.","~SHARE_UPDATE.TITLE":"Paylaşılan görünüm güncellendi","~SHARE_UPDATE.MESSAGE":"Paylaşılan görünüm başarıyla güncellendi. Güncellemeler 1 dakika alabilir.","~CONFIRM.OPEN_FILE":"Değişiklikleri kaydetmediniz. Yeni bir dosya açmak istediğinize emin misiniz?","~CONFIRM.NEW_FILE":"Değişiklikleri kaydetmediniz. Yeni bir dosya oluşturmak istediğinize emin misiniz?","~CONFIRM.AUTHORIZE_OPEN":"Bu dosyayı açmak için yetkili olmanız gerekmektedir. Devam etmek istiyor musunuz?","~CONFIRM.AUTHORIZE_SAVE":"Bu dosyayı kaydetmek için yetkili olmanız gerekmektedir. Devam etmek istiyor musunuz?","~CONFIRM.CLOSE_FILE":"Değişiklikleri kaydetmediniz. Dosyayı kapatmak istediğinize emin misiniz?","~CONFIRM.REVERT_TO_LAST_OPENED":"Dosyayı en son açılan haline geri döndürmek istediğinize emin misiniz?","~CONFIRM.REVERT_TO_SHARED_VIEW":"Dosyayı en son paylaşılan haline geri döndürmek istediğinize emin misiniz?","~CONFIRM_DIALOG.TITLE":"Emin misiniz?","~CONFIRM_DIALOG.YES":"Evet","~CONFIRM_DIALOG.NO":"Hayır","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"Dosyayı buraya sürükleyiniz veya bir dosya seçmek için tıklayınız.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"Üzgünüz, açmak için yalnızca bir dosya seçebilirsiniz.","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"Üzgünüz, bir dosyadan daha fazlasını sürükleyemezsiniz.","~IMPORT.LOCAL_FILE":"Yerel Dosya","~IMPORT.URL":"URL","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"Üzgünüz, yalnızca bir dosyayı url ile açabilirsiniz.","~IMPORT_URL.PLEASE_ENTER_URL":"Lütfen içeri aktarmak için url giriniz.","~URL_TAB.DROP_URL_HERE":"URL\'yi buraya sürükleyiniz veya URL\'yi giriniz","~URL_TAB.IMPORT":"İçe Aktar","~CLIENT_ERROR.TITLE":"Hata","~ALERT_DIALOG.TITLE":"Uyarı","~ALERT_DIALOG.CLOSE":"Kapat","~ALERT.NO_PROVIDER":"Belirtilen dosya uygun bir sağlayıcı bulunmadığından açılamıyor.","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"Google ile Oturum Aç","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"Google\'a bağlanılıyor...","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"Google Kullanıcı Kimliği bulunamadı","~DOCSTORE.LOAD_403_ERROR":"%{filename} dosyasını açmak için gerekli izne sahip değilsiniz.<br><br>Eğer başkasının dosyasını kullanıyorsanız dosya paylaşımda olmayabilir.","~DOCSTORE.LOAD_SHARED_404_ERROR":"Paylaşılmak istenen döküman yüklenemiyor.<br><br>Dosya paylaşımda olmayabilir mi?","~DOCSTORE.LOAD_404_ERROR":"%{filename} dosyası yüklenemiyor","~DOCSTORE.SAVE_403_ERROR":"\'%{filename}\' dosyasını kaydetmek için gerekli izne sahip değilsiniz .<br><br>Tekrar oturum açmanız gerekmektedir.","~DOCSTORE.SAVE_DUPLICATE_ERROR":"%{filename} dosyası oluşturulamıyor. Dosya zaten mevcut.","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"%{filename} dosyası kaydedilemedi: [%{message}]","~DOCSTORE.SAVE_ERROR":"%{filename} dosyası kaydedilemedi","~DOCSTORE.REMOVE_403_ERROR":"%{filename} dosyasını kaldırmak için gerekli izne sahip değilsiniz.<br><br>Tekrar oturum açmanız gerekmektedir.","~DOCSTORE.REMOVE_ERROR":"%{filename} dosyası kaldırılamaz","~DOCSTORE.RENAME_403_ERROR":"%{filename} dosyasını yeniden adlandırmak için gerekli izinlere sahip değilsiniz.<br><br>Tekrar oturum açmanız gerekmektedir.","~DOCSTORE.RENAME_ERROR":"%{filename} dosyası yeniden adlandırılamadı","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Concord Bulut Depolama Uyarısı","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Concord Bulut Depolama Uyarısı","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"Farklı bir yere kaydet","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"Bunu sonra yapacağım","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"Concord Bulut Depolama sistemi kapatıldı!","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"Lütfen dosyanızı farklı bir yere kaydedin.","~SHARE_DIALOG.SHARE_STATE":"Paylaşılan görünüm: ","~SHARE_DIALOG.SHARE_STATE_ENABLED":"etkin","~SHARE_DIALOG.SHARE_STATE_DISABLED":"etkin değil","~SHARE_DIALOG.ENABLE_SHARING":"Paylaşımı etkinleştir","~SHARE_DIALOG.STOP_SHARING":"Paylaşımı durdur","~SHARE_DIALOG.UPDATE_SHARING":"Paylaşılan görünümü güncelle","~SHARE_DIALOG.PREVIEW_SHARING":"Paylaşılan görünümü ön izle","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"Paylaşım etkinleştirildiğinde bu görünümün bir kopyası oluşturulur. Bu kopya paylaşılabilir.","~SHARE_DIALOG.LINK_TAB":"Bağlantı","~SHARE_DIALOG.LINK_MESSAGE":"Bunu bir eposta ya da metin iletisine yapıştır ","~SHARE_DIALOG.EMBED_TAB":"İçerik yerleştir","~SHARE_DIALOG.EMBED_MESSAGE":"İnternet sayfası veya ağ tabanlı içerik için kod içeriği yerleştirin","~SHARE_DIALOG.LARA_MESSAGE":"LARA\'da etkinlik oluşturmak için bu bağlantıyı kullanın","~SHARE_DIALOG.LARA_CODAP_URL":"CODAP URL Sunucusu:","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"Tam ekran butonu ve ölçeklendirme","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"Grafiklerde veri görünürlük seçeceğini gösterin","~CONFIRM.CHANGE_LANGUAGE":"Kaydedilmemiş değişiklikler yaptınız. Dili değiştirmek istediğinizden emin misiniz?","~FILE_STATUS.FAILURE":"Yeniden deniyor...","~SHARE_DIALOG.PLEASE_WAIT":"Bağlantı oluşturulmakta, lütfen bekleyiniz …","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"Google\'a bağlantı hatası!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Google Drive sağlayıcı seçeneklerinde gerekli olan API anahtarı eksik","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"Dosya yüklenemedi","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"Dosya yüklenemedi: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Etkinlik oyuncusu için etkinlik oluşturmak istediğinizde bu bağlantıyı kullanın","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Bu sürümü kullan","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Ön izleme için tıklayın","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Güncellendi","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Sayfa","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Aktivite","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Diğer sayfa daha güncel veri içermektedir. Hangi sayfayı kullanmak isterseniz?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"Çalışmanıza devam etmek için iki seçenek bulunmaktadır. Hangi versiyonu kullanmak istersiniz?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"Ne yapmak istersiniz?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"Bu, verilerinizin salt okunur bir ön izlemesidir. Kapatmak için herhangi bir yere tıklayın.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Lütfen tekrar giriş yapmayı deneyin ve açılır pencerede sizden istendiğinde tüm kutuları işaretleyin","~FILE_DIALOG.FILTER":"Sonuçları filtrele...","~GOOGLE_DRIVE.USERNAME_LABEL":"Kullanıcı adı:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Farklı bir Google hesabı seç","~GOOGLE_DRIVE.MY_DRIVE":"Drive\'ım","~GOOGLE_DRIVE.SHARED_DRIVES":"Paylaşılan Drive","~GOOGLE_DRIVE.SHARED_WITH_ME":"Benimle Paylaşılanlar","~FILE_STATUS.CONTINUE_SAVE":"Değişikliklerinizi kaydetmeye çalışmaya devam edeceğiz.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"GoogleDrive sağlayıcı seçeneklerinde gerekli uygulama kimliği eksik","~FILE_DIALOG.OVERWRITE_CONFIRM":"%{filename} dosyasının üstüne yazmaya emin misiniz?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Drive\'ı yeniden aç","~GOOGLE_DRIVE.QUICK_SAVE":"Drive\'ıma hızlıca kaydet","~GOOGLE_DRIVE.PICK_FOLDER":"Seçili klasöre kaydet","~GOOGLE_DRIVE.PICK_FILE":"Varolan dosya üzerine kaydet","~GOOGLE_DRIVE.SELECT_A_FILE":"Dosya seç","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Klasör seç","~GOOGLE_DRIVE.STARRED":"Yıldızlı","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},3878:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"未命名文件","~MENU.NEW":"新建","~MENU.OPEN":"打开","~MENU.CLOSE":"关闭","~MENU.IMPORT_DATA":"导入数据","~MENU.SAVE":"保存","~MENU.SAVE_AS":"另存为","~MENU.EXPORT_AS":"导出文件格式为","~MENU.CREATE_COPY":"创建副本","~MENU.SHARE":"共享","~MENU.SHARE_GET_LINK":"共享视图链接","~MENU.SHARE_UPDATE":"更新共享视图","~MENU.DOWNLOAD":"下载","~MENU.RENAME":"重命名","~MENU.REVERT_TO":"恢复","~MENU.REVERT_TO_LAST_OPENED":"最近打开状态","~MENU.REVERT_TO_SHARED_VIEW":"共享视图","~DIALOG.SAVE":"保存","~DIALOG.SAVE_AS":"另存为","~DIALOG.EXPORT_AS":"导出文件格式为","~DIALOG.CREATE_COPY":"创建副本","~DIALOG.OPEN":"打开","~DIALOG.DOWNLOAD":"下载","~DIALOG.RENAME":"重命名","~DIALOG.SHARED":"共享","~DIALOG.IMPORT_DATA":"导入数据","~PROVIDER.LOCAL_STORAGE":"本地存储","~PROVIDER.READ_ONLY":"只读","~PROVIDER.GOOGLE_DRIVE":"谷歌硬盘","~PROVIDER.DOCUMENT_STORE":"Concord云盘","~PROVIDER.LOCAL_FILE":"本地文件","~FILE_STATUS.SAVING":"正在保存","~FILE_STATUS.SAVED":"已保存所有更改","~FILE_STATUS.SAVED_TO_PROVIDER":"所有更改保存到%{提供名称}","~FILE_STATUS.UNSAVED":"未保存","~FILE_DIALOG.FILENAME":"文件名","~FILE_DIALOG.OPEN":"打开","~FILE_DIALOG.SAVE":"保存","~FILE_DIALOG.CANCEL":"取消","~FILE_DIALOG.REMOVE":"删除","~FILE_DIALOG.REMOVE_CONFIRM":"确定要删除%{filename}?","~FILE_DIALOG.REMOVED_TITLE":"已删除文件","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename}已删除","~FILE_DIALOG.LOADING":"下载中...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"***加载文件夹内容时出错***","~FILE_DIALOG.DOWNLOAD":"下载","~DOWNLOAD_DIALOG.DOWNLOAD":"下载","~DOWNLOAD_DIALOG.CANCEL":"取消","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"下载文件包含共享信息","~RENAME_DIALOG.RENAME":"重命名","~RENAME_DIALOG.CANCEL":"取消","~SHARE_DIALOG.COPY":"复制","~SHARE_DIALOG.VIEW":"视图","~SHARE_DIALOG.CLOSE":"关闭","~SHARE_DIALOG.COPY_SUCCESS":"该信息已复制到粘贴板","~SHARE_DIALOG.COPY_ERROR":"抱歉,该信息不能复制到粘贴板","~SHARE_DIALOG.COPY_TITLE":"复制结果","~SHARE_DIALOG.LONGEVITY_WARNING":"共享文件将会一直保存,直到文件超过一年未访问。","~SHARE_UPDATE.TITLE":"更新共享视图","~SHARE_UPDATE.MESSAGE":"共享视图已成功更新","~CONFIRM.OPEN_FILE":"有未保存更改,确定打开一个新文件吗?","~CONFIRM.NEW_FILE":"有未保存更改,确定创建一个新文件吗?","~CONFIRM.AUTHORIZE_OPEN":"此文件需要授权打开,需要申请授权吗?","~CONFIRM.AUTHORIZE_SAVE":"此文件需要授权保存,需要申请授权吗?","~CONFIRM.CLOSE_FILE":"有未保存更改,确定关闭该文件吗?","~CONFIRM.REVERT_TO_LAST_OPENED":"确定恢复该文件至最近打开状态吗?","~CONFIRM.REVERT_TO_SHARED_VIEW":"您确定想要恢复该文件至最近分享状态吗?","~CONFIRM_DIALOG.TITLE":"确定吗?","~CONFIRM_DIALOG.YES":"确定","~CONFIRM_DIALOG.NO":"不确定","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"此处放置文件或点击此处选择文件。","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"抱歉,只能打开一个文件。","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"抱歉,不能放置多个文件。","~IMPORT.LOCAL_FILE":"当地文件","~IMPORT.URL":"网址","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"抱歉,只能打开一个网址。","~IMPORT_URL.PLEASE_ENTER_URL":"请输入网址导入","~URL_TAB.DROP_URL_HERE":"在此处放置网址或在下面输入网址","~URL_TAB.IMPORT":"导入","~CLIENT_ERROR.TITLE":"错误","~ALERT_DIALOG.TITLE":"提醒","~ALERT_DIALOG.CLOSE":"关闭","~ALERT.NO_PROVIDER":"由于缺少合适程序,无法打开指定文档。","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"登陆谷歌","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"链接到谷歌","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"谷歌硬盘提供选项中缺少必需的用户ID","~DOCSTORE.LOAD_403_ERROR":"没有权限加载%{filename}<br><br>若在使用其他人的共享文件,此文件将取消共享。","~DOCSTORE.LOAD_SHARED_404_ERROR":"不能加载所请求共享文件。<br><br>此文件可能未被共享?","~DOCSTORE.LOAD_404_ERROR":"不能加载%{filename}。","~DOCSTORE.SAVE_403_ERROR":"没有权限保存‘%{filename}’。<br><br>可能需要重新登陆。","~DOCSTORE.SAVE_DUPLICATE_ERROR":"不能创建%{filename}。文件已经存在。","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"不能保存%{filename}:[%{message}]","~DOCSTORE.SAVE_ERROR":"不能保存%{filename}","~DOCSTORE.REMOVE_403_ERROR":"没有权限移动%{filename}。<br><br>可能需要重新登陆。","~DOCSTORE.REMOVE_ERROR":"不能移动%{文件名}","~DOCSTORE.RENAME_403_ERROR":"没有权限重新命名%{文件名}。<br><br>可能需要重新登陆。","~DOCSTORE.RENAME_ERROR":"不能重新命名%{文件名}","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Concord云盘提醒","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Concord云盘提醒","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"另存为","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"稍后再做","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"Concord云盘已关闭","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"请保存此文件到其他位置","~SHARE_DIALOG.SHARE_STATE":"共享视图","~SHARE_DIALOG.SHARE_STATE_ENABLED":"已启用","~SHARE_DIALOG.SHARE_STATE_DISABLED":"未启用","~SHARE_DIALOG.ENABLE_SHARING":"启动共享","~SHARE_DIALOG.STOP_SHARING":"停止共享","~SHARE_DIALOG.UPDATE_SHARING":"更新共享视图","~SHARE_DIALOG.PREVIEW_SHARING":"预览共享视图","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"当共享已启动,当前视图复制本已生成。此复制本可以共享。","~SHARE_DIALOG.LINK_TAB":"链接","~SHARE_DIALOG.LINK_MESSAGE":"粘贴到邮件或者短信","~SHARE_DIALOG.EMBED_TAB":"嵌入","~SHARE_DIALOG.EMBED_MESSAGE":"在网页或者网页内容里嵌入代码","~SHARE_DIALOG.LARA_MESSAGE":"在LARA里使用链接创建活动","~SHARE_DIALOG.LARA_CODAP_URL":"CODAP服务器网址","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"全屏按钮和缩放","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"图表数据可视化显示切换","~CONFIRM.CHANGE_LANGUAGE":"有未保存更改,确定更改语言吗?","~FILE_STATUS.FAILURE":"重试...","~SHARE_DIALOG.PLEASE_WAIT":"Please wait while we generate a shared link …","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"Error connecting to Google!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Missing required apiKey in googleDrive provider options","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"Unable to upload file","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"Unable to upload file: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Use this link when creating an activity for the Activity Player","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Use this version","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Click to preview","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Updated at","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Page","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Activity","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Another page contains more recent data. Which would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"There are two possibilities for continuing your work. Which version would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"What would you like to do?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"This is a read-only preview of your data. Click anywhere to close it.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Please try logging in again and check all the boxes when prompted in the popup","~FILE_DIALOG.FILTER":"Filter results...","~GOOGLE_DRIVE.USERNAME_LABEL":"Username:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Select Different Google Account","~GOOGLE_DRIVE.MY_DRIVE":"My Drive","~GOOGLE_DRIVE.SHARED_DRIVES":"Shared Drives","~GOOGLE_DRIVE.SHARED_WITH_ME":"Shared With Me","~FILE_STATUS.CONTINUE_SAVE":"We will continue to try to save your changes.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')},8986:e=>{"use strict";e.exports=JSON.parse('{"~MENUBAR.UNTITLED_DOCUMENT":"未命名文件","~MENU.NEW":"新增","~MENU.OPEN":"開啟 ...","~MENU.CLOSE":"關閉","~MENU.IMPORT_DATA":"匯入資料...","~MENU.SAVE":"儲存","~MENU.SAVE_AS":"另存至 ...","~MENU.EXPORT_AS":"匯出文件 ...","~MENU.CREATE_COPY":"建立複本","~MENU.SHARE":"分享...","~MENU.SHARE_GET_LINK":"取得連結","~MENU.SHARE_UPDATE":"更新文件內容","~MENU.DOWNLOAD":"下載","~MENU.RENAME":"重新命名","~MENU.REVERT_TO":"復原至...","~MENU.REVERT_TO_LAST_OPENED":"開啟狀態","~MENU.REVERT_TO_SHARED_VIEW":"分享文件","~DIALOG.SAVE":"儲存","~DIALOG.SAVE_AS":"另存至 ...","~DIALOG.EXPORT_AS":"匯出文件 ...","~DIALOG.CREATE_COPY":"建立複本 ...","~DIALOG.OPEN":"開啟","~DIALOG.DOWNLOAD":"下載","~DIALOG.RENAME":"重新命名","~DIALOG.SHARED":"分享","~DIALOG.IMPORT_DATA":"重要資料","~PROVIDER.LOCAL_STORAGE":"本地儲存","~PROVIDER.READ_ONLY":"唯讀","~PROVIDER.GOOGLE_DRIVE":"Google 雲端硬碟","~PROVIDER.DOCUMENT_STORE":"Concord Cloud","~PROVIDER.LOCAL_FILE":"本地檔案","~FILE_STATUS.SAVING":"儲存...","~FILE_STATUS.SAVED":"已儲存所有更改","~FILE_STATUS.SAVED_TO_PROVIDER":"儲存更改至 %{providerName}","~FILE_STATUS.UNSAVED":"未儲存","~FILE_DIALOG.FILENAME":"檔案名稱","~FILE_DIALOG.OPEN":"開啟","~FILE_DIALOG.SAVE":"儲存","~FILE_DIALOG.CANCEL":"取消","~FILE_DIALOG.REMOVE":"刪除","~FILE_DIALOG.REMOVE_CONFIRM":"您確定要刪除 %{filename}?","~FILE_DIALOG.REMOVED_TITLE":"刪除檔案","~FILE_DIALOG.REMOVED_MESSAGE":"%{filename} 已刪除","~FILE_DIALOG.LOADING":"讀取中...","~FILE_DIALOG.LOAD_FOLDER_ERROR":"*** 載入文件時發生錯誤 ***","~FILE_DIALOG.DOWNLOAD":"下載","~DOWNLOAD_DIALOG.DOWNLOAD":"下載","~DOWNLOAD_DIALOG.CANCEL":"取消","~DOWNLOAD_DIALOG.INCLUDE_SHARE_INFO":"下載的檔案中包含分享的檔案","~RENAME_DIALOG.RENAME":"重新命名","~RENAME_DIALOG.CANCEL":"取消","~SHARE_DIALOG.COPY":"複製","~SHARE_DIALOG.VIEW":"檢視","~SHARE_DIALOG.CLOSE":"關閉","~SHARE_DIALOG.COPY_SUCCESS":"訊息已複製","~SHARE_DIALOG.COPY_ERROR":"抱歉,訊息無法複製","~SHARE_DIALOG.COPY_TITLE":"複製結果","~SHARE_DIALOG.LONGEVITY_WARNING":"若一年沒人使用本文件之複本,則此複本將會被刪除","~SHARE_UPDATE.TITLE":"更新文件內容","~SHARE_UPDATE.MESSAGE":"文件內容已更新","~CONFIRM.OPEN_FILE":"尚未儲存變更,您確定要開啟新的文件?","~CONFIRM.NEW_FILE":"尚未儲存變更,您確定要建立新的文件?","~CONFIRM.AUTHORIZE_OPEN":"本文件需要授權才能開啟,您要前往認證嗎? ","~CONFIRM.AUTHORIZE_SAVE":"本文件需要授權才能儲存,您要前往認證嗎? ","~CONFIRM.CLOSE_FILE":"尚未儲存變更,您確定要關閉文件嗎?","~CONFIRM.REVERT_TO_LAST_OPENED":"您確定要將文件回復至最近開啟的狀態嗎?","~CONFIRM.REVERT_TO_SHARED_VIEW":"您確定要將文件回復至最近分享的狀態嗎?","~CONFIRM_DIALOG.TITLE":"確定?","~CONFIRM_DIALOG.YES":"是","~CONFIRM_DIALOG.NO":"否","~LOCAL_FILE_DIALOG.DROP_FILE_HERE":"將檔案拖曳至此或點擊以選取檔案","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_SELECTED":"抱歉, 您只能選取一個檔案","~LOCAL_FILE_DIALOG.MULTIPLE_FILES_DROPPED":"抱歉, 您無法拖曳超過一個檔案","~IMPORT.LOCAL_FILE":"本地檔案","~IMPORT.URL":"網址","~IMPORT_URL.MULTIPLE_URLS_DROPPED":"抱歉, 您只能選擇一個開啟網址","~IMPORT_URL.PLEASE_ENTER_URL":"請輸入要匯入的網址","~URL_TAB.DROP_URL_HERE":"在下面輸入網址","~URL_TAB.IMPORT":"匯入","~CLIENT_ERROR.TITLE":"錯誤","~ALERT_DIALOG.TITLE":"警告","~ALERT_DIALOG.CLOSE":"關閉","~ALERT.NO_PROVIDER":"無法開啟指定的文件,因為檔案類型不受支援","~GOOGLE_DRIVE.LOGIN_BUTTON_LABEL":"登入Google","~GOOGLE_DRIVE.CONNECTING_MESSAGE":"連結至 Google...","~GOOGLE_DRIVE.ERROR_MISSING_CLIENTID":"在googleDrive程序中缺少帳戶資料","~DOCSTORE.LOAD_403_ERROR":"您沒有權限讀取 %{filename}.<br><br>若您是使用其他人共享的檔案則可能已經取消共享","~DOCSTORE.LOAD_SHARED_404_ERROR":"無法讀取此共享檔案<br><br>可能檔案已取消共享?","~DOCSTORE.LOAD_404_ERROR":"無法讀取 %{filename}","~DOCSTORE.SAVE_403_ERROR":"您沒有權限儲存 \'%{filename}\'.<br><br>您可能需要再次登入","~DOCSTORE.SAVE_DUPLICATE_ERROR":"無法建立 %{filename}. 檔案已存在","~DOCSTORE.SAVE_ERROR_WITH_MESSAGE":"無法儲存 %{filename}: [%{message}]","~DOCSTORE.SAVE_ERROR":"無法儲存 %{filename}","~DOCSTORE.REMOVE_403_ERROR":"您沒有權限移除 %{filename}.<br><br>您可能需要再次登入","~DOCSTORE.REMOVE_ERROR":"無法移除 %{filename}","~DOCSTORE.RENAME_403_ERROR":"您沒有權限更改名稱 %{filename}.<br><br>您可能需要再次登入","~DOCSTORE.RENAME_ERROR":"無法更改名稱 %{filename}","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_TITLE":"Concord Cloud 警告","~CONCORD_CLOUD_DEPRECATION.ALERT_SAVE_TITLE":"Concord Cloud 警告","~CONCORD_CLOUD_DEPRECATION.CONFIRM_SAVE_ELSEWHERE":"儲存至其他位置","~CONCORD_CLOUD_DEPRECATION.CONFIRM_DO_IT_LATER":"稍後操作","~CONCORD_CLOUD_DEPRECATION.SHUT_DOWN_MESSAGE":"The Concord Cloud has been shut down!","~CONCORD_CLOUD_DEPRECATION.PLEASE_SAVE_ELSEWHERE":"Please save your documents to another location.","~SHARE_DIALOG.SHARE_STATE":"Shared view: ","~SHARE_DIALOG.SHARE_STATE_ENABLED":"啟用","~SHARE_DIALOG.SHARE_STATE_DISABLED":"中止","~SHARE_DIALOG.ENABLE_SHARING":"Enable sharing","~SHARE_DIALOG.STOP_SHARING":"Stop sharing","~SHARE_DIALOG.UPDATE_SHARING":"更新文件內容","~SHARE_DIALOG.PREVIEW_SHARING":"預習文件內容","~SHARE_DIALOG.ENABLE_SHARING_MESSAGE":"When sharing is enabled, a link to a copy of the current view is created. Opening this link provides each user with their own copy to interact with.","~SHARE_DIALOG.LINK_TAB":"文件連結","~SHARE_DIALOG.LINK_MESSAGE":"Provide others with their own copy of the shared view using the link below ","~SHARE_DIALOG.EMBED_TAB":"Embed","~SHARE_DIALOG.EMBED_MESSAGE":"Embed code for including in webpages or other web-based content","~SHARE_DIALOG.LARA_MESSAGE":"Use this link when creating an activity in LARA","~SHARE_DIALOG.LARA_CODAP_URL":"CODAP Server URL:","~SHARE_DIALOG.LARA_FULLSCREEN_BUTTON_AND_SCALING":"Fullscreen button and scaling","~SHARE_DIALOG.LARA_DISPLAY_VISIBILITY_TOGGLES":"Display data visibility toggles on graphs","~CONFIRM.CHANGE_LANGUAGE":"You have unsaved changes. Are you sure you want to change languages?","~FILE_STATUS.FAILURE":"Retrying...","~SHARE_DIALOG.PLEASE_WAIT":"Please wait while we generate a shared link …","~GOOGLE_DRIVE.ERROR_CONNECTING_MESSAGE":"Error connecting to Google!","~GOOGLE_DRIVE.ERROR_MISSING_APIKEY":"Missing required apiKey in googleDrive provider options","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD":"Unable to upload file","~GOOGLE_DRIVE.UNABLE_TO_UPLOAD_MSG":"Unable to upload file: %{message}","~SHARE_DIALOG.INTERACTIVE_API_MESSAGE":"Use this link when creating an activity for the Activity Player","~DIALOG.SELECT_INTERACTIVE_STATE.USE_THIS_VERSION":"Use this version","~DIALOG.SELECT_INTERACTIVE_STATE.CLICK_TO_PREVIEW":"Click to preview","~DIALOG.SELECT_INTERACTIVE_STATE.UPDATED_AT":"Updated at","~DIALOG.SELECT_INTERACTIVE_STATE.PAGE":"Page","~DIALOG.SELECT_INTERACTIVE_STATE.ACTIVITY":"Activity","~DIALOG.SELECT_INTERACTIVE_STATE.CURRENT_VS_LINKED":"Another page contains more recent data. Which would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.LINKED_VS_LINKED":"There are two possibilities for continuing your work. Which version would you like to use?","~DIALOG.SELECT_INTERACTIVE_STATE.TITLE":"What would you like to do?","~DIALOG.SELECT_INTERACTIVE_STATE.PREVIEW_INFO":"This is a read-only preview of your data. Click anywhere to close it.","~GOOGLE_DRIVE.MISSING_SCOPES_MESSAGE":"Please try logging in again and check all the boxes when prompted in the popup","~FILE_DIALOG.FILTER":"Filter results...","~GOOGLE_DRIVE.USERNAME_LABEL":"Username:","~GOOGLE_DRIVE.SELECT_DIFFERENT_ACCOUNT":"Select Different Google Account","~GOOGLE_DRIVE.MY_DRIVE":"My Drive","~GOOGLE_DRIVE.SHARED_DRIVES":"Shared Drives","~GOOGLE_DRIVE.SHARED_WITH_ME":"Shared With Me","~FILE_STATUS.CONTINUE_SAVE":"We will continue to try to save your changes.","~GOOGLE_DRIVE.ERROR_MISSING_APPID":"Missing required appId in googleDrive provider options","~FILE_DIALOG.OVERWRITE_CONFIRM":"Are you sure you want to overwrite %{filename}?","~GOOGLE_DRIVE.REOPEN_DRIVE":"Reopen Drive","~GOOGLE_DRIVE.QUICK_SAVE":"Quick Save To My Drive","~GOOGLE_DRIVE.PICK_FOLDER":"Save In Selected Folder","~GOOGLE_DRIVE.PICK_FILE":"Save Over Existing File","~GOOGLE_DRIVE.SELECT_A_FILE":"Select a File","~GOOGLE_DRIVE.SELECT_A_FOLDER":"Select a Folder","~GOOGLE_DRIVE.STARRED":"Starred","~GOOGLE_DRIVE.SELECT_VALID_FILE":"Please select a valid file for this application"}')}},t={};function r(n){var i=t[n];if(void 0!==i)return i.exports;var a=t[n]={id:n,loaded:!1,exports:{}};return e[n].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.amdD=function(){throw new Error("define cannot be used indirect")},r.amdO={},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{"use strict";var e=r(143);r(9793);var t=new e.CloudFileManager;r.g.CloudFileManager=t})()})();
|
|
3
|
+
//# sourceMappingURL=app.js.map
|