ethyca-fides 2.71.1b1__py2.py3-none-any.whl → 2.74.0rc1__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of ethyca-fides might be problematic. Click here for more details.
- {ethyca_fides-2.71.1b1.dist-info → ethyca_fides-2.74.0rc1.dist-info}/METADATA +3 -2
- {ethyca_fides-2.71.1b1.dist-info → ethyca_fides-2.74.0rc1.dist-info}/RECORD +377 -327
- fides/_version.py +3 -3
- fides/api/alembic/alembic.ini +5 -1
- fides/api/alembic/migrations/env.py +7 -1
- fides/api/alembic/migrations/versions/4bfbeff34611_add_polling_status.py +68 -0
- fides/api/alembic/migrations/versions/65a1bc82ae09_adds_experience_config_for_delete_.py +53 -0
- fides/api/alembic/migrations/versions/7db29f9cd77b_create_new_sub_request_table.py +95 -0
- fides/api/alembic/migrations/versions/a55e12c2c2df_add_tagging_instructions_to_data_.py +29 -0
- fides/api/alembic/migrations/versions/b97e92b038d2_add_digest_execution_model.py +117 -0
- fides/api/alembic/migrations/versions/c09e76282dd1_add_privacy_request_duplication_cols.py +64 -0
- fides/api/alembic/migrations/versions/xx_2025_10_17_1603_5093e92e2a5a_add_consent_data_v3_to_the_database.py +72 -0
- fides/api/alembic/migrations/versions/xx_2025_10_27_1834_67f0f2f4748e_adding_identity_definition_model.py +45 -0
- fides/api/alembic/migrations/versions/xx_2025_10_29_1659_80d28dea3b6b_added_duplicate_group_table.py +79 -0
- fides/api/alembic/migrations/versions/xx_2025_11_05_0200_f1a2b3c4d5e6_create_staged_resource_error_table.py +82 -0
- fides/api/api/v1/endpoints/connection_endpoints.py +38 -45
- fides/api/api/v1/endpoints/generic_overrides.py +75 -6
- fides/api/api/v1/endpoints/privacy_request_endpoints.py +60 -6
- fides/api/api/v1/endpoints/saas_config_endpoints.py +60 -48
- fides/api/api/v1/endpoints/system.py +11 -43
- fides/api/api/v1/endpoints/user_endpoints.py +8 -1
- fides/api/app_setup.py +1 -3
- fides/api/common_exceptions.py +8 -0
- fides/api/db/base.py +2 -0
- fides/api/db/database.py +257 -2
- fides/api/email_templates/get_email_template.py +3 -0
- fides/api/email_templates/template_names.py +1 -0
- fides/api/email_templates/templates/manual_task_digest.html +316 -0
- fides/api/main.py +2 -2
- fides/api/models/attachment.py +1 -0
- fides/api/models/detection_discovery/__init__.py +2 -0
- fides/api/models/detection_discovery/core.py +10 -0
- fides/api/models/detection_discovery/monitor_task.py +1 -0
- fides/api/models/detection_discovery/staged_resource_error.py +25 -0
- fides/api/models/digest/__init__.py +2 -0
- fides/api/models/digest/digest_config.py +10 -1
- fides/api/models/digest/digest_execution.py +142 -0
- fides/api/models/event_audit.py +17 -0
- fides/api/models/identity_definition.py +65 -0
- fides/api/models/messaging_template.py +7 -0
- fides/api/models/privacy_experience.py +11 -0
- fides/api/models/privacy_preference.py +2 -0
- fides/api/models/privacy_request/duplicate_group.py +84 -0
- fides/api/models/privacy_request/privacy_request.py +56 -8
- fides/api/models/privacy_request/request_task.py +98 -1
- fides/api/models/sql_models.py +3 -0
- fides/api/models/taxonomy.py +14 -4
- fides/api/models/v3/__init__.py +0 -0
- fides/api/models/v3/privacy_preferences.py +85 -0
- fides/api/models/worker_task.py +8 -0
- fides/api/schemas/application_config.py +28 -0
- fides/api/schemas/connection_configuration/connection_config.py +1 -30
- fides/api/schemas/messaging/messaging.py +15 -0
- fides/api/schemas/privacy_request.py +17 -3
- fides/api/schemas/saas/async_polling_configuration.py +81 -0
- fides/api/schemas/saas/saas_config.py +10 -3
- fides/api/schemas/saas/strategy_configuration.py +0 -12
- fides/api/schemas/taxonomy_extensions.py +8 -0
- fides/api/service/async_dsr/handlers/__init__.py +0 -0
- fides/api/service/async_dsr/handlers/polling_attachment_handler.py +155 -0
- fides/api/service/async_dsr/handlers/polling_request_handler.py +88 -0
- fides/api/service/async_dsr/handlers/polling_response_handler.py +261 -0
- fides/api/service/async_dsr/handlers/polling_sub_request_handler.py +123 -0
- fides/api/service/async_dsr/strategies/__init__.py +0 -0
- fides/api/service/async_dsr/strategies/async_dsr_strategy.py +52 -0
- fides/api/service/async_dsr/strategies/async_dsr_strategy_callback.py +199 -0
- fides/api/service/async_dsr/strategies/async_dsr_strategy_factory.py +72 -0
- fides/api/service/async_dsr/strategies/async_dsr_strategy_polling.py +686 -0
- fides/api/service/async_dsr/utils.py +130 -0
- fides/api/service/connectors/bigquery_connector.py +34 -16
- fides/api/service/connectors/fides/fides_client.py +63 -1
- fides/api/service/connectors/query_configs/saas_query_config.py +160 -79
- fides/api/service/connectors/saas/connector_registry_service.py +1 -138
- fides/api/service/connectors/saas_connector.py +116 -94
- fides/api/service/connectors/sql_connector.py +14 -4
- fides/api/service/deps.py +8 -0
- fides/api/service/messaging/message_dispatch_service.py +38 -1
- fides/api/service/privacy_request/attachment_handling.py +9 -2
- fides/api/service/privacy_request/duplication_detection.py +424 -0
- fides/api/service/privacy_request/request_runner_service.py +46 -84
- fides/api/service/privacy_request/request_service.py +47 -74
- fides/api/service/saas_request/saas_request_override_factory.py +71 -1
- fides/api/task/execute_request_tasks.py +17 -9
- fides/api/task/filter_results.py +35 -2
- fides/api/task/graph_task.py +37 -8
- fides/api/tasks/__init__.py +0 -1
- fides/api/util/connection_util.py +99 -215
- fides/api/util/event_audit_util.py +230 -0
- fides/api/util/logger_context_utils.py +3 -1
- fides/api/util/masking_util.py +31 -0
- fides/api/util/memory_watchdog.py +118 -0
- fides/api/util/saas_config_updater.py +66 -0
- fides/api/util/saas_util.py +28 -1
- fides/common/api/scope_registry.py +0 -7
- fides/common/api/v1/urn_registry.py +2 -0
- fides/config/__init__.py +10 -1
- fides/config/celery_settings.py +42 -0
- fides/config/config_proxy.py +10 -0
- fides/config/duplicate_detection_settings.py +31 -0
- fides/config/execution_settings.py +7 -3
- fides/config/utils.py +5 -0
- fides/data/language/languages.yml +2 -0
- fides/service/connection/__init__.py +0 -0
- fides/service/connection/connection_service.py +651 -0
- fides/service/event_audit_service.py +16 -22
- fides/service/privacy_request/privacy_request_service.py +162 -43
- fides/service/taxonomy/handlers/legacy_handler.py +3 -3
- fides/service/taxonomy/taxonomy_service.py +15 -15
- fides/ui-build/static/admin/404.html +1 -1
- fides/ui-build/static/admin/_next/static/FZTEUgamBvOhgPWce135w/_buildManifest.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{1115-90baef2a89f361ad.js → 1115-0da062111df309bf.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/{6148-59a59d5c5925344f.js → 1533-84e250d1f26e6d7d.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/1817-508b16628e8eb225.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/1840-5bbe6d878ed73fb4.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{1975.78e719130cfe3fd6.js → 1975.afe8cad52f904fcf.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/{2040-fdecc41a18e40bdc.js → 2040-fe1a06d82c0413f1.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/2397-40b8db1cb2f23e2a.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/2921-b10bbc3a9104933b.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/3214-90ce0a366b0f461a.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/3377-eb5cd82b3ee6ab0c.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/3615-5e2d062d684b8fa1.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/3655-93ecd09f1cb9dbef.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{3696-90c8b336bbc46782.js → 3696-6db05a35ae806825.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/{3923-98bea73b618292aa.js → 3923-44255a63d6d80ff5.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/401-fe8db8b5d8f600de.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{4259.d1507e0db19cbed7.js → 4259.05038c9b78467244.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/4277-13bcf4516326d474.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/431-e01ee730c8ad9ece.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/4496-bed72bd5639075be.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/454-d5c2c84f1a14e4f1.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/4817-d29f40d4ce729f37.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/5185-b2ac9fecc00b67e7.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/5258-4672eae0656430f9.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/5487-8dedd1ca94fbba54.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/549-6e2442db533a711e.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/5643-55d758444a8d7162.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/5724-1e40975cefa405f0.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{5783-d119cb132abd8a91.js → 5783-6055edba275155ca.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/6084-82e2df433fe5ba85.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/6344-3e21444374f8059f.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/6362-12e3fd23130ccf15.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/6372-a8d0f08dac1ebd0e.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/6780-3db5133c1f4c6f1e.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/6853-1adbdf6418ec3d62.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/6954-aa0c60ee1092be8e.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/7059-12be23a345a94c1e.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/7079-6e6efc3396ff1ebb.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/7218-d297a4a06f924b09.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/7245-686665c197b58e68.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{7476-d055aa931da47ac0.js → 7476-a43c046c24de37cc.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/7630-c654c61ba98d8c74.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/7654-716cf37a020b3d11.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{796-02086581996a0548.js → 796-e83ace3c6ab99ac7.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/8212-b9e8295ca883c9f8.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/8939-4925751c57c51f87.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/9014-eeae6f581158e645.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/9046-e4daf28840a69fd6.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{5596-29a7c8322530b7cf.js → 9195-550bd50d538c5f79.js} +3 -3
- fides/ui-build/static/admin/_next/static/chunks/9330-e519adec48222d45.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/9341-bfc0e59bcc56c604.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/9450-b7b7bb1d755ecf57.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{9676.b86ecbcfe5afd25d.js → 9676.7d029a5383595b69.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/9682-da69ac5d06f281da.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/{9826-ccedc28e978ca9e1.js → 9826-657652d55936a8c6.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/9911-ece086f2230e34f0.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/9965-56c5e4fc9cd3b3a5.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/{404-2eb8aed4939f1142.js → 404-d079b8bf35250874.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/{_app-c1c2f757b1f3da12.js → _app-e64fd8510033a27c.js} +63 -63
- fides/ui-build/static/admin/_next/static/chunks/pages/add-systems/manual-ddd9d7d40847fc28.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/add-systems/multiple-b4d18c1f4d414f5f.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/add-systems-d451bc8932330141.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/configure/{add-vendors-7a258b7ecd6da4b8.js → add-vendors-c24663cd5dec57db.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/{configure-fb5017ff5fa54fcc.js → configure-d93418688bd258eb.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-experience/{[id]-e1e2fd704ac2d71d.js → [id]-9b1f2b1c06968166.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-experience/{new-a5e738a234dadc7e.js → new-115a085e5d42de45.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-experience-d9b7b311195df29e.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices/{[id]-5fc78b78a51c239c.js → [id]-3de34624829cbce8.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices/{new-b79bcb93b5f4c734.js → new-dc95e7ed278d1a29.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices-cdfc9bb19f47c709.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/{properties-069f4e3ee96ebf77.js → properties-0b995b01dc4dbd1f.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/reporting-e3ad3a55624e302a.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/{consent-d2bf72508c3cad55.js → consent-b37ed76849330edd.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects/[projectUrn]/{[resourceUrn]-2fa4b3a58f75f81d.js → [resourceUrn]-dd82729296dee5c5.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects/[projectUrn]-49e5477eb1a11b92.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects-dfc1ead4a12c9ffa.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/resources/{[resourceUrn]-5b31e3d7727b917a.js → [resourceUrn]-8442eb219958ac7e.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/resources-feda358d1801c18d.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog-d16acb6fc07aad46.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/datastore/[monitorId]-c51a1e98c45d231a.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/datastore-4498881c26f1458d.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/website/[monitorId]/[systemId]-bcfe38eebca30f8c.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/website/[monitorId]-f66d0655897c4400.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/website-5b3e0009d442bc3f.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center-6f1e012cd641da19.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/activity-581d6248fcf98d17.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/detection/{[resourceUrn]-844a8de0d1b506e2.js → [resourceUrn]-ddc1c1641e1e9430.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/{detection-11b07cf2d91b17ef.js → detection-2b48f7e524743b2b.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/discovery/{[resourceUrn]-5525cf287d4ab493.js → [resourceUrn]-862b67418600251e.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/{discovery-ed4723e1b67d890e.js → discovery-0ffec855f5df262c.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datamap-6a030ab8c2e2b0db.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]/[collectionName]/[...subfieldNames]-6cb66f649b8ca4bf.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]/[collectionName]-0b008dad90b00aaa.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]-5566edf9a9d1be2d.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/new-d4ca1f485b6e9e02.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset-85dee7e81dc4bafb.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/[id]-e905e018a2cab35d.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/new-912723bc86299b1a.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection-f1f0affc18327033.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/{fides-js-docs-1f4335dca5c09860.js → fides-js-docs-5235760b3e508d7d.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/{index-b74d1e8608ae5b5d.js → index-692d27dbe9392c9f.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/integrations/[id]-1b94e2d769a182b2.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/integrations-adfe6c5ac5b703d0.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/new-privacy-requests-f9be7080ebbb7445.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/digests/[id]-caaa8602a1d449b1.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/digests/new-9b106b1d2d93985b.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/digests-6a1ded8cdde836c4.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/providers/[key]-f94e3accf9507ebf.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/providers/new-5e83220ff1f2a250.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/providers-a03cbd698a23e5b3.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/templates/[id]-3cde574b3c8447c0.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/templates/add-template-0448bb4ae8536c58.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications/templates-1621a4b87c432117.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/notifications-4ea28f6b1dd63642.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/ant-components-e02516d9fd314528.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/AntForm-fec08bea801b4918.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikAntFormItem-d911e5fbf5a4a888.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikControlled-91b1adcac6a57b2d.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikField-de309d8813b1ebfb.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/forms-f2943c1309062284.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/{table-migration-29fb7b39f8962650.js → table-migration-03eda417711ae909.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/[id]-1fe486f3af832c80.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/configure/storage-ea6f78fa8b2d3f6c.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/{configure-8f577df28ebca869.js → configure-bda7b474493e7128.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests-2c0ec8fed16c20ae.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/properties/{[id]-57a75c7e9659271a.js → [id]-30d298a47e85709f.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/properties/{add-property-8964c2300206bc89.js → add-property-438084cca0d0f10d.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/{properties-08472b2a6bf1d392.js → properties-17fd44d98f5bd5b6.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/reporting/datamap-baf77d34a3b3bece.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/sandbox/privacy-notices-8c80391025ca7339.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/consent/[configuration_id]/[purpose_id]-7c19810858b708cc.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/consent-ee8820fe0fa14c77.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields/{[id]-bd1042a0e9be6aff.js → [id]-8eb862182f19a6c2.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields/{new-469ad83c8cfa1290.js → new-37c29ef618e9fe3c.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields-1db425150dcb1b6b.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/{domain-records-744f669431b84f71.js → domain-records-e334b43fa5c5b1e6.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/domains-9d18eb5c38d85522.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/{email-templates-604790638c656fbd.js → email-templates-cb937ed7c4b1e5a8.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/{locations-be2a885150adc133.js → locations-835281251f0785cd.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/{organization-3c86162afe9759df.js → organization-7fd050c92866938c.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/privacy-requests-59ea66130fca0d05.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/{regulations-4fe3b90747d885e5.js → regulations-b0fe1051d908f366.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/systems/configure/[id]/test-datasets-f108bf5015144d2f.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/systems/configure/{[id]-4d470bbf199a2f9c.js → [id]-0e7c7228d01290ea.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/systems-adc13b542e10a37d.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/taxonomy-23dd250da26511c5.js +1 -0
- fides/ui-build/static/admin/_next/static/chunks/pages/user-management/profile/{[id]-98f737e735eaa0f0.js → [id]-aed30fb22ae7c9ec.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/{user-management-562624e5461083ec.js → user-management-6b88ca3e02ee67c9.js} +1 -1
- fides/ui-build/static/admin/_next/static/chunks/webpack-6f97ebe373e7ef6b.js +1 -0
- fides/ui-build/static/admin/_next/static/css/012b10627a654d5c.css +1 -0
- fides/ui-build/static/admin/_next/static/css/05d05fc31d09638b.css +1 -0
- fides/ui-build/static/admin/_next/static/css/0fd6e0884cfcc5f3.css +1 -0
- fides/ui-build/static/admin/_next/static/css/14ba79c49597d37a.css +1 -0
- fides/ui-build/static/admin/_next/static/css/{34a7eb08b86ddb57.css → 3d6582469f7d56e0.css} +1 -1
- fides/ui-build/static/admin/_next/static/css/4861ca3e088f2d05.css +1 -0
- fides/ui-build/static/admin/_next/static/css/65ae906f224cd8ae.css +1 -0
- fides/ui-build/static/admin/_next/static/css/a1800714b486e230.css +1 -0
- fides/ui-build/static/admin/_next/static/css/af32fcac7a177a0e.css +1 -0
- fides/ui-build/static/admin/_next/static/css/cb417f0587918f85.css +1 -0
- fides/ui-build/static/admin/_next/static/css/d5701118537cbdd2.css +1 -0
- fides/ui-build/static/admin/_next/static/css/dd15c278b964de80.css +1 -0
- fides/ui-build/static/admin/_next/static/css/{5f393dea1c0d031c.css → f89607996ad54f4b.css} +1 -1
- fides/ui-build/static/admin/_next/static/css/f9a2a44d3d34c904.css +1 -0
- fides/ui-build/static/admin/add-systems/manual.html +1 -1
- fides/ui-build/static/admin/add-systems/multiple.html +1 -1
- fides/ui-build/static/admin/add-systems.html +1 -1
- fides/ui-build/static/admin/consent/configure/add-vendors.html +1 -1
- fides/ui-build/static/admin/consent/configure.html +1 -1
- fides/ui-build/static/admin/consent/privacy-experience/[id].html +1 -1
- fides/ui-build/static/admin/consent/privacy-experience/new.html +1 -1
- fides/ui-build/static/admin/consent/privacy-experience.html +1 -1
- fides/ui-build/static/admin/consent/privacy-notices/[id].html +1 -1
- fides/ui-build/static/admin/consent/privacy-notices/new.html +1 -1
- fides/ui-build/static/admin/consent/privacy-notices.html +1 -1
- fides/ui-build/static/admin/consent/properties.html +1 -1
- fides/ui-build/static/admin/consent/reporting.html +1 -1
- fides/ui-build/static/admin/consent.html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/projects/[projectUrn]/[resourceUrn].html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/projects/[projectUrn].html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/projects.html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/resources/[resourceUrn].html +1 -1
- fides/ui-build/static/admin/data-catalog/[systemId]/resources.html +1 -1
- fides/ui-build/static/admin/data-catalog.html +1 -1
- fides/ui-build/static/admin/data-discovery/action-center/datastore/[monitorId].html +1 -0
- fides/ui-build/static/admin/data-discovery/action-center/datastore.html +1 -0
- fides/ui-build/static/admin/data-discovery/action-center/website/[monitorId]/[systemId].html +1 -0
- fides/ui-build/static/admin/data-discovery/action-center/website/[monitorId].html +1 -0
- fides/ui-build/static/admin/data-discovery/action-center/website.html +1 -0
- fides/ui-build/static/admin/data-discovery/action-center.html +1 -1
- fides/ui-build/static/admin/data-discovery/activity.html +1 -1
- fides/ui-build/static/admin/data-discovery/detection/[resourceUrn].html +1 -1
- fides/ui-build/static/admin/data-discovery/detection.html +1 -1
- fides/ui-build/static/admin/data-discovery/discovery/[resourceUrn].html +1 -1
- fides/ui-build/static/admin/data-discovery/discovery.html +1 -1
- fides/ui-build/static/admin/datamap.html +1 -1
- fides/ui-build/static/admin/dataset/[datasetId]/[collectionName]/[...subfieldNames].html +1 -1
- fides/ui-build/static/admin/dataset/[datasetId]/[collectionName].html +1 -1
- fides/ui-build/static/admin/dataset/[datasetId].html +1 -1
- fides/ui-build/static/admin/dataset/new.html +1 -1
- fides/ui-build/static/admin/dataset.html +1 -1
- fides/ui-build/static/admin/datastore-connection/[id].html +1 -1
- fides/ui-build/static/admin/datastore-connection/new.html +1 -1
- fides/ui-build/static/admin/datastore-connection.html +1 -1
- fides/ui-build/static/admin/index.html +1 -1
- fides/ui-build/static/admin/integrations/[id].html +1 -1
- fides/ui-build/static/admin/integrations.html +1 -1
- fides/ui-build/static/admin/lib/fides-ext-gpp.js +1 -1
- fides/ui-build/static/admin/lib/fides-headless.js +1 -1
- fides/ui-build/static/admin/lib/fides-preview.js +1 -1
- fides/ui-build/static/admin/lib/fides-tcf.js +3 -3
- fides/ui-build/static/admin/lib/fides.js +3 -3
- fides/ui-build/static/admin/login/[provider].html +1 -1
- fides/ui-build/static/admin/login.html +1 -1
- fides/ui-build/static/admin/new-privacy-requests.html +1 -0
- fides/ui-build/static/admin/notifications/digests/[id].html +1 -0
- fides/ui-build/static/admin/notifications/digests/new.html +1 -0
- fides/ui-build/static/admin/notifications/digests.html +1 -0
- fides/ui-build/static/admin/notifications/providers/[key].html +1 -0
- fides/ui-build/static/admin/notifications/providers/new.html +1 -0
- fides/ui-build/static/admin/notifications/providers.html +1 -0
- fides/ui-build/static/admin/notifications/templates/[id].html +1 -0
- fides/ui-build/static/admin/notifications/templates/add-template.html +1 -0
- fides/ui-build/static/admin/notifications/templates.html +1 -0
- fides/ui-build/static/admin/notifications.html +1 -0
- fides/ui-build/static/admin/poc/ant-components.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/AntForm.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/FormikAntFormItem.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/FormikControlled.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/FormikField.html +1 -1
- fides/ui-build/static/admin/poc/form-experiments/FormikSpreadField.html +1 -1
- fides/ui-build/static/admin/poc/forms.html +1 -1
- fides/ui-build/static/admin/poc/table-migration.html +1 -1
- fides/ui-build/static/admin/privacy-requests/[id].html +1 -1
- fides/ui-build/static/admin/privacy-requests/configure/storage.html +1 -1
- fides/ui-build/static/admin/privacy-requests/configure.html +1 -1
- fides/ui-build/static/admin/privacy-requests.html +1 -1
- fides/ui-build/static/admin/properties/[id].html +1 -1
- fides/ui-build/static/admin/properties/add-property.html +1 -1
- fides/ui-build/static/admin/properties.html +1 -1
- fides/ui-build/static/admin/reporting/datamap.html +1 -1
- fides/ui-build/static/admin/sandbox/privacy-notices.html +1 -0
- fides/ui-build/static/admin/settings/about/alpha.html +1 -1
- fides/ui-build/static/admin/settings/about.html +1 -1
- fides/ui-build/static/admin/settings/consent/[configuration_id]/[purpose_id].html +1 -1
- fides/ui-build/static/admin/settings/consent.html +1 -1
- fides/ui-build/static/admin/settings/custom-fields/[id].html +1 -1
- fides/ui-build/static/admin/settings/custom-fields/new.html +1 -1
- fides/ui-build/static/admin/settings/custom-fields.html +1 -1
- fides/ui-build/static/admin/settings/domain-records.html +1 -1
- fides/ui-build/static/admin/settings/domains.html +1 -1
- fides/ui-build/static/admin/settings/email-templates.html +1 -1
- fides/ui-build/static/admin/settings/locations.html +1 -1
- fides/ui-build/static/admin/settings/organization.html +1 -1
- fides/ui-build/static/admin/settings/privacy-requests.html +1 -1
- fides/ui-build/static/admin/settings/regulations.html +1 -1
- fides/ui-build/static/admin/systems/configure/[id]/test-datasets.html +1 -1
- fides/ui-build/static/admin/systems/configure/[id].html +1 -1
- fides/ui-build/static/admin/systems.html +1 -1
- fides/ui-build/static/admin/taxonomy.html +1 -1
- fides/ui-build/static/admin/user-management/new.html +1 -1
- fides/ui-build/static/admin/user-management/profile/[id].html +1 -1
- fides/ui-build/static/admin/user-management.html +1 -1
- fides/api/service/async_dsr/async_dsr_service.py +0 -195
- fides/api/service/async_dsr/async_dsr_strategy.py +0 -5
- fides/api/service/async_dsr/async_dsr_strategy_callback.py +0 -16
- fides/api/service/async_dsr/async_dsr_strategy_factory.py +0 -63
- fides/api/service/async_dsr/async_dsr_strategy_polling.py +0 -94
- fides/ui-build/static/admin/_next/static/_IxwgneyQjdSaZFEF3Tqu/_buildManifest.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/1316-2606e19807c08aa5.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/1467-8808ec8836e033f9.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/155-b4337d0826d5addc.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/1817-1ad037b7d6d2f6d2.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/1896-49010da5c2705fc5.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/2150-930ffaf2c4718edc.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/255-1bc0cbef7a59cdc6.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/2921-66f65496c3a09316.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/2962-e92d525bf570a9a3.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/346-aa3b88efb85f2e28.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/3550-83cb70e80cbe41ba.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/3585-f728d32fda6f1ac1.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/3855-ed226b8a8050bd40.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/3872-04d3afbfa41a7782.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/401-ffe4e8436e1eceb9.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/409-5c3d31163028339f.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/431-78bf05f35d7eec4f.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/4558-8305aee48def1dcd.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/4608-0c6ef78e30a51f84.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/4718-3a412bdb90add82f.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/502-0d9f4ac29ef34a1c.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/504-88caa30c03374e9b.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/5163-e682273cd76a7d07.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/5185-51eaa78e3ed6bfb7.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/5279-12c9cbdc67ad7b14.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/5309-3b6cf0cc9d0c6a83.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/5574-c31ea831371610d5.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/5619-9b50cec521203989.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/5643-10a36584c399526c.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/6277-182efc294d413f64.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/6419-9b3a86af57c86791.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/6853-7004a8c420b1ca02.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/6882-dbe0a25dcf1a8ee0.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/6954-4b24e1731c1cc3b3.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/699-8ca44b0de9fa20f0.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/7045-14e955890f1147e4.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/7079-50571e9f3269d74d.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/7158-04745cc8d684b2e7.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/7218-e2983b96b95e33b4.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/7630-d0d3a0fe3f95e971.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/7725-f2a7be705b75dcc3.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/7929-0fd0d4948bc8d70e.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/8002-ed832921ad190832.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/8765-f622a35b40a7ec63.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9037-453224ba3ee65b13.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9046-b6616ba7b59d947e.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9187-7438242f0d380bb0.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9226-4a7027057f55ca2a.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9278-08cc704317fe535e.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/9729-fcf6ff4e3534e4a8.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/add-systems/manual-4ec03eed67572861.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/add-systems/multiple-2ca59996860a33c5.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/add-systems-19214babd1f219e3.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-experience-92182be6603c2842.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/privacy-notices-ab54b19609bff325.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/consent/reporting-c1a3caf3c286bf5d.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects/[projectUrn]-4a1af12d2d7cd660.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/projects-99573a1ee3ef8f4c.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog/[systemId]/resources-6e429b7511028d60.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-catalog-b7326c51d88cc2cc.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/[monitorId]/[systemId]-5b57f9132426fe52.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center/[monitorId]-0d512528b498d75c.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/action-center-040813022f0890c9.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/data-discovery/activity-a28cc0e23bbe4fc8.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datamap-7d22222608ec3aac.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]/[collectionName]/[...subfieldNames]-0abd30eada811b5b.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]/[collectionName]-007965429368d9a3.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/[datasetId]-60a4a9eb4aab4c11.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset/new-d514cd4ec62e3b03.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/dataset-0e3a6ac4797ffbbb.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/[id]-816e02b6cbe4a684.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection/new-b6838162200141b3.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/datastore-connection-223c2d1ded51bfb1.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/integrations/[id]-153eb88ab4e7dc6d.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/integrations-331544e9b85c4ac2.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/messaging/[id]-e8d2140787045acd.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/messaging/add-template-e3f93462a08251bf.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/messaging-b5f7d6afdecd013d.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/ant-components-248ad9f65a872442.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/AntForm-aedb66a62042b10a.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikAntFormItem-018df38b7cd77fdb.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikControlled-6ca9099d03aab817.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/form-experiments/FormikField-0f2c90786ea005a4.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/poc/forms-200b51a725f8b2d1.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/[id]-7dac2302f573f5ee.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests/configure/storage-479890582973deaf.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/privacy-requests-7af00f72cf694077.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/reporting/datamap-f7753e9effae3816.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/consent/[configuration_id]/[purpose_id]-f3e6e74e0efb005c.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/consent-4d658222ec800511.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/custom-fields-2fcd95c41e578d57.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/domains-a3275554ffe8e640.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/messaging-providers/[key]-77239269acc2d31a.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/messaging-providers/new-8bf1821722b082e9.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/messaging-providers-8d92be437793c96f.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/settings/privacy-requests-97221067330c0c27.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/systems/configure/[id]/test-datasets-2deb6becece69d46.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/systems-6c91bdea40875227.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/pages/taxonomy-3059aba38adefa56.js +0 -1
- fides/ui-build/static/admin/_next/static/chunks/webpack-2766492c5dbceb0a.js +0 -1
- fides/ui-build/static/admin/_next/static/css/073713cd1eddda79.css +0 -1
- fides/ui-build/static/admin/_next/static/css/23cf870196941c9a.css +0 -1
- fides/ui-build/static/admin/_next/static/css/295d729ea1b11885.css +0 -1
- fides/ui-build/static/admin/_next/static/css/304c6f148886a8d4.css +0 -1
- fides/ui-build/static/admin/data-discovery/action-center/[monitorId]/[systemId].html +0 -1
- fides/ui-build/static/admin/data-discovery/action-center/[monitorId].html +0 -1
- fides/ui-build/static/admin/messaging/[id].html +0 -1
- fides/ui-build/static/admin/messaging/add-template.html +0 -1
- fides/ui-build/static/admin/messaging.html +0 -1
- fides/ui-build/static/admin/settings/messaging-providers/[key].html +0 -1
- fides/ui-build/static/admin/settings/messaging-providers/new.html +0 -1
- fides/ui-build/static/admin/settings/messaging-providers.html +0 -1
- {ethyca_fides-2.71.1b1.dist-info → ethyca_fides-2.74.0rc1.dist-info}/WHEEL +0 -0
- {ethyca_fides-2.71.1b1.dist-info → ethyca_fides-2.74.0rc1.dist-info}/entry_points.txt +0 -0
- {ethyca_fides-2.71.1b1.dist-info → ethyca_fides-2.74.0rc1.dist-info}/licenses/LICENSE +0 -0
- {ethyca_fides-2.71.1b1.dist-info → ethyca_fides-2.74.0rc1.dist-info}/top_level.txt +0 -0
- /fides/ui-build/static/admin/_next/static/{_IxwgneyQjdSaZFEF3Tqu → FZTEUgamBvOhgPWce135w}/_ssgManifest.js +0 -0
- /fides/ui-build/static/admin/_next/static/chunks/pages/user-management/{new-629c88e90699369b.js → new-7dce2916cc589c54.js} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
if(typeof Fides<"u"&&Fides.options?.fidesUnsupportedRepeatedScriptLoading!=="enabled_acknowledge_not_supported")throw new Error("Fides detected that it was already loaded on this page, aborting execution! See https://www.ethyca.com/docs/dev-docs/js/troubleshooting for more information.");(function(y,We){typeof exports=="object"&&typeof module<"u"?We(exports):(y=typeof globalThis<"u"?globalThis:y||self,We(y.Fides={}))})(this,function(y){"use strict";var We=Object.defineProperty,gr=(e,t,i)=>t in e?We(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,xt=(e,t,i)=>gr(e,typeof t!="symbol"?t+"":t,i);class Nt{constructor(t,i,o){xt(this,"consentPreference"),xt(this,"notice"),xt(this,"noticeHistoryId"),this.notice=t,this.consentPreference=i,this.noticeHistoryId=o}}y.TCMobileDataVals=void 0,(e=>{(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFgdprApplies||(e.IABTCFgdprApplies={})),(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFPurposeOneTreatment||(e.IABTCFPurposeOneTreatment={})),(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFUseNonStandardTexts||(e.IABTCFUseNonStandardTexts={}))})(y.TCMobileDataVals||(y.TCMobileDataVals={}));var bi=(e=>(e.GPP_US_NATIONAL="gpp_us_national",e.GPP_US_STATE="gpp_us_state",e))(bi||{}),yi=(e=>(e.FRONTEND="frontend",e.SYSTEM_WIDE="system_wide",e.NOT_APPLICABLE="not_applicable",e))(yi||{}),W=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.NOTICE_ONLY="notice_only",e))(W||{}),At=(e=>(e.COOKIE="Cookie",e.BROWSER_REQUEST="Browser Request",e.I_FRAME="iFrame",e.JAVASCRIPT_TAG="Javascript tag",e.IMAGE="Image",e))(At||{}),q=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.ACKNOWLEDGE="acknowledge",e.NOT_APPLICABLE="not_applicable",e.TCF="tcf",e))(q||{}),Ce=(e=>(e.OMIT="omit",e.INCLUDE="include",e))(Ce||{}),pe=(e=>(e.BOOLEAN="boolean",e.CONSENT_MECHANISM="consent_mechanism",e))(pe||{}),ve=(e=>(e.THROW="throw",e.WARN="warn",e.IGNORE="ignore",e))(ve||{}),V=(e=>(e.OVERLAY="overlay",e.BANNER_AND_MODAL="banner_and_modal",e.MODAL="modal",e.PRIVACY_CENTER="privacy_center",e.TCF_OVERLAY="tcf_overlay",e.HEADLESS="headless",e))(V||{}),mi=(e=>(e.ALWAYS_ENABLED="always_enabled",e.ENABLED_WHERE_REQUIRED="enabled_where_required",e.ALWAYS_DISABLED="always_disabled",e))(mi||{}),wi=(e=>(e.PURPOSES="/tcf/purposes",e.FEATURES="/tcf/features",e.VENDORS="/tcf/vendors",e))(wi||{}),Pe=(e=>(e.OPTIONS="options",e.EXPERIENCE_TRANSLATION="language",e))(Pe||{}),ie=(e=>(e.PRIMARY="primary",e.SECONDARY="secondary",e.TERTIARY="tertiary",e))(ie||{}),Tt=(e=>(e.ACKNOWLEDGE="acknowledge",e.OPT_IN_OPT_OUT="opt_in_opt_out",e.OPT_IN_ONLY="opt_in_only",e))(Tt||{}),ki=(e=>(e.REJECT_ALL="reject_all",e.REJECT_CONSENT_ONLY="reject_consent_only",e))(ki||{}),L=(e=>(e.BUTTON="button",e.REJECT="reject",e.ACCEPT="accept",e.SCRIPT="script",e.SAVE="save",e.DISMISS="dismiss",e.GPC="gpc",e.INDIVIDUAL_NOTICE="individual_notice",e.ACKNOWLEDGE="acknowledge",e.OT_MIGRATION="ot_migration",e))(L||{}),Ei=(e=>(e.privacy_center="privacy_center",e.overlay="overlay",e.api="api",e))(Ei||{}),ae=(e=>(e.NONE="none",e.APPLIED="applied",e.OVERRIDDEN="overridden",e))(ae||{}),Re=(e=>(e.OVERLAY="overlay",e.MODAL="modal",e.BANNER="banner",e.PRIVACY_CENTER="privacy_center",e.TCF_OVERLAY="tcf_overlay",e.TCF_BANNER="tcf_banner",e))(Re||{}),St=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},qe={exports:{}};/*! https://mths.be/base64 v1.0.0 by @mathias | MIT license */qe.exports,function(e,t){(function(i){var o=t,n=e&&e.exports==o&&e,r=typeof St=="object"&&St;(r.global===r||r.window===r)&&(i=r);var s=function(g){this.message=g};s.prototype=new Error,s.prototype.name="InvalidCharacterError";var l=function(g){throw new s(g)},a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",c=/[\t\n\f\r ]/g,u=function(g){g=String(g).replace(c,"");var p=g.length;p%4==0&&(g=g.replace(/==?$/,""),p=g.length),(p%4==1||/[^+a-zA-Z0-9/]/.test(g))&&l("Invalid character: the string to be decoded is not correctly encoded.");for(var h=0,b,m,k="",O=-1;++O<p;)m=a.indexOf(g.charAt(O)),b=h%4?b*64+m:m,h++%4&&(k+=String.fromCharCode(255&b>>(-2*h&6)));return k},d=function(g){g=String(g),/[^\0-\xFF]/.test(g)&&l("The string to be encoded contains characters outside of the Latin1 range.");for(var p=g.length%3,h="",b=-1,m,k,O,w,N=g.length-p;++b<N;)m=g.charCodeAt(b)<<16,k=g.charCodeAt(++b)<<8,O=g.charCodeAt(++b),w=m+k+O,h+=a.charAt(w>>18&63)+a.charAt(w>>12&63)+a.charAt(w>>6&63)+a.charAt(w&63);return p==2?(m=g.charCodeAt(b)<<8,k=g.charCodeAt(++b),w=m+k,h+=a.charAt(w>>10)+a.charAt(w>>4&63)+a.charAt(w<<2&63)+"="):p==1&&(w=g.charCodeAt(b),h+=a.charAt(w>>2)+a.charAt(w<<4&63)+"=="),h},_={encode:d,decode:u,version:"1.0.0"};if(o&&!o.nodeType)if(n)n.exports=_;else for(var v in _)_.hasOwnProperty(v)&&(o[v]=_[v]);else i.base64=_})(St)}(qe,qe.exports);var Oi=qe.exports;/*! js-cookie v3.0.5 | MIT */function Ze(e){for(var t=1;t<arguments.length;t++){var i=arguments[t];for(var o in i)e[o]=i[o]}return e}var hr={read:function(e){return e[0]==='"'&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}};function It(e,t){function i(n,r,s){if(!(typeof document>"u")){s=Ze({},t,s),typeof s.expires=="number"&&(s.expires=new Date(Date.now()+s.expires*864e5)),s.expires&&(s.expires=s.expires.toUTCString()),n=encodeURIComponent(n).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var l="";for(var a in s)s[a]&&(l+="; "+a,s[a]!==!0&&(l+="="+s[a].split(";")[0]));return document.cookie=n+"="+e.write(r,n)+l}}function o(n){if(!(typeof document>"u"||arguments.length&&!n)){for(var r=document.cookie?document.cookie.split("; "):[],s={},l=0;l<r.length;l++){var a=r[l].split("="),c=a.slice(1).join("=");try{var u=decodeURIComponent(a[0]);if(s[u]=e.read(c,u),n===u)break}catch{}}return n?s[n]:s}}return Object.create({set:i,get:o,remove:function(n,r){i(n,"",Ze({},r,{expires:-1}))},withAttributes:function(n){return It(this.converter,Ze({},this.attributes,n))},withConverter:function(n){return It(Ze({},this.converter,n),this.attributes)}},{attributes:{value:Object.freeze(t)},converter:{value:Object.freeze(e)}})}var br=It(hr,{path:"/"});let Je;const yr=new Uint8Array(16);function mr(){if(!Je&&(Je=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Je))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Je(yr)}const H=[];for(let e=0;e<256;++e)H.push((e+256).toString(16).slice(1));function wr(e,t=0){return H[e[t+0]]+H[e[t+1]]+H[e[t+2]]+H[e[t+3]]+"-"+H[e[t+4]]+H[e[t+5]]+"-"+H[e[t+6]]+H[e[t+7]]+"-"+H[e[t+8]]+H[e[t+9]]+"-"+H[e[t+10]]+H[e[t+11]]+H[e[t+12]]+H[e[t+13]]+H[e[t+14]]+H[e[t+15]]}var Ci={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function Pi(e,t,i){if(Ci.randomUUID&&!e)return Ci.randomUUID();e=e||{};const o=e.random||(e.rng||mr)();return o[6]=o[6]&15|64,o[8]=o[8]&63|128,wr(o)}const Xe=(e,t)=>!!Object.keys(t).includes(e.notice_key),_e=e=>!e||e===q.OPT_OUT?!1:e===q.OPT_IN?!0:e===q.ACKNOWLEDGE,ze=(e,t)=>e?t===W.NOTICE_ONLY?q.ACKNOWLEDGE:q.OPT_IN:q.OPT_OUT,Me=e=>typeof e=="string"?_e(e):e,Lt=e=>e?e.split(",").map(t=>t.trim()).filter(Boolean):[],xi=(e,t)=>e===void 0?!1:typeof e=="boolean"?e:t.globalPrivacyControl===!0?e.globalPrivacyControl:e.value,Ni=(e,t)=>e.consent_mechanism===W.NOTICE_ONLY?!0:t&&Xe(e,t)?!!t[e.notice_key]:_e(e.default_preference);var Ft=(e=>(e.CONSENT="Consent",e.LEGITIMATE_INTERESTS="Legitimate interests",e))(Ft||{});const kr=",",Er=[{experienceKey:"tcf_purpose_consents",tcfModelKey:"purposeConsents",enabledIdsKey:"purposesConsent"},{experienceKey:"tcf_purpose_legitimate_interests",tcfModelKey:"purposeLegitimateInterests",enabledIdsKey:"purposesLegint"},{experienceKey:"tcf_special_features",tcfModelKey:"specialFeatureOptins",enabledIdsKey:"specialFeatures"},{experienceKey:"tcf_vendor_consents",tcfModelKey:"vendorConsents",enabledIdsKey:"vendorsConsent"},{experienceKey:"tcf_vendor_legitimate_interests",tcfModelKey:"vendorLegitimateInterests",enabledIdsKey:"vendorsLegint"}],Or=[{cookieKey:"system_consent_preferences",experienceKey:"tcf_system_consents"},{cookieKey:"system_legitimate_interests_preferences",experienceKey:"tcf_system_legitimate_interests"}];Er.filter(({experienceKey:e})=>e!=="tcf_features"&&e!=="tcf_special_purposes").map(e=>e.experienceKey),Ft.CONSENT.toString(),Ft.LEGITIMATE_INTERESTS.toString();var Cr=Object.defineProperty,Pr=Object.defineProperties,xr=Object.getOwnPropertyDescriptors,Ai=Object.getOwnPropertySymbols,Nr=Object.prototype.hasOwnProperty,Ar=Object.prototype.propertyIsEnumerable,Ti=(e,t,i)=>t in e?Cr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,ge=(e,t)=>{for(var i in t||(t={}))Nr.call(t,i)&&Ti(e,i,t[i]);if(Ai)for(var i of Ai(t))Ar.call(t,i)&&Ti(e,i,t[i]);return e},xe=(e,t)=>Pr(e,xr(t)),Tr=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const $t="fides_consent",Si=365,Qe=br.withConverter({read(e){return decodeURIComponent(e)},write(e){return encodeURIComponent(e)}}),jt=e=>e?Object.values(e).some(t=>t!==void 0):!1,Ii=()=>Pi(),Sr=Ii(),Li=e=>{var t;return!!!((t=e.fides_meta)!=null&&t.updatedAt)},Fi=e=>{const t=new Date;return{consent:e||{},identity:{fides_user_device_id:Sr||Ii()},fides_meta:{version:"0.9.0",createdAt:t.toISOString(),updatedAt:""},tcf_consent:{},non_applicable_notice_keys:[]}},et=e=>Qe.get(e),Ne=()=>{const e=et($t);if(e)try{return JSON.parse(e)}catch{try{return JSON.parse(Oi.decode(e))}catch{return}}},$i=(e,t=!1)=>{const i=Fi(e);if(typeof document>"u")return i;if(t)return document.cookie="fides_consent=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT",i;let o=Ne();if(o?.consent){const{consent:n}=o;Object.entries(n).forEach(([r,s])=>{n[r]=Me(s)})}if(!o)return i;try{"consent"in o&&"fides_meta"in o||(o=xe(ge({},i),{consent:o}));const n=ge(ge({},e),o.consent);return o.consent=n,o}catch(n){return console.error("Unable to read consent cookie: invalid JSON.",n),i}},ji=(e,t=!1)=>{if(typeof document>"u")return;const o=new Date().toISOString();e.fides_meta.updatedAt=o;let n=JSON.stringify(e);t&&(n=Oi.encode(n));const r=window.location.hostname.split(".");let s="";for(let l=1;l<=r.length;l+=1)if(s=r.slice(-l).join("."),Qe.set($t,n,{path:"/",domain:s,expires:Si})){const c=Ne();if(c&&c.fides_meta.updatedAt===e.fides_meta.updatedAt)break}},Dt=({experience:e,cookie:t})=>{var i;if(!e.privacy_notices)return e;const o=(i=e.privacy_notices)==null?void 0:i.map(r=>{var s,l;const a=(s=t.non_applicable_notice_keys)==null?void 0:s.includes(r.notice_key),c=(l=e.non_applicable_privacy_notices)==null?void 0:l.includes(r.notice_key);if(a&&!c)return xe(ge({},r),{current_preference:void 0});const u=Object.keys(t.consent).includes(r.notice_key)?ze(!!t.consent[r.notice_key],r.consent_mechanism):void 0;return xe(ge({},r),{current_preference:u})});return xe(ge({},e),{privacy_notices:o})},Ir=e=>{const t={};return Or.forEach(({cookieKey:i})=>{var o;const n=(o=e[i])!=null?o:[];t[i]=Object.fromEntries(n.map(r=>[r.id,_e(r.preference)]))}),t},Di=(e,t)=>{const i={};return e?.options.forEach(({cookieKeys:o,default:n})=>{if(n===void 0)return;const r=xi(n,t);o.forEach(s=>{const l=i[s];if(l===void 0){i[s]=r;return}i[s]=l&&r})}),i},Ri=(e,t=!0)=>{e.forEach(i=>{var o;if(Qe.remove(i.name,{path:(o=i.path)!=null?o:"/",domain:i.domain}),t){const{hostname:n}=window.location;Qe.remove(i.name,{domain:`.${n}`})}})},zi=e=>{const t=new Map(e.map(({notice:i,consentPreference:o})=>[i.notice_key,_e(o)]));return Object.fromEntries(t)},Mi=(e,t)=>Tr(void 0,null,function*(){var i;const o=(i=window.Fides)==null?void 0:i.experience,n=o?.non_applicable_privacy_notices||[];return xe(ge({},e),{consent:zi(t),non_applicable_notice_keys:n})}),Lr=e=>{const t={};return e.privacy_notices&&e.privacy_notices.forEach(i=>{i.current_preference?t[i.notice_key]=_e(i.current_preference):i.default_preference&&(t[i.notice_key]=_e(i.default_preference))}),t},Ui=({cookie:e,experience:t})=>{const i=Lr(t);return xe(ge({},e),{consent:i,non_applicable_notice_keys:t.non_applicable_privacy_notices||e.non_applicable_notice_keys||[]})};var Fr=Object.defineProperty,$r=(e,t,i)=>t in e?Fr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Bi=(e,t,i)=>$r(e,typeof t!="symbol"?t+"":t,i);class jr{constructor(){Bi(this,"cookieName","OptanonConsent"),Bi(this,"migrationMethod",L.OT_MIGRATION)}getConsentCookie(){return et(this.cookieName)}convertToFidesConsent(t,i){if(i.otFidesMapping)try{const n=decodeURIComponent(i.otFidesMapping).replace(/^'|'$/g,""),r=JSON.parse(n),s=this.parseCookieValue(t,r);return s}catch{return}}parseCookieValue(t,i){const o={},n=t.match(/groups=([^&]*)/);return!n||!n[1]||n[1].split(",").forEach(l=>{const[a,c]=l.split(":");i[a]&&i[a].forEach(u=>{const d=c==="1";o[u]===void 0&&(o[u]=d)})}),o}}var Gi=(e=>(e.ONETRUST="onetrust",e))(Gi||{});const Rt=new Map;function Dr(e,t){Rt.set(e,t)}function Rr(e){e.otFidesMapping&&Dr(Gi.ONETRUST,new jr)}function Vi(e){let t,i;if(Array.from(Rt).some(([n,r])=>{const s=r.getConsentCookie();if(!s)return!1;const l=r.convertToFidesConsent(s,e);return l?(t=l,i=n,!0):!1}),!i)return{consent:void 0,method:void 0};const o=Rt.get(i);return{consent:t,method:o.migrationMethod}}const zr=e=>{typeof window<"u"?window.fidesDebugger||(window.fidesDebugger=e?console.log:()=>{}):globalThis.fidesDebugger=()=>{}},Z="en",tt="Manage preferences",it=/^([A-Za-z]{2,3})(?:(?:[_-]([A-Za-z0-9]{2,4}))?$|(?:(?:[_-]\w+)+))/,Mr=/^(?:([a-z]{2})(-[a-z0-9]{1,3})?|(eea))$/i,Ur=[{overrideName:"fidesEmbed",overrideType:"boolean",overrideKey:"fides_embed",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableSaveApi",overrideType:"boolean",overrideKey:"fides_disable_save_api",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableNoticesServedApi",overrideType:"boolean",overrideKey:"fides_disable_notices_served_api",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableBanner",overrideType:"boolean",overrideKey:"fides_disable_banner",validationRegex:/^(true|false)$/},{overrideName:"fidesString",overrideType:"string",overrideKey:"fides_string",validationRegex:/(.*)/},{overrideName:"fidesTcfGdprApplies",overrideType:"boolean",overrideKey:"fides_tcf_gdpr_applies",validationRegex:/^(true|false)$/},{overrideName:"fidesLocale",overrideType:"string",overrideKey:"fides_locale",validationRegex:it},{overrideName:"fidesPrimaryColor",overrideType:"string",overrideKey:"fides_primary_color",validationRegex:/(.*)/},{overrideName:"fidesClearCookie",overrideType:"string",overrideKey:"fides_clear_cookie",validationRegex:/(.*)/},{overrideName:"fidesConsentOverride",overrideType:"string",overrideKey:"fides_consent_override",validationRegex:/^(accept|reject)$/},{overrideName:"otFidesMapping",overrideType:"string",overrideKey:"ot_fides_mapping",validationRegex:/(.*)/},{overrideName:"fidesDisabledNotices",overrideType:"array",overrideKey:"fides_disabled_notices",validationRegex:/(.*)/,transform:Lt},{overrideName:"fidesDisabledSystems",overrideType:"array",overrideKey:"fides_disabled_systems",validationRegex:/(.*)/,transform:Lt},{overrideName:"fidesConsentNonApplicableFlagMode",overrideType:"string",overrideKey:"fides_consent_non_applicable_flag_mode",validationRegex:/^(omit|include)$/},{overrideName:"fidesConsentFlagType",overrideType:"string",overrideKey:"fides_consent_flag_type",validationRegex:/^(boolean|consent_mechanism)$/},{overrideName:"fidesInitializedEventMode",overrideType:"string",overrideKey:"fides_initialized_event_mode",validationRegex:/^(multiple|once|disable)$/},{overrideName:"fidesModalDefaultView",overrideType:"string",overrideKey:"fides_modal_default_view",validationRegex:/^\/tcf\/(purposes|features|vendors)$/},{overrideName:"fidesModalDisplay",overrideType:"string",overrideKey:"fides_modal_display",validationRegex:/^(immediate|default)$/},{overrideName:"fidesUnsupportedRepeatedScriptLoading",overrideType:"string",overrideKey:"fides_unsupported_repeated_script_loading",validationRegex:/^(enabled_acknowledge_not_supported|disabled)$/}],Br=[{overrideName:"title",overrideType:"string",overrideKey:"fides_title",validationRegex:/(.*)/},{overrideName:"description",overrideType:"string",overrideKey:"fides_description",validationRegex:/(.*)/},{overrideName:"privacy_policy_url",overrideType:"string",overrideKey:"fides_privacy_policy_url",validationRegex:/(.*)/},{overrideName:"override_language",overrideType:"string",overrideKey:"fides_override_language",validationRegex:it}],Gr="fides-overlay-wrapper",Vr="fides-i18n-icon",zt=["marketing","data_sales","data_sales_and_sharing","data_sales_sharing_gpp_us_state","data_sharing_gpp_us_state","data_sales_gpp_us_state","targeted_advertising_gpp_us_state","sales_sharing_targeted_advertising_gpp_us_national","sales_sharing_targeted_advertising"];var Hr=Object.defineProperty,Kr=Object.defineProperties,Yr=Object.getOwnPropertyDescriptors,Hi=Object.getOwnPropertySymbols,Wr=Object.prototype.hasOwnProperty,qr=Object.prototype.propertyIsEnumerable,Ki=(e,t,i)=>t in e?Hr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,ot=(e,t)=>{for(var i in t||(t={}))Wr.call(t,i)&&Ki(e,i,t[i]);if(Hi)for(var i of Hi(t))qr.call(t,i)&&Ki(e,i,t[i]);return e},Zr=(e,t)=>Kr(e,Yr(t));const Ae=e=>!e||typeof e!="object"?!1:Object.keys(e).length===0||"id"in e,Jr=e=>!!(e&&e.every(t=>t.default_preference===q.OPT_IN)),nt=e=>{if(e){if(e.location&&Mr.test(e.location))return e.location.replace("-","_").toLowerCase();if(e.country&&e.region)return`${e.country.toLowerCase()}_${e.region.toLowerCase()}`}},Yi=e=>{if(typeof e!="object"||!e.fidesApiUrl||!e.privacyCenterUrl)return!1;try{new URL(e.privacyCenterUrl),new URL(e.fidesApiUrl)}catch{return!1}return!0},Wi=e=>{switch(e){case Pe.OPTIONS:return Ur;case Pe.EXPERIENCE_TRANSLATION:return Br;default:return null}},qi=e=>{if(!Ae(e))return!1;const t=e.experience_config;return!(!t||!(t.component===V.MODAL||t.component===V.BANNER_AND_MODAL||t.component===V.TCF_OVERLAY||t.component===V.HEADLESS)||t.component===V.BANNER_AND_MODAL&&!(e.privacy_notices&&e.privacy_notices.length>0))},rt=e=>e.fidesConsentOverride===L.ACCEPT||e.fidesConsentOverride===L.REJECT,Xr=e=>{var t;return(t=e.default_preference)!=null?t:q.OPT_OUT},at=(e,t,i,o)=>{var n,r,s,l,a,c,u;return o?.fidesDisableBanner||!Ae(e)||o.fidesModalDisplay==="immediate"||((n=e.experience_config)==null?void 0:n.component)===V.TCF_OVERLAY&&e.vendor_count===0?!1:((r=e.experience_config)==null?void 0:r.component)===V.TCF_OVERLAY&&t?o&&rt(o)?!1:(s=e.meta)!=null&&s.version_hash?e.meta.version_hash!==t.tcf_version_hash:!0:((l=e.experience_config)==null?void 0:l.component)===V.MODAL||((a=e.experience_config)==null?void 0:a.component)===V.HEADLESS||!((c=e?.privacy_notices)!=null&&c.length)?!1:i?o&&rt(o)?!1:t?.fides_meta.consentMethod===L.GPC?!0:!((u=e.privacy_notices)==null?void 0:u.every(_=>Xe(_,i))):!0},Zi=e=>{e[0]==="window"&&e.shift();let t=window;for(;e.length>0;){const i=e.shift();if(typeof i>"u"||typeof t[i]!="object")return;t=t[i]}return t},Ji=({value:e,notice:t,consentContext:i})=>!i.globalPrivacyControl||!t.has_gpc_flag||t.consent_mechanism===W.NOTICE_ONLY?ae.NONE:e?ae.OVERRIDDEN:ae.APPLIED,Mt=()=>{},Qr=(e,t)=>e.map(i=>{var o;const n=ze(t.includes(i.notice.notice_key),i.notice.consent_mechanism);return new Nt(i.notice,n,(o=i.bestTranslation)==null?void 0:o.privacy_notice_history_id)}),Xi=e=>{try{const t=JSON.stringify(e);return btoa(t.replace(/\s/g,""))}catch(t){throw new Error("Failed to encode Notice Consent string:",{cause:t})}},st=e=>{if(!e)return{};try{const t=atob(e),i=JSON.parse(t);return Object.fromEntries(Object.entries(i).map(([o,n])=>[o,!!n]))}catch(t){throw new Error("Failed to decode Notice Consent string:",{cause:t})}},ea=({consent:e,nonApplicableNotices:t,flagType:i,mode:o=Ce.OMIT})=>{if(!t?.length)return e;const n=ot({},e);return o===Ce.INCLUDE?t.forEach(r=>{n[r]=i===pe.CONSENT_MECHANISM?q.NOT_APPLICABLE:!0}):t.forEach(r=>{delete n[r]}),n},ta=({consent:e,flagType:t=pe.BOOLEAN,consentMechanisms:i})=>{const o={};if(t!==pe.CONSENT_MECHANISM)return Object.fromEntries(Object.entries(e).map(([r,s])=>[r,Me(s)]));const n=Object.values(e).some(r=>typeof r=="boolean");if(n&&!i)throw new Error("Cannot transform boolean consent values to consent mechanisms without consent mechanisms map");return n?(Object.keys(e).forEach(r=>{const s=e[r];if(typeof s=="string")o[r]=s;else{const l=i[r];o[r]=ze(s,l)}}),o):ot({},e)},Ue=(e,t,i=[],o,n,r)=>{var s,l,a;const c=ot({},e),u=(s=window.Fides)==null?void 0:s.options,d=(l=n??u?.fidesConsentNonApplicableFlagMode)!=null?l:Ce.OMIT,_=(a=o??u?.fidesConsentFlagType)!=null?a:pe.BOOLEAN,v={};Object.assign(v,ea({consent:{},nonApplicableNotices:t??[],flagType:_,mode:d}));const g=i.reduce((h,b)=>Zr(ot({},h),{[b.notice_key]:b.consent_mechanism}),{}),p={};return Object.entries(c).forEach(([h,b])=>{r?.includes(h)&&!t?.includes(h)||(p[h]=b)}),Object.assign(v,ta({consent:p,consentMechanisms:g,flagType:_})),v},ia=e=>{const t=e.split("~")[0];return!!(t&&["1","2"].includes(t)&&e?.match(t==="1"?/\d~[0-9.]*$/:/\d~[0-9.]*~dv.[0-9.]*$/))},Ut=(e,t,i)=>new Proxy(e,{get(o,n){if(o[n.toString()]===void 0){const r=t.fidesConsentFlagType===pe.CONSENT_MECHANISM;return!i&&n.toString()==="essential"?r?W.NOTICE_ONLY:!0:r?W.OPT_OUT:!1}return o[n.toString()]}});var oa=Object.defineProperty,na=Object.defineProperties,ra=Object.getOwnPropertyDescriptors,Qi=Object.getOwnPropertySymbols,aa=Object.prototype.hasOwnProperty,sa=Object.prototype.propertyIsEnumerable,eo=(e,t,i)=>t in e?oa(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Be=(e,t)=>{for(var i in t||(t={}))aa.call(t,i)&&eo(e,i,t[i]);if(Qi)for(var i of Qi(t))sa.call(t,i)&&eo(e,i,t[i]);return e},la=(e,t)=>na(e,ra(t)),me=(e=>(e.FIDES="fides",e.EXTERNAL="external",e))(me||{}),Q=(e=>(e.TOGGLE="toggle",e.BUTTON="button",e.LINK="link",e))(Q||{});const se=(e,t,i)=>{var o,n,r,s,l,a,c,u;const d=t?Be({},t):void 0;if(typeof window<"u"&&typeof CustomEvent<"u"){const _=Be({consentMethod:d?.fides_meta.consentMethod},i);(o=i?.trigger)!=null&&o.origin||(_.trigger=Be(Be({},_.trigger),{origin:"fides"}));const v=(n=performance?.mark)==null?void 0:n.call(performance,e),g=v?.startTime,p=d;p&&d?.consent&&(p.consent=Ue(d.consent,(s=(r=window.Fides)==null?void 0:r.experience)==null?void 0:s.non_applicable_privacy_notices,(a=(l=window.Fides)==null?void 0:l.experience)==null?void 0:a.privacy_notices,void 0,void 0,d.non_applicable_notice_keys));const h=new CustomEvent(e,{detail:la(Be({},p),{debug:!!((u=(c=window.Fides)==null?void 0:c.options)!=null&&u.debug),extraDetails:_,timestamp:g}),bubbles:!0});window.dispatchEvent(h)}},to=(e,t)=>{const i=o=>t(o.detail);return window.addEventListener(e,i),()=>{window.removeEventListener(e,i)}},io=(e,t)=>{var i,o;se("FidesConsentLoaded",e,t),((o=(i=window.Fides)==null?void 0:i.options)==null?void 0:o.fidesInitializedEventMode)==="multiple"&&se("FidesInitialized",e,t)},oo=(e,t)=>{var i,o;se("FidesReady",e,t);const n=(o=(i=window.Fides)==null?void 0:i.options)==null?void 0:o.fidesInitializedEventMode;(n==="multiple"||n==="once")&&se("FidesInitialized",e,t)},Bt=e=>{if(!e)return{tc:"",ac:"",gpp:"",nc:""};const[t="",i="",o="",n=""]=e.split(kr);return t?{tc:t,ac:i,gpp:o,nc:n}:{tc:"",ac:"",gpp:o,nc:n}},ca=()=>typeof window.blueConicClient<"u"&&typeof window.blueConicClient.event<"u"&&typeof window.blueConicClient.event.subscribe<"u",lt=()=>{var e,t,i;if(!ca()||!((e=window.blueConicClient)!=null&&e.profile))return;const o=(i=(t=window.blueConicClient)==null?void 0:t.profile)==null?void 0:i.getProfile(),{consent:n}=window.Fides,r=n!==void 0&&Object.entries(n).length>0,s=zt.some(l=>n[l]);!r||s?(o.setConsentedObjectives(["iab_purpose_1","iab_purpose_2","iab_purpose_3","iab_purpose_4"]),o.setRefusedObjectives([])):(o.setConsentedObjectives(["iab_purpose_1"]),o.setRefusedObjectives(["iab_purpose_2","iab_purpose_3","iab_purpose_4"])),window.blueConicClient.profile.updateProfile()},da=({approach:e="onetrust"}={approach:"onetrust"})=>{if(e!=="onetrust")throw new Error("Unsupported approach");window.addEventListener("FidesReady",lt),window.addEventListener("FidesUpdated",lt),window.addEventListener("onBlueConicLoaded",lt),lt()},no=(e,t)=>{var i,o,n,r,s,l,a,c,u,d,_,v,g,p,h,b;const m=(i=window.dataLayer)!=null?i:[];window.dataLayer=m;const{detail:k,type:O}=e,{consent:w,extraDetails:N,fides_string:M,timestamp:P}=k;let A=w;const T=(s=(r=t?.flag_type)!=null?r:(n=(o=window.Fides)==null?void 0:o.options)==null?void 0:n.fidesConsentFlagType)!=null?s:pe.BOOLEAN,I=(u=(c=t?.non_applicable_flag_mode)!=null?c:(a=(l=window.Fides)==null?void 0:l.options)==null?void 0:a.fidesConsentNonApplicableFlagMode)!=null?u:Ce.OMIT,R=(v=(_=(d=window.Fides)==null?void 0:d.experience)==null?void 0:_.privacy_notices)!=null?v:[],U=(p=(g=window.Fides)==null?void 0:g.experience)==null?void 0:p.non_applicable_privacy_notices;A=Ue(w,U,R,T,I,(b=(h=window.Fides)==null?void 0:h.cookie)==null?void 0:b.non_applicable_notice_keys);const Y={consent:A,extraDetails:N,fides_string:M,timestamp:P};m.push({event:O,Fides:Y})},ua=e=>{var t,i;if(Object.entries({FidesInitializing:!1,FidesInitialized:!0,FidesConsentLoaded:!0,FidesReady:!0,FidesUpdating:!0,FidesUpdated:!0,FidesUIChanged:!0,FidesUIShown:!0,FidesModalClosed:!0}).filter(([,r])=>r).map(([r])=>r).forEach(r=>{window.addEventListener(r,s=>no(s,e))}),(t=window.Fides)!=null&&t.initialized){const{consent:r,fides_meta:s,identity:l,tcf_consent:a}=window.Fides,c=(i=performance?.getEntriesByName("FidesInitialized")[0])==null?void 0:i.startTime;no({type:"FidesInitialized",detail:{consent:r,fides_meta:s,identity:l,tcf_consent:a,timestamp:c,extraDetails:{consentMethod:s?.consentMethod}}},e)}},fa=()=>{if(window.fbq)return window.fbq;const e={queue:[],loaded:!0,version:"2.0",push(...t){const i=window.fbq;i.callMethod?i.callMethod(...t):i.queue.push(t)}};return window.fbq=Object.assign(e.push,e),window._fbq=window.fbq,window.fbq},pa=e=>{const t=fa();t("consent",e.consent?"grant":"revoke"),e.dataUse?t("dataProcessingOptions",[]):t("dataProcessingOptions",["LDU"],1,1e3)},va={marketing:zt,sale_of_data:zt,analytics:["analytics"],preferences:["functional"]};function _a(e,t){var i;const o=Object.fromEntries(Object.entries(e).map(([r,s])=>[r,Me(s)])),n={};return Object.entries(va).forEach(([r,s])=>{const l=s.some(c=>o[c]===!0),a=s.some(c=>o[c]===!1);l?n[r]=!0:a&&(n[r]=!1)}),n.sale_of_data===void 0&&(n.sale_of_data=(i=t?.sale_of_data_default)!=null?i:!1),n}const ct=(e,t)=>{window.Shopify.customerPrivacy.setTrackingConsent(_a(e,t),()=>{})},ro=e=>{var t,i;(t=window.Shopify)!=null&&t.customerPrivacy||console.error("Fides could not access Shopify's customerPrivacy API"),window.addEventListener("FidesReady",o=>ct(o.detail.consent,e)),window.addEventListener("FidesUpdating",o=>ct(o.detail.consent,e)),window.addEventListener("FidesUpdated",o=>ct(o.detail.consent,e)),(i=window.Fides)!=null&&i.initialized&&window.Fides.cookie&&ct(window.Fides.cookie.consent,e)},ga=e=>{let t,i;const o=()=>{clearTimeout(t),clearTimeout(i)},n=()=>{if(window.Shopify){if(o(),window.Shopify.customerPrivacy){ro(e);return}window.Shopify.loadFeatures([{name:"consent-tracking-api",version:"0.1"}],r=>{if(r)throw Error("Fides could not load Shopify's consent-tracking-api");ro(e)});return}i=setTimeout(n,200)};t=setTimeout(()=>{throw o(),Error("Fides.shopify was called but Shopify is not present in the page after 3 seconds.")},3e3),n()};var ha={"static.gpc":"\u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629","static.gpc.description":"\u062A\u0645 \u062A\u0637\u0628\u064A\u0642 \u062A\u0641\u0636\u064A\u0644\u0643 \u0644\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629. \u0644\u0642\u062F \u0623\u0644\u063A\u064A \u0627\u0634\u062A\u0631\u0627\u0643\u0643 \u062A\u0644\u0642\u0627\u0626\u064A\u064B\u0627 \u0641\u064A \u062D\u0627\u0644\u0627\u062A \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u062A\u064A \u062A\u0644\u062A\u0632\u0645 \u0628\u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629.","static.gpc.status.applied":"\u062A\u0645 \u0627\u0644\u062A\u0637\u0628\u064A\u0642","static.gpc.status.overridden":"\u062A\u0645 \u0627\u0644\u062A\u062C\u0627\u0648\u0632","static.gpc.title":"\u062A\u0645 \u0627\u0643\u062A\u0634\u0627\u0641 \u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629","static.other.cookies":"\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637","static.other.back":"\u0631\u062C\u0648\u0639","static.other.vendors":"\u0627\u0644\u0645\u0648\u0631\u062F\u0648\u0646","static.other.retention":"\u0627\u0644\u062D\u0641\u0638","static.other.description":"\u0648\u0635\u0641"},ba={"static.gpc":"\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438","static.gpc.description":"\u0412\u0430\u0448\u0435\u0442\u043E \u043F\u0440\u0435\u0434\u043F\u043E\u0447\u0438\u0442\u0430\u043D\u0438\u0435 \u0437\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438 \u0435 \u0437\u0430\u0447\u0435\u0442\u0435\u043D\u043E. \u0412\u0438\u0435 \u0441\u0442\u0435 \u0431\u0438\u043B\u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0438\u0437\u043A\u043B\u044E\u0447\u0435\u043D\u0438 \u043E\u0442 \u0441\u043B\u0443\u0447\u0430\u0438\u0442\u0435 \u043D\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u043D\u0435 \u043D\u0430 \u0434\u0430\u043D\u043D\u0438, \u043A\u043E\u0438\u0442\u043E \u0441\u0435 \u043E\u0442\u043D\u0430\u0441\u044F\u0442 \u043A\u044A\u043C \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438.","static.gpc.status.applied":"\u041F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u043E","static.gpc.status.overridden":"\u041F\u0440\u0435\u043C\u0430\u0445\u043D\u0430\u0442\u043E","static.gpc.title":"\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u0435\u043D \u0435 \u0433\u043B\u043E\u0431\u0430\u043B\u0435\u043D \u043A\u043E\u043D\u0442\u0440\u043E\u043B \u043D\u0430 \u043F\u043E\u0432\u0435\u0440\u0438\u0442\u0435\u043B\u043D\u043E\u0441\u0442\u0442\u0430","static.other.cookies":"\u0411\u0438\u0441\u043A\u0432\u0438\u0442\u043A\u0438","static.other.back":"\u041D\u0430\u0437\u0430\u0434","static.other.vendors":"\u0414\u043E\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438","static.other.retention":"\u0421\u044A\u0445\u0440\u0430\u043D\u0435\u043D\u0438\u0435","static.other.description":"\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435"},ya={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Va\u0161 izbor globalne kontrole privatnosti je uva\u017Een. Automatski ste isklju\u010Deni iz slu\u010Dajeva kori\u0161tenja podataka koji se pridr\u017Eavaju globalne kontrole privatnosti.","static.gpc.status.applied":"Prihva\u0107ena","static.gpc.status.overridden":"Odbijena","static.gpc.title":"Globalna kontrola privatnosti je otkrivena","static.other.cookies":"Kola\u010Di\u0107i","static.other.back":"Nazad","static.other.vendors":"Dobavlja\u010Di","static.other.retention":"Zadr\u017Eavanje","static.other.description":"Opis"},ma={"static.gpc":"Control de privadesa global","static.gpc.description":"S\u2019ha respectat la vostra prefer\xE8ncia pel que fa al control de privadesa global. Se us ha excl\xF2s autom\xE0ticament dels casos d\u2019\xFAs de dades que s\u2019adhereixen al control de privadesa global.","static.gpc.status.applied":"Aplicat","static.gpc.status.overridden":"Anul\xB7lat","static.gpc.title":"S'ha detectat un control de privadesa global","static.other.cookies":"Galetes","static.other.back":"Enrere","static.other.vendors":"Prove\xEFdors","static.other.retention":"Retenci\xF3","static.other.description":"Descripci\xF3"},wa={"static.gpc":"Glob\xE1ln\xED kontrola ochrany osobn\xEDch \xFAdaj\u016F","static.gpc.description":"Byly dodr\u017Eeny va\u0161e glob\xE1ln\xED preference ochrany osobn\xEDch \xFAdaj\u016F. Automaticky jste byli vy\u0159azeni z pou\u017E\xEDv\xE1n\xED \xFAdaj\u016F v p\u0159\xEDpadech, na kter\xE9 se vztahuje glob\xE1ln\xED ochrana osobn\xEDch \xFAdaj\u016F.","static.gpc.status.applied":"Aplikov\xE1no","static.gpc.status.overridden":"P\u0159eps\xE1no","static.gpc.title":"Byla zji\u0161t\u011Bna glob\xE1ln\xED kontrola soukrom\xED","static.other.cookies":"Soubory cookie","static.other.back":"Zp\u011Bt","static.other.vendors":"Dodavatel\xE9","static.other.retention":"Ulo\u017Een\xED","static.other.description":"Popis"},ka={"static.gpc":"Global fortrolighedskontrol","static.gpc.description":"Din pr\xE6ference i forbindelse med global fortrolighedskontrol er blevet efterkommet. Du er automatisk blevet frameldt tilf\xE6lde af databrug, der overholder global fortrolighedskontrol.","static.gpc.status.applied":"Anvendt","static.gpc.status.overridden":"Tilsidesat","static.gpc.title":"Global privatlivskontrol registreret","static.other.cookies":"Cookies","static.other.back":"Tilbage","static.other.vendors":"Forhandlere","static.other.retention":"Opbevaring","static.other.description":"Beskrivelse"},Ea={"static.gpc":"Globale Datenschutzeinstellungen","static.gpc.description":"Ihre globale Datenschutzeinstellungen werden ber\xFCcksichtigt. Sie wurden automatisch von Anwendungsf\xE4llen ausgenommen, die nicht Ihren globalen Datenschutzeinstellungen unterliegen.","static.gpc.status.applied":"Angewendet","static.gpc.status.overridden":"\xDCberschrieben","static.gpc.title":"Globale Datenschutzkontrolle erkannt","static.other.cookies":"Cookies","static.other.back":"Zur\xFCck","static.other.vendors":"Anbieter","static.other.retention":"Aufbewahrungsdauer","static.other.description":"Beschreibung"},Oa={"static.gpc":"\u039A\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5","static.gpc.description":"\u0397 \u03C0\u03C1\u03BF\u03C4\u03AF\u03BC\u03B7\u03C3\u03AE \u03C3\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5 \u03AD\u03C7\u03B5\u03B9 \u03C4\u03B7\u03C1\u03B7\u03B8\u03B5\u03AF. \u0388\u03C7\u03B5\u03C4\u03B5 \u03B5\u03BE\u03B1\u03B9\u03C1\u03B5\u03B8\u03B5\u03AF \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03B1\u03C0\u03CC \u03C0\u03B5\u03C1\u03B9\u03C0\u03C4\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C3\u03C5\u03BC\u03BC\u03BF\u03C1\u03C6\u03CE\u03BD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03BF\u03BD \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5.","static.gpc.status.applied":"\u0395\u03C6\u03B1\u03C1\u03BC\u03CC\u03C3\u03C4\u03B7\u03BA\u03B5","static.gpc.status.overridden":"\u03A0\u03B1\u03C1\u03B1\u03BA\u03AC\u03BC\u03C6\u03B8\u03B7\u03BA\u03B5","static.gpc.title":"\u0395\u03BD\u03C4\u03BF\u03C0\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03BF \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5","static.other.cookies":"Cookies","static.other.back":"\u03A0\u03AF\u03C3\u03C9","static.other.vendors":"\u03A0\u03C1\u03BF\u03BC\u03B7\u03B8\u03B5\u03C5\u03C4\u03AD\u03C2","static.other.retention":"\u0394\u03B9\u03B1\u03C4\u03AE\u03C1\u03B7\u03C3\u03B7","static.other.description":"\u03A0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE"},Ca={"static.gpc":"Global Privacy Control","static.gpc.description":"Your global privacy control preference has been honored. You have been automatically opted out of data use cases which adhere to global privacy control.","static.gpc.status.applied":"Applied","static.gpc.status.overridden":"Overridden","static.gpc.title":"Global Privacy Control detected","static.other.cookies":"Cookies","static.other.back":"Back","static.other.vendors":"Vendors","static.other.retention":"Retention","static.other.description":"Description"},Pa={"static.gpc":"Control de privacidad global","static.gpc.description":"Su preferencia de control de privacidad global se ha respetado. Se le ha excluido autom\xE1ticamente de los casos de uso de datos que se adhieren al control de privacidad global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidad global detectado","static.other.cookies":"Cookies","static.other.back":"Atr\xE1s","static.other.vendors":"Proveedores","static.other.retention":"Conservaci\xF3n","static.other.description":"Descripci\xF3n"},xa={"static.gpc":"Control de privacidad global","static.gpc.description":"Su preferencia de control de privacidad global se ha respetado. Se le excluy\xF3 autom\xE1ticamente de los casos de uso de datos que se adhieren al control de privacidad global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidad global detectado","static.other.cookies":"Cookies","static.other.back":"Atr\xE1s","static.other.vendors":"Proveedores","static.other.retention":"Retenci\xF3n","static.other.description":"Descripci\xF3n"},Na={"static.gpc":"\xDCldine andmekaitsekontroll","static.gpc.description":"Teie \xFCldist andmekaitse-eelistust on arvestatud. Teid on automaatselt v\xE4lja arvatud andmete kasutamise juhtudest, mis j\xE4rgivad \xFCldist andmekaitsekontrolli.","static.gpc.status.applied":"Rakendatud","static.gpc.status.overridden":"T\xFChistatud","static.gpc.title":"Tuvastati globaalne privaatsuskontroll","static.other.cookies":"K\xFCpsised","static.other.back":"Tagasi","static.other.vendors":"Kaupmehed","static.other.retention":"S\xE4ilitamine","static.other.description":"Kirjeldus"},Aa={"static.gpc":"Pribatutasun-kontrol globala","static.gpc.description":"Pribatutasun-kontrol globalaren lehentasuna bete da. Pribatutasun-kontrol globalari atxikitzen zaizkion datuen erabileren kasuetatik automatikoki baztertua izan zara.","static.gpc.status.applied":"Ezarrita","static.gpc.status.overridden":"Baliogabetuta","static.gpc.title":"Pribatutasun-kontrol globala atzeman da","static.other.cookies":"Cookieak","static.other.back":"Atzera","static.other.vendors":"Hornitzaileak","static.other.retention":"Atxikipena","static.other.description":"Deskripzioa"},Ta={"static.gpc":"Maailmanlaajunen tietosuojavalvonta","static.gpc.description":"Maailmanlaajuinen tietosuojavalvontanne on vahvistettu. Teid\xE4t on automaattisesti poistettu tietojen k\xE4ytt\xF6tapauksista, jotka noudattavat maailmanlaajuista tietosuojavalvontaa.","static.gpc.status.applied":"K\xE4yt\xF6ss\xE4","static.gpc.status.overridden":"Ohitettu","static.gpc.title":"Yleinen tietosuoja-asetus havaittu","static.other.cookies":"Ev\xE4steet","static.other.back":"Takaisin","static.other.vendors":"Toimittajat","static.other.retention":"S\xE4ilytt\xE4minen","static.other.description":"Kuvaus"},Sa={"static.gpc":"Global Privacy Control","static.gpc.description":"Votre pr\xE9f\xE9rence en mati\xE8re de contr\xF4le global de la confidentialit\xE9 (GPC) a \xE9t\xE9 respect\xE9e. Vous avez automatiquement \xE9t\xE9 retir\xE9 des cas d\u2019usage des donn\xE9es qui adh\xE8rent au GPC.","static.gpc.status.applied":"Appliqu\xE9","static.gpc.status.overridden":"Ignor\xE9","static.gpc.title":"Contr\xF4le global de la confidentialit\xE9 d\xE9tect\xE9","static.other.cookies":"Cookies","static.other.back":"Retour","static.other.vendors":"Fournisseurs","static.other.retention":"R\xE9tention","static.other.description":"Description"},Ia={"static.gpc":"Contr\xF4le mondial de confidentialit\xE9","static.gpc.description":"Votre pr\xE9f\xE9rence en mati\xE8re de contr\xF4le mondial de confidentialit\xE9 a \xE9t\xE9 honor\xE9e. Vous avez \xE9t\xE9 automatiquement \xE9cart\xE9 des cas d'utilisation de donn\xE9es qui adh\xE8rent au contr\xF4le mondial de confidentialit\xE9.","static.gpc.status.applied":"Appliqu\xE9","static.gpc.status.overridden":"Annul\xE9","static.gpc.title":"Contr\xF4le de la confidentialit\xE9 global d\xE9tect\xE9","static.other.cookies":"T\xE9moins","static.other.back":"Retour","static.other.vendors":"Fournisseurs","static.other.retention":"R\xE9tention","static.other.description":"Description"},La={"static.gpc":"Control de privacidade global","static.gpc.description":"Respetouse a s\xFAa preferencia de control de privacidade global. Foi automaticamente exclu\xEDdo dos casos de uso de datos que cumpren o control de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Detectouse un control de privacidade global","static.other.cookies":"Cookies","static.other.back":"Atr\xE1s","static.other.vendors":"Provedores","static.other.retention":"Retenci\xF3n","static.other.description":"Descrici\xF3n"},Fa={"static.gpc":"\u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923","static.gpc.description":"\u0906\u092A\u0915\u0940 \u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0935\u0930\u0940\u092F\u0924\u093E\u0913\u0902 \u0915\u093E \u0938\u092E\u094D\u092E\u093E\u0928 \u0915\u093F\u092F\u093E \u0917\u092F\u093E\u0964 \u0906\u092A\u0915\u094B \u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0915\u093E \u092A\u093E\u0932\u0928 \u0915\u0930\u0928\u0947 \u0935\u093E\u0932\u0947 \u0921\u0947\u091F\u093E \u0909\u092A\u092F\u094B\u0917 \u092E\u093E\u092E\u0932\u094B\u0902 \u0938\u0947 \u0938\u094D\u0935\u091A\u093E\u0932\u093F\u0924 \u0930\u0942\u092A \u0938\u0947 \u092C\u093E\u0939\u0930 \u0915\u0930 \u0926\u093F\u092F\u093E \u0917\u092F\u093E \u0939\u0948\u0964","static.gpc.status.applied":"\u0932\u093E\u0917\u0942 \u0915\u093F\u092F\u093E","static.gpc.status.overridden":"\u0913\u0935\u0930\u0930\u093E\u0907\u0921 \u0915\u093F\u092F\u093E","static.gpc.title":"\u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0915\u093E \u092A\u0924\u093E \u091A\u0932\u093E","static.other.cookies":"\u0915\u0941\u0915\u0940\u091C\u093C","static.other.back":"\u0935\u093E\u092A\u0938","static.other.vendors":"\u0935\u0947\u0902\u0921\u0930\u094D\u0938","static.other.retention":"\u0930\u093F\u091F\u0947\u0902\u0936\u0928","static.other.description":"\u0935\u093F\u0935\u0930\u0923"},$a={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Po\u0161tuju se va\u0161e preferencije globalne kontrole privatnosti. Automatski se isklju\u010Deni iz slu\u010Dajeve kori\u0161tenja podataka koji se pridr\u017Eavaju globalne kontrole privatnosti.","static.gpc.status.applied":"Primijenjeno","static.gpc.status.overridden":"Premo\u0161\u0107eno","static.gpc.title":"Otkrivena je globalna kontrola privatnosti","static.other.cookies":"Kola\u010Di\u0107i","static.other.back":"Natrag","static.other.vendors":"Uslu\u017Ene tvrtke","static.other.retention":"Zadr\u017Eavanje","static.other.description":"Opis"},ja={"static.gpc":"Glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1s","static.gpc.description":"A glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1ssal kapcsolatos be\xE1ll\xEDt\xE1sai el lettek fogadva. Automatikusan kiker\xFClt azokb\xF3l az adatfelhaszn\xE1l\xE1si esetekb\u0151l, amelyek a glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1shoz tartoznak.","static.gpc.status.applied":"Alkalmazva","static.gpc.status.overridden":"Fel\xFCl\xEDrva","static.gpc.title":"Glob\xE1lis adatv\xE9delmi ellen\u0151rz\xE9s \xE9szlelve","static.other.cookies":"S\xFCtik","static.other.back":"Vissza","static.other.vendors":"\xC9rt\xE9kes\xEDt\u0151k","static.other.retention":"Meg\u0151rz\xE9s","static.other.description":"Le\xEDr\xE1s"},Da={"static.gpc":"Controllo Globale della Privacy","static.gpc.description":"Le tue preferenze del Controllo Globale della Privacy sono state prese in carico. Sei stato automaticamente escluso dai casi di utilizzo dei dati che corrispondono al Controllo Globale della Privacy.","static.gpc.status.applied":"Applicato","static.gpc.status.overridden":"Non applicato","static.gpc.title":"Rilevato il controllo della privacy globale","static.other.cookies":"Cookie","static.other.back":"Indietro","static.other.vendors":"Fornitori","static.other.retention":"Conservazione","static.other.description":"Descrizione"},Ra={"static.gpc":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB","static.gpc.description":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306E\u8A2D\u5B9A\u306F\u5C0A\u91CD\u3055\u308C\u307E\u3059\u3002\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306B\u5F93\u3046\u30C7\u30FC\u30BF\u306E\u30E6\u30FC\u30B9\u30B1\u30FC\u30B9\u304B\u3089\u306F\u81EA\u52D5\u7684\u306B\u30AA\u30D7\u30C8\u30A2\u30A6\u30C8\u3055\u308C\u3066\u3044\u307E\u3059\u3002","static.gpc.status.applied":"\u9069\u7528","static.gpc.status.overridden":"\u5909\u66F4","static.gpc.title":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u7BA1\u7406\u3092\u691C\u51FA\u3057\u307E\u3057\u305F","static.other.cookies":"\u30AF\u30C3\u30AD\u30FC","static.other.back":"\u623B\u308B","static.other.vendors":"\u30D9\u30F3\u30C0\u30FC","static.other.retention":"\u4FDD\u6301\u671F\u9593","static.other.description":"\u8AAC\u660E"},za={"static.gpc":"Visuotin\u0117 privatumo kontrol\u0117","static.gpc.description":"Buvo atsi\u017Evelgta \u012F j\u016Bs\u0173 visuotin\u0117s privatumo kontrol\u0117s pageidavim\u0105. Buvote automati\u0161kai at\u0161auktas i\u0161 duomen\u0173 naudojimo atvej\u0173, kai laikomasi visuotin\u0117s privatumo kontrol\u0117s.","static.gpc.status.applied":"Taikoma","static.gpc.status.overridden":"Nebegaliojantis","static.gpc.title":"Aptiktas visuotinis privatumo valdymas","static.other.cookies":"Slapukai","static.other.back":"Atgal","static.other.vendors":"Pardav\u0117jai","static.other.retention":"Saugojimas","static.other.description":"Apra\u0161ymas"},Ma={"static.gpc":"Glob\u0101l\u0101 priv\u0101tuma kontrole","static.gpc.description":"M\u0113s esam izpild\u012Bju\u0161i j\u016Bsu pras\u012Bbu kontrol\u0113t glob\u0101lo priv\u0101tumu. P\u0113c noklus\u0113juma esat no\u0146emts no datu lietojuma pieteikumiem, kas atbilst glob\u0101lajai priv\u0101tuma kontrolei.","static.gpc.status.applied":"Pielietots","static.gpc.status.overridden":"Ignor\u0113ts","static.gpc.title":"Konstat\u0113ta glob\u0101l\u0101 priv\u0101tuma kontrole","static.other.cookies":"S\u012Bkdatnes","static.other.back":"Atpaka\u013C","static.other.vendors":"Pre\u010Du p\u0101rdev\u0113ji/pakalpojumu sniedz\u0113ji","static.other.retention":"Ietur\u0113\u0161ana","static.other.description":"Apraksts"},Ua={"static.gpc":"Kontroll Globali tal-Privatezza","static.gpc.description":"Il-preferenza globali tieg\u0127ek g\u0127all-kontroll tal-privatezza \u0121iet onorata. Inti awtomatikament g\u0127a\u017Cilt li ma tibqax tu\u017Ca d-dejta f'ka\u017Cijiet li jirrispettaw il-kontroll globali tal-privatezza.","static.gpc.status.applied":"Applikat","static.gpc.status.overridden":"Maqbu\u017Ca","static.gpc.title":"Kontroll Globali tal-Privatezza misjub","static.other.cookies":"Cookies","static.other.back":"Lura","static.other.vendors":"Bejjieg\u0127a","static.other.retention":"Ritenzjoni","static.other.description":"Deskrizzjoni"},Ba={"static.gpc":"Global Privacy Control","static.gpc.description":"Uw Global Privacy Control-voorkeur wordt gerespecteerd. U bent automatisch afgemeld voor gegevensgebruiksscenario's die zich houden aan Global Privacy Control.","static.gpc.status.applied":"Toegepast","static.gpc.status.overridden":"Genegeerd","static.gpc.title":"Globale privacyinstelling gedetecteerd","static.other.cookies":"Cookies","static.other.back":"Terug","static.other.vendors":"Leveranciers","static.other.retention":"Bewaartermijn","static.other.description":"Beschrijving"},Ga={"static.gpc":"Globale personverninnstillinger","static.gpc.description":"Preferansene dine vedr\xF8rende de globale personverninnstilingene dine er godtatt. Du har automatisk takket nei til databruksaker som f\xF8lger globale personverninnstillinger.","static.gpc.status.applied":"Anvendt","static.gpc.status.overridden":"Overstyrt","static.gpc.title":"Global personvernkontroll oppdaget","static.other.cookies":"Informasjonskapsler","static.other.back":"Tilbake","static.other.vendors":"Leverand\xF8rer","static.other.retention":"Oppbevaring","static.other.description":"Beskrivelse"},Va={"static.gpc":"Og\xF3lna kontrola prywatno\u015Bci","static.gpc.description":"Twoja preferencja dotycz\u0105ca og\xF3lnej kontroli prywatno\u015Bci zosta\u0142a uwzgl\u0119dniona. Automatycznie odm\xF3wiono zgody na Twoje przypadki wykorzystania danych, kt\xF3re s\u0105 zgodne z Og\xF3ln\u0105 kontrol\u0105 prywatno\u015Bci.","static.gpc.status.applied":"Zastosowano","static.gpc.status.overridden":"Nadpisano","static.gpc.title":"Wykryto globaln\u0105 kontrol\u0119 prywatno\u015Bci","static.other.cookies":"Pliki cookie","static.other.back":"Wstecz","static.other.vendors":"Dostawcy","static.other.retention":"Przechowywanie","static.other.description":"Opis"},Ha={"static.gpc":"Controle de Privacidade Global","static.gpc.description":"Sua prefer\xEAncia global de controle de privacidade foi respeitada. Voc\xEA foi automaticamente removido dos casos de uso de dados que aderem ao controle de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Controle de Privacidade Global detectado","static.other.cookies":"Cookies","static.other.back":"Voltar","static.other.vendors":"Fornecedores","static.other.retention":"Reten\xE7\xE3o","static.other.description":"Descri\xE7\xE3o"},Ka={"static.gpc":"Controlo de Privacidade Global","static.gpc.description":"A sua prefer\xEAncia de controlo de privacidade global foi honrada. Foi automaticamente exclu\xEDdo/a dos casos de utiliza\xE7\xE3o de dados que aderem ao controlo de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Controlo de Privacidade Global detetado","static.other.cookies":"Cookies","static.other.back":"Voltar","static.other.vendors":"Fornecedores","static.other.retention":"Reten\xE7\xE3o","static.other.description":"Descri\xE7\xE3o"},Ya={"static.gpc":"Control global al confiden\u021Bialit\u0103\u021Bii","static.gpc.description":"Preferin\u021Ba dvs. de control global al confiden\u021Bialit\u0103\u021Bii a fost onorat\u0103. A\u021Bi fost exclus(\u0103) automat de la cazurile de utilizare a datelor care respect\u0103 controlul global al confiden\u021Bialit\u0103\u021Bii.","static.gpc.status.applied":"Aplicat","static.gpc.status.overridden":"Suprascris","static.gpc.title":"S-a detectat controlul global al confiden\u021Bialit\u0103\u021Bii","static.other.cookies":"Cookie-uri","static.other.back":"\xCEnapoi","static.other.vendors":"Furnizori","static.other.retention":"P\u0103strare","static.other.description":"Descriere"},Wa={"static.gpc":"Global Privacy Control","static.gpc.description":"\u0412\u0430\u0448\u0430 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 Global Privacy Control \u0443\u0447\u0442\u0435\u043D\u0430. \u0412\u044B \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u0438\u0441\u043A\u043B\u044E\u0447\u0430\u0435\u0442\u0435\u0441\u044C \u0432 \u0441\u0446\u0435\u043D\u0430\u0440\u0438\u044F\u0445, \u0433\u0434\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F Global Privacy Control.","static.gpc.status.applied":"\u041F\u0440\u0438\u043C\u0435\u043D\u0435\u043D\u043E","static.gpc.status.overridden":"\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u043E","static.gpc.title":"\u041E\u0431\u043D\u0430\u0440\u0443\u0436\u0435\u043D\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0430\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044F \u043A\u043E\u043D\u0444\u0438\u0434\u0435\u043D\u0446\u0438\u0430\u043B\u044C\u043D\u043E\u0441\u0442\u0438","static.other.cookies":"\u0424\u0430\u0439\u043B\u044B cookie","static.other.back":"\u041D\u0430\u0437\u0430\u0434","static.other.vendors":"\u041F\u043E\u0441\u0442\u0430\u0432\u0449\u0438\u043A\u0438 \u0443\u0441\u043B\u0443\u0433","static.other.retention":"\u0425\u0440\u0430\u043D\u0435\u043D\u0438\u0435","static.other.description":"\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435"},qa={"static.gpc":"Glob\xE1lna kontrola s\xFAkromia","static.gpc.description":"Va\u0161a predvo\u013Eba pre glob\xE1lnu kontrolu s\xFAkromia bola dodr\u017Ean\xE1. Pre pr\xEDpady pou\u017Eitia, kde sa pou\u017E\xEDva glob\xE1lna kontrola s\xFAkromia, v\xE1m bol automaticky nastaven\xFD explicitn\xFD nes\xFAhlas.","static.gpc.status.applied":"Pou\u017Eit\xE1","static.gpc.status.overridden":"Prep\xEDsan\xE1","static.gpc.title":"Zistila sa glob\xE1lna kontrola ochrany osobn\xFDch \xFAdajov","static.other.cookies":"S\xFAbory cookie","static.other.back":"Sp\xE4\u0165","static.other.vendors":"Dod\xE1vatelia","static.other.retention":"Uchov\xE1vanie","static.other.description":"Popis"},Za={"static.gpc":"Global Privacy Control","static.gpc.description":"Va\u0161a nastavitev globalnega nadzora zasebnosti je bila upo\u0161tevana. Samodejno je bilo preklicano va\u0161e soglasje za tiste primere uporabe podatkov, ki se ravnajo po globalnem nadzoru zasebnosti.","static.gpc.status.applied":"Uporabljeno","static.gpc.status.overridden":"Pregla\u0161eno","static.gpc.title":"Zaznan je globalni nadzor nad zasebnostjo","static.other.cookies":"Pi\u0161kotki","static.other.back":"Nazaj","static.other.vendors":"Partnerji","static.other.retention":"Hramba","static.other.description":"Opis"},Ja={"static.gpc":"Global Privacy Control","static.gpc.description":"\u0412\u0430\u0448\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0435 \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438 \u0458\u0435 \u043F\u043E\u0434\u0435\u0448\u0435\u043D\u0430. \u0410\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u0441\u0442\u0435 \u0438\u0441\u043A\u0459\u0443\u0447\u0435\u043D\u0438 \u0438\u0437 \u0441\u043B\u0443\u0447\u0430\u0458\u0435\u0432\u0430 \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u0435 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430 \u043A\u043E\u0458\u0438 \u0441\u0443 \u0443 \u0441\u043A\u043B\u0430\u0434\u0443 \u0441\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E\u043C \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043E\u043C \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438.","static.gpc.status.applied":"\u041F\u0440\u0438\u043C\u0435\u045A\u0435\u043D\u0430","static.gpc.status.overridden":"\u0417\u0430\u043C\u0435\u045A\u0435\u043D\u0430","static.gpc.title":"\u041E\u0442\u043A\u0440\u0438\u0432\u0435\u043D\u0430 \u0458\u0435 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0430 \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438","static.other.cookies":"\u041A\u043E\u043B\u0430\u0447\u0438\u045B\u0438","static.other.back":"\u041D\u0430\u0437\u0430\u0434","static.other.vendors":"\u0414\u043E\u0431\u0430\u0432\u0459\u0430\u0447\u0438","static.other.retention":"\u0417\u0430\u0434\u0440\u0436\u0430\u0432\u0430\u045A\u0435","static.other.description":"\u041E\u043F\u0438\u0441"},Xa={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Va\u0161a globalna postavka kontrole privatnosti se po\u0161tuje. Automatski ste isklju\u010Deni iz slu\u010Dajeva kori\u0161c\u0301enja podataka koji podle\u017Eu globalnoj kontroli privatnosti.","static.gpc.status.applied":"Primenjeno","static.gpc.status.overridden":"Zaobi\u0111eno","static.gpc.title":"Otkrivena je globalna kontrola privatnosti","static.other.cookies":"Kola\u010Di\u0107i","static.other.back":"Nazad","static.other.vendors":"Dobavlja\u010Di","static.other.retention":"Zadr\u017Eavanje","static.other.description":"Opis"},Qa={"static.gpc":"Global integritetskontroll","static.gpc.description":"Dina preferenser f\xF6r global integritetskontroll har efterf\xF6ljts. Du har automatiskt valt bort anv\xE4ndningsfall f\xF6r uppgifter som efterf\xF6ljer global integritetskontroll.","static.gpc.status.applied":"Till\xE4mpad","static.gpc.status.overridden":"\xC5sidosatt","static.gpc.title":"Global sekretesskontroll uppt\xE4cktes","static.other.cookies":"Cookies","static.other.back":"Tillbaka","static.other.vendors":"Leverant\xF6rer","static.other.retention":"Lagring","static.other.description":"Beskrivning"},es={"static.gpc":"Global Gizlilik Kontrol\xFC","static.gpc.description":"Global gizlilik kontrol\xFC tercihiniz yerine getirildi. Global gizlilik kontrol\xFCne uygun veri kullan\u0131m durumlar\u0131ndan otomatik olarak \xE7\u0131kar\u0131ld\u0131n\u0131z.","static.gpc.status.applied":"Uyguland\u0131","static.gpc.status.overridden":"Ge\xE7ersiz k\u0131l\u0131nd\u0131","static.gpc.title":"Genel Gizlilik Kontrol\xFC alg\u0131land\u0131","static.other.cookies":"\xC7erezler","static.other.back":"Geri","static.other.vendors":"Sat\u0131c\u0131lar","static.other.retention":"Tutma","static.other.description":"A\xE7\u0131klama"},ts={"static.gpc":"\u0413\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456","static.gpc.description":"\u0412\u0430\u0448\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456 \u0432\u0440\u0430\u0445\u043E\u0432\u0430\u043D\u043E. \u0412\u0430\u0441 \u0431\u0443\u043B\u043E \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0432\u0438\u043A\u043B\u044E\u0447\u0435\u043D\u043E \u0437 \u0432\u0438\u043F\u0430\u0434\u043A\u0456\u0432 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u0445, \u044F\u043A\u0456 \u0434\u043E\u0442\u0440\u0438\u043C\u0443\u044E\u0442\u044C\u0441\u044F \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u044C \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456.","static.gpc.status.applied":"\u0417\u0430\u0441\u0442\u043E\u0441\u043E\u0432\u0430\u043D\u043E","static.gpc.status.overridden":"\u041F\u0435\u0440\u0435\u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u043E","static.gpc.title":"\u0412\u0438\u044F\u0432\u043B\u0435\u043D\u043E \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456","static.other.cookies":"\u0424\u0430\u0439\u043B\u0438 cookie","static.other.back":"\u041D\u0430\u0437\u0430\u0434","static.other.vendors":"\u041F\u043E\u0441\u0442\u0430\u0447\u0430\u043B\u044C\u043D\u0438\u043A\u0438","static.other.retention":"\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u043D\u043D\u044F","static.other.description":"\u041E\u043F\u0438\u0441"},is={"static.gpc":"\u5168\u5C40\u9690\u79C1\u63A7\u5236","static.gpc.description":"\u60A8\u7684\u5168\u5C40\u9690\u79C1\u63A7\u5236\u504F\u597D\u5DF2\u5F97\u5230\u5C0A\u91CD\u3002\u60A8\u5DF2\u81EA\u52A8\u9009\u62E9\u9000\u51FA\u7B26\u5408\u5168\u5C40\u9690\u79C1\u63A7\u5236\u7684\u6570\u636E\u4F7F\u7528\u6848\u4F8B\u3002","static.gpc.status.applied":"\u5DF2\u5E94\u7528","static.gpc.status.overridden":"\u88AB\u8986\u76D6","static.gpc.title":"\u68C0\u6D4B\u5230\u5168\u5C40\u9690\u79C1\u63A7\u5236","static.other.cookies":"Cookie","static.other.back":"\u8FD4\u56DE","static.other.vendors":"\u4F9B\u5E94\u5546","static.other.retention":"\u4FDD\u7559\u671F","static.other.description":"\u63CF\u8FF0"},os={"static.gpc":"\u5168\u57DF\u96B1\u79C1\u63A7\u5236","static.gpc.description":"\u60A8\u7684\u5168\u57DF\u96B1\u79C1\u63A7\u5236\u504F\u597D\u5DF2\u88AB\u63A5\u53D7\u3002\u6839\u64DA\u60A8\u7684\u9078\u64C7\xB7\uFF0C\u5DF2\u81EA\u52D5\u5C07\u60A8\u9000\u51FA\u7B26\u5408\u5168\u57DF\u96B1\u79C1\u63A7\u5236\u7684\u8CC7\u6599\u4F7F\u7528\u6848\u4F8B\u3002","static.gpc.status.applied":"\u5DF2\u61C9\u7528","static.gpc.status.overridden":"\u5DF2\u8986\u5BEB","static.gpc.title":"\u6AA2\u6E2C\u5230\u5168\u5C40\u96B1\u79C1\u63A7\u5236","static.other.cookies":"Cookie","static.other.back":"\u8FD4\u56DE","static.other.vendors":"\u4F9B\u61C9\u5546","static.other.retention":"\u4FDD\u7559\u671F","static.other.description":"\u63CF\u8FF0"};const Gt={ar:ha,bg:ba,bs:ya,ca:ma,cs:wa,da:ka,de:Ea,el:Oa,en:Ca,es:Pa,"es-MX":xa,et:Na,eu:Aa,fi:Ta,fr:Sa,"fr-CA":Ia,gl:La,"hi-IN":Fa,hr:$a,hu:ja,it:Da,ja:Ra,lt:za,lv:Ma,mt:Ua,nl:Ba,no:Ga,pl:Va,"pt-BR":Ha,"pt-PT":Ka,ro:Ya,ru:Wa,sk:qa,sl:Za,"sr-Cyrl":Ja,"sr-Latn":Xa,sv:Qa,tr:es,uk:ts,zh:is,"zh-Hant":os},ns=[{locale:"ar",label_en:"Arabic",label_original:"\u0627\u0644\u0639\u064E\u0631\u064E\u0628\u0650\u064A\u064E\u0651\u0629"},{locale:"bg",label_en:"Bulgarian",label_original:"\u0431\u044A\u043B\u0433\u0430\u0440\u0441\u043A\u0438 \u0435\u0437\u0438\u043A"},{locale:"bs",label_en:"Bosnian",label_original:"Bosanski Jezik"},{locale:"ca",label_en:"Catalan",label_original:"catal\xE0"},{locale:"cs",label_en:"Czech",label_original:"\u010Desk\xFD jazyk"},{locale:"da",label_en:"Danish",label_original:"Dansk"},{locale:"de",label_en:"German",label_original:"Deutsch"},{locale:"el",label_en:"Greek",label_original:"\u03B5\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC"},{locale:"en",label_en:"English",label_original:"English"},{locale:"es",label_en:"Spanish",label_original:"Espa\xF1ol"},{locale:"es-MX",label_en:"Spanish (Mexico)",label_original:"Espa\xF1ol - MX"},{locale:"et",label_en:"Estonian",label_original:"Eesti"},{locale:"eu",label_en:"Basque",label_original:"euskara"},{locale:"fi",label_en:"Finnish",label_original:"Suomi"},{locale:"fr",label_en:"French",label_original:"Fran\xE7ais"},{locale:"fr-CA",label_en:"French (Canada)",label_original:"Fran\xE7ais - CA"},{locale:"gl",label_en:"Galician",label_original:"Galego"},{locale:"hi-IN",label_en:"Hindi (India)",label_original:"\u0939\u093F\u0928\u094D\u0926\u0940"},{locale:"hr",label_en:"Croatian",label_original:"Hrvatski Jezik"},{locale:"hu",label_en:"Hungarian",label_original:"magyar"},{locale:"it",label_en:"Italian",label_original:"Italiano"},{locale:"ja",label_en:"Japanese",label_original:"\u65E5\u672C\u8A9E"},{locale:"lt",label_en:"Lithuanian",label_original:"lietuvi\u0173 kalba"},{locale:"lv",label_en:"Latvian",label_original:"latvie\u0161u valoda"},{locale:"mt",label_en:"Maltese",label_original:"Malti"},{locale:"nl",label_en:"Dutch",label_original:"Nederlands"},{locale:"no",label_en:"Norwegian",label_original:"Norsk"},{locale:"pl",label_en:"Polish",label_original:"Polski"},{locale:"pt-BR",label_en:"Portuguese (Brazil)",label_original:"Portugu\xEAs - BR"},{locale:"pt-PT",label_en:"Portuguese (Portugal)",label_original:"Portugu\xEAs - PT"},{locale:"ro",label_en:"Romanian",label_original:"limba rom\xE2n\u0103"},{locale:"ru",label_en:"Russian",label_original:"\u0440\u0443\u0441\u0441\u043A\u0438\u0439 \u044F\u0437\u044B\u043A"},{locale:"sk",label_en:"Slovak",label_original:"sloven\u010Dina"},{locale:"sl",label_en:"Slovenian",label_original:"Slovenski Jezik"},{locale:"sr-Cyrl",label_en:"Serbian (Cyrillic)",label_original:"\u0441\u0440\u043F\u0441\u043A\u0438"},{locale:"sr-Latn",label_en:"Serbian (Latin)",label_original:"Srpski"},{locale:"sv",label_en:"Swedish",label_original:"Sverige"},{locale:"tr",label_en:"Turkish",label_original:"T\xFCrk\xE7e"},{locale:"uk",label_en:"Ukrainian",label_original:"\u0443\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 \u043C\u043E\u0432\u0430"},{locale:"zh",label_en:"Chinese (Simplified)",label_original:"\u7B80\u4F53\u4E2D\u6587"},{locale:"zh-Hant",label_en:"Chinese (Traditional)",label_original:"\u7E41\u9AD4\u4E2D\u6587"}];var rs=Object.defineProperty,ao=Object.getOwnPropertySymbols,as=Object.prototype.hasOwnProperty,ss=Object.prototype.propertyIsEnumerable,so=(e,t,i)=>t in e?rs(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,oe=(e,t)=>{for(var i in t||(t={}))as.call(t,i)&&so(e,i,t[i]);if(ao)for(var i of ao(t))ss.call(t,i)&&so(e,i,t[i]);return e};function ne(e,t){return e.toLowerCase().replaceAll("_","-")===t.toLowerCase().replaceAll("_","-")}function ls(e,t){const i={},o=["accept_button_label","acknowledge_button_label","banner_description","banner_title","description","purpose_header","privacy_policy_link_label","privacy_policy_url","privacy_preferences_link_label","reject_button_label","save_button_label","title","modal_link_label"];if(e.translations)e.translations.forEach(n=>{const r=n.language;let s=!1;t?.override_language&&(s=ne(t.override_language,r));const l={};o.forEach(a=>{let c=null;t&&(s||a==="privacy_policy_url")&&(c=a in t?t[a]:null);const _=n[a];typeof _=="string"&&(l[`exp.${a}`]=c||_)}),i[r]=oe(oe({},l),i[r])});else{const n=Z,r={};o.forEach(s=>{const l=e[s];typeof l=="string"&&(r[`exp.${s}`]=l)}),i[n]=oe(oe({},r),i[n])}return i}function Vt(e){var t;if((t=e?.experience_config)!=null&&t.translations){const{translations:i}=e.experience_config,o=i.find(n=>n.is_default);return o?.language}}function lo(e,t){const i={};return t.forEach(o=>{const n=Object.keys(e).find(r=>ne(r,o));if(n){const r=e[n],s={};["purposes","specialPurposes","features","specialFeatures","stacks","dataCategories"].forEach(a=>{const c=r[a]||{};Object.keys(c).forEach(u=>{const d=c[u],_=`exp.tcf.${a}.${u}`;s[`${_}.name`]=d.name,s[`${_}.description`]=d.description,d.illustrations&&d.illustrations.length>0&&d.illustrations.forEach((v,g)=>{s[`${_}.illustrations.${g}`]=v})})}),i[o]=oe(oe({},s),i[o])}}),i}function co(e){return Object.keys(Gt).forEach(t=>{e.load(t,Gt[t])}),Object.keys(Gt)}function uo(e,t,i){var o;const n={},r=(o=t.available_locales)!=null&&o.length?t.available_locales:[Z];if(t?.experience_config){const s=t.experience_config,l=ls(s,i);Object.keys(l).forEach(a=>{n[a]=oe(oe({},l[a]),n[a])})}r.forEach(s=>{e.load(s,n[s])})}function fo(e,t){if(!t.gvl)return;const{locale:i}=e,o={};o[i]=t.gvl;const n=lo(o,[i]);e.load(i,n[i])}function po(e,t,i){const o=lo(t,i);i.forEach(n=>{e.load(n,o[n])})}function vo(e){return e.locale}function _o(e,t,i=Z){const o=e?.language;return t||o||i}function go(e,t,i=Z){const o=e.match(it);if(o){const[n,r]=o,s=t.find(a=>ne(a,n));if(s)return s;const l=t.find(a=>ne(a,r));if(l)return l}return i}function we(e,t){return e.t(t)!==""&&e.t(t)!==t}function Ht(e,t,i){if(!i||!i.translations)return null;if(e){const n=i.translations.find(r=>ne(r.language,e));if(n)return n}const o=i.translations.find(n=>ne(n.language,t));return o||i.translations[0]||null}function dt(e,t,i){if(!i||!i.translations)return null;if(e){const n=i.translations.find(r=>ne(r.language,e));if(n)return n}const o=i.translations.find(n=>ne(n.language,t));return o||i.translations[0]||null}function ho(e,t,i,o,n){var r,s,l,a,c;co(e);const u=(r=i.available_locales)!=null&&r.length?i.available_locales:[Z];uo(e,i,n);const d=ns.filter(b=>u.includes(b.locale)),_=d.findIndex(b=>ne(b.locale,e.getDefaultLocale()));_>0&&d.unshift(d.splice(_,1)[0]),e.setAvailableLanguages(d);const v=Vt(i)||Z;e.setDefaultLocale(v);let g=v;((s=i.experience_config)==null?void 0:s.auto_detect_language)===!1||(g=_o(t,o?.fidesLocale,v));const p=go(g,u||[],e.getDefaultLocale());if(!!((a=(l=i.experience_config)==null?void 0:l.translations)!=null&&a.find(b=>b.language===p)))e.activate(p);else{const b=dt(p,v,i.experience_config);b?.language,e.activate(b?.language||p)}((c=i.experience_config)==null?void 0:c.component)===V.TCF_OVERLAY&&i.gvl&&fo(e,i)}function Kt(){let e=[],t=Z,i=Z;const o={};return{setAvailableLanguages(n){e=n},get availableLanguages(){return e},activate:n=>{i=n},getDefaultLocale:()=>t,setDefaultLocale:n=>{t=n},get locale(){return i},load:(n,r)=>{o[n]=oe(oe({},o[n]),r)},t:n=>{if(typeof n>"u")throw new TypeError("Unexpected type for descriptor or id!");let r;if(typeof n=="string")r=n;else if(typeof n=="object"&&n.id)r=n.id;else return"";return i&&i in o&&r&&r in o[i]&&o[i][r]?o[i][r]:r}}}const bo=(e,t,i)=>{var o;let n=tt;if(!e)t.t("exp.modal_link_label")!=="exp.modal_link_label"&&(n=t.t("exp.modal_link_label"));else{const r=t.getDefaultLocale(),s=(o=i?.experience_config)==null?void 0:o.translations.find(l=>l.language===r);s?.modal_link_label&&(n=s.modal_link_label)}return n},cs=Kt();function ds(e){return Array.from(e).length}var us=Object.defineProperty,fs=Object.defineProperties,ps=Object.getOwnPropertyDescriptors,yo=Object.getOwnPropertySymbols,vs=Object.prototype.hasOwnProperty,_s=Object.prototype.propertyIsEnumerable,mo=(e,t,i)=>t in e?us(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Te=(e,t)=>{for(var i in t||(t={}))vs.call(t,i)&&mo(e,i,t[i]);if(yo)for(var i of yo(t))_s.call(t,i)&&mo(e,i,t[i]);return e},Yt=(e,t)=>fs(e,ps(t)),ut=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())}),wo=(e=>(e.PRIVACY_EXPERIENCE="/privacy-experience",e.PRIVACY_PREFERENCES="/privacy-preferences",e.GVL_TRANSLATIONS="/privacy-experience/gvl/translations",e.NOTICES_SERVED="/notices-served",e))(wo||{});function ko(){return{}}const Eo=e=>ut(void 0,[e],function*({userLocationString:t,userLanguageString:i,fidesApiUrl:o,apiOptions:n,propertyId:r,requestMinimalTCF:s,missingExperienceHandler:l=ko,excludeNoticeAssetsBySystems:a}){var c,u,d;if(n?.getPrivacyExperienceFn)try{return yield n.getPrivacyExperienceFn(t,null)}catch(b){return l(b)}const _=[["Unescape-Safestr","true"],["Accept-Encoding","gzip, deflate"]];i&&_.push(["Accept-Language",i]);const v={method:"GET",mode:"cors",headers:_};let g;a&&(g=(Array.isArray(a)?[...a]:a.split(",").map(m=>m.trim()).filter(Boolean)).sort((m,k)=>m.localeCompare(k)).join(","));let p=Te(Te(Te({show_disabled:"false",region:t,component:V.OVERLAY,has_config:"true",systems_applicable:"true",exclude_gvl_languages:"true",include_meta:"true",include_gvl:"true",include_non_applicable_notices:"true"},s&&{minimal_tcf:"true"}),r&&{property_id:r}),g&&{exclude_notice_assets_by_systems:g});p=new URLSearchParams(p);let h;try{if(h=yield fetch(`${o}/privacy-experience?${p}`,v),!h.ok)throw new Error("Error fetching experience from Fides API")}catch(b){return l(b)}try{const b=yield h.json();if(((c=b.items)==null?void 0:c.length)<1)return{};const m=b.items&&b.items[0],k=(d=(u=m.experience_config)==null?void 0:u.translations)==null?void 0:d[0].language;return m}catch(b){return l(b)}}),Oo=(e,t)=>ut(void 0,null,function*(){const i=new URLSearchParams;t?.forEach(s=>{i.append("language",s)});const o={method:"GET",mode:"cors"};let n;try{n=yield fetch(`${e}/privacy-experience/gvl/translations${ds(i)>0?"?":""}${i.toString()}`,o)}catch{return{}}return n.ok?yield n.json():{}}),Co={method:"PATCH",mode:"cors",headers:{"Content-Type":"application/json"}},Po="Fides.js",xo=(e,t,i,o,n)=>ut(void 0,null,function*(){var r;if((r=i.apiOptions)!=null&&r.savePreferencesFn){try{yield i.apiOptions.savePreferencesFn(e,o.consent,o.fides_string,n)}catch(a){return Promise.reject(a)}return Promise.resolve()}const s=Yt(Te({},Co),{body:JSON.stringify(Yt(Te({},t),{source:Po}))});return(yield fetch(`${i.fidesApiUrl}/privacy-preferences`,s)).ok,Promise.resolve()}),No=e=>ut(void 0,[e],function*({request:t,options:i}){var o;if((o=i.apiOptions)!=null&&o.patchNoticesServedFn)try{return yield i.apiOptions.patchNoticesServedFn(t)}catch{return null}const n=Yt(Te({},Co),{body:JSON.stringify(t)});try{const r=yield fetch(`${i.fidesApiUrl}/notices-served`,n);return r.ok?yield r.json():null}catch{return null}});var gs=Object.defineProperty,hs=(e,t,i)=>t in e?gs(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,bs=(e,t,i)=>hs(e,t+"",i);class ys{constructor(){bs(this,"servedNoticeHistoryId",null)}getServedNoticeHistoryId(){return this.servedNoticeHistoryId||(this.servedNoticeHistoryId=Pi()),this.servedNoticeHistoryId}reset(){this.servedNoticeHistoryId=null}hasLifecycleId(){return this.servedNoticeHistoryId!==null}}const Ao=new ys;var ms=Object.defineProperty,ws=Object.defineProperties,ks=Object.getOwnPropertyDescriptors,To=Object.getOwnPropertySymbols,Es=Object.prototype.hasOwnProperty,Os=Object.prototype.propertyIsEnumerable,So=(e,t,i)=>t in e?ms(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,le=(e,t)=>{for(var i in t||(t={}))Es.call(t,i)&&So(e,i,t[i]);if(To)for(var i of To(t))Os.call(t,i)&&So(e,i,t[i]);return e},ft=(e,t)=>ws(e,ks(t)),Wt=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const Cs=[L.SCRIPT,L.GPC,L.OT_MIGRATION];function Ps(e,t,i,o,n,r,s,l,a){return Wt(this,null,function*(){const c=(r||[]).map(d=>({preference:d.consentPreference,privacy_notice_history_id:d.noticeHistoryId||""})),u=le({browser_identity:t.identity,preferences:c,privacy_experience_config_history_id:n,user_geography:l,method:o,served_notice_history_id:a,property_id:i.property_id},s??[]);yield xo(o,u,e,t,i)})}const xs=e=>Wt(void 0,[e],function*({consentPreferencesToSave:t,privacyExperienceConfigHistoryId:i,experience:o,consentMethod:n,options:r,userLocationString:s,cookie:l,eventExtraDetails:a,servedNoticeHistoryId:c,tcf:u,updateCookie:d}){var _,v,g,p,h,b,m,k,O;if(!d&&t&&(d=A=>Mi(A,t)),!d&&!t)throw new Error("updateCookie is required");const w=ft(le({},a?.trigger),{origin:((_=a?.trigger)==null?void 0:_.origin)||(Cs.includes(n)?me.EXTERNAL:me.FIDES)}),N=yield d(l);Object.assign(l,N),Object.assign(l.fides_meta,{consentMethod:n}),se("FidesUpdating",l,ft(le({},a),{trigger:w}));const M=Ue(l.consent,(g=(v=window.Fides)==null?void 0:v.experience)==null?void 0:g.non_applicable_privacy_notices,(h=(p=window.Fides)==null?void 0:p.experience)==null?void 0:h.privacy_notices,void 0,void 0,l.non_applicable_notice_keys),P=!!((m=(b=window.Fides)==null?void 0:b.experience)!=null&&m.non_applicable_privacy_notices)||!!((O=(k=window.Fides)==null?void 0:k.experience)!=null&&O.privacy_notices);if(window.Fides.consent=Ut(M,r,P),window.Fides.fides_string=l.fides_string,window.Fides.tcf_consent=l.tcf_consent,ji(ft(le({},l),{consent:M}),r.base64Cookie),window.Fides.saved_consent=l.consent,!r.fidesDisableSaveApi)try{yield Ps(r,l,o,n,i,t,u,s,c)}catch{}t&&t.filter(A=>A.consentPreference===q.OPT_OUT).forEach(A=>{var T,I;(T=A.notice)!=null&&T.cookies&&Ri(A.notice.cookies,(I=o.experience_config)==null?void 0:I.auto_subdomain_cookie_deletion)}),se("FidesUpdated",l,ft(le({},a),{trigger:w}))}),Io=(e,t,i,o)=>Object.entries(i).reduce((n,[r,s])=>{if(n)return n;const l=t.find(d=>d===r);if(l&&!s&&o!==L.OT_MIGRATION)return new Error(`Provided notice key '${r}' is not applicable to the current experience.`);const a=e.find(d=>d.notice_key===r);if(!l&&!a)return new Error(`'${r}' is not a valid notice key`);const u=a?.consent_mechanism===W.NOTICE_ONLY;return u&&s!==!0&&s!==q.ACKNOWLEDGE&&o!==L.OT_MIGRATION?new Error(`Invalid consent value for notice-only notice key: '${r}'. Must be \`true\` or "acknowledge"`):!u&&typeof s!="boolean"&&s!==q.OPT_IN&&s!==q.OPT_OUT?new Error(`Invalid consent value for notice key: '${r}'. Must be a boolean or "opt_in" or "opt_out"`):null},null),qt=(e,t)=>Wt(void 0,null,function*(){var i;const{experience:o,cookie:n,config:r,locale:s}=e;if(!o)throw new Error("Experience must be initialized before updating consent");if(!r)throw new Error("Config is not initialized");if(!n)throw new Error("Cookie is not initialized");if(!t?.noticeConsent&&!t?.fidesString&&!t?.tcf)throw new Error("Either consent object or fidesString must be provided");if(t?.validation&&!Object.values(ve).includes(t.validation))throw new Error(`Validation must be one of: ${Object.values(ve).join(", ")} (default is ${ve.THROW})`);const{noticeConsent:l,fidesString:a,validation:c=ve.THROW,consentMethod:u=L.SCRIPT,eventExtraDetails:d={trigger:{origin:me.EXTERNAL}},tcf:_,updateCookie:v}=t,{experience_config:g,privacy_notices:p,non_applicable_privacy_notices:h}=o,b=Vt(o)||Z,m=P=>{if(c===ve.THROW)throw new Error(P);c===ve.WARN&&console.warn(P)};let k=n.consent||{};if(a)try{const P=Bt(a);if(P.nc){const A=st(P.nc);k=le(le({},n.consent),A);const T=Io(p||[],h||[],k,u);T&&m(T.message)}}catch(P){const A=P instanceof Error?P.message:String(P);m(`Invalid fidesString provided: ${A}`)}else if(l){const P=Io(p||[],h||[],l,u);P&&m(P.message),k=le(le({},n.consent),l)}const O=[];Object.entries(k).forEach(([P,A])=>{const T=p?.find(I=>I.notice_key===P);if(T){const I=Ht(s,b,T),R=I?.privacy_notice_history_id;let U;if(typeof A=="boolean"?U=ze(A,T.consent_mechanism):U=A,R){const Y=new Nt(T,U,R);O.push(Y)}}});let w;if((i=g?.translations)!=null&&i.length){const P=dt(s,b,g);w=P?.privacy_experience_config_history_id}const N=nt(r.geolocation),M=Ao.getServedNoticeHistoryId();return xs({consentPreferencesToSave:O,privacyExperienceConfigHistoryId:w,experience:o,consentMethod:u,options:r.options,userLocationString:N,cookie:n,eventExtraDetails:d,servedNoticeHistoryId:M,tcf:_,updateCookie:v})}),Zt=e=>{throw new Error(e)},pt=e=>{typeof window<"u"&&(window.Fides=e)},Lo=({cookie:e,experience:t})=>{let i=t;return jt(e.consent)&&(i=Dt({experience:t,cookie:e})),i},Fo=({tcfEnabled:e=!1})=>({consent:{},experience:void 0,geolocation:{},locale:Z,options:{debug:!0,isOverlayEnabled:!1,isPrefetchEnabled:!1,isGeolocationEnabled:!1,geolocationApiUrl:"",overlayParentId:null,modalLinkId:null,privacyCenterUrl:"",fidesApiUrl:"",tcfEnabled:e,gppEnabled:!1,fidesEmbed:!1,fidesDisableSaveApi:!1,fidesDisableNoticesServedApi:!1,fidesDisableBanner:!1,fidesString:null,apiOptions:null,fidesTcfGdprApplies:e,fidesJsBaseUrl:"",customOptionsPath:null,preventDismissal:!1,allowHTMLDescription:null,base64Cookie:!1,fidesPrimaryColor:null,fidesClearCookie:!1,showFidesBrandLink:!e,fidesConsentOverride:null,otFidesMapping:null,fidesDisabledNotices:null,fidesDisabledSystems:null,fidesConsentNonApplicableFlagMode:null,fidesConsentFlagType:null,fidesInitializedEventMode:"once"},fides_meta:{},identity:{},tcf_consent:{},saved_consent:{},version:"DEV",config:void 0,initialized:!1,onFidesEvent:to,blueconic:da,gtm:ua,meta:pa,shopify:ga,showModal:Mt,getModalLinkLabel:()=>tt,encodeNoticeConsentString:Xi,decodeNoticeConsentString:st,reinitialize(){return typeof this.init!="function"?Promise.reject(new Error("Fides.init method is not available")):((!this.config||!this.initialized)&&Zt("Fides must be initialized before reinitializing"),this.init())},shouldShowExperience(){return!(this!=null&&this.experience)||!(this!=null&&this.cookie)||!(this!=null&&this.saved_consent)||!(this!=null&&this.options)?!1:at(this.experience,this.cookie,this.saved_consent,this.options)},updateConsent(t){const{consent:i,fidesString:o,validation:n}=t;return qt(this,{noticeConsent:i,fidesString:o,validation:n})}});var Ns=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const $o=(e,t)=>Ns(void 0,null,function*(){if(!e||!t)return null;const o=yield fetch(t,{mode:"cors"});if(!o.ok)return null;try{return yield o.json()}catch{return null}}),As=()=>{var e,t,i,o,n,r;if((e=window.Fides)!=null&&e.options.tcfEnabled&&!((t=window.Fides)!=null&&t.options.gppEnabled)&&!((n=(o=(i=window.Fides)==null?void 0:i.experience)==null?void 0:o.privacy_notices)!=null&&n.length))return!1;if(typeof((r=window.navigator)==null?void 0:r.globalPrivacyControl)=="boolean")return window.navigator.globalPrivacyControl;const l=new URL(window.location.href).searchParams.get("globalPrivacyControl");if(l==="true")return!0;if(l==="false")return!1},Se=()=>typeof window>"u"?{}:{globalPrivacyControl:As()};var Ts=Object.defineProperty,jo=Object.getOwnPropertySymbols,Ss=Object.prototype.hasOwnProperty,Is=Object.prototype.propertyIsEnumerable,Do=(e,t,i)=>t in e?Ts(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Ls=(e,t)=>{for(var i in t||(t={}))Ss.call(t,i)&&Do(e,i,t[i]);if(jo)for(var i of jo(t))Is.call(t,i)&&Do(e,i,t[i]);return e},Fs=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const $s=e=>Fs(void 0,null,function*(){var t;const{experience:i,saved_consent:o,options:n}=e;if(!i||!i.experience_config||!((t=i.privacy_notices)!=null&&t.length))return!1;const r=Se(),{nc:s}=Bt(n.fidesString||"");r.globalPrivacyControl;const{consent:l,method:a}=Vi(n),c=!!l&&!!a&&!Ne();if(!r.globalPrivacyControl&&!s&&!c)return!1;let u=!1,d=!1,_=!1;const v=i.privacy_notices.reduce((g,p)=>{const h=Ls({},g),b=_e(p.default_preference);h[p.notice_key]=b,o[p.notice_key]&&(h[p.notice_key]=o[p.notice_key]);const m=Xe(p,o),k=p.consent_mechanism===W.NOTICE_ONLY;if(c&&l){const O=l[p.notice_key];if(O!==void 0)return _=!0,h[p.notice_key]=O,h}if(k)return h;if(s){const w=st(s)[p.notice_key];if(w!==void 0)return d=!0,h[p.notice_key]=w,h}return r.globalPrivacyControl&&!m&&p.has_gpc_flag&&(u=!0,h[p.notice_key]=!1),h},{});if(u||d||_){let g=L.SCRIPT;return _&&a?g=a:d?g=L.SCRIPT:u&&(g=L.GPC),yield qt(e,{noticeConsent:v,consentMethod:g}),!0}return!1}),js=()=>{document.body.classList.add("fides-no-scroll")},Ro=()=>{document.body.classList.remove("fides-no-scroll")},Ds=e=>new DOMParser().parseFromString(e,"text/html").body.textContent||"",zo=e=>{let t=0,i=200;return new Promise(o=>{const n=r=>{const s=setTimeout(()=>{const l=document.getElementById(e);l?(clearInterval(s),o(l)):(t+=1,t>=5&&i<1e3&&(i+=200),n(i))},r)};n(i)})};var Rs=Object.defineProperty,zs=Object.defineProperties,Ms=Object.getOwnPropertyDescriptors,Mo=Object.getOwnPropertySymbols,Us=Object.prototype.hasOwnProperty,Bs=Object.prototype.propertyIsEnumerable,Uo=(e,t,i)=>t in e?Rs(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Jt=(e,t)=>{for(var i in t||(t={}))Us.call(t,i)&&Uo(e,i,t[i]);if(Mo)for(var i of Mo(t))Bs.call(t,i)&&Uo(e,i,t[i]);return e},Gs=(e,t)=>zs(e,Ms(t)),Bo=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const Vs=(e,t)=>Bo(void 0,null,function*(){const i=nt(e);return i||nt(yield $o(t.isGeolocationEnabled,t.geolocationApiUrl))}),Go=(e,t)=>{const i={};if(typeof window<"u"){const o=new URLSearchParams(window.location.search),n=t.options.customOptionsPath&&t.options.customOptionsPath.split("."),r=n&&n.length>=0?Zi(n):window.fides_overrides,s=Wi(e);s?.forEach(({overrideName:l,overrideType:a,overrideKey:c,validationRegex:u,transform:d})=>{const _=o.get(c),v=r?r[c]:void 0,g=et(c),p=_||v||g;p&&u.test(p.toString())&&(d?i[l]=d(p.toString()):i[l]=a==="string"?p:JSON.parse(p.toString()))})}return i},Hs=({consent:e,options:t})=>{const i=Se(),o=Di(e,i);return $i(o,t.fidesClearCookie)},Ks=({cookie:e,savedConsent:t,experience:i,geolocation:o,options:n,updateExperienceFromCookieConsent:r})=>{let s=i;return Ae(i)&&(s=r({experience:i,cookie:e,debug:n.debug})),{consent:e.consent,fides_meta:e.fides_meta,identity:e.identity,experience:s,tcf_consent:e.tcf_consent,fides_string:e.fides_string,saved_consent:t,geolocation:o,options:n,initialized:!0}},Ys=e=>Bo(void 0,[e],function*({fides:t,initOverlay:i,renderOverlay:o,updateExperience:n,overrides:r}){var s,l,a,c,u,d,_,v,g;const{config:p}=t;if(!p)throw new Error("Fides config should be initialized");const{options:h,geolocation:b}=p;let m=!0,k,O=()=>tt;if(!t.cookie)throw new Error("Fides cookie should be initialized");if(m=h.isOverlayEnabled,m){Yi(h)||(m=!1),k=yield Vs(b,h);let U=!1;if(k?Ae(t.experience)||(U=!0,t.experience=yield Eo({userLocationString:k,fidesApiUrl:h.fidesApiUrl,apiOptions:h.apiOptions,requestMinimalTCF:!1,propertyId:(s=t.config)==null?void 0:s.propertyId,excludeNoticeAssetsBySystems:h.fidesDisabledSystems||void 0})):m=!1,m&&Ae(t.experience)&&qi(t.experience)){if(U){const G=n({cookie:t.cookie,experience:t.experience});t.experience=Jt(Jt({},t.experience),G)}(l=t.config)!=null&&l.propertyId&&(t.experience.property_id=t.config.propertyId);const Y=Ui({cookie:t.cookie,experience:t.experience});t.cookie=Y;const D=Kt();if(ho(D,window?.navigator,t.experience,h,r?.experienceTranslationOverrides),t.locale=D.locale||Z,O=G=>bo(!!G?.disableLocalization,D,t.experience),((a=t.experience.experience_config)==null?void 0:a.component)===V.HEADLESS){const G=h.modalLinkId||"fides-modal-link";!t.experience||h.fidesEmbed||h.modalLinkId,zo(G).then(J=>{document.body.classList.add("fides-overlay-modal-link-shown"),J.classList.add("fides-modal-link-shown")}),m=!1}if(i&&m){const G=Gs(Jt({},t),{cookie:t.cookie,config:p,options:h,experience:t.experience,fidesRegionString:k});i({initializedFides:G,i18n:D,renderOverlay:o}).catch(J=>{})}setTimeout($s.bind(null,t))}}const{fides_meta:N,identity:M,fides_string:P,tcf_consent:A}=t.cookie,T=Ue(t.cookie.consent,(c=t.experience)==null?void 0:c.non_applicable_privacy_notices,(u=t.experience)==null?void 0:u.privacy_notices,(d=h.fidesConsentFlagType)!=null?d:void 0,(_=h.fidesConsentNonApplicableFlagMode)!=null?_:void 0,t.cookie.non_applicable_notice_keys),I=!!((v=t.experience)!=null&&v.non_applicable_privacy_notices)||!!((g=t.experience)!=null&&g.privacy_notices);return{consent:Ut(T,h,I),fides_meta:N,identity:M,fides_string:P,tcf_consent:A,experience:t.experience,geolocation:b,options:h,initialized:!0,getModalLinkLabel:O}});var vt,C,Vo,ke,Ho,Ko,Xt,Qt,ei,ti,Yo,Ge={},Wo=[],Ws=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,_t=Array.isArray;function he(e,t){for(var i in t)e[i]=t[i];return e}function qo(e){var t=e.parentNode;t&&t.removeChild(e)}function ii(e,t,i){var o,n,r,s={};for(r in t)r=="key"?o=t[r]:r=="ref"?n=t[r]:s[r]=t[r];if(arguments.length>2&&(s.children=arguments.length>3?vt.call(arguments,2):i),typeof e=="function"&&e.defaultProps!=null)for(r in e.defaultProps)s[r]===void 0&&(s[r]=e.defaultProps[r]);return gt(e,s,o,n,null)}function gt(e,t,i,o,n){var r={type:e,props:t,key:i,ref:o,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:n??++Vo,__i:-1,__u:0};return n==null&&C.vnode!=null&&C.vnode(r),r}function ce(e){return e.children}function de(e,t){this.props=e,this.context=t}function Ee(e,t){if(t==null)return e.__?Ee(e.__,e.__i+1):null;for(var i;t<e.__k.length;t++)if((i=e.__k[t])!=null&&i.__e!=null)return i.__e;return typeof e.type=="function"?Ee(e):null}function Zo(e){var t,i;if((e=e.__)!=null&&e.__c!=null){for(e.__e=e.__c.base=null,t=0;t<e.__k.length;t++)if((i=e.__k[t])!=null&&i.__e!=null){e.__e=e.__c.base=i.__e;break}return Zo(e)}}function oi(e){(!e.__d&&(e.__d=!0)&&ke.push(e)&&!ht.__r++||Ho!==C.debounceRendering)&&((Ho=C.debounceRendering)||Ko)(ht)}function ht(){var e,t,i,o,n,r,s,l;for(ke.sort(Xt);e=ke.shift();)e.__d&&(t=ke.length,o=void 0,r=(n=(i=e).__v).__e,s=[],l=[],i.__P&&((o=he({},n)).__v=n.__v+1,C.vnode&&C.vnode(o),ni(i.__P,o,n,i.__n,i.__P.namespaceURI,32&n.__u?[r]:null,s,r??Ee(n),!!(32&n.__u),l),o.__v=n.__v,o.__.__k[o.__i]=o,tn(s,o,l),o.__e!=r&&Zo(o)),ke.length>t&&ke.sort(Xt));ht.__r=0}function Jo(e,t,i,o,n,r,s,l,a,c,u){var d,_,v,g,p,h=o&&o.__k||Wo,b=t.length;for(i.__d=a,qs(i,t,h),a=i.__d,d=0;d<b;d++)(v=i.__k[d])!=null&&typeof v!="boolean"&&typeof v!="function"&&(_=v.__i===-1?Ge:h[v.__i]||Ge,v.__i=d,ni(e,v,_,n,r,s,l,a,c,u),g=v.__e,v.ref&&_.ref!=v.ref&&(_.ref&&ri(_.ref,null,v),u.push(v.ref,v.__c||g,v)),p==null&&g!=null&&(p=g),65536&v.__u||_.__k===v.__k?(a&&typeof v.type=="string"&&!e.contains(a)&&(a=Ee(_)),a=Xo(v,a,e)):typeof v.type=="function"&&v.__d!==void 0?a=v.__d:g&&(a=g.nextSibling),v.__d=void 0,v.__u&=-196609);i.__d=a,i.__e=p}function qs(e,t,i){var o,n,r,s,l,a=t.length,c=i.length,u=c,d=0;for(e.__k=[],o=0;o<a;o++)s=o+d,(n=e.__k[o]=(n=t[o])==null||typeof n=="boolean"||typeof n=="function"?null:typeof n=="string"||typeof n=="number"||typeof n=="bigint"||n.constructor==String?gt(null,n,null,null,null):_t(n)?gt(ce,{children:n},null,null,null):n.constructor===void 0&&n.__b>0?gt(n.type,n.props,n.key,n.ref?n.ref:null,n.__v):n)!=null?(n.__=e,n.__b=e.__b+1,l=Zs(n,i,s,u),n.__i=l,r=null,l!==-1&&(u--,(r=i[l])&&(r.__u|=131072)),r==null||r.__v===null?(l==-1&&d--,typeof n.type!="function"&&(n.__u|=65536)):l!==s&&(l==s-1?d=l-s:l==s+1?d++:l>s?u>a-s?d+=l-s:d--:l<s&&d++,l!==o+d&&(n.__u|=65536))):(r=i[s])&&r.key==null&&r.__e&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=Ee(r)),ai(r,r,!1),i[s]=null,u--);if(u)for(o=0;o<c;o++)(r=i[o])!=null&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=Ee(r)),ai(r,r))}function Xo(e,t,i){var o,n;if(typeof e.type=="function"){for(o=e.__k,n=0;o&&n<o.length;n++)o[n]&&(o[n].__=e,t=Xo(o[n],t,i));return t}e.__e!=t&&(i.insertBefore(e.__e,t||null),t=e.__e);do t=t&&t.nextSibling;while(t!=null&&t.nodeType===8);return t}function bt(e,t){return t=t||[],e==null||typeof e=="boolean"||(_t(e)?e.some(function(i){bt(i,t)}):t.push(e)),t}function Zs(e,t,i,o){var n=e.key,r=e.type,s=i-1,l=i+1,a=t[i];if(a===null||a&&n==a.key&&r===a.type&&(131072&a.__u)==0)return i;if(o>(a!=null&&(131072&a.__u)==0?1:0))for(;s>=0||l<t.length;){if(s>=0){if((a=t[s])&&(131072&a.__u)==0&&n==a.key&&r===a.type)return s;s--}if(l<t.length){if((a=t[l])&&(131072&a.__u)==0&&n==a.key&&r===a.type)return l;l++}}return-1}function Qo(e,t,i){t[0]==="-"?e.setProperty(t,i??""):e[t]=i==null?"":typeof i!="number"||Ws.test(t)?i:i+"px"}function yt(e,t,i,o,n){var r;e:if(t==="style")if(typeof i=="string")e.style.cssText=i;else{if(typeof o=="string"&&(e.style.cssText=o=""),o)for(t in o)i&&t in i||Qo(e.style,t,"");if(i)for(t in i)o&&i[t]===o[t]||Qo(e.style,t,i[t])}else if(t[0]==="o"&&t[1]==="n")r=t!==(t=t.replace(/(PointerCapture)$|Capture$/i,"$1")),t=t.toLowerCase()in e||t==="onFocusOut"||t==="onFocusIn"?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+r]=i,i?o?i.u=o.u:(i.u=Qt,e.addEventListener(t,r?ti:ei,r)):e.removeEventListener(t,r?ti:ei,r);else{if(n=="http://www.w3.org/2000/svg")t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(t!="width"&&t!="height"&&t!="href"&&t!="list"&&t!="form"&&t!="tabIndex"&&t!="download"&&t!="rowSpan"&&t!="colSpan"&&t!="role"&&t!="popover"&&t in e)try{e[t]=i??"";break e}catch{}typeof i=="function"||(i==null||i===!1&&t[4]!=="-"?e.removeAttribute(t):e.setAttribute(t,t=="popover"&&i==1?"":i))}}function en(e){return function(t){if(this.l){var i=this.l[t.type+e];if(t.t==null)t.t=Qt++;else if(t.t<i.u)return;return i(C.event?C.event(t):t)}}}function ni(e,t,i,o,n,r,s,l,a,c){var u,d,_,v,g,p,h,b,m,k,O,w,N,M,P,A,T=t.type;if(t.constructor!==void 0)return null;128&i.__u&&(a=!!(32&i.__u),r=[l=t.__e=i.__e]),(u=C.__b)&&u(t);e:if(typeof T=="function")try{if(b=t.props,m="prototype"in T&&T.prototype.render,k=(u=T.contextType)&&o[u.__c],O=u?k?k.props.value:u.__:o,i.__c?h=(d=t.__c=i.__c).__=d.__E:(m?t.__c=d=new T(b,O):(t.__c=d=new de(b,O),d.constructor=T,d.render=Xs),k&&k.sub(d),d.props=b,d.state||(d.state={}),d.context=O,d.__n=o,_=d.__d=!0,d.__h=[],d._sb=[]),m&&d.__s==null&&(d.__s=d.state),m&&T.getDerivedStateFromProps!=null&&(d.__s==d.state&&(d.__s=he({},d.__s)),he(d.__s,T.getDerivedStateFromProps(b,d.__s))),v=d.props,g=d.state,d.__v=t,_)m&&T.getDerivedStateFromProps==null&&d.componentWillMount!=null&&d.componentWillMount(),m&&d.componentDidMount!=null&&d.__h.push(d.componentDidMount);else{if(m&&T.getDerivedStateFromProps==null&&b!==v&&d.componentWillReceiveProps!=null&&d.componentWillReceiveProps(b,O),!d.__e&&(d.shouldComponentUpdate!=null&&d.shouldComponentUpdate(b,d.__s,O)===!1||t.__v===i.__v)){for(t.__v!==i.__v&&(d.props=b,d.state=d.__s,d.__d=!1),t.__e=i.__e,t.__k=i.__k,t.__k.forEach(function(I){I&&(I.__=t)}),w=0;w<d._sb.length;w++)d.__h.push(d._sb[w]);d._sb=[],d.__h.length&&s.push(d);break e}d.componentWillUpdate!=null&&d.componentWillUpdate(b,d.__s,O),m&&d.componentDidUpdate!=null&&d.__h.push(function(){d.componentDidUpdate(v,g,p)})}if(d.context=O,d.props=b,d.__P=e,d.__e=!1,N=C.__r,M=0,m){for(d.state=d.__s,d.__d=!1,N&&N(t),u=d.render(d.props,d.state,d.context),P=0;P<d._sb.length;P++)d.__h.push(d._sb[P]);d._sb=[]}else do d.__d=!1,N&&N(t),u=d.render(d.props,d.state,d.context),d.state=d.__s;while(d.__d&&++M<25);d.state=d.__s,d.getChildContext!=null&&(o=he(he({},o),d.getChildContext())),m&&!_&&d.getSnapshotBeforeUpdate!=null&&(p=d.getSnapshotBeforeUpdate(v,g)),Jo(e,_t(A=u!=null&&u.type===ce&&u.key==null?u.props.children:u)?A:[A],t,i,o,n,r,s,l,a,c),d.base=t.__e,t.__u&=-161,d.__h.length&&s.push(d),h&&(d.__E=d.__=null)}catch(I){t.__v=null,a||r!=null?(t.__e=l,t.__u|=a?160:32,r[r.indexOf(l)]=null):(t.__e=i.__e,t.__k=i.__k),C.__e(I,t,i)}else r==null&&t.__v===i.__v?(t.__k=i.__k,t.__e=i.__e):t.__e=Js(i.__e,t,i,o,n,r,s,a,c);(u=C.diffed)&&u(t)}function tn(e,t,i){t.__d=void 0;for(var o=0;o<i.length;o++)ri(i[o],i[++o],i[++o]);C.__c&&C.__c(t,e),e.some(function(n){try{e=n.__h,n.__h=[],e.some(function(r){r.call(n)})}catch(r){C.__e(r,n.__v)}})}function Js(e,t,i,o,n,r,s,l,a){var c,u,d,_,v,g,p,h=i.props,b=t.props,m=t.type;if(m==="svg"?n="http://www.w3.org/2000/svg":m==="math"?n="http://www.w3.org/1998/Math/MathML":n||(n="http://www.w3.org/1999/xhtml"),r!=null){for(c=0;c<r.length;c++)if((v=r[c])&&"setAttribute"in v==!!m&&(m?v.localName===m:v.nodeType===3)){e=v,r[c]=null;break}}if(e==null){if(m===null)return document.createTextNode(b);e=document.createElementNS(n,m,b.is&&b),r=null,l=!1}if(m===null)h===b||l&&e.data===b||(e.data=b);else{if(r=r&&vt.call(e.childNodes),h=i.props||Ge,!l&&r!=null)for(h={},c=0;c<e.attributes.length;c++)h[(v=e.attributes[c]).name]=v.value;for(c in h)if(v=h[c],c!="children"){if(c=="dangerouslySetInnerHTML")d=v;else if(c!=="key"&&!(c in b)){if(c=="value"&&"defaultValue"in b||c=="checked"&&"defaultChecked"in b)continue;yt(e,c,null,v,n)}}for(c in b)v=b[c],c=="children"?_=v:c=="dangerouslySetInnerHTML"?u=v:c=="value"?g=v:c=="checked"?p=v:c==="key"||l&&typeof v!="function"||h[c]===v||yt(e,c,v,h[c],n);if(u)l||d&&(u.__html===d.__html||u.__html===e.innerHTML)||(e.innerHTML=u.__html),t.__k=[];else if(d&&(e.innerHTML=""),Jo(e,_t(_)?_:[_],t,i,o,m==="foreignObject"?"http://www.w3.org/1999/xhtml":n,r,s,r?r[0]:i.__k&&Ee(i,0),l,a),r!=null)for(c=r.length;c--;)r[c]!=null&&qo(r[c]);l||(c="value",g!==void 0&&(g!==e[c]||m==="progress"&&!g||m==="option"&&g!==h[c])&&yt(e,c,g,h[c],n),c="checked",p!==void 0&&p!==e[c]&&yt(e,c,p,h[c],n))}return e}function ri(e,t,i){try{typeof e=="function"?e(t):e.current=t}catch(o){C.__e(o,i)}}function ai(e,t,i){var o,n;if(C.unmount&&C.unmount(e),(o=e.ref)&&(o.current&&o.current!==e.__e||ri(o,null,t)),(o=e.__c)!=null){if(o.componentWillUnmount)try{o.componentWillUnmount()}catch(r){C.__e(r,t)}o.base=o.__P=null}if(o=e.__k)for(n=0;n<o.length;n++)o[n]&&ai(o[n],t,i||typeof e.type!="function");i||e.__e==null||qo(e.__e),e.__c=e.__=e.__e=e.__d=void 0}function Xs(e,t,i){return this.constructor(e,i)}function on(e,t,i){var o,n,r,s;C.__&&C.__(e,t),n=(o=!1)?null:t.__k,r=[],s=[],ni(t,e=t.__k=ii(ce,null,[e]),n||Ge,Ge,t.namespaceURI,n?null:t.firstChild?vt.call(t.childNodes):null,r,n?n.__e:t.firstChild,o,s),tn(r,e,s)}function Ie(e,t){var i={__c:t="__cC"+Yo++,__:e,Consumer:function(o,n){return o.children(n)},Provider:function(o){var n,r;return this.getChildContext||(n=[],(r={})[t]=this,this.getChildContext=function(){return r},this.componentWillUnmount=function(){n=null},this.shouldComponentUpdate=function(s){this.props.value!==s.value&&n.some(function(l){l.__e=!0,oi(l)})},this.sub=function(s){n.push(s);var l=s.componentWillUnmount;s.componentWillUnmount=function(){n&&n.splice(n.indexOf(s),1),l&&l.call(s)}}),o.children}};return i.Provider.__=i.Consumer.contextType=i}vt=Wo.slice,C={__e:function(e,t,i,o){for(var n,r,s;t=t.__;)if((n=t.__c)&&!n.__)try{if((r=n.constructor)&&r.getDerivedStateFromError!=null&&(n.setState(r.getDerivedStateFromError(e)),s=n.__d),n.componentDidCatch!=null&&(n.componentDidCatch(e,o||{}),s=n.__d),s)return n.__E=n}catch(l){e=l}throw e}},Vo=0,de.prototype.setState=function(e,t){var i;i=this.__s!=null&&this.__s!==this.state?this.__s:this.__s=he({},this.state),typeof e=="function"&&(e=e(he({},i),this.props)),e&&he(i,e),e!=null&&this.__v&&(t&&this._sb.push(t),oi(this))},de.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),oi(this))},de.prototype.render=ce,ke=[],Ko=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,Xt=function(e,t){return e.__v.__b-t.__v.__b},ht.__r=0,Qt=0,ei=en(!1),ti=en(!0),Yo=0;const Qs=e=>{try{const t=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);if(!t)return null;let i=parseInt(t[1],16),o=parseInt(t[2],16),n=parseInt(t[3],16);i/=255,o/=255,n/=255;const r=Math.max(i,o,n),s=Math.min(i,o,n);let l,a;const c=(r+s)/2;if(r===s)l=a=0;else{const u=r-s;switch(a=c>.5?u/(2-r-s):u/(r+s),r){case i:l=(o-n)/u+(o<n?6:0);break;case o:l=(n-i)/u+2;break;case n:l=(i-o)/u+4;break}l/=6}return{h:l,s:a,l:c}}catch{return null}},el=(e,t=!1)=>{let i="";const o=Math.round(e.h*360),n=Math.round(e.s*100),r=Math.round(e.l*100);return i=`${o},${n}%,${r}%`,i=t?i:`hsl(${i})`,i};var nn=(e=>(e.HEX="hex",e.HSL="hsl",e))(nn||{});const tl=(e,t,i)=>{const o=t==="hex"?Qs(e):e;return o&&o.l?(o.l<.25?o.l=o.l+.1:o.l<.5?o.l=o.l+.08:o.l<.75?o.l=o.l+.06:o.l<.9?o.l=o.l+.04:o.l=.9,el(o)):e};var mt=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const rn="fides-embed-container",il="fides-overlay";let wt;const an=e=>mt(void 0,[e],function*({initializedFides:t,i18n:i,renderOverlay:o}){const{options:n,experience:r}=t,s=()=>mt(void 0,null,function*(){var l,a,c;try{if(wt&&(on(null,wt),wt=void 0),n.fidesPrimaryColor){document.documentElement.style.setProperty("--fides-overlay-primary-color",n.fidesPrimaryColor);const d=tl(n.fidesPrimaryColor,nn.HEX,1);document.documentElement.style.setProperty("--fides-overlay-primary-button-background-hover-color",d)}let u;if(n.fidesEmbed)u=document.getElementById(rn),u||(yield mt(void 0,null,function*(){return new Promise(_=>{let v=0,g=200;const p=setInterval(()=>{u=document.getElementById(rn),u?(clearInterval(p),_()):(v+=1,v>=5&&g<1e3&&(g+=200))},g)})}));else{const d=n.overlayParentId||il;u=document.getElementById(d),u||(u=document.createElement("div"),u.id=d,u.className="fides-overlay",document.body.prepend(u))}return u?(o&&(((l=r.experience_config)==null?void 0:l.component)===V.MODAL||((a=r.experience_config)==null?void 0:a.component)===V.BANNER_AND_MODAL||((c=r.experience_config)==null?void 0:c.component)===V.TCF_OVERLAY)&&(o({initializedFides:t,i18n:i},u),wt=u),yield Promise.resolve()):yield Promise.reject(new Error("There was a problem rendering the Fides overlay."))}catch(u){return Promise.reject(u)}});return document?.readyState==="loading"?document.addEventListener("readystatechange",()=>mt(void 0,null,function*(){document.readyState==="interactive"&&s()})):s(),Promise.resolve()});var Le,j,si,sn,Ve=0,ln=[],B=C,cn=B.__b,dn=B.__r,un=B.diffed,fn=B.__c,pn=B.unmount,vn=B.__;function kt(e,t){B.__h&&B.__h(j,e,Ve||t),Ve=0;var i=j.__H||(j.__H={__:[],__h:[]});return e>=i.__.length&&i.__.push({}),i.__[e]}function K(e){return Ve=1,ol(hn,e)}function ol(e,t,i){var o=kt(Le++,2);if(o.t=e,!o.__c&&(o.__=[i?i(t):hn(void 0,t),function(l){var a=o.__N?o.__N[0]:o.__[0],c=o.t(a,l);a!==c&&(o.__N=[c,o.__[1]],o.__c.setState({}))}],o.__c=j,!j.u)){var n=function(l,a,c){if(!o.__c.__H)return!0;var u=o.__c.__H.__.filter(function(_){return!!_.__c});if(u.every(function(_){return!_.__N}))return!r||r.call(this,l,a,c);var d=!1;return u.forEach(function(_){if(_.__N){var v=_.__[0];_.__=_.__N,_.__N=void 0,v!==_.__[0]&&(d=!0)}}),!(!d&&o.__c.props===l)&&(!r||r.call(this,l,a,c))};j.u=!0;var r=j.shouldComponentUpdate,s=j.componentWillUpdate;j.componentWillUpdate=function(l,a,c){if(this.__e){var u=r;r=void 0,n(l,a,c),r=u}s&&s.call(this,l,a,c)},j.shouldComponentUpdate=n}return o.__N||o.__}function F(e,t){var i=kt(Le++,3);!B.__s&&gn(i.__H,t)&&(i.__=e,i.i=t,j.__H.__h.push(i))}function Fe(e){return Ve=5,ue(function(){return{current:e}},[])}function ue(e,t){var i=kt(Le++,7);return gn(i.__H,t)&&(i.__=e(),i.__H=t,i.__h=e),i.__}function S(e,t){return Ve=8,ue(function(){return e},t)}function $e(e){var t=j.context[e.__c],i=kt(Le++,9);return i.c=e,t?(i.__==null&&(i.__=!0,t.sub(j)),t.props.value):e.__}function nl(){for(var e;e=ln.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(Et),e.__H.__h.forEach(li),e.__H.__h=[]}catch(t){e.__H.__h=[],B.__e(t,e.__v)}}B.__b=function(e){j=null,cn&&cn(e)},B.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),vn&&vn(e,t)},B.__r=function(e){dn&&dn(e),Le=0;var t=(j=e.__c).__H;t&&(si===j?(t.__h=[],j.__h=[],t.__.forEach(function(i){i.__N&&(i.__=i.__N),i.i=i.__N=void 0})):(t.__h.forEach(Et),t.__h.forEach(li),t.__h=[],Le=0)),si=j},B.diffed=function(e){un&&un(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(ln.push(t)!==1&&sn===B.requestAnimationFrame||((sn=B.requestAnimationFrame)||rl)(nl)),t.__H.__.forEach(function(i){i.i&&(i.__H=i.i),i.i=void 0})),si=j=null},B.__c=function(e,t){t.some(function(i){try{i.__h.forEach(Et),i.__h=i.__h.filter(function(o){return!o.__||li(o)})}catch(o){t.some(function(n){n.__h&&(n.__h=[])}),t=[],B.__e(o,i.__v)}}),fn&&fn(e,t)},B.unmount=function(e){pn&&pn(e);var t,i=e.__c;i&&i.__H&&(i.__H.__.forEach(function(o){try{Et(o)}catch(n){t=n}}),i.__H=void 0,t&&B.__e(t,i.__v))};var _n=typeof requestAnimationFrame=="function";function rl(e){var t,i=function(){clearTimeout(o),_n&&cancelAnimationFrame(t),setTimeout(e)},o=setTimeout(i,100);_n&&(t=requestAnimationFrame(i))}function Et(e){var t=j,i=e.__c;typeof i=="function"&&(e.__c=void 0,i()),j=t}function li(e){var t=j;e.__c=e.__(),j=t}function gn(e,t){return!e||e.length!==t.length||t.some(function(i,o){return i!==e[o]})}function hn(e,t){return typeof t=="function"?t(e):t}function al(e,t){for(var i in t)e[i]=t[i];return e}function bn(e,t){for(var i in e)if(i!=="__source"&&!(i in t))return!0;for(var o in t)if(o!=="__source"&&e[o]!==t[o])return!0;return!1}function yn(e,t){this.props=e,this.context=t}(yn.prototype=new de).isPureReactComponent=!0,yn.prototype.shouldComponentUpdate=function(e,t){return bn(this.props,e)||bn(this.state,t)};var mn=C.__b;C.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),mn&&mn(e)};var sl=C.__e;C.__e=function(e,t,i,o){if(e.then){for(var n,r=t;r=r.__;)if((n=r.__c)&&n.__c)return t.__e==null&&(t.__e=i.__e,t.__k=i.__k),n.__c(e,t)}sl(e,t,i,o)};var wn=C.unmount;function kn(e,t,i){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach(function(o){typeof o.__c=="function"&&o.__c()}),e.__c.__H=null),(e=al({},e)).__c!=null&&(e.__c.__P===i&&(e.__c.__P=t),e.__c=null),e.__k=e.__k&&e.__k.map(function(o){return kn(o,t,i)})),e}function En(e,t,i){return e&&i&&(e.__v=null,e.__k=e.__k&&e.__k.map(function(o){return En(o,t,i)}),e.__c&&e.__c.__P===t&&(e.__e&&i.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=i)),e}function ci(){this.__u=0,this.t=null,this.__b=null}function On(e){var t=e.__.__c;return t&&t.__a&&t.__a(e)}function Ot(){this.u=null,this.o=null}C.unmount=function(e){var t=e.__c;t&&t.__R&&t.__R(),t&&32&e.__u&&(e.type=null),wn&&wn(e)},(ci.prototype=new de).__c=function(e,t){var i=t.__c,o=this;o.t==null&&(o.t=[]),o.t.push(i);var n=On(o.__v),r=!1,s=function(){r||(r=!0,i.__R=null,n?n(l):l())};i.__R=s;var l=function(){if(!--o.__u){if(o.state.__a){var a=o.state.__a;o.__v.__k[0]=En(a,a.__c.__P,a.__c.__O)}var c;for(o.setState({__a:o.__b=null});c=o.t.pop();)c.forceUpdate()}};o.__u++||32&t.__u||o.setState({__a:o.__b=o.__v.__k[0]}),e.then(s,s)},ci.prototype.componentWillUnmount=function(){this.t=[]},ci.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var i=document.createElement("div"),o=this.__v.__k[0].__c;this.__v.__k[0]=kn(this.__b,i,o.__O=o.__P)}this.__b=null}var n=t.__a&&ii(ce,null,e.fallback);return n&&(n.__u&=-33),[ii(ce,null,t.__a?null:e.children),n]};var Cn=function(e,t,i){if(++i[1]===i[0]&&e.o.delete(t),e.props.revealOrder&&(e.props.revealOrder[0]!=="t"||!e.o.size))for(i=e.u;i;){for(;i.length>3;)i.pop()();if(i[1]<i[0])break;e.u=i=i[2]}};(Ot.prototype=new de).__a=function(e){var t=this,i=On(t.__v),o=t.o.get(e);return o[0]++,function(n){var r=function(){t.props.revealOrder?(o.push(n),Cn(t,e,o)):n()};i?i(r):r()}},Ot.prototype.render=function(e){this.u=null,this.o=new Map;var t=bt(e.children);e.revealOrder&&e.revealOrder[0]==="b"&&t.reverse();for(var i=t.length;i--;)this.o.set(t[i],this.u=[1,0,this.u]);return e.children},Ot.prototype.componentDidUpdate=Ot.prototype.componentDidMount=function(){var e=this;this.o.forEach(function(t,i){Cn(e,i,t)})};var ll=typeof Symbol<"u"&&Symbol.for&&Symbol.for("react.element")||60103,cl=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,dl=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,ul=/[A-Z0-9]/g,fl=typeof document<"u",pl=function(e){return(typeof Symbol<"u"&&typeof Symbol()=="symbol"?/fil|che|rad/:/fil|che|ra/).test(e)};de.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(e){Object.defineProperty(de.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})});var Pn=C.event;function vl(){}function _l(){return this.cancelBubble}function gl(){return this.defaultPrevented}C.event=function(e){return Pn&&(e=Pn(e)),e.persist=vl,e.isPropagationStopped=_l,e.isDefaultPrevented=gl,e.nativeEvent=e};var hl={enumerable:!1,configurable:!0,get:function(){return this.class}},xn=C.vnode;C.vnode=function(e){typeof e.type=="string"&&function(t){var i=t.props,o=t.type,n={};for(var r in i){var s=i[r];if(!(r==="value"&&"defaultValue"in i&&s==null||fl&&r==="children"&&o==="noscript"||r==="class"||r==="className")){var l=r.toLowerCase();r==="defaultValue"&&"value"in i&&i.value==null?r="value":r==="download"&&s===!0?s="":l==="translate"&&s==="no"?s=!1:l==="ondoubleclick"?r="ondblclick":l!=="onchange"||o!=="input"&&o!=="textarea"||pl(i.type)?l==="onfocus"?r="onfocusin":l==="onblur"?r="onfocusout":dl.test(r)?r=l:o.indexOf("-")===-1&&cl.test(r)?r=r.replace(ul,"-$&").toLowerCase():s===null&&(s=void 0):l=r="oninput",l==="oninput"&&n[r=l]&&(r="oninputCapture"),n[r]=s}}o=="select"&&n.multiple&&Array.isArray(n.value)&&(n.value=bt(i.children).forEach(function(a){a.props.selected=n.value.indexOf(a.props.value)!=-1})),o=="select"&&n.defaultValue!=null&&(n.value=bt(i.children).forEach(function(a){a.props.selected=n.multiple?n.defaultValue.indexOf(a.props.value)!=-1:n.defaultValue==a.props.value})),i.class&&!i.className?(n.class=i.class,Object.defineProperty(n,"className",hl)):(i.className&&!i.class||i.class&&i.className)&&(n.class=n.className=i.className),t.props=n}(e),e.$$typeof=ll,xn&&xn(e)};var Nn=C.__r;C.__r=function(e){Nn&&Nn(e),e.__c};var An=C.diffed;C.diffed=function(e){An&&An(e);var t=e.props,i=e.__e;i!=null&&e.type==="textarea"&&"value"in t&&t.value!==i.value&&(i.value=t.value==null?"":t.value)};var bl=0;function f(e,t,i,o,n,r){t||(t={});var s,l,a=t;if("ref"in a)for(l in a={},t)l=="ref"?s=t[l]:a[l]=t[l];var c={type:e,props:a,key:i,ref:s,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:--bl,__i:-1,__u:0,__source:n,__self:r};if(typeof e=="function"&&(s=e.defaultProps))for(l in s)a[l]===void 0&&(a[l]=s[l]);return C.vnode&&C.vnode(c),c}function yl(e,t){t===void 0&&(t={});var i=t.insertAt;if(!(typeof document>"u")){var o=document.head||document.getElementsByTagName("head")[0],n=document.createElement("style");n.type="text/css",i==="top"&&o.firstChild?o.insertBefore(n,o.firstChild):o.appendChild(n),n.styleSheet?n.styleSheet.cssText=e:n.appendChild(document.createTextNode(e))}}var ml=`:root{--fides-overlay-primary-color:#2b2e35;--fides-overlay-background-color:#f7fafc;--fides-overlay-embed-background-color:transparent;--fides-overlay-font-color:#4a5568;--fides-overlay-font-color-dark:#2d3748;--fides-overlay-hover-color:#edf2f7;--fides-overlay-gpc-applied-background-color:#38a169;--fides-overlay-gpc-applied-text-color:#fff;--fides-overlay-gpc-overridden-background-color:#e53e3e;--fides-overlay-gpc-overridden-text-color:#fff;--fides-overlay-brand-link-logo-color:#2b2e35;--fides-overlay-background-dark-color:#e2e8f0;--fides-overlay-background-error-color:#f7c2c2;--fides-overlay-skeleton-gradient-from-color:rgba(0,0,0,.06);--fides-overlay-skeleton-gradient-to-color:rgba(0,0,0,.15);--fides-overlay-inactive-font-color:#a0aec0;--fides-overlay-primary-button-background-color:var(
|
|
1
|
+
if(typeof Fides<"u"&&Fides.options?.fidesUnsupportedRepeatedScriptLoading!=="enabled_acknowledge_not_supported")throw new Error("Fides detected that it was already loaded on this page, aborting execution! See https://www.ethyca.com/docs/dev-docs/js/troubleshooting for more information.");(function(y,Ze){typeof exports=="object"&&typeof module<"u"?Ze(exports):(y=typeof globalThis<"u"?globalThis:y||self,Ze(y.Fides={}))})(this,function(y){"use strict";var Ze=Object.defineProperty,mr=(e,t,i)=>t in e?Ze(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,At=(e,t,i)=>mr(e,typeof t!="symbol"?t+"":t,i);class Tt{constructor(t,i,o){At(this,"consentPreference"),At(this,"notice"),At(this,"noticeHistoryId"),this.notice=t,this.consentPreference=i,this.noticeHistoryId=o}}y.TCMobileDataVals=void 0,(e=>{(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFgdprApplies||(e.IABTCFgdprApplies={})),(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFPurposeOneTreatment||(e.IABTCFPurposeOneTreatment={})),(t=>{t[t._0=0]="_0",t[t._1=1]="_1"})(e.IABTCFUseNonStandardTexts||(e.IABTCFUseNonStandardTexts={}))})(y.TCMobileDataVals||(y.TCMobileDataVals={}));var wi=(e=>(e.GPP_US_NATIONAL="gpp_us_national",e.GPP_US_STATE="gpp_us_state",e))(wi||{}),ki=(e=>(e.FRONTEND="frontend",e.SYSTEM_WIDE="system_wide",e.NOT_APPLICABLE="not_applicable",e))(ki||{}),q=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.NOTICE_ONLY="notice_only",e))(q||{}),St=(e=>(e.COOKIE="Cookie",e.BROWSER_REQUEST="Browser Request",e.I_FRAME="iFrame",e.JAVASCRIPT_TAG="Javascript tag",e.IMAGE="Image",e))(St||{}),Z=(e=>(e.OPT_IN="opt_in",e.OPT_OUT="opt_out",e.ACKNOWLEDGE="acknowledge",e.NOT_APPLICABLE="not_applicable",e.TCF="tcf",e))(Z||{}),Pe=(e=>(e.OMIT="omit",e.INCLUDE="include",e))(Pe||{}),ge=(e=>(e.BOOLEAN="boolean",e.CONSENT_MECHANISM="consent_mechanism",e))(ge||{}),he=(e=>(e.THROW="throw",e.WARN="warn",e.IGNORE="ignore",e))(he||{}),G=(e=>(e.OVERLAY="overlay",e.BANNER_AND_MODAL="banner_and_modal",e.MODAL="modal",e.PRIVACY_CENTER="privacy_center",e.TCF_OVERLAY="tcf_overlay",e.HEADLESS="headless",e))(G||{}),Ei=(e=>(e.ALWAYS_ENABLED="always_enabled",e.ENABLED_WHERE_REQUIRED="enabled_where_required",e.ALWAYS_DISABLED="always_disabled",e))(Ei||{}),Oi=(e=>(e.PURPOSES="/tcf/purposes",e.FEATURES="/tcf/features",e.VENDORS="/tcf/vendors",e))(Oi||{}),xe=(e=>(e.OPTIONS="options",e.EXPERIENCE_TRANSLATION="language",e))(xe||{}),oe=(e=>(e.PRIMARY="primary",e.SECONDARY="secondary",e.TERTIARY="tertiary",e))(oe||{}),Lt=(e=>(e.ACKNOWLEDGE="acknowledge",e.OPT_IN_OPT_OUT="opt_in_opt_out",e.OPT_IN_ONLY="opt_in_only",e))(Lt||{}),Ci=(e=>(e.REJECT_ALL="reject_all",e.REJECT_CONSENT_ONLY="reject_consent_only",e))(Ci||{}),$=(e=>(e.BUTTON="button",e.REJECT="reject",e.ACCEPT="accept",e.SCRIPT="script",e.SAVE="save",e.DISMISS="dismiss",e.GPC="gpc",e.INDIVIDUAL_NOTICE="individual_notice",e.ACKNOWLEDGE="acknowledge",e.EXTERNAL_PROVIDER="external_provider",e))($||{}),Pi=(e=>(e.privacy_center="privacy_center",e.overlay="overlay",e.api="api",e))(Pi||{}),se=(e=>(e.NONE="none",e.APPLIED="applied",e.OVERRIDDEN="overridden",e))(se||{}),Re=(e=>(e.OVERLAY="overlay",e.MODAL="modal",e.BANNER="banner",e.PRIVACY_CENTER="privacy_center",e.TCF_OVERLAY="tcf_overlay",e.TCF_BANNER="tcf_banner",e))(Re||{}),It=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Xe={exports:{}};/*! https://mths.be/base64 v1.0.0 by @mathias | MIT license */Xe.exports,function(e,t){(function(i){var o=t,n=e&&e.exports==o&&e,r=typeof It=="object"&&It;(r.global===r||r.window===r)&&(i=r);var s=function(g){this.message=g};s.prototype=new Error,s.prototype.name="InvalidCharacterError";var l=function(g){throw new s(g)},a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",c=/[\t\n\f\r ]/g,u=function(g){g=String(g).replace(c,"");var p=g.length;p%4==0&&(g=g.replace(/==?$/,""),p=g.length),(p%4==1||/[^+a-zA-Z0-9/]/.test(g))&&l("Invalid character: the string to be decoded is not correctly encoded.");for(var h=0,b,m,k="",O=-1;++O<p;)m=a.indexOf(g.charAt(O)),b=h%4?b*64+m:m,h++%4&&(k+=String.fromCharCode(255&b>>(-2*h&6)));return k},d=function(g){g=String(g),/[^\0-\xFF]/.test(g)&&l("The string to be encoded contains characters outside of the Latin1 range.");for(var p=g.length%3,h="",b=-1,m,k,O,w,x=g.length-p;++b<x;)m=g.charCodeAt(b)<<16,k=g.charCodeAt(++b)<<8,O=g.charCodeAt(++b),w=m+k+O,h+=a.charAt(w>>18&63)+a.charAt(w>>12&63)+a.charAt(w>>6&63)+a.charAt(w&63);return p==2?(m=g.charCodeAt(b)<<8,k=g.charCodeAt(++b),w=m+k,h+=a.charAt(w>>10)+a.charAt(w>>4&63)+a.charAt(w<<2&63)+"="):p==1&&(w=g.charCodeAt(b),h+=a.charAt(w>>2)+a.charAt(w<<4&63)+"=="),h},_={encode:d,decode:u,version:"1.0.0"};if(o&&!o.nodeType)if(n)n.exports=_;else for(var v in _)_.hasOwnProperty(v)&&(o[v]=_[v]);else i.base64=_})(It)}(Xe,Xe.exports);var xi=Xe.exports;/*! js-cookie v3.0.5 | MIT */function Je(e){for(var t=1;t<arguments.length;t++){var i=arguments[t];for(var o in i)e[o]=i[o]}return e}var wr={read:function(e){return e[0]==='"'&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}};function $t(e,t){function i(n,r,s){if(!(typeof document>"u")){s=Je({},t,s),typeof s.expires=="number"&&(s.expires=new Date(Date.now()+s.expires*864e5)),s.expires&&(s.expires=s.expires.toUTCString()),n=encodeURIComponent(n).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var l="";for(var a in s)s[a]&&(l+="; "+a,s[a]!==!0&&(l+="="+s[a].split(";")[0]));return document.cookie=n+"="+e.write(r,n)+l}}function o(n){if(!(typeof document>"u"||arguments.length&&!n)){for(var r=document.cookie?document.cookie.split("; "):[],s={},l=0;l<r.length;l++){var a=r[l].split("="),c=a.slice(1).join("=");try{var u=decodeURIComponent(a[0]);if(s[u]=e.read(c,u),n===u)break}catch{}}return n?s[n]:s}}return Object.create({set:i,get:o,remove:function(n,r){i(n,"",Je({},r,{expires:-1}))},withAttributes:function(n){return $t(this.converter,Je({},this.attributes,n))},withConverter:function(n){return $t(Je({},this.converter,n),this.attributes)}},{attributes:{value:Object.freeze(t)},converter:{value:Object.freeze(e)}})}var kr=$t(wr,{path:"/"});let Qe;const Er=new Uint8Array(16);function Or(){if(!Qe&&(Qe=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Qe))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Qe(Er)}const H=[];for(let e=0;e<256;++e)H.push((e+256).toString(16).slice(1));function Cr(e,t=0){return H[e[t+0]]+H[e[t+1]]+H[e[t+2]]+H[e[t+3]]+"-"+H[e[t+4]]+H[e[t+5]]+"-"+H[e[t+6]]+H[e[t+7]]+"-"+H[e[t+8]]+H[e[t+9]]+"-"+H[e[t+10]]+H[e[t+11]]+H[e[t+12]]+H[e[t+13]]+H[e[t+14]]+H[e[t+15]]}var Ni={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function Ai(e,t,i){if(Ni.randomUUID&&!e)return Ni.randomUUID();e=e||{};const o=e.random||(e.rng||Or)();return o[6]=o[6]&15|64,o[8]=o[8]&63|128,Cr(o)}const et=(e,t)=>!!Object.keys(t).includes(e.notice_key),le=e=>!e||e===Z.OPT_OUT?!1:e===Z.OPT_IN?!0:e===Z.ACKNOWLEDGE,ze=(e,t)=>e?t===q.NOTICE_ONLY?Z.ACKNOWLEDGE:Z.OPT_IN:Z.OPT_OUT,Me=e=>typeof e=="string"?le(e):e,Ft=e=>e?e.split(",").map(t=>t.trim()).filter(Boolean):[],Ti=(e,t)=>e===void 0?!1:typeof e=="boolean"?e:t.globalPrivacyControl===!0?e.globalPrivacyControl:e.value,Si=(e,t)=>e.consent_mechanism===q.NOTICE_ONLY?!0:t&&et(e,t)?typeof t[e.notice_key]=="string"?le(t[e.notice_key]):t[e.notice_key]:le(e.default_preference);var jt=(e=>(e.CONSENT="Consent",e.LEGITIMATE_INTERESTS="Legitimate interests",e))(jt||{});const Pr=",",xr=[{experienceKey:"tcf_purpose_consents",tcfModelKey:"purposeConsents",enabledIdsKey:"purposesConsent"},{experienceKey:"tcf_purpose_legitimate_interests",tcfModelKey:"purposeLegitimateInterests",enabledIdsKey:"purposesLegint"},{experienceKey:"tcf_special_features",tcfModelKey:"specialFeatureOptins",enabledIdsKey:"specialFeatures"},{experienceKey:"tcf_vendor_consents",tcfModelKey:"vendorConsents",enabledIdsKey:"vendorsConsent"},{experienceKey:"tcf_vendor_legitimate_interests",tcfModelKey:"vendorLegitimateInterests",enabledIdsKey:"vendorsLegint"}],Nr=[{cookieKey:"system_consent_preferences",experienceKey:"tcf_system_consents"},{cookieKey:"system_legitimate_interests_preferences",experienceKey:"tcf_system_legitimate_interests"}];xr.filter(({experienceKey:e})=>e!=="tcf_features"&&e!=="tcf_special_purposes").map(e=>e.experienceKey),jt.CONSENT.toString(),jt.LEGITIMATE_INTERESTS.toString();var Ar=Object.defineProperty,Tr=Object.defineProperties,Sr=Object.getOwnPropertyDescriptors,Li=Object.getOwnPropertySymbols,Lr=Object.prototype.hasOwnProperty,Ir=Object.prototype.propertyIsEnumerable,Ii=(e,t,i)=>t in e?Ar(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,be=(e,t)=>{for(var i in t||(t={}))Lr.call(t,i)&&Ii(e,i,t[i]);if(Li)for(var i of Li(t))Ir.call(t,i)&&Ii(e,i,t[i]);return e},Ne=(e,t)=>Tr(e,Sr(t)),$r=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const Dt="fides_consent",$i=365,tt=kr.withConverter({read(e){return decodeURIComponent(e)},write(e){return encodeURIComponent(e)}}),Rt=e=>e?Object.values(e).some(t=>t!==void 0):!1,Fi=()=>Ai(),Fr=Fi(),ji=e=>{var t;return!!!((t=e.fides_meta)!=null&&t.updatedAt)},Di=e=>{const t=new Date;return{consent:e||{},identity:{fides_user_device_id:Fr||Fi()},fides_meta:{version:"0.9.0",createdAt:t.toISOString(),updatedAt:""},tcf_consent:{},non_applicable_notice_keys:[]}},it=e=>tt.get(e),Ae=()=>{const e=it(Dt);if(e)try{return JSON.parse(e)}catch{try{return JSON.parse(xi.decode(e))}catch{return}}},Ri=(e,t=!1)=>{const i=Di(e);if(typeof document>"u")return i;if(t)return document.cookie="fides_consent=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT",i;let o=Ae();if(o?.consent){const{consent:n}=o;Object.entries(n).forEach(([r,s])=>{n[r]=Me(s)})}if(!o)return i;try{"consent"in o&&"fides_meta"in o||(o=Ne(be({},i),{consent:o}));const n=be(be({},e),o.consent);return o.consent=n,o}catch(n){return console.error("Unable to read consent cookie: invalid JSON.",n),i}},zi=(e,t=!1)=>{if(typeof document>"u")return;const o=new Date().toISOString();e.fides_meta.updatedAt=o;let n=JSON.stringify(e);t&&(n=xi.encode(n));const r=window.location.hostname.split(".");let s="";for(let l=1;l<=r.length;l+=1)if(s=r.slice(-l).join("."),tt.set(Dt,n,{path:"/",domain:s,expires:$i})){const c=Ae();if(c&&c.fides_meta.updatedAt===e.fides_meta.updatedAt)break}},zt=({experience:e,cookie:t})=>{var i;if(!e.privacy_notices)return e;const o=(i=e.privacy_notices)==null?void 0:i.map(r=>{var s,l;const a=(s=t.non_applicable_notice_keys)==null?void 0:s.includes(r.notice_key),c=(l=e.non_applicable_privacy_notices)==null?void 0:l.includes(r.notice_key);if(a&&!c)return Ne(be({},r),{current_preference:void 0});const u=Object.keys(t.consent).includes(r.notice_key)?ze(!!t.consent[r.notice_key],r.consent_mechanism):void 0;return Ne(be({},r),{current_preference:u})});return Ne(be({},e),{privacy_notices:o})},jr=e=>{const t={};return Nr.forEach(({cookieKey:i})=>{var o;const n=(o=e[i])!=null?o:[];t[i]=Object.fromEntries(n.map(r=>[r.id,le(r.preference)]))}),t},Mi=(e,t)=>{const i={};return e?.options.forEach(({cookieKeys:o,default:n})=>{if(n===void 0)return;const r=Ti(n,t);o.forEach(s=>{const l=i[s];if(l===void 0){i[s]=r;return}i[s]=l&&r})}),i},Ui=(e,t=!0,i=!0)=>{const{hostname:o}=window.location;e.forEach(n=>{var r;const s=t?o:n.domain;tt.remove(n.name,{path:(r=n.path)!=null?r:"/",domain:s}),i&&tt.remove(n.name,{domain:`.${o}`})})},Bi=e=>{const t=new Map(e.map(({notice:i,consentPreference:o})=>[i.notice_key,le(o)]));return Object.fromEntries(t)},Vi=(e,t)=>$r(void 0,null,function*(){var i;const o=(i=window.Fides)==null?void 0:i.experience,n=o?.non_applicable_privacy_notices||[];return Ne(be({},e),{consent:Bi(t),non_applicable_notice_keys:n})}),Dr=e=>{const t={};return e.privacy_notices&&e.privacy_notices.forEach(i=>{i.current_preference?t[i.notice_key]=le(i.current_preference):i.default_preference&&(t[i.notice_key]=le(i.default_preference))}),t},Gi=({cookie:e,experience:t})=>{const i=Dr(t);return Ne(be({},e),{consent:i,non_applicable_notice_keys:t.non_applicable_privacy_notices||e.non_applicable_notice_keys||[]})};var Rr=Object.defineProperty,zr=(e,t,i)=>t in e?Rr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Hi=(e,t,i)=>zr(e,typeof t!="symbol"?t+"":t,i);class Mr{constructor(){Hi(this,"cookieName","OptanonConsent"),Hi(this,"migrationMethod",$.EXTERNAL_PROVIDER)}getConsentCookie(){return it(this.cookieName)}convertToFidesConsent(t,i){if(i.otFidesMapping)try{const n=decodeURIComponent(i.otFidesMapping).replace(/^'|'$/g,""),r=JSON.parse(n),s=this.parseCookieValue(t,r);return s}catch{return}}parseCookieValue(t,i){const o={},n=t.match(/groups=([^&]*)/);return!n||!n[1]||n[1].split(",").forEach(l=>{const[a,c]=l.split(":");i[a]&&i[a].forEach(u=>{const d=c==="1";o[u]===void 0&&(o[u]=d)})}),o}}var Ki=(e=>(e.ONETRUST="onetrust",e))(Ki||{});const Mt=new Map;function Ur(e,t){Mt.set(e,t)}function Br(e){e.otFidesMapping&&Ur(Ki.ONETRUST,new Mr)}function Yi(e){let t,i;if(Array.from(Mt).some(([n,r])=>{const s=r.getConsentCookie();if(!s)return!1;const l=r.convertToFidesConsent(s,e);return l?(t=l,i=n,!0):!1}),!i)return{consent:void 0,method:void 0};const o=Mt.get(i);return{consent:t,method:o.migrationMethod}}const Vr=e=>{typeof window<"u"?window.fidesDebugger||(window.fidesDebugger=e?console.log:()=>{}):globalThis.fidesDebugger=()=>{}},X="en",ot="Manage preferences",nt=/^([A-Za-z]{2,3})(?:(?:[_-]([A-Za-z0-9]{2,4}))?$|(?:(?:[_-]\w+)+))/,Gr=/^(?:([a-z]{2})(-[a-z0-9]{1,3})?|(eea))$/i,Hr=[{overrideName:"fidesEmbed",overrideType:"boolean",overrideKey:"fides_embed",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableSaveApi",overrideType:"boolean",overrideKey:"fides_disable_save_api",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableNoticesServedApi",overrideType:"boolean",overrideKey:"fides_disable_notices_served_api",validationRegex:/^(true|false)$/},{overrideName:"fidesDisableBanner",overrideType:"boolean",overrideKey:"fides_disable_banner",validationRegex:/^(true|false)$/},{overrideName:"fidesString",overrideType:"string",overrideKey:"fides_string",validationRegex:/(.*)/},{overrideName:"fidesTcfGdprApplies",overrideType:"boolean",overrideKey:"fides_tcf_gdpr_applies",validationRegex:/^(true|false)$/},{overrideName:"fidesLocale",overrideType:"string",overrideKey:"fides_locale",validationRegex:nt},{overrideName:"fidesPrimaryColor",overrideType:"string",overrideKey:"fides_primary_color",validationRegex:/(.*)/},{overrideName:"fidesClearCookie",overrideType:"string",overrideKey:"fides_clear_cookie",validationRegex:/(.*)/},{overrideName:"fidesConsentOverride",overrideType:"string",overrideKey:"fides_consent_override",validationRegex:/^(accept|reject)$/},{overrideName:"otFidesMapping",overrideType:"string",overrideKey:"ot_fides_mapping",validationRegex:/(.*)/},{overrideName:"fidesDisabledNotices",overrideType:"array",overrideKey:"fides_disabled_notices",validationRegex:/(.*)/,transform:Ft},{overrideName:"fidesDisabledSystems",overrideType:"array",overrideKey:"fides_disabled_systems",validationRegex:/(.*)/,transform:Ft},{overrideName:"fidesConsentNonApplicableFlagMode",overrideType:"string",overrideKey:"fides_consent_non_applicable_flag_mode",validationRegex:/^(omit|include)$/},{overrideName:"fidesConsentFlagType",overrideType:"string",overrideKey:"fides_consent_flag_type",validationRegex:/^(boolean|consent_mechanism)$/},{overrideName:"fidesInitializedEventMode",overrideType:"string",overrideKey:"fides_initialized_event_mode",validationRegex:/^(multiple|once|disable)$/},{overrideName:"fidesModalDefaultView",overrideType:"string",overrideKey:"fides_modal_default_view",validationRegex:/^\/tcf\/(purposes|features|vendors)$/},{overrideName:"fidesModalDisplay",overrideType:"string",overrideKey:"fides_modal_display",validationRegex:/^(immediate|default)$/},{overrideName:"fidesUnsupportedRepeatedScriptLoading",overrideType:"string",overrideKey:"fides_unsupported_repeated_script_loading",validationRegex:/^(enabled_acknowledge_not_supported|disabled)$/}],Kr=[{overrideName:"title",overrideType:"string",overrideKey:"fides_title",validationRegex:/(.*)/},{overrideName:"description",overrideType:"string",overrideKey:"fides_description",validationRegex:/(.*)/},{overrideName:"privacy_policy_url",overrideType:"string",overrideKey:"fides_privacy_policy_url",validationRegex:/(.*)/},{overrideName:"override_language",overrideType:"string",overrideKey:"fides_override_language",validationRegex:nt}],Yr="fides-overlay-wrapper",Wr="fides-i18n-icon",Ut=["marketing","data_sales","data_sales_and_sharing","data_sales_sharing_gpp_us_state","data_sharing_gpp_us_state","data_sales_gpp_us_state","targeted_advertising_gpp_us_state","sales_sharing_targeted_advertising_gpp_us_national","sales_sharing_targeted_advertising"];var qr=Object.defineProperty,Zr=Object.defineProperties,Xr=Object.getOwnPropertyDescriptors,Wi=Object.getOwnPropertySymbols,Jr=Object.prototype.hasOwnProperty,Qr=Object.prototype.propertyIsEnumerable,qi=(e,t,i)=>t in e?qr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,rt=(e,t)=>{for(var i in t||(t={}))Jr.call(t,i)&&qi(e,i,t[i]);if(Wi)for(var i of Wi(t))Qr.call(t,i)&&qi(e,i,t[i]);return e},ea=(e,t)=>Zr(e,Xr(t));const Te=e=>!e||typeof e!="object"?!1:Object.keys(e).length===0||"id"in e,ta=e=>!!(e&&e.every(t=>t.default_preference===Z.OPT_IN)),at=e=>{if(e){if(e.location&&Gr.test(e.location))return e.location.replace("-","_").toLowerCase();if(e.country&&e.region)return`${e.country.toLowerCase()}_${e.region.toLowerCase()}`}},Zi=e=>{if(typeof e!="object"||!e.fidesApiUrl||!e.privacyCenterUrl)return!1;try{new URL(e.privacyCenterUrl),new URL(e.fidesApiUrl)}catch{return!1}return!0},Xi=e=>{switch(e){case xe.OPTIONS:return Hr;case xe.EXPERIENCE_TRANSLATION:return Kr;default:return null}},Ji=e=>{if(!Te(e))return!1;const t=e.experience_config;return!(!t||!(t.component===G.MODAL||t.component===G.BANNER_AND_MODAL||t.component===G.TCF_OVERLAY||t.component===G.HEADLESS)||t.component===G.BANNER_AND_MODAL&&!(e.privacy_notices&&e.privacy_notices.length>0))},st=e=>e.fidesConsentOverride===$.ACCEPT||e.fidesConsentOverride===$.REJECT,ia=e=>{var t;return(t=e.default_preference)!=null?t:Z.OPT_OUT},lt=(e,t,i,o)=>{var n,r,s,l,a,c,u;return o?.fidesDisableBanner||!Te(e)||o.fidesModalDisplay==="immediate"||((n=e.experience_config)==null?void 0:n.component)===G.TCF_OVERLAY&&e.vendor_count===0?!1:((r=e.experience_config)==null?void 0:r.component)===G.TCF_OVERLAY&&t?o&&st(o)?!1:(s=e.meta)!=null&&s.version_hash?e.meta.version_hash!==t.tcf_version_hash:!0:((l=e.experience_config)==null?void 0:l.component)===G.MODAL||((a=e.experience_config)==null?void 0:a.component)===G.HEADLESS||!((c=e?.privacy_notices)!=null&&c.length)?!1:i?o&&st(o)?!1:t?.fides_meta.consentMethod===$.GPC?!0:!((u=e.privacy_notices)==null?void 0:u.every(_=>et(_,i))):!0},Qi=e=>{e[0]==="window"&&e.shift();let t=window;for(;e.length>0;){const i=e.shift();if(typeof i>"u"||typeof t[i]!="object")return;t=t[i]}return t},eo=({value:e,notice:t,consentContext:i})=>!i.globalPrivacyControl||!t.has_gpc_flag||t.consent_mechanism===q.NOTICE_ONLY?se.NONE:e?se.OVERRIDDEN:se.APPLIED,Bt=()=>{},oa=(e,t)=>e.map(i=>{var o;const n=ze(t.includes(i.notice.notice_key),i.notice.consent_mechanism);return new Tt(i.notice,n,(o=i.bestTranslation)==null?void 0:o.privacy_notice_history_id)}),to=e=>{try{const t=JSON.stringify(e);return btoa(t.replace(/\s/g,""))}catch(t){throw new Error("Failed to encode Notice Consent string:",{cause:t})}},ct=e=>{if(!e)return{};try{const t=atob(e),i=JSON.parse(t);return Object.fromEntries(Object.entries(i).map(([o,n])=>[o,!!n]))}catch(t){throw new Error("Failed to decode Notice Consent string:",{cause:t})}},na=({consent:e,nonApplicableNotices:t,flagType:i,mode:o=Pe.OMIT})=>{if(!t?.length)return e;const n=rt({},e);return o===Pe.INCLUDE?t.forEach(r=>{n[r]=i===ge.CONSENT_MECHANISM?Z.NOT_APPLICABLE:!0}):t.forEach(r=>{delete n[r]}),n},ra=({consent:e,flagType:t=ge.BOOLEAN,consentMechanisms:i})=>{const o={};if(t!==ge.CONSENT_MECHANISM)return Object.fromEntries(Object.entries(e).map(([r,s])=>[r,Me(s)]));const n=Object.values(e).some(r=>typeof r=="boolean");if(n&&!i)throw new Error("Cannot transform boolean consent values to consent mechanisms without consent mechanisms map");return n?(Object.keys(e).forEach(r=>{const s=e[r];if(typeof s=="string")o[r]=s;else{const l=i[r];o[r]=ze(s,l)}}),o):rt({},e)},Ue=(e,t,i=[],o,n,r)=>{var s,l,a;const c=rt({},e),u=(s=window.Fides)==null?void 0:s.options,d=(l=n??u?.fidesConsentNonApplicableFlagMode)!=null?l:Pe.OMIT,_=(a=o??u?.fidesConsentFlagType)!=null?a:ge.BOOLEAN,v={};Object.assign(v,na({consent:{},nonApplicableNotices:t??[],flagType:_,mode:d}));const g=i.reduce((h,b)=>ea(rt({},h),{[b.notice_key]:b.consent_mechanism}),{}),p={};return Object.entries(c).forEach(([h,b])=>{r?.includes(h)&&!t?.includes(h)||(p[h]=b)}),Object.assign(v,ra({consent:p,consentMechanisms:g,flagType:_})),v},aa=e=>{const t=e.split("~")[0];return!!(t&&["1","2"].includes(t)&&e?.match(t==="1"?/\d~[0-9.]*$/:/\d~[0-9.]*~dv.[0-9.]*$/))},Vt=(e,t,i)=>new Proxy(e,{get(o,n){if(o[n.toString()]===void 0){const r=t.fidesConsentFlagType===ge.CONSENT_MECHANISM;return!i&&n.toString()==="essential"?r?q.NOTICE_ONLY:!0:r?q.OPT_OUT:!1}return o[n.toString()]}});var sa=Object.defineProperty,la=Object.defineProperties,ca=Object.getOwnPropertyDescriptors,io=Object.getOwnPropertySymbols,da=Object.prototype.hasOwnProperty,ua=Object.prototype.propertyIsEnumerable,oo=(e,t,i)=>t in e?sa(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Be=(e,t)=>{for(var i in t||(t={}))da.call(t,i)&&oo(e,i,t[i]);if(io)for(var i of io(t))ua.call(t,i)&&oo(e,i,t[i]);return e},fa=(e,t)=>la(e,ca(t)),we=(e=>(e.FIDES="fides",e.EXTERNAL="external",e))(we||{}),Q=(e=>(e.TOGGLE="toggle",e.BUTTON="button",e.LINK="link",e))(Q||{});const ce=(e,t,i)=>{var o,n,r,s,l,a,c,u;const d=t?Be({},t):void 0;if(typeof window<"u"&&typeof CustomEvent<"u"){const _=Be({consentMethod:d?.fides_meta.consentMethod},i);(o=i?.trigger)!=null&&o.origin||(_.trigger=Be(Be({},_.trigger),{origin:"fides"}));const v=(n=performance?.mark)==null?void 0:n.call(performance,e),g=v?.startTime,p=d;p&&d?.consent&&(p.consent=Ue(d.consent,(s=(r=window.Fides)==null?void 0:r.experience)==null?void 0:s.non_applicable_privacy_notices,(a=(l=window.Fides)==null?void 0:l.experience)==null?void 0:a.privacy_notices,void 0,void 0,d.non_applicable_notice_keys));const h=new CustomEvent(e,{detail:fa(Be({},p),{debug:!!((u=(c=window.Fides)==null?void 0:c.options)!=null&&u.debug),extraDetails:_,timestamp:g}),bubbles:!0});window.dispatchEvent(h)}},no=(e,t)=>{const i=o=>t(o.detail);return window.addEventListener(e,i),()=>{window.removeEventListener(e,i)}},ro=(e,t)=>{var i,o;ce("FidesConsentLoaded",e,t),((o=(i=window.Fides)==null?void 0:i.options)==null?void 0:o.fidesInitializedEventMode)==="multiple"&&ce("FidesInitialized",e,t)},ao=(e,t)=>{var i,o;ce("FidesReady",e,t);const n=(o=(i=window.Fides)==null?void 0:i.options)==null?void 0:o.fidesInitializedEventMode;(n==="multiple"||n==="once")&&ce("FidesInitialized",e,t)},Gt=e=>{if(!e)return{tc:"",ac:"",gpp:"",nc:""};const[t="",i="",o="",n=""]=e.split(Pr);return t?{tc:t,ac:i,gpp:o,nc:n}:{tc:"",ac:"",gpp:o,nc:n}},pa=()=>typeof window.blueConicClient<"u"&&typeof window.blueConicClient.event<"u"&&typeof window.blueConicClient.event.subscribe<"u",dt=()=>{var e,t,i;if(!pa()||!((e=window.blueConicClient)!=null&&e.profile))return;const o=(i=(t=window.blueConicClient)==null?void 0:t.profile)==null?void 0:i.getProfile(),{consent:n}=window.Fides,r=n!==void 0&&Object.entries(n).length>0,s=Ut.some(l=>n[l]);!r||s?(o.setConsentedObjectives(["iab_purpose_1","iab_purpose_2","iab_purpose_3","iab_purpose_4"]),o.setRefusedObjectives([])):(o.setConsentedObjectives(["iab_purpose_1"]),o.setRefusedObjectives(["iab_purpose_2","iab_purpose_3","iab_purpose_4"])),window.blueConicClient.profile.updateProfile()},va=({approach:e="onetrust"}={approach:"onetrust"})=>{if(e!=="onetrust")throw new Error("Unsupported approach");window.addEventListener("FidesReady",dt),window.addEventListener("FidesUpdated",dt),window.addEventListener("onBlueConicLoaded",dt),dt()},so=(e,t)=>{var i,o,n,r,s,l,a,c,u,d,_,v,g,p,h,b;const m=(i=window.dataLayer)!=null?i:[];window.dataLayer=m;const{detail:k,type:O}=e,{consent:w,extraDetails:x,fides_string:U,timestamp:P}=k;let A=w;const T=(s=(r=t?.flag_type)!=null?r:(n=(o=window.Fides)==null?void 0:o.options)==null?void 0:n.fidesConsentFlagType)!=null?s:ge.BOOLEAN,L=(u=(c=t?.non_applicable_flag_mode)!=null?c:(a=(l=window.Fides)==null?void 0:l.options)==null?void 0:a.fidesConsentNonApplicableFlagMode)!=null?u:Pe.OMIT,I=(v=(_=(d=window.Fides)==null?void 0:d.experience)==null?void 0:_.privacy_notices)!=null?v:[],B=(p=(g=window.Fides)==null?void 0:g.experience)==null?void 0:p.non_applicable_privacy_notices;A=Ue(w,B,I,T,L,(b=(h=window.Fides)==null?void 0:h.cookie)==null?void 0:b.non_applicable_notice_keys);const Y={consent:A,extraDetails:x,fides_string:U,timestamp:P};m.push({event:O,Fides:Y})},_a=e=>{var t,i;if(Object.entries({FidesInitializing:!1,FidesInitialized:!0,FidesConsentLoaded:!0,FidesReady:!0,FidesUpdating:!0,FidesUpdated:!0,FidesUIChanged:!0,FidesUIShown:!0,FidesModalClosed:!0}).filter(([,r])=>r).map(([r])=>r).forEach(r=>{window.addEventListener(r,s=>so(s,e))}),(t=window.Fides)!=null&&t.initialized){const{consent:r,fides_meta:s,identity:l,tcf_consent:a}=window.Fides,c=(i=performance?.getEntriesByName("FidesInitialized")[0])==null?void 0:i.startTime;so({type:"FidesInitialized",detail:{consent:r,fides_meta:s,identity:l,tcf_consent:a,timestamp:c,extraDetails:{consentMethod:s?.consentMethod}}},e)}},ga=()=>{if(window.fbq)return window.fbq;const e={queue:[],loaded:!0,version:"2.0",push(...t){const i=window.fbq;i.callMethod?i.callMethod(...t):i.queue.push(t)}};return window.fbq=Object.assign(e.push,e),window._fbq=window.fbq,window.fbq},ha=e=>{const t=ga();t("consent",e.consent?"grant":"revoke"),e.dataUse?t("dataProcessingOptions",[]):t("dataProcessingOptions",["LDU"],1,1e3)},ba={marketing:Ut,sale_of_data:Ut,analytics:["analytics"],preferences:["functional"]};function ya(e,t){var i;const o=Object.fromEntries(Object.entries(e).map(([r,s])=>[r,Me(s)])),n={};return Object.entries(ba).forEach(([r,s])=>{const l=s.some(c=>o[c]===!0),a=s.some(c=>o[c]===!1);l?n[r]=!0:a&&(n[r]=!1)}),n.sale_of_data===void 0&&(n.sale_of_data=(i=t?.sale_of_data_default)!=null?i:!1),n}const ut=(e,t)=>{window.Shopify.customerPrivacy.setTrackingConsent(ya(e,t),()=>{})},lo=e=>{var t,i;(t=window.Shopify)!=null&&t.customerPrivacy||console.error("Fides could not access Shopify's customerPrivacy API"),window.addEventListener("FidesReady",o=>ut(o.detail.consent,e)),window.addEventListener("FidesUpdating",o=>ut(o.detail.consent,e)),window.addEventListener("FidesUpdated",o=>ut(o.detail.consent,e)),(i=window.Fides)!=null&&i.initialized&&window.Fides.cookie&&ut(window.Fides.cookie.consent,e)},ma=e=>{let t,i;const o=()=>{clearTimeout(t),clearTimeout(i)},n=()=>{if(window.Shopify){if(o(),window.Shopify.customerPrivacy){lo(e);return}window.Shopify.loadFeatures([{name:"consent-tracking-api",version:"0.1"}],r=>{if(r)throw Error("Fides could not load Shopify's consent-tracking-api");lo(e)});return}i=setTimeout(n,200)};t=setTimeout(()=>{throw o(),Error("Fides.shopify was called but Shopify is not present in the page after 3 seconds.")},3e3),n()};var wa={"static.gpc":"\u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629","static.gpc.description":"\u062A\u0645 \u062A\u0637\u0628\u064A\u0642 \u062A\u0641\u0636\u064A\u0644\u0643 \u0644\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629. \u0644\u0642\u062F \u0623\u0644\u063A\u064A \u0627\u0634\u062A\u0631\u0627\u0643\u0643 \u062A\u0644\u0642\u0627\u0626\u064A\u064B\u0627 \u0641\u064A \u062D\u0627\u0644\u0627\u062A \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u062A\u064A \u062A\u0644\u062A\u0632\u0645 \u0628\u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629.","static.gpc.status.applied":"\u062A\u0645 \u0627\u0644\u062A\u0637\u0628\u064A\u0642","static.gpc.status.overridden":"\u062A\u0645 \u0627\u0644\u062A\u062C\u0627\u0648\u0632","static.gpc.title":"\u062A\u0645 \u0627\u0643\u062A\u0634\u0627\u0641 \u0627\u0644\u062A\u062D\u0643\u0645 \u0627\u0644\u0639\u0627\u0644\u0645\u064A \u0641\u064A \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629","static.other.cookies":"\u0645\u0644\u0641\u0627\u062A \u062A\u0639\u0631\u064A\u0641 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637","static.other.back":"\u0631\u062C\u0648\u0639","static.other.vendors":"\u0627\u0644\u0645\u0648\u0631\u062F\u0648\u0646","static.other.retention":"\u0627\u0644\u062D\u0641\u0638","static.other.description":"\u0648\u0635\u0641"},ka={"static.gpc":"\u0413\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438","static.gpc.description":"\u0412\u0430\u0448\u0435\u0442\u043E \u043F\u0440\u0435\u0434\u043F\u043E\u0447\u0438\u0442\u0430\u043D\u0438\u0435 \u0437\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438 \u0435 \u0437\u0430\u0447\u0435\u0442\u0435\u043D\u043E. \u0412\u0438\u0435 \u0441\u0442\u0435 \u0431\u0438\u043B\u0438 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0438\u0437\u043A\u043B\u044E\u0447\u0435\u043D\u0438 \u043E\u0442 \u0441\u043B\u0443\u0447\u0430\u0438\u0442\u0435 \u043D\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u043D\u0435 \u043D\u0430 \u0434\u0430\u043D\u043D\u0438, \u043A\u043E\u0438\u0442\u043E \u0441\u0435 \u043E\u0442\u043D\u0430\u0441\u044F\u0442 \u043A\u044A\u043C \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u043B\u0438\u0447\u043D\u0438\u0442\u0435 \u0434\u0430\u043D\u043D\u0438.","static.gpc.status.applied":"\u041F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u043E","static.gpc.status.overridden":"\u041F\u0440\u0435\u043C\u0430\u0445\u043D\u0430\u0442\u043E","static.gpc.title":"\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u0435\u043D \u0435 \u0433\u043B\u043E\u0431\u0430\u043B\u0435\u043D \u043A\u043E\u043D\u0442\u0440\u043E\u043B \u043D\u0430 \u043F\u043E\u0432\u0435\u0440\u0438\u0442\u0435\u043B\u043D\u043E\u0441\u0442\u0442\u0430","static.other.cookies":"\u0411\u0438\u0441\u043A\u0432\u0438\u0442\u043A\u0438","static.other.back":"\u041D\u0430\u0437\u0430\u0434","static.other.vendors":"\u0414\u043E\u0441\u0442\u0430\u0432\u0447\u0438\u0446\u0438","static.other.retention":"\u0421\u044A\u0445\u0440\u0430\u043D\u0435\u043D\u0438\u0435","static.other.description":"\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435"},Ea={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Va\u0161 izbor globalne kontrole privatnosti je uva\u017Een. Automatski ste isklju\u010Deni iz slu\u010Dajeva kori\u0161tenja podataka koji se pridr\u017Eavaju globalne kontrole privatnosti.","static.gpc.status.applied":"Prihva\u0107ena","static.gpc.status.overridden":"Odbijena","static.gpc.title":"Globalna kontrola privatnosti je otkrivena","static.other.cookies":"Kola\u010Di\u0107i","static.other.back":"Nazad","static.other.vendors":"Dobavlja\u010Di","static.other.retention":"Zadr\u017Eavanje","static.other.description":"Opis"},Oa={"static.gpc":"Control de privadesa global","static.gpc.description":"S\u2019ha respectat la vostra prefer\xE8ncia pel que fa al control de privadesa global. Se us ha excl\xF2s autom\xE0ticament dels casos d\u2019\xFAs de dades que s\u2019adhereixen al control de privadesa global.","static.gpc.status.applied":"Aplicat","static.gpc.status.overridden":"Anul\xB7lat","static.gpc.title":"S'ha detectat un control de privadesa global","static.other.cookies":"Galetes","static.other.back":"Enrere","static.other.vendors":"Prove\xEFdors","static.other.retention":"Retenci\xF3","static.other.description":"Descripci\xF3"},Ca={"static.gpc":"Glob\xE1ln\xED kontrola ochrany osobn\xEDch \xFAdaj\u016F","static.gpc.description":"Byly dodr\u017Eeny va\u0161e glob\xE1ln\xED preference ochrany osobn\xEDch \xFAdaj\u016F. Automaticky jste byli vy\u0159azeni z pou\u017E\xEDv\xE1n\xED \xFAdaj\u016F v p\u0159\xEDpadech, na kter\xE9 se vztahuje glob\xE1ln\xED ochrana osobn\xEDch \xFAdaj\u016F.","static.gpc.status.applied":"Aplikov\xE1no","static.gpc.status.overridden":"P\u0159eps\xE1no","static.gpc.title":"Byla zji\u0161t\u011Bna glob\xE1ln\xED kontrola soukrom\xED","static.other.cookies":"Soubory cookie","static.other.back":"Zp\u011Bt","static.other.vendors":"Dodavatel\xE9","static.other.retention":"Ulo\u017Een\xED","static.other.description":"Popis"},Pa={"static.gpc":"Global fortrolighedskontrol","static.gpc.description":"Din pr\xE6ference i forbindelse med global fortrolighedskontrol er blevet efterkommet. Du er automatisk blevet frameldt tilf\xE6lde af databrug, der overholder global fortrolighedskontrol.","static.gpc.status.applied":"Anvendt","static.gpc.status.overridden":"Tilsidesat","static.gpc.title":"Global privatlivskontrol registreret","static.other.cookies":"Cookies","static.other.back":"Tilbage","static.other.vendors":"Forhandlere","static.other.retention":"Opbevaring","static.other.description":"Beskrivelse"},xa={"static.gpc":"Globale Datenschutzeinstellungen","static.gpc.description":"Ihre globale Datenschutzeinstellungen werden ber\xFCcksichtigt. Sie wurden automatisch von Anwendungsf\xE4llen ausgenommen, die nicht Ihren globalen Datenschutzeinstellungen unterliegen.","static.gpc.status.applied":"Angewendet","static.gpc.status.overridden":"\xDCberschrieben","static.gpc.title":"Globale Datenschutzkontrolle erkannt","static.other.cookies":"Cookies","static.other.back":"Zur\xFCck","static.other.vendors":"Anbieter","static.other.retention":"Aufbewahrungsdauer","static.other.description":"Beschreibung"},Na={"static.gpc":"\u039A\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5","static.gpc.description":"\u0397 \u03C0\u03C1\u03BF\u03C4\u03AF\u03BC\u03B7\u03C3\u03AE \u03C3\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5 \u03AD\u03C7\u03B5\u03B9 \u03C4\u03B7\u03C1\u03B7\u03B8\u03B5\u03AF. \u0388\u03C7\u03B5\u03C4\u03B5 \u03B5\u03BE\u03B1\u03B9\u03C1\u03B5\u03B8\u03B5\u03AF \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03B1\u03C0\u03CC \u03C0\u03B5\u03C1\u03B9\u03C0\u03C4\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C3\u03C5\u03BC\u03BC\u03BF\u03C1\u03C6\u03CE\u03BD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03BF\u03BD \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5.","static.gpc.status.applied":"\u0395\u03C6\u03B1\u03C1\u03BC\u03CC\u03C3\u03C4\u03B7\u03BA\u03B5","static.gpc.status.overridden":"\u03A0\u03B1\u03C1\u03B1\u03BA\u03AC\u03BC\u03C6\u03B8\u03B7\u03BA\u03B5","static.gpc.title":"\u0395\u03BD\u03C4\u03BF\u03C0\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03BF \u03BA\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03CC\u03C2 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5","static.other.cookies":"Cookies","static.other.back":"\u03A0\u03AF\u03C3\u03C9","static.other.vendors":"\u03A0\u03C1\u03BF\u03BC\u03B7\u03B8\u03B5\u03C5\u03C4\u03AD\u03C2","static.other.retention":"\u0394\u03B9\u03B1\u03C4\u03AE\u03C1\u03B7\u03C3\u03B7","static.other.description":"\u03A0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE"},Aa={"static.gpc":"Global Privacy Control","static.gpc.description":"Your global privacy control preference has been honored. You have been automatically opted out of data use cases which adhere to global privacy control.","static.gpc.status.applied":"Applied","static.gpc.status.overridden":"Overridden","static.gpc.title":"Global Privacy Control detected","static.other.cookies":"Cookies","static.other.back":"Back","static.other.vendors":"Vendors","static.other.retention":"Retention","static.other.description":"Description"},Ta={"static.gpc":"Control de privacidad global","static.gpc.description":"Su preferencia de control de privacidad global se ha respetado. Se le ha excluido autom\xE1ticamente de los casos de uso de datos que se adhieren al control de privacidad global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidad global detectado","static.other.cookies":"Cookies","static.other.back":"Atr\xE1s","static.other.vendors":"Proveedores","static.other.retention":"Conservaci\xF3n","static.other.description":"Descripci\xF3n"},Sa={"static.gpc":"Control de privacidad global","static.gpc.description":"Su preferencia de control de privacidad global se ha respetado. Se le excluy\xF3 autom\xE1ticamente de los casos de uso de datos que se adhieren al control de privacidad global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Control de privacidad global detectado","static.other.cookies":"Cookies","static.other.back":"Atr\xE1s","static.other.vendors":"Proveedores","static.other.retention":"Retenci\xF3n","static.other.description":"Descripci\xF3n"},La={"static.gpc":"\xDCldine andmekaitsekontroll","static.gpc.description":"Teie \xFCldist andmekaitse-eelistust on arvestatud. Teid on automaatselt v\xE4lja arvatud andmete kasutamise juhtudest, mis j\xE4rgivad \xFCldist andmekaitsekontrolli.","static.gpc.status.applied":"Rakendatud","static.gpc.status.overridden":"T\xFChistatud","static.gpc.title":"Tuvastati globaalne privaatsuskontroll","static.other.cookies":"K\xFCpsised","static.other.back":"Tagasi","static.other.vendors":"Kaupmehed","static.other.retention":"S\xE4ilitamine","static.other.description":"Kirjeldus"},Ia={"static.gpc":"Pribatutasun-kontrol globala","static.gpc.description":"Pribatutasun-kontrol globalaren lehentasuna bete da. Pribatutasun-kontrol globalari atxikitzen zaizkion datuen erabileren kasuetatik automatikoki baztertua izan zara.","static.gpc.status.applied":"Ezarrita","static.gpc.status.overridden":"Baliogabetuta","static.gpc.title":"Pribatutasun-kontrol globala atzeman da","static.other.cookies":"Cookieak","static.other.back":"Atzera","static.other.vendors":"Hornitzaileak","static.other.retention":"Atxikipena","static.other.description":"Deskripzioa"},$a={"static.gpc":"Maailmanlaajunen tietosuojavalvonta","static.gpc.description":"Maailmanlaajuinen tietosuojavalvontanne on vahvistettu. Teid\xE4t on automaattisesti poistettu tietojen k\xE4ytt\xF6tapauksista, jotka noudattavat maailmanlaajuista tietosuojavalvontaa.","static.gpc.status.applied":"K\xE4yt\xF6ss\xE4","static.gpc.status.overridden":"Ohitettu","static.gpc.title":"Yleinen tietosuoja-asetus havaittu","static.other.cookies":"Ev\xE4steet","static.other.back":"Takaisin","static.other.vendors":"Toimittajat","static.other.retention":"S\xE4ilytt\xE4minen","static.other.description":"Kuvaus"},Fa={"static.gpc":"Global Privacy Control","static.gpc.description":"Votre pr\xE9f\xE9rence en mati\xE8re de contr\xF4le global de la confidentialit\xE9 (GPC) a \xE9t\xE9 respect\xE9e. Vous avez automatiquement \xE9t\xE9 retir\xE9 des cas d\u2019usage des donn\xE9es qui adh\xE8rent au GPC.","static.gpc.status.applied":"Appliqu\xE9","static.gpc.status.overridden":"Ignor\xE9","static.gpc.title":"Contr\xF4le global de la confidentialit\xE9 d\xE9tect\xE9","static.other.cookies":"Cookies","static.other.back":"Retour","static.other.vendors":"Fournisseurs","static.other.retention":"R\xE9tention","static.other.description":"Description"},ja={"static.gpc":"Contr\xF4le mondial de confidentialit\xE9","static.gpc.description":"Votre pr\xE9f\xE9rence en mati\xE8re de contr\xF4le mondial de confidentialit\xE9 a \xE9t\xE9 honor\xE9e. Vous avez \xE9t\xE9 automatiquement \xE9cart\xE9 des cas d'utilisation de donn\xE9es qui adh\xE8rent au contr\xF4le mondial de confidentialit\xE9.","static.gpc.status.applied":"Appliqu\xE9","static.gpc.status.overridden":"Annul\xE9","static.gpc.title":"Contr\xF4le de la confidentialit\xE9 global d\xE9tect\xE9","static.other.cookies":"T\xE9moins","static.other.back":"Retour","static.other.vendors":"Fournisseurs","static.other.retention":"R\xE9tention","static.other.description":"Description"},Da={"static.gpc":"Control de privacidade global","static.gpc.description":"Respetouse a s\xFAa preferencia de control de privacidade global. Foi automaticamente exclu\xEDdo dos casos de uso de datos que cumpren o control de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Detectouse un control de privacidade global","static.other.cookies":"Cookies","static.other.back":"Atr\xE1s","static.other.vendors":"Provedores","static.other.retention":"Retenci\xF3n","static.other.description":"Descrici\xF3n"},Ra={"static.gpc":"\u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923","static.gpc.description":"\u0906\u092A\u0915\u0940 \u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0935\u0930\u0940\u092F\u0924\u093E\u0913\u0902 \u0915\u093E \u0938\u092E\u094D\u092E\u093E\u0928 \u0915\u093F\u092F\u093E \u0917\u092F\u093E\u0964 \u0906\u092A\u0915\u094B \u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0915\u093E \u092A\u093E\u0932\u0928 \u0915\u0930\u0928\u0947 \u0935\u093E\u0932\u0947 \u0921\u0947\u091F\u093E \u0909\u092A\u092F\u094B\u0917 \u092E\u093E\u092E\u0932\u094B\u0902 \u0938\u0947 \u0938\u094D\u0935\u091A\u093E\u0932\u093F\u0924 \u0930\u0942\u092A \u0938\u0947 \u092C\u093E\u0939\u0930 \u0915\u0930 \u0926\u093F\u092F\u093E \u0917\u092F\u093E \u0939\u0948\u0964","static.gpc.status.applied":"\u0932\u093E\u0917\u0942 \u0915\u093F\u092F\u093E","static.gpc.status.overridden":"\u0913\u0935\u0930\u0930\u093E\u0907\u0921 \u0915\u093F\u092F\u093E","static.gpc.title":"\u0935\u0948\u0936\u094D\u0935\u093F\u0915 \u0917\u094B\u092A\u0928\u0940\u092F\u0924\u093E \u0928\u093F\u092F\u0902\u0924\u094D\u0930\u0923 \u0915\u093E \u092A\u0924\u093E \u091A\u0932\u093E","static.other.cookies":"\u0915\u0941\u0915\u0940\u091C\u093C","static.other.back":"\u0935\u093E\u092A\u0938","static.other.vendors":"\u0935\u0947\u0902\u0921\u0930\u094D\u0938","static.other.retention":"\u0930\u093F\u091F\u0947\u0902\u0936\u0928","static.other.description":"\u0935\u093F\u0935\u0930\u0923"},za={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Po\u0161tuju se va\u0161e preferencije globalne kontrole privatnosti. Automatski se isklju\u010Deni iz slu\u010Dajeve kori\u0161tenja podataka koji se pridr\u017Eavaju globalne kontrole privatnosti.","static.gpc.status.applied":"Primijenjeno","static.gpc.status.overridden":"Premo\u0161\u0107eno","static.gpc.title":"Otkrivena je globalna kontrola privatnosti","static.other.cookies":"Kola\u010Di\u0107i","static.other.back":"Natrag","static.other.vendors":"Uslu\u017Ene tvrtke","static.other.retention":"Zadr\u017Eavanje","static.other.description":"Opis"},Ma={"static.gpc":"Glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1s","static.gpc.description":"A glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1ssal kapcsolatos be\xE1ll\xEDt\xE1sai el lettek fogadva. Automatikusan kiker\xFClt azokb\xF3l az adatfelhaszn\xE1l\xE1si esetekb\u0151l, amelyek a glob\xE1lis adatv\xE9delmi szab\xE1lyoz\xE1shoz tartoznak.","static.gpc.status.applied":"Alkalmazva","static.gpc.status.overridden":"Fel\xFCl\xEDrva","static.gpc.title":"Glob\xE1lis adatv\xE9delmi ellen\u0151rz\xE9s \xE9szlelve","static.other.cookies":"S\xFCtik","static.other.back":"Vissza","static.other.vendors":"\xC9rt\xE9kes\xEDt\u0151k","static.other.retention":"Meg\u0151rz\xE9s","static.other.description":"Le\xEDr\xE1s"},Ua={"static.gpc":"Controllo Globale della Privacy","static.gpc.description":"Le tue preferenze del Controllo Globale della Privacy sono state prese in carico. Sei stato automaticamente escluso dai casi di utilizzo dei dati che corrispondono al Controllo Globale della Privacy.","static.gpc.status.applied":"Applicato","static.gpc.status.overridden":"Non applicato","static.gpc.title":"Rilevato il controllo della privacy globale","static.other.cookies":"Cookie","static.other.back":"Indietro","static.other.vendors":"Fornitori","static.other.retention":"Conservazione","static.other.description":"Descrizione"},Ba={"static.gpc":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB","static.gpc.description":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306E\u8A2D\u5B9A\u306F\u5C0A\u91CD\u3055\u308C\u307E\u3059\u3002\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306B\u5F93\u3046\u30C7\u30FC\u30BF\u306E\u30E6\u30FC\u30B9\u30B1\u30FC\u30B9\u304B\u3089\u306F\u81EA\u52D5\u7684\u306B\u30AA\u30D7\u30C8\u30A2\u30A6\u30C8\u3055\u308C\u3066\u3044\u307E\u3059\u3002","static.gpc.status.applied":"\u9069\u7528","static.gpc.status.overridden":"\u5909\u66F4","static.gpc.title":"\u30B0\u30ED\u30FC\u30D0\u30EB\u30D7\u30E9\u30A4\u30D0\u30B7\u30FC\u7BA1\u7406\u3092\u691C\u51FA\u3057\u307E\u3057\u305F","static.other.cookies":"\u30AF\u30C3\u30AD\u30FC","static.other.back":"\u623B\u308B","static.other.vendors":"\u30D9\u30F3\u30C0\u30FC","static.other.retention":"\u4FDD\u6301\u671F\u9593","static.other.description":"\u8AAC\u660E"},Va={"static.gpc":"Visuotin\u0117 privatumo kontrol\u0117","static.gpc.description":"Buvo atsi\u017Evelgta \u012F j\u016Bs\u0173 visuotin\u0117s privatumo kontrol\u0117s pageidavim\u0105. Buvote automati\u0161kai at\u0161auktas i\u0161 duomen\u0173 naudojimo atvej\u0173, kai laikomasi visuotin\u0117s privatumo kontrol\u0117s.","static.gpc.status.applied":"Taikoma","static.gpc.status.overridden":"Nebegaliojantis","static.gpc.title":"Aptiktas visuotinis privatumo valdymas","static.other.cookies":"Slapukai","static.other.back":"Atgal","static.other.vendors":"Pardav\u0117jai","static.other.retention":"Saugojimas","static.other.description":"Apra\u0161ymas"},Ga={"static.gpc":"Glob\u0101l\u0101 priv\u0101tuma kontrole","static.gpc.description":"M\u0113s esam izpild\u012Bju\u0161i j\u016Bsu pras\u012Bbu kontrol\u0113t glob\u0101lo priv\u0101tumu. P\u0113c noklus\u0113juma esat no\u0146emts no datu lietojuma pieteikumiem, kas atbilst glob\u0101lajai priv\u0101tuma kontrolei.","static.gpc.status.applied":"Pielietots","static.gpc.status.overridden":"Ignor\u0113ts","static.gpc.title":"Konstat\u0113ta glob\u0101l\u0101 priv\u0101tuma kontrole","static.other.cookies":"S\u012Bkdatnes","static.other.back":"Atpaka\u013C","static.other.vendors":"Pre\u010Du p\u0101rdev\u0113ji/pakalpojumu sniedz\u0113ji","static.other.retention":"Ietur\u0113\u0161ana","static.other.description":"Apraksts"},Ha={"static.gpc":"Kontroll Globali tal-Privatezza","static.gpc.description":"Il-preferenza globali tieg\u0127ek g\u0127all-kontroll tal-privatezza \u0121iet onorata. Inti awtomatikament g\u0127a\u017Cilt li ma tibqax tu\u017Ca d-dejta f'ka\u017Cijiet li jirrispettaw il-kontroll globali tal-privatezza.","static.gpc.status.applied":"Applikat","static.gpc.status.overridden":"Maqbu\u017Ca","static.gpc.title":"Kontroll Globali tal-Privatezza misjub","static.other.cookies":"Cookies","static.other.back":"Lura","static.other.vendors":"Bejjieg\u0127a","static.other.retention":"Ritenzjoni","static.other.description":"Deskrizzjoni"},Ka={"static.gpc":"Global Privacy Control","static.gpc.description":"Uw Global Privacy Control-voorkeur wordt gerespecteerd. U bent automatisch afgemeld voor gegevensgebruiksscenario's die zich houden aan Global Privacy Control.","static.gpc.status.applied":"Toegepast","static.gpc.status.overridden":"Genegeerd","static.gpc.title":"Globale privacyinstelling gedetecteerd","static.other.cookies":"Cookies","static.other.back":"Terug","static.other.vendors":"Leveranciers","static.other.retention":"Bewaartermijn","static.other.description":"Beschrijving"},Ya={"static.gpc":"Globale personverninnstillinger","static.gpc.description":"Preferansene dine vedr\xF8rende de globale personverninnstilingene dine er godtatt. Du har automatisk takket nei til databruksaker som f\xF8lger globale personverninnstillinger.","static.gpc.status.applied":"Anvendt","static.gpc.status.overridden":"Overstyrt","static.gpc.title":"Global personvernkontroll oppdaget","static.other.cookies":"Informasjonskapsler","static.other.back":"Tilbake","static.other.vendors":"Leverand\xF8rer","static.other.retention":"Oppbevaring","static.other.description":"Beskrivelse"},Wa={"static.gpc":"Og\xF3lna kontrola prywatno\u015Bci","static.gpc.description":"Twoja preferencja dotycz\u0105ca og\xF3lnej kontroli prywatno\u015Bci zosta\u0142a uwzgl\u0119dniona. Automatycznie odm\xF3wiono zgody na Twoje przypadki wykorzystania danych, kt\xF3re s\u0105 zgodne z Og\xF3ln\u0105 kontrol\u0105 prywatno\u015Bci.","static.gpc.status.applied":"Zastosowano","static.gpc.status.overridden":"Nadpisano","static.gpc.title":"Wykryto globaln\u0105 kontrol\u0119 prywatno\u015Bci","static.other.cookies":"Pliki cookie","static.other.back":"Wstecz","static.other.vendors":"Dostawcy","static.other.retention":"Przechowywanie","static.other.description":"Opis"},qa={"static.gpc":"Controle de Privacidade Global","static.gpc.description":"Sua prefer\xEAncia global de controle de privacidade foi respeitada. Voc\xEA foi automaticamente removido dos casos de uso de dados que aderem ao controle de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Controle de Privacidade Global detectado","static.other.cookies":"Cookies","static.other.back":"Voltar","static.other.vendors":"Fornecedores","static.other.retention":"Reten\xE7\xE3o","static.other.description":"Descri\xE7\xE3o"},Za={"static.gpc":"Controlo de Privacidade Global","static.gpc.description":"A sua prefer\xEAncia de controlo de privacidade global foi honrada. Foi automaticamente exclu\xEDdo/a dos casos de utiliza\xE7\xE3o de dados que aderem ao controlo de privacidade global.","static.gpc.status.applied":"Aplicado","static.gpc.status.overridden":"Anulado","static.gpc.title":"Controlo de Privacidade Global detetado","static.other.cookies":"Cookies","static.other.back":"Voltar","static.other.vendors":"Fornecedores","static.other.retention":"Reten\xE7\xE3o","static.other.description":"Descri\xE7\xE3o"},Xa={"static.gpc":"Control global al confiden\u021Bialit\u0103\u021Bii","static.gpc.description":"Preferin\u021Ba dvs. de control global al confiden\u021Bialit\u0103\u021Bii a fost onorat\u0103. A\u021Bi fost exclus(\u0103) automat de la cazurile de utilizare a datelor care respect\u0103 controlul global al confiden\u021Bialit\u0103\u021Bii.","static.gpc.status.applied":"Aplicat","static.gpc.status.overridden":"Suprascris","static.gpc.title":"S-a detectat controlul global al confiden\u021Bialit\u0103\u021Bii","static.other.cookies":"Cookie-uri","static.other.back":"\xCEnapoi","static.other.vendors":"Furnizori","static.other.retention":"P\u0103strare","static.other.description":"Descriere"},Ja={"static.gpc":"Global Privacy Control","static.gpc.description":"\u0412\u0430\u0448\u0430 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0430 Global Privacy Control \u0443\u0447\u0442\u0435\u043D\u0430. \u0412\u044B \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438 \u0438\u0441\u043A\u043B\u044E\u0447\u0430\u0435\u0442\u0435\u0441\u044C \u0432 \u0441\u0446\u0435\u043D\u0430\u0440\u0438\u044F\u0445, \u0433\u0434\u0435 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u0442\u0441\u044F Global Privacy Control.","static.gpc.status.applied":"\u041F\u0440\u0438\u043C\u0435\u043D\u0435\u043D\u043E","static.gpc.status.overridden":"\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u043E","static.gpc.title":"\u041E\u0431\u043D\u0430\u0440\u0443\u0436\u0435\u043D\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0430\u044F \u0441\u0438\u0441\u0442\u0435\u043C\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044F \u043A\u043E\u043D\u0444\u0438\u0434\u0435\u043D\u0446\u0438\u0430\u043B\u044C\u043D\u043E\u0441\u0442\u0438","static.other.cookies":"\u0424\u0430\u0439\u043B\u044B cookie","static.other.back":"\u041D\u0430\u0437\u0430\u0434","static.other.vendors":"\u041F\u043E\u0441\u0442\u0430\u0432\u0449\u0438\u043A\u0438 \u0443\u0441\u043B\u0443\u0433","static.other.retention":"\u0425\u0440\u0430\u043D\u0435\u043D\u0438\u0435","static.other.description":"\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435"},Qa={"static.gpc":"Glob\xE1lna kontrola s\xFAkromia","static.gpc.description":"Va\u0161a predvo\u013Eba pre glob\xE1lnu kontrolu s\xFAkromia bola dodr\u017Ean\xE1. Pre pr\xEDpady pou\u017Eitia, kde sa pou\u017E\xEDva glob\xE1lna kontrola s\xFAkromia, v\xE1m bol automaticky nastaven\xFD explicitn\xFD nes\xFAhlas.","static.gpc.status.applied":"Pou\u017Eit\xE1","static.gpc.status.overridden":"Prep\xEDsan\xE1","static.gpc.title":"Zistila sa glob\xE1lna kontrola ochrany osobn\xFDch \xFAdajov","static.other.cookies":"S\xFAbory cookie","static.other.back":"Sp\xE4\u0165","static.other.vendors":"Dod\xE1vatelia","static.other.retention":"Uchov\xE1vanie","static.other.description":"Popis"},es={"static.gpc":"Global Privacy Control","static.gpc.description":"Va\u0161a nastavitev globalnega nadzora zasebnosti je bila upo\u0161tevana. Samodejno je bilo preklicano va\u0161e soglasje za tiste primere uporabe podatkov, ki se ravnajo po globalnem nadzoru zasebnosti.","static.gpc.status.applied":"Uporabljeno","static.gpc.status.overridden":"Pregla\u0161eno","static.gpc.title":"Zaznan je globalni nadzor nad zasebnostjo","static.other.cookies":"Pi\u0161kotki","static.other.back":"Nazaj","static.other.vendors":"Partnerji","static.other.retention":"Hramba","static.other.description":"Opis"},ts={"static.gpc":"Global Privacy Control","static.gpc.description":"\u0412\u0430\u0448\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0435 \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438 \u0458\u0435 \u043F\u043E\u0434\u0435\u0448\u0435\u043D\u0430. \u0410\u0443\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u0441\u0442\u0435 \u0438\u0441\u043A\u0459\u0443\u0447\u0435\u043D\u0438 \u0438\u0437 \u0441\u043B\u0443\u0447\u0430\u0458\u0435\u0432\u0430 \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u0435 \u043F\u043E\u0434\u0430\u0442\u0430\u043A\u0430 \u043A\u043E\u0458\u0438 \u0441\u0443 \u0443 \u0441\u043A\u043B\u0430\u0434\u0443 \u0441\u0430 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u043E\u043C \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043E\u043C \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438.","static.gpc.status.applied":"\u041F\u0440\u0438\u043C\u0435\u045A\u0435\u043D\u0430","static.gpc.status.overridden":"\u0417\u0430\u043C\u0435\u045A\u0435\u043D\u0430","static.gpc.title":"\u041E\u0442\u043A\u0440\u0438\u0432\u0435\u043D\u0430 \u0458\u0435 \u0433\u043B\u043E\u0431\u0430\u043B\u043D\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0430 \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0441\u0442\u0438","static.other.cookies":"\u041A\u043E\u043B\u0430\u0447\u0438\u045B\u0438","static.other.back":"\u041D\u0430\u0437\u0430\u0434","static.other.vendors":"\u0414\u043E\u0431\u0430\u0432\u0459\u0430\u0447\u0438","static.other.retention":"\u0417\u0430\u0434\u0440\u0436\u0430\u0432\u0430\u045A\u0435","static.other.description":"\u041E\u043F\u0438\u0441"},is={"static.gpc":"Globalna kontrola privatnosti","static.gpc.description":"Va\u0161a globalna postavka kontrole privatnosti se po\u0161tuje. Automatski ste isklju\u010Deni iz slu\u010Dajeva kori\u0161c\u0301enja podataka koji podle\u017Eu globalnoj kontroli privatnosti.","static.gpc.status.applied":"Primenjeno","static.gpc.status.overridden":"Zaobi\u0111eno","static.gpc.title":"Otkrivena je globalna kontrola privatnosti","static.other.cookies":"Kola\u010Di\u0107i","static.other.back":"Nazad","static.other.vendors":"Dobavlja\u010Di","static.other.retention":"Zadr\u017Eavanje","static.other.description":"Opis"},os={"static.gpc":"Global integritetskontroll","static.gpc.description":"Dina preferenser f\xF6r global integritetskontroll har efterf\xF6ljts. Du har automatiskt valt bort anv\xE4ndningsfall f\xF6r uppgifter som efterf\xF6ljer global integritetskontroll.","static.gpc.status.applied":"Till\xE4mpad","static.gpc.status.overridden":"\xC5sidosatt","static.gpc.title":"Global sekretesskontroll uppt\xE4cktes","static.other.cookies":"Cookies","static.other.back":"Tillbaka","static.other.vendors":"Leverant\xF6rer","static.other.retention":"Lagring","static.other.description":"Beskrivning"},ns={"static.gpc":"Global Gizlilik Kontrol\xFC","static.gpc.description":"Global gizlilik kontrol\xFC tercihiniz yerine getirildi. Global gizlilik kontrol\xFCne uygun veri kullan\u0131m durumlar\u0131ndan otomatik olarak \xE7\u0131kar\u0131ld\u0131n\u0131z.","static.gpc.status.applied":"Uyguland\u0131","static.gpc.status.overridden":"Ge\xE7ersiz k\u0131l\u0131nd\u0131","static.gpc.title":"Genel Gizlilik Kontrol\xFC alg\u0131land\u0131","static.other.cookies":"\xC7erezler","static.other.back":"Geri","static.other.vendors":"Sat\u0131c\u0131lar","static.other.retention":"Tutma","static.other.description":"A\xE7\u0131klama"},rs={"static.gpc":"\u0413\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456","static.gpc.description":"\u0412\u0430\u0448\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456 \u0432\u0440\u0430\u0445\u043E\u0432\u0430\u043D\u043E. \u0412\u0430\u0441 \u0431\u0443\u043B\u043E \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0432\u0438\u043A\u043B\u044E\u0447\u0435\u043D\u043E \u0437 \u0432\u0438\u043F\u0430\u0434\u043A\u0456\u0432 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u0445, \u044F\u043A\u0456 \u0434\u043E\u0442\u0440\u0438\u043C\u0443\u044E\u0442\u044C\u0441\u044F \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u044C \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456.","static.gpc.status.applied":"\u0417\u0430\u0441\u0442\u043E\u0441\u043E\u0432\u0430\u043D\u043E","static.gpc.status.overridden":"\u041F\u0435\u0440\u0435\u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u043E","static.gpc.title":"\u0412\u0438\u044F\u0432\u043B\u0435\u043D\u043E \u0433\u043B\u043E\u0431\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456","static.other.cookies":"\u0424\u0430\u0439\u043B\u0438 cookie","static.other.back":"\u041D\u0430\u0437\u0430\u0434","static.other.vendors":"\u041F\u043E\u0441\u0442\u0430\u0447\u0430\u043B\u044C\u043D\u0438\u043A\u0438","static.other.retention":"\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u043D\u043D\u044F","static.other.description":"\u041E\u043F\u0438\u0441"},as={"static.gpc":"\u5168\u5C40\u9690\u79C1\u63A7\u5236","static.gpc.description":"\u60A8\u7684\u5168\u5C40\u9690\u79C1\u63A7\u5236\u504F\u597D\u5DF2\u5F97\u5230\u5C0A\u91CD\u3002\u60A8\u5DF2\u81EA\u52A8\u9009\u62E9\u9000\u51FA\u7B26\u5408\u5168\u5C40\u9690\u79C1\u63A7\u5236\u7684\u6570\u636E\u4F7F\u7528\u6848\u4F8B\u3002","static.gpc.status.applied":"\u5DF2\u5E94\u7528","static.gpc.status.overridden":"\u88AB\u8986\u76D6","static.gpc.title":"\u68C0\u6D4B\u5230\u5168\u5C40\u9690\u79C1\u63A7\u5236","static.other.cookies":"Cookie","static.other.back":"\u8FD4\u56DE","static.other.vendors":"\u4F9B\u5E94\u5546","static.other.retention":"\u4FDD\u7559\u671F","static.other.description":"\u63CF\u8FF0"},ss={"static.gpc":"\u5168\u57DF\u96B1\u79C1\u63A7\u5236","static.gpc.description":"\u60A8\u7684\u5168\u57DF\u96B1\u79C1\u63A7\u5236\u504F\u597D\u5DF2\u88AB\u63A5\u53D7\u3002\u6839\u64DA\u60A8\u7684\u9078\u64C7\xB7\uFF0C\u5DF2\u81EA\u52D5\u5C07\u60A8\u9000\u51FA\u7B26\u5408\u5168\u57DF\u96B1\u79C1\u63A7\u5236\u7684\u8CC7\u6599\u4F7F\u7528\u6848\u4F8B\u3002","static.gpc.status.applied":"\u5DF2\u61C9\u7528","static.gpc.status.overridden":"\u5DF2\u8986\u5BEB","static.gpc.title":"\u6AA2\u6E2C\u5230\u5168\u5C40\u96B1\u79C1\u63A7\u5236","static.other.cookies":"Cookie","static.other.back":"\u8FD4\u56DE","static.other.vendors":"\u4F9B\u61C9\u5546","static.other.retention":"\u4FDD\u7559\u671F","static.other.description":"\u63CF\u8FF0"};const Ht={ar:wa,bg:ka,bs:Ea,ca:Oa,cs:Ca,da:Pa,de:xa,el:Na,en:Aa,es:Ta,"es-MX":Sa,et:La,eu:Ia,fi:$a,fr:Fa,"fr-CA":ja,gl:Da,"hi-IN":Ra,hr:za,hu:Ma,it:Ua,ja:Ba,lt:Va,lv:Ga,mt:Ha,nl:Ka,no:Ya,pl:Wa,"pt-BR":qa,"pt-PT":Za,ro:Xa,ru:Ja,sk:Qa,sl:es,"sr-Cyrl":ts,"sr-Latn":is,sv:os,tr:ns,uk:rs,zh:as,"zh-Hant":ss},ls=[{locale:"ar",label_en:"Arabic",label_original:"\u0627\u0644\u0639\u064E\u0631\u064E\u0628\u0650\u064A\u064E\u0651\u0629"},{locale:"bg",label_en:"Bulgarian",label_original:"\u0431\u044A\u043B\u0433\u0430\u0440\u0441\u043A\u0438 \u0435\u0437\u0438\u043A"},{locale:"bs",label_en:"Bosnian",label_original:"Bosanski Jezik"},{locale:"ca",label_en:"Catalan",label_original:"catal\xE0"},{locale:"cs",label_en:"Czech",label_original:"\u010Desk\xFD jazyk"},{locale:"da",label_en:"Danish",label_original:"Dansk"},{locale:"de",label_en:"German",label_original:"Deutsch"},{locale:"el",label_en:"Greek",label_original:"\u03B5\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC"},{locale:"en",label_en:"English",label_original:"English"},{locale:"es",label_en:"Spanish",label_original:"Espa\xF1ol"},{locale:"es-MX",label_en:"Spanish (Mexico)",label_original:"Espa\xF1ol - MX"},{locale:"et",label_en:"Estonian",label_original:"Eesti"},{locale:"eu",label_en:"Basque",label_original:"euskara"},{locale:"fi",label_en:"Finnish",label_original:"Suomi"},{locale:"fr",label_en:"French",label_original:"Fran\xE7ais"},{locale:"fr-CA",label_en:"French (Canada)",label_original:"Fran\xE7ais - CA"},{locale:"gl",label_en:"Galician",label_original:"Galego"},{locale:"hi-IN",label_en:"Hindi (India)",label_original:"\u0939\u093F\u0928\u094D\u0926\u0940"},{locale:"hr",label_en:"Croatian",label_original:"Hrvatski Jezik"},{locale:"hu",label_en:"Hungarian",label_original:"magyar"},{locale:"it",label_en:"Italian",label_original:"Italiano"},{locale:"ja",label_en:"Japanese",label_original:"\u65E5\u672C\u8A9E"},{locale:"lt",label_en:"Lithuanian",label_original:"lietuvi\u0173 kalba"},{locale:"lv",label_en:"Latvian",label_original:"latvie\u0161u valoda"},{locale:"mt",label_en:"Maltese",label_original:"Malti"},{locale:"nl",label_en:"Dutch",label_original:"Nederlands"},{locale:"no",label_en:"Norwegian",label_original:"Norsk"},{locale:"pl",label_en:"Polish",label_original:"Polski"},{locale:"pt-BR",label_en:"Portuguese (Brazil)",label_original:"Portugu\xEAs - BR"},{locale:"pt-PT",label_en:"Portuguese (Portugal)",label_original:"Portugu\xEAs - PT"},{locale:"ro",label_en:"Romanian",label_original:"limba rom\xE2n\u0103"},{locale:"ru",label_en:"Russian",label_original:"\u0440\u0443\u0441\u0441\u043A\u0438\u0439 \u044F\u0437\u044B\u043A"},{locale:"sk",label_en:"Slovak",label_original:"sloven\u010Dina"},{locale:"sl",label_en:"Slovenian",label_original:"Slovenski Jezik"},{locale:"sr-Cyrl",label_en:"Serbian (Cyrillic)",label_original:"\u0441\u0440\u043F\u0441\u043A\u0438"},{locale:"sr-Latn",label_en:"Serbian (Latin)",label_original:"Srpski"},{locale:"sv",label_en:"Swedish",label_original:"Sverige"},{locale:"tr",label_en:"Turkish",label_original:"T\xFCrk\xE7e"},{locale:"uk",label_en:"Ukrainian",label_original:"\u0443\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 \u043C\u043E\u0432\u0430"},{locale:"zh",label_en:"Chinese (Simplified)",label_original:"\u7B80\u4F53\u4E2D\u6587"},{locale:"zh-Hant",label_en:"Chinese (Traditional)",label_original:"\u7E41\u9AD4\u4E2D\u6587"}];var cs=Object.defineProperty,co=Object.getOwnPropertySymbols,ds=Object.prototype.hasOwnProperty,us=Object.prototype.propertyIsEnumerable,uo=(e,t,i)=>t in e?cs(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,ne=(e,t)=>{for(var i in t||(t={}))ds.call(t,i)&&uo(e,i,t[i]);if(co)for(var i of co(t))us.call(t,i)&&uo(e,i,t[i]);return e};function re(e,t){return e.toLowerCase().replaceAll("_","-")===t.toLowerCase().replaceAll("_","-")}function fs(e,t){const i={},o=["accept_button_label","acknowledge_button_label","banner_description","banner_title","description","purpose_header","privacy_policy_link_label","privacy_policy_url","privacy_preferences_link_label","reject_button_label","save_button_label","title","modal_link_label"];if(e.translations)e.translations.forEach(n=>{const r=n.language;let s=!1;t?.override_language&&(s=re(t.override_language,r));const l={};o.forEach(a=>{let c=null;t&&(s||a==="privacy_policy_url")&&(c=a in t?t[a]:null);const _=n[a];typeof _=="string"&&(l[`exp.${a}`]=c||_)}),i[r]=ne(ne({},l),i[r])});else{const n=X,r={};o.forEach(s=>{const l=e[s];typeof l=="string"&&(r[`exp.${s}`]=l)}),i[n]=ne(ne({},r),i[n])}return i}function Kt(e){var t;if((t=e?.experience_config)!=null&&t.translations){const{translations:i}=e.experience_config,o=i.find(n=>n.is_default);return o?.language}}function fo(e,t){const i={};return t.forEach(o=>{const n=Object.keys(e).find(r=>re(r,o));if(n){const r=e[n],s={};["purposes","specialPurposes","features","specialFeatures","stacks","dataCategories"].forEach(a=>{const c=r[a]||{};Object.keys(c).forEach(u=>{const d=c[u],_=`exp.tcf.${a}.${u}`;s[`${_}.name`]=d.name,s[`${_}.description`]=d.description,d.illustrations&&d.illustrations.length>0&&d.illustrations.forEach((v,g)=>{s[`${_}.illustrations.${g}`]=v})})}),i[o]=ne(ne({},s),i[o])}}),i}function po(e){return Object.keys(Ht).forEach(t=>{e.load(t,Ht[t])}),Object.keys(Ht)}function vo(e,t,i){var o;const n={},r=(o=t.available_locales)!=null&&o.length?t.available_locales:[X];if(t?.experience_config){const s=t.experience_config,l=fs(s,i);Object.keys(l).forEach(a=>{n[a]=ne(ne({},l[a]),n[a])})}r.forEach(s=>{e.load(s,n[s])})}function _o(e,t){if(!t.gvl)return;const{locale:i}=e,o={};o[i]=t.gvl;const n=fo(o,[i]);e.load(i,n[i])}function go(e,t,i){const o=fo(t,i);i.forEach(n=>{e.load(n,o[n])})}function ho(e){return e.locale}function bo(e,t,i=X){const o=e?.language;return t||o||i}function yo(e,t,i=X){const o=e.match(nt);if(o){const[n,r]=o,s=t.find(a=>re(a,n));if(s)return s;const l=t.find(a=>re(a,r));if(l)return l}return i}function ke(e,t){return e.t(t)!==""&&e.t(t)!==t}function Yt(e,t,i){if(!i||!i.translations)return null;if(e){const n=i.translations.find(r=>re(r.language,e));if(n)return n}const o=i.translations.find(n=>re(n.language,t));return o||i.translations[0]||null}function ft(e,t,i){if(!i||!i.translations)return null;if(e){const n=i.translations.find(r=>re(r.language,e));if(n)return n}const o=i.translations.find(n=>re(n.language,t));return o||i.translations[0]||null}function mo(e,t,i,o,n){var r,s,l,a,c;po(e);const u=(r=i.available_locales)!=null&&r.length?i.available_locales:[X];vo(e,i,n);const d=ls.filter(b=>u.includes(b.locale)),_=d.findIndex(b=>re(b.locale,e.getDefaultLocale()));_>0&&d.unshift(d.splice(_,1)[0]),e.setAvailableLanguages(d);const v=Kt(i)||X;e.setDefaultLocale(v);let g=v;((s=i.experience_config)==null?void 0:s.auto_detect_language)===!1||(g=bo(t,o?.fidesLocale,v));const p=yo(g,u||[],e.getDefaultLocale());if(!!((a=(l=i.experience_config)==null?void 0:l.translations)!=null&&a.find(b=>b.language===p)))e.activate(p);else{const b=ft(p,v,i.experience_config);b?.language,e.activate(b?.language||p)}((c=i.experience_config)==null?void 0:c.component)===G.TCF_OVERLAY&&i.gvl&&_o(e,i)}function Wt(){let e=[],t=X,i=X;const o={};return{setAvailableLanguages(n){e=n},get availableLanguages(){return e},activate:n=>{i=n},getDefaultLocale:()=>t,setDefaultLocale:n=>{t=n},get locale(){return i},load:(n,r)=>{o[n]=ne(ne({},o[n]),r)},t:n=>{if(typeof n>"u")throw new TypeError("Unexpected type for descriptor or id!");let r;if(typeof n=="string")r=n;else if(typeof n=="object"&&n.id)r=n.id;else return"";return i&&i in o&&r&&r in o[i]&&o[i][r]?o[i][r]:r}}}const wo=(e,t,i)=>{var o;let n=ot;if(!e)t.t("exp.modal_link_label")!=="exp.modal_link_label"&&(n=t.t("exp.modal_link_label"));else{const r=t.getDefaultLocale(),s=(o=i?.experience_config)==null?void 0:o.translations.find(l=>l.language===r);s?.modal_link_label&&(n=s.modal_link_label)}return n},ps=Wt();function vs(e){return Array.from(e).length}var _s=Object.defineProperty,gs=Object.defineProperties,hs=Object.getOwnPropertyDescriptors,ko=Object.getOwnPropertySymbols,bs=Object.prototype.hasOwnProperty,ys=Object.prototype.propertyIsEnumerable,Eo=(e,t,i)=>t in e?_s(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Se=(e,t)=>{for(var i in t||(t={}))bs.call(t,i)&&Eo(e,i,t[i]);if(ko)for(var i of ko(t))ys.call(t,i)&&Eo(e,i,t[i]);return e},qt=(e,t)=>gs(e,hs(t)),pt=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())}),Oo=(e=>(e.PRIVACY_EXPERIENCE="/privacy-experience",e.PRIVACY_PREFERENCES="/privacy-preferences",e.GVL_TRANSLATIONS="/privacy-experience/gvl/translations",e.NOTICES_SERVED="/notices-served",e))(Oo||{});function Co(){return{}}const Po=e=>pt(void 0,[e],function*({userLocationString:t,userLanguageString:i,fidesApiUrl:o,apiOptions:n,propertyId:r,requestMinimalTCF:s,missingExperienceHandler:l=Co,excludeNoticeAssetsBySystems:a}){var c,u,d;if(n?.getPrivacyExperienceFn)try{return yield n.getPrivacyExperienceFn(t,null)}catch(b){return l(b)}const _=[["Unescape-Safestr","true"],["Accept-Encoding","gzip, deflate"]];i&&_.push(["Accept-Language",i]);const v={method:"GET",mode:"cors",headers:_};let g;a&&(g=(Array.isArray(a)?[...a]:a.split(",").map(m=>m.trim()).filter(Boolean)).sort((m,k)=>m.localeCompare(k)).join(","));let p=Se(Se(Se({show_disabled:"false",region:t,component:G.OVERLAY,has_config:"true",systems_applicable:"true",exclude_gvl_languages:"true",include_meta:"true",include_gvl:"true",include_non_applicable_notices:"true"},s&&{minimal_tcf:"true"}),r&&{property_id:r}),g&&{exclude_notice_assets_by_systems:g});p=new URLSearchParams(p);let h;try{if(h=yield fetch(`${o}/privacy-experience?${p}`,v),!h.ok)throw new Error("Error fetching experience from Fides API")}catch(b){return l(b)}try{const b=yield h.json();if(((c=b.items)==null?void 0:c.length)<1)return{};const m=b.items&&b.items[0],k=(d=(u=m.experience_config)==null?void 0:u.translations)==null?void 0:d[0].language;return m}catch(b){return l(b)}}),xo=(e,t)=>pt(void 0,null,function*(){const i=new URLSearchParams;t?.forEach(s=>{i.append("language",s)});const o={method:"GET",mode:"cors"};let n;try{n=yield fetch(`${e}/privacy-experience/gvl/translations${vs(i)>0?"?":""}${i.toString()}`,o)}catch{return{}}return n.ok?yield n.json():{}}),No={method:"PATCH",mode:"cors",headers:{"Content-Type":"application/json"}},Ao="Fides.js",To=(e,t,i,o,n)=>pt(void 0,null,function*(){var r;if((r=i.apiOptions)!=null&&r.savePreferencesFn){try{yield i.apiOptions.savePreferencesFn(e,o.consent,o.fides_string,n)}catch(a){return Promise.reject(a)}return Promise.resolve()}const s=qt(Se({},No),{body:JSON.stringify(qt(Se({},t),{source:Ao}))});return(yield fetch(`${i.fidesApiUrl}/privacy-preferences`,s)).ok,Promise.resolve()}),So=e=>pt(void 0,[e],function*({request:t,options:i}){var o;if((o=i.apiOptions)!=null&&o.patchNoticesServedFn)try{return yield i.apiOptions.patchNoticesServedFn(t)}catch{return null}const n=qt(Se({},No),{body:JSON.stringify(t)});try{const r=yield fetch(`${i.fidesApiUrl}/notices-served`,n);return r.ok?yield r.json():null}catch{return null}});var ms=Object.defineProperty,ws=(e,t,i)=>t in e?ms(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,ks=(e,t,i)=>ws(e,t+"",i);class Es{constructor(){ks(this,"servedNoticeHistoryId",null)}getServedNoticeHistoryId(){return this.servedNoticeHistoryId||(this.servedNoticeHistoryId=Ai()),this.servedNoticeHistoryId}reset(){this.servedNoticeHistoryId=null}hasLifecycleId(){return this.servedNoticeHistoryId!==null}}const Lo=new Es;var Os=Object.defineProperty,Cs=Object.defineProperties,Ps=Object.getOwnPropertyDescriptors,Io=Object.getOwnPropertySymbols,xs=Object.prototype.hasOwnProperty,Ns=Object.prototype.propertyIsEnumerable,$o=(e,t,i)=>t in e?Os(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,de=(e,t)=>{for(var i in t||(t={}))xs.call(t,i)&&$o(e,i,t[i]);if(Io)for(var i of Io(t))Ns.call(t,i)&&$o(e,i,t[i]);return e},vt=(e,t)=>Cs(e,Ps(t)),Zt=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const As=[$.SCRIPT,$.GPC,$.EXTERNAL_PROVIDER];function Ts(e,t,i,o,n,r,s,l,a){return Zt(this,null,function*(){const c=(r||[]).map(d=>({preference:d.consentPreference,privacy_notice_history_id:d.noticeHistoryId||""})),u=de({browser_identity:t.identity,preferences:c,privacy_experience_config_history_id:n,user_geography:l,method:o,served_notice_history_id:a,property_id:i.property_id},s??[]);yield To(o,u,e,t,i)})}const Ss=e=>Zt(void 0,[e],function*({consentPreferencesToSave:t,privacyExperienceConfigHistoryId:i,experience:o,consentMethod:n,options:r,userLocationString:s,cookie:l,eventExtraDetails:a,servedNoticeHistoryId:c,tcf:u,updateCookie:d}){var _,v,g,p,h,b,m,k,O;if(!d&&t&&(d=A=>Vi(A,t)),!d&&!t)throw new Error("updateCookie is required");const w=vt(de({},a?.trigger),{origin:((_=a?.trigger)==null?void 0:_.origin)||(As.includes(n)?we.EXTERNAL:we.FIDES)}),x=yield d(l);Object.assign(l,x),Object.assign(l.fides_meta,{consentMethod:n}),ce("FidesUpdating",l,vt(de({},a),{trigger:w}));const U=Ue(l.consent,(g=(v=window.Fides)==null?void 0:v.experience)==null?void 0:g.non_applicable_privacy_notices,(h=(p=window.Fides)==null?void 0:p.experience)==null?void 0:h.privacy_notices,void 0,void 0,l.non_applicable_notice_keys),P=!!((m=(b=window.Fides)==null?void 0:b.experience)!=null&&m.non_applicable_privacy_notices)||!!((O=(k=window.Fides)==null?void 0:k.experience)!=null&&O.privacy_notices);if(window.Fides.consent=Vt(U,r,P),window.Fides.fides_string=l.fides_string,window.Fides.tcf_consent=l.tcf_consent,zi(vt(de({},l),{consent:U}),r.base64Cookie),window.Fides.saved_consent=l.consent,!r.fidesDisableSaveApi)try{yield Ts(r,l,o,n,i,t,u,s,c)}catch{}t&&t.filter(A=>A.consentPreference===Z.OPT_OUT).forEach(A=>{var T,L,I;(T=A.notice)!=null&&T.cookies&&Ui(A.notice.cookies,(L=o.experience_config)==null?void 0:L.cookie_deletion_based_on_host_domain,(I=o.experience_config)==null?void 0:I.auto_subdomain_cookie_deletion)}),ce("FidesUpdated",l,vt(de({},a),{trigger:w}))}),Fo=(e,t,i,o)=>Object.entries(i).reduce((n,[r,s])=>{if(n)return n;const l=t.find(d=>d===r);if(l&&!s&&o!==$.EXTERNAL_PROVIDER)return new Error(`Provided notice key '${r}' is not applicable to the current experience.`);const a=e.find(d=>d.notice_key===r);if(!l&&!a)return new Error(`'${r}' is not a valid notice key`);const u=a?.consent_mechanism===q.NOTICE_ONLY;return u&&s!==!0&&s!==Z.ACKNOWLEDGE&&o!==$.EXTERNAL_PROVIDER?new Error(`Invalid consent value for notice-only notice key: '${r}'. Must be \`true\` or "acknowledge"`):!u&&typeof s!="boolean"&&s!==Z.OPT_IN&&s!==Z.OPT_OUT?new Error(`Invalid consent value for notice key: '${r}'. Must be a boolean or "opt_in" or "opt_out"`):null},null),Xt=(e,t)=>Zt(void 0,null,function*(){var i;const{experience:o,cookie:n,config:r,locale:s}=e;if(!o)throw new Error("Experience must be initialized before updating consent");if(!r)throw new Error("Config is not initialized");if(!n)throw new Error("Cookie is not initialized");if(!t?.noticeConsent&&!t?.fidesString&&!t?.tcf)throw new Error("Either consent object or fidesString must be provided");if(t?.validation&&!Object.values(he).includes(t.validation))throw new Error(`Validation must be one of: ${Object.values(he).join(", ")} (default is ${he.THROW})`);const{noticeConsent:l,fidesString:a,validation:c=he.THROW,consentMethod:u=$.SCRIPT,eventExtraDetails:d={trigger:{origin:we.EXTERNAL}},tcf:_,updateCookie:v}=t,{experience_config:g,privacy_notices:p,non_applicable_privacy_notices:h}=o,b=Kt(o)||X,m=P=>{if(c===he.THROW)throw new Error(P);c===he.WARN&&console.warn(P)};let k=n.consent||{};if(a)try{const P=Gt(a);if(P.nc){const A=ct(P.nc);k=de(de({},n.consent),A);const T=Fo(p||[],h||[],k,u);T&&m(T.message)}}catch(P){const A=P instanceof Error?P.message:String(P);m(`Invalid fidesString provided: ${A}`)}else if(l){const P=Fo(p||[],h||[],l,u);P&&m(P.message),k=de(de({},n.consent),l)}const O=[];Object.entries(k).forEach(([P,A])=>{const T=p?.find(L=>L.notice_key===P);if(T){const L=Yt(s,b,T),I=L?.privacy_notice_history_id;let B;if(typeof A=="boolean"?B=ze(A,T.consent_mechanism):B=A,I){const Y=new Tt(T,B,I);O.push(Y)}}});let w;if((i=g?.translations)!=null&&i.length){const P=ft(s,b,g);w=P?.privacy_experience_config_history_id}const x=at(r.geolocation),U=Lo.getServedNoticeHistoryId();return Ss({consentPreferencesToSave:O,privacyExperienceConfigHistoryId:w,experience:o,consentMethod:u,options:r.options,userLocationString:x,cookie:n,eventExtraDetails:d,servedNoticeHistoryId:U,tcf:_,updateCookie:v})}),Jt=e=>{throw new Error(e)},_t=e=>{typeof window<"u"&&(window.Fides=e)},jo=({cookie:e,experience:t})=>{let i=t;return Rt(e.consent)&&(i=zt({experience:t,cookie:e})),i},Do=({tcfEnabled:e=!1})=>({consent:{},experience:void 0,geolocation:{},locale:X,options:{debug:!0,isOverlayEnabled:!1,isPrefetchEnabled:!1,isGeolocationEnabled:!1,geolocationApiUrl:"",overlayParentId:null,modalLinkId:null,privacyCenterUrl:"",fidesApiUrl:"",tcfEnabled:e,gppEnabled:!1,fidesEmbed:!1,fidesDisableSaveApi:!1,fidesDisableNoticesServedApi:!1,fidesDisableBanner:!1,fidesString:null,apiOptions:null,fidesTcfGdprApplies:e,fidesJsBaseUrl:"",customOptionsPath:null,preventDismissal:!1,allowHTMLDescription:null,base64Cookie:!1,fidesPrimaryColor:null,fidesClearCookie:!1,showFidesBrandLink:!e,fidesConsentOverride:null,otFidesMapping:null,fidesDisabledNotices:null,fidesDisabledSystems:null,fidesConsentNonApplicableFlagMode:null,fidesConsentFlagType:null,fidesInitializedEventMode:"once"},fides_meta:{},identity:{},tcf_consent:{},saved_consent:{},version:"DEV",config:void 0,initialized:!1,onFidesEvent:no,blueconic:va,gtm:_a,meta:ha,shopify:ma,showModal:Bt,getModalLinkLabel:()=>ot,encodeNoticeConsentString:to,decodeNoticeConsentString:ct,reinitialize(){return typeof this.init!="function"?Promise.reject(new Error("Fides.init method is not available")):((!this.config||!this.initialized)&&Jt("Fides must be initialized before reinitializing"),this.init())},shouldShowExperience(){return!(this!=null&&this.experience)||!(this!=null&&this.cookie)||!(this!=null&&this.saved_consent)||!(this!=null&&this.options)?!1:lt(this.experience,this.cookie,this.saved_consent,this.options)},updateConsent(t){const{consent:i,fidesString:o,validation:n}=t;return Xt(this,{noticeConsent:i,fidesString:o,validation:n})}});var Ls=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const Ro=(e,t)=>Ls(void 0,null,function*(){if(!e||!t)return null;const o=yield fetch(t,{mode:"cors"});if(!o.ok)return null;try{return yield o.json()}catch{return null}}),Is=()=>{var e,t,i,o,n,r;if((e=window.Fides)!=null&&e.options.tcfEnabled&&!((t=window.Fides)!=null&&t.options.gppEnabled)&&!((n=(o=(i=window.Fides)==null?void 0:i.experience)==null?void 0:o.privacy_notices)!=null&&n.length))return!1;if(typeof((r=window.navigator)==null?void 0:r.globalPrivacyControl)=="boolean")return window.navigator.globalPrivacyControl;const l=new URL(window.location.href).searchParams.get("globalPrivacyControl");if(l==="true")return!0;if(l==="false")return!1},Le=()=>typeof window>"u"?{}:{globalPrivacyControl:Is()};var $s=Object.defineProperty,zo=Object.getOwnPropertySymbols,Fs=Object.prototype.hasOwnProperty,js=Object.prototype.propertyIsEnumerable,Mo=(e,t,i)=>t in e?$s(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Ds=(e,t)=>{for(var i in t||(t={}))Fs.call(t,i)&&Mo(e,i,t[i]);if(zo)for(var i of zo(t))js.call(t,i)&&Mo(e,i,t[i]);return e},Rs=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const zs=e=>Rs(void 0,null,function*(){var t;const{experience:i,saved_consent:o,options:n}=e;if(!i||!i.experience_config||!((t=i.privacy_notices)!=null&&t.length))return!1;const r=Le(),{nc:s}=Gt(n.fidesString||"");r.globalPrivacyControl;const{consent:l,method:a}=Yi(n),c=!!l&&!!a&&!Ae();if(!r.globalPrivacyControl&&!s&&!c)return!1;let u=!1,d=!1,_=!1;const v=i.privacy_notices.reduce((g,p)=>{const h=Ds({},g),b=le(p.default_preference);h[p.notice_key]=b,o[p.notice_key]&&(h[p.notice_key]=o[p.notice_key]);const m=et(p,o),k=p.consent_mechanism===q.NOTICE_ONLY;if(c&&l){const O=l[p.notice_key];if(O!==void 0)return _=!0,h[p.notice_key]=O,h}if(k)return h;if(s){const w=ct(s)[p.notice_key];if(w!==void 0)return d=!0,h[p.notice_key]=w,h}return r.globalPrivacyControl&&!m&&p.has_gpc_flag&&(u=!0,h[p.notice_key]=!1),h},{});if(u||d||_){let g=$.SCRIPT;return _&&a?g=a:d?g=$.SCRIPT:u&&(g=$.GPC),yield Xt(e,{noticeConsent:v,consentMethod:g}),!0}return!1}),Ms=()=>{document.body.classList.add("fides-no-scroll")},Uo=()=>{document.body.classList.remove("fides-no-scroll")},Us=e=>new DOMParser().parseFromString(e,"text/html").body.textContent||"",Bo=e=>{let t=0,i=200;return new Promise(o=>{const n=r=>{const s=setTimeout(()=>{const l=document.getElementById(e);l?(clearInterval(s),o(l)):(t+=1,t>=5&&i<1e3&&(i+=200),n(i))},r)};n(i)})};var Bs=Object.defineProperty,Vs=Object.defineProperties,Gs=Object.getOwnPropertyDescriptors,Vo=Object.getOwnPropertySymbols,Hs=Object.prototype.hasOwnProperty,Ks=Object.prototype.propertyIsEnumerable,Go=(e,t,i)=>t in e?Bs(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Qt=(e,t)=>{for(var i in t||(t={}))Hs.call(t,i)&&Go(e,i,t[i]);if(Vo)for(var i of Vo(t))Ks.call(t,i)&&Go(e,i,t[i]);return e},Ys=(e,t)=>Vs(e,Gs(t)),Ho=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const Ws=(e,t)=>Ho(void 0,null,function*(){const i=at(e);return i||at(yield Ro(t.isGeolocationEnabled,t.geolocationApiUrl))}),Ko=(e,t)=>{const i={};if(typeof window<"u"){const o=new URLSearchParams(window.location.search),n=t.options.customOptionsPath&&t.options.customOptionsPath.split("."),r=n&&n.length>=0?Qi(n):window.fides_overrides,s=Xi(e);s?.forEach(({overrideName:l,overrideType:a,overrideKey:c,validationRegex:u,transform:d})=>{const _=o.get(c),v=r?r[c]:void 0,g=it(c),p=_||v||g;p&&u.test(p.toString())&&(d?i[l]=d(p.toString()):i[l]=a==="string"?p:JSON.parse(p.toString()))})}return i},qs=({consent:e,options:t})=>{const i=Le(),o=Mi(e,i);return Ri(o,t.fidesClearCookie)},Zs=({cookie:e,savedConsent:t,experience:i,geolocation:o,options:n,updateExperienceFromCookieConsent:r})=>{let s=i;return Te(i)&&(s=r({experience:i,cookie:e,debug:n.debug})),{consent:e.consent,fides_meta:e.fides_meta,identity:e.identity,experience:s,tcf_consent:e.tcf_consent,fides_string:e.fides_string,saved_consent:t,geolocation:o,options:n,initialized:!0}},Xs=e=>Ho(void 0,[e],function*({fides:t,initOverlay:i,renderOverlay:o,updateExperience:n,overrides:r}){var s,l,a,c,u,d,_,v,g;const{config:p}=t;if(!p)throw new Error("Fides config should be initialized");const{options:h,geolocation:b}=p;let m=!0,k,O=()=>ot;if(!t.cookie)throw new Error("Fides cookie should be initialized");if(m=h.isOverlayEnabled,m){Zi(h)||(m=!1),k=yield Ws(b,h);let B=!1;if(k?Te(t.experience)||(B=!0,t.experience=yield Po({userLocationString:k,fidesApiUrl:h.fidesApiUrl,apiOptions:h.apiOptions,requestMinimalTCF:!1,propertyId:(s=t.config)==null?void 0:s.propertyId,excludeNoticeAssetsBySystems:h.fidesDisabledSystems||void 0})):m=!1,m&&Te(t.experience)&&Ji(t.experience)){if(B){const V=n({cookie:t.cookie,experience:t.experience});t.experience=Qt(Qt({},t.experience),V)}(l=t.config)!=null&&l.propertyId&&(t.experience.property_id=t.config.propertyId);const Y=Gi({cookie:t.cookie,experience:t.experience});t.cookie=Y;const z=Wt();if(mo(z,window?.navigator,t.experience,h,r?.experienceTranslationOverrides),t.locale=z.locale||X,O=V=>wo(!!V?.disableLocalization,z,t.experience),((a=t.experience.experience_config)==null?void 0:a.component)===G.HEADLESS){const V=h.modalLinkId||"fides-modal-link";!t.experience||h.fidesEmbed||h.modalLinkId,Bo(V).then(J=>{document.body.classList.add("fides-overlay-modal-link-shown"),J.classList.add("fides-modal-link-shown")}),m=!1}if(i&&m){const V=Ys(Qt({},t),{cookie:t.cookie,config:p,options:h,experience:t.experience,fidesRegionString:k});i({initializedFides:V,i18n:z,renderOverlay:o}).catch(J=>{})}setTimeout(zs.bind(null,t))}}const{fides_meta:x,identity:U,fides_string:P,tcf_consent:A}=t.cookie,T=Ue(t.cookie.consent,(c=t.experience)==null?void 0:c.non_applicable_privacy_notices,(u=t.experience)==null?void 0:u.privacy_notices,(d=h.fidesConsentFlagType)!=null?d:void 0,(_=h.fidesConsentNonApplicableFlagMode)!=null?_:void 0,t.cookie.non_applicable_notice_keys),L=!!((v=t.experience)!=null&&v.non_applicable_privacy_notices)||!!((g=t.experience)!=null&&g.privacy_notices);return{consent:Vt(T,h,L),fides_meta:x,identity:U,fides_string:P,tcf_consent:A,experience:t.experience,geolocation:b,options:h,initialized:!0,getModalLinkLabel:O}});var gt,C,Yo,Ee,Wo,qo,ei,ti,ii,oi,Zo,Ve={},Xo=[],Js=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,ht=Array.isArray;function ye(e,t){for(var i in t)e[i]=t[i];return e}function Jo(e){var t=e.parentNode;t&&t.removeChild(e)}function ni(e,t,i){var o,n,r,s={};for(r in t)r=="key"?o=t[r]:r=="ref"?n=t[r]:s[r]=t[r];if(arguments.length>2&&(s.children=arguments.length>3?gt.call(arguments,2):i),typeof e=="function"&&e.defaultProps!=null)for(r in e.defaultProps)s[r]===void 0&&(s[r]=e.defaultProps[r]);return bt(e,s,o,n,null)}function bt(e,t,i,o,n){var r={type:e,props:t,key:i,ref:o,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:n??++Yo,__i:-1,__u:0};return n==null&&C.vnode!=null&&C.vnode(r),r}function ue(e){return e.children}function fe(e,t){this.props=e,this.context=t}function Oe(e,t){if(t==null)return e.__?Oe(e.__,e.__i+1):null;for(var i;t<e.__k.length;t++)if((i=e.__k[t])!=null&&i.__e!=null)return i.__e;return typeof e.type=="function"?Oe(e):null}function Qo(e){var t,i;if((e=e.__)!=null&&e.__c!=null){for(e.__e=e.__c.base=null,t=0;t<e.__k.length;t++)if((i=e.__k[t])!=null&&i.__e!=null){e.__e=e.__c.base=i.__e;break}return Qo(e)}}function ri(e){(!e.__d&&(e.__d=!0)&&Ee.push(e)&&!yt.__r++||Wo!==C.debounceRendering)&&((Wo=C.debounceRendering)||qo)(yt)}function yt(){var e,t,i,o,n,r,s,l;for(Ee.sort(ei);e=Ee.shift();)e.__d&&(t=Ee.length,o=void 0,r=(n=(i=e).__v).__e,s=[],l=[],i.__P&&((o=ye({},n)).__v=n.__v+1,C.vnode&&C.vnode(o),ai(i.__P,o,n,i.__n,i.__P.namespaceURI,32&n.__u?[r]:null,s,r??Oe(n),!!(32&n.__u),l),o.__v=n.__v,o.__.__k[o.__i]=o,rn(s,o,l),o.__e!=r&&Qo(o)),Ee.length>t&&Ee.sort(ei));yt.__r=0}function en(e,t,i,o,n,r,s,l,a,c,u){var d,_,v,g,p,h=o&&o.__k||Xo,b=t.length;for(i.__d=a,Qs(i,t,h),a=i.__d,d=0;d<b;d++)(v=i.__k[d])!=null&&typeof v!="boolean"&&typeof v!="function"&&(_=v.__i===-1?Ve:h[v.__i]||Ve,v.__i=d,ai(e,v,_,n,r,s,l,a,c,u),g=v.__e,v.ref&&_.ref!=v.ref&&(_.ref&&si(_.ref,null,v),u.push(v.ref,v.__c||g,v)),p==null&&g!=null&&(p=g),65536&v.__u||_.__k===v.__k?(a&&typeof v.type=="string"&&!e.contains(a)&&(a=Oe(_)),a=tn(v,a,e)):typeof v.type=="function"&&v.__d!==void 0?a=v.__d:g&&(a=g.nextSibling),v.__d=void 0,v.__u&=-196609);i.__d=a,i.__e=p}function Qs(e,t,i){var o,n,r,s,l,a=t.length,c=i.length,u=c,d=0;for(e.__k=[],o=0;o<a;o++)s=o+d,(n=e.__k[o]=(n=t[o])==null||typeof n=="boolean"||typeof n=="function"?null:typeof n=="string"||typeof n=="number"||typeof n=="bigint"||n.constructor==String?bt(null,n,null,null,null):ht(n)?bt(ue,{children:n},null,null,null):n.constructor===void 0&&n.__b>0?bt(n.type,n.props,n.key,n.ref?n.ref:null,n.__v):n)!=null?(n.__=e,n.__b=e.__b+1,l=el(n,i,s,u),n.__i=l,r=null,l!==-1&&(u--,(r=i[l])&&(r.__u|=131072)),r==null||r.__v===null?(l==-1&&d--,typeof n.type!="function"&&(n.__u|=65536)):l!==s&&(l==s-1?d=l-s:l==s+1?d++:l>s?u>a-s?d+=l-s:d--:l<s&&d++,l!==o+d&&(n.__u|=65536))):(r=i[s])&&r.key==null&&r.__e&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=Oe(r)),li(r,r,!1),i[s]=null,u--);if(u)for(o=0;o<c;o++)(r=i[o])!=null&&(131072&r.__u)==0&&(r.__e==e.__d&&(e.__d=Oe(r)),li(r,r))}function tn(e,t,i){var o,n;if(typeof e.type=="function"){for(o=e.__k,n=0;o&&n<o.length;n++)o[n]&&(o[n].__=e,t=tn(o[n],t,i));return t}e.__e!=t&&(i.insertBefore(e.__e,t||null),t=e.__e);do t=t&&t.nextSibling;while(t!=null&&t.nodeType===8);return t}function mt(e,t){return t=t||[],e==null||typeof e=="boolean"||(ht(e)?e.some(function(i){mt(i,t)}):t.push(e)),t}function el(e,t,i,o){var n=e.key,r=e.type,s=i-1,l=i+1,a=t[i];if(a===null||a&&n==a.key&&r===a.type&&(131072&a.__u)==0)return i;if(o>(a!=null&&(131072&a.__u)==0?1:0))for(;s>=0||l<t.length;){if(s>=0){if((a=t[s])&&(131072&a.__u)==0&&n==a.key&&r===a.type)return s;s--}if(l<t.length){if((a=t[l])&&(131072&a.__u)==0&&n==a.key&&r===a.type)return l;l++}}return-1}function on(e,t,i){t[0]==="-"?e.setProperty(t,i??""):e[t]=i==null?"":typeof i!="number"||Js.test(t)?i:i+"px"}function wt(e,t,i,o,n){var r;e:if(t==="style")if(typeof i=="string")e.style.cssText=i;else{if(typeof o=="string"&&(e.style.cssText=o=""),o)for(t in o)i&&t in i||on(e.style,t,"");if(i)for(t in i)o&&i[t]===o[t]||on(e.style,t,i[t])}else if(t[0]==="o"&&t[1]==="n")r=t!==(t=t.replace(/(PointerCapture)$|Capture$/i,"$1")),t=t.toLowerCase()in e||t==="onFocusOut"||t==="onFocusIn"?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+r]=i,i?o?i.u=o.u:(i.u=ti,e.addEventListener(t,r?oi:ii,r)):e.removeEventListener(t,r?oi:ii,r);else{if(n=="http://www.w3.org/2000/svg")t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(t!="width"&&t!="height"&&t!="href"&&t!="list"&&t!="form"&&t!="tabIndex"&&t!="download"&&t!="rowSpan"&&t!="colSpan"&&t!="role"&&t!="popover"&&t in e)try{e[t]=i??"";break e}catch{}typeof i=="function"||(i==null||i===!1&&t[4]!=="-"?e.removeAttribute(t):e.setAttribute(t,t=="popover"&&i==1?"":i))}}function nn(e){return function(t){if(this.l){var i=this.l[t.type+e];if(t.t==null)t.t=ti++;else if(t.t<i.u)return;return i(C.event?C.event(t):t)}}}function ai(e,t,i,o,n,r,s,l,a,c){var u,d,_,v,g,p,h,b,m,k,O,w,x,U,P,A,T=t.type;if(t.constructor!==void 0)return null;128&i.__u&&(a=!!(32&i.__u),r=[l=t.__e=i.__e]),(u=C.__b)&&u(t);e:if(typeof T=="function")try{if(b=t.props,m="prototype"in T&&T.prototype.render,k=(u=T.contextType)&&o[u.__c],O=u?k?k.props.value:u.__:o,i.__c?h=(d=t.__c=i.__c).__=d.__E:(m?t.__c=d=new T(b,O):(t.__c=d=new fe(b,O),d.constructor=T,d.render=il),k&&k.sub(d),d.props=b,d.state||(d.state={}),d.context=O,d.__n=o,_=d.__d=!0,d.__h=[],d._sb=[]),m&&d.__s==null&&(d.__s=d.state),m&&T.getDerivedStateFromProps!=null&&(d.__s==d.state&&(d.__s=ye({},d.__s)),ye(d.__s,T.getDerivedStateFromProps(b,d.__s))),v=d.props,g=d.state,d.__v=t,_)m&&T.getDerivedStateFromProps==null&&d.componentWillMount!=null&&d.componentWillMount(),m&&d.componentDidMount!=null&&d.__h.push(d.componentDidMount);else{if(m&&T.getDerivedStateFromProps==null&&b!==v&&d.componentWillReceiveProps!=null&&d.componentWillReceiveProps(b,O),!d.__e&&(d.shouldComponentUpdate!=null&&d.shouldComponentUpdate(b,d.__s,O)===!1||t.__v===i.__v)){for(t.__v!==i.__v&&(d.props=b,d.state=d.__s,d.__d=!1),t.__e=i.__e,t.__k=i.__k,t.__k.forEach(function(L){L&&(L.__=t)}),w=0;w<d._sb.length;w++)d.__h.push(d._sb[w]);d._sb=[],d.__h.length&&s.push(d);break e}d.componentWillUpdate!=null&&d.componentWillUpdate(b,d.__s,O),m&&d.componentDidUpdate!=null&&d.__h.push(function(){d.componentDidUpdate(v,g,p)})}if(d.context=O,d.props=b,d.__P=e,d.__e=!1,x=C.__r,U=0,m){for(d.state=d.__s,d.__d=!1,x&&x(t),u=d.render(d.props,d.state,d.context),P=0;P<d._sb.length;P++)d.__h.push(d._sb[P]);d._sb=[]}else do d.__d=!1,x&&x(t),u=d.render(d.props,d.state,d.context),d.state=d.__s;while(d.__d&&++U<25);d.state=d.__s,d.getChildContext!=null&&(o=ye(ye({},o),d.getChildContext())),m&&!_&&d.getSnapshotBeforeUpdate!=null&&(p=d.getSnapshotBeforeUpdate(v,g)),en(e,ht(A=u!=null&&u.type===ue&&u.key==null?u.props.children:u)?A:[A],t,i,o,n,r,s,l,a,c),d.base=t.__e,t.__u&=-161,d.__h.length&&s.push(d),h&&(d.__E=d.__=null)}catch(L){t.__v=null,a||r!=null?(t.__e=l,t.__u|=a?160:32,r[r.indexOf(l)]=null):(t.__e=i.__e,t.__k=i.__k),C.__e(L,t,i)}else r==null&&t.__v===i.__v?(t.__k=i.__k,t.__e=i.__e):t.__e=tl(i.__e,t,i,o,n,r,s,a,c);(u=C.diffed)&&u(t)}function rn(e,t,i){t.__d=void 0;for(var o=0;o<i.length;o++)si(i[o],i[++o],i[++o]);C.__c&&C.__c(t,e),e.some(function(n){try{e=n.__h,n.__h=[],e.some(function(r){r.call(n)})}catch(r){C.__e(r,n.__v)}})}function tl(e,t,i,o,n,r,s,l,a){var c,u,d,_,v,g,p,h=i.props,b=t.props,m=t.type;if(m==="svg"?n="http://www.w3.org/2000/svg":m==="math"?n="http://www.w3.org/1998/Math/MathML":n||(n="http://www.w3.org/1999/xhtml"),r!=null){for(c=0;c<r.length;c++)if((v=r[c])&&"setAttribute"in v==!!m&&(m?v.localName===m:v.nodeType===3)){e=v,r[c]=null;break}}if(e==null){if(m===null)return document.createTextNode(b);e=document.createElementNS(n,m,b.is&&b),r=null,l=!1}if(m===null)h===b||l&&e.data===b||(e.data=b);else{if(r=r&>.call(e.childNodes),h=i.props||Ve,!l&&r!=null)for(h={},c=0;c<e.attributes.length;c++)h[(v=e.attributes[c]).name]=v.value;for(c in h)if(v=h[c],c!="children"){if(c=="dangerouslySetInnerHTML")d=v;else if(c!=="key"&&!(c in b)){if(c=="value"&&"defaultValue"in b||c=="checked"&&"defaultChecked"in b)continue;wt(e,c,null,v,n)}}for(c in b)v=b[c],c=="children"?_=v:c=="dangerouslySetInnerHTML"?u=v:c=="value"?g=v:c=="checked"?p=v:c==="key"||l&&typeof v!="function"||h[c]===v||wt(e,c,v,h[c],n);if(u)l||d&&(u.__html===d.__html||u.__html===e.innerHTML)||(e.innerHTML=u.__html),t.__k=[];else if(d&&(e.innerHTML=""),en(e,ht(_)?_:[_],t,i,o,m==="foreignObject"?"http://www.w3.org/1999/xhtml":n,r,s,r?r[0]:i.__k&&Oe(i,0),l,a),r!=null)for(c=r.length;c--;)r[c]!=null&&Jo(r[c]);l||(c="value",g!==void 0&&(g!==e[c]||m==="progress"&&!g||m==="option"&&g!==h[c])&&wt(e,c,g,h[c],n),c="checked",p!==void 0&&p!==e[c]&&wt(e,c,p,h[c],n))}return e}function si(e,t,i){try{typeof e=="function"?e(t):e.current=t}catch(o){C.__e(o,i)}}function li(e,t,i){var o,n;if(C.unmount&&C.unmount(e),(o=e.ref)&&(o.current&&o.current!==e.__e||si(o,null,t)),(o=e.__c)!=null){if(o.componentWillUnmount)try{o.componentWillUnmount()}catch(r){C.__e(r,t)}o.base=o.__P=null}if(o=e.__k)for(n=0;n<o.length;n++)o[n]&&li(o[n],t,i||typeof e.type!="function");i||e.__e==null||Jo(e.__e),e.__c=e.__=e.__e=e.__d=void 0}function il(e,t,i){return this.constructor(e,i)}function an(e,t,i){var o,n,r,s;C.__&&C.__(e,t),n=(o=!1)?null:t.__k,r=[],s=[],ai(t,e=t.__k=ni(ue,null,[e]),n||Ve,Ve,t.namespaceURI,n?null:t.firstChild?gt.call(t.childNodes):null,r,n?n.__e:t.firstChild,o,s),rn(r,e,s)}function Ie(e,t){var i={__c:t="__cC"+Zo++,__:e,Consumer:function(o,n){return o.children(n)},Provider:function(o){var n,r;return this.getChildContext||(n=[],(r={})[t]=this,this.getChildContext=function(){return r},this.componentWillUnmount=function(){n=null},this.shouldComponentUpdate=function(s){this.props.value!==s.value&&n.some(function(l){l.__e=!0,ri(l)})},this.sub=function(s){n.push(s);var l=s.componentWillUnmount;s.componentWillUnmount=function(){n&&n.splice(n.indexOf(s),1),l&&l.call(s)}}),o.children}};return i.Provider.__=i.Consumer.contextType=i}gt=Xo.slice,C={__e:function(e,t,i,o){for(var n,r,s;t=t.__;)if((n=t.__c)&&!n.__)try{if((r=n.constructor)&&r.getDerivedStateFromError!=null&&(n.setState(r.getDerivedStateFromError(e)),s=n.__d),n.componentDidCatch!=null&&(n.componentDidCatch(e,o||{}),s=n.__d),s)return n.__E=n}catch(l){e=l}throw e}},Yo=0,fe.prototype.setState=function(e,t){var i;i=this.__s!=null&&this.__s!==this.state?this.__s:this.__s=ye({},this.state),typeof e=="function"&&(e=e(ye({},i),this.props)),e&&ye(i,e),e!=null&&this.__v&&(t&&this._sb.push(t),ri(this))},fe.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),ri(this))},fe.prototype.render=ue,Ee=[],qo=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,ei=function(e,t){return e.__v.__b-t.__v.__b},yt.__r=0,ti=0,ii=nn(!1),oi=nn(!0),Zo=0;const ol=e=>{try{const t=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);if(!t)return null;let i=parseInt(t[1],16),o=parseInt(t[2],16),n=parseInt(t[3],16);i/=255,o/=255,n/=255;const r=Math.max(i,o,n),s=Math.min(i,o,n);let l,a;const c=(r+s)/2;if(r===s)l=a=0;else{const u=r-s;switch(a=c>.5?u/(2-r-s):u/(r+s),r){case i:l=(o-n)/u+(o<n?6:0);break;case o:l=(n-i)/u+2;break;case n:l=(i-o)/u+4;break}l/=6}return{h:l,s:a,l:c}}catch{return null}},nl=(e,t=!1)=>{let i="";const o=Math.round(e.h*360),n=Math.round(e.s*100),r=Math.round(e.l*100);return i=`${o},${n}%,${r}%`,i=t?i:`hsl(${i})`,i};var sn=(e=>(e.HEX="hex",e.HSL="hsl",e))(sn||{});const rl=(e,t,i)=>{const o=t==="hex"?ol(e):e;return o&&o.l?(o.l<.25?o.l=o.l+.1:o.l<.5?o.l=o.l+.08:o.l<.75?o.l=o.l+.06:o.l<.9?o.l=o.l+.04:o.l=.9,nl(o)):e};var kt=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const ln="fides-embed-container",al="fides-overlay";let Et;const cn=e=>kt(void 0,[e],function*({initializedFides:t,i18n:i,renderOverlay:o}){const{options:n,experience:r}=t,s=()=>kt(void 0,null,function*(){var l,a,c;try{if(Et&&(an(null,Et),Et=void 0),n.fidesPrimaryColor){document.documentElement.style.setProperty("--fides-overlay-primary-color",n.fidesPrimaryColor);const d=rl(n.fidesPrimaryColor,sn.HEX,1);document.documentElement.style.setProperty("--fides-overlay-primary-button-background-hover-color",d)}let u;if(n.fidesEmbed)u=document.getElementById(ln),u||(yield kt(void 0,null,function*(){return new Promise(_=>{let v=0,g=200;const p=setInterval(()=>{u=document.getElementById(ln),u?(clearInterval(p),_()):(v+=1,v>=5&&g<1e3&&(g+=200))},g)})}));else{const d=n.overlayParentId||al;u=document.getElementById(d),u||(u=document.createElement("div"),u.id=d,u.className="fides-overlay",document.body.prepend(u))}return u?(o&&(((l=r.experience_config)==null?void 0:l.component)===G.MODAL||((a=r.experience_config)==null?void 0:a.component)===G.BANNER_AND_MODAL||((c=r.experience_config)==null?void 0:c.component)===G.TCF_OVERLAY)&&(o({initializedFides:t,i18n:i},u),Et=u),yield Promise.resolve()):yield Promise.reject(new Error("There was a problem rendering the Fides overlay."))}catch(u){return Promise.reject(u)}});return document?.readyState==="loading"?document.addEventListener("readystatechange",()=>kt(void 0,null,function*(){document.readyState==="interactive"&&s()})):s(),Promise.resolve()});var Ce,F,ci,dn,Ge=0,un=[],M=C,fn=M.__b,pn=M.__r,vn=M.diffed,_n=M.__c,gn=M.unmount,hn=M.__;function He(e,t){M.__h&&M.__h(F,e,Ge||t),Ge=0;var i=F.__H||(F.__H={__:[],__h:[]});return e>=i.__.length&&i.__.push({}),i.__[e]}function K(e){return Ge=1,sl(yn,e)}function sl(e,t,i){var o=He(Ce++,2);if(o.t=e,!o.__c&&(o.__=[i?i(t):yn(void 0,t),function(l){var a=o.__N?o.__N[0]:o.__[0],c=o.t(a,l);a!==c&&(o.__N=[c,o.__[1]],o.__c.setState({}))}],o.__c=F,!F.u)){var n=function(l,a,c){if(!o.__c.__H)return!0;var u=o.__c.__H.__.filter(function(_){return!!_.__c});if(u.every(function(_){return!_.__N}))return!r||r.call(this,l,a,c);var d=!1;return u.forEach(function(_){if(_.__N){var v=_.__[0];_.__=_.__N,_.__N=void 0,v!==_.__[0]&&(d=!0)}}),!(!d&&o.__c.props===l)&&(!r||r.call(this,l,a,c))};F.u=!0;var r=F.shouldComponentUpdate,s=F.componentWillUpdate;F.componentWillUpdate=function(l,a,c){if(this.__e){var u=r;r=void 0,n(l,a,c),r=u}s&&s.call(this,l,a,c)},F.shouldComponentUpdate=n}return o.__N||o.__}function j(e,t){var i=He(Ce++,3);!M.__s&&ui(i.__H,t)&&(i.__=e,i.i=t,F.__H.__h.push(i))}function ll(e,t){var i=He(Ce++,4);!M.__s&&ui(i.__H,t)&&(i.__=e,i.i=t,F.__h.push(i))}function $e(e){return Ge=5,pe(function(){return{current:e}},[])}function pe(e,t){var i=He(Ce++,7);return ui(i.__H,t)&&(i.__=e(),i.__H=t,i.__h=e),i.__}function S(e,t){return Ge=8,pe(function(){return e},t)}function Fe(e){var t=F.context[e.__c],i=He(Ce++,9);return i.c=e,t?(i.__==null&&(i.__=!0,t.sub(F)),t.props.value):e.__}function cl(){for(var e;e=un.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(Ot),e.__H.__h.forEach(di),e.__H.__h=[]}catch(t){e.__H.__h=[],M.__e(t,e.__v)}}M.__b=function(e){F=null,fn&&fn(e)},M.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),hn&&hn(e,t)},M.__r=function(e){pn&&pn(e),Ce=0;var t=(F=e.__c).__H;t&&(ci===F?(t.__h=[],F.__h=[],t.__.forEach(function(i){i.__N&&(i.__=i.__N),i.i=i.__N=void 0})):(t.__h.forEach(Ot),t.__h.forEach(di),t.__h=[],Ce=0)),ci=F},M.diffed=function(e){vn&&vn(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(un.push(t)!==1&&dn===M.requestAnimationFrame||((dn=M.requestAnimationFrame)||dl)(cl)),t.__H.__.forEach(function(i){i.i&&(i.__H=i.i),i.i=void 0})),ci=F=null},M.__c=function(e,t){t.some(function(i){try{i.__h.forEach(Ot),i.__h=i.__h.filter(function(o){return!o.__||di(o)})}catch(o){t.some(function(n){n.__h&&(n.__h=[])}),t=[],M.__e(o,i.__v)}}),_n&&_n(e,t)},M.unmount=function(e){gn&&gn(e);var t,i=e.__c;i&&i.__H&&(i.__H.__.forEach(function(o){try{Ot(o)}catch(n){t=n}}),i.__H=void 0,t&&M.__e(t,i.__v))};var bn=typeof requestAnimationFrame=="function";function dl(e){var t,i=function(){clearTimeout(o),bn&&cancelAnimationFrame(t),setTimeout(e)},o=setTimeout(i,100);bn&&(t=requestAnimationFrame(i))}function Ot(e){var t=F,i=e.__c;typeof i=="function"&&(e.__c=void 0,i()),F=t}function di(e){var t=F;e.__c=e.__(),F=t}function ui(e,t){return!e||e.length!==t.length||t.some(function(i,o){return i!==e[o]})}function yn(e,t){return typeof t=="function"?t(e):t}function ul(e,t){for(var i in t)e[i]=t[i];return e}function mn(e,t){for(var i in e)if(i!=="__source"&&!(i in t))return!0;for(var o in t)if(o!=="__source"&&e[o]!==t[o])return!0;return!1}function wn(e,t){this.props=e,this.context=t}(wn.prototype=new fe).isPureReactComponent=!0,wn.prototype.shouldComponentUpdate=function(e,t){return mn(this.props,e)||mn(this.state,t)};var kn=C.__b;C.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),kn&&kn(e)};var fl=C.__e;C.__e=function(e,t,i,o){if(e.then){for(var n,r=t;r=r.__;)if((n=r.__c)&&n.__c)return t.__e==null&&(t.__e=i.__e,t.__k=i.__k),n.__c(e,t)}fl(e,t,i,o)};var En=C.unmount;function On(e,t,i){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach(function(o){typeof o.__c=="function"&&o.__c()}),e.__c.__H=null),(e=ul({},e)).__c!=null&&(e.__c.__P===i&&(e.__c.__P=t),e.__c=null),e.__k=e.__k&&e.__k.map(function(o){return On(o,t,i)})),e}function Cn(e,t,i){return e&&i&&(e.__v=null,e.__k=e.__k&&e.__k.map(function(o){return Cn(o,t,i)}),e.__c&&e.__c.__P===t&&(e.__e&&i.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=i)),e}function fi(){this.__u=0,this.t=null,this.__b=null}function Pn(e){var t=e.__.__c;return t&&t.__a&&t.__a(e)}function Ct(){this.u=null,this.o=null}C.unmount=function(e){var t=e.__c;t&&t.__R&&t.__R(),t&&32&e.__u&&(e.type=null),En&&En(e)},(fi.prototype=new fe).__c=function(e,t){var i=t.__c,o=this;o.t==null&&(o.t=[]),o.t.push(i);var n=Pn(o.__v),r=!1,s=function(){r||(r=!0,i.__R=null,n?n(l):l())};i.__R=s;var l=function(){if(!--o.__u){if(o.state.__a){var a=o.state.__a;o.__v.__k[0]=Cn(a,a.__c.__P,a.__c.__O)}var c;for(o.setState({__a:o.__b=null});c=o.t.pop();)c.forceUpdate()}};o.__u++||32&t.__u||o.setState({__a:o.__b=o.__v.__k[0]}),e.then(s,s)},fi.prototype.componentWillUnmount=function(){this.t=[]},fi.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var i=document.createElement("div"),o=this.__v.__k[0].__c;this.__v.__k[0]=On(this.__b,i,o.__O=o.__P)}this.__b=null}var n=t.__a&&ni(ue,null,e.fallback);return n&&(n.__u&=-33),[ni(ue,null,t.__a?null:e.children),n]};var xn=function(e,t,i){if(++i[1]===i[0]&&e.o.delete(t),e.props.revealOrder&&(e.props.revealOrder[0]!=="t"||!e.o.size))for(i=e.u;i;){for(;i.length>3;)i.pop()();if(i[1]<i[0])break;e.u=i=i[2]}};(Ct.prototype=new fe).__a=function(e){var t=this,i=Pn(t.__v),o=t.o.get(e);return o[0]++,function(n){var r=function(){t.props.revealOrder?(o.push(n),xn(t,e,o)):n()};i?i(r):r()}},Ct.prototype.render=function(e){this.u=null,this.o=new Map;var t=mt(e.children);e.revealOrder&&e.revealOrder[0]==="b"&&t.reverse();for(var i=t.length;i--;)this.o.set(t[i],this.u=[1,0,this.u]);return e.children},Ct.prototype.componentDidUpdate=Ct.prototype.componentDidMount=function(){var e=this;this.o.forEach(function(t,i){xn(e,i,t)})};var pl=typeof Symbol<"u"&&Symbol.for&&Symbol.for("react.element")||60103,vl=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,_l=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,gl=/[A-Z0-9]/g,hl=typeof document<"u",bl=function(e){return(typeof Symbol<"u"&&typeof Symbol()=="symbol"?/fil|che|rad/:/fil|che|ra/).test(e)};fe.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(e){Object.defineProperty(fe.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})});var Nn=C.event;function yl(){}function ml(){return this.cancelBubble}function wl(){return this.defaultPrevented}C.event=function(e){return Nn&&(e=Nn(e)),e.persist=yl,e.isPropagationStopped=ml,e.isDefaultPrevented=wl,e.nativeEvent=e};var kl={enumerable:!1,configurable:!0,get:function(){return this.class}},An=C.vnode;C.vnode=function(e){typeof e.type=="string"&&function(t){var i=t.props,o=t.type,n={};for(var r in i){var s=i[r];if(!(r==="value"&&"defaultValue"in i&&s==null||hl&&r==="children"&&o==="noscript"||r==="class"||r==="className")){var l=r.toLowerCase();r==="defaultValue"&&"value"in i&&i.value==null?r="value":r==="download"&&s===!0?s="":l==="translate"&&s==="no"?s=!1:l==="ondoubleclick"?r="ondblclick":l!=="onchange"||o!=="input"&&o!=="textarea"||bl(i.type)?l==="onfocus"?r="onfocusin":l==="onblur"?r="onfocusout":_l.test(r)?r=l:o.indexOf("-")===-1&&vl.test(r)?r=r.replace(gl,"-$&").toLowerCase():s===null&&(s=void 0):l=r="oninput",l==="oninput"&&n[r=l]&&(r="oninputCapture"),n[r]=s}}o=="select"&&n.multiple&&Array.isArray(n.value)&&(n.value=mt(i.children).forEach(function(a){a.props.selected=n.value.indexOf(a.props.value)!=-1})),o=="select"&&n.defaultValue!=null&&(n.value=mt(i.children).forEach(function(a){a.props.selected=n.multiple?n.defaultValue.indexOf(a.props.value)!=-1:n.defaultValue==a.props.value})),i.class&&!i.className?(n.class=i.class,Object.defineProperty(n,"className",kl)):(i.className&&!i.class||i.class&&i.className)&&(n.class=n.className=i.className),t.props=n}(e),e.$$typeof=pl,An&&An(e)};var Tn=C.__r;C.__r=function(e){Tn&&Tn(e),e.__c};var Sn=C.diffed;C.diffed=function(e){Sn&&Sn(e);var t=e.props,i=e.__e;i!=null&&e.type==="textarea"&&"value"in t&&t.value!==i.value&&(i.value=t.value==null?"":t.value)};var El=0;function f(e,t,i,o,n,r){t||(t={});var s,l,a=t;if("ref"in a)for(l in a={},t)l=="ref"?s=t[l]:a[l]=t[l];var c={type:e,props:a,key:i,ref:s,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:--El,__i:-1,__u:0,__source:n,__self:r};if(typeof e=="function"&&(s=e.defaultProps))for(l in s)a[l]===void 0&&(a[l]=s[l]);return C.vnode&&C.vnode(c),c}function Ol(e,t){t===void 0&&(t={});var i=t.insertAt;if(!(typeof document>"u")){var o=document.head||document.getElementsByTagName("head")[0],n=document.createElement("style");n.type="text/css",i==="top"&&o.firstChild?o.insertBefore(n,o.firstChild):o.appendChild(n),n.styleSheet?n.styleSheet.cssText=e:n.appendChild(document.createTextNode(e))}}var Cl=`:root{--fides-overlay-primary-color:#2b2e35;--fides-overlay-background-color:#f7fafc;--fides-overlay-embed-background-color:transparent;--fides-overlay-font-color:#4a5568;--fides-overlay-font-color-dark:#2d3748;--fides-overlay-hover-color:#edf2f7;--fides-overlay-gpc-applied-background-color:#38a169;--fides-overlay-gpc-applied-text-color:#fff;--fides-overlay-gpc-overridden-background-color:#e53e3e;--fides-overlay-gpc-overridden-text-color:#fff;--fides-overlay-brand-link-logo-color:#2b2e35;--fides-overlay-background-dark-color:#e2e8f0;--fides-overlay-background-error-color:#f7c2c2;--fides-overlay-skeleton-gradient-from-color:rgba(0,0,0,.06);--fides-overlay-skeleton-gradient-to-color:rgba(0,0,0,.15);--fides-overlay-inactive-font-color:#a0aec0;--fides-overlay-primary-button-background-color:var(
|
|
2
2
|
--fides-overlay-primary-color
|
|
3
3
|
);--fides-overlay-primary-button-background-hover-color:#4f525b;--fides-overlay-primary-button-text-color:#fff;--fides-overlay-primary-button-border-color:transparent;--fides-overlay-secondary-button-background-color:var(
|
|
4
4
|
--fides-overlay-background-color
|
|
@@ -6,6 +6,6 @@ if(typeof Fides<"u"&&Fides.options?.fidesUnsupportedRepeatedScriptLoading!=="ena
|
|
|
6
6
|
--fides-overlay-hover-color
|
|
7
7
|
);--fides-overlay-neutral-background-color:#edf2f7;--fides-overlay-secondary-button-text-color:#2d3748;--fides-overlay-secondary-button-border-color:var(
|
|
8
8
|
--fides-overlay-primary-color
|
|
9
|
-
);--fides-overlay-secondary-button-border-color-disabled:#a0aec0;--fides-overlay-title-font-color:var(--fides-overlay-font-color);--fides-overlay-body-font-color:var(--fides-overlay-font-color);--fides-overlay-link-font-color:var(--fides-overlay-font-color-dark);--fides-overlay-line-height:1.4em;--fides-overlay-primary-active-color:var(--fides-overlay-primary-color);--fides-overlay-inactive-color:#e2e8f0;--fides-overlay-disabled-color:#e1e7ee;--fides-overlay-row-divider-color:#e2e8f0;--fides-overlay-row-hover-color:var(--fides-overlay-hover-color);--fides-overlay-badge-background-color:#718096;--fides-overlay-badge-border-radius:4px;--fides-overlay-select-border-color:#e2e8f0;--fides-overlay-language-button-border-radius:4px;--fides-overlay-width:680px;--fides-overlay-font-family:Inter,sans-serif;--fides-base-font-size:16px;--8px:calc(var(--fides-base-font-size)*0.5);--12px:calc(var(--fides-base-font-size)*0.75);--14px:calc(var(--fides-base-font-size)*0.875);--16px:calc(var(--fides-base-font-size)*1);--fides-overlay-font-size-body-xs:var(--8px);--fides-overlay-font-size-body-small:var(--12px);--fides-overlay-font-size-body:var(--14px);--fides-overlay-font-size-title:var(--16px);--fides-overlay-font-size-buttons:var(--14px);--fides-overlay-padding:24px;--fides-overlay-button-border-radius:6px;--fides-overlay-button-padding:8px 16px;--fides-overlay-link-v-padding:4px;--fides-overlay-link-h-padding:4px;--fides-overlay-link-padding:var(--fides-overlay-link-v-padding) var(--fides-overlay-link-h-padding);--fides-overlay-container-border-radius:12px;--fides-overlay-container-border-width:1px;--fides-overlay-component-border-radius:4px;--fides-overlay-banner-offset:48px;--fides-banner-font-size-title:var(--16px);--fides-overlay-language-loading-indicator-speed:5s;--fides-overlay-modal-secondary-button-group-height:calc(var(--fides-overlay-font-size-body) + var(--fides-overlay-link-v-padding)*2)}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}div.fides-overlay{position:fixed;z-index:1000}div#fides-overlay-wrapper *{box-sizing:border-box}.fides-banner,.fides-modal-container{-webkit-font-smoothing:antialiased;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);line-height:var(--fides-overlay-line-height);white-space:pre-line}#fides-modal-link{cursor:pointer;display:none}#fides-modal-link.fides-modal-link-shown{display:inline}div#fides-banner-container:not(.fides-embedded){display:flex;justify-content:center;position:fixed;transform:translateY(0);transition:transform 1s,visibility 1s;visibility:visible;width:100%;z-index:1}div#fides-banner{align-items:center;background:var(--fides-overlay-background-color);border-top:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);color:var(--fides-overlay-body-font-color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:var(--fides-overlay-font-size-body);justify-content:space-between;overflow-y:hidden;padding:24px;position:relative}.fides-embedded div#fides-banner{border:none}div#fides-banner-inner{width:100%}div#fides-banner-container.fides-banner-bottom{bottom:0;left:0}div#fides-banner-container.fides-banner-hidden{visibility:hidden}div#fides-banner-container.fides-banner-hidden.fides-embedded{display:none}div#fides-banner-container.fides-banner-bottom.fides-banner-hidden{transform:translateY(150%)}div#fides-banner-container.fides-banner-top{left:0;top:0}div#fides-banner-container.fides-banner-top.fides-banner-hidden{transform:translateY(-150%)}div#fides-banner-inner div#fides-button-group{align-items:center;flex-direction:row-reverse;margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0;width:100%}.fides-modal-footer div#fides-button-group{align-items:center;flex-direction:column;gap:12px;margin-inline:var(--fides-overlay-padding)}div#fides-banner-heading{align-items:center;display:flex;justify-content:space-between;margin-right:13px}.fides-banner-title{color:var(--fides-overlay-title-font-color);font-size:var(--fides-banner-font-size-title);font-weight:600;line-height:1.5em;margin:0}.fides-banner-description{flex:1;font-size:var(--fides-overlay-font-size-body);margin-bottom:24px;margin-top:16px}.fides-banner-description .fides-link-button,.fides-banner-description a,.fides-link-button .fides-back-link,.fides-link-button.fides-vendors-disclosure-link,.fides-modal-description .fides-link-button,.fides-modal-description a{color:var(--fides-overlay-primary-color);font-weight:600;text-decoration:underline}div#fides-banner-notices{margin-top:16px}div#fides-button-group{background-color:var(--fides-overlay-background-color);display:flex;justify-content:space-between;margin-bottom:var(--fides-overlay-padding);margin-top:8px;z-index:5}button.fides-banner-button{align-items:center;background:var(--fides-overlay-primary-button-background-color);border:1px solid;border-radius:var(--fides-overlay-button-border-radius);color:var(--fides-overlay-primary-button-text-color);cursor:pointer;display:flex;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-buttons);font-weight:600;justify-content:center;margin:4px 0 0;padding:var(--fides-overlay-button-padding);text-decoration:none}button.fides-banner-button:focus,button.fides-banner-button:hover,button.fides-banner-button[disabled]{background:var(--fides-overlay-primary-button-background-hover-color)}button.fides-banner-button.fides-banner-button-primary{background:var(--fides-overlay-primary-button-background-color);border:none;color:var(--fides-overlay-primary-button-text-color)}button.fides-banner-button.fides-banner-button-primary:focus,button.fides-banner-button.fides-banner-button-primary:hover,button.fides-banner-button.fides-banner-button-primary[disabled]{background:var(--fides-overlay-primary-button-background-hover-color)}button.fides-banner-button.fides-banner-button-secondary{background:var(--fides-overlay-secondary-button-background-color);border:1px solid var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-secondary-button-text-color)}button.fides-banner-button.fides-banner-button-secondary:focus,button.fides-banner-button.fides-banner-button-secondary:hover,button.fides-banner-button.fides-banner-button-secondary[disabled]{background:var(--fides-overlay-secondary-button-background-hover-color)}button.fides-banner-button[disabled]{color:var(--fides-overlay-inactive-font-color)}button.fides-banner-button.fides-banner-button-secondary[disabled]{border-color:var(--fides-overlay-secondary-button-border-color-disabled)}button.fides-banner-button.fides-banner-button-tertiary{background:none;border:none;color:var(--fides-overlay-link-font-color);cursor:pointer;font-size:var(--fides-overlay-font-size-body);font-weight:500;line-height:1.25em;padding:0;text-decoration:underline}button.fides-banner-button.fides-acknowledge-button{min-width:160px}.fides-spinner{animation:spin 1s linear infinite;border-color:currentcolor currentcolor transparent transparent;border-radius:50%;border-style:solid;border-width:2px;border-right:2px solid var(--fides-overlay-skeleton-gradient-from-color);border-top:2px solid var(--fides-overlay-skeleton-gradient-from-color);height:1em;width:1em}.fides-banner-button-primary .fides-spinner{border-right-color:var(--fides-overlay-primary-button-text-color);border-top-color:var(--fides-overlay-primary-button-text-color)}.fides-banner-button-secondary .fides-spinner{border-right-color:var(--fides-overlay-inactive-font-color);border-top-color:var(--fides-overlay-inactive-font-color)}div.fides-modal-content{background-color:var(--fides-overlay-background-color);border:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-container-border-radius);color:var(--fides-overlay-body-font-color);display:flex;flex-direction:column;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);left:50%;max-height:min(680px,100vh);overflow-x:hidden;overflow-y:auto;padding:0;position:fixed;top:50%;transform:translate(-50%,-50%);width:var(--fides-overlay-width);z-index:2}.fides-modal-container,.fides-modal-overlay{background-color:rgba(0,0,0,.25);bottom:0;left:0;position:fixed;right:0;top:0}div#fides-embed-container div#fides-consent-content .fides-modal-footer{position:inherit}div#fides-embed-container .fides-modal-body{padding-top:16px}div#fides-embed-container div#fides-consent-content{background-color:var(--fides-overlay-background-color);border:none;border-radius:var(--fides-overlay-container-border-radius);border-bottom-left-radius:0;border-bottom-right-radius:0;color:var(--fides-overlay-body-font-color);display:flex;flex-direction:column;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);left:50%;max-height:none;overflow:hidden;padding:0;position:static;top:50%;transform:none;width:var(--fides-overlay-width)}.fides-modal-container{display:flex;z-index:2}.fides-modal-container[aria-hidden=true]{display:none}div#fides-modal .fides-modal-header{display:flex;justify-content:end}div#fides-consent-content{overflow:auto;scrollbar-gutter:stable}div#fides-consent-content .fides-modal-title{color:var(--fides-overlay-title-font-color);font-size:var(--fides-overlay-font-size-title);font-weight:600;margin:0;text-align:center}div#fides-consent-content .fides-modal-body{height:100%;overflow-y:auto;padding-inline:var(--fides-overlay-padding)}.fides-modal-footer{background-color:var(--fides-overlay-background-color);border-bottom-left-radius:var(--fides-overlay-component-border-radius);border-bottom-right-radius:var(--fides-overlay-component-border-radius);bottom:0;display:flex;flex-direction:column;max-width:var(--fides-overlay-width);position:relative;width:100%;z-index:5}div#fides-consent-content .fides-modal-description{margin:8px 0 24px}.fides-banner-button-group{align-items:center;display:flex;gap:12px}.fides-modal-button-group{display:flex;flex-direction:row;gap:12px;margin-inline:var(--fides-overlay-padding);width:100%}.fides-modal-primary-actions .fides-banner-button{flex:1}.fides-banner-secondary-actions{justify-content:space-between}.fides-modal-secondary-actions{justify-content:center}.fides-modal-footer .fides-button-group-brand{min-height:var(--fides-overlay-modal-secondary-button-group-height)}.fides-modal-secondary-actions .fides-brand{align-items:center;bottom:var(--fides-overlay-padding);display:flex;font-size:var(--fides-overlay-font-size-body-xs);justify-content:center;position:absolute;right:var(--fides-overlay-padding)}.fides-modal-secondary-actions .fides-brand-link{align-items:center;color:var(--fides-overlay-font-color);display:flex;gap:4px;text-decoration:none}.fides-modal-secondary-actions .fides-brand .ethyca-logo{color:var(--fides-overlay-brand-link-logo-color)}.fides-banner-secondary-actions{gap:36px}.fides-no-scroll{overflow:hidden}div#fides-banner .fides-close-button{display:flex;position:absolute;right:0;top:0}.fides-modal-header .fides-close-button,div#fides-banner .fides-close-button{background:none;border:none;cursor:pointer;padding-right:8px;padding-top:8px}.fides-close-button:hover{background:var(--fides-overlay-hover-color)}.fides-embedded .fides-close-button{display:none!important}.fides-modal-notices{margin-bottom:16px}.fides-privacy-policy{color:var(--fides-overlay-primary-color);display:block;font-family:var(--fides-overlay-font-family);text-align:center}.fides-privacy-policy,button.fides-banner-button.fides-banner-button-tertiary,button.fides-i18n-button{line-height:1;margin:0;padding:var(--fides-overlay-link-padding)}@media (prefers-reduced-motion:reduce){.fides-toggle-display{transition-duration:0ms}}.fides-toggle{align-items:center;display:inline-flex;flex-wrap:wrap;gap:1ch;position:relative}.fides-toggle .fides-toggle-input{cursor:pointer;height:100%;opacity:0;position:absolute;width:100%;z-index:4}.fides-toggle .fides-toggle-display{--offset:4px;--diameter:16px;align-items:center;background-color:var(--fides-overlay-inactive-color);border-radius:100vw;box-sizing:content-box;color:var(--fides-overlay-inactive-font-color);display:inline-flex!important;height:24px;justify-content:space-around;justify-content:end;padding-inline:8px;position:relative;transition:.25s;width:34px}div#fides-overlay-wrapper .fides-toggle .fides-toggle-display{box-sizing:content-box}.fides-toggle .fides-toggle-display:before{background-color:#fff;border-radius:50%;box-shadow:0 1.3px 2.7px rgba(0,0,0,.25);box-sizing:border-box;content:"";height:var(--diameter);left:var(--offset);position:absolute;top:50%;transform:translateY(-50%);transition:inherit;width:var(--diameter);z-index:3}.fides-toggle .fides-toggle-input:checked+.fides-toggle-display{background-color:var(--fides-overlay-primary-active-color);color:var(--fides-overlay-primary-button-text-color);justify-content:start}.fides-toggle .fides-toggle-input:checked+.fides-toggle-display:before{transform:translate(26px,-50%)}.fides-toggle .fides-toggle-input:disabled{cursor:not-allowed}.fides-toggle .fides-toggle-input:disabled+.fides-toggle-display,.fides-toggle .fides-toggle-input:disabled:checked+.fides-toggle-display{background-color:var(--fides-overlay-disabled-color)}.fides-toggle .fides-toggle-input:focus+.fides-toggle-display{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color}.fides-toggle .fides-toggle-input:focus:not(:focus-visible)+.fides-toggle-display{outline:0}.fides-divider{border-color:var(--fides-overlay-row-divider-color);border-width:0 0 1px;margin:0}.fides-disclosure-hidden{display:flex;height:0;margin-bottom:0;margin-top:0;overflow:hidden;visibility:hidden}.fides-notice-toggle .fides-notice-toggle-title{align-items:center;border-bottom:1px solid var(--fides-overlay-row-divider-color);display:flex;justify-content:space-between;padding-inline:12px 12px}.fides-notice-toggle .fides-notice-toggle-trigger{align-items:center;display:flex;flex-grow:1;justify-content:flex-end;min-height:40px}.fides-notice-toggle .fides-notice-toggle-trigger svg{flex-shrink:0}.fides-notice-toggle .fides-notice-toggle-title:hover{background-color:var(--fides-overlay-row-hover-color);cursor:pointer}.fides-notice-toggle .fides-notice-toggle-trigger:before{border-style:solid;border-width:2px 2px 0 0;content:"";display:inline-block;height:8px;margin-right:calc(var(--8px) + 2px);min-width:8px;transform:translateY(-2px) rotate(135deg);transition:transform .12s ease-in-out}.fides-notice-toggle.fides-notice-toggle-expanded .fides-notice-toggle-trigger:before{transform:translateY(2px) rotate(-45deg)}.fides-notice-toggle .fides-disclosure-visible{display:flex;flex-direction:column;gap:12px;overflow:auto;padding:12px}.fides-notice-toggle p{margin:0 0 18px}.fides-notice-toggle p:last-child{margin:0}.fides-notice-toggle-title .fides-flex-center{align-items:center;display:flex;white-space:wrap;width:100%}.fides-notice-toggle-expanded{background-color:var(--fides-overlay-row-hover-color)}.fides-notice-toggle-header{font-weight:600}.fides-notice-toggle-controls{align-items:center;display:flex;gap:8px;margin-left:8px;white-space:nowrap}.fides-gpc-banner{border:1px solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-component-border-radius);display:flex;margin-bottom:16px;padding:18px}.fides-gpc-banner p{margin:0}.fides-gpc-warning{color:var(--fides-overlay-primary-color);margin-right:8px}.fides-gpc-header{font-weight:700}.fides-gpc-label{display:inline-flex;font-size:var(--fides-overlay-font-size-body);font-weight:600;padding:0 8px;white-space:nowrap}.fides-gpc-badge{border-radius:var(--fides-overlay-badge-border-radius);display:inline-flex;font-weight:700;margin-left:4px;padding:0 4px;text-transform:uppercase}.fides-gpc-badge-applied,.fides-gpc-badge-detected{background:var(--fides-overlay-gpc-applied-background-color);color:var(--fides-overlay-gpc-applied-text-color)}.fides-gpc-badge-overridden{background:var(--fides-overlay-gpc-overridden-background-color);color:var(--fides-overlay-gpc-overridden-text-color)}.fides-tab-list{display:flex;list-style-type:none;padding:0}.fides-tab-list>li{width:100%}.fides-tab-button{background:none;border-width:0 0 1px;border-bottom:1px solid var(--fides-overlay-row-divider-color);color:var(--fides-overlay-body-font-color);cursor:pointer;font-weight:500;padding:10px 20px;width:100%}.fides-tab-button[aria-selected=true]{border-bottom-width:2px;border-color:var(--fides-overlay-primary-active-color);color:var(--fides-overlay-primary-active-color);font-weight:600}.fides-tab-button::focus-visible{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color}.fides-tab-button:focus:not(:focus-visible){outline:0}.fides-notice-badge{align-items:center;background:var(--fides-overlay-badge-background-color);border-radius:var(--fides-overlay-badge-border-radius);color:#fff;display:inline-flex;font-size:var(--fides-overlay-font-size-body-small);font-weight:600;height:18px;padding:0 4px;text-transform:uppercase}.fides-background-dark{background-color:var(--fides-overlay-background-dark-color)}.fides-radio-button-group{background-color:var(
|
|
9
|
+
);--fides-overlay-secondary-button-border-color-disabled:#a0aec0;--fides-overlay-title-font-color:var(--fides-overlay-font-color);--fides-overlay-body-font-color:var(--fides-overlay-font-color);--fides-overlay-link-font-color:var(--fides-overlay-font-color-dark);--fides-overlay-line-height:1.4em;--fides-overlay-primary-active-color:var(--fides-overlay-primary-color);--fides-overlay-inactive-color:#e2e8f0;--fides-overlay-disabled-color:#e1e7ee;--fides-overlay-row-divider-color:#e2e8f0;--fides-overlay-row-hover-color:var(--fides-overlay-hover-color);--fides-overlay-badge-background-color:#718096;--fides-overlay-badge-border-radius:4px;--fides-overlay-select-border-color:#e2e8f0;--fides-overlay-language-button-border-radius:4px;--fides-overlay-width:680px;--fides-overlay-font-family:Inter,sans-serif;--fides-base-font-size:16px;--8px:calc(var(--fides-base-font-size)*0.5);--12px:calc(var(--fides-base-font-size)*0.75);--14px:calc(var(--fides-base-font-size)*0.875);--16px:calc(var(--fides-base-font-size)*1);--fides-overlay-font-size-body-xs:var(--8px);--fides-overlay-font-size-body-small:var(--12px);--fides-overlay-font-size-body:var(--14px);--fides-overlay-font-size-title:var(--16px);--fides-overlay-font-size-buttons:var(--14px);--fides-overlay-padding:24px;--fides-overlay-button-border-radius:6px;--fides-overlay-button-padding:8px 16px;--fides-overlay-link-v-padding:4px;--fides-overlay-link-h-padding:4px;--fides-overlay-link-padding:var(--fides-overlay-link-v-padding) var(--fides-overlay-link-h-padding);--fides-overlay-container-border-radius:12px;--fides-overlay-container-border-width:1px;--fides-overlay-component-border-radius:4px;--fides-overlay-banner-offset:48px;--fides-banner-font-size-title:var(--16px);--fides-overlay-language-loading-indicator-speed:5s;--fides-overlay-modal-secondary-button-group-height:calc(var(--fides-overlay-font-size-body) + var(--fides-overlay-link-v-padding)*2);--fides-overlay-toggle-width:50px}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}div.fides-overlay{position:fixed;z-index:1000}div#fides-overlay-wrapper *{box-sizing:border-box}.fides-banner,.fides-modal-container{-webkit-font-smoothing:antialiased;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);line-height:var(--fides-overlay-line-height);white-space:pre-line}#fides-modal-link{cursor:pointer;display:none}#fides-modal-link.fides-modal-link-shown{display:inline}div#fides-banner-container:not(.fides-embedded){display:flex;justify-content:center;position:fixed;transform:translateY(0);transition:transform 1s,visibility 1s;visibility:visible;width:100%;z-index:1}div#fides-banner{align-items:center;background:var(--fides-overlay-background-color);border-top:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);color:var(--fides-overlay-body-font-color);display:flex;flex-direction:row;flex-wrap:wrap;font-size:var(--fides-overlay-font-size-body);justify-content:space-between;overflow-y:hidden;padding:24px;position:relative}.fides-embedded div#fides-banner{border:none}div#fides-banner-inner{width:100%}div#fides-banner-container.fides-banner-bottom{bottom:0;left:0}div#fides-banner-container.fides-banner-hidden{visibility:hidden}div#fides-banner-container.fides-banner-hidden.fides-embedded{display:none}div#fides-banner-container.fides-banner-bottom.fides-banner-hidden{transform:translateY(150%)}div#fides-banner-container.fides-banner-top{left:0;top:0}div#fides-banner-container.fides-banner-top.fides-banner-hidden{transform:translateY(-150%)}div#fides-banner-inner div#fides-button-group{align-items:center;flex-direction:row-reverse;margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0;width:100%}.fides-modal-footer div#fides-button-group{align-items:center;flex-direction:column;gap:12px;margin-inline:var(--fides-overlay-padding)}div#fides-banner-heading{align-items:center;display:flex;justify-content:space-between;margin-right:13px}.fides-banner-title{color:var(--fides-overlay-title-font-color);font-size:var(--fides-banner-font-size-title);font-weight:600;line-height:1.5em;margin:0}.fides-banner-description{flex:1;font-size:var(--fides-overlay-font-size-body);margin-bottom:24px;margin-top:16px}.fides-banner-description .fides-link-button,.fides-banner-description a,.fides-link-button .fides-back-link,.fides-link-button.fides-vendors-disclosure-link,.fides-modal-description .fides-link-button,.fides-modal-description a{color:var(--fides-overlay-primary-color);font-weight:600;text-decoration:underline}div#fides-banner-notices{margin-top:16px}div#fides-button-group{background-color:var(--fides-overlay-background-color);display:flex;justify-content:space-between;margin-bottom:var(--fides-overlay-padding);margin-top:8px;z-index:5}button.fides-banner-button{align-items:center;background:var(--fides-overlay-primary-button-background-color);border:1px solid;border-radius:var(--fides-overlay-button-border-radius);color:var(--fides-overlay-primary-button-text-color);cursor:pointer;display:flex;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-buttons);font-weight:600;justify-content:center;margin:4px 0 0;padding:var(--fides-overlay-button-padding);text-decoration:none}button.fides-banner-button:focus,button.fides-banner-button:hover,button.fides-banner-button[disabled]{background:var(--fides-overlay-primary-button-background-hover-color)}button.fides-banner-button.fides-banner-button-primary{background:var(--fides-overlay-primary-button-background-color);border:none;color:var(--fides-overlay-primary-button-text-color)}button.fides-banner-button.fides-banner-button-primary:focus,button.fides-banner-button.fides-banner-button-primary:hover,button.fides-banner-button.fides-banner-button-primary[disabled]{background:var(--fides-overlay-primary-button-background-hover-color)}button.fides-banner-button.fides-banner-button-secondary{background:var(--fides-overlay-secondary-button-background-color);border:1px solid var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-secondary-button-text-color)}button.fides-banner-button.fides-banner-button-secondary:focus,button.fides-banner-button.fides-banner-button-secondary:hover,button.fides-banner-button.fides-banner-button-secondary[disabled]{background:var(--fides-overlay-secondary-button-background-hover-color)}button.fides-banner-button[disabled]{color:var(--fides-overlay-inactive-font-color)}button.fides-banner-button.fides-banner-button-secondary[disabled]{border-color:var(--fides-overlay-secondary-button-border-color-disabled)}button.fides-banner-button.fides-banner-button-tertiary{background:none;border:none;color:var(--fides-overlay-link-font-color);cursor:pointer;font-size:var(--fides-overlay-font-size-body);font-weight:500;line-height:1.25em;padding:0;text-decoration:underline}button.fides-banner-button.fides-acknowledge-button{min-width:160px}.fides-spinner{animation:spin 1s linear infinite;border-color:currentcolor currentcolor transparent transparent;border-radius:50%;border-style:solid;border-width:2px;border-right:2px solid var(--fides-overlay-skeleton-gradient-from-color);border-top:2px solid var(--fides-overlay-skeleton-gradient-from-color);height:1em;width:1em}.fides-banner-button-primary .fides-spinner{border-right-color:var(--fides-overlay-primary-button-text-color);border-top-color:var(--fides-overlay-primary-button-text-color)}.fides-banner-button-secondary .fides-spinner{border-right-color:var(--fides-overlay-inactive-font-color);border-top-color:var(--fides-overlay-inactive-font-color)}div.fides-modal-content{background-color:var(--fides-overlay-background-color);border:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-container-border-radius);color:var(--fides-overlay-body-font-color);display:flex;flex-direction:column;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);left:50%;max-height:min(680px,100vh);overflow-x:hidden;overflow-y:auto;padding:0;position:fixed;top:50%;transform:translate(-50%,-50%);width:var(--fides-overlay-width);z-index:2}.fides-modal-container,.fides-modal-overlay{background-color:rgba(0,0,0,.25);bottom:0;left:0;position:fixed;right:0;top:0}div#fides-embed-container div#fides-consent-content .fides-modal-footer{position:inherit}div#fides-embed-container .fides-modal-body{padding-top:16px}div#fides-embed-container div#fides-consent-content{background-color:var(--fides-overlay-background-color);border:none;border-radius:var(--fides-overlay-container-border-radius);border-bottom-left-radius:0;border-bottom-right-radius:0;color:var(--fides-overlay-body-font-color);display:flex;flex-direction:column;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);left:50%;max-height:none;overflow:hidden;padding:0;position:static;top:50%;transform:none;width:var(--fides-overlay-width)}.fides-modal-container{display:flex;z-index:2}.fides-modal-container[aria-hidden=true]{display:none}div#fides-modal .fides-modal-header{display:flex;justify-content:end}div#fides-consent-content{overflow:auto;scrollbar-gutter:stable}div#fides-consent-content .fides-modal-title{color:var(--fides-overlay-title-font-color);font-size:var(--fides-overlay-font-size-title);font-weight:600;margin:0;text-align:center}div#fides-consent-content .fides-modal-body{height:100%;overflow-y:auto;padding-inline:var(--fides-overlay-padding)}.fides-modal-footer{background-color:var(--fides-overlay-background-color);border-bottom-left-radius:var(--fides-overlay-component-border-radius);border-bottom-right-radius:var(--fides-overlay-component-border-radius);bottom:0;display:flex;flex-direction:column;max-width:var(--fides-overlay-width);position:relative;width:100%;z-index:5}div#fides-consent-content .fides-modal-description{margin:8px 0 24px}.fides-banner-button-group{align-items:center;display:flex;gap:12px}.fides-modal-button-group{display:flex;flex-direction:row;gap:12px;margin-inline:var(--fides-overlay-padding);width:100%}.fides-modal-primary-actions .fides-banner-button{flex:1}.fides-banner-secondary-actions{justify-content:space-between}.fides-modal-secondary-actions{justify-content:center}.fides-modal-footer .fides-button-group-brand{min-height:var(--fides-overlay-modal-secondary-button-group-height)}.fides-modal-secondary-actions .fides-brand{align-items:center;bottom:var(--fides-overlay-padding);display:flex;font-size:var(--fides-overlay-font-size-body-xs);justify-content:center;position:absolute;right:var(--fides-overlay-padding)}.fides-modal-secondary-actions .fides-brand-link{align-items:center;color:var(--fides-overlay-font-color);display:flex;gap:4px;text-decoration:none}.fides-modal-secondary-actions .fides-brand .ethyca-logo{color:var(--fides-overlay-brand-link-logo-color)}.fides-banner-secondary-actions{gap:36px}.fides-no-scroll{overflow:hidden}div#fides-banner .fides-close-button{display:flex;position:absolute;right:0;top:0}.fides-modal-header .fides-close-button,div#fides-banner .fides-close-button{background:none;border:none;cursor:pointer;padding-right:8px;padding-top:8px}.fides-close-button:hover{background:var(--fides-overlay-hover-color)}.fides-embedded .fides-close-button{display:none!important}.fides-modal-notices{margin-bottom:16px}.fides-privacy-policy{color:var(--fides-overlay-primary-color);display:block;font-family:var(--fides-overlay-font-family);text-align:center}.fides-privacy-policy,button.fides-banner-button.fides-banner-button-tertiary,button.fides-i18n-button{line-height:1;margin:0;padding:var(--fides-overlay-link-padding)}@media (prefers-reduced-motion:reduce){.fides-toggle-display{transition-duration:0ms}}.fides-toggle{align-items:center;display:inline-flex;flex-wrap:wrap;gap:1ch;position:relative}.fides-toggle .fides-toggle-input{cursor:pointer;height:100%;opacity:0;position:absolute;width:100%;z-index:4}.fides-toggle .fides-toggle-display{--offset:4px;--diameter:16px;align-items:center;background-color:var(--fides-overlay-inactive-color);border-radius:100vw;box-sizing:content-box;color:var(--fides-overlay-inactive-font-color);display:inline-flex!important;height:24px;justify-content:space-around;justify-content:end;padding-inline:8px;position:relative;transition:.25s;width:calc(var(--fides-overlay-toggle-width) - var(--16px))}div#fides-overlay-wrapper .fides-toggle .fides-toggle-display{box-sizing:content-box}.fides-toggle .fides-toggle-display:before{background-color:#fff;border-radius:50%;box-shadow:0 1.3px 2.7px rgba(0,0,0,.25);box-sizing:border-box;content:"";height:var(--diameter);left:var(--offset);position:absolute;top:50%;transform:translateY(-50%);transition:inherit;width:var(--diameter);z-index:3}.fides-toggle .fides-toggle-input:checked+.fides-toggle-display{background-color:var(--fides-overlay-primary-active-color);color:var(--fides-overlay-primary-button-text-color);justify-content:start}.fides-toggle .fides-toggle-input:checked+.fides-toggle-display:before{transform:translate(26px,-50%)}.fides-toggle .fides-toggle-input:disabled{cursor:not-allowed}.fides-toggle .fides-toggle-input:disabled+.fides-toggle-display,.fides-toggle .fides-toggle-input:disabled:checked+.fides-toggle-display{background-color:var(--fides-overlay-disabled-color)}.fides-toggle .fides-toggle-input:focus+.fides-toggle-display{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color}.fides-toggle .fides-toggle-input:focus:not(:focus-visible)+.fides-toggle-display{outline:0}.fides-divider{border-color:var(--fides-overlay-row-divider-color);border-width:0 0 1px;margin:0}.fides-disclosure-hidden{display:flex;height:0;margin-bottom:0;margin-top:0;overflow:hidden;visibility:hidden}.fides-notice-toggle .fides-notice-toggle-title{align-items:center;border-bottom:1px solid var(--fides-overlay-row-divider-color);display:flex;justify-content:space-between;padding-inline:12px 12px}.fides-notice-toggle .fides-notice-toggle-trigger{align-items:center;display:flex;flex-grow:1;justify-content:flex-end;min-height:40px}.fides-notice-toggle .fides-notice-toggle-trigger svg{flex-shrink:0}.fides-notice-toggle .fides-notice-toggle-title:hover{background-color:var(--fides-overlay-row-hover-color);cursor:pointer}.fides-notice-toggle .fides-notice-toggle-trigger:before{border-style:solid;border-width:2px 2px 0 0;content:"";display:inline-block;height:8px;margin-right:calc(var(--8px) + 2px);min-width:8px;transform:translateY(-2px) rotate(135deg);transition:transform .12s ease-in-out}.fides-notice-toggle.fides-notice-toggle-expanded .fides-notice-toggle-trigger:before{transform:translateY(2px) rotate(-45deg)}.fides-notice-toggle .fides-disclosure-visible{display:flex;flex-direction:column;gap:12px;overflow:auto;padding:12px}.fides-notice-toggle p{margin:0 0 18px}.fides-notice-toggle p:last-child{margin:0}.fides-notice-toggle-title .fides-flex-center{align-items:center;display:flex;white-space:wrap;width:100%}.fides-notice-toggle-expanded{background-color:var(--fides-overlay-row-hover-color)}.fides-notice-toggle-header{font-weight:600}.fides-notice-toggle-controls{align-items:center;display:flex;gap:8px;margin-left:8px;white-space:nowrap}.fides-gpc-banner{border:1px solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-component-border-radius);display:flex;margin-bottom:16px;padding:18px}.fides-gpc-banner p{margin:0}.fides-gpc-warning{color:var(--fides-overlay-primary-color);margin-right:8px}.fides-gpc-header{font-weight:700}.fides-gpc-label{align-items:center;display:inline-flex;font-size:var(--fides-overlay-font-size-body);font-weight:600;padding:0 8px;white-space:nowrap}.fides-gpc-badge{border-radius:var(--fides-overlay-badge-border-radius);display:inline-flex;font-weight:700;margin-left:4px;padding:0 4px;text-transform:uppercase}.fides-gpc-badge-applied,.fides-gpc-badge-detected{background:var(--fides-overlay-gpc-applied-background-color);color:var(--fides-overlay-gpc-applied-text-color)}.fides-gpc-badge-overridden{background:var(--fides-overlay-gpc-overridden-background-color);color:var(--fides-overlay-gpc-overridden-text-color)}.fides-tab-list{display:flex;list-style-type:none;padding:0}.fides-tab-list>li{width:100%}.fides-tab-button{background:none;border-width:0 0 1px;border-bottom:1px solid var(--fides-overlay-row-divider-color);color:var(--fides-overlay-body-font-color);cursor:pointer;font-weight:500;padding:10px 20px;width:100%}.fides-tab-button[aria-selected=true]{border-bottom-width:2px;border-color:var(--fides-overlay-primary-active-color);color:var(--fides-overlay-primary-active-color);font-weight:600}.fides-tab-button::focus-visible{outline:1px auto Highlight;outline:1px auto -webkit-focus-ring-color}.fides-tab-button:focus:not(:focus-visible){outline:0}.fides-notice-badge{align-items:center;background:var(--fides-overlay-badge-background-color);border-radius:var(--fides-overlay-badge-border-radius);color:#fff;display:inline-flex;font-size:var(--fides-overlay-font-size-body-small);font-weight:600;height:18px;padding:0 4px;text-transform:uppercase}.fides-background-dark{background-color:var(--fides-overlay-background-dark-color)}.fides-radio-button-group{background-color:var(
|
|
10
10
|
--fides-overlay-secondary-button-background-hover-color
|
|
11
|
-
);border:1px solid var(--fides-overlay-row-divider-color);display:flex;margin-bottom:22px;padding:4px}.fides-radio-button{background-color:transparent;border:none;cursor:pointer;flex:1;padding:5px 16px}.fides-radio-button[aria-checked=true]{background-color:var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-primary-button-text-color)}.fides-flex-center{align-items:center;display:flex}.fides-margin-right{margin-right:3px}.fides-justify-space-between{justify-content:space-between}.fides-vendor-details-table{width:100%}.fides-vendor-details-table td,.fides-vendor-details-table th{font-size:var(--fides-overlay-font-size-body-small);text-align:left}.fides-vendor-details-table td{border-bottom:1px solid var(--fides-overlay-row-divider-color)}.fides-link-button{background:none;border:none;cursor:pointer;padding:0}.fides-back-link:before{border-color:var(--fides-overlay-primary-color);border-style:solid;border-width:1.5px 1.5px 0 0;content:"";display:inline-block;height:.6em;margin-right:3px;transform:translateY(-1px) rotate(225deg);transition:transform .12s ease-in-out;width:.6em}.fides-external-link,.fides-primary-text-color{color:var(--fides-overlay-primary-color)}.fides-external-link{font-size:var(--fides-overlay-font-size-body-small);font-weight:500;margin-right:16px}.fides-info-box{background-color:var(--fides-overlay-neutral-background-color);border-radius:var(--fides-overlay-component-border-radius);margin:10px 0;padding:16px}.fides-info-box p{margin:0}.fides-tabs .tabpanel-container{overflow:hidden}.tabpanel-container section[hidden]{display:none}.fides-paging-buttons{display:flex;gap:8px;justify-content:center}.fides-paging-info{color:var(--fides-overlay-font-color-dark);font-size:var(--fides-overlay-font-size-body-small);font-weight:600;padding:8px}.fides-paging-previous-button{margin-right:8px}.fides-paging-next-button,.fides-paging-previous-button{background-color:transparent;border:none;cursor:pointer;padding:6px}.fides-paging-next-button:disabled,.fides-paging-previous-button:disabled{cursor:default}.fides-i18n-menu{position:relative}.fides-modal-footer .fides-i18n-menu{bottom:var(--fides-overlay-padding);left:var(--fides-overlay-padding);position:absolute}.fides-modal-footer .fides-button-group-i18n{min-height:var(--fides-overlay-modal-secondary-button-group-height)}button.fides-i18n-button{align-items:center;background-color:transparent;border:none;color:var(--fides-overlay-body-font-color);cursor:pointer;display:flex;flex-direction:row;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);gap:2px;height:var(--fides-overlay-font-size-body);text-transform:uppercase;white-space:nowrap}#fides-i18n-icon{animation-duration:var(--fides-overlay-language-loading-indicator-speed);animation-iteration-count:infinite;animation-timing-function:linear;transform-origin:50% 50%}div#fides-overlay-wrapper .fides-i18n-button{box-sizing:content-box}.fides-i18n-popover{background-color:var(--fides-overlay-background-dark-color);border-radius:var(--fides-overlay-component-border-radius);bottom:100%;display:flex;flex-direction:column;gap:1px;left:0;max-height:0;min-width:calc(var(--fides-base-font-size)*9);overflow:hidden;position:absolute;transition:max-height .2s ease-in-out}.fides-i18n-menu-open .fides-i18n-popover{border:1px solid var(--fides-overlay-primary-color);max-height:calc(var(--fides-base-font-size)*7);overflow:scroll}.fides-i18n-button:hover{background-color:var(--fides-overlay-hover-color);border-radius:var(--fides-overlay-language-button-border-radius)}.fides-i18n-menu-open .fides-i18n-caret{transform:rotate(180deg)}button.fides-banner-button.fides-menu-item{background:var(--fides-overlay-secondary-button-background-color);border:none;border-radius:0;color:var(--fides-overlay-secondary-button-text-color);margin:0;padding-left:calc(var(--fides-base-font-size)*1.5);text-align:left;width:100%}button.fides-banner-button.fides-menu-item[aria-checked=true]{background:var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-primary-button-text-color)}button.fides-banner-button.fides-menu-item[aria-checked=true]:before{content:"\\2713";display:inline-block;margin-left:calc(var(--fides-base-font-size)*-1);margin-right:calc(var(--fides-base-font-size)*.25)}button.fides-banner-button.fides-menu-item:not([aria-checked=true]):hover{background:var(--fides-overlay-secondary-button-background-hover-color)}.fides-sr-only{height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;width:1px}@media (min-width:1280px){div#fides-banner{width:60%}}@media (min-width:768px){div#fides-banner{border:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-component-border-radius);width:75%}div#fides-banner-container.fides-banner-bottom{bottom:var(--fides-overlay-banner-offset)}}@media (max-width:768px){div#fides-consent-content,div.fides-modal-content{width:100%!important}.fides-modal-button-group{flex-direction:column}button.fides-banner-button{margin:0 8px 12px 0}div#fides-banner{padding:24px;width:100%}div#fides-banner-description{margin-bottom:0}div#fides-banner-inner div#fides-button-group{align-items:flex-start;flex-direction:column;gap:12px;padding-top:24px}.fides-banner-button-group{flex-direction:column;width:100%}button.fides-banner-button{margin:0;width:100%}div#fides-banner-inner-container{max-height:50vh;overflow-y:auto;scrollbar-gutter:stable}div.fides-privacy-policy-link{width:100%}.fides-modal-footer{max-width:100%}.fides-banner-secondary-actions{gap:12px}.fides-banner-secondary-actions .fides-manage-preferences-button{order:0}.fides-banner-secondary-actions .fides-privacy-policy{order:1}.fides-banner-secondary-actions .fides-i18n-menu{order:2}.fides-banner-button-group.fides-button-group-i18n{min-height:68px}.fides-i18n-menu{bottom:var(--fides-overlay-padding);left:var(--fides-overlay-padding);position:absolute}}.fides-data-toggle-skeleton__container{align-items:center;border-bottom:1px solid var(--fides-overlay-row-divider-color);display:flex;justify-content:space-between;min-height:40px;padding-inline:12px;width:100%}.fides-notice-toggle .fides-skeleton__container:hover{background-color:unset;cursor:default}.fides-skeleton__component{animation-duration:1.4s;animation-iteration-count:infinite;animation-name:fides-skeleton-loading;animation-timing-function:ease;background:linear-gradient(90deg,var(--fides-overlay-skeleton-gradient-from-color) 25%,var(--fides-overlay-skeleton-gradient-to-color) 37%,var(--fides-overlay-skeleton-gradient-from-color) 63%);background-size:400% 100%}.fides-skeleton__text{border-radius:var(--fides-overlay-component-border-radius);height:var(--fides-overlay-line-height);width:60%}.fides-skeleton__switch{border-radius:100vw;height:24px;width:50px}@keyframes fides-skeleton-loading{0%{background-position:100% 50%}to{background-position:0 50%}}`;yl(ml);const Tn=Ie(void 0),wl=({children:e})=>{const[t,i]=K(""),o=S(s=>{i(""),setTimeout(()=>{i(s)},0)},[]),n=S(()=>{i("")},[]),r=ue(()=>({message:t,announce:o,clear:n}),[t,o,n]);return F(()=>{const s=()=>{o("Preferences updated")},l=()=>{n()};return window.addEventListener("FidesUIShown",l),window.addEventListener("FidesUpdated",s),()=>{window.removeEventListener("FidesUIShown",l),window.removeEventListener("FidesUpdated",s)}},[o,n]),f(Tn.Provider,{value:r,children:e})},Sn=()=>{const e=$e(Tn);if(!e)throw new Error("useLiveRegion must be used within a LiveRegionProvider");return e},kl=3e3,He=(e=!1,t=kl)=>{const[i,o]=K(e),n=Fe(null),{clear:r}=Sn(),s=S(()=>{n.current!==null&&(window.clearTimeout(n.current),n.current=null)},[]),l=S(()=>{s(),o(!1),r()},[s,r]),a=S(c=>{s(),o(!0);const u=c??t;n.current=window.setTimeout(()=>{o(!1),r(),n.current=null},u)},[s,t,r]);return F(()=>()=>s(),[s]),{isActive:i,activate:a,deactivate:l}},El=({id:e})=>{const[t,i]=K(!1),o=S(()=>i(!1),[]),n=S(()=>i(!0),[]),r=S(()=>{t?o():n()},[t,n,o]);return{isOpen:t,onOpen:n,onClose:o,onToggle:r,getButtonProps:()=>({"aria-expanded":t,"aria-controls":e,onClick:r}),getDisclosureProps:()=>({id:e,className:t?"fides-disclosure-visible":"fides-disclosure-hidden"})}},Ol=(e,t)=>{const[i,o]=K(null);return F(()=>{if(t)return()=>{};zo(e).then(n=>{o(n)})},[e,t]),i},Cl=()=>{const[e,t]=K(!1);return F(()=>{t(!0)},[]),e};var Pl=Object.defineProperty,In=Object.getOwnPropertySymbols,xl=Object.prototype.hasOwnProperty,Nl=Object.prototype.propertyIsEnumerable,Ln=(e,t,i)=>t in e?Pl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Al=(e,t)=>{for(var i in t||(t={}))xl.call(t,i)&&Ln(e,i,t[i]);if(In)for(var i of In(t))Nl.call(t,i)&&Ln(e,i,t[i]);return e},Tl=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const Sl=({options:e,privacyExperience:t,privacyExperienceConfigHistoryId:i,privacyNoticeHistoryIds:o,userGeography:n,acknowledgeMode:r,tcfNoticesServed:s})=>{const l=S(a=>Tl(void 0,null,function*(){var c;if(e.fidesDisableSaveApi||e.fidesDisableNoticesServedApi||!a.detail.extraDetails||a.detail.extraDetails.servingComponent===Re.BANNER&&!((c=t?.experience_config)!=null&&c.show_layer1_notices))return;const u=Ao.getServedNoticeHistoryId(),d=Al({served_notice_history_id:u,browser_identity:a.detail.identity,privacy_experience_config_history_id:i||"",user_geography:n,acknowledge_mode:r,privacy_notice_history_ids:o||[],serving_component:String(a.detail.extraDetails.servingComponent),property_id:t.property_id},s);No({request:d,options:e})}),[e,t,i,n,r,o,s]);F(()=>(window.addEventListener("FidesUIShown",l),()=>{window.removeEventListener("FidesUIShown",l)}),[l])},Fn=Ie({}),Il=({i18nInstance:e,children:t})=>{const[i,o]=K(),[n,r]=K(!1),s=S(a=>{e.activate(a),o(a)},[e,o]);F(()=>{const a=document.getElementById(Vr);n?a?.style.setProperty("animation-name","spin"):a?.style.removeProperty("animation-name")},[n]);const l=ue(()=>({i18n:e,currentLocale:i,setCurrentLocale:s,isLoading:n,setIsLoading:r}),[e,i,s,n]);return f(Fn.Provider,{value:l,children:t})},ee=()=>{const e=$e(Fn);if(!e||Object.keys(e).length===0)throw new Error("useI18n must be used within a I18nProvider");return e};var Ll=Object.defineProperty,Fl=Object.defineProperties,$l=Object.getOwnPropertyDescriptors,$n=Object.getOwnPropertySymbols,jl=Object.prototype.hasOwnProperty,Dl=Object.prototype.propertyIsEnumerable,jn=(e,t,i)=>t in e?Ll(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,di=(e,t)=>{for(var i in t||(t={}))jl.call(t,i)&&jn(e,i,t[i]);if($n)for(var i of $n(t))Dl.call(t,i)&&jn(e,i,t[i]);return e},Rl=(e,t)=>Fl(e,$l(t));const Dn=Ie({}),zl=({children:e})=>{const t=Fe(),i=Fe(),o=S(l=>{t.current=l},[]),n=S(l=>{i.current=l},[]),r=S((l,a,c)=>{var u;se(l,a,Rl(di({},c),{servingComponent:(u=c?.servingComponent)!=null?u:i.current,trigger:di(di({},c?.trigger),t.current)})),o(void 0)},[o]),s=ue(()=>({triggerRef:t,setTrigger:o,servingComponentRef:i,setServingComponent:n,dispatchFidesEventAndClearTrigger:r}),[o,r,n]);return f(Dn.Provider,{value:s,children:e})},be=()=>{const e=$e(Dn);if(!e||Object.keys(e).length===0)throw new Error("useEvent must be used within a EventProvider");return e},Rn=Ie({}),Ml=({initializedFides:e,children:t})=>{const[i,o]=K(e),n=ue(()=>({fidesGlobal:i,setFidesGlobal:o}),[i,o]);return f(Rn.Provider,{value:n,children:t})},zn=()=>{const e=$e(Rn);if(!e||Object.keys(e).length===0)throw new Error("useFidesGlobal must be used within a FidesGlobalProvider");return e},Mn=({onClick:e,ariaLabel:t,hidden:i=!1})=>f("button",{type:"button","aria-label":t,className:"fides-close-button",onClick:e,style:{visibility:i?"hidden":"visible"},children:f("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",children:f("path",{fill:"#2D3748",d:"m8 7.057 3.3-3.3.943.943-3.3 3.3 3.3 3.3-.943.943-3.3-3.3-3.3 3.3-.943-.943 3.3-3.3-3.3-3.3.943-.943 3.3 3.3Z"})})}),Ul=Ie({}),ui="__VENDOR_COUNT_LINK__",Un=(e,t)=>t?f("span",{dangerouslySetInnerHTML:{__html:e.trim()}}):Ds(e).trim(),Bn=({description:e,onVendorPageClick:t,allowHTMLDescription:i=!1})=>{const[o,n]=K(),{setTrigger:r}=be();let s=0;const l=$e(Ul);return l?.vendorCount&&(s=l.vendorCount),F(()=>{if(e)if(e.includes(ui)&&t){const a=e.split(ui);for(let u=1;u<a.length;u+=2)a.splice(u,0,f(ce,{children:[" ",f("button",{type:"button",className:"fides-link-button fides-vendor-count",onClick:()=>{t&&(r({type:Q.LINK,label:ui}),t())},children:s})," "]}));const c=a.map(u=>typeof u=="string"?Un(u,i):u);n(c)}else n([Un(e,i)])},[e,t]),e?f("div",{children:o}):null},Gn=({status:e})=>{const{i18n:t}=ee(),i=t.t("static.gpc"),o=e.valueOf();let n="";if(e===ae.APPLIED)n=t.t("static.gpc.status.applied");else if(e===ae.OVERRIDDEN)n=t.t("static.gpc.status.overridden");else if(e===ae.NONE)return null;return f("span",{className:"fides-gpc-label",children:[i," ",f("span",{className:`fides-gpc-badge fides-gpc-badge-${o}`,children:n})]})};var Bl=Object.defineProperty,Gl=Object.defineProperties,Vl=Object.getOwnPropertyDescriptors,Vn=Object.getOwnPropertySymbols,Hl=Object.prototype.hasOwnProperty,Kl=Object.prototype.propertyIsEnumerable,Hn=(e,t,i)=>t in e?Bl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,fi=(e,t)=>{for(var i in t||(t={}))Hl.call(t,i)&&Hn(e,i,t[i]);if(Vn)for(var i of Vn(t))Kl.call(t,i)&&Hn(e,i,t[i]);return e},pi=(e,t)=>Gl(e,Vl(t));const Yl=({attributes:e,dismissable:t,onOpen:i,onClose:o,bannerIsOpen:n,children:r,onVendorPageClick:s,renderButtonGroup:l,className:a,isEmbedded:c})=>{var u,d,_,v,g,p,h,b,m,k,O;const{container:w,dialog:N,title:M,closeButton:P}=e,{i18n:A}=ee(),T=Se().globalPrivacyControl,{setTrigger:I}=be();F(()=>{n&&i()},[n,i]);const R=we(A,"exp.banner_title")?A.t("exp.banner_title"):A.t("exp.title"),U=we(A,"exp.banner_description")?A.t("exp.banner_description"):A.t("exp.description"),Y=["fides-banner","fides-banner-bottom",!n&&"fides-banner-hidden",c&&"fides-embedded",a].filter(G=>typeof G=="string").join(" ");let D=[];return(_=(d=(u=window.Fides)==null?void 0:u.experience)==null?void 0:d.experience_config)!=null&&_.show_layer1_notices&&((g=(v=window.Fides)==null?void 0:v.experience)!=null&&g.privacy_notices)&&(D=(h=(p=window.Fides)==null?void 0:p.experience)==null?void 0:h.privacy_notices),f("div",pi(fi({className:Y},w),{id:`${w.id}-container`,children:f("div",{id:w.id,children:f("div",pi(fi({},N),{id:`${w.id}-inner`,children:[f(Mn,{ariaLabel:"Close banner",onClick:()=>{I({type:Q.BUTTON,label:"Close banner"}),P.onClick(),o()},hidden:((m=(b=window.Fides)==null?void 0:b.options)==null?void 0:m.preventDismissal)||!t}),f("div",{id:`${w.id}-inner-container`,children:[f("div",{className:"fides-banner__col",children:[f("div",{id:"fides-banner-heading",children:[f("div",pi(fi({},M),{className:"fides-banner-title",children:R})),T&&f(Gn,{status:ae.APPLIED})]}),f("div",{id:`${w.id}-description`,className:"fides-banner-description fides-banner__content",children:[f(Bn,{description:U,onVendorPageClick:s,allowHTMLDescription:(O=(k=window.Fides)==null?void 0:k.options)==null?void 0:O.allowHTMLDescription}),!!D?.length&&f("div",{id:`${w.id}-notices`,className:"fides-banner-notices",children:D.map((G,J)=>f("span",{children:[f("strong",{children:G.name}),J<D.length-1&&", "]},G.id))})]})]}),r]}),l()]}))})}))},Wl=e=>{const[t,i]=K(!1);return F(()=>{const o=window.matchMedia(e);i(o.matches);function n(r){i(r.matches)}return o.addEventListener?o.addEventListener("change",n):o.addListener(n),()=>{o.removeEventListener?o.removeEventListener("change",n):o.removeListener(n)}},[e]),t},ql=()=>f("svg",{xmlns:"http://www.w3.org/2000/svg",width:"31",height:"20",fill:"currentColor",className:"ethyca-logo",role:"img","aria-label":"Ethyca",children:f("path",{d:"M11.5602 0H8.70311V7.9999H11.5602V0ZM23.0026 12.0001H20.1455V20H23.0026V12.0001ZM14.1258 20H17.5799L12.1315 11.9774V17.0631L14.1258 20ZM8.13179 17.0626V11.9769L2.68588 19.9995H6.14003L8.13129 17.0626H8.13179ZM23.5744 2.93688V8.02263L29.0198 0H25.5682L23.5739 2.93688H23.5744ZM19.5742 2.93688L17.5799 0H14.1258L19.5742 8.02263V2.93688ZM19.5717 8.57121H12.132V11.4283H19.5717V8.57121ZM31 8.57121H23.5603V11.4283H31V8.57121ZM8.13179 8.57121H0.691589V11.4283H8.13179V8.57121Z"})}),Zl=()=>f("div",{className:"fides-brand",children:f("a",{href:"https://ethyca.com/",target:"_blank",rel:"noopener noreferrer",className:"fides-brand-link",children:["Powered by",f(ql,{})]})}),Jl=()=>f("svg",{xmlns:"http://www.w3.org/2000/svg",id:"icon",fill:"currentColor",viewBox:"0 0 32 32",children:[f("path",{d:"M16 2a14 14 0 1 0 14 14A14 14 0 0 0 16 2m-2 19.59-5-5L10.59 15 14 18.41 21.41 11l1.596 1.586Z"}),f("path",{id:"inner-path",d:"m14 21.591-5-5L10.591 15 14 18.409 21.41 11l1.595 1.585z",fill:"none"}),f("path",{id:"_Transparent_Rectangle_",d:"M0 0h32v32H0z",fill:"none"})]}),Xl=()=>f("div",{className:"fides-spinner"}),je=({buttonType:e,label:t,id:i,onClick:o,className:n="",disabled:r,loading:s,complete:l})=>{const{isActive:a,activate:c,deactivate:u}=He();return F(()=>{l?c():u()},[c,l,u]),f("button",{type:"button",id:i,className:`fides-banner-button fides-banner-button-${e.valueOf()} ${n}`,onClick:o,disabled:r||s,style:{cursor:r||s?"not-allowed":"pointer"},children:f("span",{style:{display:"flex",alignItems:"center",gap:"0.5em"},children:[t||"",s&&f(Xl,{}),!s&&a&&f("span",{"aria-hidden":"true",style:{width:"1em",height:"1em"},children:f(Jl,{})})]})})},Ql=Ie({});var ec=Object.defineProperty,tc=Object.defineProperties,ic=Object.getOwnPropertyDescriptors,Ct=Object.getOwnPropertySymbols,Kn=Object.prototype.hasOwnProperty,Yn=Object.prototype.propertyIsEnumerable,Wn=(e,t,i)=>t in e?ec(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,oc=(e,t)=>{for(var i in t||(t={}))Kn.call(t,i)&&Wn(e,i,t[i]);if(Ct)for(var i of Ct(t))Yn.call(t,i)&&Wn(e,i,t[i]);return e},nc=(e,t)=>tc(e,ic(t)),rc=(e,t)=>{var i={};for(var o in e)Kn.call(e,o)&&t.indexOf(o)<0&&(i[o]=e[o]);if(e!=null&&Ct)for(var o of Ct(e))t.indexOf(o)<0&&Yn.call(e,o)&&(i[o]=e[o]);return i};const ac=e=>{var t=e,{isActive:i,className:o,children:n}=t,r=rc(t,["isActive","className","children"]);return f("button",nc(oc({type:"button",role:"menuitemradio","aria-checked":i},r),{className:`fides-banner-button fides-menu-item ${o||""}`,children:n}))};var sc=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const lc=({availableLocales:e,options:t,isTCF:i})=>{const[o,n]=K(!1),{i18n:r,currentLocale:s,setCurrentLocale:l,setIsLoading:a}=ee(),c=$e(Ql),u=Fe(null),d=Fe(null),_=()=>{n(!o)},v=p=>sc(void 0,null,function*(){var h;if(p!==r.locale)if(i){a(!0);const b=yield Oo(t.fidesApiUrl,[p]);a(!1),b&&Object.keys(b).length?(c.setGvlTranslations(b[p]),po(r,b,e||[Z]),l(p)):console.error(`Unable to load GVL translation for ${p}`)}else l(p);n(!1),(h=u.current)==null||h.focus()}),g=S(p=>{var h,b,m;if(!o)return;const k=((h=d.current)==null?void 0:h.querySelectorAll(".fides-menu-item"))||[],{key:O}=p;if(O==="Escape"||O==="Tab"){n(!1),(b=u.current)==null||b.focus();return}if(O==="ArrowUp"||O==="ArrowDown"){p.preventDefault();const w=Array.from(k).findIndex(M=>M===document.activeElement);let N=w;O==="ArrowDown"?N=w===k.length-1?0:w+1:O==="ArrowUp"&&(N=w===0?k.length-1:w-1),(m=k[N])==null||m.focus()}},[o]);return F(()=>(document.addEventListener("keydown",g),()=>{document.removeEventListener("keydown",g)}),[g]),F(()=>{var p,h;if(o){const b=(p=d.current)==null?void 0:p.querySelectorAll(".fides-menu-item");(h=b?.[0])==null||h.focus()}},[o]),F(()=>{const p=h=>{o&&d.current&&!d.current.contains(h.target)&&u.current&&!u.current.contains(h.target)&&n(!1)};return document.addEventListener("mousedown",p),()=>{document.removeEventListener("mousedown",p)}},[o]),f("div",{className:`fides-i18n-menu ${o?"fides-i18n-menu-open":""}`,ref:d,children:[f("div",{role:"menu",className:"fides-i18n-popover",id:"fides-i18n-popover",children:r.availableLanguages.map(p=>f(ac,{id:s===p.locale?"fidesActiveMenuItem":void 0,onClick:()=>v(p.locale),isActive:s===p.locale,title:p.label_en,"aria-label":p.label_en,tabIndex:-1,children:p.label_original},p.locale))}),f("button",{type:"button",className:"fides-i18n-button",onClick:_,ref:u,"aria-haspopup":"true","aria-expanded":o,"aria-controls":"fides-i18n-popover","aria-label":`Select language, current language is ${s}`,children:[f("svg",{xmlns:"http://www.w3.org/2000/svg",height:"100%",viewBox:"0 0 36 36",fill:"currentColor",id:"fides-i18n-icon",children:f("path",{fill:"currentColor",d:"M18 32.625c.52 0 1.898-.506 3.347-3.403.619-1.245 1.153-2.756 1.547-4.472h-9.788c.394 1.716.928 3.227 1.547 4.472 1.449 2.897 2.827 3.403 3.347 3.403m-5.45-11.25h10.9a32.5 32.5 0 0 0 0-6.75h-10.9a32.5 32.5 0 0 0 0 6.75m.556-10.125h9.788c-.394-1.716-.928-3.227-1.547-4.472C19.898 3.881 18.52 3.375 18 3.375s-1.898.506-3.347 3.403c-.619 1.245-1.153 2.756-1.547 4.472m13.732 3.375A35 35 0 0 1 26.993 18c0 1.153-.056 2.285-.155 3.375h5.393c.253-1.083.394-2.215.394-3.375s-.134-2.292-.394-3.375h-5.393m4.135-3.375a14.7 14.7 0 0 0-6.92-6.567c.992 1.8 1.78 4.043 2.293 6.567h4.634zm-21.326 0c.513-2.524 1.3-4.76 2.292-6.567A14.7 14.7 0 0 0 5.02 11.25h4.634zm-5.878 3.375A14.8 14.8 0 0 0 3.375 18c0 1.16.134 2.292.394 3.375h5.393A35 35 0 0 1 9.007 18c0-1.153.056-2.285.155-3.375zm20.285 16.692a14.7 14.7 0 0 0 6.919-6.567h-4.627c-.513 2.524-1.3 4.76-2.292 6.567m-12.108 0c-.991-1.8-1.779-4.043-2.292-6.567H5.02a14.7 14.7 0 0 0 6.92 6.567zM18 36a18 18 0 1 1 0-36 18 18 0 0 1 0 36"})}),s,f("svg",{className:"fides-i18n-caret",xmlns:"http://www.w3.org/2000/svg",height:"100%",fill:"currentColor",viewBox:"0 0 24 24",children:f("path",{d:"M12 13.172L16.95 8.22198L18.364 9.63598L12 16L5.63599 9.63598L7.04999 8.22198L12 13.172Z"})})]})]})},cc=()=>{const{i18n:e}=ee();if(!we(e,"exp.privacy_policy_link_label")||!we(e,"exp.privacy_policy_url"))return null;const t=e.t("exp.privacy_policy_link_label"),i=e.t("exp.privacy_policy_url");return f("div",{id:"fides-privacy-policy-link",style:{display:"flex",alignItems:"center",justifyContent:"center"},children:f("a",{href:i,rel:"noopener noreferrer",target:"_blank",className:"fides-privacy-policy",children:t})})},dc=({availableLocales:e=[Z],onManagePreferencesClick:t,renderFirstButton:i,onAcceptAll:o,onRejectAll:n,hideOptInOut:r,hideRejectAll:s,options:l,isInModal:a,isTCF:c,isGVLLoading:u})=>{var d;const{i18n:_}=ee(),{setTrigger:v}=be(),g=Wl("(max-width: 768px)"),{isActive:p,activate:h}=He(!1),{isActive:b,activate:m}=He(!1),k=((d=_.availableLanguages)==null?void 0:d.length)>1,O=we(_,"exp.privacy_policy_link_label")&&we(_,"exp.privacy_policy_url"),w=a&&l.showFidesBrandLink;return f("div",{id:"fides-button-group",children:[f("div",{className:a?"fides-modal-button-group fides-modal-primary-actions":"fides-banner-button-group fides-banner-primary-actions",children:[!!i&&i(),!r&&f(ce,{children:[c&&!!t&&f(je,{buttonType:ie.SECONDARY,label:_.t("exp.privacy_preferences_link_label"),onClick:()=>{v({type:Q.BUTTON,label:_.t("exp.privacy_preferences_link_label")}),t()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button"}),!s&&f(je,{buttonType:ie.PRIMARY,label:_.t("exp.reject_button_label"),onClick:()=>{v({type:Q.BUTTON,label:_.t("exp.reject_button_label")}),n(),m()},className:"fides-reject-all-button",id:"fides-reject-all-button",loading:u,complete:b}),f(je,{buttonType:ie.PRIMARY,label:_.t("exp.accept_button_label"),onClick:()=>{v({type:Q.BUTTON,label:_.t("exp.accept_button_label")}),o(),h()},className:"fides-accept-all-button",id:"fides-accept-all-button",loading:u,complete:p})]})]}),f("div",{className:`${a?"fides-modal-button-group fides-modal-secondary-actions":"fides-banner-button-group fides-banner-secondary-actions"}${k?" fides-button-group-i18n":""}${O?" fides-button-group-privacy-policy":""}${w?" fides-button-group-brand":""}`,children:[k&&f(lc,{availableLocales:e,options:l,isTCF:!!c}),!c&&!!t&&f(je,{buttonType:g?ie.SECONDARY:ie.TERTIARY,label:_.t("exp.privacy_preferences_link_label"),onClick:()=>{v({type:Q.BUTTON,label:_.t("exp.privacy_preferences_link_label")}),t()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button"}),O&&f(cc,{}),w&&f(Zl,{})]})]})},qn=({experience:e,onAcceptAll:t,onRejectAll:i,onSave:o,onManagePreferencesClick:n,enabledKeys:r,isInModal:s,isAcknowledge:l,hideOptInOut:a=!1,options:c})=>{const{isActive:u,activate:d}=He(!1),{isActive:_,activate:v}=He(!1),{i18n:g}=ee(),{setTrigger:p}=be();if(!e.experience_config||!e.privacy_notices)return null;const h=()=>{o(L.ACKNOWLEDGE,r)},b=()=>{o(L.SAVE,r)},m=()=>l?f(je,{buttonType:ie.PRIMARY,label:g.t("exp.acknowledge_button_label"),onClick:()=>{p({type:Q.BUTTON,label:g.t("exp.acknowledge_button_label")}),h(),d()},className:"fides-acknowledge-button",complete:u}):s?f(je,{buttonType:a?ie.PRIMARY:ie.SECONDARY,label:g.t("exp.save_button_label"),onClick:()=>{p({type:Q.BUTTON,label:g.t("exp.save_button_label")}),b(),v()},className:"fides-save-button",id:"fides-save-button",complete:_}):null;return f(dc,{availableLocales:e.available_locales,onManagePreferencesClick:n,onAcceptAll:t,onRejectAll:i,isInModal:s,renderFirstButton:m,hideOptInOut:a,options:c})};var uc=['a[href]:not([tabindex^="-"])','area[href]:not([tabindex^="-"])','input:not([type="hidden"]):not([type="radio"]):not([disabled]):not([tabindex^="-"])','input[type="radio"]:not([disabled]):not([tabindex^="-"])','select:not([disabled]):not([tabindex^="-"])','textarea:not([disabled]):not([tabindex^="-"])','button:not([disabled]):not([tabindex^="-"])','iframe:not([tabindex^="-"])','audio[controls]:not([tabindex^="-"])','video[controls]:not([tabindex^="-"])','[contenteditable]:not([tabindex^="-"])','[tabindex]:not([tabindex^="-"])'],fc="Tab",pc="Escape";function te(e){this._show=this.show.bind(this),this._hide=this.hide.bind(this),this._maintainFocus=this._maintainFocus.bind(this),this._bindKeypress=this._bindKeypress.bind(this),this.$el=e,this.shown=!1,this._id=this.$el.getAttribute("data-a11y-dialog")||this.$el.id,this._previouslyFocused=null,this._listeners={},this.create()}te.prototype.create=function(){this.$el.setAttribute("aria-hidden",!0),this.$el.setAttribute("aria-modal",!0),this.$el.setAttribute("tabindex",-1),this.$el.hasAttribute("role")||this.$el.setAttribute("role","dialog"),this._openers=Ke('[data-a11y-dialog-show="'+this._id+'"]'),this._openers.forEach(function(t){t.addEventListener("click",this._show)}.bind(this));const e=this.$el;return this._closers=Ke("[data-a11y-dialog-hide]",this.$el).filter(function(t){return t.closest('[aria-modal="true"], [data-a11y-dialog]')===e}).concat(Ke('[data-a11y-dialog-hide="'+this._id+'"]')),this._closers.forEach(function(t){t.addEventListener("click",this._hide)}.bind(this)),this._fire("create"),this},te.prototype.show=function(e){if(this.shown)return this;this._previouslyFocused=document.activeElement;const t=e&&e.target?e.target:null;return t&&Object.is(this._previouslyFocused,document.body)&&(this._previouslyFocused=t),this.$el.removeAttribute("aria-hidden"),this.shown=!0,Zn(this.$el),document.body.addEventListener("focus",this._maintainFocus,!0),document.addEventListener("keydown",this._bindKeypress),this._fire("show",e),this},te.prototype.hide=function(e){return this.shown?(this.shown=!1,this.$el.setAttribute("aria-hidden","true"),this._previouslyFocused&&this._previouslyFocused.focus&&this._previouslyFocused.focus(),document.body.removeEventListener("focus",this._maintainFocus,!0),document.removeEventListener("keydown",this._bindKeypress),this._fire("hide",e),this):this},te.prototype.destroy=function(){return this.hide(),this._openers.forEach(function(e){e.removeEventListener("click",this._show)}.bind(this)),this._closers.forEach(function(e){e.removeEventListener("click",this._hide)}.bind(this)),this._fire("destroy"),this._listeners={},this},te.prototype.on=function(e,t){return typeof this._listeners[e]>"u"&&(this._listeners[e]=[]),this._listeners[e].push(t),this},te.prototype.off=function(e,t){var i=(this._listeners[e]||[]).indexOf(t);return i>-1&&this._listeners[e].splice(i,1),this},te.prototype._fire=function(e,t){var i=this._listeners[e]||[],o=new CustomEvent(e,{detail:t});this.$el.dispatchEvent(o),i.forEach(function(n){n(this.$el,t)}.bind(this))},te.prototype._bindKeypress=function(e){const t=document.activeElement;t&&t.closest('[aria-modal="true"]')!==this.$el||(this.shown&&e.key===pc&&this.$el.getAttribute("role")!=="alertdialog"&&(e.preventDefault(),this.hide(e)),this.shown&&e.key===fc&&gc(this.$el,e))},te.prototype._maintainFocus=function(e){this.shown&&!e.target.closest('[aria-modal="true"]')&&!e.target.closest("[data-a11y-dialog-ignore-focus-trap]")&&Zn(this.$el)};function vc(e){return Array.prototype.slice.call(e)}function Ke(e,t){return vc((t||document).querySelectorAll(e))}function Zn(e){var t=e.querySelector("[autofocus]")||e;t.focus()}function _c(e){return Ke(uc.join(","),e).filter(function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)})}function gc(e,t){var i=_c(e),o=i.indexOf(document.activeElement);t.shiftKey&&o===0?(i[i.length-1].focus(),t.preventDefault()):!t.shiftKey&&o===i.length-1&&(i[0].focus(),t.preventDefault())}function vi(){Ke("[data-a11y-dialog]").forEach(function(e){new te(e)})}typeof document<"u"&&(document.readyState==="loading"?document.addEventListener("DOMContentLoaded",vi):window.requestAnimationFrame?window.requestAnimationFrame(vi):window.setTimeout(vi,16));const hc=()=>{const[e,t]=K(null),i=S(o=>{if(o!==null){const n=new te(o);t(n)}},[]);return{instance:e,container:i}},Jn=({id:e,onClose:t,ariaHidden:i=!0})=>{const{instance:o,container:n}=hc(),r=`${e}-title`,s=S(()=>{o&&o.hide(),t&&t()},[t,o]);return F(()=>()=>{o&&o.destroy()},[o]),{instance:o,attributes:{container:{id:e,ref:n,role:"alertdialog","aria-hidden":i,"aria-labelledby":r},dialog:{role:"document"},closeButton:{type:"button",onClick:s},title:{role:"heading","aria-level":2,id:r}}}},bc=()=>f("svg",{xmlns:"http://www.w3.org/2000/svg",width:"18",height:"18",fill:"currentColor",children:f("path",{d:"M9 12.05a.68.68 0 0 0-.68.7c0 .39.32.7.68.7.39 0 .68-.31.68-.7a.66.66 0 0 0-.68-.7Zm0-1.18c.26 0 .44-.2.44-.46V6.19c0-.26-.2-.47-.44-.47a.49.49 0 0 0-.47.47v4.22c0 .25.21.46.47.46Zm7.27 2.27-5.85-9.9c-.3-.5-.83-.8-1.42-.8-.6 0-1.12.3-1.42.8l-5.86 9.9c-.3.5-.3 1.1-.01 1.6.3.51.83.82 1.43.82h11.72c.6 0 1.13-.3 1.43-.82.29-.5.28-1.1-.02-1.6Zm-.82 1.1c-.1.25-.33.38-.62.38H3.14a.7.7 0 0 1-.61-.35.64.64 0 0 1 0-.65l5.86-9.9A.7.7 0 0 1 9 3.37a.7.7 0 0 1 .61.35l5.86 9.9c.1.2.12.44-.02.63Z"})}),yc=({title:e,description:t})=>f("div",{className:"fides-gpc-banner",children:[f("div",{className:"fides-gpc-warning",children:f(bc,{})}),f("div",{children:[f("p",{className:"fides-gpc-header",children:e}),f("p",{children:t})]})]});var mc=Object.defineProperty,wc=Object.defineProperties,kc=Object.getOwnPropertyDescriptors,Xn=Object.getOwnPropertySymbols,Ec=Object.prototype.hasOwnProperty,Oc=Object.prototype.propertyIsEnumerable,Qn=(e,t,i)=>t in e?mc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Cc=(e,t)=>{for(var i in t||(t={}))Ec.call(t,i)&&Qn(e,i,t[i]);if(Xn)for(var i of Xn(t))Oc.call(t,i)&&Qn(e,i,t[i]);return e},Pc=(e,t)=>wc(e,kc(t));const er=({titleProps:e,className:t,renderModalFooter:i,children:o,onVendorPageClick:n,headerContent:r,isVendorAssetDisclosureView:s})=>{var l,a;const{title:c,description:u}=r,{i18n:d}=ee(),_=Se().globalPrivacyControl,v=d.t("static.gpc.title"),g=d.t("static.gpc.description");return f(ce,{children:[f("div",{id:"fides-consent-content",className:t,children:f("div",{className:"fides-modal-body",children:[f("div",Pc(Cc({},e),{className:"fides-modal-title",children:c})),f("p",{className:"fides-modal-description",children:f(Bn,{onVendorPageClick:n,description:u,allowHTMLDescription:(a=(l=window.Fides)==null?void 0:l.options)==null?void 0:a.allowHTMLDescription})}),!s&&_&&f(yc,{title:v,description:g}),o]})}),f("div",{className:"fides-modal-footer",children:i()})]})};var xc=Object.defineProperty,Nc=Object.defineProperties,Ac=Object.getOwnPropertyDescriptors,tr=Object.getOwnPropertySymbols,Tc=Object.prototype.hasOwnProperty,Sc=Object.prototype.propertyIsEnumerable,ir=(e,t,i)=>t in e?xc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,or=(e,t)=>{for(var i in t||(t={}))Tc.call(t,i)&&ir(e,i,t[i]);if(tr)for(var i of tr(t))Sc.call(t,i)&&ir(e,i,t[i]);return e},nr=(e,t)=>Nc(e,Ac(t));const Ic=({attributes:e,children:t,dismissable:i,onVendorPageClick:o,renderModalFooter:n,headerContent:r,isVendorAssetDisclosureView:s})=>{const{container:l,dialog:a,title:c,closeButton:u}=e,{setTrigger:d}=be(),{fidesGlobal:_}=zn();return f("div",nr(or({},l),{className:"fides-modal-container",children:[f("div",{className:"fides-modal-overlay"}),f("div",nr(or({},a),{className:"fides-modal-content",children:[f("div",{className:"fides-modal-header",children:[f("div",{}),f(Mn,{ariaLabel:"Close modal",onClick:()=>{d({type:"button",label:"Close modal"}),u.onClick()},hidden:_?.options.preventDismissal||!i})]}),f(er,{titleProps:c,renderModalFooter:n,onVendorPageClick:o,headerContent:r,isVendorAssetDisclosureView:s,children:t})]}))]}))},Lc=()=>{const{message:e}=Sn();return f("div",{role:"status","aria-live":"polite","aria-relevant":"additions",className:"fides-sr-only",id:"fides-overlay-live-region",children:e})},Fc=({options:e,experience:t,cookie:i,savedConsent:o,onOpen:n,onDismiss:r,renderBanner:s,renderModalContent:l,renderModalFooter:a,onVendorPageClick:c,isUiBlocking:u,headerContent:d,isVendorAssetDisclosureView:_,onModalHide:v})=>{const{setServingComponent:g,dispatchFidesEventAndClearTrigger:p}=be(),h=100,b=Cl(),m=e.modalLinkId||"fides-modal-link",k=!t||!!e.fidesEmbed||e.modalLinkId==="",O=Ol(m,k),w=Fe(null),[N,M]=K(null),{i18n:P}=ee(),A=P.t("exp.title"),T=P.t("exp.description"),I=d??{title:A,description:T};F(()=>{N===null&&M(!at(t,i,o,e))},[N]);const[R,U]=K(e.fidesEmbed?at(t,i,o,e):!1);F(()=>(u&&R?js():Ro(),()=>{Ro()}),[u,R]);const Y=S(({saved:ye=!1})=>{ye||r(),p("FidesModalClosed",i,{saved:ye}),g(void 0)},[p,i,r,g]),{instance:D,attributes:G}=Jn({id:"fides-modal",onClose:()=>{Y({saved:!1}),v&&v()}});F(()=>{D&&D.on("show",()=>{document.documentElement.style.overflowY="hidden"}).on("hide",()=>{document.documentElement.style.overflowY=""})},[D]);const{attributes:J}=Jn({id:"fides-banner",ariaHidden:!R&&!e.fidesEmbed,onClose:()=>{U(!1)}}),fe=S((ye=me.FIDES)=>{e.fidesEmbed?U(!1):D&&(U(!1),D.show(),n(ye))},[D,n,e]),De=S(()=>{D&&!e.fidesEmbed&&(D.hide(),Y({saved:!0}),v&&v())},[D,Y,e.fidesEmbed,v]);F(()=>{e.fidesEmbed&&!R&&n()},[e,n,R]),F(()=>{const ye=setTimeout(()=>{N||U(!0)},h);return()=>clearTimeout(ye)},[N,U]),F(()=>(t&&!e.fidesEmbed&&(window.Fides.showModal=()=>{fe(me.EXTERNAL)}),()=>{window.Fides.showModal=Mt}),[t,fe,e.fidesEmbed]),F(()=>{e.fidesModalDisplay==="immediate"&&fe()},[e.fidesModalDisplay,fe]),F(()=>(document.body.classList.add("fides-overlay-modal-link-shown"),k||O&&(w.current=O,w.current.addEventListener("click",window.Fides.showModal),w.current.classList.add("fides-modal-link-shown")),()=>{w.current&&w.current.removeEventListener("click",window.Fides.showModal)}),[O,k,m]);const gi=()=>{fe()};return!b||!t.experience_config?null:f("div",{id:Gr,tabIndex:-1,children:[!N&&R&&u&&f("div",{className:"fides-modal-overlay"}),e.fidesEmbed?R||!l||!a?null:f(er,{titleProps:G.title,renderModalFooter:()=>a({onClose:De,isMobile:!1}),onVendorPageClick:c,headerContent:I,isVendorAssetDisclosureView:_,children:l()}):f(Ic,{attributes:G,dismissable:t.experience_config.dismissable,onVendorPageClick:c,headerContent:I,isVendorAssetDisclosureView:_,renderModalFooter:()=>a?a({onClose:De,isMobile:!1}):null,children:l&&l()}),!N&&s({attributes:J,isOpen:R,isEmbedded:e.fidesEmbed,onClose:()=>{U(!1)},onManagePreferencesClick:gi}),f(Lc,{})]})},$c=({label:e,name:t,id:i,checked:o,onChange:n,disabled:r,onLabel:s,offLabel:l})=>{const{setTrigger:a}=be(),c=o?s:l;return f("div",{className:"fides-toggle",children:[f("input",{type:"checkbox",name:t,"aria-label":e,className:"fides-toggle-input",onChange:()=>{a({type:Q.TOGGLE,label:e,checked:!o}),n(i)},checked:o,role:"switch",disabled:r}),f("span",{className:"fides-toggle-display",children:c})]})};var jc=Object.defineProperty,Dc=Object.defineProperties,Rc=Object.getOwnPropertyDescriptors,rr=Object.getOwnPropertySymbols,zc=Object.prototype.hasOwnProperty,Mc=Object.prototype.propertyIsEnumerable,ar=(e,t,i)=>t in e?jc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,sr=(e,t)=>{for(var i in t||(t={}))zc.call(t,i)&&ar(e,i,t[i]);if(rr)for(var i of rr(t))Mc.call(t,i)&&ar(e,i,t[i]);return e},lr=(e,t)=>Dc(e,Rc(t));const cr=({noticeKey:e,title:t,checked:i,onToggle:o,children:n,badge:r,gpcBadge:s,disabled:l,onLabel:a,offLabel:c,isHeader:u,includeToggle:d=!0})=>{const{isOpen:_,getButtonProps:v,getDisclosureProps:g,onToggle:p}=El({id:e}),h=(k,O)=>{(k.code==="Space"||k.code==="Enter")&&(k.preventDefault(),O&&p())},b=n!=null,m=b?v():{};return f("div",{className:_&&b?"fides-notice-toggle fides-notice-toggle-expanded":"fides-notice-toggle",children:[f("div",{className:"fides-notice-toggle-title",children:[f("span",lr(sr({role:"button",tabIndex:0,onKeyDown:k=>h(k,b)},m),{className:u?"fides-notice-toggle-trigger fides-notice-toggle-header":"fides-notice-toggle-trigger",children:f("span",{className:"fides-flex-center fides-justify-space-between",children:t})})),f("span",{className:"fides-notice-toggle-controls",children:[s,r?f("span",{className:"fides-notice-badge",children:r}):null,d?f($c,{label:t,name:e,id:e,checked:i,onChange:o,disabled:l,onLabel:a,offLabel:c}):null]})]},e),n?f("div",lr(sr({},g()),{children:n})):null]})},Uc=()=>f("hr",{className:"fides-divider"}),Bc=({noticeToggles:e,enabledNoticeKeys:t,onChange:i,renderDescription:o})=>{const{i18n:n}=ee(),r=a=>{const c={key:a,type:"notice"};t.indexOf(a)===-1?i([...t,a],c):i(t.filter(u=>u!==a),c)};let s,l;return vo(n)===Z&&(s="On",l="Off"),f("div",{children:e.map((a,c)=>{const{noticeKey:u,title:d,description:_,checked:v,disabled:g,gpcStatus:p}=a,h=c===e.length-1;return f("div",{children:[f(cr,{noticeKey:u,title:d,checked:v,onToggle:r,gpcBadge:f(Gn,{status:p}),disabled:g,onLabel:s,offLabel:l,children:o?o(a):_}),h?null:f(Uc,{})]},u)})})},Gc=({cookiesByNotice:e,onBack:t})=>{const{i18n:i}=ee();return f("div",{children:[f("button",{type:"button",className:"fides-link-button",onClick:t,"aria-label":"back",children:f("span",{className:"fides-flex-center fides-back-link",style:{marginBottom:"12px"},children:i.t("static.other.back")})}),e.length>=1?f("div",{style:{marginTop:"8px",marginBottom:"8px"},children:f("strong",{children:i.t("static.other.vendors")})}):null,f("div",{className:"fides-modal-notices",style:{marginTop:"12px"},children:(()=>{const o=new Map;return e.forEach(r=>{(r.cookies||[]).forEach(s=>{const l=s.system_name||"Other",a=o.get(l)||[];a.push(s),o.set(l,a)})}),Array.from(o.entries()).map(([r,s])=>{const l=s.some(a=>a.duration!=null&&a.duration!=="");return f("div",{children:f(cr,{noticeKey:`vendor-${r}`,title:r,checked:!1,onToggle:()=>{},includeToggle:!1,children:f("table",{className:"fides-vendor-details-table",children:[f("thead",{children:f("tr",{children:[f("th",{width:l?"80%":void 0,children:i.t("static.other.cookies")}),l?f("th",{width:"20%",style:{textAlign:"right"},children:i.t("static.other.retention")}):null]})}),f("tbody",{children:s.map(a=>f("tr",{children:[f("td",{style:{paddingBottom:"2px",paddingTop:"2px"},children:[f("div",{children:a.name}),a.description?f("div",{children:[i.t("static.other.description"),":"," ",a.description]}):null]}),l?f("td",{style:{textAlign:"right"},children:a.duration?a.duration:"-"}):null]},`${r}-${a.name}`))})]})})},`vendor-${r}`)})})()})]})};var Vc=Object.defineProperty,Hc=Object.defineProperties,Kc=Object.getOwnPropertyDescriptors,dr=Object.getOwnPropertySymbols,Yc=Object.prototype.hasOwnProperty,Wc=Object.prototype.propertyIsEnumerable,ur=(e,t,i)=>t in e?Vc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,qc=(e,t)=>{for(var i in t||(t={}))Yc.call(t,i)&&ur(e,i,t[i]);if(dr)for(var i of dr(t))Wc.call(t,i)&&ur(e,i,t[i]);return e},Zc=(e,t)=>Hc(e,Kc(t));const Jc=()=>{var e,t,i;const{fidesGlobal:o,setFidesGlobal:n}=zn(),{fidesRegionString:r,cookie:s,options:l,saved_consent:a}=o,c=o.experience,{i18n:u,currentLocale:d,setCurrentLocale:_}=ee(),{triggerRef:v,setTrigger:g,servingComponentRef:p,setServingComponent:h,dispatchFidesEventAndClearTrigger:b}=be(),m=Ne(),k=E=>c.privacy_notices?c.privacy_notices.map(x=>Ni(x,E||a||m?.consent)?x.notice_key:""):[];F(()=>{!d&&u.locale&&_(u.locale)},[d,u.locale,_]);const O=ue(()=>{if(c.experience_config){const E=dt(d,u.getDefaultLocale(),c.experience_config);return E?.privacy_experience_config_history_id}},[c,d]),w=ue(()=>{var E;const $=((E=c.privacy_notices)!=null?E:[]).map(X=>{var Ye,Pt;const hi=X.consent_mechanism===W.NOTICE_ONLY||((Pt=(Ye=l.fidesDisabledNotices)==null?void 0:Ye.includes(X.notice_key))!=null?Pt:!1)||X.disabled,fd=Ht(d,u.getDefaultLocale(),X);return{notice:Zc(qc({},X),{disabled:hi}),bestTranslation:fd}}),z=$.filter(X=>X.notice.consent_mechanism===W.NOTICE_ONLY),Oe=$.filter(X=>X.notice.consent_mechanism!==W.NOTICE_ONLY);return[...z,...Oe]},[c.privacy_notices,d,l.fidesDisabledNotices]),[N,M]=K(k());window.addEventListener("FidesUpdating",E=>{const{consent:x}=E.detail;Object.entries(x).forEach(([$,z])=>{x[$]=Me(z)}),M(k(x))});const P=w.every(E=>E.notice.consent_mechanism===W.NOTICE_ONLY),A=w.map(E=>{var x,$;const z=N.indexOf(E.notice.notice_key)!==-1,Oe=Se(),X=Ji({value:z,notice:E.notice,consentContext:Oe});return{noticeKey:E.notice.notice_key,title:((x=E.bestTranslation)==null?void 0:x.title)||E.notice.name||"",description:($=E.bestTranslation)==null?void 0:$.description,cookies:E.notice.cookies,checked:z,consentMechanism:E.notice.consent_mechanism,disabled:E.notice.disabled,gpcStatus:X}}),[T,I]=K(!1),[R,U]=K(null),Y=ue(()=>R?w.find(E=>E.notice.notice_key===R):null,[R,w]),D=w.map(E=>{var x;return{noticeKey:E.notice.notice_key,title:((x=E.bestTranslation)==null?void 0:x.title)||E.notice.name||"",cookies:E.notice.cookies||[]}}).filter(E=>E.cookies&&E.cookies.length>0),G=R?D.filter(E=>E.noticeKey===R):D;Sl({privacyExperienceConfigHistoryId:O,privacyNoticeHistoryIds:w.reduce((E,x)=>{var $;const z=($=x.bestTranslation)==null?void 0:$.privacy_notice_history_id;return z&&E.push(z),E},[]),options:l,userGeography:r,acknowledgeMode:P,privacyExperience:c});const J=S((E,x)=>{const $={};w.forEach(z=>{z.notice.consent_mechanism!==W.NOTICE_ONLY?$[z.notice.notice_key]=x.includes(z.notice.notice_key):$[z.notice.notice_key]=!0}),qt(o,{noticeConsent:$,consentMethod:E,eventExtraDetails:{servingComponent:p.current,trigger:v.current}}).finally(()=>{window.Fides&&n(window.Fides),g(void 0)}),M(x)},[w,o,p,v,g,n]),fe=S(E=>{J(E?L.SCRIPT:L.ACCEPT,w.filter(x=>!x.notice.disabled||N.includes(x.notice.notice_key)).map(x=>x.notice.notice_key))},[N,J,w]),De=S(E=>{J(E?L.SCRIPT:L.REJECT,w.filter(x=>x.notice.consent_mechanism===W.NOTICE_ONLY||x.notice.disabled&&N.includes(x.notice.notice_key)).map(x=>x.notice.notice_key))},[N,J,w]);F(()=>{rt(l)&&c.privacy_notices&&(l.fidesConsentOverride===L.ACCEPT?fe(!0):l.fidesConsentOverride===L.REJECT&&De(!0))},[c.privacy_notices,l.fidesConsentOverride]);const gi=S(()=>{h(Re.BANNER),b("FidesUIShown",s)},[s,b,h]),ye=S(E=>{h(Re.MODAL),b("FidesUIShown",s,{trigger:{origin:E}})},[s,b,h]),vr=S(()=>{jt(m?.consent)||J(L.DISMISS,k())},[J,k,m?.consent]),dd=S((E,x)=>{const $={servingComponent:p.current,trigger:v.current,preference:x};M(E),b("FidesUIChanged",s,$)},[v,b,s,p]);if(!c.experience_config)return null;const _r=!!((e=c.experience_config)!=null&&e.dismissable),ud=w.length===1;return f(Fc,{options:l,experience:c,cookie:s,savedConsent:a,isUiBlocking:!_r,isVendorAssetDisclosureView:T,onModalHide:()=>{I(!1),U(null)},headerContent:T&&Y?{title:((t=Y.bestTranslation)==null?void 0:t.title)||Y.notice.name||"",description:((i=Y.bestTranslation)==null?void 0:i.description)||""}:void 0,onOpen:ye,onDismiss:vr,renderBanner:({attributes:E,isEmbedded:x,isOpen:$,onClose:z,onManagePreferencesClick:Oe})=>{var X;const Ye=P||((X=c.experience_config)==null?void 0:X.layer1_button_options)===Tt.ACKNOWLEDGE;return f(Yl,{attributes:E,bannerIsOpen:$,dismissable:_r,onOpen:gi,onClose:()=>{z(),vr()},isEmbedded:x,renderButtonGroup:()=>f(qn,{experience:c,onManagePreferencesClick:Oe,enabledKeys:N,onAcceptAll:()=>{fe(),z()},onRejectAll:()=>{De(),z()},onSave:(Pt,hi)=>{J(Pt,hi),z()},isAcknowledge:Ye,hideOptInOut:Ye,options:l})})},renderModalContent:()=>f("div",{children:T?f(Gc,{cookiesByNotice:G,onBack:()=>{I(!1),U(null)}}):f("div",{className:"fides-modal-notices",children:f(Bc,{noticeToggles:A,enabledNoticeKeys:N,onChange:dd,renderDescription:E=>{var x,$,z;const Oe=(E.cookies||[]).length>0;return f("div",{children:[E.description,Oe&&(($=(x=c.experience_config)==null?void 0:x.asset_disclosure_include_types)!=null&&$.includes(At.COOKIE))&&((z=c.experience_config)!=null&&z.allow_vendor_asset_disclosure)?f("div",{style:{marginTop:"12px"},children:f("button",{type:"button",className:"fides-link-button fides-vendors-disclosure-link",onClick:()=>{U(E.noticeKey),I(!0)},children:u.t("static.other.vendors")})}):null]})}})})}),renderModalFooter:({onClose:E})=>f(qn,{experience:c,enabledKeys:N,onAcceptAll:()=>{fe(),E()},onRejectAll:()=>{De(),E()},onSave:(x,$)=>{J(x,$),E()},isInModal:!0,isAcknowledge:P,hideOptInOut:ud||P,options:l})})},Xc=(e,t)=>{const{i18n:i,initializedFides:o}=e;on(f(Il,{i18nInstance:i,children:f(Ml,{initializedFides:o,children:f(zl,{children:f(wl,{children:f(Jc,{})})})})}),t)};var Qc=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});function ed(e){return Qc(this,null,function*(){var t;if(!((t=e.options.apiOptions)!=null&&t.getPreferencesFn))return null;try{return yield e.options.apiOptions.getPreferencesFn(e)}catch{return null}})}var td=Object.defineProperty,id=Object.defineProperties,od=Object.getOwnPropertyDescriptors,fr=Object.getOwnPropertySymbols,nd=Object.prototype.hasOwnProperty,rd=Object.prototype.propertyIsEnumerable,pr=(e,t,i)=>t in e?td(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,re=(e,t)=>{for(var i in t||(t={}))nd.call(t,i)&&pr(e,i,t[i]);if(fr)for(var i of fr(t))rd.call(t,i)&&pr(e,i,t[i]);return e},_i=(e,t)=>id(e,od(t)),ad=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});function sd(e){return ad(this,null,function*(){var t,i,o,n;let r=(t=e??this.config)!=null?t:Zt("Fides must be initialized with a configuration object");zr(!!((i=r.options)!=null&&i.debug)),this.config=r,se("FidesInitializing",void 0,{gppEnabled:this.config.options.gppEnabled||((n=(o=this.config.experience)==null?void 0:o.gpp_settings)==null?void 0:n.enabled),tcfEnabled:this.config.options.tcfEnabled});const s=Go(Pe.OPTIONS,r),l=Go(Pe.EXPERIENCE_TRANSLATION,r),a=yield ed(r);!s.fidesString&&a?.fides_string&&(s.fidesString=a.fides_string);const c={optionsOverrides:s,consentPrefsOverrides:a,experienceTranslationOverrides:l};Rr(s);let u;if(!Ne()){const{consent:p,method:h}=Vi(s);p&&h&&(u=p)}r=_i(re({},r),{options:re(re({},r.options),c.optionsOverrides)}),this.config=r,this.cookie=Hs(r),this.cookie.consent=re(re({},this.cookie.consent),u),this.saved_consent=re({},this.cookie.consent);const{fidesString:d}=r.options;if(d)try{const{nc:p}=Bt(d);this.decodeNoticeConsentString(p);const h={fides_string:d};this.cookie=re(re({},this.cookie),h)}catch{}if(this.experience=r.experience,!Li(this.cookie)||!!u){const p=Ks(_i(re({},r),{cookie:this.cookie,savedConsent:this.saved_consent,updateExperienceFromCookieConsent:Dt}));Object.assign(this,p),pt(this),this.experience=p.experience,io(this.cookie,{shouldShowExperience:this.shouldShowExperience()})}const g=yield Ys({fides:this,initOverlay:an,renderOverlay:Xc,updateExperience:Lo,overrides:c});Object.assign(this,g),pt(this),oo(this.cookie,{shouldShowExperience:this.shouldShowExperience()})})}const ld=Fo({}),cd=_i(re({},ld),{init:sd});pt(cd),y.AssetType=At,y.BannerEnabled=mi,y.ButtonType=ie,y.CONSENT_COOKIE_MAX_AGE_DAYS=Si,y.CONSENT_COOKIE_NAME=$t,y.ComponentType=V,y.ConsentFlagType=pe,y.ConsentMechanism=W,y.ConsentMethod=L,y.ConsentNonApplicableFlagMode=Ce,y.DEFAULT_LOCALE=Z,y.DEFAULT_MODAL_LINK_LABEL=tt,y.EnforcementLevel=yi,y.FidesEndpointPaths=wo,y.FidesEventOrigin=me,y.FidesEventTargetType=Q,y.FidesModalDefaultView=wi,y.GpcStatus=ae,y.LOCALE_REGEX=it,y.Layer1ButtonOption=Tt,y.OverrideType=Pe,y.PrivacyNoticeFramework=bi,y.REQUEST_SOURCE=Po,y.RejectAllMechanism=ki,y.RequestOrigin=Ei,y.SaveConsentPreference=Nt,y.ServingComponent=Re,y.UpdateConsentValidation=ve,y.UserConsentPreference=q,y.allNoticesAreDefaultOptIn=Jr,y.applyOverridesToConsent=Ue,y.areLocalesEqual=ne,y.buildCookieConsentFromConsentPreferences=zi,y.consentCookieObjHasSomeConsentSet=jt,y.constructFidesRegionString=nt,y.createConsentPreferencesToSave=Qr,y.createConsentProxy=Ut,y.createEmptyExperience=ko,y.decodeNoticeConsentString=st,y.defaultShowModal=Mt,y.detectUserLocale=_o,y.dispatchConsentLoadedEvents=io,y.dispatchFidesEvent=se,y.dispatchReadyEvents=oo,y.encodeNoticeConsentString=Xi,y.experienceIsValid=qi,y.extractDefaultLocaleFromExperience=Vt,y.fetchExperience=Eo,y.fetchGvlTranslations=Oo,y.getConsentContext=Se,y.getCookieByName=et,y.getCoreFides=Fo,y.getCurrentLocale=vo,y.getFidesConsentCookie=Ne,y.getGeolocation=$o,y.getGpcStatusFromNotice=Ji,y.getOrMakeFidesCookie=$i,y.getOverrideValidatorMapByType=Wi,y.getTcfDefaultPreference=Xr,y.getWindowObjFromPath=Zi,y.i18n=cs,y.initOverlay=an,y.initializeI18n=ho,y.isConsentOverride=rt,y.isNewFidesCookie=Li,y.isPrivacyExperience=Ae,y.isValidAcString=ia,y.loadGVLMessagesFromExperience=fo,y.loadMessagesFromExperience=uo,y.loadMessagesFromFiles=co,y.loadMessagesFromGVLTranslations=po,y.localizeModalLinkText=bo,y.makeConsentDefaultsLegacy=Di,y.makeFidesCookie=Fi,y.matchAvailableLocales=go,y.messageExists=we,y.noticeHasConsentInCookie=Xe,y.onFidesEvent=to,y.parseCommaSeparatedString=Lt,y.patchNoticesServed=No,y.patchUserPreference=xo,y.processExternalConsentValue=Me,y.raise=Zt,y.removeCookiesFromBrowser=Ri,y.resolveConsentValue=Ni,y.resolveLegacyConsentValue=xi,y.saveFidesCookie=ji,y.selectBestExperienceConfigTranslation=dt,y.selectBestNoticeTranslation=Ht,y.setupI18n=Kt,y.shouldResurfaceBanner=at,y.transformConsentToFidesUserPreference=ze,y.transformTcfPreferencesToCookieKeys=Ir,y.transformUserPreferenceToBoolean=_e,y.updateCookieFromExperience=Ui,y.updateCookieFromNoticePreferences=Mi,y.updateExperience=Lo,y.updateExperienceFromCookieConsentNotices=Dt,y.updateWindowFides=pt,y.validateOptions=Yi});
|
|
11
|
+
);border:1px solid var(--fides-overlay-row-divider-color);display:flex;margin-bottom:22px;padding:4px}.fides-radio-button{background-color:transparent;border:none;cursor:pointer;flex:1;padding:5px 16px}.fides-radio-button[aria-checked=true]{background-color:var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-primary-button-text-color)}.fides-flex-center{align-items:center;display:flex}.fides-margin-right{margin-right:3px}.fides-justify-space-between{justify-content:space-between}.fides-vendor-details-table{width:100%}.fides-vendor-details-table td,.fides-vendor-details-table th{font-size:var(--fides-overlay-font-size-body-small);text-align:left}.fides-vendor-details-table td{border-bottom:1px solid var(--fides-overlay-row-divider-color)}.fides-link-button{background:none;border:none;cursor:pointer;padding:0}.fides-back-link:before{border-color:var(--fides-overlay-primary-color);border-style:solid;border-width:1.5px 1.5px 0 0;content:"";display:inline-block;height:.6em;margin-right:3px;transform:translateY(-1px) rotate(225deg);transition:transform .12s ease-in-out;width:.6em}.fides-external-link,.fides-primary-text-color{color:var(--fides-overlay-primary-color)}.fides-external-link{font-size:var(--fides-overlay-font-size-body-small);font-weight:500;margin-right:16px}.fides-info-box{background-color:var(--fides-overlay-neutral-background-color);border-radius:var(--fides-overlay-component-border-radius);margin:10px 0;padding:16px}.fides-info-box p{margin:0}.fides-tabs .tabpanel-container{overflow:hidden}.tabpanel-container section[hidden]{display:none}.fides-paging-buttons{display:flex;gap:8px;justify-content:center}.fides-paging-info{color:var(--fides-overlay-font-color-dark);font-size:var(--fides-overlay-font-size-body-small);font-weight:600;padding:8px}.fides-paging-previous-button{margin-right:8px}.fides-paging-next-button,.fides-paging-previous-button{background-color:transparent;border:none;cursor:pointer;padding:6px}.fides-paging-next-button:disabled,.fides-paging-previous-button:disabled{cursor:default}.fides-i18n-menu{position:relative}.fides-modal-footer .fides-i18n-menu{bottom:var(--fides-overlay-padding);left:var(--fides-overlay-padding);position:absolute}.fides-modal-footer .fides-button-group-i18n{min-height:var(--fides-overlay-modal-secondary-button-group-height)}button.fides-i18n-button{align-items:center;background-color:transparent;border:none;color:var(--fides-overlay-body-font-color);cursor:pointer;display:flex;flex-direction:row;font-family:var(--fides-overlay-font-family);font-size:var(--fides-overlay-font-size-body);gap:2px;height:var(--fides-overlay-font-size-body);text-transform:uppercase;white-space:nowrap}#fides-i18n-icon{animation-duration:var(--fides-overlay-language-loading-indicator-speed);animation-iteration-count:infinite;animation-timing-function:linear;transform-origin:50% 50%}div#fides-overlay-wrapper .fides-i18n-button{box-sizing:content-box}.fides-i18n-popover{background-color:var(--fides-overlay-background-dark-color);border-radius:var(--fides-overlay-component-border-radius);bottom:100%;display:flex;flex-direction:column;gap:1px;left:0;max-height:0;min-width:calc(var(--fides-base-font-size)*9);overflow:hidden;position:absolute;transition:max-height .2s ease-in-out}.fides-i18n-menu-open .fides-i18n-popover{border:1px solid var(--fides-overlay-primary-color);max-height:calc(var(--fides-base-font-size)*7);overflow:scroll}.fides-i18n-button:hover{background-color:var(--fides-overlay-hover-color);border-radius:var(--fides-overlay-language-button-border-radius)}.fides-i18n-menu-open .fides-i18n-caret{transform:rotate(180deg)}button.fides-banner-button.fides-menu-item{background:var(--fides-overlay-secondary-button-background-color);border:none;border-radius:0;color:var(--fides-overlay-secondary-button-text-color);margin:0;padding-left:calc(var(--fides-base-font-size)*1.5);text-align:left;width:100%}button.fides-banner-button.fides-menu-item[aria-checked=true]{background:var(--fides-overlay-primary-button-background-color);color:var(--fides-overlay-primary-button-text-color)}button.fides-banner-button.fides-menu-item[aria-checked=true]:before{content:"\\2713";display:inline-block;margin-left:calc(var(--fides-base-font-size)*-1);margin-right:calc(var(--fides-base-font-size)*.25)}button.fides-banner-button.fides-menu-item:not([aria-checked=true]):hover{background:var(--fides-overlay-secondary-button-background-hover-color)}.fides-sr-only{height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;width:1px}@media (min-width:1280px){div#fides-banner{width:60%}}@media (min-width:768px){div#fides-banner{border:var(--fides-overlay-container-border-width) solid var(--fides-overlay-primary-color);border-radius:var(--fides-overlay-component-border-radius);width:75%}div#fides-banner-container.fides-banner-bottom{bottom:var(--fides-overlay-banner-offset)}}.fides-notice-toggle-title .fides-badge-container{align-items:center;display:flex;justify-content:center;min-width:fit-content;order:1}.fides-notice-toggle-title .fides-notice-toggle-controls{order:2}@media (max-width:480px){.fides-notice-toggle-title .fides-badge-container span{margin-bottom:4px;margin-top:4px}.fides-notice-toggle .fides-notice-toggle-title .fides-notice-toggle-trigger{max-width:calc(100% - var(--fides-overlay-toggle-width) - var(--8px))}.fides-notice-toggle-title .fides-badge-container{display:flex;justify-content:center;order:2;position:static;width:100%}.fides-notice-toggle .fides-notice-toggle-title{flex-wrap:wrap}div#fides-banner-heading{align-items:start;flex-direction:column;gap:8px;justify-content:start;margin-bottom:8px}}@media (max-width:768px){div#fides-consent-content,div.fides-modal-content{width:100%!important}.fides-modal-button-group{flex-direction:column}button.fides-banner-button{margin:0 8px 12px 0}div#fides-banner{padding:24px;width:100%}div#fides-banner-description{margin-bottom:0}div#fides-banner-inner div#fides-button-group{align-items:flex-start;flex-direction:column;gap:12px;padding-top:24px}.fides-banner-button-group{flex-direction:column;width:100%}button.fides-banner-button{margin:0;width:100%}div#fides-banner-inner-container{max-height:50vh;overflow-y:auto;scrollbar-gutter:stable}div.fides-privacy-policy-link{width:100%}.fides-modal-footer{max-width:100%}.fides-banner-secondary-actions{gap:12px}.fides-banner-secondary-actions .fides-manage-preferences-button{order:0}.fides-banner-secondary-actions .fides-privacy-policy{order:1}.fides-banner-secondary-actions .fides-i18n-menu{order:2}.fides-banner-button-group.fides-button-group-i18n{min-height:68px}.fides-i18n-menu{bottom:var(--fides-overlay-padding);left:var(--fides-overlay-padding);position:absolute}}.fides-data-toggle-skeleton__container{align-items:center;border-bottom:1px solid var(--fides-overlay-row-divider-color);display:flex;justify-content:space-between;min-height:40px;padding-inline:12px;width:100%}.fides-notice-toggle .fides-skeleton__container:hover{background-color:unset;cursor:default}.fides-skeleton__component{animation-duration:1.4s;animation-iteration-count:infinite;animation-name:fides-skeleton-loading;animation-timing-function:ease;background:linear-gradient(90deg,var(--fides-overlay-skeleton-gradient-from-color) 25%,var(--fides-overlay-skeleton-gradient-to-color) 37%,var(--fides-overlay-skeleton-gradient-from-color) 63%);background-size:400% 100%}.fides-skeleton__text{border-radius:var(--fides-overlay-component-border-radius);height:var(--fides-overlay-line-height);width:60%}.fides-skeleton__switch{border-radius:100vw;height:24px;width:50px}@keyframes fides-skeleton-loading{0%{background-position:100% 50%}to{background-position:0 50%}}`;Ol(Cl);const Ln=Ie(void 0),Pl=({children:e})=>{const[t,i]=K(""),o=S(s=>{i(""),setTimeout(()=>{i(s)},0)},[]),n=S(()=>{i("")},[]),r=pe(()=>({message:t,announce:o,clear:n}),[t,o,n]);return j(()=>{const s=()=>{o("Preferences updated")},l=()=>{n()};return window.addEventListener("FidesUIShown",l),window.addEventListener("FidesUpdated",s),()=>{window.removeEventListener("FidesUIShown",l),window.removeEventListener("FidesUpdated",s)}},[o,n]),f(Ln.Provider,{value:r,children:e})},In=()=>{const e=Fe(Ln);if(!e)throw new Error("useLiveRegion must be used within a LiveRegionProvider");return e},xl=3e3,Ke=(e=!1,t=xl)=>{const[i,o]=K(e),n=$e(null),{clear:r}=In(),s=S(()=>{n.current!==null&&(window.clearTimeout(n.current),n.current=null)},[]),l=S(()=>{s(),o(!1),r()},[s,r]),a=S(c=>{s(),o(!0);const u=c??t;n.current=window.setTimeout(()=>{o(!1),r(),n.current=null},u)},[s,t,r]);return j(()=>()=>s(),[s]),{isActive:i,activate:a,deactivate:l}},Nl=({id:e})=>{const[t,i]=K(!1),o=S(()=>i(!1),[]),n=S(()=>i(!0),[]),r=S(()=>{t?o():n()},[t,n,o]);return{isOpen:t,onOpen:n,onClose:o,onToggle:r,getButtonProps:()=>({"aria-expanded":t,"aria-controls":e,onClick:r}),getDisclosureProps:()=>({id:e,className:t?"fides-disclosure-visible":"fides-disclosure-hidden"})}},Al=(e,t)=>{const[i,o]=K(null);return j(()=>{if(t)return()=>{};Bo(e).then(n=>{o(n)})},[e,t]),i},Tl=()=>{const[e,t]=K(!1);return j(()=>{t(!0)},[]),e};var Sl=Object.defineProperty,$n=Object.getOwnPropertySymbols,Ll=Object.prototype.hasOwnProperty,Il=Object.prototype.propertyIsEnumerable,Fn=(e,t,i)=>t in e?Sl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,$l=(e,t)=>{for(var i in t||(t={}))Ll.call(t,i)&&Fn(e,i,t[i]);if($n)for(var i of $n(t))Il.call(t,i)&&Fn(e,i,t[i]);return e},Fl=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const jl=({options:e,privacyExperience:t,privacyExperienceConfigHistoryId:i,privacyNoticeHistoryIds:o,userGeography:n,acknowledgeMode:r,tcfNoticesServed:s})=>{const l=S(a=>Fl(void 0,null,function*(){var c;if(e.fidesDisableSaveApi||e.fidesDisableNoticesServedApi||!a.detail.extraDetails||a.detail.extraDetails.servingComponent===Re.BANNER&&!((c=t?.experience_config)!=null&&c.show_layer1_notices))return;const u=Lo.getServedNoticeHistoryId(),d=$l({served_notice_history_id:u,browser_identity:a.detail.identity,privacy_experience_config_history_id:i||"",user_geography:n,acknowledge_mode:r,privacy_notice_history_ids:o||[],serving_component:String(a.detail.extraDetails.servingComponent),property_id:t.property_id},s);So({request:d,options:e})}),[e,t,i,n,r,o,s]);j(()=>(window.addEventListener("FidesUIShown",l),()=>{window.removeEventListener("FidesUIShown",l)}),[l])},jn=Ie({}),Dl=({i18nInstance:e,children:t})=>{const[i,o]=K(),[n,r]=K(!1),s=S(a=>{e.activate(a),o(a)},[e,o]);j(()=>{const a=document.getElementById(Wr);n?a?.style.setProperty("animation-name","spin"):a?.style.removeProperty("animation-name")},[n]);const l=pe(()=>({i18n:e,currentLocale:i,setCurrentLocale:s,isLoading:n,setIsLoading:r}),[e,i,s,n]);return f(jn.Provider,{value:l,children:t})},ee=()=>{const e=Fe(jn);if(!e||Object.keys(e).length===0)throw new Error("useI18n must be used within a I18nProvider");return e};var Rl=Object.defineProperty,zl=Object.defineProperties,Ml=Object.getOwnPropertyDescriptors,Dn=Object.getOwnPropertySymbols,Ul=Object.prototype.hasOwnProperty,Bl=Object.prototype.propertyIsEnumerable,Rn=(e,t,i)=>t in e?Rl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,pi=(e,t)=>{for(var i in t||(t={}))Ul.call(t,i)&&Rn(e,i,t[i]);if(Dn)for(var i of Dn(t))Bl.call(t,i)&&Rn(e,i,t[i]);return e},Vl=(e,t)=>zl(e,Ml(t));const zn=Ie({}),Gl=({children:e})=>{const t=$e(),i=$e(),o=S(l=>{t.current=l},[]),n=S(l=>{i.current=l},[]),r=S((l,a,c)=>{var u;ce(l,a,Vl(pi({},c),{servingComponent:(u=c?.servingComponent)!=null?u:i.current,trigger:pi(pi({},c?.trigger),t.current)})),o(void 0)},[o]),s=pe(()=>({triggerRef:t,setTrigger:o,servingComponentRef:i,setServingComponent:n,dispatchFidesEventAndClearTrigger:r}),[o,r,n]);return f(zn.Provider,{value:s,children:e})},me=()=>{const e=Fe(zn);if(!e||Object.keys(e).length===0)throw new Error("useEvent must be used within a EventProvider");return e},Mn=Ie({}),Hl=({initializedFides:e,children:t})=>{const[i,o]=K(e),n=pe(()=>({fidesGlobal:i,setFidesGlobal:o}),[i,o]);return f(Mn.Provider,{value:n,children:t})},Un=()=>{const e=Fe(Mn);if(!e||Object.keys(e).length===0)throw new Error("useFidesGlobal must be used within a FidesGlobalProvider");return e},Bn=({onClick:e,ariaLabel:t,hidden:i=!1})=>f("button",{type:"button","aria-label":t,className:"fides-close-button",onClick:e,style:{visibility:i?"hidden":"visible"},children:f("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",children:f("path",{fill:"#2D3748",d:"m8 7.057 3.3-3.3.943.943-3.3 3.3 3.3 3.3-.943.943-3.3-3.3-3.3 3.3-.943-.943 3.3-3.3-3.3-3.3.943-.943 3.3 3.3Z"})})}),Kl=Ie({}),vi="__VENDOR_COUNT_LINK__",Vn=(e,t)=>t?f("span",{dangerouslySetInnerHTML:{__html:e.trim()}}):Us(e).trim(),Gn=({description:e,onVendorPageClick:t,allowHTMLDescription:i=!1})=>{const[o,n]=K(),{setTrigger:r}=me();let s=0;const l=Fe(Kl);return l?.vendorCount&&(s=l.vendorCount),j(()=>{if(e)if(e.includes(vi)&&t){const a=e.split(vi);for(let u=1;u<a.length;u+=2)a.splice(u,0,f(ue,{children:[" ",f("button",{type:"button",className:"fides-link-button fides-vendor-count",onClick:()=>{t&&(r({type:Q.LINK,label:vi}),t())},children:s})," "]}));const c=a.map(u=>typeof u=="string"?Vn(u,i):u);n(c)}else n([Vn(e,i)])},[e,t]),e?f("div",{children:o}):null};var Yl=Object.defineProperty,Wl=Object.defineProperties,ql=Object.getOwnPropertyDescriptors,Pt=Object.getOwnPropertySymbols,Hn=Object.prototype.hasOwnProperty,Kn=Object.prototype.propertyIsEnumerable,Yn=(e,t,i)=>t in e?Yl(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,Zl=(e,t)=>{for(var i in t||(t={}))Hn.call(t,i)&&Yn(e,i,t[i]);if(Pt)for(var i of Pt(t))Kn.call(t,i)&&Yn(e,i,t[i]);return e},Xl=(e,t)=>Wl(e,ql(t)),Jl=(e,t)=>{var i={};for(var o in e)Hn.call(e,o)&&t.indexOf(o)<0&&(i[o]=e[o]);if(e!=null&&Pt)for(var o of Pt(e))t.indexOf(o)<0&&Kn.call(e,o)&&(i[o]=e[o]);return i};const Wn=e=>{var t=e,{status:i}=t,o=Jl(t,["status"]);const{i18n:n}=ee(),r=n.t("static.gpc"),s=i.valueOf();let l="";if(i===se.APPLIED)l=n.t("static.gpc.status.applied");else if(i===se.OVERRIDDEN)l=n.t("static.gpc.status.overridden");else if(i===se.NONE)return null;return f("span",Xl(Zl({className:"fides-gpc-label"},o),{children:[r," ",f("span",{className:`fides-gpc-badge fides-gpc-badge-${s}`,children:l})]}))};var Ql=Object.defineProperty,ec=Object.defineProperties,tc=Object.getOwnPropertyDescriptors,qn=Object.getOwnPropertySymbols,ic=Object.prototype.hasOwnProperty,oc=Object.prototype.propertyIsEnumerable,Zn=(e,t,i)=>t in e?Ql(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,_i=(e,t)=>{for(var i in t||(t={}))ic.call(t,i)&&Zn(e,i,t[i]);if(qn)for(var i of qn(t))oc.call(t,i)&&Zn(e,i,t[i]);return e},gi=(e,t)=>ec(e,tc(t));const nc=({attributes:e,dismissable:t,onOpen:i,onClose:o,bannerIsOpen:n,children:r,onVendorPageClick:s,renderButtonGroup:l,className:a,isEmbedded:c})=>{var u,d,_,v,g,p,h,b,m,k,O;const{container:w,dialog:x,title:U,closeButton:P}=e,{i18n:A}=ee(),T=Le().globalPrivacyControl,{setTrigger:L}=me();j(()=>{n&&i()},[n,i]);const I=ke(A,"exp.banner_title")?A.t("exp.banner_title"):A.t("exp.title"),B=ke(A,"exp.banner_description")?A.t("exp.banner_description"):A.t("exp.description"),Y=["fides-banner","fides-banner-bottom",!n&&"fides-banner-hidden",c&&"fides-embedded",a].filter(V=>typeof V=="string").join(" ");let z=[];return(_=(d=(u=window.Fides)==null?void 0:u.experience)==null?void 0:d.experience_config)!=null&&_.show_layer1_notices&&((g=(v=window.Fides)==null?void 0:v.experience)!=null&&g.privacy_notices)&&(z=(h=(p=window.Fides)==null?void 0:p.experience)==null?void 0:h.privacy_notices),f("div",gi(_i({className:Y},w),{id:`${w.id}-container`,children:f("div",{id:w.id,children:f("div",gi(_i({},x),{id:`${w.id}-inner`,children:[f(Bn,{ariaLabel:"Close banner",onClick:()=>{L({type:Q.BUTTON,label:"Close banner"}),P.onClick(),o()},hidden:((m=(b=window.Fides)==null?void 0:b.options)==null?void 0:m.preventDismissal)||!t}),f("div",{id:`${w.id}-inner-container`,children:[f("div",{className:"fides-banner__col",children:[f("div",{id:"fides-banner-heading",children:[f("div",gi(_i({},U),{className:"fides-banner-title",children:I})),T&&f(Wn,{status:se.APPLIED})]}),f("div",{id:`${w.id}-description`,className:"fides-banner-description fides-banner__content",children:[f(Gn,{description:B,onVendorPageClick:s,allowHTMLDescription:(O=(k=window.Fides)==null?void 0:k.options)==null?void 0:O.allowHTMLDescription}),!!z?.length&&f("div",{id:`${w.id}-notices`,className:"fides-banner-notices",children:z.map((V,J)=>f("span",{children:[f("strong",{children:V.name}),J<z.length-1&&", "]},V.id))})]})]}),r]}),l()]}))})}))},rc=e=>{const[t,i]=K(!1);return j(()=>{const o=window.matchMedia(e);i(o.matches);function n(r){i(r.matches)}return o.addEventListener?o.addEventListener("change",n):o.addListener(n),()=>{o.removeEventListener?o.removeEventListener("change",n):o.removeListener(n)}},[e]),t},ac=()=>f("svg",{xmlns:"http://www.w3.org/2000/svg",width:"31",height:"20",fill:"currentColor",className:"ethyca-logo",role:"img","aria-label":"Ethyca",children:f("path",{d:"M11.5602 0H8.70311V7.9999H11.5602V0ZM23.0026 12.0001H20.1455V20H23.0026V12.0001ZM14.1258 20H17.5799L12.1315 11.9774V17.0631L14.1258 20ZM8.13179 17.0626V11.9769L2.68588 19.9995H6.14003L8.13129 17.0626H8.13179ZM23.5744 2.93688V8.02263L29.0198 0H25.5682L23.5739 2.93688H23.5744ZM19.5742 2.93688L17.5799 0H14.1258L19.5742 8.02263V2.93688ZM19.5717 8.57121H12.132V11.4283H19.5717V8.57121ZM31 8.57121H23.5603V11.4283H31V8.57121ZM8.13179 8.57121H0.691589V11.4283H8.13179V8.57121Z"})}),sc=()=>f("div",{className:"fides-brand",children:f("a",{href:"https://ethyca.com/",target:"_blank",rel:"noopener noreferrer",className:"fides-brand-link",children:["Powered by",f(ac,{})]})}),lc=()=>f("svg",{xmlns:"http://www.w3.org/2000/svg",id:"icon",fill:"currentColor",viewBox:"0 0 32 32",children:[f("path",{d:"M16 2a14 14 0 1 0 14 14A14 14 0 0 0 16 2m-2 19.59-5-5L10.59 15 14 18.41 21.41 11l1.596 1.586Z"}),f("path",{id:"inner-path",d:"m14 21.591-5-5L10.591 15 14 18.409 21.41 11l1.595 1.585z",fill:"none"}),f("path",{id:"_Transparent_Rectangle_",d:"M0 0h32v32H0z",fill:"none"})]}),cc=()=>f("div",{className:"fides-spinner"}),je=({buttonType:e,label:t,id:i,onClick:o,className:n="",disabled:r,loading:s,complete:l})=>{const{isActive:a,activate:c,deactivate:u}=Ke();return j(()=>{l?c():u()},[c,l,u]),f("button",{type:"button",id:i,className:`fides-banner-button fides-banner-button-${e.valueOf()} ${n}`,onClick:o,disabled:r||s,style:{cursor:r||s?"not-allowed":"pointer"},children:f("span",{style:{display:"flex",alignItems:"center",gap:"0.5em"},children:[t||"",s&&f(cc,{}),!s&&a&&f("span",{"aria-hidden":"true",style:{width:"1em",height:"1em"},children:f(lc,{})})]})})},dc=Ie({});var uc=Object.defineProperty,fc=Object.defineProperties,pc=Object.getOwnPropertyDescriptors,xt=Object.getOwnPropertySymbols,Xn=Object.prototype.hasOwnProperty,Jn=Object.prototype.propertyIsEnumerable,Qn=(e,t,i)=>t in e?uc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,vc=(e,t)=>{for(var i in t||(t={}))Xn.call(t,i)&&Qn(e,i,t[i]);if(xt)for(var i of xt(t))Jn.call(t,i)&&Qn(e,i,t[i]);return e},_c=(e,t)=>fc(e,pc(t)),gc=(e,t)=>{var i={};for(var o in e)Xn.call(e,o)&&t.indexOf(o)<0&&(i[o]=e[o]);if(e!=null&&xt)for(var o of xt(e))t.indexOf(o)<0&&Jn.call(e,o)&&(i[o]=e[o]);return i};const hc=e=>{var t=e,{isActive:i,className:o,children:n}=t,r=gc(t,["isActive","className","children"]);return f("button",_c(vc({type:"button",role:"menuitemradio","aria-checked":i},r),{className:`fides-banner-button fides-menu-item ${o||""}`,children:n}))};var bc=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});const yc=({availableLocales:e,options:t,isTCF:i})=>{const[o,n]=K(!1),{i18n:r,currentLocale:s,setCurrentLocale:l,setIsLoading:a}=ee(),c=Fe(dc),u=$e(null),d=$e(null),_=()=>{n(!o)},v=p=>bc(void 0,null,function*(){var h;if(p!==r.locale)if(i){a(!0);const b=yield xo(t.fidesApiUrl,[p]);a(!1),b&&Object.keys(b).length?(c.setGvlTranslations(b[p]),go(r,b,e||[X]),l(p)):console.error(`Unable to load GVL translation for ${p}`)}else l(p);n(!1),(h=u.current)==null||h.focus()}),g=S(p=>{var h,b,m;if(!o)return;const k=((h=d.current)==null?void 0:h.querySelectorAll(".fides-menu-item"))||[],{key:O}=p;if(O==="Escape"||O==="Tab"){n(!1),(b=u.current)==null||b.focus();return}if(O==="ArrowUp"||O==="ArrowDown"){p.preventDefault();const w=Array.from(k).findIndex(U=>U===document.activeElement);let x=w;O==="ArrowDown"?x=w===k.length-1?0:w+1:O==="ArrowUp"&&(x=w===0?k.length-1:w-1),(m=k[x])==null||m.focus()}},[o]);return j(()=>(document.addEventListener("keydown",g),()=>{document.removeEventListener("keydown",g)}),[g]),j(()=>{var p,h;if(o){const b=(p=d.current)==null?void 0:p.querySelectorAll(".fides-menu-item");(h=b?.[0])==null||h.focus()}},[o]),j(()=>{const p=h=>{o&&d.current&&!d.current.contains(h.target)&&u.current&&!u.current.contains(h.target)&&n(!1)};return document.addEventListener("mousedown",p),()=>{document.removeEventListener("mousedown",p)}},[o]),f("div",{className:`fides-i18n-menu ${o?"fides-i18n-menu-open":""}`,ref:d,children:[f("div",{role:"menu",className:"fides-i18n-popover",id:"fides-i18n-popover",children:r.availableLanguages.map(p=>f(hc,{id:s===p.locale?"fidesActiveMenuItem":void 0,onClick:()=>v(p.locale),isActive:s===p.locale,title:p.label_en,"aria-label":p.label_en,tabIndex:-1,children:p.label_original},p.locale))}),f("button",{type:"button",className:"fides-i18n-button",onClick:_,ref:u,"aria-haspopup":"true","aria-expanded":o,"aria-controls":"fides-i18n-popover","aria-label":`Select language, current language is ${s}`,children:[f("svg",{xmlns:"http://www.w3.org/2000/svg",height:"100%",viewBox:"0 0 36 36",fill:"currentColor",id:"fides-i18n-icon",children:f("path",{fill:"currentColor",d:"M18 32.625c.52 0 1.898-.506 3.347-3.403.619-1.245 1.153-2.756 1.547-4.472h-9.788c.394 1.716.928 3.227 1.547 4.472 1.449 2.897 2.827 3.403 3.347 3.403m-5.45-11.25h10.9a32.5 32.5 0 0 0 0-6.75h-10.9a32.5 32.5 0 0 0 0 6.75m.556-10.125h9.788c-.394-1.716-.928-3.227-1.547-4.472C19.898 3.881 18.52 3.375 18 3.375s-1.898.506-3.347 3.403c-.619 1.245-1.153 2.756-1.547 4.472m13.732 3.375A35 35 0 0 1 26.993 18c0 1.153-.056 2.285-.155 3.375h5.393c.253-1.083.394-2.215.394-3.375s-.134-2.292-.394-3.375h-5.393m4.135-3.375a14.7 14.7 0 0 0-6.92-6.567c.992 1.8 1.78 4.043 2.293 6.567h4.634zm-21.326 0c.513-2.524 1.3-4.76 2.292-6.567A14.7 14.7 0 0 0 5.02 11.25h4.634zm-5.878 3.375A14.8 14.8 0 0 0 3.375 18c0 1.16.134 2.292.394 3.375h5.393A35 35 0 0 1 9.007 18c0-1.153.056-2.285.155-3.375zm20.285 16.692a14.7 14.7 0 0 0 6.919-6.567h-4.627c-.513 2.524-1.3 4.76-2.292 6.567m-12.108 0c-.991-1.8-1.779-4.043-2.292-6.567H5.02a14.7 14.7 0 0 0 6.92 6.567zM18 36a18 18 0 1 1 0-36 18 18 0 0 1 0 36"})}),s,f("svg",{className:"fides-i18n-caret",xmlns:"http://www.w3.org/2000/svg",height:"100%",fill:"currentColor",viewBox:"0 0 24 24",children:f("path",{d:"M12 13.172L16.95 8.22198L18.364 9.63598L12 16L5.63599 9.63598L7.04999 8.22198L12 13.172Z"})})]})]})},mc=()=>{const{i18n:e}=ee();if(!ke(e,"exp.privacy_policy_link_label")||!ke(e,"exp.privacy_policy_url"))return null;const t=e.t("exp.privacy_policy_link_label"),i=e.t("exp.privacy_policy_url");return f("div",{id:"fides-privacy-policy-link",style:{display:"flex",alignItems:"center",justifyContent:"center"},children:f("a",{href:i,rel:"noopener noreferrer",target:"_blank",className:"fides-privacy-policy",children:t})})},wc=({availableLocales:e=[X],onManagePreferencesClick:t,renderFirstButton:i,onAcceptAll:o,onRejectAll:n,hideOptInOut:r,hideRejectAll:s,options:l,isInModal:a,isTCF:c,isGVLLoading:u})=>{var d;const{i18n:_}=ee(),{setTrigger:v}=me(),g=rc("(max-width: 768px)"),{isActive:p,activate:h}=Ke(!1),{isActive:b,activate:m}=Ke(!1),k=((d=_.availableLanguages)==null?void 0:d.length)>1,O=ke(_,"exp.privacy_policy_link_label")&&ke(_,"exp.privacy_policy_url"),w=a&&l.showFidesBrandLink;return f("div",{id:"fides-button-group",children:[f("div",{className:a?"fides-modal-button-group fides-modal-primary-actions":"fides-banner-button-group fides-banner-primary-actions",children:[!!i&&i(),!r&&f(ue,{children:[c&&!!t&&f(je,{buttonType:oe.SECONDARY,label:_.t("exp.privacy_preferences_link_label"),onClick:()=>{v({type:Q.BUTTON,label:_.t("exp.privacy_preferences_link_label")}),t()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button"}),!s&&f(je,{buttonType:oe.PRIMARY,label:_.t("exp.reject_button_label"),onClick:()=>{v({type:Q.BUTTON,label:_.t("exp.reject_button_label")}),n(),m()},className:"fides-reject-all-button",id:"fides-reject-all-button",loading:u,complete:b}),f(je,{buttonType:oe.PRIMARY,label:_.t("exp.accept_button_label"),onClick:()=>{v({type:Q.BUTTON,label:_.t("exp.accept_button_label")}),o(),h()},className:"fides-accept-all-button",id:"fides-accept-all-button",loading:u,complete:p})]})]}),f("div",{className:`${a?"fides-modal-button-group fides-modal-secondary-actions":"fides-banner-button-group fides-banner-secondary-actions"}${k?" fides-button-group-i18n":""}${O?" fides-button-group-privacy-policy":""}${w?" fides-button-group-brand":""}`,children:[k&&f(yc,{availableLocales:e,options:l,isTCF:!!c}),!c&&!!t&&f(je,{buttonType:g?oe.SECONDARY:oe.TERTIARY,label:_.t("exp.privacy_preferences_link_label"),onClick:()=>{v({type:Q.BUTTON,label:_.t("exp.privacy_preferences_link_label")}),t()},className:"fides-manage-preferences-button",id:"fides-manage-preferences-button"}),O&&f(mc,{}),w&&f(sc,{})]})]})},er=({experience:e,onAcceptAll:t,onRejectAll:i,onSave:o,onManagePreferencesClick:n,enabledKeys:r,isInModal:s,isAcknowledge:l,hideOptInOut:a=!1,options:c})=>{const{isActive:u,activate:d}=Ke(!1),{isActive:_,activate:v}=Ke(!1),{i18n:g}=ee(),{setTrigger:p}=me();if(!e.experience_config||!e.privacy_notices)return null;const h=()=>{o($.ACKNOWLEDGE,r)},b=()=>{o($.SAVE,r)},m=()=>l?f(je,{buttonType:oe.PRIMARY,label:g.t("exp.acknowledge_button_label"),onClick:()=>{p({type:Q.BUTTON,label:g.t("exp.acknowledge_button_label")}),h(),d()},className:"fides-acknowledge-button",complete:u}):s?f(je,{buttonType:a?oe.PRIMARY:oe.SECONDARY,label:g.t("exp.save_button_label"),onClick:()=>{p({type:Q.BUTTON,label:g.t("exp.save_button_label")}),b(),v()},className:"fides-save-button",id:"fides-save-button",complete:_}):null;return f(wc,{availableLocales:e.available_locales,onManagePreferencesClick:n,onAcceptAll:t,onRejectAll:i,isInModal:s,renderFirstButton:m,hideOptInOut:a,options:c})};var kc=['a[href]:not([tabindex^="-"])','area[href]:not([tabindex^="-"])','input:not([type="hidden"]):not([type="radio"]):not([disabled]):not([tabindex^="-"])','input[type="radio"]:not([disabled]):not([tabindex^="-"])','select:not([disabled]):not([tabindex^="-"])','textarea:not([disabled]):not([tabindex^="-"])','button:not([disabled]):not([tabindex^="-"])','iframe:not([tabindex^="-"])','audio[controls]:not([tabindex^="-"])','video[controls]:not([tabindex^="-"])','[contenteditable]:not([tabindex^="-"])','[tabindex]:not([tabindex^="-"])'],Ec="Tab",Oc="Escape";function te(e){this._show=this.show.bind(this),this._hide=this.hide.bind(this),this._maintainFocus=this._maintainFocus.bind(this),this._bindKeypress=this._bindKeypress.bind(this),this.$el=e,this.shown=!1,this._id=this.$el.getAttribute("data-a11y-dialog")||this.$el.id,this._previouslyFocused=null,this._listeners={},this.create()}te.prototype.create=function(){this.$el.setAttribute("aria-hidden",!0),this.$el.setAttribute("aria-modal",!0),this.$el.setAttribute("tabindex",-1),this.$el.hasAttribute("role")||this.$el.setAttribute("role","dialog"),this._openers=Ye('[data-a11y-dialog-show="'+this._id+'"]'),this._openers.forEach(function(t){t.addEventListener("click",this._show)}.bind(this));const e=this.$el;return this._closers=Ye("[data-a11y-dialog-hide]",this.$el).filter(function(t){return t.closest('[aria-modal="true"], [data-a11y-dialog]')===e}).concat(Ye('[data-a11y-dialog-hide="'+this._id+'"]')),this._closers.forEach(function(t){t.addEventListener("click",this._hide)}.bind(this)),this._fire("create"),this},te.prototype.show=function(e){if(this.shown)return this;this._previouslyFocused=document.activeElement;const t=e&&e.target?e.target:null;return t&&Object.is(this._previouslyFocused,document.body)&&(this._previouslyFocused=t),this.$el.removeAttribute("aria-hidden"),this.shown=!0,tr(this.$el),document.body.addEventListener("focus",this._maintainFocus,!0),document.addEventListener("keydown",this._bindKeypress),this._fire("show",e),this},te.prototype.hide=function(e){return this.shown?(this.shown=!1,this.$el.setAttribute("aria-hidden","true"),this._previouslyFocused&&this._previouslyFocused.focus&&this._previouslyFocused.focus(),document.body.removeEventListener("focus",this._maintainFocus,!0),document.removeEventListener("keydown",this._bindKeypress),this._fire("hide",e),this):this},te.prototype.destroy=function(){return this.hide(),this._openers.forEach(function(e){e.removeEventListener("click",this._show)}.bind(this)),this._closers.forEach(function(e){e.removeEventListener("click",this._hide)}.bind(this)),this._fire("destroy"),this._listeners={},this},te.prototype.on=function(e,t){return typeof this._listeners[e]>"u"&&(this._listeners[e]=[]),this._listeners[e].push(t),this},te.prototype.off=function(e,t){var i=(this._listeners[e]||[]).indexOf(t);return i>-1&&this._listeners[e].splice(i,1),this},te.prototype._fire=function(e,t){var i=this._listeners[e]||[],o=new CustomEvent(e,{detail:t});this.$el.dispatchEvent(o),i.forEach(function(n){n(this.$el,t)}.bind(this))},te.prototype._bindKeypress=function(e){const t=document.activeElement;t&&t.closest('[aria-modal="true"]')!==this.$el||(this.shown&&e.key===Oc&&this.$el.getAttribute("role")!=="alertdialog"&&(e.preventDefault(),this.hide(e)),this.shown&&e.key===Ec&&xc(this.$el,e))},te.prototype._maintainFocus=function(e){this.shown&&!e.target.closest('[aria-modal="true"]')&&!e.target.closest("[data-a11y-dialog-ignore-focus-trap]")&&tr(this.$el)};function Cc(e){return Array.prototype.slice.call(e)}function Ye(e,t){return Cc((t||document).querySelectorAll(e))}function tr(e){var t=e.querySelector("[autofocus]")||e;t.focus()}function Pc(e){return Ye(kc.join(","),e).filter(function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)})}function xc(e,t){var i=Pc(e),o=i.indexOf(document.activeElement);t.shiftKey&&o===0?(i[i.length-1].focus(),t.preventDefault()):!t.shiftKey&&o===i.length-1&&(i[0].focus(),t.preventDefault())}function hi(){Ye("[data-a11y-dialog]").forEach(function(e){new te(e)})}typeof document<"u"&&(document.readyState==="loading"?document.addEventListener("DOMContentLoaded",hi):window.requestAnimationFrame?window.requestAnimationFrame(hi):window.setTimeout(hi,16));const Nc=()=>{const[e,t]=K(null),i=S(o=>{if(o!==null){const n=new te(o);t(n)}},[]);return{instance:e,container:i}},ir=({id:e,onClose:t,ariaHidden:i=!0})=>{const{instance:o,container:n}=Nc(),r=`${e}-title`,s=S(()=>{o&&o.hide(),t&&t()},[t,o]);return j(()=>()=>{o&&o.destroy()},[o]),{instance:o,attributes:{container:{id:e,ref:n,role:"alertdialog","aria-hidden":i,"aria-labelledby":r},dialog:{role:"document"},closeButton:{type:"button",onClick:s},title:{role:"heading","aria-level":2,id:r}}}},Ac=()=>f("svg",{xmlns:"http://www.w3.org/2000/svg",width:"18",height:"18",fill:"currentColor",children:f("path",{d:"M9 12.05a.68.68 0 0 0-.68.7c0 .39.32.7.68.7.39 0 .68-.31.68-.7a.66.66 0 0 0-.68-.7Zm0-1.18c.26 0 .44-.2.44-.46V6.19c0-.26-.2-.47-.44-.47a.49.49 0 0 0-.47.47v4.22c0 .25.21.46.47.46Zm7.27 2.27-5.85-9.9c-.3-.5-.83-.8-1.42-.8-.6 0-1.12.3-1.42.8l-5.86 9.9c-.3.5-.3 1.1-.01 1.6.3.51.83.82 1.43.82h11.72c.6 0 1.13-.3 1.43-.82.29-.5.28-1.1-.02-1.6Zm-.82 1.1c-.1.25-.33.38-.62.38H3.14a.7.7 0 0 1-.61-.35.64.64 0 0 1 0-.65l5.86-9.9A.7.7 0 0 1 9 3.37a.7.7 0 0 1 .61.35l5.86 9.9c.1.2.12.44-.02.63Z"})}),Tc=({title:e,description:t})=>f("div",{className:"fides-gpc-banner",children:[f("div",{className:"fides-gpc-warning",children:f(Ac,{})}),f("div",{children:[f("p",{className:"fides-gpc-header",children:e}),f("p",{children:t})]})]});var Sc=Object.defineProperty,Lc=Object.defineProperties,Ic=Object.getOwnPropertyDescriptors,or=Object.getOwnPropertySymbols,$c=Object.prototype.hasOwnProperty,Fc=Object.prototype.propertyIsEnumerable,nr=(e,t,i)=>t in e?Sc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,jc=(e,t)=>{for(var i in t||(t={}))$c.call(t,i)&&nr(e,i,t[i]);if(or)for(var i of or(t))Fc.call(t,i)&&nr(e,i,t[i]);return e},Dc=(e,t)=>Lc(e,Ic(t));const rr=({titleProps:e,className:t,renderModalFooter:i,children:o,onVendorPageClick:n,headerContent:r,isVendorAssetDisclosureView:s})=>{var l,a;const{title:c,description:u}=r,{i18n:d}=ee(),_=Le().globalPrivacyControl,v=d.t("static.gpc.title"),g=d.t("static.gpc.description");return f(ue,{children:[f("div",{id:"fides-consent-content",className:t,children:f("div",{className:"fides-modal-body",children:[f("div",Dc(jc({},e),{className:"fides-modal-title",children:c})),f("p",{className:"fides-modal-description",children:f(Gn,{onVendorPageClick:n,description:u,allowHTMLDescription:(a=(l=window.Fides)==null?void 0:l.options)==null?void 0:a.allowHTMLDescription})}),!s&&_&&f(Tc,{title:v,description:g}),o]})}),f("div",{className:"fides-modal-footer",children:i()})]})};var Rc=Object.defineProperty,zc=Object.defineProperties,Mc=Object.getOwnPropertyDescriptors,ar=Object.getOwnPropertySymbols,Uc=Object.prototype.hasOwnProperty,Bc=Object.prototype.propertyIsEnumerable,sr=(e,t,i)=>t in e?Rc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,lr=(e,t)=>{for(var i in t||(t={}))Uc.call(t,i)&&sr(e,i,t[i]);if(ar)for(var i of ar(t))Bc.call(t,i)&&sr(e,i,t[i]);return e},cr=(e,t)=>zc(e,Mc(t));const Vc=({attributes:e,children:t,dismissable:i,onVendorPageClick:o,renderModalFooter:n,headerContent:r,isVendorAssetDisclosureView:s})=>{const{container:l,dialog:a,title:c,closeButton:u}=e,{setTrigger:d}=me(),{fidesGlobal:_}=Un();return f("div",cr(lr({},l),{className:"fides-modal-container",children:[f("div",{className:"fides-modal-overlay"}),f("div",cr(lr({},a),{className:"fides-modal-content",children:[f("div",{className:"fides-modal-header",children:[f("div",{}),f(Bn,{ariaLabel:"Close modal",onClick:()=>{d({type:"button",label:"Close modal"}),u.onClick()},hidden:_?.options.preventDismissal||!i})]}),f(rr,{titleProps:c,renderModalFooter:n,onVendorPageClick:o,headerContent:r,isVendorAssetDisclosureView:s,children:t})]}))]}))},Gc=()=>{const{message:e}=In();return f("div",{role:"status","aria-live":"polite","aria-relevant":"additions",className:"fides-sr-only",id:"fides-overlay-live-region",children:e})},Hc=({options:e,experience:t,cookie:i,savedConsent:o,onOpen:n,onDismiss:r,renderBanner:s,renderModalContent:l,renderModalFooter:a,onVendorPageClick:c,isUiBlocking:u,headerContent:d,isVendorAssetDisclosureView:_,onModalHide:v})=>{const{setServingComponent:g,dispatchFidesEventAndClearTrigger:p}=me(),h=100,b=Tl(),m=e.modalLinkId||"fides-modal-link",k=!t||!!e.fidesEmbed||e.modalLinkId==="",O=Al(m,k),w=$e(null),[x,U]=K(null),{i18n:P}=ee(),A=P.t("exp.title"),T=P.t("exp.description"),L=d??{title:A,description:T};j(()=>{x===null&&U(!lt(t,i,o,e))},[x]);const[I,B]=K(e.fidesEmbed?lt(t,i,o,e):!1);j(()=>(u&&I?Ms():Uo(),()=>{Uo()}),[u,I]);const Y=S(({saved:ie=!1})=>{ie||r(),p("FidesModalClosed",i,{saved:ie}),g(void 0)},[p,i,r,g]),{instance:z,attributes:V}=ir({id:"fides-modal",onClose:()=>{Y({saved:!1}),v&&v()}});j(()=>{z&&z.on("show",()=>{document.documentElement.style.overflowY="hidden"}).on("hide",()=>{document.documentElement.style.overflowY=""})},[z]);const{attributes:J}=ir({id:"fides-banner",ariaHidden:!I&&!e.fidesEmbed,onClose:()=>{B(!1)}}),ve=S((ie=we.FIDES)=>{e.fidesEmbed?B(!1):z&&(B(!1),z.show(),n(ie))},[z,n,e]),De=S(()=>{z&&!e.fidesEmbed&&(z.hide(),Y({saved:!0}),v&&v())},[z,Y,e.fidesEmbed,v]);j(()=>{e.fidesEmbed&&!I&&n()},[e,n,I]),j(()=>{const ie=setTimeout(()=>{x||B(!0)},h);return()=>clearTimeout(ie)},[x,B]),j(()=>(t&&!e.fidesEmbed&&window.Fides&&(window.Fides.showModal=()=>{ve(we.EXTERNAL)}),()=>{window.Fides&&(window.Fides.showModal=Bt)}),[t,ve,e.fidesEmbed]),j(()=>{e.fidesModalDisplay==="immediate"&&ve()},[e.fidesModalDisplay,ve]),j(()=>{var ie;return document.body.classList.add("fides-overlay-modal-link-shown"),k||O&&(w.current=O,w.current.addEventListener("click",(ie=window.Fides)==null?void 0:ie.showModal),w.current.classList.add("fides-modal-link-shown")),()=>{var We;w.current&&w.current.removeEventListener("click",(We=window.Fides)==null?void 0:We.showModal)}},[O,k,m]);const yi=()=>{ve()};return!b||!t.experience_config?null:f("div",{id:Yr,tabIndex:-1,children:[!x&&I&&u&&f("div",{className:"fides-modal-overlay"}),e.fidesEmbed?I||!l||!a?null:f(rr,{titleProps:V.title,renderModalFooter:()=>a({onClose:De,isMobile:!1}),onVendorPageClick:c,headerContent:L,isVendorAssetDisclosureView:_,children:l()}):f(Vc,{attributes:V,dismissable:t.experience_config.dismissable,onVendorPageClick:c,headerContent:L,isVendorAssetDisclosureView:_,renderModalFooter:()=>a?a({onClose:De,isMobile:!1}):null,children:l&&l()}),!x&&s({attributes:J,isOpen:I,isEmbedded:e.fidesEmbed,onClose:()=>{B(!1)},onManagePreferencesClick:yi}),f(Gc,{})]})},Kc=({label:e,name:t,id:i,checked:o,onChange:n,disabled:r,onLabel:s,offLabel:l})=>{const{setTrigger:a}=me(),c=o?s:l;return f("div",{className:"fides-toggle",children:[f("input",{type:"checkbox",name:t,"aria-label":e,className:"fides-toggle-input",onChange:()=>{a({type:Q.TOGGLE,label:e,checked:!o}),n(i)},checked:o,role:"switch",disabled:r}),f("span",{className:"fides-toggle-display",children:c})]})};var Yc=Object.defineProperty,Wc=Object.defineProperties,qc=Object.getOwnPropertyDescriptors,dr=Object.getOwnPropertySymbols,Zc=Object.prototype.hasOwnProperty,Xc=Object.prototype.propertyIsEnumerable,ur=(e,t,i)=>t in e?Yc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,fr=(e,t)=>{for(var i in t||(t={}))Zc.call(t,i)&&ur(e,i,t[i]);if(dr)for(var i of dr(t))Xc.call(t,i)&&ur(e,i,t[i]);return e},pr=(e,t)=>Wc(e,qc(t));const vr=({noticeKey:e,title:t,checked:i,onToggle:o,children:n,badge:r,gpcBadge:s,disabled:l,onLabel:a,offLabel:c,isHeader:u,includeToggle:d=!0})=>{const{isOpen:_,getButtonProps:v,getDisclosureProps:g,onToggle:p}=Nl({id:e}),h=(k,O)=>{(k.code==="Space"||k.code==="Enter")&&(k.preventDefault(),O&&p())},b=n!=null,m=b?v():{};return f("div",{className:_&&b?"fides-notice-toggle fides-notice-toggle-expanded":"fides-notice-toggle",children:[f("div",{className:"fides-notice-toggle-title",children:[f("span",pr(fr({role:"button",tabIndex:0,onKeyDown:k=>h(k,b)},m),{className:u?"fides-notice-toggle-trigger fides-notice-toggle-header":"fides-notice-toggle-trigger",children:f("span",{className:"fides-flex-center fides-justify-space-between",children:t})})),f("span",{className:"fides-notice-toggle-controls",children:d?f(Kc,{label:t,name:e,id:e,checked:i,onChange:o,disabled:l,onLabel:a,offLabel:c}):null}),f("div",{className:"fides-badge-container",children:[s,r?f("span",{className:"fides-notice-badge",children:r}):null]})]},e),n?f("div",pr(fr({},g()),{children:n})):null]})},Jc=()=>f("hr",{className:"fides-divider"}),Qc=({noticeToggles:e,enabledNoticeKeys:t,onChange:i,renderDescription:o})=>{const{i18n:n}=ee(),r=a=>{const c={key:a,type:"notice"};t.indexOf(a)===-1?i([...t,a],c):i(t.filter(u=>u!==a),c)};let s,l;return ho(n)===X&&(s="On",l="Off"),f("div",{children:e.map((a,c)=>{const{noticeKey:u,title:d,description:_,checked:v,disabled:g,gpcStatus:p}=a,h=c===e.length-1;return f("div",{children:[f(vr,{noticeKey:u,title:d,checked:v,onToggle:r,gpcBadge:f(Wn,{status:p}),disabled:g,onLabel:s,offLabel:l,children:o?o(a):_}),h?null:f(Jc,{})]},u)})})},ed=({cookiesByNotice:e,onBack:t})=>{const{i18n:i}=ee();return f("div",{children:[f("button",{type:"button",className:"fides-link-button",onClick:t,"aria-label":"back",children:f("span",{className:"fides-flex-center fides-back-link",style:{marginBottom:"12px"},children:i.t("static.other.back")})}),e.length>=1?f("div",{style:{marginTop:"8px",marginBottom:"8px"},children:f("strong",{children:i.t("static.other.vendors")})}):null,f("div",{className:"fides-modal-notices",style:{marginTop:"12px"},children:(()=>{const o=new Map;return e.forEach(r=>{(r.cookies||[]).forEach(s=>{const l=s.system_name||"Other",a=o.get(l)||[];a.push(s),o.set(l,a)})}),Array.from(o.entries()).map(([r,s])=>{const l=s.some(a=>a.duration!=null&&a.duration!=="");return f("div",{children:f(vr,{noticeKey:`vendor-${r}`,title:r,checked:!1,onToggle:()=>{},includeToggle:!1,children:f("table",{className:"fides-vendor-details-table",children:[f("thead",{children:f("tr",{children:[f("th",{width:l?"80%":void 0,children:i.t("static.other.cookies")}),l?f("th",{width:"20%",style:{textAlign:"right"},children:i.t("static.other.retention")}):null]})}),f("tbody",{children:s.map(a=>f("tr",{children:[f("td",{style:{paddingBottom:"2px",paddingTop:"2px"},children:[f("div",{children:a.name}),a.description?f("div",{children:[i.t("static.other.description"),":"," ",a.description]}):null]}),l?f("td",{style:{textAlign:"right"},children:a.duration?a.duration:"-"}):null]},`${r}-${a.name}`))})]})})},`vendor-${r}`)})})()})]})};var td=Object.defineProperty,id=Object.defineProperties,od=Object.getOwnPropertyDescriptors,_r=Object.getOwnPropertySymbols,nd=Object.prototype.hasOwnProperty,rd=Object.prototype.propertyIsEnumerable,gr=(e,t,i)=>t in e?td(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,ad=(e,t)=>{for(var i in t||(t={}))nd.call(t,i)&&gr(e,i,t[i]);if(_r)for(var i of _r(t))rd.call(t,i)&&gr(e,i,t[i]);return e},sd=(e,t)=>id(e,od(t));const ld=()=>{var e,t,i;const{fidesGlobal:o,setFidesGlobal:n}=Un(),{fidesRegionString:r,cookie:s,options:l,saved_consent:a}=o,c=o.experience,{i18n:u,currentLocale:d,setCurrentLocale:_}=ee(),{triggerRef:v,setTrigger:g,servingComponentRef:p,setServingComponent:h,dispatchFidesEventAndClearTrigger:b}=me(),m=Ae(),k=S(E=>c.privacy_notices?c.privacy_notices.map(N=>Si(N,E)?N.notice_key:""):[],[c.privacy_notices]);j(()=>{!d&&u.locale&&_(u.locale)},[d,u.locale,_]);const O=pe(()=>{if(c.experience_config){const E=ft(d,u.getDefaultLocale(),c.experience_config);return E?.privacy_experience_config_history_id}},[c,d]),w=pe(()=>{var E;const D=((E=c.privacy_notices)!=null?E:[]).map(W=>{var qe,Nt;const mi=W.consent_mechanism===q.NOTICE_ONLY||((Nt=(qe=l.fidesDisabledNotices)==null?void 0:qe.includes(W.notice_key))!=null?Nt:!1)||W.disabled,Ed=Yt(d,u.getDefaultLocale(),W);return{notice:sd(ad({},W),{disabled:mi}),bestTranslation:Ed}}),R=D.filter(W=>W.notice.consent_mechanism===q.NOTICE_ONLY),_e=D.filter(W=>W.notice.consent_mechanism!==q.NOTICE_ONLY);return[...R,..._e]},[c.privacy_notices,d,l.fidesDisabledNotices]),[x,U]=K(k(s?.consent));ll(()=>{const E=N=>{const D=N,{consent:R}=D.detail;Object.entries(R).forEach(([_e,W])=>{R[_e]=Me(W)}),U(k(R)),window.removeEventListener("FidesUpdating",E)};return window.addEventListener("FidesUpdating",E),()=>{window.removeEventListener("FidesUpdating",E)}},[]);const P=w.every(E=>E.notice.consent_mechanism===q.NOTICE_ONLY),A=w.map(E=>{var N,D;const R=x.indexOf(E.notice.notice_key)!==-1,_e=Le(),W=eo({value:R,notice:E.notice,consentContext:_e});return{noticeKey:E.notice.notice_key,title:((N=E.bestTranslation)==null?void 0:N.title)||E.notice.name||"",description:(D=E.bestTranslation)==null?void 0:D.description,cookies:E.notice.cookies,checked:R,consentMechanism:E.notice.consent_mechanism,disabled:E.notice.disabled,gpcStatus:W}}),[T,L]=K(!1),[I,B]=K(null),Y=pe(()=>I?w.find(E=>E.notice.notice_key===I):null,[I,w]),z=w.map(E=>{var N;return{noticeKey:E.notice.notice_key,title:((N=E.bestTranslation)==null?void 0:N.title)||E.notice.name||"",cookies:E.notice.cookies||[]}}).filter(E=>E.cookies&&E.cookies.length>0),V=I?z.filter(E=>E.noticeKey===I):z;jl({privacyExperienceConfigHistoryId:O,privacyNoticeHistoryIds:w.reduce((E,N)=>{var D;const R=(D=N.bestTranslation)==null?void 0:D.privacy_notice_history_id;return R&&E.push(R),E},[]),options:l,userGeography:r,acknowledgeMode:P,privacyExperience:c});const J=S((E,N)=>{const D={};w.forEach(R=>{R.notice.consent_mechanism!==q.NOTICE_ONLY?D[R.notice.notice_key]=N.includes(R.notice.notice_key):D[R.notice.notice_key]=!0}),Xt(o,{noticeConsent:D,consentMethod:E,eventExtraDetails:{servingComponent:p.current,trigger:v.current}}).finally(()=>{window.Fides&&n(window.Fides),g(void 0)}),U(N)},[w,o,p,v,g,n]),ve=S(E=>{J(E?$.SCRIPT:$.ACCEPT,w.filter(N=>!N.notice.disabled||x.includes(N.notice.notice_key)).map(N=>N.notice.notice_key))},[x,J,w]),De=S(E=>{J(E?$.SCRIPT:$.REJECT,w.filter(N=>N.notice.consent_mechanism===q.NOTICE_ONLY||N.notice.disabled&&x.includes(N.notice.notice_key)).map(N=>N.notice.notice_key))},[x,J,w]);j(()=>{st(l)&&c.privacy_notices&&(l.fidesConsentOverride===$.ACCEPT?ve(!0):l.fidesConsentOverride===$.REJECT&&De(!0))},[c.privacy_notices,l.fidesConsentOverride]);const yi=S(()=>{h(Re.BANNER),b("FidesUIShown",s)},[s,b,h]),ie=S(E=>{h(Re.MODAL),b("FidesUIShown",s,{trigger:{origin:E}})},[s,b,h]),We=S(()=>{Rt(m?.consent)||J($.DISMISS,k(s?.consent))},[J,k,m?.consent,s?.consent]),wd=S((E,N)=>{const D={servingComponent:p.current,trigger:v.current,preference:N};U(E),b("FidesUIChanged",s,D)},[v,b,s,p]);if(!c.experience_config)return null;const yr=!!((e=c.experience_config)!=null&&e.dismissable),kd=w.length===1;return f(Hc,{options:l,experience:c,cookie:s,savedConsent:a,isUiBlocking:!yr,isVendorAssetDisclosureView:T,onModalHide:()=>{L(!1),B(null)},headerContent:T&&Y?{title:((t=Y.bestTranslation)==null?void 0:t.title)||Y.notice.name||"",description:((i=Y.bestTranslation)==null?void 0:i.description)||""}:void 0,onOpen:ie,onDismiss:We,renderBanner:({attributes:E,isEmbedded:N,isOpen:D,onClose:R,onManagePreferencesClick:_e})=>{var W;const qe=P||((W=c.experience_config)==null?void 0:W.layer1_button_options)===Lt.ACKNOWLEDGE;return f(nc,{attributes:E,bannerIsOpen:D,dismissable:yr,onOpen:yi,onClose:()=>{R(),We()},isEmbedded:N,renderButtonGroup:()=>f(er,{experience:c,onManagePreferencesClick:_e,enabledKeys:x,onAcceptAll:()=>{ve(),R()},onRejectAll:()=>{De(),R()},onSave:(Nt,mi)=>{J(Nt,mi),R()},isAcknowledge:qe,hideOptInOut:qe,options:l})})},renderModalContent:()=>f("div",{children:T?f(ed,{cookiesByNotice:V,onBack:()=>{L(!1),B(null)}}):f("div",{className:"fides-modal-notices",children:f(Qc,{noticeToggles:A,enabledNoticeKeys:x,onChange:wd,renderDescription:E=>{var N,D,R;const _e=(E.cookies||[]).length>0;return f("div",{children:[E.description,_e&&((D=(N=c.experience_config)==null?void 0:N.asset_disclosure_include_types)!=null&&D.includes(St.COOKIE))&&((R=c.experience_config)!=null&&R.allow_vendor_asset_disclosure)?f("div",{style:{marginTop:"12px"},children:f("button",{type:"button",className:"fides-link-button fides-vendors-disclosure-link",onClick:()=>{B(E.noticeKey),L(!0)},children:u.t("static.other.vendors")})}):null]})}})})}),renderModalFooter:({onClose:E})=>f(er,{experience:c,enabledKeys:x,onAcceptAll:()=>{ve(),E()},onRejectAll:()=>{De(),E()},onSave:(N,D)=>{J(N,D),E()},isInModal:!0,isAcknowledge:P,hideOptInOut:kd||P,options:l})})},cd=(e,t)=>{const{i18n:i,initializedFides:o}=e;an(f(Dl,{i18nInstance:i,children:f(Hl,{initializedFides:o,children:f(Gl,{children:f(Pl,{children:f(ld,{})})})})}),t)};var dd=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});function ud(e){return dd(this,null,function*(){var t;if(!((t=e.options.apiOptions)!=null&&t.getPreferencesFn))return null;try{return yield e.options.apiOptions.getPreferencesFn(e)}catch{return null}})}var fd=Object.defineProperty,pd=Object.defineProperties,vd=Object.getOwnPropertyDescriptors,hr=Object.getOwnPropertySymbols,_d=Object.prototype.hasOwnProperty,gd=Object.prototype.propertyIsEnumerable,br=(e,t,i)=>t in e?fd(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,ae=(e,t)=>{for(var i in t||(t={}))_d.call(t,i)&&br(e,i,t[i]);if(hr)for(var i of hr(t))gd.call(t,i)&&br(e,i,t[i]);return e},bi=(e,t)=>pd(e,vd(t)),hd=(e,t,i)=>new Promise((o,n)=>{var r=a=>{try{l(i.next(a))}catch(c){n(c)}},s=a=>{try{l(i.throw(a))}catch(c){n(c)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(r,s);l((i=i.apply(e,t)).next())});function bd(e){return hd(this,null,function*(){var t,i,o,n;let r=(t=e??this.config)!=null?t:Jt("Fides must be initialized with a configuration object");Vr(!!((i=r.options)!=null&&i.debug)),this.config=r,ce("FidesInitializing",void 0,{gppEnabled:this.config.options.gppEnabled||((n=(o=this.config.experience)==null?void 0:o.gpp_settings)==null?void 0:n.enabled),tcfEnabled:this.config.options.tcfEnabled});const s=Ko(xe.OPTIONS,r),l=Ko(xe.EXPERIENCE_TRANSLATION,r),a=yield ud(r);!s.fidesString&&a?.fides_string&&(s.fidesString=a.fides_string);const c={optionsOverrides:s,consentPrefsOverrides:a,experienceTranslationOverrides:l};Br(s);let u;if(!Ae()){const{consent:p,method:h}=Yi(s);p&&h&&(u=p)}r=bi(ae({},r),{options:ae(ae({},r.options),c.optionsOverrides)}),this.config=r,this.cookie=qs(r),this.cookie.consent=ae(ae({},this.cookie.consent),u),this.saved_consent=ae({},this.cookie.consent);const{fidesString:d}=r.options;if(d)try{const{nc:p}=Gt(d);this.decodeNoticeConsentString(p);const h={fides_string:d};this.cookie=ae(ae({},this.cookie),h)}catch{}if(this.experience=r.experience,!ji(this.cookie)||!!u){const p=Zs(bi(ae({},r),{cookie:this.cookie,savedConsent:this.saved_consent,updateExperienceFromCookieConsent:zt}));Object.assign(this,p),_t(this),this.experience=p.experience,ro(this.cookie,{shouldShowExperience:this.shouldShowExperience()})}const g=yield Xs({fides:this,initOverlay:cn,renderOverlay:cd,updateExperience:jo,overrides:c});Object.assign(this,g),_t(this),ao(this.cookie,{shouldShowExperience:this.shouldShowExperience()})})}const yd=Do({}),md=bi(ae({},yd),{init:bd});_t(md),y.AssetType=St,y.BannerEnabled=Ei,y.ButtonType=oe,y.CONSENT_COOKIE_MAX_AGE_DAYS=$i,y.CONSENT_COOKIE_NAME=Dt,y.ComponentType=G,y.ConsentFlagType=ge,y.ConsentMechanism=q,y.ConsentMethod=$,y.ConsentNonApplicableFlagMode=Pe,y.DEFAULT_LOCALE=X,y.DEFAULT_MODAL_LINK_LABEL=ot,y.EnforcementLevel=ki,y.FidesEndpointPaths=Oo,y.FidesEventOrigin=we,y.FidesEventTargetType=Q,y.FidesModalDefaultView=Oi,y.GpcStatus=se,y.LOCALE_REGEX=nt,y.Layer1ButtonOption=Lt,y.OverrideType=xe,y.PrivacyNoticeFramework=wi,y.REQUEST_SOURCE=Ao,y.RejectAllMechanism=Ci,y.RequestOrigin=Pi,y.SaveConsentPreference=Tt,y.ServingComponent=Re,y.UpdateConsentValidation=he,y.UserConsentPreference=Z,y.allNoticesAreDefaultOptIn=ta,y.applyOverridesToConsent=Ue,y.areLocalesEqual=re,y.buildCookieConsentFromConsentPreferences=Bi,y.consentCookieObjHasSomeConsentSet=Rt,y.constructFidesRegionString=at,y.createConsentPreferencesToSave=oa,y.createConsentProxy=Vt,y.createEmptyExperience=Co,y.decodeNoticeConsentString=ct,y.defaultShowModal=Bt,y.detectUserLocale=bo,y.dispatchConsentLoadedEvents=ro,y.dispatchFidesEvent=ce,y.dispatchReadyEvents=ao,y.encodeNoticeConsentString=to,y.experienceIsValid=Ji,y.extractDefaultLocaleFromExperience=Kt,y.fetchExperience=Po,y.fetchGvlTranslations=xo,y.getConsentContext=Le,y.getCookieByName=it,y.getCoreFides=Do,y.getCurrentLocale=ho,y.getFidesConsentCookie=Ae,y.getGeolocation=Ro,y.getGpcStatusFromNotice=eo,y.getOrMakeFidesCookie=Ri,y.getOverrideValidatorMapByType=Xi,y.getTcfDefaultPreference=ia,y.getWindowObjFromPath=Qi,y.i18n=ps,y.initOverlay=cn,y.initializeI18n=mo,y.isConsentOverride=st,y.isNewFidesCookie=ji,y.isPrivacyExperience=Te,y.isValidAcString=aa,y.loadGVLMessagesFromExperience=_o,y.loadMessagesFromExperience=vo,y.loadMessagesFromFiles=po,y.loadMessagesFromGVLTranslations=go,y.localizeModalLinkText=wo,y.makeConsentDefaultsLegacy=Mi,y.makeFidesCookie=Di,y.matchAvailableLocales=yo,y.messageExists=ke,y.noticeHasConsentInCookie=et,y.onFidesEvent=no,y.parseCommaSeparatedString=Ft,y.patchNoticesServed=So,y.patchUserPreference=To,y.processExternalConsentValue=Me,y.raise=Jt,y.removeCookiesFromBrowser=Ui,y.resolveConsentValue=Si,y.resolveLegacyConsentValue=Ti,y.saveFidesCookie=zi,y.selectBestExperienceConfigTranslation=ft,y.selectBestNoticeTranslation=Yt,y.setupI18n=Wt,y.shouldResurfaceBanner=lt,y.transformConsentToFidesUserPreference=ze,y.transformTcfPreferencesToCookieKeys=jr,y.transformUserPreferenceToBoolean=le,y.updateCookieFromExperience=Gi,y.updateCookieFromNoticePreferences=Vi,y.updateExperience=jo,y.updateExperienceFromCookieConsentNotices=zt,y.updateWindowFides=_t,y.validateOptions=Zi});
|