From 48139db59d8fa6dd727f47829c7156fdf266b9ee Mon Sep 17 00:00:00 2001 From: Aron Kerekes Date: Wed, 28 Jan 2026 16:59:26 +0100 Subject: [PATCH 1/3] feat: name verification docs Signed-off-by: Aron Kerekes --- docs/dir/ads-records.md | 17 ++++- docs/dir/directory-cli.md | 140 ++++++++++++++++++++++++++++++++++++-- docs/dir/overview.md | 2 + docs/dir/scenarios.md | 112 +++++++++++++++++++++++++++++- 4 files changed, 260 insertions(+), 11 deletions(-) diff --git a/docs/dir/ads-records.md b/docs/dir/ads-records.md index 43cd869..5dac9eb 100644 --- a/docs/dir/ads-records.md +++ b/docs/dir/ads-records.md @@ -11,6 +11,17 @@ The content identifier of the record is a [Content IDentifier](https://github.co - Collision-resistant - Immutable +## Verifiable Names + +Records can include a `name` field with a domain-based identifier that enables name verification. When a record uses a verifiable name: + +- The name must include a protocol prefix: `https://domain/path` or `http://domain/path`. +- The domain must host a JWKS file at `:///.well-known/jwks.json`. +- Records signed with a key present in that JWKS file can be verified as authorized by the domain. +- This enables Docker-style name-based references like `cisco.com/agent:v1.0.0` instead of CIDs. + +See the [Directory CLI documentation](directory-cli.md#name-verification) for details on name verification workflows. + ## Example Email Agent You can generate your own example records using the [OASF Record Sample generator](https://schema.oasf.outshift.com/sample/0.7.0/objects/record). Below is an example OASF record for an email agent that is capable of sending and receiving emails. @@ -22,7 +33,7 @@ You can generate your own example records using the [OASF Record Sample generato ```json { "schema_version": "0.7.0", - "name": "email-agent", + "name": "https://cisco.com/agents/email-agent", "version": "v1.0.0", "authors": [ "Cisco Systems Inc." @@ -55,3 +66,7 @@ You can generate your own example records using the [OASF Record Sample generato ] } ``` + +!!! note + + The `name` field uses a verifiable domain-based format (`https://cisco.com/agents/email-agent`). When signed with a key authorized by the domain's JWKS file at `https://cisco.com/.well-known/jwks.json`, this record can be pulled using the convenient reference `cisco.com/agents/email-agent:v1.0.0` instead of its CID. diff --git a/docs/dir/directory-cli.md b/docs/dir/directory-cli.md index 0fcabf1..fefa4e4 100644 --- a/docs/dir/directory-cli.md +++ b/docs/dir/directory-cli.md @@ -64,9 +64,17 @@ The following example demonstrates how to store, publish, search, and retrieve a 1. Retrieve a record ```bash + # Pull by CID dirctl pull baeareihdr6t7s6sr2q4zo456sza66eewqc7huzatyfgvoupaqyjw23ilvi + + # Or pull by name (if the record has a verifiable name) + dirctl pull cisco.com/agent:v1.0.0 ``` +!!! note "Name-based References" + + The CLI supports Docker-style name references in addition to CIDs. Records can be pulled using formats like `name`, `name:version`, or `name:version@cid` for hash-verified lookups. See [Name Verification](#name-verification) for details. + ## Directory MCP Server The Directory MCP Server provides a standardized interface for AI assistants and tools to interact with the AGNTCY Agent Directory and work with OASF agent records. @@ -248,20 +256,57 @@ Stores records in the content-addressable store. Has the following features: dirctl push agent-model.json --sign --key private.key ``` -#### `dirctl pull ` +#### `dirctl pull ` + +Retrieves records by their Content Identifier (CID) or name reference. + +**Supported Reference Formats:** -Retrieves records by their Content Identifier (CID). +| Format | Description | +|--------|-------------| +| `` | Direct lookup by CID | +| `` | Retrieves the latest version | +| `:` | Retrieves the specified version | +| `@` | Hash-verified lookup (fails if resolved CID doesn't match) | +| `:@` | Hash-verified lookup for a specific version | ??? example ```bash - # Pull record content + # Pull by CID (existing) dirctl pull baeareihdr6t7s6sr2q4zo456sza66eewqc7huzatyfgvoupaqyjw23ilvi + # Pull by name (latest version) + dirctl pull cisco.com/agent + + # Pull by name with specific version + dirctl pull cisco.com/agent:v1.0.0 + + # Pull with hash verification + dirctl pull cisco.com/agent@bafyreib... + dirctl pull cisco.com/agent:v1.0.0@bafyreib... + # Pull with signature verification dirctl pull --signature --public-key public.key ``` +**Hash Verification:** + +The `@` suffix enables hash verification. This command fails if the resolved CID doesn't match the expected digest: + +```bash +# Succeeds if cisco.com/agent:v1.0.0 resolves to bafyreib... +dirctl pull cisco.com/agent:v1.0.0@bafyreib... + +# Fails with error if CIDs don't match +dirctl pull cisco.com/agent@wrong-cid +# Error: hash verification failed: resolved CID "bafyreib..." does not match expected digest "wrong-cid" +``` + +**Version Resolution:** + +When no version is specified, commands return the most recently created record (by record's `created_at` field). This allows non-semver tags like `latest`, `dev`, or `stable`. + #### `dirctl delete ` Removes records from storage. @@ -273,15 +318,31 @@ Removes records from storage. dirctl delete baeareihdr6t7s6sr2q4zo456sza66eewqc7huzatyfgvoupaqyjw23ilvi ``` -#### `dirctl info ` +#### `dirctl info ` + +Displays metadata about stored records using CID or name reference. + +**Supported Reference Formats:** -Displays metadata about stored records. +| Format | Description | +|--------|-------------| +| `` | Direct lookup by content address | +| `` | Displays the most recently created version | +| `:` | Displays the specified version | +| `@` | Hash-verified lookup | +| `:@` | Hash-verified lookup for a specific version | ??? example ```bash - # Show record metadata + # Info by CID (existing) dirctl info baeareihdr6t7s6sr2q4zo456sza66eewqc7huzatyfgvoupaqyjw23ilvi + + # Info by name (latest version) + dirctl info cisco.com/agent --output json + + # Info by name with specific version + dirctl info cisco.com/agent:v1.0.0 --output json ``` ### Routing Operations @@ -453,9 +514,36 @@ The following flags are available: ### Security & Verification +#### Name Verification + +Record name verification proves that the signing key is authorized by the domain claimed in the record's name field. + +**Requirements:** + +- Record name must include a protocol prefix: `https://domain/path` or `http://domain/path` +- A JWKS file must be hosted at `:///.well-known/jwks.json` +- The record must be signed with the private key corresponding to a public key present in that JWKS file + +**Workflow:** + +1. Push a record with a verifiable name. + + ```bash + dirctl push record.json --output raw + # Returns: bafyreib... + ``` + +2. Sign the record (triggers automatic verification). + + ```bash + dirctl sign --key private.key + ``` + +3. Check verification status using [`dirctl naming verify`](./directory-cli.md#dirctl-naming-verify-reference). + #### `dirctl sign [flags]` -Signs records for integrity and authenticity. +Signs records for integrity and authenticity. When signing a record with a verifiable name (e.g., `https://domain/path`), the system automatically attempts to verify domain authorization via JWKS. See [Name Verification](#name-verification) for details. ??? example @@ -467,6 +555,44 @@ Signs records for integrity and authenticity. dirctl sign --oidc --fulcio-url https://fulcio.example.com ``` +#### `dirctl naming verify ` + +Verifies that a record's signing key is authorized by the domain claimed in its name field. Checks if the signing key matches a public key in the domain's JWKS file hosted at `/.well-known/jwks.json`. + +**Supported Reference Formats:** + +| Format | Description | +|--------|-------------| +| `` | Verify by content address | +| `` | Verify the most recently created version | +| `:` | Verify a specific version | + +??? example + + ```bash + # Verify by CID + dirctl naming verify bafyreib... --output json + + # Verify by name (latest version) + dirctl naming verify cisco.com/agent --output json + + # Verify by name with specific version + dirctl naming verify cisco.com/agent:v1.0.0 --output json + ``` + + Example verification response: + + ```json + { + "cid": "bafyreib...", + "verified": true, + "domain": "cisco.com", + "method": "jwks", + "key_id": "key-1", + "verified_at": "2026-01-21T10:30:00Z" + } + ``` + #### `dirctl verify [flags]` Verifies record signatures. diff --git a/docs/dir/overview.md b/docs/dir/overview.md index 519d5de..e8089f5 100644 --- a/docs/dir/overview.md +++ b/docs/dir/overview.md @@ -58,6 +58,8 @@ ADS leverages [Content Identifiers](https://github.com/multiformats/cid) for naming directory records. CIDs provide a self-describing, content-addressed naming scheme that ensures data integrity and immutability. +In addition to CID-based addressing, ADS supports verifiable domain-based names that enable human-readable references while maintaining cryptographic verification. See the [Directory CLI documentation](directory-cli.md#name-verification) for details. + ## Content Routing ADS implements capability-based record discovery through a hierarchical skill diff --git a/docs/dir/scenarios.md b/docs/dir/scenarios.md index 9848867..6210466 100644 --- a/docs/dir/scenarios.md +++ b/docs/dir/scenarios.md @@ -32,7 +32,7 @@ To start, generate an example Record that matches the data model schema defined # Generate an example data model cat << EOF > record.json { - "name": "my-record", + "name": "https://example.com/agents/my-record", "version": "v1.0.0", "description": "insert description here", "schema_version": "0.7.0", @@ -73,15 +73,30 @@ dirctl push record.json > record.cid # Set the CID as a variable for easier reference RECORD_CID=$(cat record.cid) -# Pull the record +# Pull the record by CID # Returns the same data as record.json dirctl pull $RECORD_CID -# Lookup basic metadata about the record +# Pull the record by name (if it has a verifiable name) +# Returns the same data as record.json +dirctl pull example.com/agents/my-record:v1.0.0 + +# Lookup basic metadata about the record by CID # Returns annotations, creation timestamp and OASF schema version dirctl info $RECORD_CID + +# Lookup basic metadata by name +dirctl info example.com/agents/my-record:v1.0.0 ``` +Records with verifiable names can be referenced using Docker-style formats: + +- `example.com/agents/my-record` - Latest version +- `example.com/agents/my-record:v1.0.0` - Specific version +- `example.com/agents/my-record:v1.0.0@bafyreib...` - Hash-verified lookup + +Name-based references work with `pull`, `info`, and `naming verify` commands. + ## Signing and Verification Establishing trust and authenticity is critical in distributed AI agent ecosystems, where @@ -165,6 +180,93 @@ dirctl push record.json --sign --key cosign.key dirctl verify $RECORD_CID ``` +## Name Verification + +Name verification proves that the signing key is authorized by the domain claimed in the +record's name field. This provides cryptographic proof of domain ownership and enables +human-readable references while maintaining security. + +### Requirements + +To use name verification, your record must meet these requirements: + +- Record name must include a protocol prefix: `https://domain/path` or `http://domain/path` +- A JWKS (JSON Web Key Set) file must be hosted at `:///.well-known/jwks.json` +- The record must be signed with the private key corresponding to a public key present in that JWKS file + +### Workflow + +```bash +# 1. Create a record with a verifiable name (already done in Build section) +# The record.json has: "name": "https://example.com/agents/my-record" + +# 2. Ensure your domain hosts a JWKS file +# Example: https://example.com/.well-known/jwks.json +# This file should contain the public key corresponding to your signing key + +# 3. Push the record +RECORD_CID=$(dirctl push record.json --output raw) +echo "Stored with CID: $RECORD_CID" + +# 4. Sign the record (triggers automatic verification) +dirctl sign $RECORD_CID --key cosign.key + +# 5. Verify the name authorization +# By CID +dirctl naming verify $RECORD_CID --output json + +# By name (latest version) +dirctl naming verify example.com/agents/my-record --output json + +# By name with specific version +dirctl naming verify example.com/agents/my-record:v1.0.0 --output json +``` + +### Verification Response + +When verification succeeds, you'll receive a response like: + +```json +{ + "cid": "bafyreib...", + "verified": true, + "domain": "example.com", + "method": "jwks", + "key_id": "key-1", + "verified_at": "2026-01-21T10:30:00Z" +} +``` + +### Using Verified Names + +Once verified, you can use convenient name-based references instead of CIDs: + +```bash +# Pull by name (latest version) +dirctl pull example.com/agents/my-record + +# Pull specific version +dirctl pull example.com/agents/my-record:v1.0.0 + +# Pull with hash verification (fails if CID doesn't match) +dirctl pull example.com/agents/my-record:v1.0.0@$RECORD_CID + +# Get info by name +dirctl info example.com/agents/my-record:v1.0.0 --output json +``` + +### Version Resolution + +When no version is specified, commands return the most recently created record (by the +record's `created_at` field). This allows non-semver tags like `latest`, `dev`, or `stable`: + +```bash +# These all pull the most recent version +dirctl pull example.com/agents/my-record +dirctl pull example.com/agents/my-record:latest +dirctl pull example.com/agents/my-record:dev +``` + ## Announce This example demonstrates how to publish records to allow content discovery across the @@ -254,6 +356,9 @@ other Directory commands like `pull`, `info`, and `verify`. # Basic search for records by name dirctl search --name "my-agent-name" +# Search for records with verifiable domain-based names +dirctl search --name "example.com/agents/my-record" + # Search for records with a specific version dirctl search --version "v1.0.0" @@ -303,6 +408,7 @@ The search functionality supports wildcard patterns for flexible matching: ```bash # Asterisk (*) wildcard - matches zero or more characters dirctl search --name "web*" # Find all web-related agents +dirctl search --name "example.com/*" # Find all agents from example.com domain dirctl search --version "v1.*" # Find all v1.x versions dirctl search --skill "audio*" # Find Audio-related skills dirctl search --locator "http*" # Find HTTP-based locators From 845a753edad18387a127638cd512a6a2b67e5e23 Mon Sep 17 00:00:00 2001 From: Aron Kerekes Date: Thu, 29 Jan 2026 19:30:54 +0100 Subject: [PATCH 2/3] implementing review comments Signed-off-by: Aron Kerekes --- .../11526157.jpg" | Bin 0 -> 1857 bytes .../11526157_002.jpg" | Bin 0 -> 1262 bytes .../11526157_003.jpg" | Bin 0 -> 1679 bytes .../11526157_004.jpg" | Bin 0 -> 1391 bytes .../120519943.jpg" | Bin 0 -> 1086 bytes .../14814.29aaeaafa90f007c6f61.module.css" | 2 + .../15397-d62eb2ae3362.js" | 3 + .../15397.df5443f753d39709e98f.module.css" | 2 + .../15596-1802a34fc60f.js" | 3 + .../16206-e5446f5de988.js" | 3 + .../17688-d822812c31fd.js" | 3 + .../18312-0f4b3f79045c.js" | 6 + .../19681-01119aa85035.js" | 3 + .../19718-9f5f984a64d0.js" | 3 + .../2116.69bec32a57ac1a092367.module.css" | 2 + .../22116-390116525151.js" | 65 + .../22785-f4d716875cdb.js" | 3 + .../23048.2cf8290f43b251d573e6.module.css" | 2 + .../24291.ab50ab51004907dd0fb5.module.css" | 2 + .../24774-6623aa36f8d9.js" | 12 + .../2635-ed516f5d0901.js" | 5 + .../26744-cce4d4bab7ed.js" | 4 + .../28546-373396140b52.js" | 3 + .../28633.4f47147a32c89ffb4097.module.css" | 2 + .../29665-d8a5ff44df6d.js" | 3 + .../3042-4e8e39856f05.js" | 261 +++ .../30587-9e7ad105c2cc.js" | 3 + .../30721-20f0b537f116.js" | 4 + .../31475-a29a8d21ba6e.js" | 3 + .../32162-bce5168543b8.js" | 3 + .../32448-9c5ba09efc68.js" | 3 + .../32816-c63bcd9e4a88.js" | 11 + .../33727-b2e842173a7f.js" | 3 + .../33915-2fcb1ef9118e.js" | 3 + .../34580.aaf3fc5176becb7d72db.module.css" | 2 + .../36562-dc6a1a3a2af4.js" | 3 + .../37294-b151415d2fb0.js" | 7 + .../37911-925bc4afa4f7.js" | 3 + .../39837-12c9db865192.js" | 5 + .../40420-a9a51328f93d.js" | 15 + .../40656241.png" | Bin 0 -> 3653 bytes .../40746-d0df9fac557b.js" | 3 + .../40771-27822f7b2932.js" | 3 + .../40799-9d163b66df02.js" | 3 + .../41461-97b9621fb8c4.js" | 3 + .../42804-6a3ac24a88d4.js" | 1524 ++++++++++++++ .../42804.e9445c11f35ffcef9d3c.module.css" | 2 + .../43184-f68241888ce7.js" | 3 + .../43784-56ff5e06fc38.js" | 3 + .../43854-1be7c2883e60.js" | 7 + .../44185-49b5cc8e57f6.js" | 3 + .../4712-4012ead9381a.js" | 3 + .../4717.983f4471c2910178a0ff.module.css" | 2 + .../47657.e98fcb07af9d6f62d532.module.css" | 2 + .../4817-fda73c9fb317.js" | 5 + .../50170-a8f88a977e37.js" | 3 + .../50517-a287527395ad.js" | 14 + .../51220-88337dd2c29d.js" | 6 + .../51519-2093a99df21e.js" | 3 + .../52302-61c263b13bc6.js" | 15 + .../53857116.jpg" | Bin 0 -> 1924 bytes .../53857116_002.jpg" | Bin 0 -> 1090 bytes .../53857116_003.jpg" | Bin 0 -> 1402 bytes .../53857116_004.jpg" | Bin 0 -> 1176 bytes .../53857116_005.jpg" | Bin 0 -> 1508 bytes .../53857116_006.jpg" | Bin 0 -> 1090 bytes .../53857116_007.jpg" | Bin 0 -> 1508 bytes .../53996-f76352731e87.js" | 3 + .../55526-7849c8b38bbe.js" | 4 + .../57026-caf6687379ce.js" | 3 + .../57923.2603c3d3a08a9697fe5f.module.css" | 2 + .../59672-7a68bc81acac.js" | 3 + .../60932-358e763dc6ab.js" | 4 + .../62941-12ac274b4455.js" | 3 + .../64665-a563226b8ec7.js" | 6 + .../6488-6dac972ad892.js" | 4 + .../65335.d69f52e48bac01d37b45.module.css" | 2 + .../6623-e1e4ce59b9f9.js" | 3 + .../66721-c8f8022fe832.js" | 23 + .../66990-46bd135c9449.js" | 3 + .../67071-71cb600cebb1.js" | 5 + .../67602-1f29f75b9f33.js" | 29 + .../6873.44b521786393825e5c12.module.css" | 2 + .../69950-413c3819bfbd.js" | 3 + .../70191-2ff8c1780a1e.js" | 3 + .../70894-927c3b50d106.js" | 3 + .../7332-28215e4d6136.js" | 28 + .../78143-a5078efd9ce0.js" | 18 + .../78298-4461f83ccb79.js" | 65 + .../81028-196a2b669444.js" | 4 + .../81171-aa5e095aad08.js" | 3 + .../82075-733bf2915f42.js" | 3 + .../83494-e8749f26834b.js" | 3 + .../83770-3bb3fa8c5ff8.js" | 3 + .../87875-9d0cf8c3e6d5.js" | 111 + .../90780-00ac8bf051f5.js" | 16 + .../90787-84c156718bf6.js" | 3 + .../91232-ea5042f1952b.js" | 3 + .../91853-1d514452fb18.js" | 3 + .../92287-3b25a1e23d4d.js" | 3 + .../95542-fd4584ef22d2.js" | 7 + .../95767-01e40124d78e.js" | 12 + .../96384-7e8820028ca6.js" | 14 + .../97068-cd18eb038c94.js" | 3 + .../97174-c7c987a9ac3f.js" | 3 + .../97897.8ab20a4ee94e4c051340.module.css" | 2 + .../98452-945727dd0d3c.js" | 12 + .../98452.427d9d1d5b59117ebfec.module.css" | 2 + .../98488-6054a942babc.js" | 3 + .../99418-20de4c3ee5c3.js" | 4 + .../99808-0b6213fbad6b.js" | 3 + .../behaviors-e0fd6b4d354a.js" | 44 + .../chunk-12891-af349d83fbcb.js" | 4 + .../chunk-23964-67a2a0a68433.js" | 2 + .../chunk-42428-b443e0ae9dee.js" | 2 + .../chunk-74685-ae38242df23d.js" | 2 + .../code-f0247a8b45d0.css" | 4 + .../code-menu-c6174eab8512.js" | 3 + .../codespaces-4195e32447c8.js" | 3 + .../copilot-code-review-e5c0ab95272c.css" | 4 + .../dark-784387e86ac0.css" | 1803 +++++++++++++++++ .../diffs-ce4ecf210ead.js" | 24 + .../element-registry-21ca5d995629.js" | 3 + .../environment-a87305361579.js" | 3 + .../github-6d0965b43add.css" | 4 + .../github-elements-b7722d872625.js" | 5 + .../global-5d4d8309269a.css" | 12 + ...l-nav-bar.983f4471c2910178a0ff.module.css" | 2 + ...ts-dialog.29aaeaafa90f007c6f61.module.css" | 2 + .../light-dac525bbd821.css" | 1803 +++++++++++++++++ ...x-partial.10a3cdd2580979e44186.module.css" | 2 + .../notifications-global-376507b60942.js" | 3 + ...ions-menu.ab50ab51004907dd0fb5.module.css" | 2 + .../octicons-react-d08b1c04b3f6.js" | 3 + .../primer-dc3bfaf4b78e.css" | 4 + .../primer-primitives-c37d781e2da5.css" | 224 ++ .../primer-react-aabfc3cd65e8.js" | 18 + ...mer-react.7930ef41a571f44fa0c8.module.css" | 3 + .../pull-requests-02dbecfff45c.css" | 4 + .../pull-requests-410f62a2dfbc.js" | 6 + .../pull-requests-list-c3d8178a557e.js" | 3 + ...g-indicator.2cf8290f43b251d573e6.modu.css" | 2 + ...-requests.9e2bbc8ffa3acbf1e9dc.module.css" | 2 + .../react-core-03dd218141a8.js" | 12 + .../react-lib-ef9414370f2a.js" | 63 + .../repositories-97c54d0c2e5b.js" | 5 + .../repository-5d735668c600.css" | 4 + .../scanning-bb3d462e7995.js" | 3 + .../wp-runtime-56c73209a59d.js" | 6 + docs/dir/ads-records.md | 5 +- docs/dir/directory-cli.md | 2 +- docs/dir/scenarios.md | 2 +- 152 files changed, 6608 insertions(+), 5 deletions(-) create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/11526157.jpg" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/11526157_002.jpg" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/11526157_003.jpg" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/11526157_004.jpg" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/120519943.jpg" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/14814.29aaeaafa90f007c6f61.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/15397-d62eb2ae3362.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/15397.df5443f753d39709e98f.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/15596-1802a34fc60f.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/16206-e5446f5de988.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/17688-d822812c31fd.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/18312-0f4b3f79045c.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/19681-01119aa85035.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/19718-9f5f984a64d0.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/2116.69bec32a57ac1a092367.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/22116-390116525151.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/22785-f4d716875cdb.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/23048.2cf8290f43b251d573e6.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/24291.ab50ab51004907dd0fb5.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/24774-6623aa36f8d9.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/2635-ed516f5d0901.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/26744-cce4d4bab7ed.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/28546-373396140b52.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/28633.4f47147a32c89ffb4097.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/29665-d8a5ff44df6d.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/3042-4e8e39856f05.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/30587-9e7ad105c2cc.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/30721-20f0b537f116.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/31475-a29a8d21ba6e.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/32162-bce5168543b8.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/32448-9c5ba09efc68.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/32816-c63bcd9e4a88.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/33727-b2e842173a7f.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/33915-2fcb1ef9118e.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/34580.aaf3fc5176becb7d72db.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/36562-dc6a1a3a2af4.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/37294-b151415d2fb0.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/37911-925bc4afa4f7.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/39837-12c9db865192.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40420-a9a51328f93d.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40656241.png" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40746-d0df9fac557b.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40771-27822f7b2932.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40799-9d163b66df02.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/41461-97b9621fb8c4.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/42804-6a3ac24a88d4.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/42804.e9445c11f35ffcef9d3c.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/43184-f68241888ce7.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/43784-56ff5e06fc38.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/43854-1be7c2883e60.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/44185-49b5cc8e57f6.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/4712-4012ead9381a.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/4717.983f4471c2910178a0ff.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/47657.e98fcb07af9d6f62d532.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/4817-fda73c9fb317.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/50170-a8f88a977e37.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/50517-a287527395ad.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/51220-88337dd2c29d.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/51519-2093a99df21e.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/52302-61c263b13bc6.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116.jpg" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_002.jpg" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_003.jpg" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_004.jpg" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_005.jpg" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_006.jpg" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_007.jpg" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53996-f76352731e87.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/55526-7849c8b38bbe.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/57026-caf6687379ce.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/57923.2603c3d3a08a9697fe5f.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/59672-7a68bc81acac.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/60932-358e763dc6ab.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/62941-12ac274b4455.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/64665-a563226b8ec7.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/6488-6dac972ad892.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/65335.d69f52e48bac01d37b45.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/6623-e1e4ce59b9f9.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/66721-c8f8022fe832.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/66990-46bd135c9449.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/67071-71cb600cebb1.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/67602-1f29f75b9f33.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/6873.44b521786393825e5c12.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/69950-413c3819bfbd.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/70191-2ff8c1780a1e.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/70894-927c3b50d106.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/7332-28215e4d6136.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/78143-a5078efd9ce0.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/78298-4461f83ccb79.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/81028-196a2b669444.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/81171-aa5e095aad08.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/82075-733bf2915f42.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/83494-e8749f26834b.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/83770-3bb3fa8c5ff8.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/87875-9d0cf8c3e6d5.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/90780-00ac8bf051f5.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/90787-84c156718bf6.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/91232-ea5042f1952b.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/91853-1d514452fb18.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/92287-3b25a1e23d4d.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/95542-fd4584ef22d2.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/95767-01e40124d78e.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/96384-7e8820028ca6.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/97068-cd18eb038c94.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/97174-c7c987a9ac3f.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/97897.8ab20a4ee94e4c051340.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/98452-945727dd0d3c.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/98452.427d9d1d5b59117ebfec.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/98488-6054a942babc.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/99418-20de4c3ee5c3.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/99808-0b6213fbad6b.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/behaviors-e0fd6b4d354a.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/chunk-12891-af349d83fbcb.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/chunk-23964-67a2a0a68433.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/chunk-42428-b443e0ae9dee.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/chunk-74685-ae38242df23d.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/code-f0247a8b45d0.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/code-menu-c6174eab8512.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/codespaces-4195e32447c8.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/copilot-code-review-e5c0ab95272c.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/dark-784387e86ac0.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/diffs-ce4ecf210ead.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/element-registry-21ca5d995629.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/environment-a87305361579.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/github-6d0965b43add.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/github-elements-b7722d872625.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/global-5d4d8309269a.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/global-nav-bar.983f4471c2910178a0ff.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/keyboard-shortcuts-dialog.29aaeaafa90f007c6f61.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/light-dac525bbd821.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/mergebox-partial.10a3cdd2580979e44186.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/notifications-global-376507b60942.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/notifications-subscriptions-menu.ab50ab51004907dd0fb5.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/octicons-react-d08b1c04b3f6.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/primer-dc3bfaf4b78e.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/primer-primitives-c37d781e2da5.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/primer-react-aabfc3cd65e8.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/primer-react.7930ef41a571f44fa0c8.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/pull-requests-02dbecfff45c.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/pull-requests-410f62a2dfbc.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/pull-requests-list-c3d8178a557e.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/pull-requests-processing-indicator.2cf8290f43b251d573e6.modu.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/pull-requests.9e2bbc8ffa3acbf1e9dc.module.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/react-core-03dd218141a8.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/react-lib-ef9414370f2a.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/repositories-97c54d0c2e5b.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/repository-5d735668c600.css" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/scanning-bb3d462e7995.js" create mode 100644 "docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/wp-runtime-56c73209a59d.js" diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/11526157.jpg" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/11526157.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..04b9dda76e3f2020e987cbc3c044a45327ef8046 GIT binary patch literal 1857 zcmbW$c{JOJ76OsCTtV(-*eq}m~NTFaxVr7;sQ^-5 z9+F2OAqYaDkP2wEJ!nNmw6=<>k{WK`eqG!?ELP9x7+%l7#1M-;WO3N!xG9lH+>f`k zCK1TT%!mXS3WY)|qP6zy(IV($^$GuTWbFV336KFY2r~fWFfb4UlXbx!0sssF`y;?# zfysezggk^qDJUufaxf5-gM$bJ9KO4GeRl@HF$fiXQ(Jk}^OqolFf~GQRuR(BuBJo% z!Y}JaX1?JmC>V5_PR`%BxYFF*J^cIw0xt&z zhcF@{qoQMC}WoUL`UEMeQ7X=L?;+q5F-${Rn{yR|0 z|0Vhx^tVSg4xmBU?!iC|a1vN@MHpHo*=!oP$EIG%xj}p>Jl1mBamS^+-jdSk$-6#C zb02Wz92g)xwHSOEKSpzMq2{+{812^&>WjY&E-#tU0!BQL`F33gU%9J7c#sE?c*ZMV z2S561JUPD2{>voYg@$3_KfiB(&bTQUD(UTXnti{?_iHwNz;VZ=c&6B`3Cgh%YXb9u z*Gmw!Ns~{&QTTcXKR>j#8Y>vBF0t?st1d^6U*|t&k*1j_^=6&7Jso5@hej;AV6)eo z&Kc_b?h(l`G)ZMGEisbau6?QF;N$S-V7G+`YW(tVB61`1YO%>xlzy$?MzggsuTfVw z(+szmj?gu|Y00gFDkP-g2R`n8GT>=se@x%S`t`{i>a}avj&2SlVvTq*lpu5!|giUR9& zyiNXG9g7}rSW!~GMB9Fyu&vo!lRj|>ob$ESLtwKywx)+Bm$n)>wn4tmvE&e@(E|Bd z54;gnK#D5J=6)fx+Tc;;G0$h{+C07Mg?l%!q6hQ%(I%VCu^=C?sc{%DR=T4TTK~j+ zbSvt{)}UK#`a4lUS(!nRH+$gRnUT;H-s>^%k>DZ~_7^Sq0uqE(KD9D6R7ux8lCtXh z==KW}pCFb!qoqFpTH9+?kZ!HSGiEilap?TdH0(2j6-`ZXO~1y1ILQ2Lfbvh9_*iSo zTyeH1hhd@X9JRHv?9!H28hEcO%@35?Q$CvQ&>E$R?K`JGX=cuBy&$rBUbJNNc)WOvnBi0ik1e!i#;rui07zQvoJkF5@8EJ48)g`4 zfpZBTXQCvNi&@=Oapn?+`{FiD!}MWKmK8UQH?$E-;tyD#xJ^VwLhB!sg}awbMNxHs zB=NVc&$ZF}cw8^hm4CHbt#5pC46PcXmWz_PE%#Tm=dxsI>^Ek&kJ{d#JSHp z>B{_vcitM!C8bOrrOeJhCUjN%{8Yu)NbUCLAwL91d#qLkl#O+5kTcZ)hr~p2iSMe# z&o)Xz@>h8`CotT@xlzvbQ--qw-d_4(-CC;Y(L0G(pX7L9@-Q0@ehc%d<_2-1(5&7e+U8ZUN3)pujKd~fmovGa+^bH4 z9tP6KeTJ~;rfwhQk?PJ@FF#PCjnS=9GT^fYw?HNYBv6dMMcYfeub%OYza=pv5mY8m are-?@cxCs~?%lsk79yBcfi6th*uMc2B}~Qu literal 0 HcmV?d00001 diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/11526157_002.jpg" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/11526157_002.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..787c17ac5910dd2574df02dd949b7ed52d3bd816 GIT binary patch literal 1262 zcmex=KU|?coW@chxW@Tkz0jjJ8$}zAA zvI;30I#U-U>$dGXcJ4ZK_{h;?$4{I*b?NeztJkjIxOwa0qsLF4K70P+<*SdM zK7aZ8?fZ|PzZe;qA>IL!5Dy{wM-b>ACKeWE7Iu(-7@5j}m|2j8Rnd@5$T5&Tu~1ma zsF6d&Y2w0-2RW6EgFc8R6KQ!#m{`Vr(Mu#brIP!m}`f_n(=pZ~WQc$gW15ymXY zV9)US(j_y6Jg4f12UcImG%!kCe#1RxgZ;HF$6MA+o;Jz#`~A4wbw9RgJgF$D_( z&oMit<~Et0e3JfNZf^0Fu2a{(cI??*diu`bYT!w=yT3)iGNZ8tOBRVG{R7n<9_%mm4o|eOdn_ zbh`Z)p}*4q8M>Bjy)pe+k@!FBk9u2mzJ+bSq+~SV?6aR)4!>`llzbpFsemnOZ{O5a zuZ>ifO?vbwAv90lgXu26I+NdzFM;P(s^)vh30yQexkmTCd-c~@$QOu+PIH?{VU=#uYJhq72SXHaBioE;|Yf34ae>028XL!%jJILK78#S|A)P;(`S93 zwQi}V(48H}1TD1||8Pu;FYfxZ^6}0VopqBE>q3(!H)!AblmBpU*nft@Re38{RAyE$ z*Z#XC|BedJpIqji&yz3hIpv+X{_Wbgx(|(Fd=*?m<2==uzxG`8=!;H9oYu}u3R|Uo z7wNv3o0{46UeC=TrmDWT%>KjHJ*EE{>?YPfP+af+;dsNA`Mj9{QE$AvXUy0$c^A)2 z4oU6#y9^tTme?n3{r8lMf2W>Dg5cTp#Uk;lrS1K(`6zwE!Xt6%;qhWGcn%j255>8rlL7pxQ>4Jkvl$b*%q@+j}%_ON5kxNr& za!GC}S#r%R4IM0(Y9y76%#P|jJ?GDJ&i8rV_n+_k&*ypNFXjC}5`cig;4mlx4u>O= z2owgVh(V(yHr89s;X~p4^wmXgBvh$7RTAS2%-b8QQhtNhZUCo5s65Y z#xlI7mf=d0k+BJNwbdGH8`}*VH*I!wa^6CB_wd~5wQF|(BXD2P{@{?`Bcl#Svto{% zNIH2cIpuU}Iw#{|=B2F5*?Bkf3vLw_6_=FVE3c@mx?la^(c`8k&HSe=&$D)XB0RP}D?H{0jc(6+z1qcKTfq(OW6rz^~jDCeHZ;ZP~!g*{RI8=$ol{c z7_{^-FczQz5{)+YwKS=5@vvZRFF%WJm*syo`w;JbT)x&Hn+t={TO*r|E(BgX58SzZ zRqR}#?NuuxomPq37Y>(r?Xb|@S&jih}y-Ck@G@wm=8}_TU2npUB#T! zBC6#LF^ZbQku+97H*dyQEd<5jq0EMAQ#O+q>bUNo-Ii&)fYVt+G800oQ_kXtcPeLE zh%p}YIF-klejTu}Mmt!7EQZ@^6ty+L^FGm;a4>FCIsOq@|fpE|+vC^@6T$6h@-X)m7p(Zt6 zslP38ygi*Yz&$^0ZCDo$PFPnh&i@*goG^YRVNh8PG)p=sR(m_To*qx_${4JOE9%Ds zvCCs;raWsW>5Fk=a-bnh4m1h(a$Xfo(~>8pwkJ!f0$*|Fln%7ihKi*N8%kW%&vm6g z0#tFHCOT=JLlnh92>zhUVXxTlLy>ln8_+EFAOn-i_uwc1o>kdUlzmw80oRUp<1qNuXahGhU(3)SsmmctUxPU{R)qareC{B z!jCNODrP!WTg?P@4=Np;oLsAqIbdQLbFMbW2Jg!6LP-ukkxAu%xv%ltY+A~DZqt`= zA1bBkgtm&ZWG8J{cRFn0>pR_9ksQz}aBB@%qb7X6U_LyE-fub3S|F=5^=pVM9AlsE z1L=*(#5VY`8W-zOvYC+D@8y?NWK3{P0Q9NeSbs^} zPV%{@c)+l|q&%28dhY2Povax-5cg%$%U31NlIbUQxfWw!F7j?I4~yenNNi*FU{1WK zt7A6rp=~owmgWS+nra`UJn|mE_Ts^F*;{nrZLG6XazJ$xTs!gDeTfh6!`-8zQ?ik=EK(FU3=iYc~`Pg+#dFtpz2Lpe4t7gX$&h|qzTSmhXlh_3M z`V>K?E`2Yl$up>i=dewn`zhqTVCv|~`?M6_X_?>RkR0eLE^Xwn@(`RSeGEh@kGrF2 z$FFd`qlq=UVj#Ub;)Xe$@~K$^Iq>|PchdDpS+L!y6m(T_{=nd$)Z|iiB26y(3#Jb9 Ay8r+H literal 0 HcmV?d00001 diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/11526157_004.jpg" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/11526157_004.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..42fc11e7ab634179f96a9fa513d61cf92aebc350 GIT binary patch literal 1391 zcmex=KU|?coW@chxW@Tkz0jjJ8$}zAA zvI;30I#U-U>$dGXcJ4ZK_{h;?$4{I*b?NeztJkjIxOwa0qsLF4K70P+<*SdM zK7aZ8?fZ|PzZe;qA>IL!5Dy{wM-b>ACKeWE7Iu(-7@5j}m|2j8Rnd@5$T5&Tu~1ma zsF6d&Y2w0-2RW6EgFc8R6KQ!#m{`Vr(Mu#brIP!m}`f_n(=pZ~WQc$gW15ymXY zV9)S++R+aA-8H`$XKiKcOR?F~`Q}vS%ZG0r=5$Z_BenX~VLI9o!V3^bMbJ2lgnqr0O_3;2M$Pn zeUNTC$Hw{Z@|CsQ{duO$^&)R#U^L^yBo3lKgWHc{O z`Q-F?^5pXmBfZL8kMZsn+bX$Usn31W=f<5*dU}Q%BhoD-AC!Fk&+z*GWu3*B-iW;p zuI>z6BH7Cp*!l8YrM=I`w=tpjrmM}Y&n+#s$~WGuSH#fkuIE;%zUg=MmA8-9Mu+d; zcJU2E#iK&5O&Vw3MC27;mhLlPcPI>)`&Dz<7Tf6oKUOb}SUjz-c&m46q~ROmdHW8l z?O7c9QSzhN^3s*oR>~(h@6B!r{LjE~thV7l!`DX}-zXOsd*F? zhdWNb-fsF{PJGvgd;LpeZojy8kagR)nZeH{9@6tRd{y=MRrYgx#jTR>^zxRZP0MaN zdW_A}QvK(ZPpd`6*Pd$n<*B!1R+;ruo6qyUzNq8fcG<>qMP}5x_2n|Tx`%m~cWCt_ z%s)QociNuU!5hSiSGeW;GBf@ap182a`g-Z@Z0SRbv?H%<`^kT%%R*j1uJD+3$krSA zXTI0QUHWk|*<-50PNQSR-$O$TbT1T7F#K`#_w9;OZqK!PMTs-LPOQ3d!gllR56c;r z@JxF?M^5ub=-Z#yU3>hJ-9Fe@neF;Dciuw7@~~h@#~%6mb-b1Jy?ZR#+8+t$CTuc^ z*O?@q5Mg-IZr-B3uPiqm?%~ruoB!qMNB$%3TMKyN%3c;<&f=Tj$FO8k`>SIVBG)! literal 0 HcmV?d00001 diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/120519943.jpg" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/120519943.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..4719176adbf1d830bdfb98212983e851bc5b87ae GIT binary patch literal 1086 zcmex=KU|?coW@chxW@Tkz0jjJ8$}zAA zvI;30I#U-U>$dGXcJ4ZK_{h;?$4{I*b?NeztJkjIxOwa0qsLF4K70P+<*SdM zK7aZ8?fZ|PzZe;qA>IL!5Dy{wM-b>ACKeWE7Iu(-7@5j}m|2j8Rnd@5$T5&Tu~1ma zsF6d&Y2w0-2RW6EgFc8R6KQ!#m{`Vr(Mu#brIP!m}`f_n(=pZ~WQc$gW15ymXY zV9)UV*Rwydk52qCPFtiQ_3B?h&Fs>XD&^|3`{$NSJ$Tn&#?JO?-n*JD0?~(gf=)Pa zaOm8vJ+We?Uc{YCb1a`GpS%8Od++`&JkL&>t-5cbbes9*y!~sd*;{HN(;wZ{erurF z_RL22=;psKX8++&j@h@gGF|QGv{(EZJ=55Gu7x+<{->uCF4nhUqP-<|^7?vo7Ojf%ExujBz#j2$mYsC<#oJFd741(dgaZFy0o`^@{OaE?mHO-cFS146eKp^%waf5bO|S?(e;7Oe@cmAy{`MS|wufP#?nUx6sw6G7mXSN$H}%Q;e=F^|UYP9v@hSeh)|`;A zmR*zPAE`B8RO51CYiqz|Y0v%-z6btDFaNam{@b_e|C++)fB#v3Y+uR6{nwp;g!@NY L^|C9a|Gx{a.d(t,{c:()=>_});var r=a(74848),i=a(73189),l=a(34164),n=a(96540),s=a(75986),c=a(18377),o=a(24347),d=a(35220),u=a(9214);let m=(0,n.createContext)({actionsOpen:!1,setActionsOpen:i.l}),h=({children:e})=>{let[t,a]=(0,n.useState)(!1),i=(0,n.useMemo)(()=>({actionsOpen:t,setActionsOpen:a}),[t]);return(0,r.jsx)(m,{value:i,children:e})};h.displayName="ListItemActionsProvider";try{m.displayName||(m.displayName="ActionsContext")}catch{}var y=a(29622),f=a(77177),p=a(29731);function v({style:e,className:t,children:a}){return(0,r.jsx)("div",{className:(0,l.$)("MetadataContainer-module__container--nU0s9",t),style:e,...(0,p.G)("list-view-item-metadata"),children:a})}try{v.displayName||(v.displayName="ListItemMetadataContainer")}catch{}var x=a(49744),N=a(60257),g=a(27603),b=a(74501);let j=({ref:e,children:t,isActive:a=!1,title:i,metadata:m,secondaryActions:h,style:p,className:j,metadataContainerStyle:_,metadataContainerClassName:C,as:w,...S})=>{let{idPrefix:A}=(0,s.If)(),{isSelectable:I}=(0,o.v)(),{variant:L}=(0,d.e)(),{anyItemsWithActionBar:M,hasResizableActionsWithActionBar:R}=(0,c.Z)(),B=(0,n.useId)(),{isSelected:k,onSelect:T}=(0,N.r)(),{status:E}=(0,g.x)(),{title:$,titleAction:P,headingRef:W}=(0,b.J)(),{description:O}=(0,f.L)(),{hasNewActivity:G}=(0,x.I)(),{alignment:D}=(0,y.m)(),K=(0,n.useRef)(null);(0,n.useEffect)(()=>{"function"==typeof e?e(K.current):e&&(e.current=K.current)},[e]),(0,n.useEffect)(()=>{K.current&&a&&document.activeElement?.tagName==="BODY"&&K.current.focus()});let z=(0,n.useCallback)(e=>{switch(e.key){case"Enter":if(P){let t=document.activeElement,a=K.current===t,r=W.current&&(W.current===t||W.current.contains(t));(a||r)&&P(e)}break;case" ":if(!I||K?.current!==document.activeElement)break;e.preventDefault(),T(!k);break;case"Escape":K?.current?.focus()}},[P,I,T,k,W]),H=(0,n.useCallback)(()=>{let e=k?"Selected":"",t=G?"New activity":"",a=!!h,r=Array.isArray(m)&&m.length>0||m&&!Array.isArray(m),i="";(r||a)&&(i="More information available below");let l=[$,E].filter(e=>e.trim()).join(": ");try{l=l.replace(/(?e.trim()).join(". ");return n.endsWith(".")?n:`${n}.`},[h,m,k,G,$,E,O]);return(0,r.jsxs)(w||"li",{ref:K,id:`${A}-list-view-node-${B}`,className:(0,l.$)("ListItem-module__listItem--k4eMk",k&&"ListItem-module__selected--WTEJT","compact"===L&&"ListItem-module__compact--f4FSR","center"===D&&"ListItem-module__centerAligned--PWSgp",M&&R&&"ListItem-module__hasActionBar--t14sR",j),tabIndex:-1,"aria-label":H(),style:p,onKeyDown:z,...S,children:[i,t,Array.isArray(m)&&m.length>0?(0,r.jsx)(v,{style:_,className:C,children:m.map((e,t)=>(0,r.jsx)(n.Fragment,{children:e},t))}):!!(m&&!Array.isArray(m))&&(0,r.jsx)(v,{style:_,className:C,children:m}),h??(M&&(0,r.jsx)(u.L,{}))]})};j.displayName="ListItemBase";let _=({ref:e,children:t,isSelected:a=!1,onSelect:l=i.l,alignment:s,...c})=>{let{setSelectedCount:d}=(0,o.v)(),u=(0,n.useRef)(a);u.current=a,(0,n.useEffect)(()=>{d(e=>a?e+1:Math.max(0,e-1))},[a,d]),(0,n.useEffect)(()=>()=>{u.current&&d(e=>Math.max(0,e-1))},[d]);let m=(0,n.useMemo)(()=>({isSelected:a,onSelect:l}),[a,l]);return(0,r.jsx)(h,{children:(0,r.jsx)(b.y,{children:(0,r.jsx)(N.W,{value:m,children:(0,r.jsx)(x.t,{children:(0,r.jsx)(f.O,{children:(0,r.jsx)(g.u,{children:(0,r.jsx)(y.F,{alignment:s,children:(0,r.jsx)(j,{...c,ref:e,children:t})})})})})})})})};_.displayName="ListItem"},9214:(e,t,a)=>{a.d(t,{L:()=>o});var r=a(74848),i=a(91230),l=a(29731),n=a(34164),s=a(96540),c=a(18377);let o=({anchorIcon:e,style:t,className:a,label:o="list item action bar",...d})=>{let{setAnyItemsWithActionBar:u,setHasResizableActionsWithActionBar:m}=(0,c.Z)();return(0,s.useEffect)(()=>u(!0),[u]),(0,s.useEffect)(()=>{d.actions&&m(!0)},[d.actions,m]),(0,r.jsx)("div",{className:(0,n.$)("ActionBar-module__container--8I2RB",d.actions&&"ActionBar-module__hasActions--HH0uB",a),style:t,...(0,l.G)("list-view-item-action-bar-container"),children:(0,r.jsx)(i.E7,{...d,label:o,variant:"menu",overflowMenuToggleProps:e?{icon:e}:void 0})})};try{o.displayName||(o.displayName="ListItemActionBar")}catch{}},27603:(e,t,a)=>{a.d(t,{u:()=>n,x:()=>s});var r=a(74848),i=a(96540);let l=(0,i.createContext)(void 0),n=({children:e})=>{let[t,a]=(0,i.useState)(""),n=(0,i.useMemo)(()=>({status:t,setStatus:a}),[t]);return(0,r.jsx)(l,{value:n,children:e})};n.displayName="ListItemStatusProvider";let s=()=>{let e=(0,i.use)(l);if(!e)throw Error("useListItemStatus must be used with StatusProvider.");return e};try{l.displayName||(l.displayName="StatusContext")}catch{}},29622:(e,t,a)=>{a.d(t,{F:()=>n,m:()=>s});var r=a(74848),i=a(96540);let l=(0,i.createContext)({alignment:"top"}),n=({alignment:e,children:t})=>{let a=(0,i.useMemo)(()=>({alignment:e??"top"}),[e]);return(0,r.jsx)(l,{value:a,children:t})};n.displayName="ListItemAlignmentProvider";let s=()=>(0,i.use)(l);try{l.displayName||(l.displayName="AlignmentContext")}catch{}},49744:(e,t,a)=>{a.d(t,{I:()=>s,t:()=>n});var r=a(74848),i=a(96540);let l=(0,i.createContext)(void 0),n=({children:e})=>{let[t,a]=(0,i.useState)(!1),n=(0,i.useMemo)(()=>({hasNewActivity:t,setHasNewActivity:a}),[t]);return(0,r.jsx)(l,{value:n,children:e})};n.displayName="ListItemNewActivityProvider";let s=()=>{let e=(0,i.use)(l);if(!e)throw Error("useListItemNewActivity must be used with NewActivityProvider.");return e};try{l.displayName||(l.displayName="NewActivityContext")}catch{}},56825:(e,t,a)=>{a.d(t,{m:()=>n});var r=a(96540),i=a(50205),l=a(61015);function n(e){let{titleHeaderTag:t,hasMetadataTitle:a}=(0,l.t)();return(0,r.useMemo)(()=>{let r=i.Dy.findIndex(t=>t===e),l=i.n1.indexOf(t)+(a?r:r-1);return l>i.n1.length-1?"h6":i.n1[l]||i.O1[e]},[t,a,e])}},60257:(e,t,a)=>{a.d(t,{W:()=>o,r:()=>d});var r=a(74848),i=a(4559),l=a(73189),n=a(96540),s=a(74501);let c=(0,n.createContext)({isSelected:!1,onSelect:l.l}),o=({children:e,value:{isSelected:t,onSelect:a}})=>{let{title:l}=(0,s.J)(),o=(0,n.useMemo)(()=>({isSelected:t,onSelect:e=>{(0,i.i)(e?`Selected. ${l}.`:`Unselected. ${l}.`),a(e)}}),[t,a,l]);return(0,r.jsx)(c,{value:o,children:e})};o.displayName="ListItemSelectionProvider";let d=()=>(0,n.use)(c);try{c.displayName||(c.displayName="SelectionContext")}catch{}},74501:(e,t,a)=>{a.d(t,{J:()=>s,y:()=>n});var r=a(74848),i=a(96540);let l=(0,i.createContext)(void 0),n=({children:e})=>{let[t,a]=(0,i.useState)(""),[n,s]=(0,i.useState)(null),c=(0,i.useRef)(null);(0,i.useEffect)(()=>{c?.current?.textContent&&a(c.current.textContent.trim())},[c,a]);let o=(0,i.useMemo)(()=>({title:t,titleAction:n,setTitleAction:s,headingRef:c}),[t,n]);return(0,r.jsx)(l,{value:o,children:e})};n.displayName="ListItemTitleProvider";let s=()=>{let e=(0,i.use)(l);if(!e)throw Error("useListItemTitle must be used with TitleProvider.");return e};try{l.displayName||(l.displayName="TitleContext")}catch{}},77177:(e,t,a)=>{a.d(t,{L:()=>s,O:()=>n});var r=a(74848),i=a(96540);let l=(0,i.createContext)(void 0),n=({children:e})=>{let[t,a]=(0,i.useState)(""),n=(0,i.useMemo)(()=>({description:t,setDescription:a}),[t]);return(0,r.jsx)(l,{value:n,children:e})};n.displayName="ListItemDescriptionProvider";let s=()=>{let e=(0,i.use)(l);if(!e)throw Error("useListItemDescription must be used with DescriptionProvider.");return e};try{l.displayName||(l.displayName="DescriptionContext")}catch{}},91230:(e,t,a)=>{a.d(t,{E7:()=>O});var r=a(74848),i=a(96540);let l=(0,i.createContext)({actions:[],staticMenuActions:[],label:"Actions",gap:0}),n=({children:e,value:{actions:t=[],staticMenuActions:a,variant:n="toolbar",label:s,gap:c}})=>{let o=(0,i.useMemo)(()=>({actions:t,staticMenuActions:a,variant:n,label:s,gap:c}),[t,a,n,s,c]);return(0,r.jsx)(l,{value:o,children:e})},s=()=>{let e=(0,i.use)(l);if(!e)throw Error("useActionBarContent must be used with ActionBarContentProvider.");return e};try{l.displayName||(l.displayName="ActionBarContentContext")}catch{}try{n.displayName||(n.displayName="ActionBarContentProvider")}catch{}let c=(0,i.createContext)({outerContainerRef:(0,i.createRef)(),itemContainerRef:(0,i.createRef)()}),o=({value:{anchorRef:e},children:t})=>{let a=(0,i.useRef)(null),l=(0,i.useRef)(null),n=(0,i.useMemo)(()=>({outerContainerRef:a,itemContainerRef:l,anchorRef:e}),[e]);return(0,r.jsx)(c,{value:n,children:t})},d=()=>(0,i.use)(c);try{c.displayName||(c.displayName="ActionBarRefContext")}catch{}try{o.displayName||(o.displayName="ActionBarRefProvider")}catch{}var u=a(73189),m=a(80293),h=a(93330);let y=e=>{if(!e)return 0;let t=window.getComputedStyle(e);return t?.columnGap?parseInt(t.columnGap,10):0},f=(e,t)=>{let a=window.getComputedStyle(e),r=parseInt(a.marginLeft,10)||0,i=parseInt(a.marginRight,10)||0;return e.offsetWidth+r+i+2*t},p=(e,t)=>{let a=v(e,t);if(void 0===a)return;let r=a;return t&&(r-=t.offsetLeft),r},v=(e,t)=>{if(!e)return;let a=e.offsetWidth;return t&&(a-=t.offsetWidth),a},x=(0,i.createContext)({visibleChildEndIndex:0,justifySpaceBetween:!1,recalculateItemSize:u.l}),N=({children:e,value:{actionKeys:t}})=>{let a=t.length,[l,n]=(0,m.N)(a),{outerContainerRef:s,itemContainerRef:c}=d(),[o,u]=(0,i.useState)(),[N,g]=(0,i.useState)(),[b,j]=(0,i.useState)(()=>new Map(t.map(e=>[e,void 0]))),[_,C]=(0,i.useState)(!1),w=(0,i.useMemo)(()=>t.slice(0,l).every(e=>b.has(e)&&"number"==typeof b.get(e)),[t,b,l]),S=(0,i.useCallback)(e=>{let a=t[e];if(a)return b.get(a)},[t,b]),A=(0,i.useCallback)((e,t)=>{let a=c.current;if(!a)return;let r=f(t,y(a));j(t=>{if(r===t.get(e)||isNaN(r))return t;let a=new Map(Array.from(t.entries()));return a.set(e,r),a})},[c]),I=(0,i.useCallback)(()=>{if(!w)return;let e=s.current,t=c.current,a=v(e,t);if(void 0===a)return;let r=p(e,t);void 0!==r&&a<=r&&n(Math.max(0,l-1))},[w,s,c,n,l]),L=(0,i.useCallback)(()=>{let e=s.current,t=c.current,r=v(e,t);if(void 0===r)return;let i=S(l);if(void 0===i)return;let o=p(e,t);void 0!==o&&r>o+i&&n(Math.min(a,l+1))},[s,c,S,l,n,a]),M=(0,i.useCallback)(()=>{let e=s.current,t=c.current;if(!e||!t)return;let a=e.offsetWidth;a&&(void 0===o||a<=o?I():a>o&&L(),u(a),C(a<=(N??t.offsetWidth)))},[L,I,N,o,s,c]);(0,i.useLayoutEffect)(()=>{let e=c.current;if(!e)return;let a=[];for(let r of t){let t=e.querySelector(`[data-action-bar-item="${r}"]`);t&&a.push({key:r,el:t})}j(((e,t)=>{let a=new Map;if(0===e.length)return a;let r=y(t);for(let{key:t,el:i}of e)a.set(t,f(i,r));return a})(a,e))},[t,c]),(0,i.useLayoutEffect)(()=>{let e=c.current;e&&g(e.offsetWidth)},[c]),(0,i.useLayoutEffect)(()=>{M()},[M]),(0,h.w)(M,s);let R=(0,i.useMemo)(()=>({visibleChildEndIndex:l,justifySpaceBetween:_,recalculateItemSize:A}),[l,_,A]);return(0,r.jsx)(x,{value:R,children:e})},g=()=>(0,i.use)(x);try{x.displayName||(x.displayName="ActionBarResizeContext")}catch{}try{N.displayName||(N.displayName="ActionBarResizeProvider")}catch{}var b=a(29731),j=a(97068),_=a(45800),C=a(34164),w=a(38621),S=a(94236),A=a(26108),I=a(5524),L=a(12683);let M=w.KebabHorizontalIcon,R="invisible",B=({anchorProps:{"aria-label":e,icon:t=M,variant:a=R,...l}={icon:M,variant:R},open:n,onOpenChange:c})=>{let{anchorRef:o}=d(),{actions:u,staticMenuActions:m,label:h}=s(),{visibleChildEndIndex:y}=g(),f=(0,i.useMemo)(()=>(0,L.h1)(l,{"aria-label":e?.trim()||`More ${h}`,icon:t,className:"OverflowMenu-module__IconButton_0--cxtvS",variant:a}),[e,t,h,a,l]),p=(0,i.useMemo)(()=>u?.slice(y),[u,y]),v=p&&p.length>0,x=m&&m.length>0;return v||x?(0,r.jsxs)(S.W,{anchorRef:o,open:n,onOpenChange:c,children:[(0,r.jsx)(S.W.Anchor,{children:(0,r.jsx)(A.K,{...(0,b.G)("overflow-menu-anchor"),...f})}),(0,r.jsx)(S.W.Overlay,{align:"end","data-overflow-menu-overlay":!0,children:(0,r.jsxs)(I.l,{children:[x&&m.map(e=>(0,r.jsx)(i.Fragment,{children:e.render()},e.key)),p?.map(e=>(0,r.jsx)(i.Fragment,{children:e.render(!0)},e.key))]})})]}):null};try{B.displayName||(B.displayName="OverflowMenu")}catch{}var k=a(50463);let T=({children:e,actionKey:t})=>{let a=(0,i.useRef)(null),{recalculateItemSize:l}=g();return(0,k.A)(()=>{a.current&&l(t,a.current)},[a,l,t]),(0,r.jsx)("div",{...(0,b.G)(`action-bar-item-${t}`),"data-action-bar-item":t,ref:a,className:"VisibleItem-module__Box_0--BsJkb",children:e})};try{T.displayName||(T.displayName="VisibleItem")}catch{}let E=({className:e,style:t})=>{let{itemContainerRef:a}=d(),{actions:i,gap:l}=s(),{visibleChildEndIndex:n}=g(),c=i?.slice(0,n);return(0,r.jsx)("div",{...(0,b.G)("action-bar"),ref:a,className:(0,C.$)(e,"VisibleItems-module__Box_1--LOtDr"),style:{gap:l,...t},children:c?.map(({key:e,render:t})=>(0,r.jsx)(T,{actionKey:e,children:t(!1)},e))})};try{E.displayName||(E.displayName="VisibleItems")}catch{}let $=({overflowMenuToggleProps:e,overflowMenuProps:t,children:a,...i})=>{let{outerContainerRef:l}=d(),{label:n,variant:c,gap:o}=s(),{justifySpaceBetween:u}=g();return(0,_.G)({containerRef:l,bindKeys:j.z0.ArrowHorizontal|j.z0.HomeAndEnd,focusOutBehavior:"wrap",disabled:"toolbar"!==c},[l]),(0,r.jsxs)("div",{ref:l,...(0,b.G)("action-bar-container"),role:"toolbar"===c?"toolbar":void 0,"aria-label":"toolbar"===c?n:void 0,style:{gap:o},className:(0,C.$)("VisibleAndOverflowContainer-module__Box_0--KyT2b",u&&"VisibleAndOverflowContainer-module__space--fVHr3"),children:[(0,r.jsx)(E,{...i}),a,(0,r.jsx)(B,{anchorProps:e,...t})]})};try{$.displayName||($.displayName="VisibleAndOverflowContainer")}catch{}let P="normal",W=({children:e,...t})=>(0,r.jsx)($,{...t,children:e}),O=({actions:e=[],staticMenuActions:t,overflowMenuToggleProps:a,overflowMenuProps:l,children:s,label:c,variant:d,density:u=P,anchorRef:m,className:h,style:y})=>{let f=(0,i.useMemo)(()=>({actions:e,staticMenuActions:t,variant:d,label:c,gap:"condensed"===u?"var(--base-size-4)":"spacious"===u?"var(--base-size-16)":"none"===u?0:"var(--base-size-8)"}),[e,t,d,c,u]),p=(0,i.useMemo)(()=>({actionKeys:e.map(e=>e.key)}),[e]),v=t&&t.length>0,x=e&&e.length>0;if(!x&&!v)return null;let g={overflowMenuToggleProps:a,overflowMenuProps:l,className:h,style:y};return(0,r.jsx)(o,{value:{anchorRef:m},children:(0,r.jsx)(n,{value:f,children:x?(0,r.jsx)(N,{value:p,children:(0,r.jsx)(W,{...g,children:s})}):(0,r.jsx)(W,{...g,children:s})})})};try{W.displayName||(W.displayName="InternalActionBar")}catch{}try{O.displayName||(O.displayName="ActionBar")}catch{}},95378:(e,t,a)=>{a.d(t,{kx:()=>w,ao:()=>C});var r,i,l=a(74848),n=a(20263),s=a(73017),c=a(29731),o=a(34164),d=a(96540),u=a(56825),m=a(35220),h=a(29622),y=a(87670),f=a(46720),p=a(24347);let v="Selection-module__centerAligned--HIRyI",x="Selection-module__compact--azMKM";var N=a(60257),g=a(74501);let b=()=>{let{variant:e}=(0,m.e)(),{isSelectable:t,hasDragHandle:a}=(0,p.v)(),{isSelected:r,onSelect:i}=(0,N.r)(),{title:n}=(0,g.J)(),{alignment:s}=(0,h.m)();return t?(0,l.jsxs)("div",{className:(0,o.$)(a?"Selection-module__containerWithDragHandle--mLWh4":"Selection-module__container--OQE4d","center"===s&&v),...(0,c.G)("list-view-item-selection"),children:[a&&(0,l.jsx)(y.BS.DragTrigger,{className:(0,o.$)("Selection-module__dragTrigger--SM4bZ","compact"===e&&x)}),(0,l.jsx)(f.A,{className:(0,o.$)("Selection-module__checkbox--X3ras","compact"===e&&x,"center"===s&&v),checked:r,onChange:()=>i(!r),"aria-label":`Select: ${n}`,"data-listview-component":"selection-input",...(0,c.G)("list-view-item-selection-input")})]}):null};try{b.displayName||(b.displayName="ListItemSelection")}catch{}let j="Title-module__compact--eK6hD";function _({children:e,containerStyle:t,containerClassName:a,headerContainerRef:r,headingStyle:i,headingClassName:n,headingRef:s,leadingBadge:d,trailingBadges:y,header:f}){let{variant:p}=(0,m.e)(),{headingRef:v}=(0,g.J)(),{alignment:x}=(0,h.m)(),N=(0,u.m)("listitem");return(0,l.jsxs)(l.Fragment,{children:[(0,l.jsxs)("div",{...(0,c.G)("list-view-item-title-container"),style:t,className:(0,o.$)("Title-module__container--XD9YG","compact"===p&&j,"center"===x&&"Title-module__centerAligned--J8aYA",a),ref:r,"data-listview-item-title-container":!0,children:[(0,l.jsxs)(N,{className:(0,o.$)("Title-module__heading--s7YnL","compact"===p&&j,n),style:i,ref:e=>{if(v&&(v.current=e),s&&"current"in s)try{s.current=e}catch{}},...(0,c.G)("list-view-item-title"),children:[d,f]}),y&&(0,l.jsx)("span",{className:"Title-module__trailingBadgesSpacer--Son9W"}),(0,l.jsx)("span",{className:"Title-module__trailingBadgesContainer--mijcn",children:y}),e]}),(0,l.jsx)(b,{})]})}function C({children:e,value:t,containerStyle:a,containerClassName:r,headerContainerRef:i,headingStyle:n,headingClassName:s,headingRef:c,leadingBadge:o,trailingBadges:u,anchorRef:m,...h}){let y=(0,d.useRef)(null),f=m||y;return A({anchorRef:f,...h}),(0,l.jsx)(_,{header:h.href||h.onClick?(0,l.jsx)(S,{anchorRef:f,...h,children:(0,l.jsx)("span",{children:t})}):(0,l.jsx)("span",{children:t}),containerStyle:a,containerClassName:r,headerContainerRef:i,headingStyle:n,headingClassName:s,headingRef:c,leadingBadge:o,trailingBadges:u,children:e})}function w({children:e,html:t,containerStyle:a,containerClassName:r,headerContainerRef:i,headingStyle:s,headingClassName:c,headingRef:o,leadingBadge:d,trailingBadges:u,...m}){return A(m),(0,l.jsx)(_,{header:(0,l.jsx)(n.BC,{html:t,...m}),containerStyle:a,containerClassName:r,headerContainerRef:i,headingStyle:s,headingClassName:c,headingRef:o,leadingBadge:d,trailingBadges:u,children:e})}function S({anchorStyle:e,anchorClassName:t,anchorRef:a,linkProps:r,children:i,...n}){let{as:s="a",...u}=r??{},m=(0,d.useRef)(null);return(0,l.jsx)(s,{...(0,c.G)("listitem-title-link"),style:e,ref:a||m,className:(0,o.$)("Title-module__anchor--GmXUE","Title-module__inline--oM0P7",t),...n,...u,children:i})}let A=({href:e,onClick:t,anchorRef:a})=>{let{setTitleAction:r,headingRef:i}=(0,g.J)();return(0,d.useEffect)(()=>{(e||t)&&r(()=>t=>{if(e&&(t.metaKey||t.ctrlKey))window.open(e,"_blank");else if(a?.current)a.current.click();else if(i?.current){let e=i.current.querySelector("a, button");e&&e.click()}})},[a,i,e,t,r]),null};try{_.displayName||(_.displayName="InternalTitle")}catch{}try{(r=TitleTag).displayName||(r.displayName="TitleTag")}catch{}try{C.displayName||(C.displayName="ListItemTitle")}catch{}try{w.displayName||(w.displayName="ListItemSafeHTMLTitle")}catch{}try{(i=function({children:e,html:t,containerStyle:a,containerClassName:r,headerContainerRef:i,headingStyle:n,headingClassName:c,headingRef:o,leadingBadge:d,trailingBadges:u,...m}){return A(m),(0,l.jsx)(_,{header:(0,l.jsx)(s.JR,{html:t,...m}),containerStyle:a,containerClassName:r,headerContainerRef:i,headingStyle:n,headingClassName:c,headingRef:o,leadingBadge:d,trailingBadges:u,children:e})}).displayName||(i.displayName="ListItemUnsafeHTMLTitle")}catch{}try{S.displayName||(S.displayName="HeadingLink")}catch{}}}]); +//# sourceMappingURL=15397-8282b930bf84.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/15397.df5443f753d39709e98f.module.css" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/15397.df5443f753d39709e98f.module.css" new file mode 100644 index 0000000..3797c31 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/15397.df5443f753d39709e98f.module.css" @@ -0,0 +1,2 @@ +.OverflowMenu-module__IconButton_0--cxtvS{flex-shrink:0}.VisibleAndOverflowContainer-module__Box_0--KyT2b{align-items:center;box-sizing:initial;display:flex;flex-direction:row;flex-grow:1;flex-shrink:1;justify-content:flex-end;margin-left:auto;min-width:0;overflow:visible;position:relative}.VisibleAndOverflowContainer-module__space--fVHr3{justify-content:space-between}.VisibleItem-module__Box_0--BsJkb{display:inline-flex}.VisibleItems-module__Box_1--LOtDr{align-items:center;box-sizing:initial;contain:layout style;display:flex;flex-direction:row;flex-grow:0;flex-shrink:0;justify-content:flex-end;margin-left:auto;overflow:visible}@layer recipes{.ActionBar-module__container--8I2RB{align-items:center;display:flex;flex-grow:2px;grid-area:actions;max-width:200px;min-width:56px;padding-right:var(--base-size-16)}.ActionBar-module__hasActions--HH0uB{max-width:unset}}body:not(.DragAndDropContainer-module__isKeyboardDragging--sqA9I).is-dragging .DragAndDropContainer-module__container--WugRR{cursor:grabbing!important}.MoveDialog-module__dialogBody--mAl8V{display:flex;flex-direction:column;gap:var(--base-size-16);overflow-y:auto}.MoveDialog-module__form--sQHkL{display:flex;flex-direction:column;overflow:hidden}.MoveDialog-module__title--idZfs{align-items:center;display:flex;gap:var(--base-size-4)}.MoveDialog-module__dialogTitle--QuaQM{display:flex;flex-direction:column}.Anchor-module__calendarIcon--vmzmc{color:var(--fgColor-muted);margin:var(--base-size-2) 0}.ValidationErrorPopover-module__Popover--L6a2z{--caret-offset:0px;--x-offset:0px;font-size:var(--text-body-size-small);left:50%;top:calc(100% + var(--base-size-12));transform:translateX(calc(-50% + var(--x-offset)));width:max-content}.ValidationErrorPopover-module__Popover--L6a2z.ValidationErrorPopover-module__aboveCaret--n7mG4{top:calc(var(--base-size-4)*-1);transform:translateX(calc(-50% + var(--x-offset))) translateY(-100%)}.ValidationErrorPopover-module__PopoverContent--sE8qO{background-color:var(--bgColor-danger-emphasis);border-color:var(--borderColor-danger-muted);color:var(--fgColor-onEmphasis);padding:var(--base-size-4) var(--base-size-8);text-align:center;width:auto}.ValidationErrorPopover-module__PopoverContent--sE8qO:after,.ValidationErrorPopover-module__PopoverContent--sE8qO:before{left:50%;transform:translateX(var(--caret-offset))}.ValidationErrorPopover-module__PopoverContent--sE8qO.ValidationErrorPopover-module__aboveCaret--n7mG4:after,.ValidationErrorPopover-module__PopoverContent--sE8qO.ValidationErrorPopover-module__aboveCaret--n7mG4:before{border-top-color:var(--fgColor-danger)!important}.ValidationErrorPopover-module__PopoverContent--sE8qO.ValidationErrorPopover-module__belowCaret--bwBKr:after,.ValidationErrorPopover-module__PopoverContent--sE8qO.ValidationErrorPopover-module__belowCaret--bwBKr:before{border-bottom-color:var(--fgColor-danger)!important}.Input-module__container--Xcn7K{align-items:center;display:flex;flex-grow:1;justify-content:flex-end}.Input-module__rangeInputs--cCy1G{align-items:flex-end;display:flex}.Input-module__rangeInputs--cCy1G .Input-module__rangeInputsSeparator--zAoYC{flex-grow:0;height:var(--control-small-size);padding-left:var(--base-size-4);padding-right:var(--base-size-4)}.Input-module__singleDateInputContainer--UkBWU{flex-grow:0;position:relative;width:16ch}.Input-module__singleDateInputContainer--UkBWU.Input-module__hasCalendarButton--cBe1A{width:22ch}.Input-module__singleDateInputContainer--UkBWU .Input-module__singleDateInput--wfBlK{width:100%}.Input-module__singleDateInputContainer--UkBWU .Input-module__singleDateInput--wfBlK.Input-module__activeRangeEnd--fWov0{border-color:var(--fgColor-accent)}.Input-module__FormControl--scK8C{max-width:100%;position:relative;width:14ch}.Input-module__fullWidth--scl7k{flex-grow:1}.Input-module__multiDateInputContainer--aA3Z1{flex-grow:0;position:relative}.Input-module__multiDateInputContainer--aA3Z1.Input-module__insideDatePicker--LbTQe{max-width:100%;width:14ch}.Input-module__multiDateInputContainer--aA3Z1 .Input-module__multiDateInput--fWUfH{padding:0 var(--base-size-8);width:100%}.Input-module__multiDateInputContainer--aA3Z1 .Input-module__multiDateInput--fWUfH input{width:0}.Input-module__multiDateInputContainer--aA3Z1 .Input-module__multiDateInput--fWUfH input:focus{width:11ch}.Input-module__calendarIconButton--eV3PF{padding:0}.Input-module__successIcon--2jasV{color:var(--fgColor-success)}.Input-module__dangerIcon--AYHFx{color:var(--fgColor-danger)}.ConfirmCloseDialog-module__labelText--VRdFV{margin-left:var(--base-size-4)}.Overlay-module__overlay--EI3QB{overflow-y:auto}.Day-module__day--Lk_yW{align-items:center;border-radius:var(--borderRadius-medium);color:var(--text-color);display:flex;font-family:var(--fontStack-monospace);font-size:var(--text-body-size-small);height:var(--control-large-size);justify-content:center;margin:1px;transition:background-color .1s ease,color .1s ease,box-shadow .1s ease;-webkit-user-select:none;user-select:none;width:var(--control-large-size);--text-color:var(--fgColor-default)}.Day-module__day--Lk_yW[aria-disabled=true]{--text-color:var(--control-fgColor-disabled)}.Day-module__day--Lk_yW[aria-selected]:not([aria-disabled=true]){cursor:pointer}.Day-module__day--Lk_yW[aria-selected]:not([aria-disabled=true]):focus-visible{outline:var(--focus-outline);outline-offset:2px;z-index:1}.Day-module__day--Lk_yW[aria-selected]:not([aria-disabled=true]):where(:not(.Day-module__selected--qMeWD)):hover{background:var(--control-bgColor-hover)}.Day-module__day--Lk_yW[aria-selected]:not([aria-disabled=true]):where(:not(.Day-module__selected--qMeWD)):active{background:var(--control-bgColor-active)}.Day-module__day--Lk_yW.Day-module__today--ATWu5{font-weight:700;--text-color:var(--fgColor-accent)}.Day-module__day--Lk_yW.Day-module__today--ATWu5 .Day-module__date--ASCWF:after{background:var(--text-color);border-radius:1px;bottom:0;content:"";display:block;height:2px;left:50%;position:absolute;transform:translateX(-50%);width:16px}.Day-module__day--Lk_yW.Day-module__selected--qMeWD{background:var(--bgColor-accent-emphasis);--text-color:var(--fgColor-onEmphasis)}.Day-module__day--Lk_yW.Day-module__selected--qMeWD:is(.Day-module__rangeFrom--aiIAc,.Day-module__rangeTo--T4srd):not(.Day-module__activeRangeEnd--An_E2){background:var(--borderColor-accent-muted);--text-color:var(--fgColor-default)}.Day-module__day--Lk_yW.Day-module__selected--qMeWD.Day-module__rangeFrom--aiIAc{border-radius:4px 0 0 4px}.Day-module__day--Lk_yW.Day-module__selected--qMeWD.Day-module__rangeMiddle--c6Wld{background:var(--bgColor-accent-muted);border-radius:0;--text-color:var(--fgColor-default)}.Day-module__day--Lk_yW.Day-module__selected--qMeWD.Day-module__rangeTo--T4srd{border-radius:0 4px 4px 0}.Day-module__day--Lk_yW.Day-module__range--xx5j9{margin:1px 0;width:calc(var(--control-large-size) + 2px)}.Day-module__day--Lk_yW.Day-module__header--EmCNc{--text-color:var(--fgColor-muted)}.Day-module__day--Lk_yW .Day-module__date--ASCWF{line-height:2;position:relative}.Month-module__container--z5U_x{display:flex;flex-direction:column;gap:var(--base-size-16);-webkit-user-select:none;user-select:none}.Month-module__container--z5U_x .Month-module__row--vNOCW{display:flex;justify-content:space-between}.Month-module__container--z5U_x .Month-module__grid--rtixL{min-height:calc((var(--control-large-size) + 2px)*7)}.Month-module__container--z5U_x .Month-module__title--dDTE5{color:var(--fgColor-default);font-size:var(--text-body-size-medium);font-weight:700;grid-area:month;height:var(--base-size-24);text-align:center}.Month-module__container--z5U_x .Month-module__title--dDTE5.Month-module__compressedHeader--gqq2V{clip-path:circle(0)}.Panel-module__container--QM8qh{align-items:stretch;background-color:var(--bgColor-default);display:flex;flex-direction:column;position:relative}.Panel-module__container--QM8qh [aria-disabled=true],.Panel-module__container--QM8qh [disabled]{pointer-events:none}.Panel-module__topNav--GYQdx{display:flex;justify-content:space-between;left:0;padding:var(--base-size-16);position:absolute;right:0;top:0;z-index:10}.Panel-module__months--VU5D4{align-items:flex-start;display:flex;flex-direction:row;gap:var(--base-size-40);margin-top:var(--base-size-4);overflow-x:auto;padding:var(--base-size-16);position:relative}.Panel-module__footer--szPNP{align-items:stretch;border-top:var(--borderWidth-thin) solid;border-top-color:var(--borderColor-default);display:flex;flex-direction:column;gap:var(--stack-gap-condensed);padding:var(--base-size-8) var(--base-size-16)}.Panel-module__footer--szPNP .Panel-module__footerRow--oTYAd{align-items:center;display:flex;flex-basis:0;flex-direction:row;gap:var(--base-size-8);justify-content:space-between;position:relative}.Panel-module__footer--szPNP .Panel-module__footerButtons--Fdy64{display:flex}.Panel-module__arrowButton--pKXOQ{height:28px;width:40px}.Panel-module__arrowButton--pKXOQ:not(:last-child){margin-right:var(--base-size-4)}.Panel-module__arrowButton--pKXOQ .Panel-module__icon--ozRZ6{color:var(--fgColor-muted)}.Panel-module__pickers--UAT_P{flex:1}.Panel-module__pickers--UAT_P .Panel-module__picker--Bd4ir{background:var(--bgColor-default);border:0;border-radius:var(--borderRadius-medium);color:var(--fgColor-default);font-weight:600;margin-right:var(--base-size-6);padding:var(--base-size-4)}.Panel-module__pickers--UAT_P .Panel-module__picker--Bd4ir :focus{outline:var(--focus-outline)}.Panel-module__pickers--UAT_P .Panel-module__picker--Bd4ir .Panel-module__option--RRz4t{background:var(--bgColor-default);border:0;color:var(--fgColor-default);font-weight:400;padding:var(--base-size-8)}.MoveDialogForm-module__form--gHVpu{display:flex;flex-direction:column;gap:var(--base-size-16);width:100%}.MoveDialogForm-module__autoComplete--jWPlJ{max-height:200px;overflow:auto}.MoveDialogForm-module__datePickerAnchor--cpNRJ{width:100%}.KeyboardSpecificInstructionsDialog-module__instructionContainer--Heahc{border-color:var(--borderColor-default);border-radius:5px;border-style:solid;border-width:var(--borderWidth-thin);display:flex;flex-direction:column}.KeyboardSpecificInstructionsDialog-module__instruction--Bn8V2{border-bottom:var(--borderWidth-thin) solid var(--borderColor-default);display:flex;justify-content:space-between;padding:var(--base-size-16)}.KeyboardSpecificInstructionsDialog-module__footerContainer--dKeqT{display:flex;justify-content:space-between;width:100%}.KeyboardSpecificInstructionsDialog-module__footerForm--eqNzz{align-items:center;display:flex}.KeyboardSpecificInstructionsDialog-module__footerForm--eqNzz>:first-child{display:contents}.KeyboardSpecificInstructionsDialog-module__footerButton--KEhPP{align-items:center;display:flex;gap:var(--base-size-8)}.DragAndDropItem-module__dragItem--rV0hu{z-index:1}.DragAndDropItem-module__dragItem--rV0hu:after,.DragAndDropItem-module__dragItem--rV0hu:before{background-color:var(--bgColor-accent-emphasis);border:0;content:"";display:block;position:absolute;z-index:1}.DragAndDropItem-module__dragItem--rV0hu.DragAndDropItem-module__vertical--jl9So:after,.DragAndDropItem-module__dragItem--rV0hu.DragAndDropItem-module__vertical--jl9So:before{height:2px;left:0;right:0}.DragAndDropItem-module__dragItem--rV0hu.DragAndDropItem-module__horizontal--UHY1O:after,.DragAndDropItem-module__dragItem--rV0hu.DragAndDropItem-module__horizontal--UHY1O:before{bottom:0;top:0;width:2px}.DragAndDropItem-module__dragItem--rV0hu.DragAndDropItem-module__vertical--jl9So:before{top:0;transform:translateY(-50%)}.DragAndDropItem-module__dragItem--rV0hu.DragAndDropItem-module__vertical--jl9So:after{bottom:0;transform:translateY(50%)}.DragAndDropItem-module__dragItem--rV0hu.DragAndDropItem-module__horizontal--UHY1O:before{left:0;transform:translateX(-50%)}.DragAndDropItem-module__dragItem--rV0hu.DragAndDropItem-module__horizontal--UHY1O:after{right:0;transform:translateX(50%)}.DragAndDropItem-module__dragItem--rV0hu .DragAndDropItem-module__contents--zC2eY{opacity:0}.DragAndDropItem-module__dragOverlay--EAT8P{background-color:var(--bgColor-default);border-radius:var(--borderRadius-medium);bottom:var(--base-size-8);box-shadow:var(--shadow-floating-large);left:var(--base-size-8);outline:var(--borderWidth-thin) solid;outline-color:var(--borderColor-muted);pointer-events:none;position:absolute}.DragAndDropTrigger-module__trigger--vk0HP{display:flex;position:relative}.DragAndDropTrigger-module__hideDragHandler--TSI5X{visibility:hidden}.DragAndDropTrigger-module__mouseTrigger--BI5oP{cursor:grab;height:100%;position:absolute;width:100%}.DragAndDropTrigger-module__buttonTrigger--wP42o{margin-right:var(--base-size-4);padding:var(--base-size-4)}body:not(.DragAndDropTrigger-module__isKeyboardDragging--WUFPt).is-dragging .DragAndDropTrigger-module__mouseTrigger--BI5oP{cursor:grabbing!important}.DragAndDropTrigger-module__touchEnabled--_fwSu .DragAndDropTrigger-module__mouseTrigger--BI5oP{touch-action:manipulation}@layer recipes{.Selection-module__container--OQE4d{display:flex;grid-area:selection;justify-content:center;margin-left:var(--base-size-8);width:32px}.Selection-module__container--OQE4d:where(.Selection-module__centerAligned--HIRyI){align-items:center}.Selection-module__containerWithDragHandle--mLWh4{display:flex;grid-area:selection;justify-content:center;width:54px}.Selection-module__dragTrigger--SM4bZ{margin-top:var(--base-size-2);padding:var(--base-size-12);width:0}.Selection-module__dragTrigger--SM4bZ.Selection-module__compact--azMKM{margin-top:-2px}.Selection-module__checkbox--X3ras{margin-top:14px!important}.Selection-module__checkbox--X3ras:where(.Selection-module__compact--azMKM){margin-top:10px!important}.Selection-module__checkbox--X3ras:where(.Selection-module__centerAligned--HIRyI){margin-top:0!important}}@layer recipes{.ListView-module__ul--A_8jF{border-radius:inherit;list-style:none;margin:0;padding:0}.ListView-module__container--rxCWy{border-top-left-radius:inherit;border-top-right-radius:inherit}.ListItem-module__listItem--k4eMk{color:var(--fgColor-default);display:grid;font-size:var(--text-body-size-medium);gap:var(--base-size-4);grid-template-areas:"selection status primary actions" "selection status metadata actions" "selection status main-content actions";grid-template-rows:repeat(3,auto);min-height:2rem;position:relative;--core-grid-template-columns:min-content min-content minmax(30%,1fr) minmax(0,max-content);--last-grid-template-column:min-content;grid-template-columns:var(--core-grid-template-columns) var(--last-grid-template-column)}}@layer recipes{@media screen and (min-width:544px){.ListItem-module__listItem--k4eMk{grid-template-areas:"selection status primary metadata actions" "selection status main-content metadata actions";grid-template-rows:repeat(2,auto)}}.ListItem-module__listItem--k4eMk:where(.ListItem-module__compact--f4FSR){grid-template-areas:"selection status primary main-content actions" "selection status metadata metadata actions";grid-template-rows:repeat(2,auto);min-height:1rem;--core-grid-template-columns:min-content min-content minmax(2em,max-content) minmax(0,auto) minmax(min-content,max-content)}@media screen and (min-width:544px){.ListItem-module__listItem--k4eMk:where(.ListItem-module__compact--f4FSR){grid-template-areas:"selection status primary main-content metadata actions";grid-template-rows:auto}}.ListItem-module__listItem--k4eMk:where(.ListItem-module__centerAligned--PWSgp){padding-bottom:var(--base-size-8);padding-top:var(--base-size-8);grid-row-gap:0}.ListItem-module__listItem--k4eMk:where(.ListItem-module__centerAligned--PWSgp):where(.ListItem-module__compact--f4FSR){padding-bottom:var(--base-size-4);padding-top:var(--base-size-4)}.ListItem-module__listItem--k4eMk:where(:first-child){border-top-left-radius:inherit;border-top-right-radius:inherit}.ListItem-module__listItem--k4eMk:where(:last-child){border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.ListItem-module__listItem--k4eMk:where(.ListItem-module__hasActionBar--t14sR){--last-grid-template-column:auto}.ListItem-module__listItem--k4eMk:where(.ListItem-module__hasActionBar--t14sR):where(.ListItem-module__compact--f4FSR){--last-grid-template-column:minmax(0,auto)}.ListItem-module__listItem--k4eMk:hover{background-color:var(--bgColor-muted)}.ListItem-module__listItem--k4eMk:not(:last-child){border-bottom:var(--borderWidth-thin) solid var(--borderColor-muted)}.ListItem-module__listItem--k4eMk:where(.ListItem-module__selected--WTEJT){background-color:var(--bgColor-accent-muted);box-shadow:0 0 0 1px var(--borderColor-accent-emphasis);z-index:1px}.ListItem-module__listItem--k4eMk:where(.ListItem-module__selected--WTEJT):hover{background-color:var(--bgColor-accent-muted)}.ListItem-module__listItem--k4eMk:focus-visible{box-shadow:none;outline:2px solid var(--focus-outlineColor);outline-offset:-2px}.MetadataContainer-module__container--nU0s9{display:flex;flex-direction:row;flex-grow:2px;flex-wrap:wrap;gap:var(--stack-gap-condensed);grid-area:metadata;padding-right:var(--base-size-16)}.Title-module__anchor--GmXUE{color:var(--fgColor-default);overflow:hidden;text-overflow:ellipsis}.Title-module__anchor--GmXUE:hover{cursor:pointer}.Title-module__anchor--GmXUE:not(.Title-module__markdown--kuIwA):hover{color:var(--fgColor-accent);text-decoration:underline}}@layer recipes{}@layer recipes{.Title-module__anchor--GmXUE:where(.Title-module__markdown--kuIwA)>a:hover{color:var(--fgColor-accent);text-decoration:underline}.Title-module__heading--s7YnL{display:inline;flex-shrink:1;font-size:var(--text-body-size-large);font-weight:500;justify-content:space-between;max-width:none;overflow:hidden;text-overflow:ellipsis;white-space:normal}.Title-module__heading--s7YnL:where(.Title-module__compact--eK6hD){flex:1 0 auto;font-size:var(--text-body-size-medium);font-weight:400;white-space:wrap}@media screen and (min-width:544px){.Title-module__heading--s7YnL:where(.Title-module__compact--eK6hD){white-space:nowrap}}.Title-module__container--XD9YG{display:block;flex-grow:2;grid-area:primary;padding-top:var(--base-size-8)}.Title-module__container--XD9YG:where(.Title-module__compact--eK6hD){display:inline;overflow:hidden;padding-bottom:var(--base-size-8);text-overflow:ellipsis;white-space:nowrap}.Title-module__container--XD9YG:where(.Title-module__centerAligned--J8aYA){align-self:center;padding-bottom:0;padding-top:0}.Title-module__trailingBadgesSpacer--Son9W{padding-right:var(--base-size-4)}.Title-module__trailingBadgesContainer--mijcn{overflow:hidden;position:relative;text-overflow:ellipsis;top:1px;vertical-align:top}.Title-module__inline--oM0P7{-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2}} +/*# sourceMappingURL=15397-f5afcd27f5ca.js.map*/ \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/15596-1802a34fc60f.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/15596-1802a34fc60f.js" new file mode 100644 index 0000000..47bd885 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/15596-1802a34fc60f.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:15596-1802a34fc60f.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[15596,80189],{5225:(e,t,n)=>{function r(...e){return JSON.stringify(e,(e,t)=>"object"==typeof t?t:String(t))}function i(e,t={}){let{hash:n=r,cache:s=new Map}=t;return function(...t){let r=n.apply(this,t);if(s.has(r))return s.get(r);let i=e.apply(this,t);return i instanceof Promise&&(i=i.catch(e=>{throw s.delete(r),e})),s.set(r,i),i}}n.d(t,{A:()=>i})},50467:(e,t,n)=>{n.d(t,{_:()=>r});function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},50515:(e,t,n)=>{n.d(t,{JC:()=>y,KK:()=>SequenceTracker,Vy:()=>o,ai:()=>v,rd:()=>u});let Leaf=class Leaf{constructor(e){this.children=[],this.parent=e}delete(e){let t=this.children.indexOf(e);return -1!==t&&(this.children=this.children.slice(0,t).concat(this.children.slice(t+1)),0===this.children.length&&this.parent.delete(this),!0)}add(e){return this.children.push(e),this}};let RadixTrie=class RadixTrie{constructor(e){this.parent=null,this.children={},this.parent=e||null}get(e){return this.children[e]}insert(e){let t=this;for(let n=0;n","\xbf":"?"},i={"`":"~",1:"!",2:"@",3:"#",4:"$",5:"%",6:"^",7:"&",8:"*",9:"(",0:")","-":"_","=":"+","[":"{","]":"}","\\":"|",";":":","'":'"',",":"<",".":">","/":"?",q:"Q",w:"W",e:"E",r:"R",t:"T",y:"Y",u:"U",i:"I",o:"O",p:"P",a:"A",s:"S",d:"D",f:"F",g:"G",h:"H",j:"J",k:"K",l:"L",z:"Z",x:"X",c:"C",v:"V",b:"B",n:"N",m:"M"},s={" ":"Space","+":"Plus"};function o(e,t=navigator.platform){var n,a,u;let{ctrlKey:h,altKey:f,metaKey:d,shiftKey:p,key:g}=e,m=[];for(let[e,t]of[h,f,d,p].entries())t&&m.push(l[e]);if(!l.includes(g)){let e=m.includes("Alt")&&c.test(t)&&null!=(n=r[g])?n:g,o=m.includes("Shift")&&c.test(t)&&null!=(a=i[e])?a:e,l=null!=(u=s[o])?u:o;m.push(l)}return m.join("+")}let l=["Control","Alt","Meta","Shift"];function a(e,t){let n,r,i;{var s,o,l,a=(s=e,o=t,r="u"this.reset(),SequenceTracker.CHORD_TIMEOUT)}};function u(e){return e.split(" ").map(e=>a(e)).join(" ")}function h(e){if(!(e instanceof HTMLElement))return!1;let t=e.nodeName.toLowerCase(),n=(e.getAttribute("type")||"").toLowerCase();return"select"===t||"textarea"===t||"input"===t&&"submit"!==n&&"reset"!==n&&"checkbox"!==n&&"radio"!==n&&"file"!==n||e.isContentEditable}SequenceTracker.CHORD_TIMEOUT=1500;let f=new RadixTrie,d=new WeakMap,p=f,g=new SequenceTracker({onReset(){p=f}});function m(e){if(e.defaultPrevented||!(e.target instanceof Node))return;if(h(e.target)){let t=e.target;if(!t.id||!t.ownerDocument.querySelector(`[data-hotkey-scope="${t.id}"]`))return}let t=p.get(o(e));if(!t)return void g.reset();if(g.registerKeypress(e),p=t,t instanceof Leaf){let r,i=e.target,s=!1,o=h(i);for(let e=t.children.length-1;e>=0;e-=1){let n=(r=t.children[e]).getAttribute("data-hotkey-scope");if(!o&&!n||o&&i.id===n){s=!0;break}}if(r&&s){var n;let t;n=r,t=new CustomEvent("hotkey-fire",{cancelable:!0,detail:{path:g.path}}),n.dispatchEvent(t)&&(h(n)?n.focus():n.click()),e.preventDefault()}g.reset()}}function v(e,t){0===Object.keys(f.children).length&&document.addEventListener("keydown",m);let n=(function(e){let t=[],n=[""],r=!1;for(let i=0;ie.map(e=>a(e)).filter(e=>""!==e)).filter(e=>e.length>0)})(t||e.getAttribute("data-hotkey")||"").map(t=>f.insert(t).add(e));d.set(e,n)}function y(e){let t=d.get(e);if(t&&t.length)for(let n of t)n&&n.delete(e);0===Object.keys(f.children).length&&document.removeEventListener("keydown",m)}},70170:(e,t,n)=>{function r(e,t=0,{start:n=!0,middle:i=!0,once:s=!1}={}){let o,l=n,a=0,c=!1;function u(...r){if(c)return;let h=Date.now()-a;a=Date.now(),n&&i&&h>=t&&(l=!0),l?(l=!1,e.apply(this,r),s&&u.cancel()):(i&&h{a=Date.now(),e.apply(this,r),s&&u.cancel()},i?t-h:t))}return u.cancel=()=>{clearTimeout(o),c=!0},u}function i(e,t=0,{start:n=!1,middle:s=!1,once:o=!1}={}){return r(e,t,{start:n,middle:s,once:o})}n.d(t,{n:()=>r,s:()=>i})},97797:(e,t,n)=>{function r(){if(!(this instanceof r))return new r;this.size=0,this.uid=0,this.selectors=[],this.selectorObjects={},this.indexes=Object.create(this.indexes),this.activeIndexes=[]}n.d(t,{h:()=>M,on:()=>O});var i,s=window.document.documentElement,o=s.matches||s.webkitMatchesSelector||s.mozMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;r.prototype.matchesSelector=function(e,t){return o.call(e,t)},r.prototype.querySelectorAll=function(e,t){return t.querySelectorAll(e)},r.prototype.indexes=[];var l=/^#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;r.prototype.indexes.push({name:"ID",selector:function(e){var t;if(t=e.match(l))return t[0].slice(1)},element:function(e){if(e.id)return[e.id]}});var a=/^\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;r.prototype.indexes.push({name:"CLASS",selector:function(e){var t;if(t=e.match(a))return t[0].slice(1)},element:function(e){var t=e.className;if(t){if("string"==typeof t)return t.split(/\s/);else if("object"==typeof t&&"baseVal"in t)return t.baseVal.split(/\s/)}}});var c=/^((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;r.prototype.indexes.push({name:"TAG",selector:function(e){var t;if(t=e.match(c))return t[0].toUpperCase()},element:function(e){return[e.nodeName.toUpperCase()]}}),r.prototype.indexes.default={name:"UNIVERSAL",selector:function(){return!0},element:function(){return[!0]}},i="function"==typeof window.Map?window.Map:function(){function e(){this.map={}}return e.prototype.get=function(e){return this.map[e+" "]},e.prototype.set=function(e,t){this.map[e+" "]=t},e}();var u=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g;function h(e,t){var n,r,i,s,o,l,a=(e=e.slice(0).concat(e.default)).length,c=t,h=[];do if(u.exec(""),(i=u.exec(c))&&(c=i[3],i[2]||!c)){for(n=0;n3&&void 0!==arguments[3]?arguments[3]:{},s=!!i.capture,o=s?p:d,l=o[e];l||(l=new r,o[e]=l,document.addEventListener(e,S,s)),l.add(t,n)}function M(e,t,n){return e.dispatchEvent(new CustomEvent(t,{bubbles:!0,cancelable:!0,detail:n}))}}}]); +//# sourceMappingURL=15596-75ae69167490.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/16206-e5446f5de988.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/16206-e5446f5de988.js" new file mode 100644 index 0000000..d1a05f0 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/16206-e5446f5de988.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:16206-e5446f5de988.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[16206,40757],{5570:(e,t,n)=>{n.d(t,{_:()=>r});function r(e,t,n){if(t.set)t.set.call(e,n);else{if(!t.writable)throw TypeError("attempted to set read only private field");t.value=n}}},13937:(e,t,n)=>{let r;n.d(t,{Ax:()=>u,JW:()=>l,ZV:()=>a});let ErrorWithResponse=class ErrorWithResponse extends Error{constructor(e,t){super(e),this.response=t}};function o(){let e,t;return[new Promise(function(n,r){e=n,t=r}),e,t]}let i=[],s=[];function a(e){i.push(e)}function u(e){s.push(e)}function l(e,t){!r&&(r=new Map,"u">typeof document&&document.addEventListener("submit",c));let n=r.get(e)||[];r.set(e,[...n,t])}function c(e){if(!(e.target instanceof HTMLFormElement)||e.defaultPrevented)return;let t=e.target,n=function(e){let t=[],n=t=>"object"==typeof t?t===e:"string"==typeof t&&e.matches(t);for(let e of r.keys())if(n(e)){let n=r.get(e)||[];t.push(...n)}return t}(t);if(0===n.length)return;let a=function(e,t){let n={method:t?.formMethod||e.method||"GET",url:e.action,headers:new Headers({"X-Requested-With":"XMLHttpRequest"}),body:null};if("GET"===n.method.toUpperCase()){let t=function(e){let t=new URLSearchParams;for(let[n,r]of[...new FormData(e).entries()])t.append(n,r.toString());return t.toString()}(e);t&&(n.url+=(~n.url.indexOf("?")?"&":"?")+t)}else n.body=new FormData(e);return n}(t,e instanceof SubmitEvent?e.submitter:null),[u,l,c]=o();e.preventDefault(),h(n,t,a,u).then(async e=>{if(e){for(let e of s)await e(t);f(a).then(l,c).catch(()=>{}).then(()=>{for(let e of i)e(t)})}else t.submit()},e=>{t.submit(),setTimeout(()=>{throw e})})}async function h(e,t,n,r){let i=!1;for(let s of e){let[e,a]=o(),u=()=>(i=!0,a(),r),l={text:u,json:()=>(n.headers.set("Accept","application/json"),u()),html:()=>(n.headers.set("Accept","text/html"),u())};await Promise.race([e,s(t,l,n)])}return i}async function f(e){let t=await window.fetch(e.url,{method:e.method,body:null!==e.body?e.body:void 0,headers:e.headers,credentials:"same-origin"}),n={url:t.url,status:t.status,statusText:t.statusText,headers:t.headers,text:"",get json(){let e=JSON.parse(this.text);return delete this.json,this.json=e,this.json},get html(){var r,o;let e;return delete this.html,this.html=(r=document,o=this.text,(e=r.createElement("template")).innerHTML=o,r.importNode(e.content,!0)),this.html}};if(n.text=await t.text(),t.ok)return n;throw new ErrorWithResponse("request failed",n)}},85242:(e,t,n)=>{n.d(t,{_:()=>i});var r=n(5570),o=n(29304);function i(e,t,n){var i=(0,o._)(e,t,"set");return(0,r._)(e,i,n),n}},97797:(e,t,n)=>{function r(){if(!(this instanceof r))return new r;this.size=0,this.uid=0,this.selectors=[],this.selectorObjects={},this.indexes=Object.create(this.indexes),this.activeIndexes=[]}n.d(t,{h:()=>F,on:()=>j});var o,i=window.document.documentElement,s=i.matches||i.webkitMatchesSelector||i.mozMatchesSelector||i.oMatchesSelector||i.msMatchesSelector;r.prototype.matchesSelector=function(e,t){return s.call(e,t)},r.prototype.querySelectorAll=function(e,t){return t.querySelectorAll(e)},r.prototype.indexes=[];var a=/^#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;r.prototype.indexes.push({name:"ID",selector:function(e){var t;if(t=e.match(a))return t[0].slice(1)},element:function(e){if(e.id)return[e.id]}});var u=/^\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;r.prototype.indexes.push({name:"CLASS",selector:function(e){var t;if(t=e.match(u))return t[0].slice(1)},element:function(e){var t=e.className;if(t){if("string"==typeof t)return t.split(/\s/);else if("object"==typeof t&&"baseVal"in t)return t.baseVal.split(/\s/)}}});var l=/^((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;r.prototype.indexes.push({name:"TAG",selector:function(e){var t;if(t=e.match(l))return t[0].toUpperCase()},element:function(e){return[e.nodeName.toUpperCase()]}}),r.prototype.indexes.default={name:"UNIVERSAL",selector:function(){return!0},element:function(){return[!0]}},o="function"==typeof window.Map?window.Map:function(){function e(){this.map={}}return e.prototype.get=function(e){return this.map[e+" "]},e.prototype.set=function(e,t){this.map[e+" "]=t},e}();var c=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g;function h(e,t){var n,r,o,i,s,a,u=(e=e.slice(0).concat(e.default)).length,l=t,h=[];do if(c.exec(""),(o=c.exec(l))&&(l=o[3],o[2]||!l)){for(n=0;n3&&void 0!==arguments[3]?arguments[3]:{},i=!!o.capture,s=i?p:d,a=s[e];a||(a=new r,s[e]=a,document.addEventListener(e,S,i)),a.add(t,n)}function F(e,t,n){return e.dispatchEvent(new CustomEvent(t,{bubbles:!0,cancelable:!0,detail:n}))}}}]); +//# sourceMappingURL=16206-abec6b8109f4.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/17688-d822812c31fd.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/17688-d822812c31fd.js" new file mode 100644 index 0000000..4e61962 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/17688-d822812c31fd.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:17688-d822812c31fd.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[17688],{5326:(t,e,i)=>{i.d(e,{GP:()=>EventPart,Qh:()=>NodePart,Yp:()=>BooleanAttributePart,ab:()=>AttributePart,g$:()=>PropertyCommitter,pU:()=>AttributeCommitter,sO:()=>h});var s=i(66917),n=i(79112),r=i(80859),l=i(38214),o=i(60760),a=i(35672);let h=t=>null===t||"object"!=typeof t&&"function"!=typeof t,u=t=>Array.isArray(t)||!!(t&&t[Symbol.iterator]);let AttributeCommitter=class AttributeCommitter{constructor(t,e,i){this.dirty=!0,this.element=t,this.name=e,this.strings=i,this.parts=[];for(let t=0;tthis.handleEvent(t)}setValue(t){this.__pendingValue=t}commit(){for(;(0,s.q)(this.__pendingValue);){let t=this.__pendingValue;this.__pendingValue=r.c,t(this)}if(this.__pendingValue===r.c)return;let t=this.__pendingValue,e=this.value,i=null==t||null!=e&&(t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive),n=null!=t&&(null==e||i);i&&this.element.removeEventListener(this.eventName,this.__boundHandleEvent,this.__options),n&&(this.__options=p(t),this.element.addEventListener(this.eventName,this.__boundHandleEvent,this.__options)),this.value=t,this.__pendingValue=r.c}handleEvent(t){"function"==typeof this.value?this.value.call(this.eventContext||this.element,t):this.value.handleEvent(t)}};let p=t=>t&&(d?{capture:t.capture,passive:t.passive,once:t.once}:t.capture)},17688:(t,e,i)=>{i.d(e,{ab:()=>s.ab,Qh:()=>s.Qh,h5:()=>a.h5,u$:()=>l.u,qy:()=>c,if:()=>o.if,XX:()=>p,Pf:()=>o.Pf});var s=i(5326);let DefaultTemplateProcessor=class DefaultTemplateProcessor{handleAttributeExpressions(t,e,i,n){let r=e[0];return"."===r?new s.g$(t,e.slice(1),i).parts:"@"===r?[new s.GP(t,e.slice(1),n.eventContext)]:"?"===r?[new s.Yp(t,e.slice(1),i)]:new s.pU(t,e,i).parts}handleTextExpression(t){return new s.Qh(t)}};let n=new DefaultTemplateProcessor;var r=i(60760),l=i(66917),o=i(79112);i(80859);var a=i(35672);function h(t){let e=u.get(t.type);void 0===e&&(e={stringsArray:new WeakMap,keyString:new Map},u.set(t.type,e));let i=e.stringsArray.get(t.strings);if(void 0!==i)return i;let s=t.strings.join(a.xL);return void 0===(i=e.keyString.get(s))&&(i=new a.Bj(t,t.getTemplateElement()),e.keyString.set(s,i)),e.stringsArray.set(t.strings,i),i}let u=new Map,d=new WeakMap,p=(t,e,i)=>{let n=d.get(e);void 0===n&&((0,o.if)(e,e.firstChild),d.set(e,n=new s.Qh(Object.assign({templateFactory:h},i))),n.appendInto(e)),n.setValue(t),n.commit()};i(38214),(window.litHtmlVersions||(window.litHtmlVersions=[])).push("1.1.2");let c=(t,...e)=>new r.Q(t,e,"html",n)},35672:(t,e,i)=>{i.d(e,{Bj:()=>Template,XY:()=>n,c1:()=>l,h5:()=>h,s9:()=>a,xL:()=>s,zY:()=>u});let s=`{{lit-${String(Math.random()).slice(2)}}}`,n=``,r=RegExp(`${s}|${n}`),l="$lit$";let Template=class Template{constructor(t,e){this.parts=[],this.element=e;const i=[],n=[],a=document.createTreeWalker(e.content,133,null,!1);let d=0,p=-1,c=0;const{strings:m,values:{length:_}}=t;for(;c<_;){const t=a.nextNode();if(null===t){a.currentNode=n.pop();continue}if(p++,1===t.nodeType){if(t.hasAttributes()){const e=t.attributes,{length:i}=e;let s=0;for(let t=0;t0;){const e=u.exec(m[c])[2],i=e.toLowerCase()+l,s=t.getAttribute(i);t.removeAttribute(i);const n=s.split(r);this.parts.push({type:"attribute",index:p,name:e,strings:n}),c+=n.length-1}}"TEMPLATE"===t.tagName&&(n.push(t),a.currentNode=t.content)}else if(3===t.nodeType){const e=t.data;if(e.indexOf(s)>=0){const s=t.parentNode,n=e.split(r),a=n.length-1;for(let e=0;e{let i=t.length-e.length;return i>=0&&t.slice(i)===e},a=t=>-1!==t.index,h=()=>document.createComment(""),u=/([ \x09\x0a\x0c\x0d])([^\0-\x1F\x7F-\x9F "'>=/]+)([ \x09\x0a\x0c\x0d]*=[ \x09\x0a\x0c\x0d]*(?:[^ \x09\x0a\x0c\x0d"'`<>=]*|"[^"]*|'[^']*))$/},38214:(t,e,i)=>{i.d(e,{i:()=>TemplateInstance});var s=i(79112),n=i(35672);let TemplateInstance=class TemplateInstance{constructor(t,e,i){this.__parts=[],this.template=t,this.processor=e,this.options=i}update(t){let e=0;for(let i of this.__parts)void 0!==i&&i.setValue(t[e]),e++;for(let t of this.__parts)void 0!==t&&t.commit()}_clone(){let t,e=s.o6?this.template.element.content.cloneNode(!0):document.importNode(this.template.element.content,!0),i=[],r=this.template.parts,l=document.createTreeWalker(e,133,null,!1),o=0,a=0,h=l.nextNode();for(;o{i.d(e,{Q:()=>TemplateResult}),i(79112);var s=i(35672);let n=` ${s.xL} `;let TemplateResult=class TemplateResult{constructor(t,e,i,s){this.strings=t,this.values=e,this.type=i,this.processor=s}getHTML(){let t=this.strings.length-1,e="",i=!1;for(let r=0;r-1||i)&&-1===t.indexOf("--\x3e",l+1);let o=s.zY.exec(t);null===o?e+=t+(i?n:s.XY):e+=t.substr(0,o.index)+o[1]+o[2]+s.c1+o[3]+s.xL}return e+this.strings[t]}getTemplateElement(){let t=document.createElement("template");return t.innerHTML=this.getHTML(),t}}},66917:(t,e,i)=>{i.d(e,{q:()=>r,u:()=>n});let s=new WeakMap,n=t=>(...e)=>{let i=t(...e);return s.set(i,!0),i},r=t=>"function"==typeof t&&s.has(t)},79112:(t,e,i)=>{i.d(e,{Pf:()=>n,if:()=>r,o6:()=>s});let s=void 0!==window.customElements&&void 0!==window.customElements.polyfillWrapFlushCallback,n=(t,e,i=null,s=null)=>{for(;e!==i;){let i=e.nextSibling;t.insertBefore(e,s),e=i}},r=(t,e,i=null)=>{for(;e!==i;){let i=e.nextSibling;t.removeChild(e),e=i}}},80859:(t,e,i)=>{i.d(e,{c:()=>s,s:()=>n});let s={},n={}}}]); +//# sourceMappingURL=17688-c9ec27cf17c9.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/18312-0f4b3f79045c.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/18312-0f4b3f79045c.js" new file mode 100644 index 0000000..bee048d --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/18312-0f4b3f79045c.js" @@ -0,0 +1,6 @@ +performance.mark("js-parse-end:18312-0f4b3f79045c.js"); +(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[18312],{150:(e,t,r)=>{"use strict";var n=r(14358).readFragment,i=r(20311);e.exports=function(e,t,r,a){return function(s,o,l){var u=n(e,s);if(null==r)return t(null,o,l);if(null==u)if(!0!==a)return t(null,o,l);else i(!1);if(r in u)return!0===a&&null==u[r]&&i(!1),t(u[r],o,l);i(!1)}}},884:e=>{"use strict";e.exports={ENABLE_VARIABLE_CONNECTION_KEY:!1,ENABLE_RELAY_RESOLVERS:!1,ENABLE_GETFRAGMENTIDENTIFIER_OPTIMIZATION:!1,ENABLE_FRIENDLY_QUERY_NAME_GQL_URL:!1,ENABLE_DO_NOT_WRAP_LIVE_QUERY:!1,ENABLE_NOTIFY_SUBSCRIPTION:!1,BATCH_ASYNC_MODULE_UPDATES_FN:null,ENABLE_CONTAINERS_SUBSCRIBE_ON_COMMIT:!1,MAX_DATA_ID_LENGTH:null,STRING_INTERN_LEVEL:0,LOG_MISSING_RECORDS_IN_PROD:!1,ENABLE_STORE_ID_COLLISION_LOGGING:!1,ENABLE_NONCOMPLIANT_ERROR_HANDLING_ON_LISTS:!1,ENABLE_LOOSE_SUBSCRIPTION_ATTRIBUTION:!1,ENABLE_OPERATION_TRACKER_OPTIMISTIC_UPDATES:!1,ENABLE_RELAY_OPERATION_TRACKER_SUSPENSE:!1,PROCESS_OPTIMISTIC_UPDATE_BEFORE_SUBSCRIPTION:!1,MARK_RESOLVER_VALUES_AS_CLEAN_AFTER_FRAGMENT_REREAD:!1,ENABLE_CYLE_DETECTION_IN_VARIABLES:!1,ENABLE_ACTIVITY_COMPATIBILITY:!1,ENABLE_READ_TIME_RESOLVER_STORAGE_KEY_PREFIX:!0,ENABLE_USE_PAGINATION_IS_LOADING_FIX:!1,DISALLOW_NESTED_UPDATES:!1,ENABLE_TYPENAME_PREFIXED_DATA_ID:!1,ENABLE_UI_CONTEXT_ON_RELAY_LOGGER:!1,CHECK_ALL_FRAGMENTS_FOR_MISSING_CLIENT_EDGES:!1}},1190:(e,t,r)=>{"use strict";var n=r(99390),i=r(61798),a=r(20311);e.exports=function(e){switch(e){case"connection":return n;case"deleteRecord":return i.DeleteRecordHandler;case"deleteEdge":return i.DeleteEdgeHandler;case"appendEdge":return i.AppendEdgeHandler;case"prependEdge":return i.PrependEdgeHandler;case"appendNode":return i.AppendNodeHandler;case"prependNode":return i.PrependNodeHandler}a(!1)}},3574:e=>{"use strict";var t=[],r=[];e.exports=function(e,n){var i=t.length?t.pop():[],a=r.length?r.pop():[],s=function e(t,r,n,i){if(t===r)return 0!==t||1/t==1/r;if(null==t||null==r||"object"!=typeof t||"object"!=typeof r)return!1;var a=Object.prototype.toString,s=a.call(t);if(s!=a.call(r))return!1;switch(s){case"[object String]":return t==String(r);case"[object Number]":return!(isNaN(t)||isNaN(r))&&t==Number(r);case"[object Date]":case"[object Boolean]":return+t==+r;case"[object RegExp]":return t.source==r.source&&t.global==r.global&&t.multiline==r.multiline&&t.ignoreCase==r.ignoreCase}for(var o=n.length;o--;)if(n[o]==t)return i[o]==r;n.push(t),i.push(r);var l=0;if("[object Array]"===s){if((l=t.length)!==r.length)return!1;for(;l--;)if(!e(t[l],r[l],n,i))return!1}else{if(t.constructor!==r.constructor)return!1;if(t.hasOwnProperty("valueOf")&&r.hasOwnProperty("valueOf"))return t.valueOf()==r.valueOf();var u=Object.keys(t);if(u.length!=Object.keys(r).length)return!1;for(var c=0;c{"use strict";var n=r(29293).default,i=r(55199).observeFragment;function a(){return(a=n(function*(e,t,r){try{var n,a,s,o=yield new Promise(function(n,s){a=i(e,t,r).subscribe({next:function(e){"ok"===e.state?n(e.value):"error"===e.state&&s(e.error)}})});return null==(s=a)||s.unsubscribe(),o}catch(e){throw null==(n=a)||n.unsubscribe(),e}})).apply(this,arguments)}e.exports={waitForFragmentData:function(e,t,r){return a.apply(this,arguments)}}},4989:(e,t,r)=>{"use strict";var n=r(7058),i=r(20311),a=r(96540),s=r(69487),o=s.__internal.getObservableForActiveRequest,l=s.getSelector,u=a.useEffect,c=a.useState,d=a.useMemo;e.exports=function(e,t){var r=n(),a=d(function(){var n=l(e,t);return null==n?null:("SingularReaderSelector"!==n.kind&&i(!1),o(r,n.owner))},[r,e,t]),s=c(null!=a),f=s[0],h=s[1];return u(function(){var e;if(h(null!=a),null!=a){var t=function(){h(!1)};e=a.subscribe({complete:t,error:t})}return function(){e&&e.unsubscribe()}},[a]),f}},5561:(e,t,r)=>{"use strict";r(15519);var n=r(57042),i=r(884),a=r(90402),s=r(63657),o=r(35639);e.exports=function(){function e(e,t,r){this._subscriptions=new Set,this.__log=e,this._resolverCache=t,this._resolverContext=r}var t=e.prototype;return t.subscribe=function(e,t){var r=this,n={backup:null,callback:t,snapshot:e,stale:!1};return this._subscriptions.add(n),{dispose:function(){r._subscriptions.delete(n)}}},t.snapshotSubscriptions=function(e){var t=this;this._subscriptions.forEach(function(r){if(!r.stale){r.backup=r.snapshot;return}var i=r.snapshot,a=o.read(e,i.selector,t._resolverCache,t._resolverContext),s=n(i.data,a.data);a.data=s,r.backup=a})},t.restoreSubscriptions=function(){this._subscriptions.forEach(function(e){var t=e.backup;e.backup=null,t?(t.data!==e.snapshot.data&&(e.stale=!0),e.snapshot={data:e.snapshot.data,isMissingData:t.isMissingData,missingClientEdges:t.missingClientEdges,missingLiveResolverFields:t.missingLiveResolverFields,seenRecords:t.seenRecords,selector:t.selector,fieldErrors:t.fieldErrors}):e.stale=!0})},t.updateSubscriptions=function(e,t,r,n){var i=this,a=0!==t.size;this._subscriptions.forEach(function(s){var o=i._updateSubscription(e,s,t,a,n);null!=o&&r.push(o)})},t._updateSubscription=function(e,t,r,l,u){var c=t.backup,d=t.callback,f=t.snapshot,h=t.stale,p=l&&a(f.seenRecords,r);if(h||p){var _=p||!c?o.read(e,f.selector,this._resolverCache,this._resolverContext):c;if(t.snapshot=_={data:n(f.data,_.data),isMissingData:_.isMissingData,missingClientEdges:_.missingClientEdges,missingLiveResolverFields:_.missingLiveResolverFields,seenRecords:_.seenRecords,selector:_.selector,fieldErrors:_.fieldErrors},t.stale=!1,_.data!==f.data)return this.__log&&i.ENABLE_NOTIFY_SUBSCRIPTION&&this.__log({name:"store.notify.subscription",sourceOperation:u,snapshot:f,nextSnapshot:_}),d(_),f.selector.owner;if(i.ENABLE_LOOSE_SUBSCRIPTION_ATTRIBUTION&&(h||s(f.seenRecords,r)))return f.selector.owner}},t.size=function(){return this._subscriptions.size},e}()},5577:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(38742),a=r(53968),s=r(20311),o=i.fromObject(Object.freeze({__UNPUBLISH_RECORD_SENTINEL:!0})),l=function(){function e(e){this._base=e,this._sink=a.create()}var t=e.prototype;return t.has=function(e){return this._sink.has(e)?this._sink.get(e)!==o:this._base.has(e)},t.get=function(e){if(!this._sink.has(e))return this._base.get(e);var t=this._sink.get(e);if(t!==o)return t},t.getStatus=function(e){var t=this.get(e);return void 0===t?"UNKNOWN":null===t?"NONEXISTENT":"EXISTENT"},t.clear=function(){this._base=a.create(),this._sink.clear()},t.delete=function(e){this._sink.delete(e)},t.remove=function(e){this._sink.set(e,o)},t.set=function(e,t){this._sink.set(e,t)},t.getRecordIDs=function(){return Object.keys(this.toJSON())},t.size=function(){return Object.keys(this.toJSON()).length},t.toJSON=function(){var e=this,t=(0,n.default)({},this._base.toJSON());return this._sink.getRecordIDs().forEach(function(r){var n=e.get(r);void 0===n?delete t[r]:t[r]=i.toJSON(n)}),t},t.getOptimisticRecordIDs=function(){return new Set(this._sink.getRecordIDs())},e}();e.exports={create:function(e){return new l(e)},getOptimisticRecordIDs:function(e){return e instanceof l||s(!1),e.getOptimisticRecordIDs()}}},5580:(e,t,r)=>{"use strict";var n=r(20311);e.exports=function(e,t){(null==(r=e.metadata)?void 0:r.plural)===!0&&n(!1);var r,i,a=null==(i=e.metadata)?void 0:i.refetch;null==a&&n(!1);var s=a.operation.default?a.operation.default:a.operation,o=a.fragmentPathInResult;"string"==typeof s&&n(!1);var l=a.identifierInfo;return null!=l&&(null!=l.identifierField&&"string"!=typeof l.identifierField&&n(!1),null!=l.identifierQueryVariableName&&"string"!=typeof l.identifierQueryVariableName&&n(!1)),{fragmentRefPathInResponse:o,identifierInfo:l,refetchableRequest:s,refetchMetadata:a}}},5901:(e,t,r)=>{var n=r(70079);e.exports=function(e){if(Array.isArray(e))return n(e)},e.exports.__esModule=!0,e.exports.default=e.exports},6162:(e,t,r)=>{"use strict";var n=r(79642).SCALAR_FIELD,i=r(41046).getHandleStorageKey,a=r(3574),s=r(20311);e.exports=function(e,t,r){var o=t.find(function(t){return t.kind===n&&t.name===e.name&&t.alias===e.alias&&a(t.args,e.args)});o&&o.kind===n||s(!1);var l=i(e,r);return{kind:"ScalarField",alias:o.alias,name:l,storageKey:l,args:null}}},6505:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(50883)),i=r(90007).loadQuery,a=r(69201),s=r(49542),o=r(7058),l=r(96540),u=l.useCallback,c=l.useEffect,d=l.useRef,f=l.useState,h=r(69487),p=h.RelayFeatureFlags,_=h.getRequest,v={kind:"NullQueryReference"};function g(e){return"PreloadableConcreteRequest"===e.kind?void 0!==e.params.metadata.live:void 0!==_(e).params.metadata.live}e.exports=function(e,t){var r,l,h,_,m,y,E,R,b,S,I,D,C,k,P;return p.ENABLE_ACTIVITY_COMPATIBILITY?s(e,t):(r=e,h=null!=(l=t)?l:v,_=o(),m=a(),y=d(new Set([h])),R=(E=f(function(){return h}))[0],b=E[1],I=(S=f(function(){return h}))[0],D=S[1],h!==I&&(y.current.add(h),D(h),b(h)),C=u(function(){m.current&&(y.current.add(v),b(v))},[m]),k=u(function(e,t){var n=null!=t&&t.hasOwnProperty("__environment")?{fetchPolicy:t.fetchPolicy,networkCacheConfig:t.networkCacheConfig,__nameForWarning:t.__nameForWarning}:t;if(m.current){var a,s=i(null!=(a=null==t?void 0:t.__environment)?a:_,r,e,n);y.current.add(s),b(s)}},[_,r,b,m]),P=d(!1),c(function(){return function(){P.current=!0}},[]),c(function(){if(!0===P.current){P.current=!1,"NullQueryReference"!==R.kind&&k(R.variables,{fetchPolicy:R.fetchPolicy,networkCacheConfig:R.networkCacheConfig});return}var e=y.current;if(m.current){var t,i=(0,n.default)(e);try{for(i.s();!(t=i.n()).done;){var a=t.value;if(a===R)break;e.delete(a),"NullQueryReference"!==a.kind&&(g(r)?a.dispose&&a.dispose():a.releaseQuery&&a.releaseQuery())}}catch(e){i.e(e)}finally{i.f()}}},[R,m,k,r]),c(function(){return function(){var e,t=(0,n.default)(y.current);try{for(t.s();!(e=t.n()).done;){var i=e.value;"NullQueryReference"!==i.kind&&(g(r)?i.dispose&&i.dispose():i.releaseQuery&&i.releaseQuery())}}catch(e){t.e(e)}finally{t.f()}}},[r]),["NullQueryReference"===R.kind?null:R,k,C])}},6799:e=>{"use strict";e.exports=function(e){}},7044:e=>{"use strict";var t={},r={stop:function(){}};e.exports={profile:function(e,n){var i=t[e];if(i&&i.length>0){for(var a=[],s=i.length-1;s>=0;s--){var o=i[s](e,n);a.unshift(o)}return{stop:function(e){a.forEach(function(t){return t(e)})}}}return r},attachProfileHandler:function(e,r){t.hasOwnProperty(e)||(t[e]=[]),t[e].push(r)},detachProfileHandler:function(e,r){var n,i,a;t.hasOwnProperty(e)&&(n=t[e],i=r,-1!==(a=n.indexOf(i))&&n.splice(a,1))}}},7058:(e,t,r)=>{"use strict";var n=r(84367),i=r(20311),a=r(96540).useContext;e.exports=function(){var e=a(n);return null==e&&i(!1),e.environment}},7360:(e,t,r)=>{"use strict";var n=r(37797),i=r(40976);r(96540).useDebugValue;var a=r(69487).getFragment;e.exports=function(e,t){var r=a(e);return i(r,"first argument of useFragment()"),n(r,t,"useFragment()")}},7672:(e,t,r)=>{"use strict";var n=r(13635),i=r(31503),a=i.getQueryCacheIdentifier,s=i.getQueryResourceForEnvironment,o=r(90762),l=r(37797),u=r(7058),c=r(96540),d=c.useContext,f=c.useEffect,h=c.useState,p=c.useRef;e.exports=function(e){var t=e.query,r=e.componentDisplayName,i=e.fetchObservable,c=e.fetchPolicy,_=e.fetchKey,v=e.renderPolicy,g=u(),m=d(n),y=s(g),E=h(0),R=E[0],b=E[1],S=o(),I=S.startFetch,D=S.completeFetch,C=a(g,t,c,v,"".concat(R,"-").concat(null!=_?_:"")),k=m.wrapPrepareQueryResource(function(){return y.prepareWithIdentifier(C,t,i,c,v,{start:I,complete:D,error:D},m)}),P=p(!1);return f(function(){return function(){P.current=!0}},[]),f(function(){if(!0===P.current){P.current=!1,b(function(e){return e+1});return}var e=y.retain(k,m);return function(){e.dispose()}},[g,C]),f(function(){y.releaseTemporaryRetain(k)}),l(k.fragmentNode,k.fragmentRef,r)}},8312:e=>{"use strict";e.exports={stableCopy:function e(t){if(!t||"object"!=typeof t)return t;if(Array.isArray(t))return t.map(e);for(var r=Object.keys(t).sort(),n={},i=0;i1&&void 0!==arguments[1]?arguments[1]:new Set;if(!t||"object"!=typeof t)return!1;if(r.has(t))return!0;var n=new Set(r);return n.add(t),(Array.isArray(t)?t:Object.values(t)).some(function(t){return e(t,n)})}}},9130:(e,t,r)=>{"use strict";var n=r(96991).DEFAULT_HANDLE_KEY,i=r(20311);e.exports=function(e,t,r){return t&&t!==n?"__".concat(t,"_").concat(e):(null==r&&i(!1),"__".concat(r,"_").concat(e))}},9963:(e,t,r)=>{"use strict";var n=r(13635),i=r(7058),a=r(96540),s=r(96540),o=s.useContext,l=s.useEffect;r(14594),e.exports=function(e){var t=e.entryPointReference,r=e.props,s=t.getComponent,u=t.queries,c=t.entryPoints,d=t.extraProps,f=t.rootModuleID,h=s(),p=o(n),_=i();return l(function(){_.__log({name:"entrypoint.root.consume",profilerContext:p,rootModuleID:f})},[_,p,f]),a.createElement(h,{entryPoints:c,extraProps:d,props:r,queries:u})}},10090:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(50883)),i=r(19719),a=r(35513),s=r(93587),o=r(84895).isClientID,l=r(89046),u=r(6162),c=r(83798).getLocalVariables,d=r(38742),f=r(21304),h=f.EXISTENT,p=f.UNKNOWN,_=r(41046),v=r(84848),g=v.TYPE_SCHEMA_TYPE,m=v.generateTypeID,y=r(20311),E=_.getModuleOperationKey,R=_.getStorageKey,b=_.getArgumentValues,S=function(){function e(e,t,r,n,i,a,s,o,l,u){this._getSourceForActor=e,this._getTargetForActor=t,this._getDataID=s,this._source=e(r),this._mutatorRecordSourceProxyCache=new Map;var c=this._getMutatorAndRecordProxyForActor(r),d=c[0],f=c[1];this._useExecTimeResolvers=null!=u&&u,this._mostRecentlyInvalidatedAt=null,this._handlers=i,this._mutator=d,this._operationLoader=null!=a?a:null,this._recordSourceProxy=f,this._recordWasMissing=!1,this._variables=n,this._shouldProcessClientComponents=o,this._log=l}var t=e.prototype;return t._getMutatorAndRecordProxyForActor=function(e){var t=this._mutatorRecordSourceProxyCache.get(e);if(null==t){var r=this._getTargetForActor(e),n=new i(this._getSourceForActor(e),r),s=new a(n,this._getDataID,void 0,this._handlers,this._log);t=[n,s],this._mutatorRecordSourceProxyCache.set(e,t)}return t},t.check=function(e,t){return this._assignClientAbstractTypes(e),this._traverse(e,t),!0===this._recordWasMissing?{status:"missing",mostRecentlyInvalidatedAt:this._mostRecentlyInvalidatedAt}:{status:"available",mostRecentlyInvalidatedAt:this._mostRecentlyInvalidatedAt}},t._getVariableValue=function(e){return this._variables.hasOwnProperty(e)||y(!1),this._variables[e]},t._handleMissing=function(){this._recordWasMissing=!0},t._handleMissingScalarField=function(e,t){if(!("id"===e.name&&null==e.alias&&o(t))){var r,i=void 0!=e.args?b(e.args,this._variables):{},a=(0,n.default)(this._handlers);try{for(a.s();!(r=a.n()).done;){var s=r.value;if("scalar"===s.kind){var l=s.handle(e,this._recordSourceProxy.get(t),i,this._recordSourceProxy);if(void 0!==l)return l}}}catch(e){a.e(e)}finally{a.f()}this._handleMissing()}},t._handleMissingLinkField=function(e,t){var r,i=void 0!=e.args?b(e.args,this._variables):{},a=(0,n.default)(this._handlers);try{for(a.s();!(r=a.n()).done;){var s=r.value;if("linked"===s.kind){var o=s.handle(e,this._recordSourceProxy.get(t),i,this._recordSourceProxy);if(void 0!==o&&(null===o||this._mutator.getStatus(o)===h))return o}}}catch(e){a.e(e)}finally{a.f()}this._handleMissing()},t._handleMissingPluralLinkField=function(e,t){var r,i=this,a=void 0!=e.args?b(e.args,this._variables):{},s=(0,n.default)(this._handlers);try{for(s.s();!(r=s.n()).done;){var o=r.value;if("pluralLinked"===o.kind){var l=o.handle(e,this._recordSourceProxy.get(t),a,this._recordSourceProxy);if(null!=l){if(l.every(function(e){return null!=e&&i._mutator.getStatus(e)===h}))return l}else if(null===l)return null}}}catch(e){s.e(e)}finally{s.f()}this._handleMissing()},t._traverse=function(e,t){var r=this._mutator.getStatus(t);if(r===p&&this._handleMissing(),r===h){var n=this._source.get(t),i=d.getInvalidationEpoch(n);null!=i&&(this._mostRecentlyInvalidatedAt=null!=this._mostRecentlyInvalidatedAt?Math.max(this._mostRecentlyInvalidatedAt,i):i),this._traverseSelections(e.selections,t)}},t._traverseSelections=function(e,t){var r=this;e.forEach(function(n){switch(n.kind){case"ScalarField":r._checkScalar(n,t);break;case"LinkedField":n.plural?r._checkPluralLink(n,t):r._checkLink(n,t);break;case"ActorChange":r._checkActorChange(n.linkedField,t);break;case"Condition":!!r._getVariableValue(n.condition)===n.passingValue&&r._traverseSelections(n.selections,t);break;case"InlineFragment":var i=n.abstractKey;if(null==i)r._mutator.getType(t)===n.type&&r._traverseSelections(n.selections,t);else{var a=r._mutator.getType(t);null==a&&y(!1);var s=m(a),o=r._mutator.getValue(s,i);!0===o?r._traverseSelections(n.selections,t):null==o&&r._handleMissing()}break;case"LinkedHandle":var d=l(n,e,r._variables);d.plural?r._checkPluralLink(d,t):r._checkLink(d,t);break;case"ScalarHandle":var f=u(n,e,r._variables);r._checkScalar(f,t);break;case"ModuleImport":r._checkModuleImport(n,t);break;case"Defer":case"Stream":r._traverseSelections(n.selections,t);break;case"FragmentSpread":var h=r._variables;r._variables=c(r._variables,n.fragment.argumentDefinitions,n.args),r._traverseSelections(n.fragment.selections,t),r._variables=h;break;case"ClientExtension":var p=r._recordWasMissing;r._traverseSelections(n.selections,t),r._recordWasMissing=p;break;case"TypeDiscriminator":var _=n.abstractKey,v=r._mutator.getType(t);null==v&&y(!1);var g=m(v);null==r._mutator.getValue(g,_)&&r._handleMissing();break;case"ClientComponent":if(!1===r._shouldProcessClientComponents)break;r._traverseSelections(n.fragment.selections,t);break;case"RelayResolver":case"RelayLiveResolver":r._useExecTimeResolvers||r._checkResolver(n,t);break;case"ClientEdgeToClientObject":r._useExecTimeResolvers||r._checkResolver(n.backingField,t);break;default:y(!1)}})},t._checkResolver=function(e,t){e.fragment&&this._traverseSelections([e.fragment],t)},t._checkModuleImport=function(e,t){var r=this._operationLoader;null===r&&y(!1);var n=E(e.documentName),i=this._mutator.getValue(t,n);if(null==i){void 0===i&&this._handleMissing();return}var a=r.get(i);if(null!=a){var o=s(a),l=this._variables;this._variables=c(this._variables,o.argumentDefinitions,e.args),this._traverse(o,t),this._variables=l}else this._handleMissing()},t._checkScalar=function(e,t){var r=R(e,this._variables),n=this._mutator.getValue(t,r);void 0===n&&void 0!==(n=this._handleMissingScalarField(e,t))&&this._mutator.setValue(t,r,n)},t._checkLink=function(e,t){var r=R(e,this._variables),n=this._mutator.getLinkedRecordID(t,r);void 0===n&&(null!=(n=this._handleMissingLinkField(e,t))?this._mutator.setLinkedRecordID(t,r,n):null===n&&this._mutator.setValue(t,r,null)),null!=n&&this._traverse(e,n)},t._checkPluralLink=function(e,t){var r=this,n=R(e,this._variables),i=this._mutator.getLinkedRecordIDs(t,n);void 0===i&&(null!=(i=this._handleMissingPluralLinkField(e,t))?this._mutator.setLinkedRecordIDs(t,n,i):null===i&&this._mutator.setValue(t,n,null)),i&&i.forEach(function(t){null!=t&&r._traverse(e,t)})},t._checkActorChange=function(e,t){var r=R(e,this._variables),n=this._source.get(t),i=null!=n?d.getActorLinkedRecordID(n,r):n;if(null==i)void 0===i&&this._handleMissing();else{var a=i[0],s=i[1],o=this._source,l=this._mutator,u=this._recordSourceProxy,c=this._getMutatorAndRecordProxyForActor(a),f=c[0],h=c[1];this._source=this._getSourceForActor(a),this._mutator=f,this._recordSourceProxy=h,this._assignClientAbstractTypes(e),this._traverse(e,s),this._source=o,this._mutator=l,this._recordSourceProxy=u}},t._assignClientAbstractTypes=function(e){var t=e.clientAbstractTypes;if(null!=t)for(var r=0,i=Object.keys(t);r{"use strict";e.exports=function(e){return"object"==typeof e&&null!==e&&"function"==typeof e.check&&"function"==typeof e.lookup&&"function"==typeof e.retain&&"function"==typeof e.execute&&"function"==typeof e.subscribe}},10846:e=>{"use strict";e.exports=new(function(){function e(){this._preloadableQueries=new Map,this._callbacks=new Map}var t=e.prototype;return t.set=function(e,t){this._preloadableQueries.set(e,t);var r=this._callbacks.get(e);null!=r&&r.forEach(function(e){try{e(t)}catch(e){setTimeout(function(){throw e},0)}})},t.get=function(e){return this._preloadableQueries.get(e)},t.onLoad=function(e,t){var r,n=null!=(r=this._callbacks.get(e))?r:new Set;return n.add(t),this._callbacks.set(e,n),{dispose:function(){n.delete(t)}}},t.clear=function(){this._preloadableQueries.clear()},e}())},10962:(e,t,r)=>{"use strict";var n=r(41046),i=n.ROOT_TYPE,a=n.getStorageKey,s=r(72226).readUpdatableFragment,o=r(34364).readUpdatableQuery,l=r(20311);e.exports=function(){function e(e,t,r,n){this.__mutator=e,this.__recordSource=t,this._readSelector=r,this._missingFieldHandlers=n}var t=e.prototype;return t.create=function(e,t){return this.__recordSource.create(e,t)},t.delete=function(e){this.__recordSource.delete(e)},t.get=function(e){return this.__recordSource.get(e)},t.getRoot=function(){return this.__recordSource.getRoot()},t.getOperationRoot=function(){var e=this.__recordSource.get(this._readSelector.dataID);return e||(e=this.__recordSource.create(this._readSelector.dataID,i)),e},t._getRootField=function(e,t,r){var n=e.node.selections.find(function(e){return"LinkedField"===e.kind&&e.name===t||"RequiredField"===e.kind&&e.field.name===t});return n&&"RequiredField"===n.kind&&(n=n.field),n&&"LinkedField"===n.kind||l(!1),n.plural!==r&&l(!1),n},t.getRootField=function(e){var t=a(this._getRootField(this._readSelector,e,!1),this._readSelector.variables);return this.getOperationRoot().getLinkedRecord(t)},t.getPluralRootField=function(e){var t=a(this._getRootField(this._readSelector,e,!0),this._readSelector.variables);return this.getOperationRoot().getLinkedRecords(t)},t.invalidateStore=function(){this.__recordSource.invalidateStore()},t.readUpdatableQuery=function(e,t){return o(e,t,this,this._missingFieldHandlers)},t.readUpdatableFragment=function(e,t){return s(e,t,this,this._missingFieldHandlers)},e}()},12006:(e,t,r)=>{"use strict";var n=r(18621),i=function(e,t){},a=function(){function e(e){this._source=e}e.create=function(t){return new e(t)},e.onUnhandledError=function(e){i=e},e.from=function(e){var t,r,i,s;return"object"==typeof(t=e)&&null!==t&&"function"==typeof t.subscribe?(r=e)instanceof a?r:a.create(function(e){return r.subscribe(e)}):n(e)?(i=e,a.create(function(e){i.then(function(t){e.next(t),e.complete()},e.error)})):(s=e,a.create(function(e){e.next(s),e.complete()}))};var t=e.prototype;return t.catch=function(t){var r=this;return e.create(function(e){var n;return r.subscribe({start:function(e){n=e},next:e.next,complete:e.complete,error:function(r){try{t(r).subscribe({start:function(e){n=e},next:e.next,complete:e.complete,error:e.error})}catch(t){e.error(t,!0)}}}),function(){return n.unsubscribe()}})},t.concat=function(t){var r=this;return e.create(function(e){var n;return r.subscribe({start:function(e){n=e},next:e.next,error:e.error,complete:function(){n=t.subscribe(e)}}),function(){n&&n.unsubscribe()}})},t.do=function(t){var r=this;return e.create(function(e){var n=function(r){return function(){try{t[r]&&t[r].apply(t,arguments)}catch(e){i(e,!0)}e[r]&&e[r].apply(e,arguments)}};return r.subscribe({start:n("start"),next:n("next"),error:n("error"),complete:n("complete"),unsubscribe:n("unsubscribe")})})},t.finally=function(t){var r=this;return e.create(function(e){var n=r.subscribe(e);return function(){n.unsubscribe(),t()}})},t.ifEmpty=function(t){var r=this;return e.create(function(e){var n,i=!1;return n=r.subscribe({next:function(t){i=!0,e.next(t)},error:e.error,complete:function(){i?e.complete():n=t.subscribe(e)}}),function(){n&&n.unsubscribe()}})},t.subscribe=function(e){return function(e,t){var r,n=!1,a=function(e){return Object.defineProperty(e,"closed",{get:function(){return n}})};function s(){if(r){if(r.unsubscribe)r.unsubscribe();else try{r()}catch(e){i(e,!0)}r=void 0}}var o=a({unsubscribe:function(){if(!n){n=!0;try{t.unsubscribe&&t.unsubscribe(o)}catch(e){i(e,!0)}finally{s()}}}});try{t.start&&t.start(o)}catch(e){i(e,!0)}if(n)return o;var l=a({next:function(e){if(!n&&t.next)try{t.next(e)}catch(e){i(e,!0)}},error:function(e,r){if(n||!t.error)n=!0,i(e,r||!1),s();else{n=!0;try{t.error(e)}catch(e){i(e,!0)}finally{s()}}},complete:function(){if(!n){n=!0;try{t.complete&&t.complete()}catch(e){i(e,!0)}finally{s()}}}});try{r=e(l)}catch(e){l.error(e,!0)}return n&&s(),o}(this._source,e)},t.map=function(t){var r=this;return e.create(function(e){var n=r.subscribe({complete:e.complete,error:e.error,next:function(r){try{var n=t(r);e.next(n)}catch(t){e.error(t,!0)}}});return function(){n.unsubscribe()}})},t.mergeMap=function(t){var r=this;return e.create(function(n){var i=[];function a(e){this._sub=e,i.push(e)}function s(){i.splice(i.indexOf(this._sub),1),0===i.length&&n.complete()}return r.subscribe({start:a,next:function(r){try{n.closed||e.from(t(r)).subscribe({start:a,next:n.next,error:n.error,complete:s})}catch(e){n.error(e,!0)}},error:n.error,complete:s}),function(){i.forEach(function(e){return e.unsubscribe()}),i.length=0}})},t.poll=function(t){var r=this;return e.create(function(e){var n,i;return!function a(){n=r.subscribe({next:e.next,error:e.error,complete:function(){i=setTimeout(a,t)}})}(),function(){clearTimeout(i),n.unsubscribe()}})},t.toPromise=function(){var e=this;return new Promise(function(t,r){var n=!1;e.subscribe({next:function(e){n||(n=!0,t(e))},error:r,complete:t})})},e}();e.exports=a},12475:e=>{e.exports=function(e){if(void 0===e)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return e},e.exports.__esModule=!0,e.exports.default=e.exports},12897:(e,t,r)=>{var n=r(43693);function i(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,n)}return r}e.exports=function(e){for(var t=1;t{"use strict";var n,i,a=r(20311);e.exports=function(e){return n||(n=e.createContext(null),i=e),e!==i&&a(!1),n}},13214:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(7360),a=r(33509),s=r(71100),o=r(7058),l=r(40976),u=r(20311),c=r(96540),d=c.useCallback,f=(c.useDebugValue,c.useEffect),h=c.useLayoutEffect,p=c.useMemo,_=c.useRef,v=c.useState,g=r(69487),m=g.getFragment,y=g.getFragmentIdentifier,E=g.getPaginationMetadata,R=r(69487),b=R.ConnectionInterface,S=R.RelayFeatureFlags,I=R.getSelector,D=R.getValueAtPath;e.exports=function(e,t,r,c,g){var R,C,k=arguments.length>5&&void 0!==arguments[5]?arguments[5]:1,P=arguments.length>6&&void 0!==arguments[6]&&arguments[6],A=m(e);l(A,"first argument of usePrefetchableForwardPaginationFragment()");var O="usePrefetchableForwardPaginationFragment()",T=E(A,O),F=T.connectionPathInFragmentData,x=T.paginationRequest,N=T.paginationMetadata,L=s(A,t,O),w=L.fragmentData,M=L.fragmentRef,V=L.refetch,U=y(A,M),q=p(function(){var e=D(w,F);return null==e?null:e[b.get().EDGES]},[F,w]),j=null==q?-1:q.length,Q=v(null!=c?c:j),K=Q[0],B=Q[1],G=K;-1===K&&-1!==j&&B(G=null!=c?c:j);var Y=o(),H=v(!1),z=H[0],W=H[1],X=v(!1),J=X[0],$=X[1],Z=_(0),ee=d(function(e){var t,r=null==(t=Y.getScheduler())?void 0:t.schedule;r?r(function(){W(e)}):W(e)},[Y]),et=_(!1),er=a({componentDisplayName:O,connectionPathInFragmentData:F,direction:"forward",fragmentData:w,fragmentIdentifier:U,fragmentNode:A,fragmentRef:M,paginationMetadata:N,paginationRequest:x,observer:p(function(){function e(){et.current=!1,ee(!1)}return{start:function(){et.current=!0,W(!0)},complete:e,error:e,unsubscribe:S.ENABLE_USE_PAGINATION_IS_LOADING_FIX?e:void 0}},[ee]),onReset:d(function(){if(!J){var e,t=null==(e=Y.getScheduler())?void 0:e.schedule;t?t(function(){B(-1)}):B(-1)}et.current=!1,ee(!1)},[Y,J,ee])}),en=er[0],ei=er[1],ea=er[2];h(function(){Z.current=j-G},[G,j]);var es=null==g?void 0:g.UNSTABLE_extraVariables,eo=null==g?void 0:g.onComplete,el=d(function(e,t){(!et.current||Z.current>=0)&&(Z.current-=e,B(function(t){return t+e}),!et.current&&Z.current<0&&en(Math.max(k,Math.min(e,r-Z.current)),null!=t?t:{onComplete:eo,UNSTABLE_extraVariables:"function"==typeof es?es({hasNext:ei,data:w,getServerEdges:function(){var e=I(eu,q);return null==e?[]:("PluralReaderSelector"!==e.kind&&u(!1),e.selectors.map(function(e){return Y.lookup(e).data}))}}):es}))},[r,en,k,q,w,es,eo]),eu=null==(R=e.metadata)||null==(C=R.refetch)?void 0:C.edgesFragment;null==eu&&u(!1),f(function(){et.current||z||J||P||!ei||!(j-Gj)||en(Math.max(r-Math.max(j-G,0),G-j,k),{onComplete:eo,UNSTABLE_extraVariables:"function"==typeof es?es({hasNext:ei,data:w,getServerEdges:function(){var e=I(eu,q);return null==e?[]:("PluralReaderSelector"!==e.kind&&u(!1),e.selectors.map(function(e){return Y.lookup(e).data}))}}):es})},[ei,r,J,en,G,es,eo,j,q,z,k,Y,eu]);var ec=Math.min(G,j),ed=i(eu,p(function(){var e;return null!=(e=null==q?void 0:q.slice(0,ec))?e:[]},[q,ec])),ef=d(function(e,t){return ea(),$(!0),V(e,(0,n.default)((0,n.default)({},t),{},{onComplete:function(e){var r,n,i=null==(r=Y.getScheduler())?void 0:r.schedule;i?i(function(){$(!1),B(-1)}):($(!1),B(-1)),null==t||null==(n=t.onComplete)||n.call(t,e)},__environment:void 0}))},[ea,Y,V]);return{edges:ed,data:w,loadNext:el,hasNext:ei||j>G,isLoadingNext:z&&G>j,refetch:ef}}},13635:(e,t,r)=>{"use strict";e.exports=r(96540).createContext({wrapPrepareQueryResource:function(e){return e()}})},14358:(e,t,r)=>{"use strict";var n=r(53141).getFragment,i=r(57595).eventShouldThrow,a=r(95814).getSelector,s=r(20311),o=[],l={};e.exports={readFragment:function(e,t){if(!o.length)throw Error("readFragment should be called only from within a Relay Resolver function.");var r=o[o.length-1],u=a(n(e),t);null==u&&s(!1),"SingularReaderSelector"!==u.kind&&s(!1);var c=r.getDataForResolverFragment(u,t),d=c.data,f=c.isMissingData,h=c.fieldErrors;if(f||null!=h&&h.some(i))throw l;return d},withResolverContext:function(e,t){o.push(e);try{return t()}finally{o.pop()}},RESOLVER_FRAGMENT_ERRORED_SENTINEL:l}},14594:(e,t,r)=>{"use strict";e.exports=r(59395)},14672:(e,t,r)=>{"use strict";var n=r(32115).createOperationDescriptor,i=r(53141).getRequest;e.exports=function(e,t,r,a){var s=i(t);if("query"!==s.params.operationKind)throw Error("fetchQuery: Expected query operation");var o=n(s,r,a);return e.execute({operation:o}).map(function(){return e.lookup(o.fragment).data}).toPromise()}},15350:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(12897)),a=n(r(50883)),s=r(31503).getQueryResourceForEnvironment,o=r(20311),l=r(69487),u=l.__internal.fetchQuery,c=l.RelayFeatureFlags,d=l.createOperationDescriptor,f=l.getPendingOperationsForFragment,h=l.getSelector,p=l.getVariablesFromFragment,_=l.handlePotentialSnapshotErrors;r(14594),e.exports=function(e,t,r,n,l,v){var g,m=h(t,r),y=(null==t||null==(D=t.metadata)?void 0:D.plural)===!0;y?null==r||Array.isArray(r)||o(!1):Array.isArray(r)&&o(!1),null==r||y&&Array.isArray(r)&&0===r.length||null!=m||o(!1);var E=(S=e,null==(I=m)?{kind:"bailout"}:"PluralReaderSelector"!==I.kind?{kind:"singular",snapshot:S.lookup(I),epoch:S.getStore().getEpoch()}:0===I.selectors.length?{kind:"bailout"}:{kind:"plural",snapshots:I.selectors.map(function(e){return S.lookup(e)}),epoch:S.getStore().getEpoch()}),R=null;if((null==(C=t.metadata)?void 0:C.hasClientEdges)===!0||c.CHECK_ALL_FRAGMENTS_FOR_MISSING_CLIENT_EDGES){var b=function(e){if("bailout"===e.kind)return null;if("singular"===e.kind)return null!=(t=e.snapshot.missingClientEdges)?t:null;var t,r,n=null,i=(0,a.default)(e.snapshots);try{for(i.s();!(r=i.n()).done;){var s=r.value;if(s.missingClientEdges){n=null!=(o=n)?o:[];var o,l,u=(0,a.default)(s.missingClientEdges);try{for(u.s();!(l=u.n()).done;){var c=l.value;n.push(c)}}catch(e){u.e(e)}finally{u.f()}}}}catch(e){i.e(e)}finally{i.f()}return n}(E);if(null!=b&&b.length){R=[];var S,I,D,C,k,P=(0,a.default)(b);try{for(P.s();!(k=P.n()).done;){var A=k.value;R.push(function(e,t,r,n,a){var o=p(t,r),l=(0,i.default)((0,i.default)({},o),{},{id:n.clientEdgeDestinationID}),c=d(n.request,l,null==a?void 0:a.networkCacheConfig);return s(e).prepare(c,u(e,c),null==a?void 0:a.fetchPolicy)}(e,t,r,A,l))}}catch(e){P.e(e)}finally{P.f()}}}if("bailout"!==E.kind&&("singular"===E.kind?E.snapshot.isMissingData:E.snapshots.some(function(e){return e.isMissingData}))){null==m&&o(!1);var O=f(e,t,"PluralReaderSelector"===m.kind?m.selectors[0].owner:m.owner);if(O)throw O.promise;if("singular"===E.kind)_(e,E.snapshot.fieldErrors);else if("plural"===E.kind){var T,F=(0,a.default)(E.snapshots);try{for(F.s();!(T=F.n()).done;){var x=T.value;_(e,x.fieldErrors)}}catch(e){F.e(e)}finally{F.f()}}}return g="bailout"===E.kind?y?[]:null:"singular"===E.kind?E.snapshot.data:E.snapshots.map(function(e){return e.data}),c.LOG_MISSING_RECORDS_IN_PROD&&null!=r&&(void 0===g||Array.isArray(g)&&g.length>0&&g.every(function(e){return void 0===e})),{data:g,clientEdgeQueries:R}}},15519:e=>{"use strict";e.exports=function e(t){var r;return null!=(r=t)&&(Array.isArray(r)||"object"==typeof r&&r.constructor===Object)&&(Object.freeze(t),Object.getOwnPropertyNames(t).forEach(function(r){var n=t[r];n&&"object"==typeof n&&!Object.isFrozen(n)&&e(n)})),t}},15940:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(33509),a=r(71100),s=r(7058),o=r(40976),l=r(96540),u=l.useCallback,c=(l.useDebugValue,l.useState),d=r(69487),f=d.RelayFeatureFlags,h=d.getFragment,p=d.getFragmentIdentifier,_=d.getPaginationMetadata;function v(e){var t=s(),r=c(!1),a=r[0],o=r[1],l=function(e){var r,n=null==(r=t.getScheduler())?void 0:r.schedule;n?n(function(){o(e)}):o(e)},u={start:function(){return l(!0)},complete:function(){return l(!1)},error:function(){return l(!1)},unsubscribe:f.ENABLE_USE_PAGINATION_IS_LOADING_FIX?function(){return l(!1)}:void 0},d=i((0,n.default)((0,n.default)({},e),{},{observer:u,onReset:function(){return l(!1)}}));return[d[0],d[1],a,d[2]]}e.exports=function(e,t){var r=h(e);o(r,"first argument of usePaginationFragment()");var i="usePaginationFragment()",s=_(r,i),l=s.connectionPathInFragmentData,c=s.paginationRequest,d=s.paginationMetadata,f=a(r,t,i),g=f.fragmentData,m=f.fragmentRef,y=f.refetch,E=p(r,m),R=v({componentDisplayName:i,connectionPathInFragmentData:l,direction:"backward",fragmentData:g,fragmentIdentifier:E,fragmentNode:r,fragmentRef:m,paginationMetadata:d,paginationRequest:c}),b=R[0],S=R[1],I=R[2],D=R[3],C=v({componentDisplayName:i,connectionPathInFragmentData:l,direction:"forward",fragmentData:g,fragmentIdentifier:E,fragmentNode:r,fragmentRef:m,paginationMetadata:d,paginationRequest:c}),k=C[0],P=C[1],A=C[2],O=C[3];return{data:g,loadNext:k,loadPrevious:b,hasNext:P,hasPrevious:S,isLoadingNext:A,isLoadingPrevious:I,refetch:u(function(e,t){return O(),D(),y(e,(0,n.default)((0,n.default)({},t),{},{__environment:void 0}))},[O,D,y])}}},16933:(e,t,r)=>{"use strict";var n=r(3574),i=r(96540).useState;e.exports=function(e){var t=i(e),r=t[0],a=t[1];return n(e,r)?r:(a(e),e)}},17122:(e,t,r)=>{var n=r(70079);e.exports=function(e,t){if(e){if("string"==typeof e)return n(e,t);var r=({}).toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?n(e,t):void 0}},e.exports.__esModule=!0,e.exports.default=e.exports},17658:(e,t,r)=>{"use strict";var n=r(53141).getRequest,i=r(81582),a=r(32115).createOperationDescriptor,s=r(98976),o=r(20311);e.exports=function(e,t){i(e)||o(!1);var r=n(t.mutation);if("mutation"!==r.params.operationKind)throw Error("commitMutation: Expected mutation operation");var l=t.optimisticUpdater,u=t.configs,c=t.optimisticResponse,d=a(r,t.variables);return u&&(l=s.convert(u,r,l).optimisticUpdater),e.applyMutation({operation:d,response:c,updater:l})}},18312:(e,t,r)=>{e.exports=r(30596)},18621:e=>{"use strict";e.exports=function(e){return null!=e&&"object"==typeof e&&"function"==typeof e.then}},18900:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(12897)),a=n(r(54893)),s=n(r(50883)),o=n(r(41132)),l=["path","locations"],u=Symbol("$SELF");e.exports={SELF:u,buildErrorTrie:function(e){if(null==e)return null;var t,r=new Map,n=(0,s.default)(e);try{for(n.s();!(t=n.n()).done;){var i=t.value,o=i.path,c=(i.locations,(0,a.default)(i,l));if(null!=o){var d=o.length;if(0!==d){for(var f=d-1,h=r,p=0;p{"use strict";var n=r(24994).default,i=n(r(12897)),a=n(r(12475)),s=n(r(28602)),o=n(r(43693)),l=r(84367),u=r(69493),c=r(26728),d=r(3574),f=r(96540),h=r(69487),p=h.createOperationDescriptor,_=(h.deepFreeze,h.getRequest),v={},g={rootIsQueryRenderer:!0};function m(){return{error:null,props:null,retry:null}}function y(e,t,r,n){return{error:e||null,props:t?t.data:null,retry:function(t){var i=r.retry(t);i&&"function"==typeof n.handleDataChange?n.handleDataChange({snapshot:i}):e&&"function"==typeof n.handleRetryAfterError&&n.handleRetryAfterError(e)}}}function E(e,t){return JSON.stringify({id:e.cacheID?e.cacheID:e.id,variables:t})}function R(e,t){var r,n=e.query,a=t.queryFetcher.getSelectionReferences();if(t.queryFetcher.disposeRequest(),n){var s=E(_(n).params,e.variables);r=v[s]?v[s].queryFetcher:new u(a)}else r=new u(a);return(0,i.default)({prevQuery:e.query,prevPropsEnvironment:e.environment,prevPropsVariables:e.variables,queryFetcher:r},b(e,r,t.retryCallbacks))}function b(e,t,r,n){var i=e.environment,a=e.query,s=e.variables,o=e.cacheConfig;if(a){var l=_(a),u=p(l,s,o),c={environment:i};if("string"==typeof n&&v[n]){var d=v[n].snapshot;return d?{error:null,relayContext:c,renderProps:y(null,d,t,r),snapshot:d,requestCacheKey:n}:{error:null,relayContext:c,renderProps:m(),snapshot:null,requestCacheKey:n}}try{var f=t.lookupInStore(i,u,e.fetchPolicy),h=t.fetch({environment:i,onDataChange:null,operation:u})||f;if(v[n=n||E(l.params,e.variables)]={queryFetcher:t,snapshot:h},!h)return{error:null,relayContext:c,renderProps:m(),snapshot:null,requestCacheKey:n};return{error:null,relayContext:c,renderProps:y(null,h,t,r),snapshot:h,requestCacheKey:n}}catch(e){return{error:e,relayContext:c,renderProps:y(e,null,t,r),snapshot:null,requestCacheKey:n}}}return t.dispose(),{error:null,relayContext:{environment:i},renderProps:{error:null,props:{},retry:null},requestCacheKey:null}}e.exports=function(e){function t(t){r=e.call(this,t)||this,(0,o.default)((0,a.default)(r),"_handleDataChange",function(e){var t=null==e.error?null:e.error,n=null==e.snapshot?null:e.snapshot;r.setState(function(e){var r=e.requestCacheKey;return(r&&delete v[r],n===e.snapshot&&t===e.error)?null:{renderProps:y(t,n,e.queryFetcher,e.retryCallbacks),snapshot:n,requestCacheKey:null}})});var r,n,s,l={handleDataChange:null,handleRetryAfterError:null};return n=t.query&&v[s=E(_(t.query).params,t.variables)]?v[s].queryFetcher:new u,r._maybeHiddenOrFastRefresh=!1,r.state=(0,i.default)({prevPropsEnvironment:t.environment,prevPropsVariables:t.variables,prevQuery:t.query,queryFetcher:n,retryCallbacks:l},b(t,n,l,s)),r}(0,s.default)(t,e),t.getDerivedStateFromProps=function(e,t){return t.prevQuery===e.query&&t.prevPropsEnvironment===e.environment&&d(t.prevPropsVariables,e.variables)?null:R(e,t)};var r=t.prototype;return r.componentDidMount=function(){var e=this;if(!0===this._maybeHiddenOrFastRefresh){this._maybeHiddenOrFastRefresh=!1,this.setState(function(t){var r=R(e.props,t),n=r.requestCacheKey,i=r.queryFetcher;return null!=n&&null!=v[n]&&i.setOnDataChange(e._handleDataChange),r});return}var t=this.state,r=t.retryCallbacks,n=t.queryFetcher,i=t.requestCacheKey;i&&delete v[i],r.handleDataChange=this._handleDataChange,r.handleRetryAfterError=function(t){return e.setState(function(e){var t=e.requestCacheKey;return t&&delete v[t],{renderProps:m(),requestCacheKey:null}})},this.props.query&&n.setOnDataChange(this._handleDataChange)},r.componentDidUpdate=function(e,t){var r=this.state,n=r.queryFetcher,i=r.requestCacheKey;i&&(delete v[i],delete this.state.requestCacheKey),this.props.query&&n!==t.queryFetcher&&n.setOnDataChange(this._handleDataChange)},r.componentWillUnmount=function(){this.state.queryFetcher.dispose(),this._maybeHiddenOrFastRefresh=!0},r.shouldComponentUpdate=function(e,t){return e.render!==this.props.render||t.renderProps!==this.state.renderProps},r.render=function(){var e=this.state,t=e.renderProps,r=e.relayContext;return f.createElement(l.Provider,{value:r},f.createElement(c.Provider,{value:g},this.props.render(t)))},t}(f.Component)},19719:(e,t,r)=>{"use strict";var n=r(38742),i=r(21304).EXISTENT,a=r(20311);e.exports=function(){function e(e,t){this.__sources=[t,e],this._base=e,this._sink=t}var t=e.prototype;return t.unstable_getRawRecordWithChanges=function(e){var t=this._base.get(e),r=this._sink.get(e);if(void 0===r)return null==t?t:n.clone(t);return null===r?null:null!=t?n.update(t,r):n.clone(r)},t._getSinkRecord=function(e){var t=this._sink.get(e);if(!t){var r=this._base.get(e);r||a(!1),t=n.create(e,n.getType(r)),this._sink.set(e,t)}return t},t.copyFields=function(e,t){var r=this._sink.get(e),i=this._base.get(e);r||i||a(!1);var s=this._getSinkRecord(t);i&&n.copyFields(i,s),r&&n.copyFields(r,s)},t.copyFieldsFromRecord=function(e,t){var r=this._getSinkRecord(t);n.copyFields(e,r)},t.create=function(e,t){(this._base.getStatus(e)===i||this._sink.getStatus(e)===i)&&a(!1);var r=n.create(e,t);this._sink.set(e,r)},t.delete=function(e){this._sink.delete(e)},t.getStatus=function(e){return this._sink.has(e)?this._sink.getStatus(e):this._base.getStatus(e)},t.getType=function(e){for(var t=0;t{"use strict";var n=(0,r(24994).default)(r(43693));r(14594),e.exports=function(){function e(e){var t=this;(0,n.default)(this,"_retainCount",0),(0,n.default)(this,"_retainDisposable",null),(0,n.default)(this,"_releaseTemporaryRetain",null),this._retain=function(r){return t._retainCount++,1===t._retainCount&&(t._retainDisposable=e(r)),{dispose:function(){t._retainCount=Math.max(0,t._retainCount-1),0===t._retainCount&&null!=t._retainDisposable&&(t._retainDisposable.dispose(),t._retainDisposable=null)}}}}var t=e.prototype;return t.temporaryRetain=function(e){var t,r=this;if(e.isServer())return{dispose:function(){}};var n=this._retain(e),i=null,a=function(){clearTimeout(i),i=null,r._releaseTemporaryRetain=null,n.dispose()};return i=setTimeout(a,3e5),null==(t=this._releaseTemporaryRetain)||t.call(this),this._releaseTemporaryRetain=a,{dispose:function(){var e;null==(e=r._releaseTemporaryRetain)||e.call(r)}}},t.permanentRetain=function(e){var t=this._retain(e);return this.releaseTemporaryRetain(),t},t.releaseTemporaryRetain=function(){var e;null==(e=this._releaseTemporaryRetain)||e.call(this),this._releaseTemporaryRetain=null},t.getRetainCount=function(){return this._retainCount},e}()},20311:e=>{"use strict";e.exports=function(e,t,r,n,i,a,s,o){if(!e){var l;if(void 0===t)l=Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var u=[r,n,i,a,s,o],c=0;(l=Error(t.replace(/%s/g,function(){return u[c++]}))).name="Invariant Violation"}throw l.framesToPop=1,l}}},21090:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(1190),a=r(89687),s=a.INTERNAL_ACTOR_IDENTIFIER_DO_NOT_USE,o=a.assertInternalActorIdentifier,l=r(12006),u=r(37498),c=r(52471),d=r(56028),f=r(56663),h=r(6799),p=r(47161),_=r(24337),v=r(65922),g=r(22362),m=r(53968);r(20311);var y=function(){function e(e){var t,r,n,a,s,o,l,_,y,R,b,S=this;this.configName=e.configName,this._treatMissingFieldsAsNull=!0===e.treatMissingFieldsAsNull;var I=e.operationLoader,D=null!=(t=e.store)?t:new v(new m,{log:e.log,operationLoader:e.operationLoader,getDataID:e.getDataID,shouldProcessClientComponents:e.shouldProcessClientComponents});this.__log=null!=(r=e.log)?r:E,this.relayFieldLogger=null!=(n=e.relayFieldLogger)?n:h,this._defaultRenderPolicy=null!=(a=e.UNSTABLE_defaultRenderPolicy)?a:"partial",this._operationLoader=I,this._operationExecutions=new Map,this._network=u(this,e.network),this._getDataID=null!=(s=e.getDataID)?s:f,this._missingFieldHandlers=null!=(o=e.missingFieldHandlers)?o:[],this._publishQueue=new g(D,null!=(l=e.handlerProvider)?l:i,this._getDataID,this._missingFieldHandlers,this.__log),this._scheduler=null!=(_=e.scheduler)?_:null,this._store=D,this.options=e.options,this._isServer=null!=(y=e.isServer)&&y,this._normalizeResponse=null!=(R=e.normalizeResponse)?R:p,this.__setNet=function(e){return S._network=u(S,e)},this._operationTracker=null!=(b=e.operationTracker)?b:new c,this._shouldProcessClientComponents=e.shouldProcessClientComponents,d(this)}var t=e.prototype;return t.getStore=function(){return this._store},t.getNetwork=function(){return this._network},t.getOperationTracker=function(){return this._operationTracker},t.getScheduler=function(){return this._scheduler},t.isRequestActive=function(e){return"active"===this._operationExecutions.get(e)},t.UNSTABLE_getDefaultRenderPolicy=function(){return this._defaultRenderPolicy},t.applyUpdate=function(e){var t=this;return this._scheduleUpdates(function(){t._publishQueue.applyUpdate(e),t._publishQueue.run()}),{dispose:function(){t._scheduleUpdates(function(){t._publishQueue.revertUpdate(e),t._publishQueue.run()})}}},t.revertUpdate=function(e){var t=this;this._scheduleUpdates(function(){t._publishQueue.revertUpdate(e),t._publishQueue.run()})},t.replaceUpdate=function(e,t){var r=this;this._scheduleUpdates(function(){r._publishQueue.revertUpdate(e),r._publishQueue.applyUpdate(t),r._publishQueue.run()})},t.applyMutation=function(e){var t=this._execute({createSource:function(){return l.create(function(e){})},isClientPayload:!1,operation:e.operation,optimisticConfig:e,updater:null}).subscribe({});return{dispose:function(){return t.unsubscribe()}}},t.check=function(e){var t;return 0===this._missingFieldHandlers.length&&("Operation"!==(t=e).root.node.kind||null==t.root.node.clientAbstractTypes)?this._store.check(e):this._checkSelectorAndHandleMissingFields(e,this._missingFieldHandlers)},t.commitPayload=function(e,t){this._execute({createSource:function(){return l.from({data:t})},isClientPayload:!0,operation:e,optimisticConfig:null,updater:null}).subscribe({})},t.commitUpdate=function(e){var t=this;this._scheduleUpdates(function(){t._publishQueue.commitUpdate(e),t._publishQueue.run()})},t.lookup=function(e){return this._store.lookup(e)},t.subscribe=function(e,t){return this._store.subscribe(e,t)},t.retain=function(e){return this._store.retain(e)},t.isServer=function(){return this._isServer},t._checkSelectorAndHandleMissingFields=function(e,t){var r=this,n=m.create(),i=this._store.getSource(),a=this._store.check(e,{handlers:t,defaultActorIdentifier:s,getSourceForActor:function(e){return o(e),i},getTargetForActor:function(e){return o(e),n}});return n.size()>0&&this._scheduleUpdates(function(){r._publishQueue.commitSource(n),r._publishQueue.run()}),a},t._scheduleUpdates=function(e){var t=this._scheduler;null!=t?t.schedule(e):e()},t.execute=function(e){var t=this,r=e.operation;return this._execute({createSource:function(){return t.getNetwork().execute(r.request.node.params,r.request.variables,r.request.cacheConfig||{},null,void 0,void 0,void 0,function(){return t.check(r)})},isClientPayload:!1,operation:r,optimisticConfig:null,updater:null})},t.executeSubscription=function(e){var t=this,r=e.operation,n=e.updater;return this._execute({createSource:function(){return t.getNetwork().execute(r.request.node.params,r.request.variables,r.request.cacheConfig||{},null)},isClientPayload:!1,operation:r,optimisticConfig:null,updater:n})},t.executeMutation=function(e){var t,r=this,i=e.operation,a=e.optimisticResponse,s=e.optimisticUpdater,o=e.updater,l=e.uploadables;return(a||s)&&(t={operation:i,response:a,updater:s}),this._execute({createSource:function(){return r.getNetwork().execute(i.request.node.params,i.request.variables,(0,n.default)((0,n.default)({},i.request.cacheConfig),{},{force:!0}),l)},isClientPayload:!1,operation:i,optimisticConfig:t,updater:o})},t.executeWithSource=function(e){var t=e.operation,r=e.source;return this._execute({createSource:function(){return r},isClientPayload:!1,operation:t,optimisticConfig:null,updater:null})},t.toJSON=function(){var e;return"RelayModernEnvironment(".concat(null!=(e=this.configName)?e:"",")")},t._execute=function(e){var t=this,r=e.createSource,n=e.isClientPayload,i=e.operation,a=e.optimisticConfig,u=e.updater,c=this._publishQueue,d=this._store;return l.create(function(e){var l=_.execute({actorIdentifier:s,getDataID:t._getDataID,isClientPayload:n,log:t.__log,operation:i,operationExecutions:t._operationExecutions,operationLoader:t._operationLoader,operationTracker:t._operationTracker,optimisticConfig:a,getPublishQueue:function(e){return o(e),c},scheduler:t._scheduler,shouldProcessClientComponents:t._shouldProcessClientComponents,sink:e,source:r(),getStore:function(e){return o(e),d},treatMissingFieldsAsNull:t._treatMissingFieldsAsNull,updater:u,normalizeResponse:t._normalizeResponse});return function(){return l.cancel()}})},e}();function E(){}y.prototype["@@RelayModernEnvironment"]=!0,e.exports=y},21304:e=>{"use strict";e.exports={EXISTENT:"EXISTENT",NONEXISTENT:"NONEXISTENT",UNKNOWN:"UNKNOWN"}},22362:(e,t,r)=>{"use strict";var n,i,a=r(19719),s=r(35513),o=r(10962),l=r(884),u=r(35639),c=r(53968),d=r(20311);r(14594);var f=void 0!==r.g?r.g:"u">typeof window?window:void 0,h=null!=(n=null==f||null==(i=f.ErrorUtils)?void 0:i.applyWithGuard)?n:function(e,t,r,n,i){return e.apply(t,r)};function p(e,t){return u.read(e,t).data}e.exports=function(){function e(e,t,r,n,i){this._hasStoreSnapshot=!1,this._handlerProvider=t||null,this._pendingBackupRebase=!1,this._pendingData=new Set,this._pendingOptimisticUpdates=new Set,this._store=e,this._appliedOptimisticUpdates=new Set,this._gcHold=null,this._getDataID=r,this._missingFieldHandlers=n,this._log=i}var t=e.prototype;return t.applyUpdate=function(e){(this._appliedOptimisticUpdates.has(e)||this._pendingOptimisticUpdates.has(e))&&d(!1),this._pendingOptimisticUpdates.add(e)},t.revertUpdate=function(e){this._pendingOptimisticUpdates.has(e)?this._pendingOptimisticUpdates.delete(e):this._appliedOptimisticUpdates.has(e)&&(this._pendingBackupRebase=!0,this._appliedOptimisticUpdates.delete(e))},t.revertAll=function(){this._pendingBackupRebase=!0,this._pendingOptimisticUpdates.clear(),this._appliedOptimisticUpdates.clear()},t.commitPayload=function(e,t,r){this._pendingBackupRebase=!0,this._pendingData.add({kind:"payload",operation:e,payload:t,updater:r})},t.commitUpdate=function(e){this._pendingBackupRebase=!0,this._pendingData.add({kind:"updater",updater:e})},t.commitSource=function(e){this._pendingBackupRebase=!0,this._pendingData.add({kind:"source",source:e})},t.run=function(e){var t=0===this._appliedOptimisticUpdates&&!!this._gcHold,r=!this._pendingBackupRebase&&0===this._pendingOptimisticUpdates.size&&!t;if(l.DISALLOW_NESTED_UPDATES&&!0===this._isRunning&&d(!1),this._isRunning=!0,r)return this._isRunning=!1,[];this._pendingBackupRebase&&this._hasStoreSnapshot&&(this._store.restore(),this._hasStoreSnapshot=!1);var n=this._commitData();return(this._pendingOptimisticUpdates.size||this._pendingBackupRebase&&this._appliedOptimisticUpdates.size)&&(this._hasStoreSnapshot||(this._store.snapshot(),this._hasStoreSnapshot=!0),this._applyUpdates()),this._pendingBackupRebase=!1,this._appliedOptimisticUpdates.size>0?this._gcHold||(this._gcHold=this._store.holdGC()):this._gcHold&&(this._gcHold.dispose(),this._gcHold=null),this._isRunning=!1,this._store.notify(e,n)},t._publishSourceFromPayload=function(e){var t=this,r=e.payload,n=e.operation,i=e.updater,l=r.source,u=r.fieldPayloads,c=new a(this._store.getSource(),l),f=new s(c,this._getDataID,this._handlerProvider,this._missingFieldHandlers,this._log);if(u&&u.length&&u.forEach(function(e){var r=t._handlerProvider&&t._handlerProvider(e.handle);r||d(!1),r.update(f,e)}),i){var h=n.fragment;null==h&&d(!1),i(new o(c,f,h,this._missingFieldHandlers),p(l,h))}var _=f.getIDsMarkedForInvalidation();return this._store.publish(l,_),f.isStoreMarkedForInvalidation()},t._commitData=function(){var e=this;if(!this._pendingData.size)return!1;var t=!1;return this._pendingData.forEach(function(r){if("payload"===r.kind){var n=e._publishSourceFromPayload(r);t=t||n}else if("source"===r.kind){var i=r.source;e._store.publish(i)}else{var o=r.updater,l=c.create(),u=new s(new a(e._store.getSource(),l),e._getDataID,e._handlerProvider,e._missingFieldHandlers,e._log);h(o,null,[u],null,"RelayPublishQueue:commitData"),t=t||u.isStoreMarkedForInvalidation();var d=u.getIDsMarkedForInvalidation();e._store.publish(l,d)}}),this._pendingData.clear(),t},t._applyUpdates=function(){var e=this,t=c.create(),r=new a(this._store.getSource(),t),n=new s(r,this._getDataID,this._handlerProvider,this._missingFieldHandlers,this._log),i=function(t){if(t.storeUpdater)h(t.storeUpdater,null,[n],null,"RelayPublishQueue:applyUpdates");else{var i,a=t.operation,s=t.payload,l=t.updater,u=s.source,c=s.fieldPayloads;u&&n.publishSource(u,c),l&&(u&&(i=p(u,a.fragment)),h(l,null,[new o(r,n,a.fragment,e._missingFieldHandlers),i],null,"RelayPublishQueue:applyUpdates"))}};this._pendingBackupRebase&&this._appliedOptimisticUpdates.size&&this._appliedOptimisticUpdates.forEach(i),this._pendingOptimisticUpdates.size&&(this._pendingOptimisticUpdates.forEach(function(t){i(t),e._appliedOptimisticUpdates.add(t)}),this._pendingOptimisticUpdates.clear()),this._store.publish(t)},e}()},24337:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(50883)),a=n(r(41132)),s=r(12006),o=r(24428),l=r(93587),u=r(91011),c=r(884),d=r(8312).stableCopy,f=r(90667),h=r(84895),p=h.generateClientID,_=h.generateUniqueClientID,v=r(83798).getLocalVariables,g=r(38742),m=r(95814),y=m.createNormalizationSelector,E=m.createReaderSelector,R=r(53968),b=r(41046),S=b.ROOT_TYPE,I=b.TYPENAME_KEY,D=b.getStorageKey,C=r(20311);r(14594);var k=function(){function e(e){var t,r,n,i=this,a=e.actorIdentifier,s=e.getDataID,l=e.getPublishQueue,u=e.getStore,d=e.isClientPayload,f=e.operation,h=e.operationExecutions,p=e.operationLoader,_=e.operationTracker,v=e.optimisticConfig,g=e.scheduler,m=e.shouldProcessClientComponents,y=e.sink,E=e.source,R=e.treatMissingFieldsAsNull,b=e.updater,S=e.log,I=e.normalizeResponse;this._actorIdentifier=a,this._getDataID=s,this._treatMissingFieldsAsNull=R,this._incrementalPayloadsPending=!1,this._incrementalResults=new Map,this._log=S,this._executeId=o(),this._nextSubscriptionId=0,this._operation=f,this._operationExecutions=h,this._operationLoader=p,this._operationTracker=_,this._operationUpdateEpochs=new Map,this._optimisticUpdates=null,this._useExecTimeResolvers=null!=(t=null!=(r=this._operation.request.node.operation.use_exec_time_resolvers)?r:(null==(n=this._operation.request.node.operation.exec_time_resolvers_enabled_provider)?void 0:n.get())===!0)&&t,this._execTimeResolverResponseComplete=!1,this._pendingModulePayloadsCount=0,this._getPublishQueue=l,this._scheduler=g,this._sink=y,this._source=new Map,this._state="started",this._getStore=u,this._subscriptions=new Map,this._updater=b,this._isClientPayload=!0===d,this._isSubscriptionOperation="subscription"===this._operation.request.node.params.operationKind,this._shouldProcessClientComponents=m,this._retainDisposables=new Map,this._seenActors=new Set,this._completeFns=[],this._normalizeResponse=I;var D=this._nextSubscriptionId++;c.PROCESS_OPTIMISTIC_UPDATE_BEFORE_SUBSCRIPTION&&null!=v&&this._processOptimisticResponse(null!=v.response?{data:v.response}:null,v.updater,!1),E.subscribe({complete:function(){return i._complete(D)},error:function(e){return i._error(e)},next:function(e){try{i._next(D,e)}catch(e){y.error(e)}},start:function(e){var t;i._start(D,e),i._log({name:"execute.start",executeId:i._executeId,params:i._operation.request.node.params,variables:i._operation.request.variables,cacheConfig:null!=(t=i._operation.request.cacheConfig)?t:{}})},unsubscribe:function(){i._log({name:"execute.unsubscribe",executeId:i._executeId})}}),c.PROCESS_OPTIMISTIC_UPDATE_BEFORE_SUBSCRIPTION||null==v||this._processOptimisticResponse(null!=v.response?{data:v.response}:null,v.updater,!1)}var t=e.prototype;return t.cancel=function(){var e=this;if("completed"!==this._state){this._state="completed",this._operationExecutions.delete(this._operation.request.identifier),0!==this._subscriptions.size&&(this._subscriptions.forEach(function(e){return e.unsubscribe()}),this._subscriptions.clear());var t=this._optimisticUpdates;null!==t&&(this._optimisticUpdates=null,t.forEach(function(t){return e._getPublishQueueAndSaveActor().revertUpdate(t)}),this._runPublishQueue()),this._incrementalResults.clear(),null!=this._asyncStoreUpdateDisposable&&(this._asyncStoreUpdateDisposable.dispose(),this._asyncStoreUpdateDisposable=null),this._completeFns=[],this._completeOperationTracker(),this._disposeRetainedData()}},t._updateActiveState=function(){var e;switch(this._state){case"started":case"loading_incremental":e="active";break;case"completed":e="inactive";break;case"loading_final":e=this._pendingModulePayloadsCount>0||this._useExecTimeResolvers&&!this._execTimeResolverResponseComplete?"active":"inactive";break;default:this._state,C(!1)}this._operationExecutions.set(this._operation.request.identifier,e)},t._schedule=function(e,t){var r=this,n=this._scheduler;if(null!=n){var i=this._nextSubscriptionId++;s.create(function(r){var i=n.schedule(function(){try{e(),r.complete()}catch(e){r.error(e)}},t);return function(){return n.cancel(i)}}).subscribe({complete:function(){return r._complete(i)},error:function(e){return r._error(e)},start:function(e){return r._start(i,e)}})}else e()},t._complete=function(e){this._subscriptions.delete(e),0===this._subscriptions.size&&(this.cancel(),this._sink.complete(),this._log({name:"execute.complete",executeId:this._executeId}))},t._error=function(e){this.cancel(),this._sink.error(e),this._log({name:"execute.error",executeId:this._executeId,error:e})},t._start=function(e,t){this._subscriptions.set(e,t),this._updateActiveState()},t._next=function(e,t){var r=this,n="loading_incremental"===this._state?"low":"default";this._schedule(function(){r._log({name:"execute.next.start",executeId:r._executeId,response:t,operation:r._operation}),r._handleNext(t),r._maybeCompleteSubscriptionOperationTracking(),r._log({name:"execute.next.end",executeId:r._executeId,response:t,operation:r._operation})},n)},t._handleErrorResponse=function(e){var t=this,r=[];return e.forEach(function(e){if(null!==e.data||null==e.extensions||e.hasOwnProperty("errors")){if(null==e.data){var n=e.hasOwnProperty("errors")&&null!=e.errors?e.errors:null,i=n?n.map(function(e){return e.message}).join(` +`):"(No errors)",a=u.create("RelayNetwork","No data returned for operation `"+t._operation.request.node.params.name+"`, got error(s):\n"+i+"\n\nSee the error `source` property for more information.");throw a.source={errors:n,operation:t._operation.request.node,variables:t._operation.request.variables},a.stack,a}r.push(e)}}),r},t._handleOptimisticResponses=function(e){if(e.length>1)return e.some(function(e){var t;return(null==(t=e.extensions)?void 0:t.isOptimistic)===!0})&&C(!1),!1;var t,r=e[0],n=(null==(t=r.extensions)?void 0:t.isOptimistic)===!0;return n&&"started"!==this._state&&C(!1),!!n&&(this._processOptimisticResponse(r,null,this._treatMissingFieldsAsNull),this._sink.next(r),!0)},t._handleNext=function(e){if("completed"!==this._state){this._seenActors.clear();var t=Array.isArray(e)?e:[e],r=this._handleErrorResponse(t);if(0===r.length){var n=t.some(function(e){var t;return(null==(t=e.extensions)?void 0:t.is_final)===!0});n&&(this._state="loading_final",this._updateActiveState(),this._incrementalPayloadsPending=!1),this._sink.next(e);return}if(!this._handleOptimisticResponses(r)){var i=(p=[],v=[],g=[],r.forEach(function(e){var t;if(null!=e.path||null!=e.label){var r=e.label,n=e.path;(null==r||null==n)&&C(!1),v.push({label:r,path:n,response:e})}else(null==(t=e.extensions)?void 0:t.is_normalized)===!0?g.push(e):p.push(e)}),[p,v,g]),a=i[0],s=i[1],o=i[2],l=a.length>0,u=o.length>0;if(l){if(this._isSubscriptionOperation){var c=_();this._operation={request:this._operation.request,fragment:E(this._operation.fragment.node,c,this._operation.fragment.variables,this._operation.fragment.owner),root:y(this._operation.root.node,c,this._operation.root.variables)}}var d=this._processResponses(a);this._processPayloadFollowups(d)}if(u)for(var f=[],h=0;h0){var D=this._processIncrementalResponses(s);this._processPayloadFollowups(D)}this._isSubscriptionOperation&&(null==r[0].extensions?r[0].extensions={__relay_subscription_root_id:this._operation.fragment.dataID}:r[0].extensions.__relay_subscription_root_id=this._operation.fragment.dataID);var k=this._runPublishQueue(l||u?this._operation:void 0);l&&this._incrementalPayloadsPending&&this._retainData(),this._updateOperationTracker(k),this._sink.next(e)}}},t._processOptimisticResponse=function(e,t,r){var n=this;if(null!==this._optimisticUpdates&&C(!1),null!=e||null!=t){var i=[];if(e){var a=this._normalizeResponse(e,this._operation.root,S,{actorIdentifier:this._actorIdentifier,getDataID:this._getDataID,log:this._log,path:[],shouldProcessClientComponents:this._shouldProcessClientComponents,treatMissingFieldsAsNull:r},this._useExecTimeResolvers);P(a),i.push({operation:this._operation,payload:a,updater:t}),this._processOptimisticFollowups(a,i)}else t&&i.push({operation:this._operation,payload:{errors:null,fieldPayloads:null,incrementalPlaceholders:null,followupPayloads:null,source:R.create(),isFinal:!1},updater:t});this._optimisticUpdates=i,i.forEach(function(e){return n._getPublishQueueAndSaveActor().applyUpdate(e)});var s=this._runPublishQueue();c.ENABLE_OPERATION_TRACKER_OPTIMISTIC_UPDATES&&this._updateOperationTracker(s)}},t._processOptimisticFollowups=function(e,t){if(e.followupPayloads&&e.followupPayloads.length){var r,n=e.followupPayloads,s=(0,i.default)(n);try{for(s.s();!(r=s.n()).done;){var o=r.value;switch(o.kind){case"ModuleImportPayload":var l=this._expectOperationLoader().get(o.operationReference);if(null==l)this._processAsyncOptimisticModuleImport(o);else{var u=this._processOptimisticModuleImport(l,o);t.push.apply(t,(0,a.default)(u))}break;case"ActorPayload":break;default:C(!1)}}}catch(e){s.e(e)}finally{s.f()}}},t._normalizeFollowupPayload=function(e,t){var r="SplitOperation"===t.kind&&"ModuleImportPayload"===e.kind?v(e.variables,t.argumentDefinitions,e.args):e.variables,n=y(t,e.dataID,r),i={data:e.data,extensions:"loading_final"===this._state?{is_final:!0}:void 0};return this._normalizeResponse(i,n,e.typeName,{actorIdentifier:this._actorIdentifier,getDataID:this._getDataID,log:this._log,path:e.path,treatMissingFieldsAsNull:this._treatMissingFieldsAsNull,shouldProcessClientComponents:this._shouldProcessClientComponents},this._useExecTimeResolvers)},t._processOptimisticModuleImport=function(e,t){var r=l(e),n=[],i=this._normalizeFollowupPayload(t,r);return P(i),n.push({operation:this._operation,payload:i,updater:null}),this._processOptimisticFollowups(i,n),n},t._processAsyncOptimisticModuleImport=function(e){var t=this;this._expectOperationLoader().load(e.operationReference).then(function(r){if(null!=r&&"started"===t._state){var n,i=t._processOptimisticModuleImport(r,e);i.forEach(function(e){return t._getPublishQueueAndSaveActor().applyUpdate(e)}),null==t._optimisticUpdates||((n=t._optimisticUpdates).push.apply(n,(0,a.default)(i)),t._runPublishQueue())}})},t._processResponses=function(e){var t=this;return this._log({name:"execute.normalize.start",operation:this._operation}),null!==this._optimisticUpdates&&(this._optimisticUpdates.forEach(function(e){t._getPublishQueueAndSaveActor().revertUpdate(e)}),this._optimisticUpdates=null),this._incrementalPayloadsPending=!1,this._incrementalResults.clear(),this._source.clear(),e.map(function(e){var r=t._normalizeResponse(e,t._operation.root,S,{actorIdentifier:t._actorIdentifier,getDataID:t._getDataID,log:t._log,path:[],treatMissingFieldsAsNull:t._treatMissingFieldsAsNull,shouldProcessClientComponents:t._shouldProcessClientComponents},t._useExecTimeResolvers);return t._getPublishQueueAndSaveActor().commitPayload(t._operation,r,t._updater),t._log({name:"execute.normalize.end",operation:t._operation}),r})},t._processPayloadFollowups=function(e){var t=this;"completed"!==this._state&&e.forEach(function(e){var r=e.incrementalPlaceholders,n=e.followupPayloads,i=e.isFinal;if(t._state=i?"loading_final":"loading_incremental",t._updateActiveState(),i&&(t._incrementalPayloadsPending=!1),n&&0!==n.length&&n.forEach(function(e){var r,n=t._actorIdentifier;t._actorIdentifier=null!=(r=e.actorIdentifier)?r:t._actorIdentifier,t._processFollowupPayload(e),t._actorIdentifier=n}),r&&0!==r.length&&(t._incrementalPayloadsPending="loading_final"!==t._state,r.forEach(function(r){var n,i=t._actorIdentifier;t._actorIdentifier=null!=(n=r.actorIdentifier)?n:t._actorIdentifier,t._processIncrementalPlaceholder(e,r),t._actorIdentifier=i}),t._isClientPayload||"loading_final"===t._state)){var a=[];r.forEach(function(e){"defer"===e.kind&&a.push(t._processDeferResponse(e.label,e.path,e,{data:e.data,extensions:{is_final:!0}}))}),a.length>0&&t._processPayloadFollowups(a)}})},t._maybeCompleteSubscriptionOperationTracking=function(){(this._isSubscriptionOperation||this._useExecTimeResolvers&&this._execTimeResolverResponseComplete&&"loading_final"===this._state)&&0===this._pendingModulePayloadsCount&&!1===this._incrementalPayloadsPending&&this._completeOperationTracker()},t._processFollowupPayload=function(e){var t=this;switch(e.kind){case"ModuleImportPayload":var r=this._expectOperationLoader(),n=r.get(e.operationReference);if(null!=n)this._processFollowupPayloadWithNormalizationNode(e,l(n));else{var i=this._nextSubscriptionId++;this._pendingModulePayloadsCount++;var a=function(){t._pendingModulePayloadsCount--,t._maybeCompleteSubscriptionOperationTracking()},o=s.from(new Promise(function(t,n){r.load(e.operationReference).then(t,n)}));s.create(function(r){var n,i=o.subscribe({next:function(i){if(null!=i){var a=function(){try{var n=l(i),a=c.BATCH_ASYNC_MODULE_UPDATES_FN,s=null!=a&&t._pendingModulePayloadsCount>1,o=f(function(){if(t._handleFollowupPayload(e,n),s)t._scheduleAsyncStoreUpdate(a,r.complete);else{var i=t._runPublishQueue();t._updateOperationTracker(i)}}),u=(o[0],o[1]);t._log({name:"execute.async.module",executeId:t._executeId,operationName:n.name,duration:u}),s||r.complete()}catch(e){r.error(e)}},s=t._scheduler;null==s?a():n=s.schedule(a)}else r.complete()},error:r.error});return function(){i.unsubscribe(),null!=t._scheduler&&null!=n&&t._scheduler.cancel(n)}}).subscribe({complete:function(){t._complete(i),a()},error:function(e){t._error(e),a()},start:function(e){return t._start(i,e)}})}break;case"ActorPayload":this._processFollowupPayloadWithNormalizationNode(e,e.node);break;default:C(!1)}},t._processFollowupPayloadWithNormalizationNode=function(e,t){this._handleFollowupPayload(e,t),this._maybeCompleteSubscriptionOperationTracking()},t._handleFollowupPayload=function(e,t){var r=this._normalizeFollowupPayload(e,t);this._getPublishQueueAndSaveActor().commitPayload(this._operation,r),this._processPayloadFollowups([r])},t._processIncrementalPlaceholder=function(e,t){var r,n,i,a,s=t.label,o=t.path.map(String).join("."),l=this._incrementalResults.get(s);null==l&&(l=new Map,this._incrementalResults.set(s,l));var u=l.get(o),c=null!=u&&"response"===u.kind?u.responses:null;l.set(o,{kind:"placeholder",placeholder:t}),"stream"===t.kind?n=t.parentID:"defer"===t.kind?n=t.selector.dataID:C(!1);var f=e.source.get(n),h=(null!=(r=e.fieldPayloads)?r:[]).filter(function(e){var t=p(e.dataID,e.fieldKey);return e.dataID===n||t===n});null==f&&C(!1);var _=this._source.get(n);if(null!=_){i=g.update(_.record,f);var v=new Map,m=function(e){var t,r=null!=(t=JSON.stringify(d(e)))?t:"";v.set(r,e)};_.fieldPayloads.forEach(m),h.forEach(m),a=Array.from(v.values())}else i=f,a=h;if(this._source.set(n,{record:i,fieldPayloads:a}),null!=c){var y=this._processIncrementalResponses(c);this._processPayloadFollowups(y)}},t._processIncrementalResponses=function(e){var t=this,r=[];return e.forEach(function(e){var n=e.label,i=e.path,a=e.response,s=t._incrementalResults.get(n);if(null==s&&(s=new Map,t._incrementalResults.set(n,s)),-1!==n.indexOf("$defer$")){var o=i.map(String).join("."),l=s.get(o);if(null==l){l={kind:"response",responses:[e]},s.set(o,l);return}if("response"===l.kind)return void l.responses.push(e);var u=l.placeholder;"defer"!==u.kind&&C(!1),r.push(t._processDeferResponse(n,i,u,a))}else{var c=i.slice(0,-2).map(String).join("."),d=s.get(c);if(null==d){d={kind:"response",responses:[e]},s.set(c,d);return}if("response"===d.kind)return void d.responses.push(e);var f=d.placeholder;"stream"!==f.kind&&C(!1),r.push(t._processStreamResponse(n,i,f,a))}}),r},t._processDeferResponse=function(e,t,r,n){var i=r.selector.dataID,a=this._actorIdentifier;this._actorIdentifier=null!=(u=r.actorIdentifier)?u:this._actorIdentifier;var s=this._normalizeResponse(n,r.selector,r.typeName,{actorIdentifier:this._actorIdentifier,getDataID:this._getDataID,log:this._log,path:r.path,treatMissingFieldsAsNull:this._treatMissingFieldsAsNull,shouldProcessClientComponents:this._shouldProcessClientComponents},this._useExecTimeResolvers);this._getPublishQueueAndSaveActor().commitPayload(this._operation,s);var o=this._source.get(i);null==o&&C(!1);var l=o.fieldPayloads;if(0!==l.length){var u,c,d={errors:null,fieldPayloads:l,incrementalPlaceholders:null,followupPayloads:null,source:R.create(),isFinal:(null==(c=n.extensions)?void 0:c.is_final)===!0};this._getPublishQueueAndSaveActor().commitPayload(this._operation,d)}return this._actorIdentifier=a,s},t._processStreamResponse=function(e,t,r,n){var i=r.parentID,s=r.node,o=r.variables,l=r.actorIdentifier,u=this._actorIdentifier;this._actorIdentifier=null!=l?l:this._actorIdentifier;var c=s.selections[0];(null==c||"LinkedField"!==c.kind||!0!==c.plural)&&C(!1);var d=this._normalizeStreamItem(n,i,c,o,t,r.path),f=d.fieldPayloads,h=d.itemID,p=d.itemIndex,_=d.prevIDs,v=d.relayPayload,g=d.storageKey;if(this._getPublishQueueAndSaveActor().commitPayload(this._operation,v,function(e){var t=e.get(i);if(null!=t){var r=t.getLinkedRecords(g);if(null!=r&&!(r.length!==_.length||r.some(function(e,t){return _[t]!==(e&&e.getDataID())}))){var n=(0,a.default)(r);n[p]=e.get(h),t.setLinkedRecords(n,g)}}}),0!==f.length){var m={errors:null,fieldPayloads:f,incrementalPlaceholders:null,followupPayloads:null,source:R.create(),isFinal:!1};this._getPublishQueueAndSaveActor().commitPayload(this._operation,m)}return this._actorIdentifier=u,v},t._normalizeStreamItem=function(e,t,r,n,i,s){var o,l,u,c,d=e.data;"object"!=typeof d&&C(!1);var f=null!=(o=r.alias)?o:r.name,h=D(r,n),_=this._source.get(t);null==_&&C(!1);var v=_.record,m=_.fieldPayloads,E=g.getLinkedRecordIDs(v,h);null==E&&C(!1);var R=i[i.length-1],b=parseInt(R,10);b===R&&b>=0||C(!1);var S=null!=(l=r.concreteType)?l:d[I];"string"!=typeof S&&C(!1);var k=null!=(u=null!=(c=this._getDataID(d,S))?c:null==E?void 0:E[b])?u:p(t,h,b);"string"!=typeof k&&C(!1);var P=y(r,k,n),A=g.clone(v),O=(0,a.default)(E);O[b]=k,g.setLinkedRecordIDs(A,h,O),this._source.set(t,{record:A,fieldPayloads:m});var T=this._normalizeResponse(e,P,S,{actorIdentifier:this._actorIdentifier,getDataID:this._getDataID,log:this._log,path:[].concat((0,a.default)(s),[f,String(b)]),treatMissingFieldsAsNull:this._treatMissingFieldsAsNull,shouldProcessClientComponents:this._shouldProcessClientComponents},this._useExecTimeResolvers);return{fieldPayloads:m,itemID:k,itemIndex:b,prevIDs:E,relayPayload:T,storageKey:h}},t._scheduleAsyncStoreUpdate=function(e,t){var r=this;this._completeFns.push(t),null==this._asyncStoreUpdateDisposable&&(this._asyncStoreUpdateDisposable=e(function(){r._asyncStoreUpdateDisposable=null;var e=r._runPublishQueue();r._updateOperationTracker(e);var t,n=(0,i.default)(r._completeFns);try{for(n.s();!(t=n.n()).done;)(0,t.value)()}catch(e){n.e(e)}finally{n.f()}r._completeFns=[]}))},t._updateOperationTracker=function(e){null!=e&&e.length>0&&this._operationTracker.update(this._operation.request,new Set(e))},t._completeOperationTracker=function(){this._operationTracker.complete(this._operation.request)},t._getPublishQueueAndSaveActor=function(){return this._seenActors.add(this._actorIdentifier),this._getPublishQueue(this._actorIdentifier)},t._getActorsToVisit=function(){return 0===this._seenActors.size?new Set([this._actorIdentifier]):this._seenActors},t._runPublishQueue=function(e){var t,r=new Set,n=(0,i.default)(this._getActorsToVisit());try{for(n.s();!(t=n.n()).done;){var a=t.value;this._getPublishQueue(a).run(e).forEach(function(e){return r.add(e)})}}catch(e){n.e(e)}finally{n.f()}return Array.from(r)},t._retainData=function(){var e,t=(0,i.default)(this._getActorsToVisit());try{for(t.s();!(e=t.n()).done;){var r=e.value;this._retainDisposables.has(r)||this._retainDisposables.set(r,this._getStore(r).retain(this._operation))}}catch(e){t.e(e)}finally{t.f()}},t._disposeRetainedData=function(){var e,t=(0,i.default)(this._retainDisposables.values());try{for(t.s();!(e=t.n()).done;)e.value.dispose()}catch(e){t.e(e)}finally{t.f()}this._retainDisposables.clear()},t._expectOperationLoader=function(){var e=this._operationLoader;return e||C(!1),e},e}();function P(e){var t=e.incrementalPlaceholders;null!=t&&0!==t.length&&C(!1)}e.exports={execute:function(e){return new k(e)}}},24428:e=>{"use strict";var t=1e5;e.exports=function(){return t++}},24994:e=>{e.exports=function(e){return e&&e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports},25285:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(50883)),i=r(20311);e.exports=function(e,t){var r,a=e,s=(0,n.default)(t);try{for(s.s();!(r=s.n()).done;){var o=r.value;if(null==a)return null;"number"==typeof o?Array.isArray(a)||i(!1):("object"!=typeof a||Array.isArray(a))&&i(!1),a=a[o]}}catch(e){s.e(e)}finally{s.f()}return a}},26611:(e,t,r)=>{"use strict";var n="actor_key",i=r(89687).getActorIdentifier;e.exports={ACTOR_IDENTIFIER_FIELD_NAME:n,getActorIdentifierFromPayload:function(e){if(null!=e&&"object"==typeof e&&"string"==typeof e[n])return i(e[n])}}},26728:(e,t,r)=>{"use strict";e.exports=r(96540).createContext({rootIsQueryRenderer:!1})},28153:e=>{"use strict";e.exports=function(e,t){e.commitUpdate(t)}},28602:(e,t,r)=>{var n=r(95636);e.exports=function(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,n(e,t)},e.exports.__esModule=!0,e.exports.default=e.exports},29293:e=>{function t(e,t,r,n,i,a,s){try{var o=e[a](s),l=o.value}catch(e){return void r(e)}o.done?t(l):Promise.resolve(l).then(n,i)}e.exports=function(e){return function(){var r=this,n=arguments;return new Promise(function(i,a){var s=e.apply(r,n);function o(e){t(s,i,a,o,l,"next",e)}function l(e){t(s,i,a,o,l,"throw",e)}o(void 0)})}},e.exports.__esModule=!0,e.exports.default=e.exports},30596:(e,t,r)=>{"use strict";var n=r(84367),i=r(98523),a=r(47148),s=r(52303),o=r(19599),l=r(54808),u=r(9963),c=r(41241),d=r(90007).loadQuery,f=r(13635),h=r(50456),p=r(68975),_=r(40121),v=r(7360),g=r(73720),m=r(42695),y=r(15940),E=r(13214),R=r(39420),b=r(6505),S=r(71517),I=r(7058),D=r(53386),C=r(91529),k=r(69487);e.exports={ConnectionHandler:k.ConnectionHandler,QueryRenderer:o,LocalQueryRenderer:a,MutationTypes:k.MutationTypes,RangeOperations:k.RangeOperations,ReactRelayContext:n,applyOptimisticMutation:k.applyOptimisticMutation,commitLocalUpdate:k.commitLocalUpdate,commitMutation:k.commitMutation,createFragmentContainer:i.createContainer,createPaginationContainer:s.createContainer,createRefetchContainer:l.createContainer,fetchQuery_DEPRECATED:k.fetchQuery_DEPRECATED,graphql:k.graphql,readInlineData:k.readInlineData,requestSubscription:k.requestSubscription,EntryPointContainer:u,RelayEnvironmentProvider:h,ProfilerContext:f,fetchQuery:k.fetchQuery,loadQuery:d,loadEntryPoint:c,useClientQuery:p,useFragment:v,useLazyLoadQuery:g,useEntryPointLoader:_,useQueryLoader:b,useMutation:m,usePaginationFragment:y,usePreloadedQuery:R,useRefetchableFragment:S,usePrefetchableForwardPaginationFragment:E,useRelayEnvironment:I,useSubscribeToInvalidationState:D,useSubscription:C}},30709:(e,t,r)=>{"use strict";var n=r(96540).useMemo;e.exports=function(e){return n(function(){return{current:e}},[])}},31424:(e,t,r)=>{"use strict";var n=r(53141).getInlineDataFragment,i=r(41046).FRAGMENTS_KEY,a=r(20311);e.exports=function(e,t){var r,s=n(e);if(null==t)return t;"object"!=typeof t&&a(!1);var o=null==(r=t[i])?void 0:r[s.name];return null==o&&a(!1),o}},31503:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(12897)),a=n(r(43693)),s=r(70718),o=r(20183),l=r(20311),u=r(69487).isPromise;r(14594);var c="store-or-network",d="store-and-network",f="function"==typeof WeakMap;function h(e){return void 0!==e.request.node.params.metadata.live}function p(e,t,r,n,i){var a=null!=r?r:h(t)?d:c,s=null!=n?n:e.UNSTABLE_getDefaultRenderPolicy(),o="".concat(a,"-").concat(s,"-").concat(t.request.identifier);return null!=i?"".concat(o,"-").concat(i):o}function _(e,t){var r={__id:e.fragment.dataID,__fragments:(0,a.default)({},e.fragment.node.name,e.request.variables),__fragmentOwner:e.request};return{cacheIdentifier:t,fragmentNode:e.request.node.fragment,fragmentRef:r,operation:e}}var v=2e5;function g(e,t,r,n,i,a){var s=h(t),l=n,u=i,c=new o(function(e){var r=e.retain(t);return{dispose:function(){s&&null!=u&&u.unsubscribe(),r.dispose(),a(d)}}}),d={cacheIdentifier:e,id:v++,processedPayloadsCount:0,operationAvailability:r,getValue:function(){return l},setValue:function(e){l=e},setNetworkSubscription:function(e){s&&null!=u&&u.unsubscribe(),u=e},temporaryRetain:function(e){return c.temporaryRetain(e)},permanentRetain:function(e){return c.permanentRetain(e)},releaseTemporaryRetain:function(){c.releaseTemporaryRetain()}};return d}var m=function(){function e(e){var t=this;(0,a.default)(this,"_clearCacheEntry",function(e){t._cache.delete(e.cacheIdentifier)}),this._environment=e,this._cache=s.create(1e3)}var t=e.prototype;return t.prepare=function(e,t,r,n,i,a,s){var o=p(this._environment,e,r,n,a);return this.prepareWithIdentifier(o,e,t,r,n,i,s)},t.prepareWithIdentifier=function(e,t,r,n,a,s,o){var l=this._environment,f=null!=n?n:h(t)?d:c,p=null!=a?a:l.UNSTABLE_getDefaultRenderPolicy(),_=this._cache.get(e),v=null,g=null!=_;null==_&&(_=this._fetchAndSaveQuery(e,t,r,f,p,o,(0,i.default)((0,i.default)({},s),{},{unsubscribe:function(e){null!=v&&v.dispose();var t=null==s?void 0:s.unsubscribe;t&&t(e)}}))),v=_.temporaryRetain(l);var m=_.getValue();if(u(m))throw l.__log({name:"suspense.query",fetchPolicy:f,isPromiseCached:g,operation:t,queryAvailability:_.operationAvailability,renderPolicy:p}),m;if(m instanceof Error)throw m;return m},t.retain=function(e,t){var r=this._environment,n=e.cacheIdentifier,i=e.operation,a=this._getOrCreateCacheEntry(n,i,null,e,null),s=a.permanentRetain(r);return r.__log({name:"queryresource.retain",profilerContext:t,resourceID:a.id}),{dispose:function(){s.dispose()}}},t.releaseTemporaryRetain=function(e){var t=this._cache.get(e.cacheIdentifier);null!=t&&t.releaseTemporaryRetain()},t.TESTS_ONLY__getCacheEntry=function(e,t,r,n){var i=p(this._environment,e,t,r,n);return this._cache.get(i)},t._getOrCreateCacheEntry=function(e,t,r,n,i){var a=this._cache.get(e);return null==a&&(a=g(e,t,r,n,i,this._clearCacheEntry),this._cache.set(e,a)),a},t._fetchAndSaveQuery=function(e,t,r,n,a,s,o){var u=this,c=this._environment,d=c.check(t),f=d.status,p="available"===f,v=p||"partial"===a&&"stale"!==f,m=function(){};switch(n){case"store-only":R=!1,b=!0;break;case"store-or-network":R=!p,b=v;break;case"store-and-network":R=!0,b=v;break;default:R=!0,b=!1}if(b){var y=_(t,e),E=g(e,t,d,y,null,this._clearCacheEntry);this._cache.set(e,E)}if(R){var R,b,S,I=_(t,e);r.subscribe({start:function(r){S=r;var n=u._cache.get(e);n&&n.setNetworkSubscription(S);var a=null==o?void 0:o.start;a&&a((0,i.default)((0,i.default)({},r),{},{unsubscribe:function(){h(t)&&r.unsubscribe()}}))},next:function(){var r=u._getOrCreateCacheEntry(e,t,d,I,S);r.processedPayloadsCount+=1,r.setValue(I),m();var n=null==o?void 0:o.next;null!=n&&n(c.lookup(t.fragment))},error:function(r){var n=u._getOrCreateCacheEntry(e,t,d,r,S);0===n.processedPayloadsCount&&n.setValue(r),m(),S=null,n.setNetworkSubscription(null);var i=null==o?void 0:o.error;i&&i(r)},complete:function(){m(),S=null;var t=u._cache.get(e);t&&t.setNetworkSubscription(null);var r=null==o?void 0:o.complete;r&&r()},unsubscribe:null==o?void 0:o.unsubscribe});var D=this._cache.get(e);if(!D){var C=new Promise(function(e){m=e});C.displayName="Relay("+t.fragment.node.name+")",D=g(e,t,d,C,S,this._clearCacheEntry),this._cache.set(e,D)}}else{var k=null==o?void 0:o.complete;k&&k()}var P=this._cache.get(e);return null==P&&l(!1),c.__log({name:"queryresource.fetch",resourceID:P.id,operation:t,profilerContext:s,fetchPolicy:n,renderPolicy:a,queryAvailability:d,shouldFetch:R}),P},e}();function y(e){return new m(e)}var E=f?new WeakMap:new Map;e.exports={createQueryResource:y,getQueryResourceForEnvironment:function(e){var t=E.get(e);if(t)return t;var r=y(e);return E.set(e,r),r},getQueryCacheIdentifier:p}},32115:(e,t,r)=>{"use strict";r(15519);var n=r(54736),i=r(884),a=r(8312).hasCycle,s=r(83798).getOperationVariables,o=r(95814),l=o.createNormalizationSelector,u=o.createReaderSelector,c=r(41046).ROOT_ID,d=r(20311);function f(e,t,r){return{identifier:n(e.params,t),node:e,variables:t,cacheConfig:r}}e.exports={createOperationDescriptor:function(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:c,o=e.operation,h=s(o,e.params.providedVariables,t);i.ENABLE_CYLE_DETECTION_IN_VARIABLES&&a(h)&&d(!1);var p=f(e,h,r);return{fragment:u(e.fragment,n,h,p),request:p,root:l(o,n,h)}},createRequestDescriptor:f}},32877:e=>{"use strict";e.exports=function(e,t){return e===t&&(null===e||"object"!=typeof e)}},33035:e=>{"use strict";var t=Promise.resolve();function r(e){setTimeout(function(){throw e},0)}e.exports=function(e){t.then(e).catch(r)}},33509:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(78210),a=r(90762),s=r(69201),o=r(4989),l=r(35610),u=r(7058),c=r(20311),d=r(96540),f=d.useCallback,h=d.useEffect,p=d.useState,_=r(69487),v=_.__internal.fetchQuery,g=_.RelayFeatureFlags,m=_.createOperationDescriptor,y=_.getPaginationVariables,E=_.getRefetchMetadata,R=_.getSelector;r(14594),e.exports=function(e){var t,r,d,_,b,S,I,D,C,k,P,A,O,T,F,x,N,L,w,M,V,U,q,j,Q,K,B,G,Y,H,z,W;return g.ENABLE_ACTIVITY_COMPATIBILITY?l(e):(r=(t=e).direction,d=t.fragmentNode,_=t.fragmentRef,b=t.fragmentIdentifier,S=t.fragmentData,I=t.connectionPathInFragmentData,D=t.paginationRequest,C=t.paginationMetadata,k=t.componentDisplayName,P=t.observer,A=t.onReset,O=u(),F=(T=a()).isFetchingRef,x=T.startFetch,N=T.disposeFetch,L=T.completeFetch,M=(null==(w=E(d,k).identifierInfo)?void 0:w.identifierField)!=null&&null!=S&&"object"==typeof S?S[w.identifierField]:null,V=s(),q=(U=p(O))[0],j=U[1],K=(Q=p(b))[0],B=Q[1],G=o(d,_),(O!==q||b!==K)&&(N(),A(),j(O),B(b)),H=(Y=i(r,d,S,I)).cursor,z=Y.hasMore,h(function(){return function(){N()}},[N]),[f(function(e,t){var i=null==t?void 0:t.onComplete;if(!0!==V.current)return{dispose:function(){}};var a=R(d,_);if(!0===F.current||W)return i&&i(null),{dispose:function(){}};(null==a||"PluralReaderSelector"===a.kind)&&c(!1);var s=a.owner.variables,o=a.variables,l=null==t?void 0:t.UNSTABLE_extraVariables,u=y(r,e,H,(0,n.default)((0,n.default)({},s),o),(0,n.default)({},l),C);return null!=w&&(u[w.identifierQueryVariableName]=M),v(O,m(D,u,{force:!0})).subscribe((0,n.default)((0,n.default)({},P),{},{start:function(e){x(e),P.start&&P.start(e)},complete:function(){L(),P.complete&&P.complete(),i&&i(null)},error:function(e){L(),P.error&&P.error(e),i&&i(e)}})),{dispose:N}},[O,M,r,H,x,N,L,F,W=null==S||G,d.name,_,k]),z,N])}},33616:(e,t,r)=>{"use strict";var n=r(16933),i=r(96540),a=r(69487),s=a.createOperationDescriptor,o=a.getRequest,l=i.useMemo;e.exports=function(e,t,r){var i=n(t),a=n(r||{});return l(function(){return s(o(e),i,a)},[e,i,a])}},34236:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(50883)),i=r(57042),a=r(79642).RELAY_LIVE_RESOLVER,s=r(884),o=r(62171),l=r(84895),u=l.generateClientID,c=l.generateClientObjectClientID,d=r(38742),f=r(95814).createNormalizationSelector,h=r(53968),p=r(41924).normalize,_=r(41046),v=_.RELAY_RESOLVER_ERROR_KEY,g=_.RELAY_RESOLVER_INVALIDATION_KEY,m=_.RELAY_RESOLVER_OUTPUT_TYPE_RECORD_IDS,y=_.RELAY_RESOLVER_SNAPSHOT_KEY,E=_.RELAY_RESOLVER_VALUE_KEY,R=_.getReadTimeResolverStorageKey,b=_.getStorageKey,S=r(62482),I=r(99528),D=r(89452).isSuspenseSentinel,C=r(20311);r(14594);var k="__resolverLiveStateSubscription",P="__resolverLiveStateValue",A="__resolverLiveStateDirty",O="__RELAY_RESOLVER__";function T(e,t,r){var n=e.get(t);n||(n=new Set,e.set(t,n)),n.add(r)}function F(e,t,r){var i=new Set;if(null!=r){var a,s=(0,n.default)(r);try{for(s.s();!(a=s.n()).done;){var o=a.value;t.has(o)||(i.add(o),e.remove(o))}}catch(e){s.e(e)}finally{s.f()}}var l,u=(0,n.default)(t.getRecordIDs());try{for(u.s();!(l=u.n()).done;){var c=l.value,f=w(t,c);if(e.has(c)){var h=w(e,c),p=d.update(h,f);p!==h&&(i.add(c),e.set(c,p),function(e,t){var r,i,a=(r=new Set,d.getFields(e).forEach(function(t){if(d.hasLinkedRecordID(e,t)){var n,i=d.getLinkedRecordID(e,t);null!=i&&r.add(i)}else d.hasLinkedRecordIDs(e,t)&&(null==(n=d.getLinkedRecordIDs(e,t))||n.forEach(function(e){null!=e&&r.add(e)}))}),r),s=(0,n.default)(a);try{for(s.s();!(i=s.n()).done;){var o=i.value,l=t.get(o);null!=l&&N(l)&&x(o,t)}}catch(e){s.e(e)}finally{s.f()}}(h,e))}else e.set(c,f)}}catch(e){u.e(e)}finally{u.f()}return i}function x(e,t){var r=t.get(e);if(r){var n=d.clone(r);d.setValue(n,g,!0),t.set(e,n)}}function N(e){return d.getType(e)===O}function L(e){var t=d.getValue(e,k);null!=t&&t()}function w(e,t){var r=e.get(t);return null==r&&C(!1),r}function M(e,t){var r,n=null!=(r=e.concreteType)?r:t.__typename;return null==n&&C(!1),n}e.exports={LiveResolverCache:function(){function e(e,t){this._resolverIDToRecordIDs=new Map,this._recordIDToResolverIDs=new Map,this._getRecordSource=e,this._store=t,this._handlingBatch=!1,this._liveResolverBatchRecordSource=null}var t=e.prototype;return t.readFromCacheOrEvaluate=function(e,t,r,i,s){var o,l=this._getRecordSource(),c=w(l,e),f=R(t,r),h=d.getLinkedRecordID(c,f),p=null==h?null:l.get(h);if(null==p||this._isInvalid(p,s)){null!=p&&L(p),h=null!=(x=h)?x:u(e,f),p=d.create(h,O);var _=i();if(d.setValue(p,y,_.snapshot),d.setValue(p,v,_.error),t.kind===a){if(null!=_.resolverResult){null!=_.error&&C(!1);var g=_.resolverResult;F=this._setLiveStateValue(p,h,g,t,r)}}else F=this._setResolverValue(p,_.resolverResult,t,r);l.set(h,p);var m=w(l,e),E=d.clone(m);if(d.setLinkedRecordID(E,f,h),l.set(e,E),null!=t.fragment){var S=u(e,b(t.fragment,r));T(this._resolverIDToRecordIDs,S,h),T(this._recordIDToResolverIDs,e,S);var k=null==(N=_.snapshot)?void 0:N.seenRecords;if(null!=k){var F,x,N,M,V=(0,n.default)(k);try{for(V.s();!(M=V.n()).done;){var U=M.value;T(this._recordIDToResolverIDs,U,S)}}catch(e){V.e(e)}finally{V.f()}}}}else if(t.kind===a&&d.getValue(p,A)){h=null!=(q=h)?q:u(e,f),p=d.clone(p);var q,j=d.getValue(p,P);I(j)||C(!1),F=this._setLiveResolverValue(p,j,t,r),d.setValue(p,A,!1),l.set(h,p)}var Q=this._getResolverValue(p),K=d.getValue(p,y),B=d.getValue(p,v),G=null;return D(Q)&&(G=null!=(o=h)?o:u(e,f)),[Q,h,B,K,G,F]},t.getLiveResolverPromise=function(e){var t=this._getRecordSource().get(e);null==t&&C(!1);var r=d.getValue(t,P);return new Promise(function(e){var t=r.subscribe(function(){t(),e()})})},t._setLiveStateValue=function(e,t,r,n,i){var a=this._makeLiveStateHandler(t),s=r.subscribe(a);d.setValue(e,P,r);var o=this._setLiveResolverValue(e,r,n,i);return d.setValue(e,A,!1),d.setValue(e,k,s),o},t._makeLiveStateHandler=function(e){var t=this;return function(){var r=t._getRecordSource().get(e);if(r&&d.hasValue(r,P)){var n=d.clone(r);d.setValue(n,A,!0),t._setLiveResolverUpdate(e,n)}}},t._setLiveResolverUpdate=function(e,t){if(this._handlingBatch)null==this._liveResolverBatchRecordSource&&(this._liveResolverBatchRecordSource=h.create()),this._liveResolverBatchRecordSource.set(e,t);else{var r=h.create();r.set(e,t),this._store.publish(r),this._store.notify()}},t.batchLiveStateUpdates=function(e){this._handlingBatch&&C(!1),this._handlingBatch=!0;try{e()}finally{null!=this._liveResolverBatchRecordSource&&(this._store.publish(this._liveResolverBatchRecordSource),this._store.notify()),this._liveResolverBatchRecordSource=null,this._handlingBatch=!1}},t._setLiveResolverValue=function(e,t,r,n){var i=null,a=null;try{i=t.read()}catch(e){a=e}return d.setValue(e,v,a),this._setResolverValue(e,i,r,n)},t._setResolverValue=function(e,t,r,i){var a=r.normalizationInfo,s=null;if(null==t||null==a||D(t))o(t),d.setValue(e,E,t);else{var l=S(e),u=new Set,f=this._getRecordSource();if(a.plural){Array.isArray(t)||C(!1),g=[];for(var p=h.create(),_=0;_{"use strict";var n=r(53141).getUpdatableQuery,i=r(75780).createUpdatableProxy;e.exports={readUpdatableQuery:function(e,t,r,a){var s=n(e);return{updatableData:i(r.getRoot(),t,s.fragment.selections,r,a)}}}},34526:e=>{"use strict";var t=Object.prototype.hasOwnProperty;e.exports=function(e){for(var r in e)if(t.call(e,r))return!1;return!0}},34556:(e,t,r)=>{"use strict";r(3574),r(14594);var n="function"==typeof WeakMap?new WeakMap:new Map;function i(e,t){if(null==t)return e;var r={};return Object.assign(r,e),Object.keys(t).forEach(function(e){var i=t[e].get,a=i();if(n.has(i)){var s=n.get(i);r[e]=s}else n.set(i,a),r[e]=a}),r}i.tests_only_resetDebugCache=void 0,e.exports=i},35513:(e,t,r)=>{"use strict";var n=r(38742),i=r(21304),a=i.EXISTENT,s=i.NONEXISTENT,o=r(41046),l=o.ROOT_ID,u=o.ROOT_TYPE,c=r(72226).readUpdatableFragment,d=r(34364).readUpdatableQuery,f=r(77650),h=r(20311);e.exports=function(){function e(e,t,r,n,i){this.__mutator=e,this._handlerProvider=r||null,this._proxies={},this._getDataID=t,this._invalidatedStore=!1,this._idsMarkedForInvalidation=new Set,this._missingFieldHandlers=n,this._log=null!=i?i:function(e){}}var t=e.prototype;return t.publishSource=function(e,t){var r=this;e.getRecordIDs().forEach(function(t){var i=e.getStatus(t);if(i===a){var o=e.get(t);o&&(r.__mutator.getStatus(t)!==a&&r.create(t,n.getType(o)),r.__mutator.copyFieldsFromRecord(o,t))}else i===s&&r.delete(t)}),t&&t.length&&t.forEach(function(e){var t=r._handlerProvider&&r._handlerProvider(e.handle);t||h(!1),t.update(r,e)})},t.create=function(e,t){this.__mutator.create(e,t),delete this._proxies[e];var r=this.get(e);return r||h(!1),r},t.delete=function(e){e===l&&h(!1),delete this._proxies[e],this.__mutator.delete(e)},t.get=function(e){if(!this._proxies.hasOwnProperty(e)){var t=this.__mutator.getStatus(e);t===a?this._proxies[e]=new f(this,this.__mutator,e):this._proxies[e]=t===s?null:void 0}return this._proxies[e]},t.getRoot=function(){var e=this.get(l);return e||(e=this.create(l,u)),e&&e.getType()===u||h(!1),e},t.invalidateStore=function(){this._invalidatedStore=!0},t.isStoreMarkedForInvalidation=function(){return this._invalidatedStore},t.markIDForInvalidation=function(e){this._idsMarkedForInvalidation.add(e)},t.getIDsMarkedForInvalidation=function(){return this._idsMarkedForInvalidation},t.readUpdatableQuery=function(e,t){return d(e,t,this,this._missingFieldHandlers)},t.readUpdatableFragment=function(e,t){return c(e,t,this,this._missingFieldHandlers)},e}()},35610:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(78210),a=r(69201),s=r(4989),o=r(7058),l=r(20311),u=r(96540),c=u.useCallback,d=u.useRef,f=u.useState,h=r(69487),p=h.__internal.fetchQuery,_=h.createOperationDescriptor,v=h.getPaginationVariables,g=h.getRefetchMetadata,m=h.getSelector;r(14594),e.exports=function(e){var t=e.direction,r=e.fragmentNode,u=e.fragmentRef,h=e.fragmentIdentifier,y=e.fragmentData,E=e.connectionPathInFragmentData,R=e.paginationRequest,b=e.paginationMetadata,S=e.componentDisplayName,I=e.observer,D=e.onReset,C=o(),k=g(r,S).identifierInfo,P=(null==k?void 0:k.identifierField)!=null&&null!=y&&"object"==typeof y?y[k.identifierField]:null,A=d({kind:"none"}),O=f(C),T=O[0],F=O[1],x=f(h),N=x[0],L=x[1],w=s(r,u),M=c(function(){"fetching"===A.current.kind&&A.current.subscription.unsubscribe(),A.current={kind:"none"}},[]);(C!==T||h!==N)&&(M(),D(),F(C),L(h));var V=i(t,r,y,E),U=V.cursor,q=V.hasMore,j=null==y||w,Q=a();return[c(function(e,i){var a=null==i?void 0:i.onComplete;if(!0!==Q.current)return{dispose:function(){}};var s=m(r,u);if("fetching"===A.current.kind||j)return a&&a(null),{dispose:function(){}};(null==s||"PluralReaderSelector"===s.kind)&&l(!1);var o=s.owner.variables,c=s.variables,d=null==i?void 0:i.UNSTABLE_extraVariables,f=v(t,e,U,(0,n.default)((0,n.default)({},o),c),(0,n.default)({},d),b);return null!=k&&(f[k.identifierQueryVariableName]=P),p(C,_(R,f,{force:!0})).subscribe((0,n.default)((0,n.default)({},I),{},{start:function(e){A.current={kind:"fetching",subscription:e},I.start&&I.start(e)},complete:function(){A.current={kind:"none"},I.complete&&I.complete(),a&&a(null)},error:function(e){A.current={kind:"none"},I.complete&&I.complete(),a&&a(e)}})),{dispose:function(){}}},[C,P,t,U,j,r.name,u,S]),q,M]}},35639:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(12897)),a=n(r(43693)),s=n(r(54893)),o=n(r(41132)),l=["message"],u=r(884),c=r(89452).isSuspenseSentinel,d=r(83798),f=r(38742),h=r(41046),p=h.CLIENT_EDGE_TRAVERSAL_PATH,_=h.FRAGMENT_OWNER_KEY,v=h.FRAGMENT_PROP_NAME_KEY,g=h.FRAGMENTS_KEY,m=h.ID_KEY,y=h.MODULE_COMPONENT_KEY,E=h.ROOT_ID,R=h.getArgumentValues,b=h.getModuleComponentKey,S=h.getStorageKey,I=r(83713).NoopResolverCache,D=r(14358),C=D.RESOLVER_FRAGMENT_ERRORED_SENTINEL,k=D.withResolverContext,P=r(84848).generateTypeID,A=r(20311);function O(e,t,r,n){return new T(e,t,null!=r?r:new I,n).read()}var T=function(){function e(e,t,r,n){var i,a,s,l;this._clientEdgeTraversalPath=null!=(i=t.clientEdgeTraversalPath)&&i.length?(0,o.default)(t.clientEdgeTraversalPath):[],this._missingClientEdges=[],this._missingLiveResolverFields=[],this._isMissingData=!1,this._isWithinUnmatchedTypeRefinement=!1,this._fieldErrors=null,this._owner=t.owner,this._useExecTimeResolvers=null!=(a=null!=(s=this._owner.node.operation.use_exec_time_resolvers)?s:(null==(l=this._owner.node.operation.exec_time_resolvers_enabled_provider)?void 0:l.get())===!0)&&a,this._recordSource=e,this._seenRecords=new Set,this._selector=t,this._variables=t.variables,this._resolverCache=r,this._fragmentName=t.node.name,this._updatedDataIDs=new Set,this._resolverContext=n}var t=e.prototype;return t.read=function(){var e,t=this._selector,r=t.node,n=t.dataID,i=t.isWithinUnmatchedTypeRefinement,a=r.abstractKey,s=this._recordSource.get(n),o=!i;o&&null==a&&null!=s&&!this._recordMatchesTypeCondition(s,r.type)&&(o=!1),o&&null!=a&&null!=s&&!1===this._implementsInterface(s,a)&&(o=!1),this._isWithinUnmatchedTypeRefinement=!o;var l=this._traverse(r,n,null),u=null==(e=this._selector.node.metadata)?void 0:e.catchTo;return null!=u&&(l=this._catchErrors(l,u,null)),this._updatedDataIDs.size>0&&(this._resolverCache.notifyUpdatedSubscribers(this._updatedDataIDs),this._updatedDataIDs.clear()),{data:l,isMissingData:this._isMissingData&&o,missingClientEdges:this._missingClientEdges.length?this._missingClientEdges:null,missingLiveResolverFields:this._missingLiveResolverFields,seenRecords:this._seenRecords,selector:this._selector,fieldErrors:this._fieldErrors}},t._maybeAddFieldErrors=function(e,t){var r=f.getErrors(e,t);if(null!=r){var n=this._fragmentName;null==this._fieldErrors&&(this._fieldErrors=[]);for(var i=0;i"),n;var i=r||{};return this._traverseSelections(e.selections,n,i)?i:null},t._getVariableValue=function(e){return this._variables.hasOwnProperty(e)||A(!1),this._variables[e]},t._maybeReportUnexpectedNull=function(e){if("NONE"!==e.action){var t,r,n,i=this._fragmentName;switch(null==this._fieldErrors&&(this._fieldErrors=[]),t=null!=e.field.linkedField?null!=(r=e.field.linkedField.alias)?r:e.field.linkedField.name:null!=(n=e.field.alias)?n:e.field.name,e.action){case"THROW":this._fieldErrors.push({kind:"missing_required_field.throw",fieldPath:t,owner:i,handled:!1,uiContext:void 0});return;case"LOG":this._fieldErrors.push({kind:"missing_required_field.log",fieldPath:t,owner:i,uiContext:void 0});return;default:e.action}}},t._handleRequiredFieldValue=function(e,t){return null!=t||(this._maybeReportUnexpectedNull(e),!1)},t._catchErrors=function(e,t,r){var n=e;switch(t){case"RESULT":n=this._asResult(e);break;case"NULL":null!=this._fieldErrors&&this._fieldErrors.length>0&&(n=null)}var i=this._fieldErrors;if(this._fieldErrors=r,null!=i){null==this._fieldErrors&&(this._fieldErrors=[]);for(var a=0;ap||this._missingLiveResolverFields.length>0,this._clientEdgeTraversalPath.pop(),!_)return!1;break;case"Stream":if(!this._traverseSelections(i.selections,t,r))return!1;break;case"ActorChange":this._readActorChange(i,t,r);break;case"ClientEdgeToClientObject":case"ClientEdgeToServerObject":if(this._useExecTimeResolvers&&("RelayResolver"===i.backingField.kind||"RelayLiveResolver"===i.backingField.kind)){var v=i.linkedField;v.plural?this._readPluralLink(v,t,r):this._readLink(v,t,r)}else this._readClientEdge(i,t,r);break;default:A(!1)}}return!0},t._readClientSideDirectiveField=function(e,t,r){switch(e.field.kind){case"ScalarField":return this._readScalar(e.field,t,r);case"LinkedField":if(e.field.plural)return this._readPluralLink(e.field,t,r);return this._readLink(e.field,t,r);case"RelayResolver":case"RelayLiveResolver":if(this._useExecTimeResolvers)return this._readScalar(e.field,t,r);return this._readResolverField(e.field,t,r);case"ClientEdgeToClientObject":case"ClientEdgeToServerObject":if(!this._useExecTimeResolvers||"RelayResolver"!==e.field.backingField.kind&&"RelayLiveResolver"!==e.field.backingField.kind)return this._readClientEdge(e.field,t,r);var n=e.field;if(n.linkedField.plural)return this._readPluralLink(n.linkedField,t,r);return this._readLink(n.linkedField,t,r);case"AliasedInlineFragmentSpread":return this._readAliasedInlineFragment(e.field,t,r);default:e.field.kind,A(!1)}},t._readResolverField=function(e,t,r){var n,i=f.getDataID(t),a=this._fieldErrors;this._fieldErrors=null;var s=this._readResolverFieldImpl(e,i),o=null!=(n=e.alias)?n:e.name;return this._prependPreviousErrors(a,o),r[o]=s,s},t._readResolverFieldImpl=function(e,t){var r,n=this,i=e.fragment,s=function(e){return null!=r?{data:r.data,isMissingData:r.isMissingData,fieldErrors:r.fieldErrors}:{data:(r=O(n._recordSource,e,n._resolverCache)).data,isMissingData:r.isMissingData,fieldErrors:r.fieldErrors}},l=this._resolverCache.readFromCacheOrEvaluate(t,e,this._variables,function(){if(null!=i){var l={__id:t,__fragmentOwner:n._owner,__fragments:(0,a.default)({},i.name,i.args?R(i.args,n._variables):{})};return n._clientEdgeTraversalPath.length>0&&null!==n._clientEdgeTraversalPath[n._clientEdgeTraversalPath.length-1]&&(l[p]=(0,o.default)(n._clientEdgeTraversalPath)),k({getDataForResolverFragment:s},function(){var t=x(e,n._variables,l,n._resolverContext),i=t[0],a=t[1];return{resolverResult:i,snapshot:r,error:a}})}var u=x(e,n._variables,null,n._resolverContext);return{resolverResult:u[0],snapshot:void 0,error:u[1]}},s),u=l[0],c=l[1],d=l[2],f=l[3],h=l[4],_=l[5];return this._propagateResolverMetadata(e.path,f,d,c,h,_),u},t._propagateResolverMetadata=function(e,t,r,n,i,a){var s=this;if(null!=t){if(null!=t.missingClientEdges)for(var o=0;o0;for(var u=0;u=0;i--)e.push(this._fieldErrors[i]);this._fieldErrors=e}}else this._fieldErrors=e},t._readActorChange=function(e,t,r){var n,i=null!=(n=e.alias)?n:e.name,a=S(e,this._variables),s=f.getActorLinkedRecordID(t,a);if(null==s)return r[i]=s,void 0===s?this._markDataAsMissing(i):null===s&&this._maybeAddFieldErrors(t,a),r[i];var o=s[0],l=s[1],u={};return this._createFragmentPointer(e.fragmentSpread,f.fromObject({__id:l}),u),r[i]={__fragmentRef:u,__viewer:o},r[i]},t._readPluralLink=function(e,t,r){var n=S(e,this._variables),i=f.getLinkedRecordIDs(t,n);return(null===i||u.ENABLE_NONCOMPLIANT_ERROR_HANDLING_ON_LISTS&&Array.isArray(i)&&0===i.length)&&this._maybeAddFieldErrors(t,n),this._readLinkedIds(e,i,t,r)},t._readLinkedIds=function(e,t,r,n){var i,a=this,s=null!=(i=e.alias)?i:e.name;if(null==t)return n[s]=t,void 0===t&&this._markDataAsMissing(s),t;var o=n[s];null==o||Array.isArray(o)||A(!1);var l=this._fieldErrors;this._fieldErrors=null;var u=o||[];return t.forEach(function(t,r){if(null==t){void 0===t&&a._markDataAsMissing(String(r)),u[r]=t;return}var n=u[r];null!=n&&"object"!=typeof n&&A(!1);var i=a._fieldErrors;a._fieldErrors=null,u[r]=a._traverse(e,t,n),a._prependPreviousErrors(i,r)}),this._prependPreviousErrors(l,s),n[s]=u,u},t._readModuleImport=function(e,t,r){var n=b(e.documentName),i=f.getValue(t,n),a=void 0!==i?i:e.componentModuleProvider;if(null==a){void 0===a&&this._markDataAsMissing("");return}this._createFragmentPointer({kind:"FragmentSpread",name:e.fragmentName,args:e.args},t,r),r[v]=e.fragmentPropName,r[y]=a},t._readAliasedInlineFragment=function(e,t,r){var n=this._fieldErrors;this._fieldErrors=null;var i=this._readInlineFragment(e.fragment,t,{},!0);this._prependPreviousErrors(n,e.name),!1===i&&(i=null),r[e.name]=i},t._readInlineFragment=function(e,t,r,n){if(null==e.type){var i=this._traverseSelections(e.selections,t,r);return!1!==i&&r}var a=e.abstractKey;if(null==a)if(!this._recordMatchesTypeCondition(t,e.type))return null;else{var i=this._traverseSelections(e.selections,t,r);if(!i)return!1}else{var s=this._implementsInterface(t,a);if(!1===s&&n)return null;var o=this._isMissingData,l=this._isWithinUnmatchedTypeRefinement;this._isWithinUnmatchedTypeRefinement=l||!1===s;var u=this._traverseSelections(e.selections,t,r);if(this._isWithinUnmatchedTypeRefinement=l,!1===s)return this._isMissingData=o,null;if(null==s)return;if(!1===u)return!1}return r},t._recordMatchesTypeCondition=function(e,t){var r=f.getType(e);return null!=r&&r===t||f.getDataID(e)===E},t._createFragmentPointer=function(e,t,r){var n=r[g];null==n&&(n=r[g]={}),("object"!=typeof n||null==n)&&A(!1),null==r[m]&&(r[m]=f.getDataID(t)),n[e.name]=R(e.args,this._variables,this._isWithinUnmatchedTypeRefinement),r[_]=this._owner,this._clientEdgeTraversalPath.length>0&&null!==this._clientEdgeTraversalPath[this._clientEdgeTraversalPath.length-1]&&(r[p]=(0,o.default)(this._clientEdgeTraversalPath))},t._createInlineDataOrResolverFragmentPointer=function(e,t,r){var n=r[g];null==n&&(n=r[g]={}),("object"!=typeof n||null==n)&&A(!1),null==r[m]&&(r[m]=f.getDataID(t));var i={},a=this._fragmentName;this._fragmentName=e.name;var s=this._variables,o=e.args?R(e.args,this._variables):{};this._variables=d.getFragmentVariables(e,this._owner.variables,o),this._traverseSelections(e.selections,t,i),this._variables=s,this._fragmentName=a,n[e.name]=i},t._implementsInterface=function(e,t){var r=f.getType(e),n=this._recordSource.get(P(r)),i=null!=n?f.getValue(n,t):null;return null==i&&this._markDataAsMissing(""),i},e}();function F(e){switch(e.kind){case"missing_expected_data.throw":case"missing_required_field.throw":case"relay_field_payload.error":case"relay_resolver.error":return(0,i.default)((0,i.default)({},e),{},{handled:!0});case"missing_expected_data.log":case"missing_required_field.log":return e;default:e.kind,A(!1)}}function x(e,t,r,n){var i="function"==typeof e.resolverModule?e.resolverModule:e.resolverModule.default,a=null,s=null;try{var o=[];null!=e.fragment&&o.push(r);var l=e.args?R(e.args,t):void 0;o.push(l),o.push(n),a=i.apply(null,o)}catch(e){a=null,e!==C&&(s=e)}return[a,s]}function N(e,t,r){return"string"==typeof e?e:"object"==typeof e&&null!=e&&"string"==typeof e.id?e.id:void A(!1)}e.exports={read:O}},37498:(e,t,r)=>{"use strict";var n=r(24428);e.exports=function(e,t){return{execute:function(r,i,a,s,o,l,u,c){var d=n();return t.execute(r,i,a,s,function(t){e.__log({name:"network.info",networkRequestId:d,info:t})},l,u,c).do({start:function(t){e.__log({name:"network.start",networkRequestId:d,params:r,variables:i,cacheConfig:a})},next:function(t){e.__log({name:"network.next",networkRequestId:d,response:t})},error:function(t){e.__log({name:"network.error",networkRequestId:d,error:t})},complete:function(){e.__log({name:"network.complete",networkRequestId:d})},unsubscribe:function(){e.__log({name:"network.unsubscribe",networkRequestId:d})}})}}}},37797:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(38783)),a=n(r(81581)),s=r(69487);e.exports=function(e,t,r,n){return s.RelayFeatureFlags.ENABLE_ACTIVITY_COMPATIBILITY?(0,a.default)(e,t,r,n):(0,i.default)(e,t,r,n)}},38742:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(43693)),a=n(r(54893)),s=n(r(77736)),o=n(r(12897)),l=r(15519),u=r(84895),c=u.generateClientObjectClientID;u.isClientID;var d=r(89452).isSuspenseSentinel,f=r(41046),h=f.ACTOR_IDENTIFIER_KEY,p=f.ERRORS_KEY,_=f.ID_KEY,v=f.INVALIDATED_AT_KEY,g=f.REF_KEY,m=f.REFS_KEY,y=f.RELAY_RESOLVER_VALUE_KEY,E=(f.ROOT_ID,f.TYPENAME_KEY),R=r(3574),b=r(20311);function S(e,t){var r=e[t];return r&&"object"==typeof r&&(r.hasOwnProperty(g)||r.hasOwnProperty(m))&&b(!1),r}function I(e,t,r){var n=e[p];if(null!=r&&r.length>0)null==n?e[p]=(0,i.default)({},t,r):n[t]=r;else if(null!=n&&delete n[t]){for(var a in n)if(n.hasOwnProperty(a))return;delete e[p]}}r(14594);e.exports={clone:function(e){return(0,o.default)({},e)},copyFields:function(e,t){for(var r in e)e.hasOwnProperty(r)&&r!==_&&r!==E&&(t[r]=e[r])},create:function(e,t){var r={};return r[_]=e,r[E]=t,r},freeze:function(e){l(e)},fromObject:function(e){return e},getDataID:function(e){return e[_]},getErrors:function(e,t){var r;return null==(r=e[p])?void 0:r[t]},getFields:function(e){return p in e?Object.keys(e).filter(function(e){return e!==p}):Object.keys(e)},getInvalidationEpoch:function(e){if(null==e)return null;var t=e[v];return"number"!=typeof t?null:t},getLinkedRecordID:function(e,t){var r=e[t];return null==r?r:("object"==typeof r&&r&&"string"==typeof r[g]||b(!1),r[g])},getLinkedRecordIDs:function(e,t){var r=e[t];return null==r?r:("object"==typeof r&&Array.isArray(r[m])||b(!1),r[m])},getType:function(e){return e[E]},getValue:S,hasValue:function(e,t){return t in e},hasLinkedRecordID:function(e,t){var r=e[t];return null!=r&&"object"==typeof r&&r&&"string"==typeof r[g]},hasLinkedRecordIDs:function(e,t){var r=e[t];return null!=r&&"object"==typeof r&&Array.isArray(r[m])&&r[m].every(function(e){return"string"==typeof e})},merge:function(e,t){if(!(p in e)&&!(p in t))return(0,o.default)((0,o.default)({},e),t);var r=e[p],n=(0,a.default)(e,[p].map(s.default)),i=t[p],l=(0,a.default)(t,[p].map(s.default)),u=(0,o.default)((0,o.default)({},n),l);if(null==r&&null==i)return u;var c={};for(var d in r)l.hasOwnProperty(d)||(c[d]=r[d]);for(var f in i)c[f]=i[f];for(var h in c){u[p]=c;break}return u},setErrors:I,setValue:function(e,t,r){e[t]=r},setLinkedRecordID:function(e,t,r){var n={};n[g]=r,e[t]=n},setLinkedRecordIDs:function(e,t,r){var n={};n[m]=r,e[t]=n},update:function(e,t){var r,n,i=e[p],a=t[p],s=null;if(null==i&&null==a){for(var l in t)(s||!R(e[l],t[l]))&&((s=null!==s?s:(0,o.default)({},e))[l]=t[l]);return null!=(n=s)?n:e}for(var u in t)if(u!==p){var c,d,f,h=t[u],_=null==a?void 0:a[u];if(null==s){var v=e[u],g=null==i?void 0:i[u];if(R(v,h)&&R(g,_))continue;s=(0,o.default)({},e),null!=i&&(s[p]=(0,o.default)({},i))}c=s,d=u,f=h,c[d]=f,I(s,u,_)}return null!=(r=s)?r:e},getActorLinkedRecordID:function(e,t){var r=e[t];return null==r?r:(("object"!=typeof r||"string"!=typeof r[g]||null==r[h])&&b(!1),[r[h],r[g]])},setActorLinkedRecordID:function(e,t,r,n){var i={};i[g]=n,i[h]=r,e[t]=i},getResolverLinkedRecordID:function(e,t){var r=S(e,y);return null==r||d(r)?null:("object"==typeof r&&(r=r.id),"string"!=typeof r&&b(!1),c(t,r))},getResolverLinkedRecordIDs:function(e,t){var r=S(e,y);return null==r||d(r)?null:(Array.isArray(r)||b(!1),r.map(function(e){return null==e?null:("object"==typeof e&&(e=e.id),"string"!=typeof e&&b(!1),c(t,e))}))},toJSON:function(e){return e}}},38783:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(12897)),a=n(r(50883)),s=n(r(41132)),o=r(31503).getQueryResourceForEnvironment,l=r(7058),u=r(59567),c=r(20311),d=r(96540),f=(d.useDebugValue,d.useEffect),h=d.useMemo,p=d.useRef,_=d.useState,v=r(69487),g=v.__internal,m=g.fetchQuery,y=g.getPromiseForActiveRequest,E=v.RelayFeatureFlags,R=v.areEqualSelectors,b=v.createOperationDescriptor,S=v.getPendingOperationsForFragment,I=v.getSelector,D=v.getVariablesFromFragment,C=v.handlePotentialSnapshotErrors,k=v.recycleNodesInto;function P(e,t){if("bailout"===t.kind)return null;var r=e.getStore().getEpoch();if(r===t.epoch)return null;if("singular"===t.kind){var n=e.lookup(t.snapshot.selector),i=k(t.snapshot.data,n.data),a={data:i,isMissingData:n.isMissingData,missingClientEdges:n.missingClientEdges,missingLiveResolverFields:n.missingLiveResolverFields,seenRecords:n.seenRecords,selector:n.selector,fieldErrors:n.fieldErrors};return[i!==t.snapshot.data,{kind:"singular",snapshot:a,epoch:r}]}for(var s=!1,o=[],l=0;l0)throw Promise.all($.map(function(e){return F.getStore().getLiveResolverPromise(e)}));if(E.ENABLE_RELAY_OPERATION_TRACKER_SUSPENSE||F!==G||!z.current||!R(z.current,O)){null==O&&c(!1);var Z=S(F,e,"PluralReaderSelector"===O.kind?O.selectors[0].owner:O.owner);if(Z)throw Z.promise}}var ee=w,et=g;if("singular"===ee.kind)C(F,ee.snapshot.fieldErrors,et);else if("plural"===ee.kind){var er,en,ei=(0,a.default)(ee.snapshots);try{for(ei.s();!(en=ei.n()).done;){var ea=en.value;C(F,ea.fieldErrors,et)}}catch(e){ei.e(e)}finally{ei.f()}}var es=p(!1);if(f(function(){var e=q,t=P(F,q);if(null!==t){var r=t[0],n=t[1];r&&L(n),e=n}var i=e;if("bailout"===i.kind)return function(){};if("singular"===i.kind){var o=F.subscribe(i.snapshot,function(e){L(function(t){if("singular"!==t.kind||t.snapshot.selector!==e.selector){var r=P(F,t);if(null==r)return t;var n=r[0],i=r[1];return F.__log({name:"useFragment.subscription.missedUpdates",hasDataChanges:n}),es.current=n,n?i:t}return es.current=!0,{kind:"singular",snapshot:e,epoch:F.getStore().getEpoch()}})});return function(){o.dispose()}}var l=i.snapshots.map(function(e,t){return F.subscribe(e,function(e){L(function(r){if("plural"!==r.kind||(null==(n=r.snapshots[t])?void 0:n.selector)!==e.selector){var n,i=P(F,r);if(null==i)return r;var a=i[0],o=i[1];return F.__log({name:"useFragment.subscription.missedUpdates",hasDataChanges:a}),es.current=es.current||a,a?o:r}var l=(0,s.default)(r.snapshots);return l[t]=e,es.current=!0,{kind:"plural",snapshots:l,epoch:F.getStore().getEpoch()}})})});return function(){var e,t=(0,a.default)(l);try{for(t.s();!(e=t.n()).done;)e.value.dispose()}catch(e){t.e(e)}finally{t.f()}}},[F,q]),es.current){var eo=P(F,w);if(null!=eo){var el=eo[0],eu=eo[1];el&&(L(eu),w=eu)}es.current=!1}if(T){var ec=null==t;k=h(function(){return"bailout"===w.kind?ec?null:[]:("plural"!==w.kind&&c(!1),w.snapshots.map(function(e){return e.data}))},[w,ec])}else"bailout"===w.kind?k=null:("singular"!==w.kind&&c(!1),k=w.snapshot.data);return E.LOG_MISSING_RECORDS_IN_PROD&&null!=t&&(void 0===k||Array.isArray(k)&&k.length>0&&k.every(function(e){return void 0===e})),k}},39420:(e,t,r)=>{"use strict";var n=r(7672),i=r(33616),a=r(7058),s=r(20311);r(96540).useDebugValue;var o=r(69487).__internal,l=o.fetchQueryDeduped,u=o.fetchQuery;r(14594),e.exports=function(e,t,r){var o=a(),c=t.fetchKey,d=t.fetchPolicy,f=t.source,h=i(e,t.variables,t.networkCacheConfig);if("PreloadedQuery_DEPRECATED"===t.kind)h.request.node.params.name!==t.name&&s(!1),p={componentDisplayName:"usePreloadedQuery()",fetchKey:c,fetchObservable:l(o,h.request.identifier,function(){return o===t.environment&&null!=f?o.executeWithSource({operation:h,source:f}):o.execute({operation:h})}),fetchPolicy:d,query:h,renderPolicy:null==r?void 0:r.UNSTABLE_renderPolicy};else{var p,_,v=u(o,h);null!=f&&o===t.environment?_=f.ifEmpty(v):(t.environment,_=v),p={componentDisplayName:"usePreloadedQuery()",fetchObservable:_,fetchKey:c,fetchPolicy:d,query:h,renderPolicy:null==r?void 0:r.UNSTABLE_renderPolicy}}return n(p)}},40121:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(50883)),i=r(41241),a=r(69201),s=r(96540),o=s.useCallback,l=s.useEffect,u=s.useRef,c=s.useState,d={kind:"NullEntryPointReference"};e.exports=function(e,t,r){var s,f,h,p,_=null!=(s=null==r||null==(f=r.TEST_ONLY__initialEntryPointData)?void 0:f.entryPointReference)?s:d,v=null!=(h=null==r||null==(p=r.TEST_ONLY__initialEntryPointData)?void 0:p.entryPointParams)?h:null,g=a(),m=u(new Set([_])),y=c(_),E=y[0],R=y[1],b=c(v),S=b[0],I=b[1],D=o(function(){if(g.current){var e={kind:"NullEntryPointReference"};m.current.add(e),R(e)}},[R,g]),C=o(function(r){if(g.current){var n=i(e,t,r);m.current.add(n),R(n),I(r)}},[e,t,R,g]),k=u(!1);return l(function(){return function(){k.current=!0}},[]),l(function(){if(!0===k.current){k.current=!1,"NullEntryPointReference"!==E.kind&&null!=S&&C(S);return}var e=m.current;if(g.current){var t,r=(0,n.default)(e);try{for(r.s();!(t=r.n()).done;){var i=t.value;if(i===E)break;e.delete(i),"NullEntryPointReference"!==i.kind&&i.dispose()}}catch(e){r.e(e)}finally{r.f()}}},[E,S,C,g]),l(function(){return function(){var e,t=(0,n.default)(m.current);try{for(t.s();!(e=t.n()).done;){var r=e.value;"NullEntryPointReference"!==r.kind&&r.dispose()}}catch(e){t.e(e)}finally{t.f()}}},[]),["NullEntryPointReference"===E.kind?null:E,C,D]}},40541:(e,t,r)=>{"use strict";var n=r(150),i=r(55199).observeFragment;e.exports={resolverDataInjector:n,isValueResult:function(e){return!0===e.ok},isErrorResult:function(e){return!1===e.ok},observeQuery:r(90931).observeQuery,observeFragment:i,waitForFragmentData:r(3971).waitForFragmentData}},40937:(e,t,r)=>{"use strict";e.exports={VIEWER_ID:(0,r(84895).generateClientID)(r(41046).ROOT_ID,"viewer"),VIEWER_TYPE:"Viewer"}},40976:(e,t,r)=>{"use strict";r(30709),r(14594),e.exports=function(e,t){}},41046:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(41132)),i=r(9130),a=r(79642),s=r(884),o=r(8312).stableCopy,l=r(20311),u=a.VARIABLE,c=a.LITERAL,d=a.OBJECT_VALUE,f=a.LIST_VALUE;function h(e,t){if(e.kind===u){var r,n;return r=e.variableName,(n=t).hasOwnProperty(r)||l(!1),o(n[r])}if(e.kind===c)return e.value;if(e.kind===d){var i={};return e.fields.forEach(function(e){i[e.name]=h(e,t)}),i}if(e.kind===f){var a=[];return e.items.forEach(function(e){null!=e&&a.push(h(e,t))}),a}}function p(e,t,r){var n={};return r&&(n[g.FRAGMENT_POINTER_IS_WITHIN_UNMATCHED_TYPE_REFINEMENT]=!0),e&&e.forEach(function(e){n[e.name]=h(e,t)}),n}function _(e,t){if(e.storageKey)return e.storageKey;var r=function(e){if("RelayResolver"===e.kind||"RelayLiveResolver"===e.kind){var t,r;return null==e.args?null==(r=e.fragment)?void 0:r.args:(null==(t=e.fragment)?void 0:t.args)==null?e.args:e.args.concat(e.fragment.args)}return void 0===e.args?void 0:e.args}(e),n=e.name;return r&&0!==r.length?v(n,p(r,t)):n}function v(e,t){if(!t)return e;var r=[];for(var n in t)if(t.hasOwnProperty(n)){var i,a=t[n];null!=a&&r.push(n+":"+(null!=(i=JSON.stringify(a))?i:"undefined"))}return 0===r.length?e:e+"(".concat(r.join(","),")")}var g={ACTOR_IDENTIFIER_KEY:"__actorIdentifier",CLIENT_EDGE_TRAVERSAL_PATH:"__clientEdgeTraversalPath",FRAGMENTS_KEY:"__fragments",FRAGMENT_OWNER_KEY:"__fragmentOwner",FRAGMENT_POINTER_IS_WITHIN_UNMATCHED_TYPE_REFINEMENT:"$isWithinUnmatchedTypeRefinement",FRAGMENT_PROP_NAME_KEY:"__fragmentPropName",MODULE_COMPONENT_KEY:"__module_component",ERRORS_KEY:"__errors",ID_KEY:"__id",REF_KEY:"__ref",REFS_KEY:"__refs",ROOT_ID:"client:root",ROOT_TYPE:"__Root",TYPENAME_KEY:"__typename",INVALIDATED_AT_KEY:"__invalidated_at",RELAY_RESOLVER_VALUE_KEY:"__resolverValue",RELAY_RESOLVER_INVALIDATION_KEY:"__resolverValueMayBeInvalid",RELAY_RESOLVER_SNAPSHOT_KEY:"__resolverSnapshot",RELAY_RESOLVER_ERROR_KEY:"__resolverError",RELAY_RESOLVER_OUTPUT_TYPE_RECORD_IDS:"__resolverOutputTypeRecordIDs",RELAY_READ_TIME_RESOLVER_KEY_PREFIX:"$r:",formatStorageKey:v,getArgumentValue:h,getArgumentValues:p,getHandleStorageKey:function(e,t){var r=e.dynamicKey,a=e.handle,s=e.key,o=e.name,l=e.args,u=e.filters,c=i(a,s,o),d=null;return(l&&u&&0!==l.length&&0!==u.length&&(d=l.filter(function(e){return u.indexOf(e.name)>-1})),r&&(d=null!=d?[r].concat((0,n.default)(d)):[r]),null===d)?c:v(c,p(d,t))},getStorageKey:_,getReadTimeResolverStorageKey:function(e,t){var r=_(e,t);return s.ENABLE_READ_TIME_RESOLVER_STORAGE_KEY_PREFIX?"$r:"+r:r},getStableStorageKey:function(e,t){return v(e,o(t))},getModuleComponentKey:function(e){return"".concat("__module_component_").concat(e)},getModuleOperationKey:function(e){return"".concat("__module_operation_").concat(e)}};e.exports=g},41132:(e,t,r)=>{var n=r(5901),i=r(99291),a=r(17122),s=r(41869);e.exports=function(e){return n(e)||i(e)||a(e)||s()},e.exports.__esModule=!0,e.exports.default=e.exports},41241:(e,t,r)=>{"use strict";var n=r(90007).loadQuery;e.exports=function e(t,r,i){var a=null;null==r.root.getModuleIfRequired()&&(a=r.root.load());var s=r.getPreloadProps(i),o=s.queries,l=s.entryPoints,u=s.extraProps,c={},d={};null!=o&&Object.keys(o).forEach(function(e){var r=o[e];if(null!=r){var i=r.environmentProviderOptions,a=r.options,s=r.parameters,l=r.variables;if((null==a?void 0:a.includeIf)!==!1){var u=t.getEnvironment(i);c[e]=n(u,s,l,{fetchPolicy:null==a?void 0:a.fetchPolicy,networkCacheConfig:null==a?void 0:a.networkCacheConfig,__nameForWarning:"loadEntryPoint"},i)}}}),null!=l&&Object.keys(l).forEach(function(r){var n=l[r];if(null!=n){var i=n.entryPoint,a=n.entryPointParams;d[r]=e(t,i,a)}});var f=!1;return{dispose:function(){f||(null!=c&&Object.values(c).forEach(function(e){(0,e.dispose)()}),null!=d&&Object.values(d).forEach(function(e){(0,e.dispose)()}),f=!0)},entryPoints:d,extraProps:null!=u?u:null,getComponent:function(){var e,t=r.root.getModuleIfRequired();if(null==t)throw a=null!=(e=a)?e:r.root.load();return null!=t.default?t.default:t},get isDisposed(){return f},queries:c,rootModuleID:r.root.getModuleId()}}},41869:e=>{e.exports=function(){throw TypeError(`Invalid attempt to spread non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)},e.exports.__esModule=!0,e.exports.default=e.exports},41924:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(50883)),a=n(r(41132)),s=r(26611),o=(s.ACTOR_IDENTIFIER_FIELD_NAME,s.getActorIdentifierFromPayload),l=r(884),u=r(84895),c=u.generateClientID,d=u.isClientID,f=r(83798).getLocalVariables,h=r(18900),p=h.buildErrorTrie,_=h.getErrorsByKey,v=h.getNestedErrorTrieByKey,g=r(38742),m=r(95814).createNormalizationSelector,y=r(41046),E=y.ROOT_ID,R=y.TYPENAME_KEY,b=y.getArgumentValues,S=y.getHandleStorageKey,I=y.getModuleComponentKey,D=y.getModuleOperationKey,C=y.getStorageKey,k=r(84848),P=k.TYPE_SCHEMA_TYPE,A=k.generateTypeID;r(3574);var O=r(20311);r(14594);var T=function(){function e(e,t,r,n){this._actorIdentifier=r.actorIdentifier,this._getDataId=r.getDataID,this._handleFieldPayloads=[],this._treatMissingFieldsAsNull=r.treatMissingFieldsAsNull,this._incrementalPlaceholders=[],this._isClientExtension=!1,this._isUnmatchedAbstractType=!1,this._useExecTimeResolvers=n,this._followupPayloads=[],this._path=r.path?(0,a.default)(r.path):[],this._recordSource=e,this._variables=t,this._shouldProcessClientComponents=r.shouldProcessClientComponents,this._log=r.log}var t=e.prototype;return t.normalizeResponse=function(e,t,r,n){var i=this._recordSource.get(t);return i||O(!1),this._assignClientAbstractTypes(e),this._errorTrie=p(n),this._traverseSelections(e,i,r),{errors:n,fieldPayloads:this._handleFieldPayloads,incrementalPlaceholders:this._incrementalPlaceholders,followupPayloads:this._followupPayloads,source:this._recordSource,isFinal:!1}},t._assignClientAbstractTypes=function(e){var t=e.clientAbstractTypes;if(null!=t)for(var r=0,n=Object.keys(t);r{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(69201),a=r(7058),s=r(96540),o=r(69487).commitMutation,l=s.useState,u=s.useEffect,c=s.useRef,d=s.useCallback;e.exports=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:o,r=a(),s=i(),f=c(r),h=c(e),p=c(new Set),_=l(!1),v=_[0],g=_[1],m=d(function(t){f.current===r&&h.current===e&&(p.current.delete(t),s.current&&g(p.current.size>0))},[r,s,e]);return u(function(){(f.current!==r||h.current!==e)&&(p.current=new Set,s.current&&g(!1),f.current=r,h.current=e)},[r,s,e]),[d(function(i){s.current&&g(!0);var a=t(r,(0,n.default)((0,n.default)({},i),{},{mutation:e,onCompleted:function(e,t){var r;m(a),null==(r=i.onCompleted)||r.call(i,e,t)},onError:function(e){var t;m(a),null==(t=i.onError)||t.call(i,e)},onUnsubscribe:function(){var e;m(a),null==(e=i.onUnsubscribe)||e.call(i)},onNext:function(){var e;null==(e=i.onNext)||e.call(i)}}));return p.current.add(a),a},[m,t,r,s,e]),v]}},43693:(e,t,r)=>{var n=r(77736);e.exports=function(e,t,r){return(t=n(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e},e.exports.__esModule=!0,e.exports.default=e.exports},43874:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(12006),a=r(32115).createOperationDescriptor,s=r(57595).handlePotentialSnapshotErrors,o=r(94987),l=r(53141).getRequest,u=r(20311);function c(e,t){return o.fetchQuery(e,t).map(function(){return e.lookup(t.fragment)})}e.exports=function(e,t,r,o){var d,f=l(t);"query"!==f.params.operationKind&&u(!1);var h=a(f,r,(0,n.default)({force:!0},null==o?void 0:o.networkCacheConfig)),p=null!=(d=null==o?void 0:o.fetchPolicy)?d:"network-only";function _(t){return s(e,t.fieldErrors),t.data}switch(p){case"network-only":return c(e,h).map(_);case"store-or-network":if("available"===e.check(h).status)return i.from(e.lookup(h.fragment)).map(_);return c(e,h).map(_);default:throw Error("fetchQuery: Invalid fetchPolicy "+p)}}},44881:(e,t,r)=>{"use strict";var n=r(98976),i=r(53141).getRequest,a=r(32115).createOperationDescriptor,s=r(95814).createReaderSelector;r(14594),e.exports=function(e,t){var r=i(t.subscription);if("subscription"!==r.params.operationKind)throw Error("requestSubscription: Must use Subscription operation");var o=t.configs,l=t.onCompleted,u=t.onError,c=t.onNext,d=a(r,t.variables,t.cacheConfig),f=(o?n.convert(o,r,null,t.updater):t).updater;return{dispose:e.executeSubscription({operation:d,updater:f}).subscribe({next:function(t){if(null!=c){var r,n,i,a,o=d.fragment;"string"==typeof(r=Array.isArray(t)?null==(n=t[0])||null==(i=n.extensions)?void 0:i.__relay_subscription_root_id:null==(a=t.extensions)?void 0:a.__relay_subscription_root_id)&&(o=s(o.node,r,o.variables,o.owner)),c(e.lookup(o).data)}},error:u,complete:l}).unsubscribe}}},46025:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(50883)),i=r(93587),a=r(89046),s=r(62482),o=r(83798).getLocalVariables,l=r(38742),u=r(41046),c=r(84848).generateTypeID,d=r(20311),f=u.getReadTimeResolverStorageKey,h=u.getStorageKey,p=u.getModuleOperationKey,_=function(){function e(e,t,r,n,i,a){this._operationLoader=null!=n?n:null,this._operationName=null,this._useExecTimeResolvers=null!=a&&a,this._recordSource=e,this._references=r,this._variables=t,this._shouldProcessClientComponents=i}var t=e.prototype;return t.mark=function(e,t){("Operation"===e.kind||"SplitOperation"===e.kind)&&(this._operationName=e.name),this._traverse(e,t)},t._traverse=function(e,t){this._references.add(t);var r=this._recordSource.get(t);null!=r&&this._traverseSelections(e.selections,r)},t._getVariableValue=function(e){return this._variables.hasOwnProperty(e)||d(!1),this._variables[e]},t._traverseSelections=function(e,t){var r=this;e.forEach(function(n){switch(n.kind){case"ActorChange":r._traverseLink(n.linkedField,t);break;case"LinkedField":n.plural?r._traversePluralLink(n,t):r._traverseLink(n,t);break;case"Condition":!!r._getVariableValue(n.condition)===n.passingValue&&r._traverseSelections(n.selections,t);break;case"InlineFragment":if(null==n.abstractKey){var i=l.getType(t);(null!=i&&i===n.type||i===u.ROOT_TYPE)&&r._traverseSelections(n.selections,t)}else{var s=c(l.getType(t));r._references.add(s),r._traverseSelections(n.selections,t)}break;case"FragmentSpread":var f=r._variables;r._variables=o(r._variables,n.fragment.argumentDefinitions,n.args),r._traverseSelections(n.fragment.selections,t),r._variables=f;break;case"LinkedHandle":var h=a(n,e,r._variables);h.plural?r._traversePluralLink(h,t):r._traverseLink(h,t);break;case"Defer":case"Stream":case"ClientExtension":r._traverseSelections(n.selections,t);break;case"ScalarField":case"ScalarHandle":break;case"TypeDiscriminator":var p=c(l.getType(t));r._references.add(p);break;case"ModuleImport":r._traverseModuleImport(n,t);break;case"ClientComponent":if(!1===r._shouldProcessClientComponents)break;r._traverseSelections(n.fragment.selections,t);break;case"RelayResolver":case"RelayLiveResolver":r._traverseResolverField(n,t);break;case"ClientEdgeToClientObject":r._traverseClientEdgeToClientObject(n,t);break;default:d(!1)}})},t._traverseClientEdgeToClientObject=function(e,t){if(this._useExecTimeResolvers)return void this._traverseLink(e.linkedField,t);var r=this._traverseResolverField(e.backingField,t);if(null!=r){var i=this._recordSource.get(r);if(null!=i)if(e.backingField.isOutputType){var a=s(i);if(null!=a){var o,u=(0,n.default)(a);try{for(u.s();!(o=u.n()).done;){var c=o.value;this._references.add(c)}}catch(e){u.e(e)}finally{u.f()}}}else{var d=e.linkedField,f=d.concreteType;if(null==f)return;if(d.plural){var h=l.getResolverLinkedRecordIDs(i,f);if(null!=h){var p,_=(0,n.default)(h);try{for(_.s();!(p=_.n()).done;){var v=p.value;null!=v&&this._traverse(d,v)}}catch(e){_.e(e)}finally{_.f()}}}else{var g=l.getResolverLinkedRecordID(i,f);null!=g&&this._traverse(d,g)}}}},t._traverseResolverField=function(e,t){if(!this._useExecTimeResolvers){var r=f(e,this._variables),n=l.getLinkedRecordID(t,r);null!=n&&this._references.add(n);var i=e.fragment;return null!=i&&this._traverseSelections([i],t),n}},t._traverseModuleImport=function(e,t){var r=this._operationLoader;null===r&&d(!1);var n=p(e.documentName),a=l.getValue(t,n);if(null!=a){var s=r.get(a);if(null!=s){var u=i(s),c=this._variables;this._variables=o(this._variables,u.argumentDefinitions,e.args),this._traverseSelections(u.selections,t),this._variables=c}}},t._traverseLink=function(e,t){var r=h(e,this._variables),n=l.getLinkedRecordID(t,r);null!=n&&this._traverse(e,n)},t._traversePluralLink=function(e,t){var r=this,n=h(e,this._variables),i=l.getLinkedRecordIDs(t,n);null!=i&&i.forEach(function(t){null!=t&&r._traverse(e,t)})},e}();e.exports={mark:function(e,t,r,n,i,a){var s=t.dataID,o=t.node;new _(e,t.variables,r,n,i,a).mark(o,s)}}},46723:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(69487).getSelector;e.exports=function(e,t){var r={};return Object.keys(e).forEach(function(a){var s,o,l,u=i(e[a],t[a]),c=null!=u&&"PluralReaderSelector"===u.kind?null!=(s=null==(o=u.selectors[0])?void 0:o.owner.variables)?s:{}:null!=(l=null==u?void 0:u.owner.variables)?l:{};r=(0,n.default)((0,n.default)({},r),c)}),r}},47148:(e,t,r)=>{"use strict";var n=r(84367),i=r(26728),a=r(3574),s=r(96540),o=r(69487),l=o.createOperationDescriptor,u=(o.deepFreeze,o.getRequest),c=s.useLayoutEffect,d=s.useState,f=s.useRef,h=s.useMemo,p={rootIsQueryRenderer:!0};e.exports=function(e){var t,r=e.environment,o=e.query,_=e.variables,v=e.render,g=(a((t=s.useRef(_)).current,_)||(t.current=_),t.current),m=h(function(){return l(u(o),g)},[o,g]),y=h(function(){return{environment:r}},[r]),E=f(null),R=d(null)[1],b=f(null);return c(function(){var e=b.current;return function(){e&&e()}},[h(function(){r.check(m);var e=r.lookup(m.fragment);E.current=e.data;var t=r.retain(m),n=r.subscribe(e,function(e){E.current=e.data,R(E.current)}),i=!1;return b.current&&b.current(),b.current=function(){i||(i=!0,b.current=null,t.dispose(),n.dispose())},e},[r,m])]),s.createElement(n.Provider,{value:y},s.createElement(i.Provider,{value:p},v({props:E.current})))}},47161:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(12897)),a=n(r(38742)),s=n(r(53968)),o=n(r(41924));e.exports=function(e,t,r,n,l){var u,c=e.data,d=e.errors,f=s.default.create(),h=a.default.create(t.dataID,r);f.set(t.dataID,h);var p=o.default.normalize(f,t,c,n,d,l);return(0,i.default)((0,i.default)({},p),{},{isFinal:(null==(u=e.extensions)?void 0:u.is_final)===!0})}},47424:e=>{"use strict";var t=new Map,r=1,n=function(){for(var e=new Set,t=0;t<10;++t)e.add(t.toString());return e}();e.exports={intern:function(e,i){if(null==i||e.length{"use strict";var n=(0,r(24994).default)(r(50883)),i=r(90007).loadQuery,a=r(69201),s=r(7058),o=r(96540),l=o.useCallback,u=o.useEffect,c=o.useInsertionEffect,d=o.useRef,f=o.useState,h=r(69487).getRequest,p={kind:"NullQueryReference"};e.exports=function(e,t){var r,o=null!=t?t:p,_=s(),v=a(),g=d(null);null==g.current&&(g.current=new Set([o]));var m=f(function(){return o}),y=m[0],E=m[1],R=f(function(){return o}),b=R[0],S=R[1];o!==b&&(null==(r=g.current)||r.add(o),S(o),E(o));var I=l(function(){if(v.current){var e;null==(e=g.current)||e.add(p),E(p)}},[v]),D=l(function(t,r){if(v.current){var n,a,s=null!=r&&r.hasOwnProperty("__environment")?{fetchPolicy:r.fetchPolicy,networkCacheConfig:r.networkCacheConfig,__nameForWarning:r.__nameForWarning}:r,o=i(null!=(n=null==r?void 0:r.__environment)?n:_,e,t,s);null==(a=g.current)||a.add(o),E(o)}},[_,e,E,v]),C=l(function(e,t){var r,i,a=null!=(r=g.current)?r:new Set,s=(0,n.default)(a);try{for(s.s();!(i=s.n()).done;){var o=i.value;o!==t&&"NullQueryReference"!==o.kind&&(("PreloadableConcreteRequest"===e.kind?void 0!==e.params.metadata.live:void 0!==h(e).params.metadata.live)?o.dispose&&o.dispose():o.releaseQuery&&o.releaseQuery())}}catch(e){s.e(e)}finally{s.f()}},[]),k=d(null);return u(function(){return C(e,y),null!=k.current&&(clearTimeout(k.current),k.current=null),function(){k.current=setTimeout(function(){C(e,null)},3e5)}},[e,y]),c(function(){return function(){k.current&&clearTimeout(k.current),k.current=null,C(e,null)}},[e]),["NullQueryReference"===y.kind?null:y,D,I]}},50172:(e,t,r)=>{"use strict";var n=r(94987).getPromiseForActiveRequest;e.exports=function(e,t,r){var i=[],a=n(e,r);if(null!=a)i=[r];else{var s,o,l,u,c=e.getOperationTracker().getPendingOperationsAffectingOwner(r);i=null!=(l=null==c?void 0:c.pendingOperations)?l:[],a=null!=(u=null==c?void 0:c.promise)?u:null}if(!a)return null;var d=null!=(s=null==(o=i)?void 0:o.map(function(e){return e.node.params.name}).join(","))?s:null;(null==d||0===d.length)&&(d="Unknown pending operation");var f=t.name,h=d===f?"Relay(".concat(d,")"):"Relay(".concat(d,":").concat(f,")");return a.displayName=h,e.__log({name:"pendingoperation.found",fragment:t,fragmentOwner:r,pendingOperations:i}),{promise:a,pendingOperations:i}}},50456:(e,t,r)=>{"use strict";var n=r(84367),i=r(96540),a=i.useMemo;e.exports=function(e){var t=e.children,r=e.environment,s=e.getEnvironmentForActor,o=a(function(){return{environment:r,getEnvironmentForActor:s}},[r,s]);return i.createElement(n.Provider,{value:o},t)}},50883:(e,t,r)=>{var n=r(17122);e.exports=function(e,t){var r="u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=n(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var i=0,a=function(){};return{s:a,n:function(){return i>=e.length?{done:!0}:{done:!1,value:e[i++]}},e:function(e){throw e},f:a}}throw TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var s,o=!0,l=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return o=e.done,e},e:function(e){l=!0,s=e},f:function(){try{o||null==r.return||r.return()}finally{if(l)throw s}}}},e.exports.__esModule=!0,e.exports.default=e.exports},52303:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(94634)),a=n(r(54893)),s=n(r(12475)),o=n(r(28602)),l=n(r(43693)),u=n(r(12897)),c=["componentRef"],d=["componentRef","__relayContext","__rootIsQueryRenderer"],f=["componentRef","__relayContext","__rootIsQueryRenderer"],h=r(65433),p=r(46723),_=r(69874),v=_.getComponentName,g=_.getContainerName,m=r(84367),y=r(69493),E=r(54978).assertRelayContext,R=r(3574),b=r(20311),S=r(96540),I=r(69487),D=I.ConnectionInterface,C=I.Observable,k=I.RelayFeatureFlags,P=I.createFragmentSpecResolver,A=I.createOperationDescriptor,O=I.getDataIDsFromObject,T=I.getRequest,F=I.getVariablesFromObject,x=I.isScalarAndEqual;r(14594);var N="forward";function L(e){return"function"==typeof e?{error:e,complete:e,unsubscribe:function(t){"function"==typeof e&&e()}}:e||{}}e.exports={createContainer:function(e,t,r){return h(e,t,function(e,t){return function(e,t,r){v(e);var n,h,_,I=g(e),w=function(e){var t=null,r=!1;for(var n in e){var i=e[n],a=i.metadata&&i.metadata.connection;void 0!==i.metadata&&(r=!0),a&&(1!==a.length&&b(!1),t&&b(!1),t=(0,u.default)((0,u.default)({},a[0]),{},{fragmentName:n}))}return r&&null===t&&b(!1),t||{}}(t),M=r.getConnectionFromProps||((n=w.path)||b(!1),function(e){for(var t=e[w.fragmentName],r=0;r{"use strict";var n=(0,r(24994).default)(r(50883)),i=r(20311);e.exports=function(){function e(){this._ownersToPendingOperations=new Map,this._pendingOperationsToOwners=new Map,this._ownersToPendingPromise=new Map}var t=e.prototype;return t.update=function(e,t){if(0!==t.size){var r,i=e.identifier,a=new Set,s=(0,n.default)(t);try{for(s.s();!(r=s.n()).done;){var o=r.value.identifier,l=this._ownersToPendingOperations.get(o);null!=l?l.has(i)||(l.set(i,e),a.add(o)):(this._ownersToPendingOperations.set(o,new Map([[i,e]])),a.add(o))}}catch(e){s.e(e)}finally{s.f()}if(0!==a.size){var u,c=this._pendingOperationsToOwners.get(i)||new Set,d=(0,n.default)(a);try{for(d.s();!(u=d.n()).done;){var f=u.value;this._resolveOwnerResolvers(f),c.add(f)}}catch(e){d.e(e)}finally{d.f()}this._pendingOperationsToOwners.set(i,c)}}},t.complete=function(e){var t=e.identifier,r=this._pendingOperationsToOwners.get(t);if(null!=r){var i,a=new Set,s=new Set,o=(0,n.default)(r);try{for(o.s();!(i=o.n()).done;){var l=i.value,u=this._ownersToPendingOperations.get(l);u&&(u.delete(t),u.size>0?s.add(l):a.add(l))}}catch(e){o.e(e)}finally{o.f()}var c,d=(0,n.default)(a);try{for(d.s();!(c=d.n()).done;){var f=c.value;this._resolveOwnerResolvers(f),this._ownersToPendingOperations.delete(f)}}catch(e){d.e(e)}finally{d.f()}var h,p=(0,n.default)(s);try{for(p.s();!(h=p.n()).done;){var _=h.value;this._resolveOwnerResolvers(_)}}catch(e){p.e(e)}finally{p.f()}this._pendingOperationsToOwners.delete(t)}},t._resolveOwnerResolvers=function(e){var t=this._ownersToPendingPromise.get(e);null!=t&&t.resolve(),this._ownersToPendingPromise.delete(e)},t.getPendingOperationsAffectingOwner=function(e){var t,r=e.identifier,n=this._ownersToPendingOperations.get(r);if(null==n||0===n.size)return null;var a=this._ownersToPendingPromise.get(r);if(null!=a)return{promise:a.promise,pendingOperations:a.pendingOperations};var s=new Promise(function(e){t=e});null==t&&i(!1);var o=Array.from(n.values());return this._ownersToPendingPromise.set(r,{promise:s,resolve:t,pendingOperations:o}),{promise:s,pendingOperations:o}},e}()},53141:(e,t,r)=>{"use strict";var n=r(79642),i=r(20311);function a(e){var t=e;return"function"==typeof t?t=t():t.default&&(t=t.default),t}function s(e){var t=a(e);return"object"==typeof t&&null!==t&&t.kind===n.FRAGMENT}function o(e){var t=a(e);return"object"==typeof t&&null!==t&&t.kind===n.REQUEST}function l(e){var t=a(e);return"object"==typeof t&&null!==t&&t.kind===n.UPDATABLE_QUERY}function u(e){var t=a(e);return"object"==typeof t&&null!==t&&t.kind===n.INLINE_DATA_FRAGMENT}function c(e){var t=a(e);return s(t)||i(!1),t}r(14594),e.exports={getFragment:c,getNode:a,getPaginationFragment:function(e){var t,r=c(e),n=null==(t=r.metadata)?void 0:t.refetch,i=null==n?void 0:n.connection;return null===n||"object"!=typeof n||null===i||"object"!=typeof i?null:r},getRefetchableFragment:function(e){var t,r=c(e),n=null==(t=r.metadata)?void 0:t.refetch;return null===n||"object"!=typeof n?null:r},getRequest:function(e){var t=a(e);return o(t)||i(!1),t},getUpdatableQuery:function(e){var t=a(e);return l(t)||i(!1),t},getInlineDataFragment:function(e){var t=a(e);return u(t)||i(!1),t},graphql:function(e){i(!1)},isFragment:s,isRequest:o,isUpdatableQuery:l,isInlineDataFragment:u}},53386:(e,t,r)=>{"use strict";var n=r(7058),i=r(96540),a=i.useEffect,s=i.useRef;e.exports=function(e,t){var r=n(),i=s(null);return a(function(){var n=r.getStore(),a=n.lookupInvalidationState(e),s=n.subscribeToInvalidationState(a,t);return i.current=s,function(){return s.dispose()}},[Array.from(e).sort().join(""),t,r]),{dispose:function(){null!=i.current&&i.current.dispose()}}}},53968:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(50883)),i=r(38742),a=r(21304),s=a.EXISTENT,o=a.NONEXISTENT,l=a.UNKNOWN;e.exports=function(){function e(e){var t=this;this._records=new Map,null!=e&&Object.keys(e).forEach(function(r){var n=e[r],a=i.fromObject(n);t._records.set(r,a)})}e.create=function(t){return new e(t)};var t=e.prototype;return t.clear=function(){this._records=new Map},t.delete=function(e){this._records.set(e,null)},t.get=function(e){return this._records.get(e)},t.getRecordIDs=function(){return Array.from(this._records.keys())},t.getStatus=function(e){return this._records.has(e)?null==this._records.get(e)?o:s:l},t.has=function(e){return this._records.has(e)},t.remove=function(e){this._records.delete(e)},t.set=function(e,t){this._records.set(e,t)},t.size=function(){return this._records.size},t.toJSON=function(){var e,t={},r=(0,n.default)(this._records);try{for(r.s();!(e=r.n()).done;){var a=e.value,s=a[0],o=a[1];t[s]=i.toJSON(o)}}catch(e){r.e(e)}finally{r.f()}return t},e}()},54736:(e,t,r)=>{"use strict";var n=r(8312).stableCopy,i=r(20311);e.exports=function(e,t){var r=null!=e.cacheID?e.cacheID:e.id;return null==r&&i(!1),r+JSON.stringify(n(t))}},54808:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(94634)),a=n(r(54893)),s=n(r(12897)),o=n(r(12475)),l=n(r(28602)),u=n(r(43693)),c=["componentRef","__relayContext","__rootIsQueryRenderer"],d=r(65433),f=r(46723),h=r(69874).getContainerName,p=r(84367),_=r(69493),v=r(54978).assertRelayContext,g=r(3574),m=r(96540),y=r(69487),E=y.Observable,R=y.createFragmentSpecResolver,b=y.createOperationDescriptor,S=y.getDataIDsFromObject,I=y.getRequest,D=y.getVariablesFromObject,C=y.isScalarAndEqual;function k(e,t){return{environment:e,refetch:t}}r(14594),e.exports={createContainer:function(e,t,r){return d(e,t,function(e,t){var n,d;return d=h(e),n=function(n){function h(e){a=n.call(this,e)||this,(0,u.default)((0,o.default)(a),"_handleFragmentDataUpdate",function(){var e=a.state.resolver;a.setState(function(t){return e===t.resolver?{data:t.resolver.resolve()}:null})}),(0,u.default)((0,o.default)(a),"_refetch",function(e,n,i,o){if(a._isUnmounted)return{dispose:function(){}};var l,u=v(a.props.__relayContext).environment,c=f(t,a.props),d="function"==typeof e?e(a._getFragmentVariables()):e;d=(0,s.default)((0,s.default)({},c),d);var h=n?(0,s.default)((0,s.default)({},d),n):d,p=o?{force:!!o.force}:void 0;null!=p&&(null==o?void 0:o.metadata)!=null&&(p.metadata=null==o?void 0:o.metadata);var _="function"==typeof i?{next:i,error:i}:i||{},g=b(I(r),d,p);return(a.state.localVariables=d,a._refetchSubscription&&a._refetchSubscription.unsubscribe(),null!=a._getQueryFetcher().lookupInStore(u,g,null==o?void 0:o.fetchPolicy))?(a.state.resolver.setVariables(h,g.request.node),a.setState(function(e){return{data:e.resolver.resolve(),contextForChildren:{environment:a.props.__relayContext.environment}}},function(){_.next&&_.next(),_.complete&&_.complete()}),{dispose:function(){}}):(a._getQueryFetcher().execute({environment:u,operation:g,preservePreviousReferences:!0}).mergeMap(function(e){return a.state.resolver.setVariables(h,g.request.node),E.create(function(e){return a.setState(function(e){return{data:e.resolver.resolve(),contextForChildren:{environment:a.props.__relayContext.environment}}},function(){e.next(),e.complete()})})}).finally(function(){a._refetchSubscription===l&&(a._refetchSubscription=null)}).subscribe((0,s.default)((0,s.default)({},_),{},{start:function(e){a._refetchSubscription=l=e,_.start&&_.start(e)}})),{dispose:function(){l&&l.unsubscribe()}})});var i,a,l=v(e.__relayContext),c=null!=(i=e.__rootIsQueryRenderer)&&i;a._refetchSubscription=null;var h=R(l,d,t,e,c);return a.state={data:h.resolve(),localVariables:null,prevProps:e,prevPropsContext:l,contextForChildren:l,relayProp:k(l.environment,a._refetch),resolver:h},a._isUnmounted=!1,a}(0,l.default)(h,n);var y=h.prototype;return y.componentDidMount=function(){this._isUnmounted=!1,this._subscribeToNewResolverAndRerenderIfStoreHasChanged()},y.componentDidUpdate=function(e,t){this.state.resolver!==t.resolver?(t.resolver.dispose(),this._queryFetcher&&this._queryFetcher.dispose(),this._refetchSubscription&&this._refetchSubscription.unsubscribe(),this._subscribeToNewResolverAndRerenderIfStoreHasChanged()):this._rerenderIfStoreHasChanged()},h.getDerivedStateFromProps=function(e,r){var n,i=r.prevProps,a=v(e.__relayContext),s=null!=(n=e.__rootIsQueryRenderer)&&n,o=S(t,i),l=S(t,e),u=f(t,i),c=f(t,e),h=r.resolver;if(r.prevPropsContext.environment!==a.environment||!g(u,c)||!g(o,l))return{data:(h=R(a,d,t,e,s)).resolve(),localVariables:null,prevProps:e,prevPropsContext:a,contextForChildren:a,relayProp:k(a.environment,r.relayProp.refetch),resolver:h};r.localVariables||h.setProps(e);var p=h.resolve();return p!==r.data?{data:p,prevProps:e}:null},y.componentWillUnmount=function(){this._isUnmounted=!0,this.state.resolver.dispose(),this._queryFetcher&&this._queryFetcher.dispose(),this._refetchSubscription&&this._refetchSubscription.unsubscribe()},y.shouldComponentUpdate=function(e,r){if(r.data!==this.state.data||r.relayProp!==this.state.relayProp)return!0;for(var n=Object.keys(e),i=0;i{e.exports=function(e,t){if(null==e)return{};var r={};for(var n in e)if(({}).hasOwnProperty.call(e,n)){if(-1!==t.indexOf(n))continue;r[n]=e[n]}return r},e.exports.__esModule=!0,e.exports.default=e.exports},54978:(e,t,r)=>{"use strict";var n=r(10464),i=r(20311);function a(e){return"object"==typeof e&&null!==e&&!Array.isArray(e)&&n(e.environment)}e.exports={assertRelayContext:function(e){return a(e)||i(!1),e},isRelayContext:a}},55199:(e,t,r)=>{"use strict";var n=r(24994).default,i=r(29293).default,a=n(r(50883)),s=r(12006),o=r(94987).getObservableForActiveRequest,l=r(53141).getFragment,u=r(57595).handlePotentialSnapshotErrors,c=r(95814).getSelector,d=r(20311);function f(){return(f=i(function*(e,t,r){try{var n,i,a,s=yield new Promise(function(n,a){i=h(e,t,r).subscribe({next:function(e){"ok"===e.state?n(e.value):"error"===e.state&&a(e.error)}})});return null==(a=i)||a.unsubscribe(),s}catch(e){throw null==(n=i)||n.unsubscribe(),e}})).apply(this,arguments)}function h(e,t,r){var n,i,a,o,u,f,h,v,g,m=l(t),y=c(m,r);switch((null==(g=m.metadata)?void 0:g.hasClientEdges)!=null&&d(!1),null==y&&d(!1),y.kind){case"SingularReaderSelector":return n=e,i=t,a=y,o=n.lookup(a),s.create(function(e){e.next(p(n,i,a.owner,o));var t=n.subscribe(o,function(t){e.next(p(n,i,a.owner,t))});return function(){return t.dispose()}});case"PluralReaderSelector":return u=e,f=t,v=(h=y).selectors.map(function(e){return u.lookup(e)}),s.create(function(e){var t=v.map(function(e,t){return p(u,f,h.selectors[t].owner,e)});e.next(_(t));var r=v.map(function(r,n){return u.subscribe(r,function(r){t[n]=p(u,f,h.selectors[n].owner,r),e.next(_(t))})});return function(){return r.forEach(function(e){return e.dispose()})}})}d(!1)}function p(e,t,r,n){var i=null!=n.missingLiveResolverFields&&n.missingLiveResolverFields.length>0,a=null!=n.missingClientEdges&&n.missingClientEdges.length>0;if(i||a||n.isMissingData&&(null!=o(e,r)||null!=e.getOperationTracker().getPendingOperationsAffectingOwner(r)))return{state:"loading"};try{u(e,n.fieldErrors)}catch(e){return{error:e,state:"error"}}return null==n.data&&d(!1),{state:"ok",value:n.data}}function _(e){var t,r=[],n=(0,a.default)(e);try{for(n.s();!(t=n.n()).done;){var i=t.value;if("ok"!==i.state)return i;r.push(i.value)}}catch(e){n.e(e)}finally{n.f()}return{state:"ok",value:r}}e.exports={observeFragment:h,waitForFragmentData:function(e,t,r){return f.apply(this,arguments)}}},56028:(e,t,r)=>{"use strict";e.exports=function(e){var t=void 0!==r.g?r.g:"u">typeof window?window:void 0,n=t&&t.__RELAY_DEVTOOLS_HOOK__;n&&n.registerEnvironment(e)}},56156:(e,t,r)=>{"use strict";var n,i,a=r(20311);e.exports=function(e){return n||(n=e.createContext(null),i=e),e!==i&&a(!1),n}},56516:(e,t,r)=>{"use strict";var n=r(20311);e.exports=function(e,t){for(var r in t&&"object"==typeof t||n(!1),t)if(t.hasOwnProperty(r)){var i=t[r];i&&("object"==typeof i||"function"==typeof i)||n(!1)}}},56663:(e,t,r)=>{"use strict";var n=r(40937),i=n.VIEWER_ID,a=n.VIEWER_TYPE;e.exports=function(e,t){return t===a&&null==e.id?i:e.id}},57042:e=>{"use strict";e.exports=function(e,t){return function e(t,r,n){if(t===r||"object"!=typeof t||!t||t.constructor!==Object&&!Array.isArray(t)||"object"!=typeof r||!r||r.constructor!==Object&&!Array.isArray(r))return r;var i=!1,a=Array.isArray(t)?t:null,s=Array.isArray(r)?r:null;if(a&&s){var o=n&&!Object.isFrozen(s);i=s.reduce(function(t,r,n){var i=e(a[n],r,o);return i!==s[n]&&o&&(s[n]=i),t&&i===a[n]},!0)&&a.length===s.length}else if(!a&&!s){var l=Object.keys(t),u=Object.keys(r),c=n&&!Object.isFrozen(r);i=u.reduce(function(n,i){var a=e(t[i],r[i],c);return a!==r[i]&&c&&(r[i]=a),n&&a===t[i]},!0)&&l.length===u.length}return i?t:r}(e,t,!0)}},57595:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(12897)),a=n(r(50883)),s=r(20311);function o(e){switch(e.kind){case"relay_resolver.error":case"relay_field_payload.error":return e.shouldThrow&&!e.handled;case"missing_expected_data.throw":case"missing_required_field.throw":return!e.handled;case"missing_required_field.log":case"missing_expected_data.log":return!1;default:throw e.kind,Error("Relay: Unexpected event kind")}}e.exports={handlePotentialSnapshotErrors:function(e,t,r){null!=t&&function(e,t,r){var n,l=(0,a.default)(t);try{for(l.s();!(n=l.n()).done;){var u=n.value;e.relayFieldLogger((0,i.default)((0,i.default)({},u),{},{uiContext:r}))}}catch(e){l.e(e)}finally{l.f()}var c,d=(0,a.default)(t);try{for(d.s();!(c=d.n()).done;){var f=c.value;if(o(f))switch(f.kind){case"relay_resolver.error":throw Error("Relay: Resolver error at path '".concat(f.fieldPath,"' in '").concat(f.owner,"'. Message: ").concat(f.error.message));case"relay_field_payload.error":throw Error("Relay: Unexpected response payload - check server logs for details.");case"missing_expected_data.throw":throw Error("Relay: Missing expected data at path '".concat(f.fieldPath,"' in '").concat(f.owner,"'."));case"missing_required_field.throw":throw Error("Relay: Missing @required value at path '".concat(f.fieldPath,"' in '").concat(f.owner,"'."));case"missing_required_field.log":case"missing_expected_data.log":break;default:f.kind,s(!1)}}}catch(e){d.e(e)}finally{d.f()}}(e,t,r)},eventShouldThrow:o}},58270:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(12897)),a=n(r(43693)),s=r(50172),o=r(57595).handlePotentialSnapshotErrors,l=r(32877),u=r(57042),c=r(884),d=r(32115).createRequestDescriptor,f=r(95814),h=f.areEqualSelectors,p=f.createReaderSelector,_=f.getSelectorsFromObject,v=r(3574),g=r(20311);r(14594);var m=function(){function e(e,t,r,n,i){var s=this;(0,a.default)(this,"_onChange",function(){s._stale=!0,"function"==typeof s._callback&&s._callback()}),this._callback=n,this._context=e,this._data={},this._fragments=t,this._props={},this._resolvers={},this._stale=!1,this._rootIsQueryRenderer=i,this.setProps(r)}var t=e.prototype;return t.dispose=function(){for(var e in this._resolvers)this._resolvers.hasOwnProperty(e)&&R(this._resolvers[e])},t.resolve=function(){if(this._stale){var e,t=this._data;for(var r in this._resolvers)if(this._resolvers.hasOwnProperty(r)){var n=this._resolvers[r],a=t[r];if(n){var s=n.resolve();(e||s!==a)&&((e=e||(0,i.default)({},t))[r]=s)}else{var o=this._props[r],u=void 0!==o?o:null;(e||!l(u,a))&&((e=e||(0,i.default)({},t))[r]=u)}}this._data=e||t,this._stale=!1}return this._data},t.setCallback=function(e,t){this._callback=t,!0===c.ENABLE_CONTAINERS_SUBSCRIBE_ON_COMMIT&&this.setProps(e)},t.setProps=function(e){this._props={};var t=_(this._fragments,e);for(var r in t)if(t.hasOwnProperty(r)){var n=t[r],i=this._resolvers[r];null==n?(null!=i&&i.dispose(),i=null):"PluralReaderSelector"===n.kind?null==i?i=new E(this._context.environment,this._rootIsQueryRenderer,n,null!=this._callback,this._onChange):(i instanceof E||g(!1),i.setSelector(n)):null==i?i=new y(this._context.environment,this._rootIsQueryRenderer,n,null!=this._callback,this._onChange):(i instanceof y||g(!1),i.setSelector(n)),this._props[r]=e[r],this._resolvers[r]=i}this._stale=!0},t.setVariables=function(e,t){for(var r in this._resolvers)if(this._resolvers.hasOwnProperty(r)){var n=this._resolvers[r];n&&n.setVariables(e,t)}this._stale=!0},e}(),y=function(){function e(e,t,r,n,i){var s=this;(0,a.default)(this,"_onChange",function(e){s._data=e.data,s._isMissingData=e.isMissingData,s._fieldErrors=e.fieldErrors,s._callback()});var o=e.lookup(r);this._callback=i,this._data=o.data,this._isMissingData=o.isMissingData,this._fieldErrors=o.fieldErrors,this._environment=e,this._rootIsQueryRenderer=t,this._selector=r,!0===c.ENABLE_CONTAINERS_SUBSCRIBE_ON_COMMIT?n&&(this._subscription=e.subscribe(o,this._onChange)):this._subscription=e.subscribe(o,this._onChange)}var t=e.prototype;return t.dispose=function(){this._subscription&&(this._subscription.dispose(),this._subscription=null)},t.resolve=function(){if(!0===this._isMissingData){var e=s(this._environment,this._selector.node,this._selector.owner),t=null==e?void 0:e.promise;if(null!=t)if(this._rootIsQueryRenderer);else{var r,n=null!=(r=null==e?void 0:e.pendingOperations)?r:[];throw this._environment.__log({name:"suspense.fragment",data:this._data,fragment:this._selector.node,isRelayHooks:!1,isMissingData:this._isMissingData,isPromiseCached:!1,pendingOperations:n}),t}}return o(this._environment,this._fieldErrors),this._data},t.setSelector=function(e){if(!(null!=this._subscription&&h(e,this._selector))){this.dispose();var t=this._environment.lookup(e);this._data=u(this._data,t.data),this._isMissingData=t.isMissingData,this._fieldErrors=t.fieldErrors,this._selector=e,this._subscription=this._environment.subscribe(t,this._onChange)}},t.setVariables=function(e,t){if(!v(e,this._selector.variables)){var r=d(t,e),n=p(this._selector.node,this._selector.dataID,e,r);this.setSelector(n)}},e}(),E=function(){function e(e,t,r,n,i){var s=this;(0,a.default)(this,"_onChange",function(e){s._stale=!0,s._callback()}),this._callback=i,this._data=[],this._environment=e,this._resolvers=[],this._stale=!0,this._rootIsQueryRenderer=t,this._subscribeOnConstruction=n,this.setSelector(r)}var t=e.prototype;return t.dispose=function(){this._resolvers.forEach(R)},t.resolve=function(){if(this._stale){for(var e,t=this._data,r=0;rt.length;)this._resolvers.pop().dispose();for(var r=0;r{"use strict";function t(e){return function(){return e}}var r=function(){};r.thatReturns=t,r.thatReturnsFalse=t(!1),r.thatReturnsTrue=t(!0),r.thatReturnsNull=t(null),r.thatReturnsThis=function(){return this},r.thatReturnsArgument=function(e){return e},e.exports=r},59537:(e,t,r)=>{"use strict";var n=r(12006);e.exports={convertFetch:function(e){return function(t,r,i,a,s){var o=e(t,r,i,a,s);return o instanceof Error?n.create(function(e){return e.error(o)}):n.from(o)}}}},59567:(e,t,r)=>{"use strict";var n=r(82382),i=r(96540).useContext;e.exports=function(){return i(n)}},61798:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(50883)),i=r(99390),a=r(90805),s=r(20311);function o(e){return function(t,r){var o=t.get(r.dataID);if(null!=o){var l=r.handleArgs.connections;null==l&&s(!1);try{c=o.getLinkedRecord(r.fieldKey)}catch(e){}if(!c)try{d=o.getLinkedRecords(r.fieldKey)}catch(e){}if(null!=c||null!=d){var u,c,d,f,h=a.get(),p=h.NODE,_=h.EDGES,v=null!=(u=d)?u:[c],g=(0,n.default)(v);try{for(g.s();!(f=g.n()).done;){var m,y=function(){var r=f.value;if(null==r)return"continue";var a=r.getLinkedRecord("node");if(!a)return"continue";var o,u=a.getDataID(),c=(0,n.default)(l);try{for(c.s();!(o=c.n()).done;){var d=o.value,h=t.get(d);if(null!=h&&!(null==(m=h.getLinkedRecords(_))?void 0:m.some(function(e){var t;return(null==e||null==(t=e.getLinkedRecord(p))?void 0:t.getDataID())===u}))){var v=i.buildConnectionEdge(t,h,r);null==v&&s(!1),e(h,v)}}}catch(e){c.e(e)}finally{c.f()}}();if("continue"===y)continue}}catch(e){g.e(e)}finally{g.f()}}}}}function l(e){return function(t,r){var o=t.get(r.dataID);if(null!=o){var l=r.handleArgs,u=l.connections,c=l.edgeTypeName;null==u&&s(!1),null==c&&s(!1);try{f=o.getLinkedRecord(r.fieldKey)}catch(e){}if(!f)try{h=o.getLinkedRecords(r.fieldKey)}catch(e){}if(null!=f||null!=h){var d,f,h,p,_=a.get(),v=_.NODE,g=_.EDGES,m=null!=(d=h)?d:[f],y=(0,n.default)(m);try{for(y.s();!(p=y.n()).done;){var E,R=function(){var r=p.value;if(null==r)return"continue";var a,o=r.getDataID(),l=(0,n.default)(u);try{for(l.s();!(a=l.n()).done;){var d=a.value,f=t.get(d);if(null!=f&&!(null==(E=f.getLinkedRecords(g))?void 0:E.some(function(e){var t;return(null==e||null==(t=e.getLinkedRecord(v))?void 0:t.getDataID())===o}))){var h=i.createEdge(t,f,r,c);null==h&&s(!1),e(f,h)}}}catch(e){l.e(e)}finally{l.f()}}();if("continue"===R)continue}}catch(e){y.e(e)}finally{y.f()}}}}}r(14594),e.exports={AppendEdgeHandler:{update:o(i.insertEdgeAfter)},DeleteRecordHandler:{update:function(e,t){var r=e.get(t.dataID);if(null!=r){var n=r.getValue(t.fieldKey);"string"==typeof n?e.delete(n):Array.isArray(n)&&n.forEach(function(t){"string"==typeof t&&e.delete(t)})}}},PrependEdgeHandler:{update:o(i.insertEdgeBefore)},AppendNodeHandler:{update:l(i.insertEdgeAfter)},PrependNodeHandler:{update:l(i.insertEdgeBefore)},DeleteEdgeHandler:{update:function(e,t){var r=e.get(t.dataID);if(null!=r){var a=t.handleArgs.connections;null==a&&s(!1);var o=r.getValue(t.fieldKey);(Array.isArray(o)?o:[o]).forEach(function(t){if("string"==typeof t){var r,s=(0,n.default)(a);try{for(s.s();!(r=s.n()).done;){var o=r.value,l=e.get(o);null!=l&&i.deleteNode(l,t)}}catch(e){s.e(e)}finally{s.f()}}})}}}}},62171:e=>{"use strict";e.exports=function(e){"object"==typeof e&&null!=e&&(Array.isArray(e)||e.constructor===Object)&&Object.freeze(e)}},62482:(e,t,r)=>{"use strict";var n=r(38742),i=r(41046).RELAY_RESOLVER_OUTPUT_TYPE_RECORD_IDS,a=r(20311);e.exports=function(e){var t=n.getValue(e,i);return null==t?null:(t instanceof Set||a(!1),t)}},63657:(e,t,r)=>{"use strict";var n=r(41046).ROOT_ID,i=r(40937).VIEWER_ID,a=Symbol.iterator;e.exports=function(e,t){for(var r=e[a](),s=r.next();!s.done;){var o=s.value;if(t.has(o)&&o!==n&&o!==i)return!0;s=r.next()}return!1}},65433:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(94634)),i=r(56516),a=r(69874),s=a.getComponentName,o=a.getContainerName,l=r(84367),u=r(26728),c=r(20311),d=r(96540),f=r(69487).getFragment,h=d.useContext;e.exports=function(e,t,r){var a=o(e);i(s(e),t);var p={};for(var _ in t)p[_]=f(t[_]);var v=r(e,p);function g(e,t){var r,i=h(l);null==i&&c(!1);var a=h(u);return d.createElement(v,(0,n.default)({},e,{__relayContext:i,__rootIsQueryRenderer:null!=(r=null==a?void 0:a.rootIsQueryRenderer)&&r,componentRef:e.componentRef||t}))}return v.displayName=a,g.displayName=a,d.forwardRef(g)}},65922:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(50883)),a=n(r(43693)),s=r(89687),o=s.INTERNAL_ACTOR_IDENTIFIER_DO_NOT_USE,l=s.assertInternalActorIdentifier;r(15519);var u=r(33035),c=r(10090),d=r(56663),f=r(34236),h=f.LiveResolverCache,p=f.RELAY_RESOLVER_LIVE_STATE_SUBSCRIPTION_KEY,_=f.getUpdatedDataIDs,v=r(38742),g=r(5577),m=r(35639),y=r(46025),E=r(5561),R=r(41046),b=r(41046),S=b.ROOT_ID,I=b.ROOT_TYPE,D=r(20311);e.exports=function(){function e(e,t){var r,n,i,s,o,l,c,f,p=this;(0,a.default)(this,"_gcStep",function(){p._gcRun&&(p._gcRun.next().done?p._gcRun=null:p._gcScheduler(p._gcStep))}),this._currentWriteEpoch=0,this._gcHoldCounter=0,this._gcReleaseBufferSize=null!=(r=null==t?void 0:t.gcReleaseBufferSize)?r:10,this._shouldRetainWithinTTL_EXPERIMENTAL=null!=(n=null==t?void 0:t.shouldRetainWithinTTL_EXPERIMENTAL)&&n,this._gcRun=null,this._gcScheduler=null!=(i=null==t?void 0:t.gcScheduler)?i:u,this._getDataID=null!=(s=null==t?void 0:t.getDataID)?s:d,this._globalInvalidationEpoch=null,this._invalidationSubscriptions=new Set,this._invalidatedRecordIDs=new Set,this.__log=null!=(o=null==t?void 0:t.log)?o:null,this._queryCacheExpirationTime=null==t?void 0:t.queryCacheExpirationTime,this._operationLoader=null!=(l=null==t?void 0:t.operationLoader)?l:null,this._optimisticSource=null,this._recordSource=e,this._releaseBuffer=[],this._roots=new Map,this._shouldScheduleGC=!1,this._resolverCache=new h(function(){return p._getMutableRecordSource()},this),this._resolverContext=null==t?void 0:t.resolverContext,this._storeSubscriptions=new E(null==t?void 0:t.log,this._resolverCache,this._resolverContext),this._updatedRecordIDs=new Set,this._shouldProcessClientComponents=null!=(c=null==t?void 0:t.shouldProcessClientComponents)&&c,this._treatMissingFieldsAsNull=null!=(f=null==t?void 0:t.treatMissingFieldsAsNull)&&f,this._actorIdentifier=null==t?void 0:t.actorIdentifier,function(e){if(!e.has(S)){var t=v.create(S,I);e.set(S,t)}}(this._recordSource)}var t=e.prototype;return t.getSource=function(){var e;return null!=(e=this._optimisticSource)?e:this._recordSource},t.getOperationLoader=function(){return this._operationLoader},t._getMutableRecordSource=function(){var e;return null!=(e=this._optimisticSource)?e:this._recordSource},t.getLiveResolverPromise=function(e){return this._resolverCache.getLiveResolverPromise(e)},t.batchLiveStateUpdates=function(e){null!=this.__log&&this.__log({name:"liveresolver.batch.start"});try{this._resolverCache.batchLiveStateUpdates(e)}finally{null!=this.__log&&this.__log({name:"liveresolver.batch.end"})}},t.check=function(e,t){var r,n,i,a,s,u,d,f,h,p,_,v,g,m=e.root,y=this._getMutableRecordSource(),E=this._globalInvalidationEpoch,R=null!=(d=null!=(f=e.request.node.operation.use_exec_time_resolvers)?f:(null==(h=e.request.node.operation.exec_time_resolvers_enabled_provider)?void 0:h.get())===!0)&&d,b=this._roots.get(e.request.identifier),S=null!=b?b.epoch:null;if(null!=E&&(null==S||S<=E))return{status:"stale"};var I=null!=(p=null==t?void 0:t.handlers)?p:[],D=null!=(_=null==t?void 0:t.getSourceForActor)?_:function(e){return l(e),y},C=null!=(v=null==t?void 0:t.getTargetForActor)?v:function(e){return l(e),y};return r=c.check(D,C,null!=(g=null==t?void 0:t.defaultActorIdentifier)?g:o,m,I,this._operationLoader,this._getDataID,this._shouldProcessClientComponents,this.__log,R),n=S,i=null==b?void 0:b.fetchTime,a=this._queryCacheExpirationTime,s=r.mostRecentlyInvalidatedAt,u=r.status,"number"==typeof s&&(null==n||s>n)?{status:"stale"}:"missing"===u?{status:"missing"}:null!=i&&null!=a&&i<=Date.now()-a?{status:"stale"}:{status:"available",fetchTime:null!=i?i:null}},t.retain=function(e){var t=this,r=e.request.identifier,n=!1,i=this._roots.get(r);return null!=i?(0===i.refCount&&(this._releaseBuffer=this._releaseBuffer.filter(function(e){return e!==r})),i.refCount+=1):this._roots.set(r,{operation:e,refCount:1,epoch:null,fetchTime:null}),{dispose:function(){if(!n){n=!0;var e=t._roots.get(r);if(null!=e&&(e.refCount--,0===e.refCount)){var i=t._queryCacheExpirationTime;if(null!=e.fetchTime&&null!=i&&e.fetchTime<=Date.now()-i)t._shouldRetainWithinTTL_EXPERIMENTAL||t._roots.delete(r),t.scheduleGC();else if(t._releaseBuffer.push(r),t._releaseBuffer.length>t._gcReleaseBufferSize){var a=t._releaseBuffer.shift();t._shouldRetainWithinTTL_EXPERIMENTAL||t._roots.delete(a),t.scheduleGC()}}}}}},t.lookup=function(e){var t=this.__log;null!=t&&t({name:"store.lookup.start",selector:e});var r=this.getSource(),n=m.read(r,e,this._resolverCache,this._resolverContext);return null!=t&&t({name:"store.lookup.end",selector:e}),n},t.notify=function(e,t){var r=this,n=this.__log;null!=n&&n({name:"store.notify.start",sourceOperation:e}),this._currentWriteEpoch++,!0===t&&(this._globalInvalidationEpoch=this._currentWriteEpoch),this._resolverCache.invalidateDataIDs(this._updatedRecordIDs);var i=this.getSource(),a=[];if(this._storeSubscriptions.updateSubscriptions(i,this._updatedRecordIDs,a,e),this._invalidationSubscriptions.forEach(function(e){r._updateInvalidationSubscription(e,!0===t)}),null!=e){var s=e.request.identifier,o=this._roots.get(s);if(null!=o)o.epoch=this._currentWriteEpoch,o.fetchTime=Date.now();else if("query"===e.request.node.params.operationKind&&this._gcReleaseBufferSize>0&&this._releaseBuffer.length0&&(e._gcHoldCounter--,0===e._gcHoldCounter&&e._shouldScheduleGC&&(e.scheduleGC(),e._shouldScheduleGC=!1))}}},t.toJSON=function(){return"RelayModernStore()"},t.getEpoch=function(){return this._currentWriteEpoch},t.__getUpdatedRecordIDs=function(){return this._updatedRecordIDs},t.lookupInvalidationState=function(e){var t=this,r=new Map;return e.forEach(function(e){var n,i=t.getSource().get(e);r.set(e,null!=(n=v.getInvalidationEpoch(i))?n:null)}),r.set("global",this._globalInvalidationEpoch),{dataIDs:e,invalidations:r}},t.checkInvalidationState=function(e){var t=this.lookupInvalidationState(e.dataIDs).invalidations,r=e.invalidations;if(t.get("global")!==r.get("global"))return!0;var n,a=(0,i.default)(e.dataIDs);try{for(a.s();!(n=a.n()).done;){var s=n.value;if(t.get(s)!==r.get(s))return!0}}catch(e){a.e(e)}finally{a.f()}return!1},t.subscribeToInvalidationState=function(e,t){var r=this,n={callback:t,invalidationState:e};return this._invalidationSubscriptions.add(n),{dispose:function(){r._invalidationSubscriptions.delete(n)}}},t._updateInvalidationSubscription=function(e,t){var r=this,n=e.callback,i=e.invalidationState.dataIDs;(t||i.some(function(e){return r._invalidatedRecordIDs.has(e)}))&&n()},t.snapshot=function(){null!=this._optimisticSource&&D(!1);var e=this.__log;null!=e&&e({name:"store.snapshot"}),this._storeSubscriptions.snapshotSubscriptions(this.getSource()),this._gcRun&&(this._gcRun=null,this._shouldScheduleGC=!0),this._optimisticSource=g.create(this.getSource())},t.restore=function(){var e=this._optimisticSource;e||D(!1);var t=this.__log;null!=t&&t({name:"store.restore"});var r=g.getOptimisticRecordIDs(e);this._resolverCache.unsubscribeFromLiveResolverRecords(r),this._optimisticSource=null,this._shouldScheduleGC&&this.scheduleGC(),this._storeSubscriptions.restoreSubscriptions(),this._resolverCache.invalidateResolverRecords(r)},t.scheduleGC=function(){if(this._gcHoldCounter>0){this._shouldScheduleGC=!0;return}this._gcRun||(this._gcRun=this._collect(),this._gcScheduler(this._gcStep))},t.__gc=function(){if(null==this._optimisticSource)for(var e=this._collect();!e.next().done;);},t._collect=function*(){if(!this._shouldRetainWithinTTL_EXPERIMENTAL||null!=this._queryCacheExpirationTime){var e=this.__log;e:for(;;){null!=e&&e({name:"store.gc.start"});var t,r=this._currentWriteEpoch,n=new Set,a=(0,i.default)(this._roots.entries());try{for(a.s();!(t=a.n()).done;){var s,o,l,u=t.value,c=u[0],d=u[1],f=d.operation,h=d.refCount,_=d.fetchTime;if(this._shouldRetainWithinTTL_EXPERIMENTAL){var g=this._queryCacheExpirationTime;if(null==g&&D(!1),(null==_||_<=Date.now()-g)&&0===h&&!this._releaseBuffer.includes(c))continue}var m=f.root,E=null!=(s=null!=(o=f.request.node.operation.use_exec_time_resolvers)?o:(null==(l=f.request.node.operation.exec_time_resolvers_enabled_provider)?void 0:l.get())===!0)&&s;if(y.mark(this._recordSource,m,n,this._operationLoader,this._shouldProcessClientComponents,E),yield,r!==this._currentWriteEpoch){null!=e&&e({name:"store.gc.interrupted"});continue e}}}catch(e){a.e(e)}finally{a.f()}for(var R=this._recordSource.getRecordIDs(),b=0;b{"use strict";var n=r(95814),i=n.getDataIDsFromFragment,a=n.getSelector,s=n.getVariablesFromFragment,o=r(34526),l=r(884),u=r(8312).stableCopy,c=r(47424).intern;e.exports=function(e,t){var r=a(e,t),n=null==r?"null":"SingularReaderSelector"===r.kind?r.owner.identifier:"["+r.selectors.map(function(e){return e.owner.identifier}).join(",")+"]",d=s(e,t),f=i(e,t);if(l.ENABLE_GETFRAGMENTIDENTIFIER_OPTIMIZATION){var h=void 0===f?"missing":null==f?"null":Array.isArray(f)?"["+f.join(",")+"]":f;return h=l.STRING_INTERN_LEVEL<=1?h:c(h,l.MAX_DATA_ID_LENGTH),n+"/"+e.name+"/"+(null==d||o(d)?"{}":JSON.stringify(u(d)))+"/"+h}var p,_=null!=(p=JSON.stringify(f))?p:"missing";return _=l.STRING_INTERN_LEVEL<=1?_:c(_,l.MAX_DATA_ID_LENGTH),n+"/"+e.name+"/"+JSON.stringify(u(d))+"/"+_}},68975:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(73720);e.exports=function(e,t,r){return i(e,t,(0,n.default)((0,n.default)({},r),{},{fetchPolicy:"store-only"}))}},69201:(e,t,r)=>{"use strict";var n=r(96540),i=n.useEffect,a=n.useRef;e.exports=function(){var e=a(!0);return i(function(){return e.current=!0,function(){e.current=!1}},[]),e}},69487:(e,t,r)=>{e.exports=r(87055)},69493:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(43693)),i=r(20311),a=r(69487),s=a.__internal.fetchQuery,o=a.createOperationDescriptor,l=a.isRelayModernEnvironment;e.exports=function(){function e(e){(0,n.default)(this,"_selectionReferences",[]),(0,n.default)(this,"_didFetchFinish",!1),null!=e&&(this._cacheSelectionReference=e.cacheSelectionReference,this._selectionReferences=e.selectionReferences)}var t=e.prototype;return t.getSelectionReferences=function(){return{cacheSelectionReference:this._cacheSelectionReference,selectionReferences:this._selectionReferences}},t.lookupInStore=function(e,t,r){return("store-and-network"===r||"store-or-network"===r)&&"available"===e.check(t).status?(this._retainCachedOperation(e,t),e.lookup(t.fragment)):null},t.getFetchResult=function(){return this._didFetchFinish?null!=this._error?{error:this._error}:null!=this._snapshot?{snapshot:this._snapshot}:void 0:null},t.execute=function(e){var t=this,r=e.environment,n=e.operation,i=e.preservePreviousReferences,a=void 0!==i&&i,o=r.retain(n),u=function(){t._selectionReferences=t._selectionReferences.concat(o)},c=function(){a||t.disposeSelectionReferences(),t._selectionReferences=t._selectionReferences.concat(o)},d=function(){t._selectionReferences=t._selectionReferences.concat(o)};return l(r)?s(r,n).do({error:u,complete:c,unsubscribe:d}):r.execute({operation:n}).do({error:u,complete:c,unsubscribe:d})},t.setOnDataChange=function(e){this._fetchOptions||i(!1),"function"==typeof e&&(this._fetchOptions.onDataChangeCallbacks=this._fetchOptions.onDataChangeCallbacks||[],this._fetchOptions.onDataChangeCallbacks.push(e),this._didFetchFinish&&(null!=this._error?e({error:this._error}):null!=this._snapshot&&e({snapshot:this._snapshot})))},t.fetch=function(e,t){var r,n=this,i=e.environment,a=e.operation,s=e.onDataChange,l=!1;this.disposeRequest();var u=this._fetchOptions&&this._fetchOptions.onDataChangeCallbacks;this._fetchOptions={environment:i,onDataChangeCallbacks:u||[],operation:a},s&&-1===this._fetchOptions.onDataChangeCallbacks.indexOf(s)&&this._fetchOptions.onDataChangeCallbacks.push(s);var c=t?o(a.request.node,a.request.variables,t):a,d=this.execute({environment:i,operation:c}).finally(function(){n._pendingRequest=null}).subscribe({next:function(){n._didFetchFinish=!0,n._error=null,n._onQueryDataAvailable({notifyFirstResult:l})},error:function(e){n._didFetchFinish=!0,n._error=e,n._snapshot=null;var t=n._fetchOptions&&n._fetchOptions.onDataChangeCallbacks;l?t&&t.forEach(function(t){t({error:e})}):r=e}});if(this._pendingRequest={dispose:function(){d.unsubscribe()}},l=!0,r)throw r;return this._snapshot},t.retry=function(e){return this._fetchOptions||i(!1),this.fetch({environment:this._fetchOptions.environment,operation:this._fetchOptions.operation,onDataChange:null},e)},t.dispose=function(){this.disposeRequest(),this.disposeSelectionReferences()},t.disposeRequest=function(){this._error=null,this._snapshot=null,this._pendingRequest&&this._pendingRequest.dispose(),this._rootSubscription&&(this._rootSubscription.dispose(),this._rootSubscription=null)},t._retainCachedOperation=function(e,t){this._disposeCacheSelectionReference(),this._cacheSelectionReference=e.retain(t)},t._disposeCacheSelectionReference=function(){this._cacheSelectionReference&&this._cacheSelectionReference.dispose(),this._cacheSelectionReference=null},t.disposeSelectionReferences=function(){this._disposeCacheSelectionReference(),this._selectionReferences.forEach(function(e){return e.dispose()}),this._selectionReferences=[]},t._onQueryDataAvailable=function(e){var t=this,r=e.notifyFirstResult;this._fetchOptions||i(!1);var n=this._fetchOptions,a=n.environment,s=n.onDataChangeCallbacks,o=n.operation;if(!this._snapshot&&(this._snapshot=a.lookup(o.fragment),this._rootSubscription=a.subscribe(this._snapshot,function(e){if(null!=t._fetchOptions){var r=t._fetchOptions.onDataChangeCallbacks;Array.isArray(r)&&r.forEach(function(t){return t({snapshot:e})})}}),this._snapshot&&r&&Array.isArray(s))){var l=this._snapshot;s.forEach(function(e){return e({snapshot:l})})}},e}()},69826:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(41046),a=i.getModuleComponentKey,s=i.getModuleOperationKey;e.exports=function(e,t,r,i){var o=(0,n.default)({},i);return o[a(e)]=r,o[s(e)]=t,o}},69874:e=>{"use strict";function t(e){return e.displayName||e.name||"Component"}e.exports={getComponentName:t,getContainerName:function(e){return"Relay("+t(e)+")"}}},69981:(e,t,r)=>{"use strict";var n=r(34556),i=r(59537).convertFetch,a=r(20311);e.exports={create:function(e,t){var r=i(e);return{execute:function(e,i,s,o,l){var u=n(i,e.providedVariables);if("subscription"===e.operationKind)return t||a(!1),o&&a(!1),t(e,u,s);var c=s.poll;return null!=c?(o&&a(!1),r(e,u,{force:!0}).poll(c)):r(e,u,s,o,l)}}}}},70079:e=>{e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=Array(t);r{"use strict";var n=r(20311),i=function(){function e(e){this._capacity=e,this._capacity>0||n(!1),this._map=new Map}var t=e.prototype;return t.set=function(e,t){if(this._map.delete(e),this._map.set(e,t),this._map.size>this._capacity){var r=this._map.keys().next();r.done||this._map.delete(r.value)}},t.get=function(e){var t=this._map.get(e);return null!=t&&(this._map.delete(e),this._map.set(e,t)),t},t.has=function(e){return this._map.has(e)},t.delete=function(e){this._map.delete(e)},t.size=function(){return this._map.size},t.capacity=function(){return this._capacity-this._map.size},t.clear=function(){this._map.clear()},e}();e.exports={create:function(e){return new i(e)}}},71100:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(13635),a=r(31503).getQueryResourceForEnvironment,s=r(15350),o=r(37797),l=r(69201),u=r(6505),c=r(7058),d=r(20311),f=r(96540),h=f.useCallback,p=f.useContext,_=f.useReducer,v=r(69487),g=v.__internal.fetchQuery,m=v.createOperationDescriptor,y=v.getFragmentIdentifier,E=v.getRefetchMetadata,R=v.getSelector,b=v.getValueAtPath;function S(e,t){switch(t.type){case"refetch":var r;return(0,n.default)((0,n.default)({},e),{},{fetchPolicy:t.fetchPolicy,mirroredEnvironment:null!=(r=t.refetchEnvironment)?r:e.mirroredEnvironment,onComplete:t.onComplete,refetchEnvironment:t.refetchEnvironment,refetchQuery:t.refetchQuery,renderPolicy:t.renderPolicy});case"reset":return{fetchPolicy:void 0,mirroredEnvironment:t.environment,mirroredFragmentIdentifier:t.fragmentIdentifier,onComplete:void 0,refetchQuery:null,renderPolicy:void 0};default:throw t.type,Error("useRefetchableFragmentNode: Unexpected action type")}}r(14594),e.exports=function(e,t,r){var f,v,I,D,C,k,P,A,O,T,F,x=c(),N=E(e,r),L=N.refetchableRequest,w=N.fragmentRefPathInResponse,M=N.identifierInfo,V=y(e,t),U=_(S,{fetchPolicy:void 0,mirroredEnvironment:x,mirroredFragmentIdentifier:V,onComplete:void 0,refetchEnvironment:null,refetchQuery:null,renderPolicy:void 0}),q=U[0],j=U[1],Q=q.fetchPolicy,K=q.mirroredEnvironment,B=q.mirroredFragmentIdentifier,G=q.onComplete,Y=q.refetchEnvironment,H=q.refetchQuery,z=q.renderPolicy,W=null!=Y?Y:x,X=a(W),J=p(i),$=W!==K||V!==B,Z=u(L),ee=Z[0],et=Z[1],er=Z[2],en=t;if($)j({type:"reset",environment:W,fragmentIdentifier:V}),er();else if(null!=H&&null!=ee){var ei=function(e){G&&G(null!=e?e:null)},ea=null!=ee.source?ee.source:g(W,H),es=J.wrapPrepareQueryResource(function(){return X.prepare(H,ea,Q,z,{error:ei,complete:function(){ei()}},ee.fetchKey,J)}),eo=s(W,es.fragmentNode,es.fragmentRef,r).data;null==eo&&d(!1),en=b(eo,w)}var el=o(e,en,r),eu=(f=j,v=er,I=el,D=V,C=e,k=M,P=et,A=t,O=L,T=l(),h(function(e,t){if(!0!==T.current)return{dispose:function(){}};var r,i,a,s,o,l,u=null==t?void 0:t.__environment,c=null==t?void 0:t.fetchPolicy,d=null==t?void 0:t.UNSTABLE_renderPolicy,h=null==t?void 0:t.onComplete,p=R(C,A);null==p?(r={},i={}):"PluralReaderSelector"===p.kind?(r=null!=(a=null==(s=p.selectors[0])?void 0:s.owner.variables)?a:{},i=null!=(o=null==(l=p.selectors[0])?void 0:l.variables)?o:{}):(r=p.owner.variables,i=p.variables);var _=(0,n.default)((0,n.default)((0,n.default)({},r),i),e);null==k||e.hasOwnProperty(k.identifierQueryVariableName)||(_[k.identifierQueryVariableName]=F);var g=m(O,_,{force:!0});return P(g.request.variables,{fetchPolicy:c,__environment:u,__nameForWarning:"refetch"}),f({type:"refetch",fetchPolicy:c,onComplete:h,refetchEnvironment:u,refetchQuery:g,renderPolicy:d}),{dispose:v}},[D,f,v,F=(null==k?void 0:k.identifierField)!=null&&null!=I&&"object"==typeof I?I[k.identifierField]:null,P]));return{fragmentData:el,fragmentRef:en,refetch:eu}}},71517:(e,t,r)=>{"use strict";var n=r(71100),i=r(40976);r(96540).useDebugValue;var a=r(69487).getFragment;e.exports=function(e,t){var r=a(e);i(r,"first argument of useRefetchableFragment()");var s=n(r,t,"useRefetchableFragment()");return[s.fragmentData,s.refetch]}},72226:(e,t,r)=>{"use strict";var n=r(53141).getFragment,i=r(95814).getVariablesFromFragment,a=r(41046).ID_KEY,s=r(75780).createUpdatableProxy,o=r(20311);e.exports={readUpdatableFragment:function(e,t,r,l){var u=n(e),c=i(u,t),d=t[a],f=r.get(d);return null==f&&o(!1),{updatableData:s(f,c,u.selections,r,l)}}}},73720:(e,t,r)=>{"use strict";var n=r(7672),i=r(33616),a=r(7058),s=r(69487).__internal.fetchQuery;e.exports=function(e,t,r){var o=a(),l=i(e,t,r&&r.networkCacheConfig?r.networkCacheConfig:{force:!0});return n({componentDisplayName:"useLazyLoadQuery()",fetchKey:null==r?void 0:r.fetchKey,fetchObservable:s(o,l),fetchPolicy:null==r?void 0:r.fetchPolicy,query:l,renderPolicy:null==r?void 0:r.UNSTABLE_renderPolicy})}},73738:e=>{function t(r){return e.exports=t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e.exports.__esModule=!0,e.exports.default=e.exports,t(r)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},75780:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(50883)),i=r(41046).getArgumentValues,a=["id","__id","__typename","js"];e.exports={createUpdatableProxy:function(e,t,r,s,o){var l={};return function e(t,r,s,o,l,u){var c,d,f,h,p=(0,n.default)(o);try{for(p.s();!(h=p.n()).done;)!function(){var o=h.value;switch(o.kind){case"LinkedField":o.plural?Object.defineProperty(t,null!=(c=o.alias)?c:o.name,{get:function(t,r,a,s,o){return function(){var l,u=i(null!=(l=t.args)?l:[],r),c=a.getLinkedRecords(t.name,u);return(void 0===c&&(c=function(e,t,r,i,a){var s,o=(0,n.default)(a);try{for(o.s();!(s=o.n()).done;){var l=s.value;if("pluralLinked"===l.kind){var u=l.handle(e,r,t,i);if(null!=u)return u.map(function(e){if(null!=e)return i.get(e)})}}}catch(e){o.e(e)}finally{o.f()}}(t,u,a,s,o)),null!=c)?c.map(function(n){if(null==n)return n;var i={};return e(i,n,r,t.selections,s,o),i}):c}}(o,s,r,l,u),set:function(e,t,r,n){return function(a){var s,o=i(null!=(s=e.args)?s:[],t);if(null==a)throw Error("Do not assign null to plural linked fields; assign an empty array instead.");var l=a.map(function(e){if(null==e)throw Error("When assigning an array of items, none of the items should be null or undefined.");var t=e.__id;if(null==t)throw Error("The __id field must be present on each item passed to the setter. This indicates a bug in Relay.");var r=n.get(t);if(null==r)throw Error("Did not find item with data id ".concat(t," in the store."));return r});r.setLinkedRecords(l,e.name,o)}}(o,s,r,l)}):Object.defineProperty(t,null!=(d=o.alias)?d:o.name,{get:function(t,r,a,s,o){return function(){var l,u=i(null!=(l=t.args)?l:[],r),c=a.getLinkedRecord(t.name,u);if(void 0===c&&(c=function(e,t,r,i,a){var s,o=(0,n.default)(a);try{for(o.s();!(s=o.n()).done;){var l=s.value;if("linked"===l.kind){var u=l.handle(e,r,t,i);if(null!=u)return i.get(u)}}}catch(e){o.e(e)}finally{o.f()}}(t,u,a,s,o)),null==c)return c;var d={};return e(d,c,r,t.selections,s,o),d}}(o,s,r,l,u),set:function(e,t,r,n){return function(a){var s,o=i(null!=(s=e.args)?s:[],t);if(null==a)r.setValue(a,e.name,o);else{var l=a.__id;if(null==l)throw Error("The __id field must be present on the argument. This indicates a bug in Relay.");var u=n.get(l);if(null==u)throw Error("Did not find item with data id ".concat(l," in the store."));r.setLinkedRecord(u,e.name,o)}}}(o,s,r,l)});break;case"ScalarField":var p=null!=(f=o.alias)?f:o.name;Object.defineProperty(t,p,{get:function(){var e,t=i(null!=(e=o.args)?e:[],s),a=r.getValue(o.name,t);return null==a&&(a=function(e,t,r,i,a){var s,o=(0,n.default)(a);try{for(o.s();!(s=o.n()).done;){var l=s.value;if("scalar"===l.kind){var u=l.handle(e,r,t,i);if(void 0!==u)return u}}}catch(e){o.e(e)}finally{o.f()}}(o,t,r,l,u)),a},set:a.includes(o.name)?void 0:function(e){var t,n=i(null!=(t=o.args)?t:[],s);r.setValue__UNSAFE(e,o.name,n)}});break;case"InlineFragment":r.getType()===o.type&&e(t,r,s,o.selections,l,u);break;case"ClientExtension":e(t,r,s,o.selections,l,u);break;case"FragmentSpread":break;case"Condition":case"ActorChange":case"InlineDataFragmentSpread":case"AliasedInlineFragmentSpread":case"ClientEdgeToClientObject":case"ClientEdgeToServerObject":case"Defer":case"ModuleImport":case"RequiredField":case"CatchField":case"Stream":case"RelayResolver":case"RelayLiveResolver":throw Error("Encountered an unexpected ReaderSelection variant in RelayRecordSourceProxy. This indicates a bug in Relay.");default:throw o.kind,Error("Encountered an unexpected ReaderSelection variant in RelayRecordSourceProxy. This indicates a bug in Relay.")}}()}catch(e){p.e(e)}finally{p.f()}}(l,e,t,r,s,o),l}}},77650:(e,t,r)=>{"use strict";var n=r(84895).generateClientID,i=r(41046).getStableStorageKey,a=r(20311);e.exports=function(){function e(e,t,r){this._dataID=r,this._mutator=t,this._source=e}var t=e.prototype;return t.copyFieldsFrom=function(e){this._mutator.copyFields(e.getDataID(),this._dataID)},t.getDataID=function(){return this._dataID},t.getType=function(){var e=this._mutator.getType(this._dataID);return null==e&&a(!1),e},t.getValue=function(e,t){var r=i(e,t);return this._mutator.getValue(this._dataID,r)},t.setValue=function(e,t,r,n){return function e(t){return null==t||"object"!=typeof t||Array.isArray(t)&&t.every(e)}(e)||a(!1),this.setValue__UNSAFE(e,t,r,n)},t.getErrors=function(e,t){var r=i(e,t);return this._mutator.getErrors(this._dataID,r)},t.setValue__UNSAFE=function(e,t,r,n){var a=i(t,r);return this._mutator.setValue(this._dataID,a,e),null!=n&&(0===n.length?this._mutator.setErrors(this._dataID,a):this._mutator.setErrors(this._dataID,a,n)),this},t.getLinkedRecord=function(e,t){var r=i(e,t),n=this._mutator.getLinkedRecordID(this._dataID,r);return null!=n?this._source.get(n):n},t.setLinkedRecord=function(t,r,n){t instanceof e||a(!1);var s=i(r,n),o=t.getDataID();return this._mutator.setLinkedRecordID(this._dataID,s,o),this},t.getOrCreateLinkedRecord=function(e,t,r){var a=this.getLinkedRecord(e,r);if(!a){var s,o=i(e,r),l=n(this.getDataID(),o);a=null!=(s=this._source.get(l))?s:this._source.create(l,t),this.setLinkedRecord(a,e,r)}return a},t.getLinkedRecords=function(e,t){var r=this,n=i(e,t),a=this._mutator.getLinkedRecordIDs(this._dataID,n);return null==a?a:a.map(function(e){return null!=e?r._source.get(e):e})},t.setLinkedRecords=function(e,t,r){Array.isArray(e)||a(!1);var n=i(t,r),s=e.map(function(e){return e&&e.getDataID()});return this._mutator.setLinkedRecordIDs(this._dataID,n,s),this},t.invalidateRecord=function(){this._source.markIDForInvalidation(this._dataID)},e}()},77736:(e,t,r)=>{var n=r(73738).default,i=r(89045);e.exports=function(e){var t=i(e,"string");return"symbol"==n(t)?t:t+""},e.exports.__esModule=!0,e.exports.default=e.exports},78210:(e,t,r)=>{"use strict";var n=r(20311),i=r(69487),a=i.ConnectionInterface,s=i.getValueAtPath;e.exports=function(e,t,r,i){var o,l,u,c=a.get(),d=c.EDGES,f=c.PAGE_INFO,h=c.HAS_NEXT_PAGE,p=c.HAS_PREV_PAGE,_=c.END_CURSOR,v=c.START_CURSOR,g=s(r,i);if(null==g)return{cursor:null,hasMore:!1};"object"!=typeof g&&n(!1);var m=g[d],y=g[f];if(null==m||null==y)return{cursor:null,hasMore:!1};Array.isArray(m)||n(!1),"object"!=typeof y&&n(!1);var E="forward"===e?null!=(o=y[_])?o:null:null!=(l=y[v])?l:null;return null!==E&&"string"!=typeof E&&n(!1),u="forward"===e?null!=E&&!0===y[h]:null!=E&&!0===y[p],{cursor:E,hasMore:u}}},79115:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(43693)),a=n(r(12897)),s=r(20311);r(14594),e.exports=function(e,t,r,n,o,l){var u=l.backward,c=l.forward;if("backward"===e){(null==u||null==u.count||null==u.cursor)&&s(!1);var d,f,h=(0,a.default)((0,a.default)((0,a.default)({},n),o),{},(f={},(0,i.default)(f,u.cursor,r),(0,i.default)(f,u.count,t),f));return c&&c.cursor&&(h[c.cursor]=null),c&&c.count&&(h[c.count]=null),h}(null==c||null==c.count||null==c.cursor)&&s(!1);var p=(0,a.default)((0,a.default)((0,a.default)({},n),o),{},(d={},(0,i.default)(d,c.cursor,r),(0,i.default)(d,c.count,t),d));return u&&u.cursor&&(p[u.cursor]=null),u&&u.count&&(p[u.count]=null),p}},79233:(e,t,r)=>{"use strict";var n=r(5580),i=r(20311);e.exports=function(e,t){var r,a,s=n(e,t),o=s.refetchableRequest,l=s.refetchMetadata,u=l.connection;null==u&&i(!1);var c=u.path,d=(null!=(r=null==(a=e.metadata)?void 0:a.connection)?r:[])[0];null==d&&i(!1);var f=l.identifierInfo;return(null==f?void 0:f.identifierField)!=null&&"string"!=typeof f.identifierField&&i(!1),{connectionPathInFragmentData:c,identifierField:null==f?void 0:f.identifierField,paginationRequest:o,paginationMetadata:u,stream:!0===d.stream}}},79642:e=>{"use strict";e.exports={ACTOR_CHANGE:"ActorChange",CATCH_FIELD:"CatchField",CONDITION:"Condition",CLIENT_COMPONENT:"ClientComponent",CLIENT_EDGE_TO_SERVER_OBJECT:"ClientEdgeToServerObject",CLIENT_EDGE_TO_CLIENT_OBJECT:"ClientEdgeToClientObject",CLIENT_EXTENSION:"ClientExtension",DEFER:"Defer",CONNECTION:"Connection",FRAGMENT:"Fragment",FRAGMENT_SPREAD:"FragmentSpread",INLINE_DATA_FRAGMENT_SPREAD:"InlineDataFragmentSpread",INLINE_DATA_FRAGMENT:"InlineDataFragment",INLINE_FRAGMENT:"InlineFragment",LINKED_FIELD:"LinkedField",LINKED_HANDLE:"LinkedHandle",LITERAL:"Literal",LIST_VALUE:"ListValue",LOCAL_ARGUMENT:"LocalArgument",MODULE_IMPORT:"ModuleImport",ALIASED_FRAGMENT_SPREAD:"AliasedFragmentSpread",ALIASED_INLINE_FRAGMENT_SPREAD:"AliasedInlineFragmentSpread",RELAY_RESOLVER:"RelayResolver",RELAY_LIVE_RESOLVER:"RelayLiveResolver",REQUIRED_FIELD:"RequiredField",OBJECT_VALUE:"ObjectValue",OPERATION:"Operation",REQUEST:"Request",ROOT_ARGUMENT:"RootArgument",SCALAR_FIELD:"ScalarField",SCALAR_HANDLE:"ScalarHandle",SPLIT_OPERATION:"SplitOperation",STREAM:"Stream",TYPE_DISCRIMINATOR:"TypeDiscriminator",UPDATABLE_QUERY:"UpdatableQuery",VARIABLE:"Variable"}},81581:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(12897)),a=n(r(50883)),s=n(r(41132)),o=r(31503).getQueryResourceForEnvironment,l=r(7058),u=r(59567),c=r(20311),d=r(96540),f=(d.useDebugValue,d.useEffect),h=d.useMemo,p=d.useRef,_=d.useState,v=r(69487),g=v.__internal,m=g.fetchQuery,y=g.getPromiseForActiveRequest,E=v.RelayFeatureFlags,R=v.areEqualSelectors,b=v.createOperationDescriptor,S=v.getPendingOperationsForFragment,I=v.getSelector,D=v.getVariablesFromFragment,C=v.handlePotentialSnapshotErrors,k=v.recycleNodesInto;function P(e,t){if("bailout"===t.kind)return null;var r=e.getStore().getEpoch();if(r===t.epoch)return null;if("singular"===t.kind){var n=e.lookup(t.snapshot.selector),i=k(t.snapshot.data,n.data),a={data:i,isMissingData:n.isMissingData,missingClientEdges:n.missingClientEdges,missingLiveResolverFields:n.missingLiveResolverFields,seenRecords:n.seenRecords,selector:n.selector,fieldErrors:n.fieldErrors};return[i!==t.snapshot.data,{kind:"singular",snapshot:a,epoch:r,selector:t.selector,environment:t.environment}]}for(var s=!1,o=[],l=0;l0){var G=Promise.all(B.map(function(e){return F.getStore().getLiveResolverPromise(e)}));throw G.displayName="RelayLiveResolver("+e.name+")",G}if(E.ENABLE_RELAY_OPERATION_TRACKER_SUSPENSE||F!==M||!U.current||!R(U.current,k)){null==k&&c(!1);var Y=S(F,e,"PluralReaderSelector"===k.kind?k.selectors[0].owner:k.owner);if(Y)throw Y.promise}}var H=w,z=v;if("singular"===H.kind)C(F,H.snapshot.fieldErrors,z);else if("plural"===H.kind){var W,X,J=(0,a.default)(H.snapshots);try{for(J.s();!(X=J.n()).done;){var $=X.value;C(F,$.fieldErrors,z)}}catch(e){J.e(e)}finally{J.f()}}var Z=p(null);if(f(function(){var e=Z.current;if(null!=e)if(w.environment===e.environment&&w.selector===e.selector)return;else e.dispose();if("bailout"!==w.kind){var t=w,r=P(w.environment,w);if(null!==r){var n=r[0],i=r[1];if(n)return void L(i);t=i}Z.current={dispose:A(w.environment,t,L),selector:w.selector,environment:w.environment}}},[w]),f(function(){return null==Z.current&&"bailout"!==w.kind&&(Z.current={dispose:A(w.environment,w,L),selector:w.selector,environment:w.environment}),function(){var e;null==(e=Z.current)||e.dispose(),Z.current=null}},[]),T){var ee=null==t;g=h(function(){return"bailout"===w.kind?ee?null:[]:("plural"!==w.kind&&c(!1),w.snapshots.map(function(e){return e.data}))},[w,ee])}else"bailout"===w.kind?g=null:("singular"!==w.kind&&c(!1),g=w.snapshot.data);return E.LOG_MISSING_RECORDS_IN_PROD&&null!=t&&(void 0===g||Array.isArray(g)&&g.length>0&&g.every(function(e){return void 0===e})),g}},81582:e=>{"use strict";e.exports=function(e){return!!(e&&e["@@RelayModernEnvironment"])}},82382:(e,t,r)=>{"use strict";var n=r(96540);e.exports=(0,r(69487).__internal.createRelayLoggingContext)(n)},83713:(e,t,r)=>{"use strict";var n=r(79642).RELAY_LIVE_RESOLVER,i=r(20311);e.exports={NoopResolverCache:function(){function e(){}var t=e.prototype;return t.readFromCacheOrEvaluate=function(e,t,r,a,s){t.kind===n&&i(!1);var o=a(),l=o.resolverResult,u=o.snapshot;return[l,void 0,o.error,u,void 0,void 0]},t.invalidateDataIDs=function(e){},t.ensureClientRecord=function(e,t){i(!1)},t.notifyUpdatedSubscribers=function(e){},e}()}},83798:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(41046).getArgumentValues,a=r(20311);e.exports={getLocalVariables:function(e,t,r){if(null==t)return e;var a=(0,n.default)({},e),s=r?i(r,e):{};return t.forEach(function(e){var t,r=null!=(t=s[e.name])?t:e.defaultValue;a[e.name]=r}),a},getFragmentVariables:function(e,t,r){var i;return null==e.argumentDefinitions?r:(e.argumentDefinitions.forEach(function(e){if(!r.hasOwnProperty(e.name))switch(i=i||(0,n.default)({},r),e.kind){case"LocalArgument":i[e.name]=e.defaultValue;break;case"RootArgument":if(!t.hasOwnProperty(e.name)){i[e.name]=void 0;break}i[e.name]=t[e.name];break;default:a(!1)}}),i||r)},getOperationVariables:function(e,t,r){var n={};return e.argumentDefinitions.forEach(function(e){var t=e.defaultValue;null!=r[e.name]&&(t=r[e.name]),n[e.name]=t}),null!=t&&Object.keys(t).forEach(function(e){n[e]=t[e].get()}),n}}},83904:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(8312).stableCopy,a=r(20311);function s(e,t){return JSON.stringify(i({queryID:e,variables:t}))}e.exports=function(){function e(e){var t=e.size,r=e.ttl;t>0||a(!1),r>0||a(!1),this._responses=new Map,this._size=t,this._ttl=r}var t=e.prototype;return t.clear=function(){this._responses.clear()},t.get=function(e,t){var r=this,i=s(e,t);this._responses.forEach(function(e,t){var n;n=e.fetchTime,n+r._ttl>=Date.now()||r._responses.delete(t)});var a=this._responses.get(i);return null==a?null:Array.isArray(a.payload)?a.payload.map(function(e){return(0,n.default)((0,n.default)({},e),{},{extensions:(0,n.default)((0,n.default)({},e.extensions),{},{cacheTimestamp:a.fetchTime})})}):(0,n.default)((0,n.default)({},a.payload),{},{extensions:(0,n.default)((0,n.default)({},a.payload.extensions),{},{cacheTimestamp:a.fetchTime})})},t.set=function(e,t,r){var n=Date.now(),i=s(e,t);if(this._responses.delete(i),this._responses.set(i,{fetchTime:n,payload:r}),this._responses.size>this._size){var a=this._responses.keys().next();a.done||this._responses.delete(a.value)}},e}()},84367:(e,t,r)=>{"use strict";var n=r(96540);e.exports=(0,r(69487).__internal.createRelayContext)(n)},84848:e=>{"use strict";var t="client:__type:";e.exports={generateTypeID:function(e){return t+e},isTypeID:function(e){return 0===e.indexOf(t)},TYPE_SCHEMA_TYPE:"__TypeSchema"}},84895:(e,t,r)=>{"use strict";var n=r(884),i=r(47424).intern,a="client:",s=0;e.exports={generateClientID:function(e,t,r){var s=(n.STRING_INTERN_LEVEL<=0?e:i(e,n.MAX_DATA_ID_LENGTH))+":"+t;return null!=r&&(s+=":"+r),0!==s.indexOf(a)&&(s=a+s),s},generateClientObjectClientID:function(e,t,r){var n="".concat(a).concat(e,":").concat(t);return null!=r&&(n+=":"+r),n},generateUniqueClientID:function(){return"".concat(a,"local:").concat(s++)},isClientID:function(e){return 0===e.indexOf(a)}}},85252:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(50883)),a=n(r(43693)),s=r(12006),o=r(20311);e.exports=function(){function e(){var e=this;(0,a.default)(this,"_complete",!1),(0,a.default)(this,"_events",[]),(0,a.default)(this,"_sinks",new Set),(0,a.default)(this,"_subscription",[]),this._observable=s.create(function(t){e._sinks.add(t);for(var r=e._events,n=0;n{"use strict";(0,r(24994).default)(r(12897)),r(14594),Object.prototype.hasOwnProperty,e.exports=function(){}},87055:(e,t,r)=>{"use strict";var n=r(40541),i=n.isErrorResult,a=n.isValueResult,s=r(99390),o=r(90805),l=r(61798),u=r(1190),c=r(17658),d=r(28153),f=r(91040),h=r(98976),p=r(69981),_=r(12006),v=r(83904),g=r(43874),m=r(14672),y=r(94987),E=r(53141),R=r(10846),b=r(84895),S=b.generateClientID,I=b.generateUniqueClientID,D=b.isClientID,C=r(87864),k=r(13029),P=r(56156),A=r(81582),O=r(89452),T=O.isSuspenseSentinel,F=O.suspenseSentinel,x=r(47161),N=r(31424),L=r(83798),w=r(21090),M=r(32115),V=r(38742),U=r(95814),q=r(65922),j=r(52471),Q=r(53968),K=r(41046),B=r(14358),G=r(40937),Y=r(44881),H=r(69826),z=r(15519),W=r(66107),X=r(79233),J=r(79115),$=r(50172),Z=r(5580),ee=r(9130),et=r(54736),er=r(25285),en=r(57595).handlePotentialSnapshotErrors,ei=r(18621),ea=r(32877),es=r(57042),eo=r(79642),el=r(96991),eu=r(91011),ec=r(884),ed=r(7044),ef=r(85252),eh=r(8312),ep=eh.hasCycle,e_=eh.stableCopy,ev=r(34556);e.exports={Environment:w,Network:p,Observable:_,QueryResponseCache:v,RecordSource:Q,Record:V,ReplaySubject:ef,Store:q,areEqualSelectors:U.areEqualSelectors,createFragmentSpecResolver:C,createNormalizationSelector:U.createNormalizationSelector,createOperationDescriptor:M.createOperationDescriptor,createReaderSelector:U.createReaderSelector,createRequestDescriptor:M.createRequestDescriptor,getArgumentValues:K.getArgumentValues,getDataIDsFromFragment:U.getDataIDsFromFragment,getDataIDsFromObject:U.getDataIDsFromObject,getNode:E.getNode,getFragment:E.getFragment,getInlineDataFragment:E.getInlineDataFragment,getModuleComponentKey:K.getModuleComponentKey,getModuleOperationKey:K.getModuleOperationKey,getPaginationFragment:E.getPaginationFragment,getPluralSelector:U.getPluralSelector,getRefetchableFragment:E.getRefetchableFragment,getRequest:E.getRequest,getRequestIdentifier:et,getSelector:U.getSelector,getSelectorsFromObject:U.getSelectorsFromObject,getSingularSelector:U.getSingularSelector,getStorageKey:K.getStorageKey,getVariablesFromFragment:U.getVariablesFromFragment,getVariablesFromObject:U.getVariablesFromObject,getVariablesFromPluralFragment:U.getVariablesFromPluralFragment,getVariablesFromSingularFragment:U.getVariablesFromSingularFragment,handlePotentialSnapshotErrors:en,graphql:E.graphql,isErrorResult:i,isValueResult:a,isFragment:E.isFragment,isInlineDataFragment:E.isInlineDataFragment,isSuspenseSentinel:T,suspenseSentinel:F,isRequest:E.isRequest,readInlineData:N,readFragment:B.readFragment,MutationTypes:h.MutationTypes,RangeOperations:h.RangeOperations,DefaultHandlerProvider:u,ConnectionHandler:s,MutationHandlers:l,VIEWER_ID:G.VIEWER_ID,VIEWER_TYPE:G.VIEWER_TYPE,applyOptimisticMutation:c,commitLocalUpdate:d,commitMutation:f,fetchQuery:g,fetchQuery_DEPRECATED:m,isRelayModernEnvironment:A,requestSubscription:Y,ConnectionInterface:o,PreloadableQueryRegistry:R,RelayProfiler:ed,createPayloadFor3DField:H,RelayConcreteNode:eo,RelayError:eu,RelayFeatureFlags:ec,DEFAULT_HANDLE_KEY:el.DEFAULT_HANDLE_KEY,FRAGMENTS_KEY:K.FRAGMENTS_KEY,FRAGMENT_OWNER_KEY:K.FRAGMENT_OWNER_KEY,ID_KEY:K.ID_KEY,REF_KEY:K.REF_KEY,REFS_KEY:K.REFS_KEY,ROOT_ID:K.ROOT_ID,ROOT_TYPE:K.ROOT_TYPE,TYPENAME_KEY:K.TYPENAME_KEY,deepFreeze:z,generateClientID:S,generateUniqueClientID:I,getRelayHandleKey:ee,isClientID:D,isPromise:ei,isScalarAndEqual:ea,recycleNodesInto:es,stableCopy:e_,hasCycle:ep,getFragmentIdentifier:W,getRefetchMetadata:Z,getPaginationMetadata:X,getPaginationVariables:J,getPendingOperationsForFragment:$,getValueAtPath:er,__internal:{ResolverFragments:B,OperationTracker:j,createRelayContext:k,createRelayLoggingContext:P,getOperationVariables:L.getOperationVariables,getLocalVariables:L.getLocalVariables,fetchQuery:y.fetchQuery,fetchQueryDeduped:y.fetchQueryDeduped,getPromiseForActiveRequest:y.getPromiseForActiveRequest,getObservableForActiveRequest:y.getObservableForActiveRequest,normalizeResponse:x,withProvidedVariables:ev}}},87864:(e,t,r)=>{"use strict";var n=r(58270);r(14594),e.exports=function(e,t,r,i,a,s){return new n(e,r,i,s,a)}},89045:(e,t,r)=>{var n=r(73738).default;e.exports=function(e,t){if("object"!=n(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var i=r.call(e,t||"default");if("object"!=n(i))return i;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)},e.exports.__esModule=!0,e.exports.default=e.exports},89046:(e,t,r)=>{"use strict";var n=r(79642).LINKED_FIELD,i=r(41046).getHandleStorageKey,a=r(3574),s=r(20311);e.exports=function(e,t,r){var o=t.find(function(t){return t.kind===n&&t.name===e.name&&t.alias===e.alias&&a(t.args,e.args)});o&&o.kind===n||s(!1);var l=i(e,r);return{kind:"LinkedField",alias:o.alias,name:l,storageKey:l,args:null,concreteType:o.concreteType,plural:o.plural,selections:o.selections}}},89452:e=>{"use strict";var t=Object.freeze({__LIVE_RESOLVER_SUSPENSE_SENTINEL:!0});e.exports={isSuspenseSentinel:function(e){return e===t},suspenseSentinel:function(){return t}}},89687:(e,t,r)=>{"use strict";var n=r(20311),i="INTERNAL_ACTOR_IDENTIFIER_DO_NOT_USE";e.exports={assertInternalActorIdentifier:function(e){e!==i&&n(!1)},getActorIdentifier:function(e){return e},getDefaultActorIdentifier:function(){throw Error("Not Implemented")},INTERNAL_ACTOR_IDENTIFIER_DO_NOT_USE:i}},90007:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(12897)),i=r(20311),a=r(69487),s=a.__internal.fetchQueryDeduped,o=a.Observable,l=a.PreloadableQueryRegistry,u=a.ReplaySubject,c=a.createOperationDescriptor,d=a.getRequest,f=a.getRequestIdentifier,h=100001;e.exports={loadQuery:function(e,t,r,a,p){h++;var _,v,g,m,y,E,R,b=null!=(_=null==a?void 0:a.fetchPolicy)?_:"store-or-network",S=(0,n.default)((0,n.default)({},null==a?void 0:a.networkCacheConfig),{},{force:!0}),I=!1,D=function(t,r){return I=!0,e.executeWithSource({operation:t,source:r})},C=new u,k=o.create(function(e){return C.subscribe(e)}),P=null,A=!1,O=function(t,n){A=!0;var i=new u;return g=s(e,"raw-network-request-"+f(t,r),function(){return e.getNetwork().execute(t,r,S,void 0,void 0,void 0,void 0,n)}).subscribe({error:function(e){P=e,i.error(e)},next:function(e){i.next(e)},complete:function(){i.complete()}}).unsubscribe,o.create(function(e){var t=i.subscribe(e);return function(){t.unsubscribe(),g()}})},T=function(t,r){A=!0,m=s(e,t.request.identifier,r).subscribe({error:function(e){C.error(e)},next:function(e){C.next(e)},complete:function(){C.complete()}}).unsubscribe},F=function(t){var n=c(t,r,S);v=e.retain(n),"store-only"!==b&&("store-or-network"!==b||"available"!==e.check(n).status)&&T(n,function(){var r=O(t.params,function(){return e.check(n)});return D(n,r)})};if("PreloadableConcreteRequest"===t.kind){null===(R=(y=t.params).id)&&i(!1);var x=l.get(R);if(null!=x)F(x);else{var N="store-only"===b?null:O(y);E=l.onLoad(R,function(t){E();var n=c(t,r,S);v=e.retain(n),null!=N&&T(n,function(){return D(n,N)})}).dispose}}else{var L=d(t);R=null!=(y=L.params).cacheID?y.cacheID:y.id,F(L)}var w=!1,M=!1,V=!1,U=function(){M||(v&&v.dispose(),M=!0)},q=function(){V||(I?m&&m():g&&g(),E&&E(),V=!0)};return{kind:"PreloadedQuery",environment:e,environmentProviderOptions:p,dispose:function(){w||(U(),q(),w=!0)},releaseQuery:U,cancelNetworkRequest:q,fetchKey:h,id:R,get isDisposed(){return w||M},get networkError(){return P},name:y.name,networkCacheConfig:S,fetchPolicy:b,source:A?k:void 0,variables:r}}}},90402:e=>{"use strict";var t=Symbol.iterator;e.exports=function(e,r){for(var n=e[t](),i=n.next();!i.done;){var a=i.value;if(r.has(a))return!0;i=n.next()}return!1}},90667:e=>{"use strict";var t,r,n="u">typeof window&&"function"==typeof(null==(t=window)||null==(r=t.performance)?void 0:r.now);function i(){return n?window.performance.now():Date.now()}e.exports=function(e){var t=i(),r=e();return[t,i()-t,r]}},90762:(e,t,r)=>{"use strict";var n=r(30709),i=r(96540),a=i.useCallback,s=i.useEffect;e.exports=function(){var e=n(null),t=n(!1),r=a(function(){null!=e.current&&(e.current.unsubscribe(),e.current=null),t.current=!1},[]),i=a(function(r){e.current=r,t.current=!0},[]),o=a(function(){e.current=null,t.current=!1},[]);return s(function(){return r},[r]),{isFetchingRef:t,startFetch:i,disposeFetch:r,completeFetch:o}}},90805:e=>{"use strict";var t={after:!0,before:!0,find:!0,first:!0,last:!0,surrounds:!0},r={CURSOR:"cursor",EDGES:"edges",END_CURSOR:"endCursor",HAS_NEXT_PAGE:"hasNextPage",HAS_PREV_PAGE:"hasPreviousPage",NODE:"node",PAGE_INFO_TYPE:"PageInfo",PAGE_INFO:"pageInfo",START_CURSOR:"startCursor"};e.exports={inject:function(e){r=e},get:function(){return r},isConnectionCall:function(e){return t.hasOwnProperty(e.name)}}},90931:(e,t,r)=>{"use strict";var n=(0,r(24994).default)(r(43693)),i=r(55199).observeFragment,a=r(32115).createOperationDescriptor;e.exports={observeQuery:function(e,t,r){var s=a(t,r),o={__id:s.fragment.dataID,__fragments:(0,n.default)({},s.fragment.node.name,s.request.variables),__fragmentOwner:s.request};return i(e,s.request.node.fragment,o)}}},91011:e=>{"use strict";function t(e,t,r){for(var n=arguments.length,i=Array(n>3?n-3:0),a=3;a2?n-2:0),a=2;a2?n-2:0),a=2;a{"use strict";var n=(0,r(24994).default)(r(41132)),i=r(53141).getRequest,a=r(84895).generateUniqueClientID,s=r(81582),o=r(32115).createOperationDescriptor,l=r(98976);r(85671);var u=r(20311);r(14594),e.exports=function(e,t){s(e)||u(!1);var r=i(t.mutation);if("mutation"!==r.params.operationKind)throw Error("commitMutation: Expected mutation operation");if("Request"!==r.kind)throw Error("commitMutation: Expected mutation to be of type request");var c=t.optimisticResponse,d=t.optimisticUpdater,f=t.updater,h=t.configs,p=t.cacheConfig,_=t.onError,v=t.onUnsubscribe,g=t.variables,m=t.uploadables,y=o(r,g,p,a());if("function"==typeof c&&(c=c()),h){var E=l.convert(h,r,d,f);d=E.optimisticUpdater,f=E.updater}var R=[];return{dispose:e.executeMutation({operation:y,optimisticResponse:c,optimisticUpdater:d,updater:f,uploadables:m}).subscribe({next:function(e){var r;Array.isArray(e)?e.forEach(function(e){e.errors&&R.push.apply(R,(0,n.default)(e.errors))}):e.errors&&R.push.apply(R,(0,n.default)(e.errors)),null==(r=t.onNext)||r.call(t)},complete:function(){var r=t.onCompleted;r&&r(e.lookup(y.fragment).data,0!==R.length?R:null)},error:_,unsubscribe:v}).unsubscribe}}},91529:(e,t,r)=>{"use strict";var n=r(7058),i=r(96540).useEffect,a=r(69487).requestSubscription;e.exports=function(e,t){var r=null!=t?t:a,s=n();i(function(){return r(s,e).dispose},[s,e,r])}},93587:(e,t,r)=>{"use strict";var n=r(79642),i=n.REQUEST;n.SPLIT_OPERATION,e.exports=function(e){return e.kind===i?e.operation:e}},94634:e=>{function t(){return e.exports=t=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";var n=r(12006),i=r(85252),a=r(20311),s="function"==typeof WeakMap?new WeakMap:new Map;function o(e,t,r){return n.create(function(s){var o,l,d=u(e),f=d.get(t);return f||r().finally(function(){return d.delete(t)}).subscribe({start:function(e){f={identifier:t,subject:new i,subjectForInFlightStatus:new i,subscription:e,promise:null},d.set(t,f)},next:function(e){var r=c(d,t);r.subject.next(e),r.subjectForInFlightStatus.next(e)},error:function(e){var r=c(d,t);r.subject.error(e),r.subjectForInFlightStatus.error(e)},complete:function(){var e=c(d,t);e.subject.complete(),e.subjectForInFlightStatus.complete()},unsubscribe:function(e){var r=c(d,t);r.subject.unsubscribe(),r.subjectForInFlightStatus.unsubscribe()}}),null==f&&a(!1),(o=d,l=f,n.create(function(e){var t=l.subject.subscribe(e);return function(){t.unsubscribe();var e=o.get(l.identifier);if(e){var r=e.subscription;null!=r&&0===e.subject.getObserverCount()&&(r.unsubscribe(),o.delete(l.identifier))}}})).subscribe(s)})}function l(e,t,r){return n.create(function(t){var n=r.subjectForInFlightStatus.subscribe({error:t.error,next:function(n){e.isRequestActive(r.identifier)?t.next():t.complete()},complete:t.complete,unsubscribe:t.complete});return function(){n.unsubscribe()}})}function u(e){var t=s.get(e);if(null!=t)return t;var r=new Map;return s.set(e,r),r}function c(e,t){var r=e.get(t);return null==r&&a(!1),r}e.exports={fetchQuery:function(e,t){return o(e,t.request.identifier,function(){return e.execute({operation:t})})},fetchQueryDeduped:o,getPromiseForActiveRequest:function(e,t){var r=u(e),n=r.get(t.identifier);return n&&e.isRequestActive(n.identifier)?new Promise(function(t,i){var a=!1;l(e,r,n).subscribe({complete:t,error:i,next:function(e){a&&t(e)}}),a=!0}):null},getObservableForActiveRequest:function(e,t){var r=u(e),n=r.get(t.identifier);return n&&e.isRequestActive(n.identifier)?l(e,r,n):null}}},95636:e=>{function t(r,n){return e.exports=t=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},e.exports.__esModule=!0,e.exports.default=e.exports,t(r,n)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},95814:(e,t,r)=>{"use strict";var n=r(83798).getFragmentVariables,i=r(41046),a=i.CLIENT_EDGE_TRAVERSAL_PATH,s=i.FRAGMENT_OWNER_KEY,o=i.FRAGMENT_POINTER_IS_WITHIN_UNMATCHED_TYPE_REFINEMENT,l=i.FRAGMENTS_KEY,u=i.ID_KEY,c=r(3574),d=r(20311);function f(e,t){("object"!=typeof t||null===t||Array.isArray(t))&&d(!1);var r=t[u],i=t[l],c=t[s],f=t[a];if("string"==typeof r&&"object"==typeof i&&null!==i&&"object"==typeof i[e.name]&&null!==i[e.name]&&"object"==typeof c&&null!==c&&(null==f||Array.isArray(f))){var h=i[e.name],p=n(e,c.variables,h);return R(e,r,p,c,!0===h[o],f)}return null}function h(e,t){var r=null;return(t.forEach(function(t,n){var i=null!=t?f(e,t):null;null!=i&&(r=r||[]).push(i)}),null==r)?null:{kind:"PluralReaderSelector",selectors:r}}function p(e,t){return null==t?t:e.metadata&&!0===e.metadata.plural?(Array.isArray(t)||d(!1),h(e,t)):(Array.isArray(t)&&d(!1),f(e,t))}function _(e,t){var r,n;return null==t?t:e.metadata&&!0===e.metadata.plural?(Array.isArray(t)||d(!1),r=e,n=null,t.forEach(function(e){var t=null!=e?v(r,e):null;null!=t&&(n=n||[]).push(t)}),n):(Array.isArray(t)&&d(!1),v(e,t))}function v(e,t){("object"!=typeof t||null===t||Array.isArray(t))&&d(!1);var r=t[u];return"string"==typeof r?r:null}function g(e,t){var r;return null==t?{}:(null==(r=e.metadata)?void 0:r.plural)===!0?(Array.isArray(t)||d(!1),y(e,t)):(Array.isArray(t)&&d(!1),m(e,t)||{})}function m(e,t){var r=f(e,t);return r?r.variables:null}function y(e,t){var r={};return t.forEach(function(t,n){if(null!=t){var i=m(e,t);null!=i&&Object.assign(r,i)}}),r}function E(e,t){var r,n;return e.dataID===t.dataID&&e.node===t.node&&c(e.variables,t.variables)&&(r=e.owner,r===(n=t.owner)||r.identifier===n.identifier&&c(r.cacheConfig,n.cacheConfig))&&e.isWithinUnmatchedTypeRefinement===t.isWithinUnmatchedTypeRefinement&&function(e,t){if(e===t)return!0;if(null==e||null==t||e.length!==t.length)return!1;for(var r=e.length;r--;){var n=e[r],i=t[r];if(n!==i&&(null==n||null==i||n.clientEdgeDestinationID!==i.clientEdgeDestinationID||n.readerClientEdge!==i.readerClientEdge))return!1}return!0}(e.clientEdgeTraversalPath,t.clientEdgeTraversalPath)}function R(e,t,r,n){var i=arguments.length>4&&void 0!==arguments[4]&&arguments[4],a=arguments.length>5?arguments[5]:void 0;return{kind:"SingularReaderSelector",dataID:t,isWithinUnmatchedTypeRefinement:i,clientEdgeTraversalPath:null!=a?a:null,node:e,variables:r,owner:n}}r(14594),e.exports={areEqualSelectors:function(e,t){if(e===t)return!0;if(null==e)return null==t;if(null==t)return null==e;if("SingularReaderSelector"===e.kind&&"SingularReaderSelector"===t.kind)return E(e,t);if("PluralReaderSelector"===e.kind&&"PluralReaderSelector"===t.kind)return e.selectors.length===t.selectors.length&&e.selectors.every(function(e,r){return E(e,t.selectors[r])});else return!1},createReaderSelector:R,createNormalizationSelector:function(e,t,r){return{dataID:t,node:e,variables:r}},getDataIDsFromFragment:_,getDataIDsFromObject:function(e,t){var r={};for(var n in e)if(e.hasOwnProperty(n)){var i=e[n],a=t[n];r[n]=_(i,a)}return r},getSingularSelector:f,getPluralSelector:h,getSelector:p,getSelectorsFromObject:function(e,t){var r={};for(var n in e)if(e.hasOwnProperty(n)){var i=e[n],a=t[n];r[n]=p(i,a)}return r},getVariablesFromSingularFragment:m,getVariablesFromPluralFragment:y,getVariablesFromFragment:g,getVariablesFromObject:function(e,t){var r={};for(var n in e)e.hasOwnProperty(n)&&Object.assign(r,g(e[n],t[n]));return r}}},96991:e=>{"use strict";e.exports={DEFAULT_HANDLE_KEY:""}},98523:(e,t,r)=>{"use strict";var n=r(24994).default,i=n(r(94634)),a=n(r(54893)),s=n(r(12475)),o=n(r(28602)),l=n(r(43693)),u=["componentRef","__relayContext","__rootIsQueryRenderer"],c=r(65433),d=r(69874).getContainerName,f=r(54978).assertRelayContext,h=r(3574),p=r(96540),_=r(69487),v=_.createFragmentSpecResolver,g=_.getDataIDsFromObject,m=_.isScalarAndEqual;function y(e,t){var r,n=d(e);return r=function(r){function c(e){a=r.call(this,e)||this,(0,l.default)((0,s.default)(a),"_handleFragmentDataUpdate",function(){var e=a.state.resolver;a.setState(function(t){return e===t.resolver?{data:t.resolver.resolve(),relayProp:E(t.relayProp.environment)}:null})});var i,a,o=f(e.__relayContext),u=null!=(i=e.__rootIsQueryRenderer)&&i,c=v(o,n,t,e,u);return a.state={data:c.resolve(),prevProps:e,prevPropsContext:o,relayProp:E(o.environment),resolver:c},a}(0,o.default)(c,r),c.getDerivedStateFromProps=function(e,r){var i,a=r.prevProps,s=f(e.__relayContext),o=null!=(i=e.__rootIsQueryRenderer)&&i,l=g(t,a),u=g(t,e),c=r.resolver;if(r.prevPropsContext.environment!==s.environment||!h(l,u))return{data:(c=v(s,n,t,e,o)).resolve(),prevPropsContext:s,prevProps:e,relayProp:E(s.environment),resolver:c};c.setProps(e);var d=c.resolve();return d!==r.data?{data:d,prevProps:e,prevPropsContext:s,relayProp:E(s.environment)}:null};var d=c.prototype;return d.componentDidMount=function(){this._subscribeToNewResolverAndRerenderIfStoreHasChanged()},d.componentDidUpdate=function(e,t){this.state.resolver!==t.resolver?(t.resolver.dispose(),this._subscribeToNewResolverAndRerenderIfStoreHasChanged()):this._rerenderIfStoreHasChanged()},d.componentWillUnmount=function(){this.state.resolver.dispose()},d.shouldComponentUpdate=function(e,r){if(r.data!==this.state.data)return!0;for(var n=Object.keys(e),i=0;i{"use strict";var n=(0,r(24994).default)(r(50883)),i=r(99390);function a(e){return e.fragment.selections&&e.fragment.selections.length>0&&"LinkedField"===e.fragment.selections[0].kind?e.fragment.selections[0].name:null}r(14594),e.exports={MutationTypes:Object.freeze({RANGE_ADD:"RANGE_ADD",RANGE_DELETE:"RANGE_DELETE",NODE_DELETE:"NODE_DELETE"}),RangeOperations:Object.freeze({APPEND:"append",PREPEND:"prepend"}),convert:function(e,t,r,s){var o=r?[r]:[],l=s?[s]:[];return e.forEach(function(e){switch(e.type){case"NODE_DELETE":var r,s,u,c,d=(r=e,s=t,u=r.deletedIDFieldName,(c=a(s))?function(e,t){var r=e.getRootField(c);if(r){var n=r.getValue(u);(Array.isArray(n)?n:[n]).forEach(function(t){t&&"string"==typeof t&&e.delete(t)})}}:null);d&&(o.push(d),l.push(d));break;case"RANGE_ADD":var f=function(e,t){var r=e.parentID,s=e.connectionInfo,o=e.edgeName;if(!r)return null;var l=a(t);return s&&l?function(e,t){var a=e.get(r);if(a){var u=e.getRootField(l);if(u){var c,d=u.getLinkedRecord(o),f=(0,n.default)(s);try{for(f.s();!(c=f.n()).done;){var h=c.value;if(d){var p=i.getConnection(a,h.key,h.filters);if(p){var _=i.buildConnectionEdge(e,p,d);if(_)switch(h.rangeBehavior){case"append":i.insertEdgeAfter(p,_);break;case"prepend":i.insertEdgeBefore(p,_)}}}}}catch(e){f.e(e)}finally{f.f()}}}}:null}(e,t);f&&(o.push(f),l.push(f));break;case"RANGE_DELETE":var h=function(e,t){var r=e.parentID,s=e.connectionKeys,o=e.pathToConnection,l=e.deletedIDFieldName;if(!r)return null;var u=a(t);return u?function(e,t){if(t){var a=[],c=t[u];if(c&&Array.isArray(l)){var d,f=(0,n.default)(l);try{for(f.s();!(d=f.n()).done;){var h=d.value;c&&"object"==typeof c&&(c=c[h])}}catch(e){f.e(e)}finally{f.f()}Array.isArray(c)?c.forEach(function(e){e&&e.id&&"object"==typeof e&&"string"==typeof e.id&&a.push(e.id)}):c&&c.id&&"string"==typeof c.id&&a.push(c.id)}else c&&"string"==typeof l&&"object"==typeof c&&("string"==typeof(c=c[l])?a.push(c):Array.isArray(c)&&c.forEach(function(e){"string"==typeof e&&a.push(e)}));!function(e,t,r,a,s){var o=a.get(e);if(o&&!(r.length<2)){for(var l=o,u=1;u{e.exports=function(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)},e.exports.__esModule=!0,e.exports.default=e.exports},99390:(e,t,r)=>{"use strict";var n=r(84895).generateClientID,i=r(41046).getStableStorageKey,a=r(9130),s=r(90805),o=r(20311);r(14594);var l="connection",u="__connection_next_edge_index";function c(e,t,r){if(null==r)return r;var i=s.get().EDGES,a=t.getValue(u);"number"!=typeof a&&o(!1);var l=n(t.getDataID(),i,a),c=e.create(l,r.getType());return c.copyFieldsFrom(r),null==c.getValue("cursor")&&c.setValue(null,"cursor"),t.setValue(a+1,u),c}function d(e,t,r){for(var n=s.get().NODE,i=0;i{"use strict";e.exports=function(e){return null!=e&&"object"==typeof e&&"function"==typeof e.read&&"function"==typeof e.subscribe}}}]); +//# sourceMappingURL=18312-361e5d0e21b2.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/19681-01119aa85035.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/19681-01119aa85035.js" new file mode 100644 index 0000000..8c91e88 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/19681-01119aa85035.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:19681-01119aa85035.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[19681,79149,96315],{31635:(t,e,n)=>{n.d(e,{AQ:()=>s,Cg:()=>o,Me:()=>a,N3:()=>r,Tt:()=>i,xN:()=>l});function i(t,e){var n={};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&0>e.indexOf(i)&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,i=Object.getOwnPropertySymbols(t);oe.indexOf(i[o])&&Object.prototype.propertyIsEnumerable.call(t,i[o])&&(n[i[o]]=t[i[o]]);return n}function o(t,e,n,i){var o,r=arguments.length,s=r<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(t,e,n,i);else for(var a=t.length-1;a>=0;a--)(o=t[a])&&(s=(r<3?o(s):r>3?o(e,n,s):o(e,n))||s);return r>3&&s&&Object.defineProperty(e,n,s),s}function r(t){return this instanceof r?(this.v=t,this):new r(t)}function s(t,e,n){if(!Symbol.asyncIterator)throw TypeError("Symbol.asyncIterator is not defined.");var i,o=n.apply(t,e||[]),s=[];return i=Object.create(("function"==typeof AsyncIterator?AsyncIterator:Object).prototype),a("next"),a("throw"),a("return",function(t){return function(e){return Promise.resolve(e).then(t,c)}}),i[Symbol.asyncIterator]=function(){return this},i;function a(t,e){o[t]&&(i[t]=function(e){return new Promise(function(n,i){s.push([t,e,n,i])>1||l(t,e)})},e&&(i[t]=e(i[t])))}function l(t,e){try{var n;(n=o[t](e)).value instanceof r?Promise.resolve(n.value.v).then(u,c):d(s[0][2],n)}catch(t){d(s[0][3],t)}}function u(t){l("next",t)}function c(t){l("throw",t)}function d(t,e){t(e),s.shift(),s.length&&l(s[0][0],s[0][1])}}function a(t){var e,n;return e={},i("next"),i("throw",function(t){throw t}),i("return"),e[Symbol.iterator]=function(){return this},e;function i(i,o){e[i]=t[i]?function(e){return(n=!n)?{value:r(t[i](e)),done:!1}:o?o(e):e}:o}}function l(t){if(!Symbol.asyncIterator)throw TypeError("Symbol.asyncIterator is not defined.");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=function(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],i=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&i>=t.length&&(t=void 0),{value:t&&t[i++],done:!t}}};throw TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}(t),e={},i("next"),i("throw"),i("return"),e[Symbol.asyncIterator]=function(){return this},e);function i(n){e[n]=t[n]&&function(e){return new Promise(function(i,o){var r,s,a;r=i,s=o,a=(e=t[n](e)).done,Promise.resolve(e.value).then(function(t){r({value:t,done:a})},s)})}}}"function"==typeof SuppressedError&&SuppressedError},39595:(t,e,n)=>{let i;n.d(e,{CF:()=>b,p_:()=>T,FB:()=>d,Se:()=>k,aC:()=>O,zV:()=>D});let o=new WeakSet,r=new WeakMap;function s(t=document){if(r.has(t))return r.get(t);let e=!1,n=new MutationObserver(t=>{for(let e of t)if("attributes"===e.type&&e.target instanceof Element)c(e.target);else if("childList"===e.type&&e.addedNodes.length)for(let t of e.addedNodes)t instanceof Element&&a(t)});n.observe(t,{childList:!0,subtree:!0,attributeFilter:["data-action"]});let i={get closed(){return e},unsubscribe(){e=!0,r.delete(t),n.disconnect()}};return r.set(t,i),i}function a(t){for(let e of t.querySelectorAll("[data-action]"))c(e);t instanceof Element&&t.hasAttribute("data-action")&&c(t)}function l(t){let e=t.currentTarget;for(let n of u(e))if(t.type===n.type){let i=e.closest(n.tag);o.has(i)&&"function"==typeof i[n.method]&&i[n.method](t);let r=e.getRootNode();if(r instanceof ShadowRoot&&o.has(r.host)&&r.host.matches(n.tag)){let e=r.host;"function"==typeof e[n.method]&&e[n.method](t)}}}function*u(t){for(let e of(t.getAttribute("data-action")||"").trim().split(/\s+/)){let t=e.lastIndexOf(":"),n=Math.max(0,e.lastIndexOf("#"))||e.length;yield{type:e.slice(0,t),tag:e.slice(t+1,n),method:e.slice(n+1)||"handleEvent"}}}function c(t){for(let e of u(t))t.addEventListener(e.type,l)}function d(t,e){let n=t.tagName.toLowerCase();if(t.shadowRoot){for(let i of t.shadowRoot.querySelectorAll(`[data-target~="${n}.${e}"]`))if(!i.closest(n))return i}for(let i of t.querySelectorAll(`[data-target~="${n}.${e}"]`))if(i.closest(n)===t)return i}let h=t=>String("symbol"==typeof t?t.description:t).replace(/([A-Z]($|[a-z]))/g,"-$1").replace(/--/g,"-").replace(/^-|-$/,"").toLowerCase(),p=(t,e="property")=>{let n=h(t);if(!n.includes("-"))throw new DOMException(`${e}: ${String(t)} is not a valid ${e} name`,"SyntaxError");return n},f="attr";function b(t,e){x(t,f).add(e)}let m=new WeakSet;function v(t,e){if(m.has(t))return;m.add(t);let n=Object.getPrototypeOf(t),i=n?.constructor?.attrPrefix??"data-";for(let o of(e||(e=x(n,f)),e)){let e=t[o],n=p(`${i}${o}`),r={configurable:!0,get(){return this.getAttribute(n)||""},set(t){this.setAttribute(n,t||"")}};"number"==typeof e?r={configurable:!0,get(){return Number(this.getAttribute(n)||0)},set(t){this.setAttribute(n,t)}}:"boolean"==typeof e&&(r={configurable:!0,get(){return this.hasAttribute(n)},set(t){this.toggleAttribute(n,t)}}),Object.defineProperty(t,o,r),o in t&&!t.hasAttribute(n)&&r.set.call(t,e)}}let g=new Map,y=new Promise(t=>{"loading"!==document.readyState?t():document.addEventListener("readystatechange",()=>t(),{once:!0})}),E=new Promise(t=>{let e=new AbortController;e.signal.addEventListener("abort",()=>t());let n={once:!0,passive:!0,signal:e.signal},i=()=>e.abort();document.addEventListener("mousedown",i,n),document.addEventListener("touchstart",i,n),document.addEventListener("keydown",i,n),document.addEventListener("pointerdown",i,n)}),w={ready:()=>y,firstInteraction:()=>E,visible:t=>new Promise(e=>{let n=new IntersectionObserver(t=>{for(let i of t)if(i.isIntersecting){e(),n.disconnect();return}},{rootMargin:"0px 0px 256px 0px",threshold:.01});for(let e of document.querySelectorAll(t))n.observe(e)})},A=new WeakMap;function S(t){cancelAnimationFrame(A.get(t)||0),A.set(t,requestAnimationFrame(()=>{for(let e of g.keys()){let n=t instanceof Element&&t.matches(e)?t:t.querySelector(e);if(customElements.get(e)||n){let i=n?.getAttribute("data-load-on")||"ready",o=i in w?w[i]:w.ready;for(let t of g.get(e)||[])o(e).then(t);g.delete(e),A.delete(t)}}}))}function k(t,e){for(let[n,i]of("string"==typeof t&&e&&(t={[t]:e}),Object.entries(t)))g.has(n)||g.set(n,new Set),g.get(n).add(i);C(document)}function C(t){i||(i=new MutationObserver(t=>{if(g.size)for(let e of t)for(let t of e.addedNodes)t instanceof Element&&S(t)})),S(t),i.observe(t,{subtree:!0,childList:!0})}let L=Symbol.for("catalyst");let CatalystDelegate=class CatalystDelegate{constructor(t){const e=this,n=t.prototype.connectedCallback;t.prototype.connectedCallback=function(){e.connectedCallback(this,n)};const i=t.prototype.disconnectedCallback;t.prototype.disconnectedCallback=function(){e.disconnectedCallback(this,i)};const o=t.prototype.attributeChangedCallback;t.prototype.attributeChangedCallback=function(t,n,i){e.attributeChangedCallback(this,t,n,i,o)};let r=t.observedAttributes||[];Object.defineProperty(t,"observedAttributes",{configurable:!0,get(){return e.observedAttributes(this,r)},set(t){r=t}}),function(t){let e=t.observedAttributes||[],n=t.attrPrefix??"data-",i=t=>p(`${n}${t}`);Object.defineProperty(t,"observedAttributes",{configurable:!0,get:()=>[...x(t.prototype,f)].map(i).concat(e),set(t){e=t}})}(t),function(t){let e=h(t.name).replace(/-element$/,"");try{window.customElements.define(e,t),window[t.name]=customElements.get(e)}catch(t){if(!(t instanceof DOMException&&"NotSupportedError"===t.name))throw t}}(t)}observedAttributes(t,e){return e}connectedCallback(t,e){var n,i;for(let e of(t.toggleAttribute("data-catalyst",!0),customElements.upgrade(t),t.querySelectorAll("template[data-shadowroot]")))e.parentElement===t&&t.attachShadow({mode:"closed"===e.getAttribute("data-shadowroot")?"closed":"open"}).append(e.content.cloneNode(!0));(v(t),o.add(t),t.shadowRoot&&(a(i=t.shadowRoot),s(i)),a(t),s(t.ownerDocument),e?.call(t),t.shadowRoot)&&(a(n=t.shadowRoot),s(n),C(t.shadowRoot))}disconnectedCallback(t,e){e?.call(t)}attributeChangedCallback(t,e,n,i,o){v(t),"data-catalyst"!==e&&o&&o.call(t,e,n,i)}};function x(t,e){if(!Object.prototype.hasOwnProperty.call(t,L)){let e=t[L],n=t[L]=new Map;if(e)for(let[t,i]of e)n.set(t,new Set(i))}let n=t[L];return n.has(e)||n.set(e,new Set),n.get(e)}function O(t,e){x(t,"target").add(e),Object.defineProperty(t,e,{configurable:!0,get(){return d(this,e)}})}function D(t,e){x(t,"targets").add(e),Object.defineProperty(t,e,{configurable:!0,get(){let t=this.tagName.toLowerCase(),n=[];if(this.shadowRoot)for(let i of this.shadowRoot.querySelectorAll(`[data-targets~="${t}.${e}"]`))i.closest(t)||n.push(i);for(let i of this.querySelectorAll(`[data-targets~="${t}.${e}"]`))i.closest(t)===this&&n.push(i);return n}})}function T(t){new CatalystDelegate(t)}},50467:(t,e,n)=>{n.d(e,{_:()=>i});function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}},74057:(t,e,n)=>{n.d(e,{A:()=>m});let i="data-close-dialog",o=`[${i}]`;function r(t){let e=Array.from(t.querySelectorAll("[autofocus]")).filter(a)[0];e||(e=t,t.setAttribute("tabindex","-1")),e.focus()}function s(t){let e=t.currentTarget;e instanceof Element&&("Escape"===t.key||"Esc"===t.key?(d(e,!1),t.stopPropagation()):"Tab"===t.key&&function(t){if(!(t.currentTarget instanceof Element))return;let e=t.currentTarget.querySelector("details-dialog");if(!e)return;t.preventDefault();let n=Array.from(e.querySelectorAll("*")).filter(a);if(0===n.length)return;let i=t.shiftKey?-1:1,o=e.getRootNode(),r=e.contains(o.activeElement)?o.activeElement:null,s=-1===i?-1:0;if(r instanceof HTMLElement){let t=n.indexOf(r);-1!==t&&(s=t+i)}s<0?s=n.length-1:s%=n.length,n[s].focus()}(t))}function a(t){var e;return t.tabIndex>=0&&!t.disabled&&!(e=t).hidden&&(!e.type||"hidden"!==e.type)&&(e.offsetWidth>0||e.offsetHeight>0)}function l(t){let e=t.querySelector("details-dialog");return!(e instanceof DetailsDialogElement)||e.dispatchEvent(new CustomEvent("details-dialog-close",{bubbles:!0,cancelable:!0}))}function u(t){if(!(t.currentTarget instanceof Element))return;let e=t.currentTarget.closest("details");e&&e.hasAttribute("open")&&(l(e)||(t.preventDefault(),t.stopPropagation()))}function c(t){let e=t.currentTarget;if(!(e instanceof Element))return;let n=e.querySelector("details-dialog");if(n instanceof DetailsDialogElement)if(e.hasAttribute("open")){let t="getRootNode"in n?n.getRootNode():document;t.activeElement instanceof HTMLElement&&b.set(n,{details:e,activeElement:t.activeElement}),r(n),e.addEventListener("keydown",s)}else{var i,o;let t;for(let t of n.querySelectorAll("form"))t.reset();let r=(i=e,o=n,(t=b.get(o))&&t.activeElement instanceof HTMLElement?t.activeElement:i.querySelector("summary"));r&&r.focus(),e.removeEventListener("keydown",s)}}function d(t,e){e!==t.hasAttribute("open")&&(e?t.setAttribute("open",""):l(t)&&t.removeAttribute("open"))}function h(t){let e=t.currentTarget;if(!(e instanceof Element))return;let n=e.querySelector("details-dialog");if(!(n instanceof DetailsDialogElement))return;let i=n.querySelector("include-fragment:not([src])");if(!i)return;let o=n.src;null!==o&&(i.addEventListener("loadend",()=>{e.hasAttribute("open")&&r(n)}),i.setAttribute("src",o),f(e))}function p(t,e,n){f(t),e&&t.addEventListener("toggle",h,{once:!0}),e&&n&&t.addEventListener("mouseover",h,{once:!0})}function f(t){t.removeEventListener("toggle",h),t.removeEventListener("mouseover",h)}let b=new WeakMap;let DetailsDialogElement=class DetailsDialogElement extends HTMLElement{static get CLOSE_ATTR(){return i}static get CLOSE_SELECTOR(){return o}constructor(){super(),b.set(this,{details:null,activeElement:null}),this.addEventListener("click",function({target:t}){if(!(t instanceof Element))return;let e=t.closest("details");e&&t.closest(o)&&d(e,!1)})}get src(){return this.getAttribute("src")}set src(t){this.setAttribute("src",t||"")}get preload(){return this.hasAttribute("preload")}set preload(t){t?this.setAttribute("preload",""):this.removeAttribute("preload")}connectedCallback(){this.setAttribute("role","dialog"),this.setAttribute("aria-modal","true");let t=b.get(this);if(!t)return;let e=this.parentElement;if(!e)return;let n=e.querySelector("summary");n&&(n.hasAttribute("role")||n.setAttribute("role","button"),n.addEventListener("click",u,{capture:!0})),e.addEventListener("toggle",c),t.details=e,p(e,this.src,this.preload)}disconnectedCallback(){let t=b.get(this);if(!t)return;let{details:e}=t;if(!e)return;e.removeEventListener("toggle",c),f(e);let n=e.querySelector("summary");n&&n.removeEventListener("click",u,{capture:!0}),t.details=null}toggle(t){let e=b.get(this);if(!e)return;let{details:n}=e;n&&d(n,t)}static get observedAttributes(){return["src","preload"]}attributeChangedCallback(){let t=b.get(this);if(!t)return;let{details:e}=t;e&&p(e,this.src,this.preload)}};let m=DetailsDialogElement;window.customElements.get("details-dialog")||(window.DetailsDialogElement=DetailsDialogElement,window.customElements.define("details-dialog",DetailsDialogElement))},96907:(t,e,n)=>{n.d(e,{Ay:()=>y});let Combobox=class Combobox{constructor(t,e,{tabInsertsSuggestions:n,defaultFirstOption:i,scrollIntoViewOptions:r}={}){this.input=t,this.list=e,this.tabInsertsSuggestions=null==n||n,this.defaultFirstOption=null!=i&&i,this.scrollIntoViewOptions=null!=r?r:{block:"nearest",inline:"nearest"},this.isComposing=!1,e.id||(e.id=`combobox-${Math.random().toString().slice(2,6)}`),this.ctrlBindings=!!navigator.userAgent.match(/Macintosh/),this.keyboardEventHandler=t=>(function(t,e){if(!t.shiftKey&&!t.metaKey&&!t.altKey&&(e.ctrlBindings||!t.ctrlKey)&&!e.isComposing)switch(t.key){case"Enter":o(e.input,e.list)&&t.preventDefault();break;case"Tab":e.tabInsertsSuggestions&&o(e.input,e.list)&&t.preventDefault();break;case"Escape":e.clearSelection();break;case"ArrowDown":e.navigate(1),t.preventDefault();break;case"ArrowUp":e.navigate(-1),t.preventDefault();break;case"n":e.ctrlBindings&&t.ctrlKey&&(e.navigate(1),t.preventDefault());break;case"p":e.ctrlBindings&&t.ctrlKey&&(e.navigate(-1),t.preventDefault());break;default:if(t.ctrlKey)break;e.clearSelection()}})(t,this),this.compositionEventHandler=t=>{var e,n;return e=t,n=this,void(n.isComposing="compositionstart"===e.type,document.getElementById(n.input.getAttribute("aria-controls")||"")&&n.clearSelection())},this.inputHandler=this.clearSelection.bind(this),t.setAttribute("role","combobox"),t.setAttribute("aria-controls",e.id),t.setAttribute("aria-expanded","false"),t.setAttribute("aria-autocomplete","list"),t.setAttribute("aria-haspopup","listbox")}destroy(){this.clearSelection(),this.stop(),this.input.removeAttribute("role"),this.input.removeAttribute("aria-controls"),this.input.removeAttribute("aria-expanded"),this.input.removeAttribute("aria-autocomplete"),this.input.removeAttribute("aria-haspopup")}start(){this.input.setAttribute("aria-expanded","true"),this.input.addEventListener("compositionstart",this.compositionEventHandler),this.input.addEventListener("compositionend",this.compositionEventHandler),this.input.addEventListener("input",this.inputHandler),this.input.addEventListener("keydown",this.keyboardEventHandler),this.list.addEventListener("click",i),this.indicateDefaultOption()}stop(){this.clearSelection(),this.input.setAttribute("aria-expanded","false"),this.input.removeEventListener("compositionstart",this.compositionEventHandler),this.input.removeEventListener("compositionend",this.compositionEventHandler),this.input.removeEventListener("input",this.inputHandler),this.input.removeEventListener("keydown",this.keyboardEventHandler),this.list.removeEventListener("click",i)}indicateDefaultOption(){var t;this.defaultFirstOption&&(null==(t=Array.from(this.list.querySelectorAll('[role="option"]:not([aria-disabled="true"])')).filter(r)[0])||t.setAttribute("data-combobox-option-default","true"))}navigate(t=1){let e=Array.from(this.list.querySelectorAll('[aria-selected="true"]')).filter(r)[0],n=Array.from(this.list.querySelectorAll('[role="option"]')).filter(r),i=n.indexOf(e);if(i===n.length-1&&1===t||0===i&&-1===t){this.clearSelection(),this.input.focus();return}let o=1===t?0:n.length-1;if(e&&i>=0){let e=i+t;e>=0&&e0||t.offsetHeight>0)}let s=window.testScreenReaderDelay||100;let Autocomplete=class Autocomplete{constructor(t,e,n,i=!1){var o;if(this.container=t,this.input=e,this.results=n,this.combobox=new Combobox(e,n,{defaultFirstOption:i}),this.feedback=t.getRootNode().getElementById(`${this.results.id}-feedback`),this.autoselectEnabled=i,this.clearButton=t.getRootNode().getElementById(`${this.input.id||this.input.name}-clear`),this.clientOptions=n.querySelectorAll("[role=option]"),this.feedback&&(this.feedback.setAttribute("aria-live","polite"),this.feedback.setAttribute("aria-atomic","true")),this.clearButton&&!this.clearButton.getAttribute("aria-label")){const t=document.querySelector(`label[for="${this.input.name}"]`);this.clearButton.setAttribute("aria-label","clear:"),this.clearButton.setAttribute("aria-labelledby",`${this.clearButton.id} ${(null==t?void 0:t.id)||""}`)}this.input.getAttribute("aria-expanded")||this.input.setAttribute("aria-expanded","false"),this.results.popover?this.results.matches(":popover-open")&&this.results.hidePopover():this.results.hidden=!0,this.results.getAttribute("aria-label")||this.results.setAttribute("aria-label","results"),this.input.setAttribute("autocomplete","off"),this.input.setAttribute("spellcheck","false"),this.interactingWithList=!1,this.onInputChange=function(t,e=0){let n;return function(...i){clearTimeout(n),n=window.setTimeout(()=>{clearTimeout(n),t(...i)},e)}}(this.onInputChange.bind(this),300),this.onResultsMouseDown=this.onResultsMouseDown.bind(this),this.onInputBlur=this.onInputBlur.bind(this),this.onInputFocus=this.onInputFocus.bind(this),this.onKeydown=this.onKeydown.bind(this),this.onCommit=this.onCommit.bind(this),this.handleClear=this.handleClear.bind(this),this.input.addEventListener("keydown",this.onKeydown),this.input.addEventListener("focus",this.onInputFocus),this.input.addEventListener("blur",this.onInputBlur),this.input.addEventListener("input",this.onInputChange),this.results.addEventListener("mousedown",this.onResultsMouseDown),this.results.addEventListener("combobox-commit",this.onCommit),null==(o=this.clearButton)||o.addEventListener("click",this.handleClear)}destroy(){this.input.removeEventListener("keydown",this.onKeydown),this.input.removeEventListener("focus",this.onInputFocus),this.input.removeEventListener("blur",this.onInputBlur),this.input.removeEventListener("input",this.onInputChange),this.results.removeEventListener("mousedown",this.onResultsMouseDown),this.results.removeEventListener("combobox-commit",this.onCommit)}handleClear(t){t.preventDefault(),"true"===this.input.getAttribute("aria-expanded")&&(this.input.setAttribute("aria-expanded","false"),this.updateFeedbackForScreenReaders("Results hidden.")),this.input.value="",this.container.value="",this.input.focus(),this.input.dispatchEvent(new Event("change")),this.close()}onKeydown(t){if("Escape"===t.key&&this.container.open)this.close(),t.stopPropagation(),t.preventDefault();else if(t.altKey&&"ArrowUp"===t.key&&this.container.open)this.close(),t.stopPropagation(),t.preventDefault();else if(t.altKey&&"ArrowDown"===t.key&&!this.container.open){if(!this.input.value.trim())return;this.open(),t.stopPropagation(),t.preventDefault()}}onInputFocus(){this.interactingWithList||this.fetchResults()}onInputBlur(){this.interactingWithList||this.close()}onCommit({target:t}){if(!(t instanceof HTMLElement)||(this.close(),t instanceof HTMLAnchorElement))return;let e=t.getAttribute("data-autocomplete-value")||t.textContent;this.updateFeedbackForScreenReaders(`${t.textContent||""} selected.`),this.container.value=e,e||this.updateFeedbackForScreenReaders("Results hidden.")}onResultsMouseDown(){this.interactingWithList=!0}onInputChange(){this.feedback&&this.feedback.textContent&&(this.feedback.textContent=""),this.container.removeAttribute("value"),this.fetchResults()}identifyOptions(){let t=0;for(let e of this.results.querySelectorAll('[role="option"]:not([id])'))e.id=`${this.results.id}-option-${t++}`}updateFeedbackForScreenReaders(t){setTimeout(()=>{this.feedback&&(this.feedback.textContent=t)},s)}fetchResults(){let t=this.input.value.trim();if(!t&&!this.container.fetchOnEmpty)return void this.close();let e=this.container.src;if(!e)return;let n=new URL(e,window.location.href),i=new URLSearchParams(n.search.slice(1));i.append("q",t),n.search=i.toString(),this.container.dispatchEvent(new CustomEvent("loadstart")),this.container.fetchResult(n).then(t=>{this.results.innerHTML=t,this.identifyOptions(),this.combobox.indicateDefaultOption();let e=this.results.querySelectorAll('[role="option"]'),n=!!e.length||!!this.results.querySelectorAll('[data-no-result-found="true"]').length,i=e.length,[o]=e,r=null==o?void 0:o.textContent;this.autoselectEnabled&&r?this.updateFeedbackForScreenReaders(`${i} results. ${r} is the top result: Press Enter to activate.`):this.updateFeedbackForScreenReaders(`${i||"No"} results.`),n?this.open():this.close(),this.container.dispatchEvent(new CustomEvent("load")),this.container.dispatchEvent(new CustomEvent("loadend"))}).catch(()=>{this.container.dispatchEvent(new CustomEvent("error")),this.container.dispatchEvent(new CustomEvent("loadend"))})}open(){(this.results.popover?!this.results.matches(":popover-open"):this.results.hidden)&&(this.combobox.start(),this.results.popover?this.results.showPopover():this.results.hidden=!1),this.container.open=!0,this.interactingWithList=!0}close(){(this.results.popover?this.results.matches(":popover-open"):!this.results.hidden)&&(this.combobox.stop(),this.results.popover?this.results.hidePopover():this.results.hidden=!0),this.container.open=!1,this.interactingWithList=!1}};var a,l,u,c,d,h=function(t,e,n,i){if("a"===n&&!i)throw TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!i:!e.has(t))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===n?i:"a"===n?i.call(t):i?i.value:e.get(t)},p=function(t,e,n,i,o){if("m"===i)throw TypeError("Private method is not writable");if("a"===i&&!o)throw TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!o:!e.has(t))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===i?o.call(t,n):o?o.value=n:e.set(t,n),n},f=function(t,e){var n={};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&0>e.indexOf(i)&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,i=Object.getOwnPropertySymbols(t);oe.indexOf(i[o])&&Object.prototype.propertyIsEnumerable.call(t,i[o])&&(n[i[o]]=t[i[o]]);return n};let b=globalThis.HTMLElement||null;let AutoCompleteEvent=class AutoCompleteEvent extends Event{constructor(t,e){var{relatedTarget:n}=e;super(t,f(e,["relatedTarget"])),this.relatedTarget=n}};let m=new WeakMap,v=null;let auto_complete_element_AutoCompleteElement=class auto_complete_element_AutoCompleteElement extends b{constructor(){super(...arguments),a.add(this),l.set(this,null),u.set(this,null),d.set(this,void 0)}static define(t="auto-complete",e=customElements){return e.define(t,this),this}static setCSPTrustedTypesPolicy(t){v=null===t?t:Promise.resolve(t)}get forElement(){var t;if(null==(t=h(this,l,"f"))?void 0:t.isConnected)return h(this,l,"f");let e=this.getAttribute("for"),n=this.getRootNode();return e&&(n instanceof Document||n instanceof ShadowRoot)?n.getElementById(e):null}set forElement(t){p(this,l,t,"f"),this.setAttribute("for","")}get inputElement(){var t;return(null==(t=h(this,u,"f"))?void 0:t.isConnected)?h(this,u,"f"):this.querySelector("input")}set inputElement(t){p(this,u,t,"f"),h(this,a,"m",c).call(this)}connectedCallback(){this.isConnected&&(h(this,a,"m",c).call(this),new MutationObserver(()=>{m.get(this)||h(this,a,"m",c).call(this)}).observe(this,{subtree:!0,childList:!0}))}disconnectedCallback(){let t=m.get(this);t&&(t.destroy(),m.delete(this))}get src(){return this.getAttribute("src")||""}set src(t){this.setAttribute("src",t)}get value(){return this.getAttribute("value")||""}set value(t){this.setAttribute("value",t)}get open(){return this.hasAttribute("open")}set open(t){t?this.setAttribute("open",""):this.removeAttribute("open")}get fetchOnEmpty(){return this.hasAttribute("fetch-on-empty")}set fetchOnEmpty(t){this.toggleAttribute("fetch-on-empty",t)}async fetchResult(t){var e;null==(e=h(this,d,"f"))||e.abort();let{signal:n}=p(this,d,new AbortController,"f"),i=await fetch(t.toString(),{signal:n,headers:{Accept:"text/fragment+html"}});if(!i.ok)throw Error(await i.text());return v?(await v).createHTML(await i.text(),i):await i.text()}static get observedAttributes(){return["open","value","for"]}attributeChangedCallback(t,e,n){var i,o;if(e===n)return;let r=m.get(this);if(r)switch((this.forElement!==(null==(i=m.get(this))?void 0:i.results)||this.inputElement!==(null==(o=m.get(this))?void 0:o.input))&&h(this,a,"m",c).call(this),t){case"open":null===n?r.close():r.open();break;case"value":null!==n&&(r.input.value=n),this.dispatchEvent(new AutoCompleteEvent("auto-complete-change",{bubbles:!0,relatedTarget:r.input}))}}};l=new WeakMap,u=new WeakMap,d=new WeakMap,a=new WeakSet,c=function(){var t;null==(t=m.get(this))||t.destroy();let{forElement:e,inputElement:n}=this;if(!e||!n)return;let i="true"===this.getAttribute("data-autoselect");m.set(this,new Autocomplete(this,n,e,i)),e.setAttribute("role","listbox")};let g="u">typeof globalThis?globalThis:window;try{g.AutocompleteElement=g.AutoCompleteElement=auto_complete_element_AutoCompleteElement.define()}catch(t){if(!(g.DOMException&&t instanceof DOMException&&"NotSupportedError"===t.name)&&!(t instanceof ReferenceError))throw t}let y=auto_complete_element_AutoCompleteElement}}]); +//# sourceMappingURL=19681-d5655c250b4f.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/19718-9f5f984a64d0.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/19718-9f5f984a64d0.js" new file mode 100644 index 0000000..46eacc1 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/19718-9f5f984a64d0.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:19718-9f5f984a64d0.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[19718],{13195:(e,t,s)=>{s.d(t,{t:()=>a});var n=s(87363),i=s(21403),r=s(97797);function o(e){let t=e.getAttribute("data-required-value"),s=e.getAttribute("data-required-value-prefix");if(e.value===t)e.setCustomValidity("");else{let n=t;s&&(n=s+n),e.setCustomValidity(n)}}(0,n.eC)("[data-required-value]",function(e){o(e.currentTarget)}),(0,r.on)("change","[data-required-value]",function(e){let t=e.currentTarget;o(t),a(t.form)}),(0,n.eC)("[data-required-trimmed]",function(e){let t=e.currentTarget;""===t.value.trim()?t.setCustomValidity(t.getAttribute("data-required-trimmed")):t.setCustomValidity("")}),(0,r.on)("change","[data-required-trimmed]",function(e){let t=e.currentTarget;""===t.value.trim()?t.setCustomValidity(t.getAttribute("data-required-trimmed")):t.setCustomValidity(""),a(t.form)}),(0,n.uE)("input[pattern],input[required],textarea[required],input[data-required-change],textarea[data-required-change],input[data-required-value],textarea[data-required-value]",e=>{let t=e.checkValidity();function s(){let s=e.checkValidity();s!==t&&e.form&&a(e.form),t=s}e.addEventListener("input",s),e.addEventListener("blur",function t(){e.removeEventListener("input",s),e.removeEventListener("blur",t)})});let l=new WeakMap;function a(e){let t=e.checkValidity();for(let s of e.querySelectorAll("button[data-disable-invalid]"))s.disabled=!t}(0,i.lB)("button[data-disable-invalid]",{constructor:HTMLButtonElement,initialize(e){let t=e.form;t&&(l.get(t)||(t.addEventListener("change",()=>a(t)),l.set(t,!0)),e.disabled=!t.checkValidity())}}),(0,i.lB)("input[data-required-change], textarea[data-required-change]",function(e){let t="radio"===e.type&&e.form?e.form.elements.namedItem(e.name).value:null;function s(s){let n=e.form;if(s&&"radio"===e.type&&n&&t)for(let s of n.elements.namedItem(e.name))s instanceof HTMLInputElement&&s.setCustomValidity(e.value===t?"unchanged":"");else e.setCustomValidity(e.value===(t||e.defaultValue)?"unchanged":"")}e.addEventListener("input",s),e.addEventListener("change",s),s(),e.form&&a(e.form)}),document.addEventListener("reset",function(e){if(e.target instanceof HTMLFormElement){let t=e.target;setTimeout(()=>a(t))}})},98032:(e,t,s)=>{s.d(t,{O:()=>y});var n=s(97797),i=s(54852),r=s(70987),o=s(90891),l=s(96123),a=s(2025),m=s(21403),c=s(58371),u=s(51519);let d=[];function f(e){e.querySelector(".js-write-tab").click();let t=e.querySelector(".js-comment-field");t.focus(),(0,n.h)(t,"change")}function j(e){return e.querySelector(".js-comment-edit-form-deferred-include-fragment")}function g(e){j(e)?.setAttribute("loading","eager")}function y(e){let t=e.currentTarget.closest("form"),s=e.currentTarget.getAttribute("data-confirm-text");if((0,a.Av)(t)&&!confirm(s))return!1;for(let e of t.querySelectorAll("input, textarea"))e.value=e.defaultValue,e.classList.contains("session-resumable-canceled")&&(e.classList.add("js-session-resumable"),e.classList.remove("session-resumable-canceled"));let n=e.currentTarget.closest(".js-comment");return n&&n.classList.remove("is-comment-editing"),!0}function p(e){let t=e.querySelector("ol");if(t)for(let e of(t.textContent="",d.map(e=>{let t=document.createElement("li");return t.textContent=e,t})))t.appendChild(e);e.hidden=!1}function h(e,t){let s=e.querySelector(".js-comment-show-on-error");s&&(s.hidden=!t);let n=e.querySelector(".js-comment-hide-on-error");n&&(n.hidden=t)}(0,m.lB)(".js-comment-header-actions-deferred-include-fragment",{subscribe:e=>(0,l.Rt)(e,"loadstart",()=>{g(e.closest(".js-comment"))},{capture:!1,once:!0})}),(0,m.lB)(".js-comment .contains-task-list",{add:e=>{g(e.closest(".js-comment"))}}),(0,n.on)("click",".js-comment-edit-button",function(e){let t=e.currentTarget.closest(".js-comment");t.classList.add("is-comment-editing");let s=j(t);s?s.addEventListener("include-fragment-replaced",()=>f(t),{once:!0}):f(t);let n=e.currentTarget.closest(".js-dropdown-details");n&&n.removeAttribute("open")}),(0,n.on)("click",".js-comment-hide-button",function(e){let t=e.currentTarget.closest(".js-comment");h(t,!1);let s=t.querySelector(".js-minimize-comment");s&&s.classList.remove("d-none");let n=e.currentTarget.closest(".js-dropdown-details");n&&n.removeAttribute("open")}),(0,n.on)("click",".js-comment-hide-minimize-form",function(e){e.currentTarget.closest(".js-minimize-comment").classList.add("d-none")}),(0,n.on)("click",".js-comment-cancel-button",y),(0,n.on)("click",".js-cancel-issue-edit",function(e){e.currentTarget.closest(".js-details-container").querySelector(".js-comment-form-error").hidden=!0}),(0,c.JW)(".js-comment-delete, .js-comment .js-comment-update, .js-issue-update, .js-comment-minimize, .js-comment-unminimize",function(e,t,s){let n=e.closest(".js-comment");n.classList.add("is-comment-loading");let i=n.getAttribute("data-body-version");i&&s.headers.set("X-Body-Version",i)}),(0,c.JW)(".js-comment .js-comment-update",async function(e,t){let s,n=e.closest(".js-comment"),r=n.querySelector(".js-comment-update-error"),l=n.querySelector(".js-comment-body-error");r instanceof HTMLElement&&(r.hidden=!0),l instanceof HTMLElement&&(l.hidden=!0),d=[],e.classList.add("is-dirty");try{s=await t.json()}catch(e){if(422===e.response.status){let t=JSON.parse(e.response.text);if(t.errors){r instanceof HTMLElement&&(r.textContent=`There was an error posting your comment: ${t.errors.join(", ")}`,r.hidden=!1);return}}else throw e}finally{e.classList.remove("is-dirty")}if(!s)return;let m=s.json;m.errors&&m.errors.length>0&&(d=m.errors,p(l));let c=n.querySelector(".js-comment-body"),u=null!=c&&"async"===e.getAttribute("data-submitting-tracking-block-update")&&(0,a.it)(c,!0,!0);if(c&&m.body&&!u&&(0,i.Eu)(c,m.body,{keepInputValues:!0}),null!=m.source){let e=n.querySelector(".js-comment-field");if(e&&(e.defaultValue=m.source,u||(e.value=m.source)),m.default_merge_commit_message){if(document.querySelector(".js-merge-pr.is-merging")){let e=document.querySelector(".js-merge-pull-request textarea");e instanceof HTMLTextAreaElement&&e.value===e.defaultValue&&(e.value=e.defaultValue=m.default_merge_commit_message)}if(m.default_squash_commit_message&&document.querySelector(".js-merge-pr.is-squashing")){let e=document.querySelector(".js-merge-pull-request textarea");e instanceof HTMLTextAreaElement&&e.value===e.defaultValue&&(e.value=e.defaultValue=m.default_squash_commit_message)}}document.querySelector(".js-merge-box-button-merge")?.setAttribute("data-input-message-value",m.default_merge_commit_message),document.querySelector(".js-merge-box-button-squash")?.setAttribute("data-input-message-value",m.default_squash_commit_message)}n.setAttribute("data-body-version",m.newBodyVersion);let f=n.querySelector(".js-body-version");f instanceof HTMLInputElement&&(f.value=m.newBodyVersion);let j=n.querySelector(".js-discussion-poll");for(let e of(j&&m.poll&&(j.innerHTML=m.poll),n.querySelectorAll("input, textarea")))e.defaultValue=e.value;n.classList.remove("is-comment-stale"),e.hasAttribute("data-submitting-tracking-block-update")||n.classList.remove("is-comment-editing");let g=n.querySelector(".js-comment-edit-history");if(g){let e=await (0,o.Ts)(document,m.editUrl);(0,i.r9)(g,e)}}),(0,m.lB)(".js-comment-body-error",{add:e=>{d&&d.length>0&&p(e)}}),(0,c.JW)(".js-comment .js-comment-delete, .js-comment .js-comment-update, .js-comment-minimize, .js-comment-unminimize",async function(e,t){let s,n=e.closest(".js-comment");try{await t.text()}catch(e){if(422===(s=e).response.status){let e;try{e=JSON.parse(s.response.text)}catch{}e&&e.stale&&n.classList.add("is-comment-stale")}else throw s}finally{e.dispatchEvent(new CustomEvent("submit:complete",{bubbles:!0,detail:{error:s}}))}n.classList.remove("is-comment-loading")}),(0,c.JW)(".js-timeline-comment-unminimize, .js-timeline-comment-minimize",async function(e,t){let s=e.closest(".js-minimize-container");try{let e=await t.html();s.replaceWith(e.html)}catch{h(s,!0)}}),(0,c.JW)(".js-discussion-comment-unminimize, .js-discussion-comment-minimize",async function(e,t){let s=e.closest(".js-discussion-comment"),n=s.querySelector(".js-discussion-comment-error");n&&(n.hidden=!0);try{let e=await t.html();s.replaceWith(e.html)}catch(e){if(e.response.status>=400&&e.response.status<500){if(e.response.html){let t=e.response.html.querySelector(".js-discussion-comment").getAttribute("data-error");n instanceof HTMLElement&&(n.textContent=t,n.hidden=!1)}}else throw e}}),(0,c.JW)(".js-comment-delete",async function(e,t){await t.json();let s=e.closest(".js-comment-container")||e.closest(".js-line-comments"),n=s&&s.querySelectorAll("react-partial[partial-name='automated-review-comment']").length>0;s&&(1!==s.querySelectorAll(".js-comment").length||n)&&(s=e.closest(".js-comment"));let i=s?.closest(".js-comment-container")||s?.closest(".js-line-comments");if(s?.remove(),i&&1===i.querySelectorAll(".js-comment").length)for(let e of i.querySelectorAll(".js-delete-on-last-reply-deleted"))e.remove()}),(0,c.JW)(".js-issue-update",async function(e,t){let s,n=e.closest(".js-details-container"),i=n.querySelector(".js-comment-form-error");try{s=await t.json()}catch(e){i.textContent=e.response?.json?.errors?.[0]||"Something went wrong. Please try again.",i.hidden=!1}if(!s)return;n.classList.remove("open"),i.hidden=!0;let r=s.json;if(null!=r.issue_title){n.querySelector(".js-issue-title").textContent=r.issue_title;let e=n.closest(".js-issues-results");if(e){if(e.querySelector(".js-merge-pr.is-merging")){let t=e.querySelector(".js-merge-pull-request .js-merge-title");t instanceof HTMLInputElement&&t.value===t.defaultValue&&(t.value=t.defaultValue=r.default_merge_commit_title)}else if(e.querySelector(".js-merge-pr.is-squashing")){let t=e.querySelector(".js-merge-pull-request .js-merge-title");t instanceof HTMLInputElement&&t.value===t.defaultValue&&(t.value=t.defaultValue=r.default_squash_commit_title)}let t=e.querySelector("button[value=merge]");t&&t.setAttribute("data-input-title-value",r.default_merge_commit_title);let s=e.querySelector("button[value=squash]");s&&s.setAttribute("data-input-title-value",r.default_squash_commit_title)}}for(let t of(document.title=r.page_title,e.elements))(t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement)&&(t.defaultValue=t.value)}),(0,c.JW)(".js-comment-minimize",async function(e,t){await t.json();let s=e.closest(".js-comment"),n=s.querySelector(".js-minimize-comment");if(n&&n.classList.contains("js-update-minimized-content")){let t=e.querySelector("input[type=submit], button[type=submit]");t&&t.classList.add("disabled");let n=s.closest(".js-comment-container");n&&await (0,u.updateContent)(n)}else{n&&n.classList.add("d-none");let t=e.closest(".unminimized-comment");t.classList.add("d-none"),t.classList.remove("js-comment");let s=e.closest(".js-minimizable-comment-group").querySelector(".minimized-comment");s&&s.classList.remove("d-none"),s&&s.classList.add("js-comment")}}),(0,c.JW)(".js-comment-unminimize",async function(e,t){await t.json();let s=e.closest(".js-minimizable-comment-group"),n=s.querySelector(".unminimized-comment"),i=s.querySelector(".minimized-comment");if(n)n.classList.remove("d-none"),n.classList.add("js-comment"),i&&i.classList.add("d-none"),i&&i.classList.remove("js-comment");else{if(i){let e=i.querySelector(".timeline-comment-actions");e&&e.classList.add("d-none"),i.classList.remove("js-comment")}let e=s.closest(".js-comment-container");await (0,u.updateContent)(e)}}),(0,n.on)("details-menu-select",".js-comment-edit-history-menu",e=>{let t=e.detail.relatedTarget.getAttribute("data-edit-history-url");if(!t)return;e.preventDefault();let s=(0,o.Ts)(document,t);(0,r.r)({content:s,dialogClass:"Box-overlay--wide overflow-visible",errorMessage:"Couldn't display edit history diff"})},{capture:!0})}}]); +//# sourceMappingURL=19718-459f2b3a6037.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/2116.69bec32a57ac1a092367.module.css" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/2116.69bec32a57ac1a092367.module.css" new file mode 100644 index 0000000..bed580c --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/2116.69bec32a57ac1a092367.module.css" @@ -0,0 +1,2 @@ +.styles-module__groupHeading--BbDLO{align-items:center;display:flex;justify-content:space-between;width:100%}.styles-module__searchSpinner--vQkfE{inset-block-start:50%;inset-inline-end:var(--base-size-12);pointer-events:none;position:absolute;translate:0 -40%} +/*# sourceMappingURL=2116-06854b4e8b07.js.map*/ \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/22116-390116525151.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/22116-390116525151.js" new file mode 100644 index 0000000..880bcc8 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/22116-390116525151.js" @@ -0,0 +1,65 @@ +performance.mark("js-parse-end:22116-390116525151.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[22116],{1214:(e,t,r)=>{r.d(t,{_:()=>MarkdownLine});var n=r(35750),i=r(18150),o=r(85242),l=r(50467),s=r(24804),a=r(78625),d=r(65012),c=r(48749),u=r(3904),f=r(16058),p=new WeakMap,m=new WeakMap,h=new WeakMap;let MarkdownLine=class MarkdownLine{get prefixes(){return(0,o._)(this,h,(0,n._)(this,h)??(0,a.H5)((0,n._)(this,p),this.start,this.end).filter(e=>"delimiter"===e.type&&u.T.has(e.tokenType)))}get lastPrefix(){return this.prefixes.at(-1)}get contentStart(){return this.lastPrefix?.position?.end.offset??this.start}get content(){return(0,n._)(this,m).slice(this.contentStart,this.end)}get isBlank(){return(0,f.Wq)(this.content)||0===this.content.trim().length}previous(){return 0===this.start?null:MarkdownLine.atOffset((0,n._)(this,p),(0,n._)(this,m),this.start-1)}next(){return this.end>=(0,n._)(this,m).length?null:MarkdownLine.atOffset((0,n._)(this,p),(0,n._)(this,m),this.end+1)}overlaps(e,t){return e>=this.start&&ethis.start&&t<=this.end||e<=this.start&&t>=this.end}contains(e){return e>=this.start&&e(0,d.z)(t)&&(0,c.h)(t).endOffset<=e)}isOffsetAfterPrefixes(e){return this.lastPrefix===this.prefixesBefore(e).at(-1)}static atOffset(e,t,r){let n=(0,s.W)(t,r);return n&&new MarkdownLine(e,t,n.start,n.end)}static linesAtRange(e,t,r,n){return(0,s.b)(t,r,n).map(({start:r,end:n})=>new MarkdownLine(e,t,r,n))}constructor(e,t,r,n){(0,l._)(this,"start",void 0),(0,l._)(this,"end",void 0),(0,i._)(this,p,{writable:!0,value:void 0}),(0,i._)(this,m,{writable:!0,value:void 0}),(0,i._)(this,h,{writable:!0,value:null}),(0,o._)(this,p,e),(0,o._)(this,m,t),this.start=r,this.end=n}}},1830:(e,t,r)=>{r.d(t,{c:()=>c,i:()=>f});var n=r(53839),i=r(24804),o=r(9445),l=r(16058),s=r(1214),a=r(21210),d=r(3266);let c=n.YH.define(),u=n.$t.transactionFilter.of(e=>{let t=e.annotation(c);if(!e.isUserEvent("input")||!e.docChanged||e.changes.empty||"all"===t)return e;let r=(0,d.wk)(e.startState),u=e.startState.doc.toString(),f=[];e.changes.iterChanges((n,d,c,p,m)=>{let h=m.toString();if(!h.includes(` +`))return;let g=s._.atOffset(r,u,n),y=(0,o.KR)(g?.prefixesBefore(n)??[],t);if(!g||0===y.length)return;let k=(0,o.z0)(y);if(""===k)return;let b=(0,a.D)(h),x=(0,i.b)(h,0,h.length),v=g.lastPrefix?.tokenType==="listItemPrefix"||g.lastPrefix?.tokenType==="taskListCheck";for(let t=1;t0){f.push(...n);continue}}f.push({from:c+r.start,insert:k});continue}}});let p=n.VR.of(f,e.newDoc.length);return[e,{sequential:!0,changes:p,annotations:[c.of("all")],selection:e.newSelection.map(p,1)}]}),f=[d.YZ,u]},1878:(e,t,r)=>{r.d(t,{g:()=>s});var n=r(74848),i=r(16522),o=r(38621),l=r(64954);function s(e){let t,r=(0,i.c)(2);return r[0]!==e?(t=(0,n.jsx)(l.A.IconButton,{onMouseDown:a,variant:"invisible",icon:o.PaperclipIcon,"aria-label":"Attachment",...e}),r[0]=e,r[1]=t):t=r[1],t}function a(e){return e.preventDefault()}try{s.displayName||(s.displayName="FileUploadButton")}catch{}},3266:(e,t,r)=>{r.d(t,{ih:()=>N,wk:()=>E,ui:()=>L,YZ:()=>C,AT:()=>M});var n=r(53839),i=r(24774),o=r(38106),l=r(16143),s=r(47970),a=r(76814),d=r(7711),c=r(75617),u=r(47601);function f(e){(0,s.YR)(e,"element",e=>{if((0,u.dz)(e,"code")||(0,u.dz)(e,"pre"))return e.properties={...e.properties,spellcheck:"false",autocorrect:"off",autocapitalize:"off",writingsuggestions:"false"},a._Z})}let p="dataKey";var m=r(65012),h=r(16961),g=r(23144),y=r(78625);function k(e){if(!(0,u.dz)(e,"pre"))return!1;let t=e.children[0];return!!t&&t?.type==="element"&&"codeFencedFence"===t.properties[c.Lm]}var b=r(32964),x=r(63142),v=r(72569);let _=(0,r(36380).A)({},x.j,{allowComments:!0,ancestors:{li:["ol","ul"],dd:["dl"],dt:["dl"],summary:["details"],source:["audio","video","picture"],figcaption:["figure"]},tagNames:["video","picture","source","figure","figcaption"],attributes:{video:["controls","src","preload","playsinline","aria-label"],source:["src","srcset","type","media","sizes","height","width"]}},{attributes:{"*":[p]}},c.JZ,{attributes:{span:[["className",/^hljs-/]]}},b.jr,(e,t)=>Array.isArray(e)&&Array.isArray(t)?e.concat(t):void 0);_.tagNames&&(_.tagNames=_.tagNames.filter(e=>"input"!==e));var w=r(21210);function I(e){let t=e.doc.toString(),r=(0,w.D)(t),n=function(e,t,r=!0){let n,i,x,w,I=(0,l._)(e,{...c.vQ,allowDangerousHtml:!0});if((0,s.YR)(I,"element",e=>{let t=null;for(let r of e.children)if("element"===r.type){if(t&&function(e,t){if(e.tagName!==t.tagName)return!1;if(!e.properties&&!t.properties)return!0;if(!e.properties||!t.properties)return!1;let r=Object.keys(e.properties).filter(e=>e!==p);if(r.length!==Object.keys(t.properties).filter(e=>e!==p).length)return!1;for(let n of r)if(e.properties[n]!==t.properties[n])return!1;return!0}(r,t)){let e="number"==typeof t.properties?.[p]?t.properties[p]:-1;r.properties[p]=e+1}t=r}}),(0,s.YR)(I,"element",e=>{if(!k(e))return;let t=function(e){let t=e.children.find(e=>(0,u.dz)(e,"code"));if(!t||1!==t.children.length)return null;let r=t.children[0];return r?.type==="text"?r:null}(e);t&&(t.value=t.value.trimEnd())}),(0,g.A)({languages:h.l})(I,new d.T(t)),(0,s.YR)(I,"element",e=>{if(k(e)&&(0,m.z)(e)){let r=t.slice(e.position.start.offset,e.position.end.offset),n=`${r.slice(0,r.indexOf(` +`)+1)}`,i=(0,y.On)(e.position.start,n),o=e.children.find(e=>(0,u.dz)(e,"code"));o&&function e(t,r){for(let n of r)if("text"===n.type)t=(0,y.On)(t,n.value);else if("element"===n.type){let r=e(t,n.children);n.position={start:{...t},end:{...r}},t=r}return t}(i,[o])}}),!r||(n=!1,(0,s.YR)(e,"html",()=>(n=!0,a.dc)),!n))return(0,b.vp)(I),f(I),I;let j=(0,o.l)(I,{tagfilter:!0,passThrough:["delimiter"],file:new d.T(t)});i=t.split(` +`),x={column:(i.at(-1)?.length??0)+1,line:i.length+1,offset:t.length},w=-1,(0,a.VG)(j,(e,t)=>{if(t.length<=w)return a.dc;w=t.length,"element"===e.type&&(0,m.z)(e)&&!(e.position.end.offset>=x.offset)&&(e.position.end={...x})},!0);let S=(0,v.a)(j,_);return(0,a.VG)(S,"element",(e,r)=>{let n;if("video"!==e.tagName||!Array.isArray(e.children))return;let i=r[r.length-1];if(!i||!Array.isArray(i.children))return;let o=i.children.indexOf(e);if(-1===o)return;let l="element"===i.type&&"p"===i.tagName,s=l?r[r.length-2]:void 0,a=s&&Array.isArray(s.children)?s:i;if(!Array.isArray(a.children))return;let d=a===i?o:a.children.indexOf(i);if(-1===d)return;let c=e.properties??(e.properties={});t&&e.position&&"number"==typeof e.position.start?.offset&&"number"==typeof e.position.end?.offset&&(n=t.slice(e.position.start.offset,e.position.end.offset));let u=c.controls;void 0===u?c.controls=!0:"false"===u?c.controls=!1:"true"===u&&(c.controls=!0),void 0===c.preload&&(c.preload="metadata");let f="playsinline",p=c[f];void 0===p&&Object.prototype.hasOwnProperty.call(c,"playsInline")&&(p=c[f="playsInline"]);let h=e=>{c.playsinline=e,c.playsInline=e},g="string"==typeof n&&/playsinline\s*=\s*['"]?false['"]?/i.test(n);"string"==typeof n&&/playsinline\s*=\s*['"]?true['"]?/i.test(n),void 0===p?h(!g&&!0):"false"===p||!1===p?h(!1):("true"===p||!0===p)&&h(!0);let y=[];for(let t of e.children)("text"!==t.type||""!==t.value.trim())&&("element"===t.type&&"properties"in t&&t.properties?.dataDelimiter==="htmlTag"||y.push(t));if(e.children=[],y.length>0){let t=y.filter(e=>(0,m.z)(e)).map(e=>({child:e,start:e.position.start})).reduce((e,t)=>e?t.start.offset{let t=null;return{update:r=>{r.docChanged&&(t&&clearTimeout(t),t=setTimeout(()=>e.dispatch({effects:j.of(I(e.state))})))}}}),T=n.sU.define({create:I,update:(e,t)=>t.effects.find(e=>e.is(j))?.value??e,provide:()=>[S]}),C=T;function E(e){return e.field(T).markdownTree}function N(e){return e.field(T).htmlTree}function M(e){return e.effects.some(e=>e.is(j))}let L=M},3398:(e,t,r)=>{r.d(t,{A:()=>s});var n=r(74848),i=r(12683),o=r(34164);let l=({children:e,disabled:t,required:r,visuallyHidden:l,sx:s,as:a="label",className:d,...c})=>(0,n.jsx)(i.EY,{as:a,sx:{color:t?"fg.muted":"fg.default",cursor:t?"not-allowed":"pointer",...s},className:(0,o.$)(l?(0,o.$)("sr-only",d):d,"InputLabel-module__Text--xY8s7"),...c,children:r?(0,n.jsxs)("span",{className:"InputLabel-module__Box--dyD6H",children:[(0,n.jsx)("div",{className:"InputLabel-module__Box_1--HuT0E",children:e}),(0,n.jsx)("span",{children:"*"})]}):e}),s=l;try{l.displayName||(l.displayName="InputLabel")}catch{}},3904:(e,t,r)=>{r.d(t,{C:()=>c,T:()=>d});var n=r(47970),i=r(76814),o=r(65012);function l(e,t,r){e.children??(e.children=[]),e.children.splice(t,0,r),(0,o.z)(e)&&(0,o.z)(r)&&(r.position.start.offsete.position.end.offset&&Object.assign(e.position.end,r.position.end))}function s(e,t,r=!1){let n=void 0!==e.children&&(t===e.children.length-1||-1===t),i=e.children?.splice(t,1)[0];if(r&&i&&(0,o.z)(e)&&(0,o.z)(i)){if(0===t){let t=e.children?.[0];t&&Object.assign(e.position.start,t.position?.start)}else if(n){let t=e.children?.at(-1);t&&Object.assign(e.position.end,t.position?.end)}}return i}var a=r(91886);let d=new Set(["listItemIndent","listItemPrefix","blockQuotePrefix","linePrefix","taskListCheck"]);function c(){return{transforms:[u]}}function u(e){(0,i.VG)(e,"list",(e,t)=>{let r=t.at(-1),n=(r?.children?.indexOf(e)??-1)+1;if(!r||0===n)return;let i=e.children.at(-1);for(;i?.type==="delimiter"&&"blockQuotePrefix"===i.tokenType;)!function(e,t=!1){s(e,-1,t)}(e,!0),l(r,n,i),i=e.children.at(-1)}),(0,n.YR)(e,e=>{let t=null;for(let[c,u]of function*(e){if(e.children)for(let t=e.children.length-1;t>=0;t--){let r=e.children[t];r&&(yield[t,r])}}(e)){var r,n,i;if("delimiter"===u.type&&d.has(u.tokenType)&&t&&(r=t,(0,o.z)(u)&&(0,o.z)(r)&&u.position.end.offset===r.position.start.offset)&&(n=t,!a.fD.has(n.type))){s(e,c),l(t,0,u);continue}if("listItem"===u.type)for(;t?.type==="delimiter"&&d.has(t.tokenType);)s(e,c+1),i=t,l(u,u.children?.length??0,i),t=e.children?.[c+1]??null;t=u}})}},9445:(e,t,r)=>{function n(e,t){switch(t){case"escapeBlockquote":return e.slice(0,e.findLastIndex(e=>"blockQuotePrefix"===e.tokenType));case"escapeList":return e.slice(0,e.findLastIndex(e=>"listItemPrefix"===e.tokenType||"listItemIndent"===e.tokenType));case"all":return[];case void 0:return e}}function i(e){return" ".repeat(e.length)}function o(e){return e.map(e=>{switch(e.tokenType){case"listItemPrefix":return i(e.raw);case"taskListCheck":return"";default:return e.raw}}).join("")}r.d(t,{KR:()=>n,cz:()=>i,z0:()=>o})},9880:(e,t,r)=>{r.d(t,{P:()=>p});var n=r(74848),i=r(16522),o=r(59403),l=r(77430),s=r(5524),a=r(74508);let d={triggerChar:"@"},c=e=>({value:e.identifier,render:t=>(0,n.jsxs)(s.l.Item,{...t,children:[e.avatarUrl&&(0,n.jsx)(s.l.LeadingVisual,{children:(0,n.jsx)(l.r,{size:16,src:e.avatarUrl})}),(0,n.jsx)("span",{className:"use-mention-suggestions-module__identifierText--jeSK0",children:e.identifier})," ",(0,n.jsx)(s.l.Description,{truncate:!0,children:e.description})]})}),u=(e,t)=>{let r=Math.max((0,o.dt)(e,t.identifier),(0,o.dt)(e,t.description));return r===o.IP?r:r>0&&t.participant?o.M4:t.participant?r+o.Dx:r},f=(e,t)=>e.participant&&!t.participant?-1:t.participant&&!e.participant?1:e.identifier.localeCompare(t.identifier),p=e=>{let t,r,n=(0,i.c)(4);n[0]!==e?(t=(0,a.C)(e,u,f,c),n[0]=e,n[1]=t):t=n[1];let o=t;return n[2]!==o?(r={calculateSuggestions:o,trigger:d},n[2]=o,n[3]=r):r=n[3],r}},10242:(e,t,r)=>{r.d(t,{A:()=>l});var n=r(74848),i=r(16522),o=r(84268);let l=e=>{let t,r=(0,i.c)(2),{feedbackUrl:l}=e;return r[0]!==l?(t=(0,n.jsx)(o.A,{className:"FeedbackLink-module__link--Ga4DP",href:l,inline:!0,children:"Give feedback"}),r[0]=l,r[1]=t):t=r[1],t};try{l.displayName||(l.displayName="FeedbackLink")}catch{}},11635:(e,t,r)=>{r.d(t,{f:()=>d,x:()=>c});var n=r(74848),i=r(16522),o=r(38621),l=r(84268),s=r(76720),a=r(33083);let d="https://github-grid.enterprise.slack.com/archives/C08M545RDCN";function c(e){let t,r,c,u,f,p,m=(0,i.c)(8),{onChangeViewMode:h}=e;return m[0]!==h?(t=(0,n.jsx)(a.Y,{onChangeViewMode:h,selectedView:"hybrid"}),m[0]=h,m[1]=t):t=m[1],m[2]===Symbol.for("react.memo_cache_sentinel")?(r=(0,n.jsx)(s.E.Visual,{children:(0,n.jsx)(o.AlertIcon,{size:"medium"})}),c=(0,n.jsx)(s.E.Heading,{children:"Something went wrong"}),m[2]=r,m[3]=c):(r=m[2],c=m[3]),m[4]===Symbol.for("react.memo_cache_sentinel")?(u={textAlign:"center",maxWidth:"700px"},m[4]=u):u=m[4],m[5]===Symbol.for("react.memo_cache_sentinel")?(f=(0,n.jsxs)(s.E,{children:[r,c,(0,n.jsxs)(s.E.Description,{style:u,children:["The hybrid Markdown editing experience is temporarily unavailable due to an unknown error. Please"," ",(0,n.jsx)(l.A,{inline:!0,href:d,children:"report this error"})," ","to the team along with browser console logs, if possible."]})]}),m[5]=f):f=m[5],m[6]!==t?(p=(0,n.jsxs)(n.Fragment,{children:[t,f]}),m[6]=t,m[7]=p):p=m[7],p}try{c.displayName||(c.displayName="ErrorFallback")}catch{}},13233:(e,t,r)=>{r.d(t,{WZ:()=>f,_4:()=>u,_n:()=>c,kH:()=>d});var n=r(1214),i=r(78625),o=r(65012),l=r(3266);let s=(e,t,r)=>(0,i.Uh)(e,t,r).find(e=>"heading"===e.type),a=e=>{let t=(0,l.wk)(e.state),r=e.state.doc.toString(),{from:i,to:o}=e.state.selection.main,a=n._.linesAtRange(t,r,i,o).map(e=>s(t,e.start,e.end));return a.some(e=>e&&"heading"===e.type)?a:null},d=e=>{let t=a(e),r=t?.filter(e=>!!e&&"heading"===e.type)??[];if(0===r.length||r.length!==t?.length)return;let n=r[0].depth;return r.every(e=>e.depth===n)?n:void 0},c=(e,t)=>{let r=a(e);return!(!r||"increase"===t&&r.every(e=>!e||6===e.depth)||"decrease"===t&&r.every(e=>!e||1===e.depth))},u=(e,t)=>{let r;e.hasFocus||e.focus();let a=(0,l.wk)(e.state),d=e.state.doc.toString(),c=e.state.selection.main,u=n._.linesAtRange(a,d,c.from,c.to),f=`${"#".repeat(t)} `,p=u.map(e=>s(a,e.start,e.end)),m=!(p.length>0&&p.every(e=>e?.depth===t)),h=[];for(let e of u){let t=s(a,e.start,e.end),n=null;if(t)for(let r of t.children??[]){if(!(0,o.z)(r)||"delimiter"!==r.type)continue;let t="atxHeadingSequence"===r.tokenType,i="setextHeadingLine"===r.tokenType;if(t||i){if(n=r,t)h.push({from:r.position.start.offset,to:r.position.end.offset+1});else{let t=e.next();t&&h.push({from:t.start,to:t.end})}break}}if(m){h.push({from:e.start,insert:f});let t=n&&(0,o.z)(n)&&(0,i.DV)(c.from,c.to,n.position.start.offset,n.position.end.offset,!0);c.empty&&(c.from===e.start||t)&&(r={anchor:e.start+f.length})}}return e.dispatch({changes:h,selection:r,userEvent:"input",scrollIntoView:!0}),!0},f=(e,t)=>{if(!e||!c(e,t))return!1;let r=(0,l.wk)(e.state),i=e.state.doc.toString(),{from:a,to:d}=e.state.selection.main,u=n._.linesAtRange(r,i,a,d),f=[];for(let e of u){let n,i=s(r,e.start,e.end);if(i)for(let r of(n="increase"===t?Math.min(6,i.depth+1):Math.max(1,i.depth-1),i.children??[])){if(!(0,o.z)(r)||"delimiter"!==r.type)continue;let t="atxHeadingSequence"===r.tokenType,i="setextHeadingLine"===r.tokenType;if(t||i){if(t)f.push({from:r.position.start.offset,to:r.position.end.offset,insert:"#".repeat(n)});else{let t=e.next();t&&(f.push({from:t.start,to:t.end}),f.push({from:e.start,insert:`${"#".repeat(n)} `}))}break}}}return 0!==f.length&&(e.dispatch({changes:f,userEvent:"input",scrollIntoView:!0}),!0)}},13659:(e,t,r)=>{r.d(t,{Z:()=>a});var n=r(74848),i=r(16522),o=r(26607),l=r(10242),s=r(84174);let a=e=>{let t,r,a,d=(0,i.c)(8),{children:c,feedbackUrl:u,className:f}=e,p=void 0===c?"Private preview":c;return d[0]!==p?(t=(0,n.jsx)(o.A,{variant:"secondary",children:p}),d[0]=p,d[1]=t):t=d[1],d[2]!==u?(r=u?(0,n.jsx)(l.A,{feedbackUrl:u}):void 0,d[2]=u,d[3]=r):r=d[3],d[4]!==f||d[5]!==t||d[6]!==r?(a=(0,n.jsx)(s.V,{className:f,label:t,link:r}),d[4]=f,d[5]=t,d[6]=r,d[7]=a):a=d[7],a};try{a.displayName||(a.displayName="AlphaLabel")}catch{}},16049:(e,t,r)=>{r.d(t,{QM:()=>m,fU:()=>g,jw:()=>h,zL:()=>s});var n=r(69599),i=r(51987),o=r(96379),l=r(96540);let s=[".svg",".gif",".jpg",".jpeg",".png",".mov",".mp4",".webm"],a=[".pdf",".docx",".odt",".fodt",".pptx",".odp",".fodp",".xlsx",".ods",".fods",".xls",".csv",".odg",".fodg",".odf",".zip",".gz",".tgz",".patch",".txt",".log",".md",".json",".jsonc",".cpuprofile",".dmp"],d=[".debug",".rtf",".msg",".doc",".eml",".xlsm",".tsv",".py",".yaml",".yml",".css",".xml",".html",".htm",".js",".sql",".java",".c",".cpp",".ipynb",".sh",".php",".ts",".tsx",".cs",".pdb",".drawio",".copilotmd",".bmp",".tif",".tiff",".mp3",".wav"],c=[".webp"];async function u(e,t,r){let n=new FormData,{name:i,size:l,type:s}=e;return t&&n.append("repository_id",t),r&&(n.append("upload_container_type","project"),n.append("upload_container_id",r)),n.append("name",i),n.append("size",l.toString()),n.append("content_type",s),await (0,o.DI)("/upload/policies/assets",{body:n,method:"POST"})}async function f(e,t,r){let{upload_authenticity_token:n,upload_url:i,header:o,form:l,same_origin:s}=e,a=new FormData;for(let e in s&&a.append("authenticity_token",n),l)a.append(e,l[e]);return a.append("file",t),r?await (({url:e,formData:t,headers:r,onProgress:n})=>new Promise((i,o)=>{let l=new XMLHttpRequest;for(let[t,s]of(l.addEventListener("loadstart",()=>n(0)),l.upload.addEventListener("progress",e=>n(e.loaded)),l.addEventListener("loadend",()=>{if(0===l.status)return void o(TypeError("Network request failed"));try{i(new Response(l.response||void 0,{status:l.status,statusText:l.statusText,headers:(e=>{let t=new Headers;for(let r of e.trim().split(/\r?\n/)){if(!r)continue;let e=r.indexOf(":");if(-1===e)continue;let n=r.slice(0,e).trim(),i=r.slice(e+1).trim();n&&t.append(n,i)}return t})(l.getAllResponseHeaders()??"")}))}catch(e){o(e)}}),l.open("POST",e),l.responseType="text",Object.entries(r)))void 0!==s&&l.setRequestHeader(t,s);l.send(t)}))({url:i,formData:a,headers:o,onProgress:r}):await fetch(i,{headers:{...o},method:"post",body:a})}async function p(e,t){let r="string"==typeof e.asset_upload_url?e.asset_upload_url:null,n="string"==typeof e.asset_upload_authenticity_token?e.asset_upload_authenticity_token:null;if(r&&n){let e=new FormData;return e.append("authenticity_token",n),await fetch(r,{method:"PUT",body:e,credentials:"same-origin",headers:{Accept:"application/json",...(0,i.kt)()}})}return t}async function m(e,t,r,n){let i=await u(e,t,r);if(!i.ok)throw Error("Failed to obtain asset policy");let o=await i.json(),l=await f(o,e,n);if(!l.ok)throw Error("Failed to upload file to storage");let s=await p(o,l);if(!s.ok)throw Error("Failed to register file upload completion");let{href:a}=await s.json();if("string"!=typeof a)throw Error("Received invalid file URL");return n?.(e.size),{url:a,file:e}}function h(e){let t=[...s,...(0,n.G7)("webp_support")?c:[],...a,...(0,n.G7)("issues_expanded_file_types")?d:[]],r=[...s,...(0,n.G7)("webp_support")?c:[]];return e?t:r}function g(e,t){return(0,l.useCallback)(async(r,n)=>m(r,e,t,n),[e,t])}},16058:(e,t,r)=>{r.d(t,{DN:()=>m,Hg:()=>h,LY:()=>u,Ts:()=>f,WJ:()=>y,Wq:()=>g,el:()=>p,xM:()=>v,zE:()=>x,zJ:()=>c});var n=r(47970),i=r(76814),o=r(9445);let l={first:{prefix:"",digits:1,suffix:". "},parse(e){let t=e.match(/^(?\s*)(?\d{1,9})(?[.)]\s*)$/)?.groups;return t?{...t,digits:parseInt(t.digits,10)}:void 0},serialize:e=>`${e.prefix}${e.digits}${e.suffix}`,increment:e=>({...e,digits:Math.min(e.digits+1,0x3b9ac9ff)}),reset:e=>({...e,digits:1})},s={prefix:"[",value:"x",suffix:"] "},a={prefix:"[",value:" ",suffix:"] "},d=e=>e.match(/^(?\[)(?[ xX])(?\]\s*)$/)?.groups;function c(e){return d(e)}function u(e){let t=l.parse(e);return t?l.serialize(l.increment(t)):e}function f(e){let t=l.parse(e);return t?l.serialize(l.reset(t)):e}function p(e){return e?l.serialize(l.first):"* "}function m(e){let t;return t=e?s:a,`${t.prefix}${t.value}${t.suffix}`}function h(e,t,r=""){let n=d(t),i=n?n.suffix.slice(1):"",o=0!==i.length||0!==r.length&&/\s/.test(r)?i:" ";return`[${e?"x":" "}]${o}`}function g(e){return void 0!==d(e)}function y(e){return d(e)?.value.toLowerCase()==="x"}function k(e,t){if(t<0)return 0;let r=e.find(e=>"linePrefix"===e.tokenType);return r?Math.floor(r.raw.length/2):e.slice(0,t).filter(e=>"listItemPrefix"===e.tokenType||"listItemIndent"===e.tokenType).length}function b(e,t){return e.slice(t).find(e=>"taskListCheck"===e.tokenType)}function x(e,t,r){let n=r.findLast(e=>"listItemPrefix"===e.tokenType),i=r[0]?.position?.start.offset,l=r.at(-1)?.position?.end.offset;if(!n||void 0===i||void 0===l)return[];let s=function(e,t){let r=e.findLastIndex(e=>"listItemPrefix"===e.tokenType),n=t.findLastIndex(e=>"listItemPrefix"===e.tokenType),i=b(e,r),l=b(t,n),s=k(e,r);if(k(t,n)===s){let t=(0,o.z0)(e.slice(0,r))+e[r]?.raw;return i?t+(l?.raw??m(!1)):t}return t.map(e=>e.raw).join("")}(t,r);return s?[{from:e+i,to:e+l,insert:s}]:[]}function v(e){let t={};return(0,n.YR)(e,e=>t.listItemPrefix?("delimiter"===e.type&&"taskListCheck"===e.tokenType&&(t.taskListPrefix=e),i.dc):("delimiter"===e.type&&"listItemPrefix"===e.tokenType&&(t.listItemPrefix=e),"list"===e.type)?i._Z:void 0),t}},18169:(e,t,r)=>{r.d(t,{P:()=>n});let n=(0,r(96540).createContext)({view:null,selectedNodes:[]});try{n.displayName||(n.displayName="ToolbarContext")}catch{}},21210:(e,t,r)=>{r.d(t,{D:()=>_});var n=r(86350),i=r(81529),o=r(84600),l=r(78625),s=r(65012);function a(e){return{type:"blankLine",position:{start:e,end:e},data:{hProperties:{dataBlankLine:!0}}}}var d=r(3904);let c=["blockQuotePrefix","strongSequence","emphasisSequence","codeTextSequence","codeTextPadding","strikethroughSequence","thematicBreakSequence","codeFencedFence","atxHeadingSequence","whitespace","setextHeadingLine","labelMarker","labelImageMarker","resource","resourceDestination","linePrefix","listItemIndent","listItemPrefix","taskListCheck","tableCellDivider","tableDelimiterRow","tableDelimiter","autolinkMarker","hardBreakEscape","escapeMarker","characterReference"];function u(e){if(e.data.delimiterStack?.length)return e.data.delimiterStack.at(-1);let t=e.stack.at(-1);if(t?.type==="fragment"){let t=e.stack.at(-2);if(t&&"value"in t)return t}return t}let f=function(e){let t={type:"delimiter",tokenType:e.type,raw:this.sliceSerialize(e),position:{start:e.start,end:e.end}},r=u(this);if(r){var n;r.children??(r.children=[]),r.children.push(t),(n=this.data).delimiterStack??(n.delimiterStack=[]),this.data.delimiterStack.push(t)}return!1},p=function(e){let t=this.data.delimiterStack?.pop();if(t?.tokenType!==e.type)throw Error(`Expected open '${e.type}' delimiter on stack`);return this.data.lastExitedDelimiterToken=e,!1},m=function(e){let t=u(this),r=t?.children?.at(-1);return e.end.offset-e.start.offset==1&&r?.type==="delimiter"&&"listItemPrefix"===r.tokenType&&(0,s.z)(r)&&e.start.offset===r.position.end.offset?(r.position.end={...e.end},r.raw+=this.sliceSerialize(e)):f.call(this,e),!1},h=function(e){let t=u(this);return t?.type==="delimiter"&&"linePrefix"===t.tokenType&&p.call(this,e),!1},g=function(e){var t;let r=this.stack.at(-1);if(r?.type==="heading"&&!((t=r.children[1])&&"delimiter"===t.type&&"whitespace"===t.tokenType)){this.exit(e);let t=this.stack.at(-1);t.children.pop(),t.children.push({type:"paragraph",position:r.position,children:[]});return}return!1};var y=r(76814),k=r(73189),b=r(14674);function x(e){(0,y.VG)(e,"html",(e,t)=>{let r=t.at(-1),n=r.children.indexOf(e);r.children.splice(n,1,...(0,s.z)(e)?(function(e){let t=[],r=null;function n(e,n){if(!n)return;let i={column:n.endCol,line:n.endLine,offset:n.endOffset};if("text"===e&&r?.type==="text"){r.position.end=i;return}let o={type:e,position:{start:{column:n.startCol,line:n.startLine,offset:n.startOffset},end:i}};t.push(o),r=o}return new b._F({sourceCodeLocationInfo:!0},{onCharacter:({location:e})=>n("text",e),onWhitespaceCharacter:({location:e})=>n("text",e),onNullCharacter:({location:e})=>n("text",e),onStartTag:({location:e})=>n("startTag",e),onEndTag:({location:e})=>n("endTag",e),onDoctype:({location:e})=>n("doctype",e),onComment:({location:e})=>n("comment",e),onEof:k.l,onParseError:k.l}).write(e,!0),t})(e.value).flatMap(t=>{let r=e.value.slice(t.position.start.offset,t.position.end.offset),n={start:(0,l.z0)(e.position.start,t.position.start),end:(0,l.z0)(e.position.start,t.position.end)};switch(t.type){case"text":return[{type:"text",value:r,position:n}];case"endTag":return[{type:"delimiter",tokenType:"htmlTag",raw:r,position:n},{type:"html",value:r,position:n}];case"startTag":return[{type:"html",value:r,position:n},{type:"delimiter",tokenType:"htmlTag",raw:r,position:n}];case"comment":case"doctype":return[{type:"html",value:r,position:n}]}}):[])},!0)}let v={enabledExtensions:{delimiters:!0,containDelimiters:!0,splitHtml:!0,skipEmptyHeadings:!0,blankLines:!0}};function _(e,{enabledExtensions:t=v.enabledExtensions}=v){return(0,n.Y)(e,"utf-8",{extensions:[(0,o.T)()],mdastExtensions:[(0,i.C)(),t.delimiters?{enter:{...Object.fromEntries(c.map(e=>[e,f])),linePrefix:m},exit:{...Object.fromEntries(c.map(e=>[e,p])),linePrefix:h}}:[],t.containDelimiters?(0,d.C)():[],t.splitHtml?{transforms:[x]}:[],t.skipEmptyHeadings?{exit:{atxHeading:g}}:[],t.blankLines?{transforms:[t=>{let r=[],n={column:0,line:0,offset:-1};function i(e){r.push(e),n=e.position.end}for(let e of t.children)if((0,s.z)(e)){for(;n.offset+1{function n(e,t){return e.slice(0,t).lastIndexOf(` +`)+1}function i(e,t){let r=e.indexOf(` +`,t);return -1===r?e.length:r}function o(e,t){return t<0||t>e.length?null:{start:n(e,t),end:i(e,t)}}function l(e,t,r){let o=[],l=n(e,t);for(;l<=r;){let t=i(e,l);o.push({start:l,end:t}),l=t+1}return o}r.d(t,{W:()=>o,b:()=>l})},26076:(e,t,r)=>{r.d(t,{G:()=>g});var n=r(74848),i=r(96540),o=r(21513),l=r(69726),s=r(73017),a=r(42931),d=r(80752),c=r(50463);let u=e=>{let t=e.match(/^ {0,3}(`{3,}|~{3,})[^`]*$/);return t?t[1]:null},f=(e,t)=>RegExp(`^ {0,3}${t}${t[0]}* *$`).test(e),p=e=>"string"==typeof e?.taskBox,m=e=>({...e,taskBox:"[ ]"===e.taskBox?"[x]":"[ ]"});var h=r(34164);function g({ref:e=null,verifiedHTML:t,loading:r=!1,markdownValue:g="",onChange:y,disabled:k=!1,onLinkClick:b,openLinksInNewTab:x=!1,teamHovercardsEnabled:v=!1,className:_}){let[w,I]=(0,i.useState)(null),j=(0,i.useRef)(null);(0,o.T)(e,j);let S=(0,i.useCallback)(e=>{j.current=e,I(e)},[]);return(({htmlContainer:e,markdownValue:t,onChange:r,disabled:n=!1,dependencies:o=[]})=>{let l=(0,i.useRef)(t);(0,c.A)(()=>{l.current=t},[t]);let s=(0,i.useCallback)(e=>()=>{let t=l.current.split(/\r?\n/),n=null;for(let i=0,o=0;i{h(Array.from(e?.querySelectorAll("input[type=checkbox].task-list-item-checkbox")??[]))},[e,...o]),(0,i.useEffect)(function(){let e=a.map(e=>{let t=e.disabled;return e.disabled=n,()=>{e.disabled=t}});return()=>{for(let t of e)t()}},[a,n]),(0,i.useEffect)(function(){let e=new AbortController;for(let[t,r]of a.entries()){let n=s(t);r.addEventListener("change",n,{signal:e.signal})}return()=>{e.abort()}},[a,s])})({onChange:(0,i.useCallback)(async e=>{try{await y?.(e)}catch{w&&(w.innerHTML=t)}},[y,w,t]),disabled:k||!y,htmlContainer:w??void 0,markdownValue:g,dependencies:[t]}),(0,a.O)({htmlContainer:w??void 0,onLinkClick:b,openLinksInNewTab:x}),(0,i.useMemo)(()=>r?(0,n.jsx)("div",{className:"MarkdownViewer-module__MarkdownViewerContainer--h7BF_",children:(0,n.jsx)(l.A,{"aria-label":"Loading content..."})}):(0,n.jsx)(s.vb,{ref:S,className:(0,h.$)("markdown-body",_),sx:_?{}:{fontSize:1,maxWidth:"100%","& > div > :last-child":{mb:0}},html:t,...v?{"data-team-hovercards-enabled":!0}:{}}),[_,r,v,t,S])}try{g.displayName||(g.displayName="MarkdownViewer")}catch{}},27408:(e,t,r)=>{r.d(t,{n:()=>ew,v:()=>ey});var n=r(74848),i=r(16522),o=r(21373),l=r(96540);let s=(0,l.createContext)({disabled:!1,required:!1,formattingToolsRef:{current:null},uploadButtonProps:null,fileDraggedOver:!1,previewMode:!1});try{s.displayName||(s.displayName="MarkdownEditorContext")}catch{}let a=e=>{let t,r=(0,i.c)(2),{children:o}=e;return r[0]!==o?(t=(0,n.jsx)(n.Fragment,{children:o}),r[0]=o,r[1]=t):t=r[1],t};a.displayName="MarkdownEditor.Actions";let d=e=>{let t,r,a,d=(0,i.c)(7);d[0]!==e?({ref:r,...t}=e,d[0]=e,d[1]=t,d[2]=r):(t=d[1],r=d[2]);let{disabled:c}=(0,l.use)(s);return d[3]!==c||d[4]!==t||d[5]!==r?(a=(0,n.jsx)(o.Q,{disabled:c,...t,ref:r}),d[3]=c,d[4]=t,d[5]=r,d[6]=a):a=d[6],a};d.displayName="MarkdownEditor.ActionButton";var c=r(76533),u=r(38621),f=r(57919);let p=e=>{let t,r,o,l,s,a,d=(0,i.c)(11),{children:c}=e;d[0]===Symbol.for("react.memo_cache_sentinel")?(t={footerButtons:h},d[0]=t):t=d[0];let[u,p]=(0,f.H)(c,t);return d[1]===Symbol.for("react.memo_cache_sentinel")?(r=(0,n.jsx)(g,{}),d[1]=r):r=d[1],d[2]!==u.footerButtons?(o=u.footerButtons&&(0,n.jsx)("div",{className:"Footer-module__footerButtonWrapper--TedKn",children:u.footerButtons}),d[2]=u.footerButtons,d[3]=o):o=d[3],d[4]!==o?(l=(0,n.jsxs)("div",{className:"Footer-module__footerWrapper--ObMEq",children:[r,o]}),d[4]=o,d[5]=l):l=d[5],d[6]!==p?(s=(0,n.jsx)("div",{className:"Footer-module__childrenStyling--cH0iq",children:p}),d[6]=p,d[7]=s):s=d[7],d[8]!==l||d[9]!==s?(a=(0,n.jsxs)("div",{className:"Footer-module__footer--rjRmQ","data-testid":"markdown-editor-footer",children:[l,s]}),d[8]=l,d[9]=s,d[10]=a):a=d[10],a},m=e=>{let t,r=(0,i.c)(2),{children:o}=e;return r[0]!==o?(t=(0,n.jsx)(p,{children:o}),r[0]=o,r[1]=t):t=r[1],t};m.displayName="MarkdownEditor.Footer";let h=e=>{let t,r,a,d=(0,i.c)(7);d[0]!==e?({ref:r,...t}=e,d[0]=e,d[1]=t,d[2]=r):(t=d[1],r=d[2]);let{disabled:c}=(0,l.use)(s);return d[3]!==c||d[4]!==t||d[5]!==r?(a=(0,n.jsx)(o.Q,{size:"small",disabled:c,...t,ref:r}),d[3]=c,d[4]=t,d[5]=r,d[6]=a):a=d[6],a};h.displayName="MarkdownEditor.FooterButton";let g=(0,l.memo)(()=>{let e,t=(0,i.c)(3),{uploadButtonProps:r,fileDraggedOver:o}=(0,l.use)(s);return t[0]!==o||t[1]!==r?(e=r?(0,n.jsx)(y,{fileDraggedOver:o,...r}):null,t[0]=o,t[1]=r,t[2]=e):e=t[2],e});g.displayName="MarkdownEditor.DefaultFooterButtons";let y=(0,l.memo)(e=>{let t,r,a,d,c,f=(0,i.c)(12);f[0]!==e?({fileDraggedOver:t,...r}=e,f[0]=e,f[1]=t,f[2]=r):(t=f[1],r=f[2]);let{disabled:p,fileUploadProgress:m}=(0,l.use)(s),h=m?.[0],g=m?.[1],y=!!g,b=1===g?"Uploading your file...":`Uploading your files... (${h}/${g})`,x=y?b:void 0;f[3]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)("span",{className:"Footer-module__condensed--o9bUn",children:"Add Files"}),f[3]=a):a=f[3];let v=t?"Drop to add files":"Paste, drop, or click to add files";return f[4]!==v?(d=(0,n.jsx)("span",{className:"Footer-module__spacious--VlAKA",children:v}),f[4]=v,f[5]=d):d=f[5],f[6]!==p||f[7]!==y||f[8]!==r||f[9]!==x||f[10]!==d?(c=(0,n.jsxs)(o.Q,{variant:"invisible",loadingAnnouncement:x,leadingVisual:u.PaperclipIcon,loading:y,size:"small",className:"Footer-module__footerButton--zxnP6",onMouseDown:k,disabled:p,...r,children:[a,d]}),f[6]=p,f[7]=y,f[8]=r,f[9]=x,f[10]=d,f[11]=c):c=f[11],c});y.displayName="MarkdownEditor.FileUploadButton";try{p.displayName||(p.displayName="CoreFooter")}catch{}function k(e){e.preventDefault()}var b=r(3398);let x=e=>{let t,r,o=(0,i.c)(6);o[0]!==e?({...t}=e,o[0]=e,o[1]=t):t=o[1];let{disabled:a,required:d}=(0,l.use)(s);return o[2]!==a||o[3]!==t||o[4]!==d?(r=(0,n.jsx)(b.A,{as:"legend",disabled:a,required:d,className:"Label-module__inputLabel--EMji4",...t}),o[2]=a,o[3]=t,o[4]=d,o[5]=r):r=o[5],r};x.displayName="MarkdownEditor.Label";let v=e=>{let t,r=(0,i.c)(2);return r[0]!==e?(t=(0,n.jsx)(x,{...e}),r[0]=e,r[1]=t):t=r[1],t};var _=r(69599),w=r(88316),I=r(53419),j=r(99206),S=r(26076),T=r(73189),C=r(16643),E=r(34164);let N=e=>(0,I.BI)("markdown_editor.format",{tool:e}),M=({ref:e,forInputId:t})=>{(0,l.useEffect)(()=>{r.e(78143).then(r.bind(r,78143))},[]);let i=(0,l.useRef)(null),o=(0,l.useRef)(null),s=(0,l.useRef)(null),a=(0,l.useRef)(null),d=(0,l.useRef)(null),c=(0,l.useRef)(null),u=(0,l.useRef)(null),f=(0,l.useRef)(null),p=(0,l.useRef)(null),m=(0,l.useRef)(null),h=(0,l.useRef)(null);return(0,l.useImperativeHandle)(e,()=>({header:()=>{i.current?.click(),N("header")},bold:()=>{o.current?.click(),N("bold")},italic:()=>{s.current?.click(),N("italic")},quote:()=>{a.current?.click(),N("quote")},code:()=>{d.current?.click(),N("code")},link:()=>{c.current?.click(),N("link")},unorderedList:()=>{u.current?.click(),N("unorderedList")},orderedList:()=>{f.current?.click(),N("orderedList")},taskList:()=>{p.current?.click(),N("taskList")},mention:()=>{m.current?.click(),N("mention")},reference:()=>{h.current?.click(),N("reference")}})),(0,n.jsxs)("markdown-toolbar",{for:t,style:{display:"none"},children:[(0,n.jsx)("md-header",{ref:i}),(0,n.jsx)("md-bold",{ref:o}),(0,n.jsx)("md-italic",{ref:s}),(0,n.jsx)("md-quote",{ref:a}),(0,n.jsx)("md-code",{ref:d}),(0,n.jsx)("md-link",{ref:c}),(0,n.jsx)("md-unordered-list",{ref:u}),(0,n.jsx)("md-ordered-list",{ref:f}),(0,n.jsx)("md-task-list",{ref:p}),(0,n.jsx)("md-mention",{ref:m}),(0,n.jsx)("md-ref",{ref:h})]})};M.displayName="MarkdownEditor.FormattingTools";let L="MarkdownEditor-module__fullHeight--No1e6";r(90204);var P=r(44358),A=r(51112),O=r(66964),R=r(45007),$=r(21513),B=r(10576),F=r(40090),D=r(65826),z=r(9880),V=r(97673);let H=[],q=e=>{let t,r,o,s,a,d,c,u,f,p,m,h,g,y,k,b,x,v,_,w,j,S,T,C,N,M,L,q,W,U,G,Y,K,Q,J,Z,X,ee,et,er,en,ei=(0,i.c)(90);ei[0]!==e?({ref:a,value:T,onChange:b,onInput:x,disabled:r,placeholder:w,id:u,maxLength:h,onKeyDown:v,fullHeight:d,isDraggedOver:f,emojiSuggestions:o,emojiTone:s,mentionSuggestions:g,referenceSuggestions:S,labelledBy:p,minHeightLines:y,maxHeightLines:m,visible:C,monospace:k,pasteUrlsAsPlainText:_,className:t,generatingText:c,...j}=e,ei[0]=e,ei[1]=t,ei[2]=r,ei[3]=o,ei[4]=s,ei[5]=a,ei[6]=d,ei[7]=c,ei[8]=u,ei[9]=f,ei[10]=p,ei[11]=m,ei[12]=h,ei[13]=g,ei[14]=y,ei[15]=k,ei[16]=b,ei[17]=x,ei[18]=v,ei[19]=_,ei[20]=w,ei[21]=j,ei[22]=S,ei[23]=T,ei[24]=C):(t=ei[1],r=ei[2],o=ei[3],s=ei[4],a=ei[5],d=ei[6],c=ei[7],u=ei[8],f=ei[9],p=ei[10],m=ei[11],h=ei[12],g=ei[13],y=ei[14],k=ei[15],b=ei[16],x=ei[17],v=ei[18],_=ei[19],w=ei[20],j=ei[21],S=ei[22],T=ei[23],C=ei[24]),ei[25]!==s?(N={tone:s},ei[25]=s,ei[26]=N):N=ei[26];let eo=N,{trigger:el,calculateSuggestions:es}=(0,D.xf)(o??H,eo),{trigger:ea,calculateSuggestions:ed}=(0,z.P)(g??H),{trigger:ec,calculateSuggestions:eu}=(0,V.k)(S??H);ei[27]!==es||ei[28]!==el?(M={trigger:el,suggestionsCalculator:es},ei[27]=es,ei[28]=el,ei[29]=M):M=ei[29],ei[30]!==ed||ei[31]!==ea?(L={trigger:ea,suggestionsCalculator:ed},ei[30]=ed,ei[31]=ea,ei[32]=L):L=ei[32],ei[33]!==eu||ei[34]!==ec?(q={trigger:ec,suggestionsCalculator:eu},ei[33]=eu,ei[34]=ec,ei[35]=q):q=ei[35],ei[36]!==M||ei[37]!==L||ei[38]!==q?(W=[M,L,q],ei[36]=M,ei[37]=L,ei[38]=q,ei[39]=W):W=ei[39];let ef=W,{triggers:ep,suggestions:em,setSuggestionEvent:eh}=(0,O.f)(ef),eg=(0,l.useRef)(null);(0,$.T)(a,eg),ei[40]!==_?(U=()=>{let e=eg.current&&(0,P.B1)(eg.current,{defaultPlainTextPaste:{urlLinks:_}});return e?.unsubscribe},G=[_],ei[40]=_,ei[41]=U,ei[42]=G):(U=ei[41],G=ei[42]),(0,l.useEffect)(U,G);let ey=d||!C;ei[43]!==m||ei[44]!==y||ei[45]!==ey||ei[46]!==T?(Y={disabled:ey,maxHeightLines:m,minHeightLines:y,elementRef:eg,value:T},ei[43]=m,ei[44]=y,ei[45]=ey,ei[46]=T,ei[47]=Y):Y=ei[47];let ek=(0,R.S)(Y);ei[48]!==T?(K=()=>{eg.current&&(eg.current.value=T)},ei[48]=T,ei[49]=K):K=ei[49],(0,l.useEffect)(K),ei[50]!==eh||ei[51]!==em?(Q=e=>{em||(0,I.BI)("markdown_editor.show_autocomplete_suggestions",{trigger:e.trigger.triggerChar}),eh(e)},ei[50]=eh,ei[51]=em,ei[52]=Q):Q=ei[52],ei[53]!==eh?(J=()=>eh(null),ei[53]=eh,ei[54]=J):J=ei[54],ei[55]===Symbol.for("react.memo_cache_sentinel")?(Z={flex:"auto"},ei[55]=Z):Z=ei[55];let eb=p?void 0:"Markdown value",ex=!C&&"MarkdownInput-module__displayNone--tQubM",ev=d&&"MarkdownInput-module__fullHeight--HWXka",e_=k&&"MarkdownInput-module__monospace--ktxaS",ew=f&&"MarkdownInput-module__isDraggedOver--hTZEP",eI=c&&"MarkdownInput-module__generatingText--fuCZ6";return ei[56]!==t||ei[57]!==ex||ei[58]!==ev||ei[59]!==e_||ei[60]!==ew||ei[61]!==eI?(X=(0,E.$)(t,"MarkdownInput-module__textArea--kLNLR",ex,ev,e_,ew,eI),ei[56]=t,ei[57]=ex,ei[58]=ev,ei[59]=e_,ei[60]=ew,ei[61]=eI,ei[62]=X):X=ei[62],ei[63]!==r||ei[64]!==ek||ei[65]!==u||ei[66]!==p||ei[67]!==h||ei[68]!==y||ei[69]!==b||ei[70]!==x||ei[71]!==v||ei[72]!==w||ei[73]!==j||ei[74]!==eb||ei[75]!==X||ei[76]!==T?(ee=(0,n.jsx)(B.Ay,{id:u,ref:eg,placeholder:w,maxLength:h,onKeyDown:v,disabled:r,"aria-label":eb,"aria-labelledby":p,onChange:b,onInput:x,value:T,className:X,rows:y,style:ek,...j}),ei[63]=r,ei[64]=ek,ei[65]=u,ei[66]=p,ei[67]=h,ei[68]=y,ei[69]=b,ei[70]=x,ei[71]=v,ei[72]=w,ei[73]=j,ei[74]=eb,ei[75]=X,ei[76]=T,ei[77]=ee):ee=ei[77],ei[78]!==em||ei[79]!==Q||ei[80]!==J||ei[81]!==ee||ei[82]!==ep?(et=(0,n.jsx)(A.a,{triggers:ep,suggestions:em,onShowSuggestions:Q,onHideSuggestions:J,style:Z,tabInsertsSuggestions:!0,children:ee}),ei[78]=em,ei[79]=Q,ei[80]=J,ei[81]=ee,ei[82]=ep,ei[83]=et):et=ei[83],ei[84]!==c||ei[85]!==C?(er=c&&C&&(0,n.jsx)("div",{className:"MarkdownInput-module__skeletonOverlay--FXuMG",children:(0,n.jsx)(F.r,{lines:5,"aria-label":"Generating text"})}),ei[84]=c,ei[85]=C,ei[86]=er):er=ei[86],ei[87]!==et||ei[88]!==er?(en=(0,n.jsxs)("div",{className:"MarkdownInput-module__inputWrapper--fDOeo",children:[et,er]}),ei[87]=et,ei[88]=er,ei[89]=en):en=ei[89],en};q.displayName="MarkdownInput";var W=r(56038),U=r(5839),G=r(64954);let Y=e=>{let t,r,o,a=(0,i.c)(7);a[0]!==e?({ref:r,...t}=e,a[0]=e,a[1]=t,a[2]=r):(t=a[1],r=a[2]);let{disabled:d}=(0,l.use)(s);return a[3]!==d||a[4]!==t||a[5]!==r?(o=(0,n.jsx)(G.A.IconButton,{ref:r,variant:"invisible",disabled:d,onMouseDown:K,...t,className:"ToolbarButton-module__iconButton--o0jFl"}),a[3]=d,a[4]=t,a[5]=r,a[6]=o):o=a[6],o};function K(e){return e.preventDefault()}Y.displayName="MarkdownEditor.ToolbarButton";let Q=(0,l.createContext)(null),J=()=>{let e,t,r,o,s,a,d=(0,i.c)(18),c=(0,l.use)(Q),[u,f]=(0,l.useState)(!1),[p,m]=(0,l.useState)("");d[0]===Symbol.for("react.memo_cache_sentinel")?(e=()=>({openMenu:()=>{f(!0)}}),d[0]=e):e=d[0],(0,l.useImperativeHandle)(c?.ref,e),d[1]!==c?.savedReplies||d[2]!==p?(t=c?.savedReplies.filter(e=>{let{name:t}=e;return t.toLowerCase().includes(p.toLowerCase())}).map(Z),d[1]=c?.savedReplies,d[2]=p,d[3]=t):t=d[3];let h=t;d[4]!==c?(r=e=>{f(!1);let t=c?.savedReplies.find(t=>{let{name:r}=t;return r===e?.text});t&&c?.onSelect(t)},d[4]=c,d[5]=r):r=d[5];let g=r;d[6]!==h||d[7]!==g?(o=e=>{let t=parseInt(e.key,10);h&&e.ctrlKey&&!Number.isNaN(t)&&t>=1&&t<=9&&(e.stopPropagation(),e.preventDefault(),g(h[t-1]))},d[6]=h,d[7]=g,d[8]=o):o=d[8];let y=o;d[9]!==c?(s=e=>{f(e),e?((0,I.BI)("markdown_editor.open_saved_replies"),c?.onOpen()):m("")},d[9]=c,d[10]=s):s=d[10];let k=s;return d[11]!==p||d[12]!==h||d[13]!==y||d[14]!==k||d[15]!==g||d[16]!==u?(a=h?(0,n.jsx)(U.X,{renderAnchor:X,open:u,onOpenChange:k,items:h,filterValue:p,onFilterChange:m,placeholderText:"Search saved replies",selected:void 0,onSelectedChange:e=>{g(Array.isArray(e)?e[0]:e)},overlayProps:{width:"small",maxHeight:"small",anchorSide:"outside-right",onKeyDown:y},secondaryAction:(0,n.jsx)(U.X.SecondaryActionLink,{href:`${W.fV.origin}/settings/replies`,children:"Create new"})}):(0,n.jsx)(n.Fragment,{}),d[11]=p,d[12]=h,d[13]=y,d[14]=k,d[15]=g,d[16]=u,d[17]=a):a=d[17],a};try{Q.displayName||(Q.displayName="SavedRepliesContext")}catch{}try{J.displayName||(J.displayName="SavedRepliesButton")}catch{}function Z(e,t){return{id:t,text:e.name,description:e.content,descriptionVariant:"block",trailingVisual:t<9?`Ctrl + ${t+1}`:void 0,className:"SavedReplies-module__SavedReplies--K6yeB"}}function X(e){return(0,n.jsx)(Y,{...e,icon:u.ReplyIcon,"aria-label":"Saved replies","aria-labelledby":void 0})}let ee=(0,l.memo)(()=>{let e,t,r,o,a,d,c,f,p,m,h,g,y,k,b,x=(0,i.c)(37),{formattingToolsRef:v}=(0,l.use)(s);return x[0]!==v?(e=(0,n.jsx)(Y,{onClick:()=>v.current?.header(),icon:u.HeadingIcon,"aria-label":"Heading"}),x[0]=v,x[1]=e):e=x[1],x[2]!==v?(t=(0,n.jsx)(Y,{onClick:()=>v.current?.bold(),icon:u.BoldIcon,"aria-label":"Bold"}),x[2]=v,x[3]=t):t=x[3],x[4]!==v?(r=(0,n.jsx)(Y,{onClick:()=>v.current?.italic(),icon:u.ItalicIcon,"aria-label":"Italic"}),x[4]=v,x[5]=r):r=x[5],x[6]!==v?(o=(0,n.jsx)(Y,{onClick:()=>v.current?.quote(),icon:u.QuoteIcon,"aria-label":"Quote"}),x[6]=v,x[7]=o):o=x[7],x[8]!==v?(a=(0,n.jsx)(Y,{onClick:()=>v.current?.code(),icon:u.CodeIcon,"aria-label":"Code"}),x[8]=v,x[9]=a):a=x[9],x[10]!==v?(d=(0,n.jsx)(Y,{onClick:()=>v.current?.link(),icon:u.LinkIcon,"aria-label":"Link"}),x[10]=v,x[11]=d):d=x[11],x[12]===Symbol.for("react.memo_cache_sentinel")?(c=(0,n.jsx)(G.A.Divider,{}),x[12]=c):c=x[12],x[13]!==v?(f=(0,n.jsx)(Y,{onClick:()=>v.current?.unorderedList(),icon:u.ListUnorderedIcon,"aria-label":"Unordered list"}),x[13]=v,x[14]=f):f=x[14],x[15]!==v?(p=(0,n.jsx)(Y,{onClick:()=>v.current?.orderedList(),icon:u.ListOrderedIcon,"aria-label":"Numbered list"}),x[15]=v,x[16]=p):p=x[16],x[17]!==v?(m=(0,n.jsx)(Y,{onClick:()=>v.current?.taskList(),icon:u.TasklistIcon,"aria-label":"Task list"}),x[17]=v,x[18]=m):m=x[18],x[19]===Symbol.for("react.memo_cache_sentinel")?(h=(0,n.jsx)(G.A.Divider,{}),x[19]=h):h=x[19],x[20]!==v?(g=(0,n.jsx)(Y,{onClick:()=>v.current?.mention(),icon:u.MentionIcon,"aria-label":"Mention"}),x[20]=v,x[21]=g):g=x[21],x[22]!==v?(y=(0,n.jsx)(Y,{onClick:()=>v.current?.reference(),icon:u.CrossReferenceIcon,"aria-label":"Reference"}),x[22]=v,x[23]=y):y=x[23],x[24]===Symbol.for("react.memo_cache_sentinel")?(k=(0,n.jsx)(J,{}),x[24]=k):k=x[24],x[25]!==e||x[26]!==t||x[27]!==g||x[28]!==y||x[29]!==r||x[30]!==o||x[31]!==a||x[32]!==d||x[33]!==f||x[34]!==p||x[35]!==m?(b=(0,n.jsxs)(n.Fragment,{children:[e,t,r,o,a,d,c,f,p,m,h,g,y,k]}),x[25]=e,x[26]=t,x[27]=g,x[28]=y,x[29]=r,x[30]=o,x[31]=a,x[32]=d,x[33]=f,x[34]=p,x[35]=m,x[36]=b):b=x[36],b});ee.displayName="MarkdownEditor.DefaultToolbarButtons";let et=e=>{let t,r=(0,i.c)(2),{children:o}=e;return r[0]!==o?(t=(0,n.jsx)(G.A,{"aria-label":"Formatting tools",className:"Toolbar-module__toolbar--TBvFM",gap:"none",children:o}),r[0]=o,r[1]=t):t=r[1],t},er=e=>{let t,r=(0,i.c)(2),{children:o}=e;return r[0]!==o?(t=(0,n.jsx)(et,{children:o}),r[0]=o,r[1]=t):t=r[1],t};er.displayName="MarkdownEditor.Toolbar";try{et.displayName||(et.displayName="CoreToolbar")}catch{}var en=r(88567);let ei=/^(?:\t| ? ?)(.*)/;var eo=r(8625);function el(e){return e+1}var es=r(80752);let ea="```suggestion",ed=RegExp(`${ea}(?:.*) +`,"i"),ec=RegExp("```(\n|$)");function eu(e,t,r=0){let n=t.substring(r,t.length),i=e.exec(n);return i?i.index+r:-1}var ef=r(98211),ep=r(38102),em=r(95863);let eh=e=>(0,en.nf)(`Uploading "${e.name}"...`),eg=()=>{},ey=({emitChange:e,value:t,inputRef:r,disabled:i,onUploadFile:o,acceptedFileTypes:s,onFilesRejected:a})=>{let[d,c]=(0,l.useState)(void 0),u=(0,l.useRef)(!1);(0,l.useEffect)(()=>{if(d){u.current=!1;let e=setTimeout(()=>u.current=!0,1e3);return()=>clearTimeout(e)}},[d]),(0,l.useEffect)(()=>{u.current&&c(void 0)},[t]);let f=(0,ef.U)(e=>{let t=new Set(e.map(({name:e})=>{let t=e.split(".");return t.length>1?`.${t.at(-1)}`:""}).filter(e=>""!==e));if(t.size>0){let r=[...t].join(", ");c((0,n.jsxs)(n.Fragment,{children:["File type",t.size>1?"s":""," ",r," not supported. See the"," ",(0,n.jsx)("a",{href:"https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/attaching-files",children:"documentation"})," ","for supported file types."]})),a?.(e)}}),[p,m]=(0,l.useState)(void 0),h=(0,ef.U)(()=>m(void 0)),g=(0,l.useCallback)(t=>{if(!r?.current)return;let n=function(e,t){if(0===t||` +`===e[t-1]&&(1===t||` +`===e[t-2]))return"";let r=e.lastIndexOf(` +`,t-1);return/\S/.test(e.substring(r,t))?` + +`:` +`}(r.current.value,r.current.selectionStart),i=function(e,t){if(e.length===t||` +`===e[t]&&(t===e.length-1||` +`===e[t+1]))return"";let r=e.indexOf(` +`,t);return/\S/.test(e.substring(t,r))?` + +`:` +`}(r.current.value,r.current.selectionEnd);e(`${n}${t.map(eh).join(` +`)}${i}`)},[r,e]),y=(0,ef.U)(({file:t,url:n},i)=>{m(e=>e&&[e[0]+1,e[1]]),((t,n,i)=>{if(!r?.current)return;let o=eh(t),l=r.current.value.indexOf(o);-1!==l&&e(n?t.type.startsWith("video/")?n:t.type.startsWith("image/")&&!["image/bmp","image/tiff"].includes(t.type)?(0,en.TG)(i||{width:0,height:0,ppi:1},n,"Image"):(0,en.iQ)(t.name,n):(0,en.nf)(`Failed to upload "${t.name}"`),[l,l+o.length])})(t,n,i)}),k=(0,l.useCallback)(e=>e.map(async e=>{let t={url:null,file:e},r=null;try{t=await o?.(e)??{file:e,url:null}}catch{t={file:e,url:null}}if(t.url)try{r=await (0,en.pF)(e)}catch{r={width:0,height:0,ppi:1},(0,ep.N7)("Failed to get image size from file",{message:"Failed to get image size from file",reactAppName:"markdown-editor"})}y(t,r)}),[o,y]),b=(0,l.useCallback)(async(e,t)=>{e.length>0&&(m([1,e.length]),g(e),await Promise.all(k(e)),h()),f(t)},[f,g,k,h]),x=(0,em.wd)({acceptedFileTypes:s,multi:!0,onSelect:b});return i&&(x={clickTargetProps:{onClick:eg},dropTargetProps:{onDragEnter:eg,onDragLeave:eg,onDrop:eg,onDragOver:eg},pasteTargetProps:{onPaste:eg},isDraggedOver:!1}),o?{...x,errorMessage:d,uploadProgress:p}:null},ek=Symbol(),eb=[],ex=e=>{let t,r,o,a,d,u,p,m,h,g,y,k,b,x,v,w,N,P,A,O,R,$,B,F,D,z,V,H,W,U,G,Y,K,J=(0,i.c)(139),{ref:Z,value:X,onInputFocus:ep,disabled:em,placeholder:eh,maxLength:eg,"aria-describedby":ex,labelledBy:ev,fullHeight:e_,onRenderPreview:ew,className:eI,onPrimaryAction:ej,viewMode:eS,onChangeViewMode:eT,minHeightLines:eC,maxHeightLines:eE,emojiSuggestions:eN,emojiTone:eM,mentionSuggestions:eL,referenceSuggestions:eP,monospace:eA,required:eO,name:eR,children:e$,savedReplies:eB,pasteUrlsAsPlainText:eF,teamHovercardsEnabled:eD,onSavedRepliesOpen:ez,banner:eV,containerRef:eH,onChange:eq,onUploadFile:eW,acceptedFileTypes:eU,onFilesRejected:eG,footer:eY,generatingText:eK}=e,eQ=void 0!==em&&em,eJ=void 0===eC?5:eC,eZ=void 0===eE?35:eE,eX=void 0!==eA&&eA,e0=void 0!==eO&&eO,e1=void 0!==eF&&eF,e2=void 0!==eD&&eD,e4=void 0===ez?T.l:ez;J[0]===Symbol.for("react.memo_cache_sentinel")?(t={toolbar:er},J[0]=t):t=J[0];let[e3]=(0,f.H)(e$,t),e6=(0,l.useId)(),e5=(0,_.G7)("mardown_editor_use_on_input");J[1]===Symbol.for("react.memo_cache_sentinel")?(r=(0,_.G7)("markdown_experience_hybrid_editor"),J[1]=r):r=J[1];let e7=r;J[2]===Symbol.for("react.memo_cache_sentinel")?(o=(0,_.G7)("markdown_experience_toolbar_redesign"),J[2]=o):o=J[2];let e8=o,{inputRef:e9,inputKey:te,reset:tt,emitChange:tr,onInputChange:tn}=function(e){let t,r,n,o,s=(0,i.c)(11),a=(0,l.useRef)(null),[d,c]=(0,l.useState)(1);s[0]!==e?(t=t=>{e(t.target.value)},s[0]=e,s[1]=t):t=s[1];let u=t;s[2]!==e?(r=()=>{e(""),c(el)},s[2]=e,s[3]=r):r=s[3];let f=r;s[4]!==u?(n={inputRef:a,fallbackEventHandler:u},s[4]=u,s[5]=n):n=s[5];let p=(0,eo.H)(n);return s[6]!==p||s[7]!==d||s[8]!==u||s[9]!==f?(o={inputRef:a,inputKey:d,onInputChange:u,reset:f,emitChange:p},s[6]=p,s[7]=d,s[8]=u,s[9]=f,s[10]=o):o=s[10],o}(eq),{html:ti,loadPreview:to,previewStale:tl}=function(e,t){let r,n,o,s,a=(0,i.c)(10),[d,c]=(0,l.useState)(null),u=(0,ef.U)(c),f=(0,l.useRef)(!0);a[0]===Symbol.for("react.memo_cache_sentinel")?(r=()=>{f.current=!0},a[0]=r):r=a[0],a[1]!==e?(n=[e],a[1]=e,a[2]=n):n=a[2],(0,l.useEffect)(r,n),a[3]!==t||a[4]!==u||a[5]!==e?(o=async()=>{f.current&&(f.current=!1,u(null),u(await t(e)))},a[3]=t,a[4]=u,a[5]=e,a[6]=o):o=a[6];let p=o;return a[7]!==d||a[8]!==p?(s={html:d,setHtml:c,loadPreview:p,previewStale:f},a[7]=d,a[8]=p,a[9]=s):s=a[9],s}(X,ew);J[3]!==to||J[4]!==tl||J[5]!==eS?(a=()=>{"preview"===eS&&tl.current&&to()},J[3]=to,J[4]=tl,J[5]=eS,J[6]=a):a=J[6],(0,l.useEffect)(a);let[ts,ta]=(0,l.useState)(0);J[7]!==e9||J[8]!==eS?(d=()=>{let e=e9.current;if(!e||"edit"!==eS)return;ta(e.offsetHeight);let t=new ResizeObserver(e=>{let[t]=e;t&&ta(t.contentRect.height)});return t.observe(e),()=>t.disconnect()},u=[e9,eS],J[7]=e9,J[8]=eS,J[9]=d,J[10]=u):(d=J[9],u=J[10]),(0,l.useLayoutEffect)(d,u),J[11]!==eH||J[12]!==e9||J[13]!==tt?(p=()=>({focus:e=>e9.current?.focus(e),moveCursorToEnd:()=>{if(e9.current){let e=e9.current.value.length;e9.current.setSelectionRange(e,e)}},scrollIntoView:e=>eH.current?.scrollIntoView(e),reset:()=>tt(),inputRef:e9,[ek]:void 0}),m=[eH,e9,tt],J[11]=eH,J[12]=e9,J[13]=tt,J[14]=p,J[15]=m):(p=J[14],m=J[15]),(0,l.useImperativeHandle)(Z,p,m),J[16]!==eG?(h=e=>{let t=[];for(let r of e){let e=r.name.includes(".")?`.${r.name.split(".").pop()}`:"no-extension";(0,I.BI)("markdown_editor.file_upload.rejected_file_type",{rejected_file_type:e,mime_type:r.type||"unknown"}),t.push(e)}eG?.(e,t)},J[16]=eG,J[17]=h):h=J[17];let td=h;J[18]!==eU||J[19]!==eQ||J[20]!==tr||J[21]!==td||J[22]!==e9||J[23]!==eW||J[24]!==X?(g={emitChange:tr,value:X,inputRef:e9,disabled:eQ,onUploadFile:eW,acceptedFileTypes:eU,onFilesRejected:td},J[18]=eU,J[19]=eQ,J[20]=tr,J[21]=td,J[22]=e9,J[23]=eW,J[24]=X,J[25]=g):g=J[25];let tc=ey(g),tu=tc?.uploadProgress!==void 0;J[26]!==tr?(y={emitChange:tr},J[26]=tr,J[27]=y):y=J[27];let tf=(0,es.KI)(y);J[28]!==tr?(k={emitChange:tr},J[28]=tr,J[29]=k):k=J[29];let tp=(e=>{let t,r,n=(0,i.c)(4),{emitChange:o}=e;n[0]!==o?(t=e=>{let t=e.currentTarget;if(e.defaultPrevented||"Tab"!==e.key||t.selectionEnd-t.selectionStart==0)return;e.preventDefault();let[r,n]=(0,en.ty)(t),i=t.value.slice(r,n).split(/\r?\n/).map(t=>e.shiftKey?ei.exec(t)?.[1]??"":` ${t}`).join(` +`);o(i,[r,n],[r,r+i.length])},n[0]=o,n[1]=t):t=n[1];let l=t;return n[2]!==l?(r={onKeyDown:l},n[2]=l,n[3]=r):r=n[3],r})(k);J[30]!==tr?(b={emitChange:tr},J[30]=tr,J[31]=b):b=J[31];let tm=(e=>{let t,r,n=(0,i.c)(4),{emitChange:o}=e;n[0]!==o?(t=e=>{if("Enter"===e.key){let t=e.currentTarget,r=t.selectionStart;if(r!==t.selectionEnd)return;let{output:n,newCursorIndex:i}=function(e){var t;let r,n,i=e.selectionStart;if(!function(e,t){let r=[],n=0,i=-1;for(;(i=eu(ed,e,n))>-1;){let t=eu(ec,e,n=i+ea.length);if(-1===t)return!1;n=t+3,r.push([i,t])}return r.some(e=>t>e[0]&&t{requestAnimationFrame(()=>tr(e.content))},onOpen:e4,ref:th}:null,J[32]=tr,J[33]=e4,J[34]=eB,J[35]=x):x=J[35];let tg=x;J[36]!==eQ||J[37]!==tp||J[38]!==tu||J[39]!==tf||J[40]!==eT||J[41]!==ej||J[42]!==tm?(v=e=>{let t=tb.current;if(!eQ)if(e.ctrlKey&&"."===e.key)th.current?.openMenu(),e.preventDefault(),e.stopPropagation();else if((0,en.VL)(e)){if("Enter"!==e.key||tu)if("b"===e.key)t?.bold();else if("i"===e.key)t?.italic();else if(e.shiftKey&&"."===e.key)t?.quote();else if("e"===e.key)t?.code();else if("k"===e.key)t?.link();else if("8"===e.key)t?.unorderedList();else if(e.shiftKey&&"7"===e.key)t?.orderedList();else if(e.shiftKey&&["l","L"].includes(e.key))t?.taskList();else{if(!(e.shiftKey&&["p","P"].includes(e.key)))return;eT?.("preview")}else ej?.();e.preventDefault(),e.stopPropagation()}else tf.onKeyDown(e),tp.onKeyDown(e),tm.onKeyDown(e)},J[36]=eQ,J[37]=tp,J[38]=tu,J[39]=tf,J[40]=eT,J[41]=ej,J[42]=tm,J[43]=v):v=J[43];let ty=(0,C._)(v),tk=(0,l.useRef)(eT);J[44]!==eT?(w=()=>{tk.current=eT},J[44]=eT,J[45]=w):w=J[45],(0,l.useEffect)(w),J[46]!==e6||J[47]!==e9||J[48]!==eS?(N=()=>{if("preview"===eS){eb.push(e6);let e=e=>{!e.defaultPrevented&&eb.at(-1)===e6&&(0,en.VL)(e)&&e.shiftKey&&"p"===e.key&&(tk.current?.("edit"),setTimeout(()=>e9.current?.focus()),e.preventDefault())};return document.addEventListener("keydown",e),()=>{document.removeEventListener("keydown",e),eb=eb.filter(e=>e!==e6)}}},P=[eS,e6,e9],J[46]=e6,J[47]=e9,J[48]=eS,J[49]=N,J[50]=P):(N=J[49],P=J[50]),(0,l.useEffect)(N,P);let tb=(0,l.useRef)(null);J[51]!==eQ||J[52]!==tc?.clickTargetProps||J[53]!==tc?.errorMessage||J[54]!==tc?.isDraggedOver||J[55]!==tc?.uploadProgress||J[56]!==e0||J[57]!==eS?(tc?.isDraggedOver,tc?.uploadProgress,tc?.clickTargetProps,tc?.errorMessage,A={disabled:eQ,formattingToolsRef:tb,required:e0,fileDraggedOver:tc?.isDraggedOver??!1,fileUploadProgress:tc?.uploadProgress,uploadButtonProps:tc?.clickTargetProps??null,errorMessage:tc?.errorMessage,previewMode:"preview"===eS},J[51]=eQ,J[52]=tc?.clickTargetProps,J[53]=tc?.errorMessage,J[54]=tc?.isDraggedOver,J[55]=tc?.uploadProgress,J[56]=e0,J[57]=eS,J[58]=A):A=J[58];let tx=A;J[59]!==eT||J[60]!==eS?(O=e=>{(0,I.BI)("markdown_editor.select_view",{mode:e,from_mode:eS,trigger:"view_switcher",did_change:eS!==e,feature_flag_markdown_experience_hybrid_editor:e7}),eT?.(e)},J[59]=eT,J[60]=eS,J[61]=O):O=J[61];let tv=O,t_=tc?.uploadProgress!==void 0;J[62]!==to||J[63]!==tv||J[64]!==t_||J[65]!==eS?(R=(0,n.jsx)(j.m,{selectedView:eS,onViewSelect:tv,disabled:t_,onLoadPreview:to}),J[62]=to,J[63]=tv,J[64]=t_,J[65]=eS,J[66]=R):R=J[66];let tw=R;J[67]!==e6?($=(0,n.jsx)(M,{ref:tb,forInputId:e6}),J[67]=e6,J[68]=$):$=J[68];let tI="edit"===eS?"MarkdownEditor-module__inputWrapper--L6JTI":"MarkdownEditor-module__previewWrapper--Bfk_2",tj=eQ&&"MarkdownEditor-module__disabled--jxhXI",tS=e_&&L;J[69]!==eI||J[70]!==tI||J[71]!==tj||J[72]!==tS?(B=(0,E.$)(eI,tI,tj,tS),J[69]=eI,J[70]=tI,J[71]=tj,J[72]=tS,J[73]=B):B=J[73],J[74]!==tw?(F=!e8&&(0,n.jsx)("div",{className:"MarkdownEditor-module__viewSwitchWrapper--oQoLo",children:tw}),J[74]=tw,J[75]=F):F=J[75],J[76]!==e3||J[77]!==eS?(D="edit"===eS?e3.toolbar??(0,n.jsx)(et,{children:(0,n.jsx)(ee,{})}):(0,n.jsx)("div",{style:{flex:1}}),J[76]=e3,J[77]=eS,J[78]=D):D=J[78],J[79]!==tg||J[80]!==D?(z=(0,n.jsx)(Q,{value:tg,children:D}),J[79]=tg,J[80]=D,J[81]=z):z=J[81],J[82]!==tw?(V=e8&&(0,n.jsx)("div",{className:"MarkdownEditor-module__redesignedViewSwitchWrapper--lLzBL",children:tw}),J[82]=tw,J[83]=V):V=J[83],J[84]!==F||J[85]!==z||J[86]!==V?(H=(0,n.jsxs)("div",{className:"MarkdownEditor-module__header--OuWiJ",children:[F,z,V]}),J[84]=F,J[85]=z,J[86]=V,J[87]=H):H=J[87];let tT=e5?void 0:tn,tC=e5?tn:void 0,tE=tc?.isDraggedOver??!1,tN="edit"===eS,tM=tc?.pasteTargetProps,tL=tc?.dropTargetProps;return J[88]!==ex||J[89]!==eQ||J[90]!==eN||J[91]!==eM||J[92]!==e_||J[93]!==eK||J[94]!==e6||J[95]!==ty||J[96]!==te||J[97]!==e9||J[98]!==ev||J[99]!==eZ||J[100]!==eg||J[101]!==eL||J[102]!==eJ||J[103]!==eX||J[104]!==eR||J[105]!==ep||J[106]!==e1||J[107]!==eh||J[108]!==eP||J[109]!==e0||J[110]!==tT||J[111]!==tC||J[112]!==tE||J[113]!==tN||J[114]!==tM||J[115]!==tL||J[116]!==X?(W=(0,n.jsx)(q,{value:X,onChange:tT,onInput:tC,onFocus:ep,emojiSuggestions:eN,emojiTone:eM,mentionSuggestions:eL,referenceSuggestions:eP,disabled:eQ,placeholder:eh,labelledBy:ev,"aria-describedby":ex,id:e6,maxLength:eg,ref:e9,fullHeight:e_,isDraggedOver:tE,minHeightLines:eJ,maxHeightLines:eZ,visible:tN,monospace:eX,required:e0,name:eR,pasteUrlsAsPlainText:e1,generatingText:eK,...ty,...tM,...tL},te),J[88]=ex,J[89]=eQ,J[90]=eN,J[91]=eM,J[92]=e_,J[93]=eK,J[94]=e6,J[95]=ty,J[96]=te,J[97]=e9,J[98]=ev,J[99]=eZ,J[100]=eg,J[101]=eL,J[102]=eJ,J[103]=eX,J[104]=eR,J[105]=ep,J[106]=e1,J[107]=eh,J[108]=eP,J[109]=e0,J[110]=tT,J[111]=tC,J[112]=tE,J[113]=tN,J[114]=tM,J[115]=tL,J[116]=X,J[117]=W):W=J[117],J[118]!==eV||J[119]!==tc||J[120]!==eS?(U="edit"===eS&&tc?.errorMessage?(0,n.jsx)(c.F,{children:tc.errorMessage}):eV,J[118]=eV,J[119]=tc,J[120]=eS,J[121]=U):U=J[121],J[122]!==e_||J[123]!==ti||J[124]!==ts||J[125]!==e2||J[126]!==eS?(G="preview"===eS&&(0,n.jsxs)("div",{"aria-live":"polite",tabIndex:-1,className:(0,E.$)("MarkdownEditor-module__previewViewerWrapper--rhH_h",e_&&L),style:{minHeight:ts},children:[(0,n.jsx)("h2",{className:"MarkdownEditor-module__previewHeader--ktZV6",children:"Rendered Markdown Preview"}),(0,n.jsx)(S.G,{verifiedHTML:ti||"Nothing to preview",loading:null===ti,teamHovercardsEnabled:e2,openLinksInNewTab:!0})]}),J[122]=e_,J[123]=ti,J[124]=ts,J[125]=e2,J[126]=eS,J[127]=G):G=J[127],J[128]!==B||J[129]!==H||J[130]!==W||J[131]!==U||J[132]!==G?(Y=(0,n.jsxs)("div",{className:B,children:[H,W,U,G]}),J[128]=B,J[129]=H,J[130]=W,J[131]=U,J[132]=G,J[133]=Y):Y=J[133],J[134]!==tx||J[135]!==eY||J[136]!==$||J[137]!==Y?(K=(0,n.jsxs)(s,{value:tx,children:[$,Y,eY]}),J[134]=tx,J[135]=eY,J[136]=$,J[137]=Y,J[138]=K):K=J[138],K};ex.displayName="ClassicMarkdownEditor";let ev=({ref:e,hybridEditorProps:t,...r})=>{let{footer:i,banner:o,generatingText:a,...d}=r,c=(0,l.useMemo)(()=>({disabled:r.disabled??!1,required:r.required??!1,formattingToolsRef:{current:null},uploadButtonProps:null,fileDraggedOver:!1,previewMode:!1}),[r.disabled,r.required]),u=(0,l.useRef)(null);return(0,l.useImperativeHandle)(e,()=>({focus:()=>u.current?.focus(),moveCursorToEnd:()=>u.current?.moveCursorToEnd(),reset:()=>u.current?.reset(),scrollIntoView:e=>u.current?.scrollIntoView(e),get inputRef(){return u.current?.containerRef??{current:null}},[ek]:void 0})),(0,n.jsxs)(s,{value:c,children:[(0,n.jsx)(w.f,{ref:u,...d,...t,isGenerating:a,banner:o}),i]})};ev.displayName="HybridMarkdownEditorWithFooter";let e_=e=>{let t,r,o,s,d,c,u,h,g=(0,i.c)(21),{ref:y,...k}=e,{disabled:b,"aria-describedby":x,fullHeight:w,viewMode:j,onChangeViewMode:S,children:T}=k,C=void 0!==b&&b;g[0]===Symbol.for("react.memo_cache_sentinel")?(t={toolbar:er,actions:a,label:v,footer:m},g[0]=t):t=g[0];let[N,M]=(0,f.H)(T,t),[P,A]=(0,l.useState)("edit"),[O,R]=void 0===j?[P,A]:[j,S],$=(h=(0,_.G7)("markdown_experience_hybrid_editor"),"hybrid"===O&&h?"hybrid":"classic"),B=(0,l.useId)();g[1]!==N.actions||g[2]!==N.footer?(r=N.footer??(0,n.jsx)(p,{children:(0,l.isValidElement)(N.actions)&&N.actions.props.children}),g[1]=N.actions,g[2]=N.footer,g[3]=r):r=g[3];let F=r,D=x?`${B} ${x}`:B;g[4]!==F||g[5]!==D?(o={footer:F,"aria-describedby":D},g[4]=F,g[5]=D,g[6]=o):o=g[6];let z=o;(0,l.useEffect)(()=>(0,I.BI)("markdown_editor.mount",{editorType:$,feature_flag_markdown_experience_hybrid_editor:(0,_.G7)("markdown_experience_hybrid_editor")}),[$]);let V=(0,l.useRef)(null),H="hybrid"===$?(0,n.jsx)(ev,{...k,ref:y,onChangeViewMode:R,...z}):(0,n.jsx)(ex,{...k,viewMode:"hybrid"===O?"edit":O,onChangeViewMode:R,ref:y,containerRef:V,...z,children:N.toolbar}),q=(0,E.$)("MarkdownEditor-module__fieldSet--QLrYu",w&&L);g[7]!==M?(s=(0,n.jsx)("div",{className:"MarkdownEditor-module__hidden--tMY1v",children:M}),g[7]=M,g[8]=s):s=g[8];let W=`Markdown input: ${"hybrid"===O?"hybrid mode selected.":"preview"===O?" preview mode selected.":" edit mode selected."}`;return g[9]!==B||g[10]!==W?(d=(0,n.jsx)("span",{className:"sr-only",id:B,"aria-live":"polite",children:W}),g[9]=B,g[10]=W,g[11]=d):d=g[11],g[12]!==H||g[13]!==d?(c=(0,n.jsxs)("div",{ref:V,className:"MarkdownEditor-module__container--xSX9w",children:[d,H]}),g[12]=H,g[13]=d,g[14]=c):c=g[14],g[15]!==C||g[16]!==N.label||g[17]!==c||g[18]!==q||g[19]!==s?(u=(0,n.jsxs)("fieldset",{"aria-disabled":C,className:q,children:[s,N.label,c]}),g[15]=C,g[16]=N.label,g[17]=c,g[18]=q,g[19]=s,g[20]=u):u=g[20],u};e_.displayName="MarkdownEditor";let ew=Object.assign(e_,{Label:v,Toolbar:er,ToolbarButton:Y,DefaultToolbarButtons:ee,Footer:m,FooterButton:h,Actions:a,ActionButton:d,ErrorBanner:c.F,MarkdownEditorContext:s})},32964:(e,t,r)=>{r.d(t,{Al:()=>o,jr:()=>s,vp:()=>l});var n=r(47970),i=r(47601);let o="dataVideoCandidate";function l(e){(0,n.YR)(e,"element",(e,t,r)=>{if(!r||"number"!=typeof t||!(0,i.dz)(e,"p"))return;let n=e.children.filter(e=>"element"===e.type||"text"===e.type&&""!==e.value.trim());if(1!==n.length)return;let l=n[0];l?.type==="element"&&(0,i.dz)(l,"a")&&(l.properties[o]=!0)})}let s={attributes:{"*":[o]}}},33083:(e,t,r)=>{r.d(t,{Y:()=>d});var n=r(74848),i=r(16522),o=r(69599),l=r(13659),s=r(99206),a=r(34164);function d(e){let t,r,d,c,u,f=(0,i.c)(16),{onChangeViewMode:p,selectedView:m,children:h,uploadInProgress:g}=e,y=void 0===m?"hybrid":m,k=void 0!==g&&g;if(f[0]!==p||f[1]!==y||f[2]!==k){let e;r=(0,o.G7)("markdown_experience_toolbar_redesign");let i=!p||k;f[6]!==p||f[7]!==y||f[8]!==i?(e=(0,n.jsx)(s.m,{selectedView:y,onViewSelect:p,disabled:i}),f[6]=p,f[7]=y,f[8]=i,f[9]=e):e=f[9],d=e,t=(0,a.$)("Header-module__header--Sdz_S",r&&"Header-module__redesignEnabled--OIGdA"),f[0]=p,f[1]=y,f[2]=k,f[3]=t,f[4]=r,f[5]=d}else t=f[3],r=f[4],d=f[5];let b=!r&&d;f[10]===Symbol.for("react.memo_cache_sentinel")?(c=(0,n.jsx)(l.Z,{className:"Header-module__previewLabel--mn7rE"}),f[10]=c):c=f[10];let x=r&&d;return f[11]!==h||f[12]!==t||f[13]!==b||f[14]!==x?(u=(0,n.jsxs)("div",{className:t,children:[b,h,c,x]}),f[11]=h,f[12]=t,f[13]=b,f[14]=x,f[15]=u):u=f[15],u}try{d.displayName||(d.displayName="Header")}catch{}},37389:(e,t,r)=>{r.d(t,{J:()=>i,e:()=>o});var n=r(1214);function i(e,t,r){let i=n._.atOffset(e,t,r);if(r!==i?.contentStart&&r!==i?.start)return` + +`;let o=i?.previous();return!o||o?.isBlank?"":` +`}function o(e,t,r=!1){return` +`===e[t]?` +`===e[t+1]?"":` +`:t>=e.length&&!r?"":` + +`}},38939:(e,t,r)=>{r.d(t,{A:()=>o,u:()=>l});var n=r(77695),i=r(55220);let o=e=>{let t=e?.children?.some(e=>"delimiter"===e.type&&"labelMarker"===e.tokenType),r=e?.children?.some(e=>"delimiter"===e.type&&"resource"===e.tokenType);return t&&r},l=e=>{let t,r,l;e.hasFocus||e.focus();let s=e.state.selection.main,a=(0,i.rx)(e,"link");if(a&&o(a))return(0,i.JB)(e,a),!0;let{start:d,end:c}=(0,n.Jr)(e.state)?{start:s.from,end:s.to}:(0,n.cL)(e.state.doc.toString(),s.anchor);return a?(t="[](",r=")",l=d+1):(t="[",r="]()",l=c+3),e.dispatch({changes:[{from:d,insert:t},{from:c,insert:r}],selection:{anchor:l},userEvent:"input",scrollIntoView:!0}),!0}},39603:(e,t,r)=>{r.d(t,{Ci:()=>d,Ec:()=>a});var n=r(74848),i=r(16522),o=r(53419),l=r(96540);let s=(0,l.createContext)({trackViewSwitch:()=>{},trackToolbarInteraction:()=>{},trackKeyboardShortcut:()=>{},trackAutocompleteShown:()=>{},trackAutocompleteSelected:()=>{},trackFileUpload:()=>{}});function a(){return(0,l.use)(s)}function d(e){let t,r,l=(0,i.c)(5),{options:a,children:d}=e;l[0]!==a?(t=function({featureFlagEnabled:e,editorId:t,surface:r}){let n={feature_flag_markdown_experience_hybrid_editor:e};t&&(n.editor_id=t),r&&(n.surface=r);let i=(e,t)=>{let r={...n,...t};try{(0,o.BI)(e,r)}catch(e){if(e instanceof ReferenceError&&"string"==typeof e.message&&e.message.includes("telemetry"))return;throw e}},l=(e,t)=>{i(`hybrid_markdown_editor.${e}`,t)};return{trackViewSwitch:({from:e,to:t,trigger:r})=>{i("markdown_editor.select_view",{mode:t,from_mode:e??"unknown",trigger:r,did_change:!e||e!==t})},trackToolbarInteraction:({control:e,action:t,trigger:r,isActive:n,keybinding:i,handled:o})=>{l("toolbar_interaction",{control:e,action:t,trigger:r,is_active:n??null,keybinding:i,handled:o??null})},trackKeyboardShortcut:({commandId:e,shortcut:t,handled:r})=>{l("keyboard_shortcut",{command:e,shortcut:t,handled:r})},trackAutocompleteShown:({triggerChar:e,queryLength:t,suggestionState:r,suggestionCount:n})=>{l("autocomplete_shown",{trigger_char:e,query_length:t,suggestion_state:r,suggestion_count:n??null})},trackAutocompleteSelected:({triggerChar:e,insertedLength:t,multiStep:r,suggestionKind:n})=>{l("autocomplete_selected",{trigger_char:e,inserted_length:t,multi_step:r,suggestion_kind:n})},trackFileUpload:({phase:e,mimeType:t,sizeBytes:r,mediaKind:n,errorType:i})=>{l("file_upload",{phase:e,mime_type:t,size_bytes:r,media_kind:n??"other",error_type:i??null})}}}(a),l[0]=a,l[1]=t):t=l[1];let c=t;return l[2]!==d||l[3]!==c?(r=(0,n.jsx)(s,{value:c,children:d}),l[2]=d,l[3]=c,l[4]=r):r=l[4],r}try{s.displayName||(s.displayName="HybridEditorTelemetryContext")}catch{}try{d.displayName||(d.displayName="HybridEditorTelemetryProvider")}catch{}},42306:(e,t,r)=>{r.d(t,{dT:()=>d,hO:()=>a,mM:()=>s});var n=r(16058),i=r(78625),o=r(65012),l=r(3266);function s(e,t,r){let i=[];for(let l of e.children.slice(t+1))if("listItem"===l.type){let e=(0,n.xM)(l).listItemPrefix;if(!e||!(0,o.z)(e))continue;let t=null===r?(0,n.Ts)(e.raw):(0,n.LY)(r);i.push({from:e.position.start.offset,to:e.position.end.offset,insert:t}),r=t}return i}function a(e){return e.filter(e=>"listItem"===e.type&&(0,o.z)(e))}function d(e){if(1!==e.selection.ranges.length)return null;let t=e.selection.main.from,r=e.selection.main.to,n=(0,i.v5)((0,l.wk)(e),t,r),o=n.findLastIndex(e=>"list"===e.type),s=n[o];if(!s)return null;let d=a((0,i.aI)(s,t,r));if(0===d.length)return null;let c=n.slice(0,o),u=[];for(let e of c)if("listItem"===e.type){let t=u.at(-1);t&&(t.item=e)}else"list"===e.type&&u.push({list:e,item:void 0});return{list:s,selectedItems:d,parents:u}}},42931:(e,t,r)=>{r.d(t,{O:()=>o});var n=r(16522),i=r(96540);let o=e=>{let t,r,o=(0,n.c)(6),{htmlContainerRef:l,htmlContainer:s,onLinkClick:a,openLinksInNewTab:d}=e;o[0]!==s||o[1]!==l||o[2]!==a||o[3]!==d?(t=()=>{let e=l?.current||s;if(!e)return;let t=e=>{let t=e.target.closest("a");t&&(a?.(e),!e.defaultPrevented&&d&&t.href&&(window.open(t.href,"_blank","noopener noreferrer"),e.preventDefault()))};return e.addEventListener("click",t),()=>{e?.removeEventListener("click",t)}},r=[s,l,a,d],o[0]=s,o[1]=l,o[2]=a,o[3]=d,o[4]=t,o[5]=r):(t=o[4],r=o[5]),(0,i.useEffect)(t,r)}},43346:(e,t,r)=>{function n(e,t){if(e===t)return!0;if(e.size!==t.size)return!1;for(let r of e)if(!t.has(r))return!1;return!0}r.d(t,{XT:()=>i,c5:()=>n,gU:()=>l});let i=()=>(...e)=>new Set(e);function o(e){return e.endsWith("/")?e.slice(0,e.length-1):e}function l(e){try{let t=new URL(e);return o(t.href).trim()===o(e).trim()}catch{return!1}}},45007:(e,t,r)=>{r.d(t,{S:()=>o});var n=r(54571),i=r(96540);let o=({disabled:e,minHeightLines:t,maxHeightLines:r,elementRef:o,value:l})=>{let[s,a]=(0,i.useState)(void 0),[d]=(0,n.I)(()=>CSS.supports("field-sizing","content"),!0),c=(0,i.useCallback)(()=>{if(e)return;let t=o.current;if(!t||d||!l)return;let r=getComputedStyle(t);a(`calc(${t.scrollHeight}px - ${r.paddingTop} - ${r.paddingBottom})`)},[e,o,d,l]);return(0,i.useLayoutEffect)(c,[c]),(0,i.useEffect)(c,[]),{height:s,minHeight:t?`${t}lh`:void 0,maxHeight:r?`${r}lh`:void 0,boxSizing:"content-box",fieldSizing:"content",overflowWrap:"anywhere"}}},45580:(e,t,r)=>{r.d(t,{S:()=>i,t:()=>n});let n={strong:"**",emphasis:"_",inlineCode:"`",delete:"~"},i={"*":"*",_:"_",$:"$","~":"~","[":"]","(":")","`":"`"}},47601:(e,t,r)=>{r.d(t,{_z:()=>a,dz:()=>l,nT:()=>s,rf:()=>function e(t){return t.children.map(t=>"text"===t.type?t.value:"element"!==t.type||Object.hasOwn(t.properties??{},o.Lm)?"":e(t)).join("")}});var n=r(91775),i=r(55035),o=r(75617);function l(e,t){return"element"===e.type&&e.tagName===t}function s(e){if(!e)return{};let t={};for(let r of Object.getOwnPropertyNames(e)){let o=(0,n.I)(i.qy,r),l=e[r]?.toString();"string"==typeof l&&(t[o.attribute]=l)}return t}function a(e,t,r){if(e===t)return!0;if(e.type!==t.type)return!1;let n=r?.ignorePosition?(e,t)=>"position"===e?{}:t:void 0;return JSON.stringify(e,n)===JSON.stringify(t,n)}},48749:(e,t,r)=>{r.d(t,{h:()=>n});function n(e){let t=e.raw,r=t.search(/\S/),n=t.length-t.trimEnd().length;return{startOffset:e.position.start.offset+r,endOffset:e.position.end.offset-n}}},53548:(e,t,r)=>{r.d(t,{bF:()=>W,lM:()=>V,Jr:()=>Y,oE:()=>K,b5:()=>Q,kD:()=>J,rk:()=>Z,o8:()=>X,SF:()=>q,Kp:()=>H,gk:()=>z,xn:()=>G,VA:()=>ee,Dc:()=>et,KB:()=>U,QF:()=>en});var n=r(24774),i=r(1214),o=r(78625),l=r(65012),s=r(3266);let a=e=>e.map(e=>e.prefixes.filter(e=>"blockQuotePrefix"===e.tokenType));var d=r(53839),c=r(1830);let u=e=>{if(1!==e.state.selection.ranges.length||!e.state.selection.main.empty)return!1;let t=e.state.doc.toString(),r=e.state.selection.main.anchor,n=(0,s.wk)(e.state),o=i._.atOffset(n,t,r);if(!o?.isBlank)return!1;let l=o.lastPrefix;if(l?.tokenType!=="blockQuotePrefix"||!o.isOffsetAfterPrefixes(r))return!1;let a=l.position?.start.offset??o.start,u="",f=a;return o.previous()?.isBlank===!1&&(u+=` +`,f+=1),o.next()?.isBlank===!1&&(u+=` +`),e.dispatch({changes:[{from:a,to:o.end,insert:u}],selection:d.OF.single(f),annotations:[c.c.of("escapeBlockquote")],userEvent:"input.type",scrollIntoView:!0}),!0},f=e=>{var t;if(1!==e.state.selection.ranges.length||!e.state.selection.main.empty)return!1;let r=e.state.doc.toString(),n=e.state.selection.main.anchor,a=(0,s.wk)(e.state),d=(0,o.NC)(a,n);if(d?.type!=="code")return!1;let c=i._.atOffset(a,r,n);if(!c||n!==c.end)return!1;let u=d.children?.find(e=>"delimiter"===e.type&&"codeFencedFence"===e.tokenType);if(!u||!(0,l.z)(u)||!c.contains(u.position.start.offset))return!1;let f=(t=u.raw,t.match(/^(`{3,}|~{3,})/)?.[1]??null);return!!f&&(e.dispatch({changes:[{from:n,insert:` + +${f}`}],selection:{anchor:n+1},userEvent:"input.type",scrollIntoView:!0}),!0)};var p=r(77695);function m(e){let t=e.state.selection.main.anchor,r=(0,s.wk)(e.state),n=(0,o.NC)(r,t);return n?.type==="code"}let h=e=>{let{from:t}=(0,p.j6)(e.state);return!!m(e)&&((0,p.Jr)(e.state)?e.dispatch(e.state.changeByRange(e=>({changes:[{from:t,insert:" "}],range:d.OF.range(e.from+1,e.to+1)})),{userEvent:"input.type",scrollIntoView:!0}):e.dispatch(e.state.replaceSelection(" ")),!0)},g=e=>{let t=e.state.selection.main.anchor,r=e.state.doc.toString(),{from:n,to:i}=(0,p.j6)(e.state);if(m(e)){let o=r.slice(n,i);return o.startsWith(" ")?(e.dispatch({changes:[{from:n,to:n+1,insert:""}],userEvent:"input.type",scrollIntoView:!0}),!0):!o.startsWith(" ")||(e.dispatch({changes:[{from:n,to:n+4,insert:""}],selection:d.OF.single(t-4),userEvent:"input.type",scrollIntoView:!0}),!0)}return!1};var y=r(13233),k=r(45580),b=r(55220),x=r(38939),v=r(37389),_=r(16058),w=r(42306);let I=e=>{if(1!==e.state.selection.ranges.length)return!1;let t=(0,s.wk)(e.state),r=e.state.doc.toString(),n=(0,w.dT)(e.state);if(!n)return!1;let o=n?.parents.at(-1),a=o&&(0,_.xM)(o.item).listItemPrefix?.raw,d=n.selectedItems.map(e=>i._.linesAtRange(t,r,e.position.start.offset,e.position.end.offset-1)),u=d.some(e=>e.some(e=>!e.isBlank)),f=new WeakSet,p=[];for(let[e,t]of n.selectedItems.entries())for(let[r,n]of(d[e]??[]).entries()){let e=0===r?n.prefixes.findLast(e=>"listItemPrefix"===e.tokenType):void 0,i=n.prefixes.findLast(e=>"listItemIndent"===e.tokenType),o=0===r?n.prefixes.find(e=>"taskListCheck"===e.tokenType):void 0,s=0===r&&(0,_.Wq)(n.content),d=n.prefixes.some(e=>"listItemIndent"===e.tokenType),c=0===r&&n.isBlank&&!d&&(void 0!==o||s);c&&f.add(t);let u=c&&o&&(0,l.z)(o)?o.position.end.offset:c&&s?n.contentStart+n.content.length:e?.position?.end.offset??i?.position?.end.offset??o?.position?.start.offset??n.contentStart,m={from:i?.position?.start.offset??e?.position?.start.offset??n.start,to:u,insert:a&&e?a=(0,_.LY)(a):""};p.push(m)}let m=n.list.children.indexOf(n.selectedItems.at(-1));m>-1&&p.push((0,w.mM)(n.list,m,null));let h=[];if(o){let e=o.list.children.indexOf(o.item);p.push((0,w.mM)(o.list,e,a??""))}else{for(let e of n.selectedItems){let{taskListPrefix:t}=(0,_.xM)(e);t&&(0,l.z)(t)&&!f.has(e)&&p.push({from:t.position.start.offset,to:t.position.end.offset})}if(u){let e=i._.atOffset(t,r,n.selectedItems[0].position.start.offset-1);e?.prefixes.some(e=>"listItemPrefix"===e.tokenType||"listItemIndent"===e.tokenType)&&p.push({from:e.end,insert:` +`});let o=i._.atOffset(t,r,n.selectedItems.at(-1).position.end.offset+1);o?.prefixes.some(e=>"listItemPrefix"===e.tokenType||"listItemIndent"===e.tokenType)&&p.push({from:o.start,insert:` +`}),h.push(c.c.of("escapeList"))}}return e.dispatch({scrollIntoView:!0,userEvent:"input",changes:p,annotations:h}),!0},j=e=>{if(1!==e.state.selection.ranges.length||!e.state.selection.main.empty)return!1;let t=e.state.doc.toString(),r=e.state.selection.main.anchor,n=(0,s.wk)(e.state),o=i._.atOffset(n,t,r);return!!o&&!!S(o,r)&&I(e)},S=(e,t)=>!!e.isBlank&&e.lastPrefix?.tokenType==="listItemPrefix"&&e.isOffsetAfterPrefixes(t);var T=r(9445);function C(e,t){if(0===t)return e.start;for(let r of e.prefixes)if("blockQuotePrefix"===r.tokenType&&0==--t)return r.position?.end.offset??e.start;return e.start}function E(e,t,r,n){let o=[],s=null;for(let a of(0,w.hO)(r.children))for(let[r,d]of i._.linesAtRange(e,t,a.position.start.offset,a.position.end.offset-1).entries())if(0===r){let e=d?.prefixes.find(e=>"listItemPrefix"===e.tokenType);if(!e||!(0,l.z)(e))continue;let t=s?(0,_.LY)(s):(0,_.el)(n);o.push({from:e.position.start.offset,to:e.position.end.offset,insert:t}),s=t}else{let e=d?.prefixes.find(e=>"listItemIndent"===e.tokenType);if(!e||!s||!(0,l.z)(e)||e.raw.length===s.length)continue;o.push({from:e.position.start.offset,to:e.position.end.offset,insert:(0,T.cz)(s)})}return o}let N=e=>(t,r)=>{let n,a=t.state,c=(0,s.wk)(a),u=a.doc.toString(),f=a.selection.main,p=f.from===f.to,m=p?i._.atOffset(c,u,f.from):null,h="keyboard"===r?"input.type":"input",g=Array.from((0,o.v5)(c,f.from,f.to,!0)).findLast(e=>"list"===e.type);if(g)if((g.ordered??!1)===e)return(e=>{let t=(0,s.wk)(e.state),r=e.state.doc.toString(),n=(0,w.dT)(e.state);if(!n)return!1;let o=n.parents.length,a=[];for(let e of(0,w.hO)(n.list.children))for(let n of i._.linesAtRange(t,r,e.position.start.offset,e.position.end.offset-1)){let e=function(e,t){for(let r of e.prefixes)if("listItemIndent"===r.tokenType||"listItemPrefix"===r.tokenType){if(0===t)return r;t--}}(n,o);e&&(0,l.z)(e)&&a.push({from:e.position.start.offset,to:e.position.end.offset})}return!!a.length&&(e.dispatch({changes:a,userEvent:"input",scrollIntoView:!0}),!0)})(t);else{let r=E(c,u,g,e);return t.dispatch({changes:r,scrollIntoView:!0,userEvent:h}),!0}let y=(0,o.aI)(c,f.from,f.to),k=0;for(;1===y.length&&"blockquote"===y[0].type;)y=(0,o.aI)(y[0],f.from,f.to),k++;let b=m?m.prefixes.filter(e=>"blockQuotePrefix"===e.tokenType).length:0;b>k&&(k=b);let x=null,v=[],I=[];for(let t of y){if("list"===t.type){v.push(...E(c,u,t,e));continue}let r=(0,l.z)(t)?i._.linesAtRange(c,u,t.position.start.offset,t.position.end.offset-1):[];r.length>0&&I.push({lines:r,nodeType:t.type})}0===I.length&&m&&I.push({lines:[m],nodeType:"paragraph"});let j=I.length;for(let[t,r]of I.entries()){let{lines:n,nodeType:i}=r;for(let[r,o]of n.entries()){let l=o.overlaps(f.from,f.to)||p&&(f.from===o.start||f.from===o.end);if(o.isBlank&&!l)continue;let s=C(o,k);if("paragraph"!==i||l){if(0===r||"paragraph"===i){let t=o.previous(),r=t&&t.isBlank;null!==x||!t||t.isBlank||o.isBlank||v.push({from:o.start-1,insert:` +`});let n=null===x||r?(0,_.el)(e):(0,_.LY)(x),i={from:s,insert:n};v.push(i),x=n}else x&&v.push({from:s,insert:(0,T.cz)(x)});if(!o.isBlank&&t===j-1&&r===n.length-1){let e=o.next();e&&!e.isBlank&&v.push({from:o.end,insert:` +`})}}}}if(0===v.length){let t=i._.atOffset(c,u,f.from);if(t&&p&&(f.from===t.start||f.from===t.end)){let r=t.prefixes.filter(e=>"blockQuotePrefix"===e.tokenType).length,i=C(t,k||r),o=t.previous(),l=o&&!o.isBlank?1:0;l&&v.push({from:t.start-1,insert:` +`});let s=(0,_.el)(e);if(v.push({from:i,insert:s}),!n){let e=i+l+s.length;n=d.OF.single(e,e)}let a=t.next();a&&!a.isBlank&&v.push({from:t.end,insert:` +`})}if(0===v.length)return!1}if(!n&&p&&v.length>0)try{let t=d.VR.of(v,u.length);if(m?.isBlank){let e=t.mapPos(f.from,1);n=d.OF.single(e)}else{let r=t.apply(d.EY.of(u.split(` +`))).toString(),i=(0,_.el)(e),o=Math.max(0,t.mapPos(f.from,-1)-i.length),l=r.indexOf(i,o);-1===l&&(l=r.indexOf(i));let s=r.indexOf(` +${i}`,Math.max(0,f.from-1));if(-1!==s&&(-1===l||s+1=0&&a=0){let e=r.indexOf(` +${i}`,Math.max(0,l-1));if(-1!==e){let t=e+1+i.length;a"listItem"===e.type);return r[r.indexOf(t)-1]}let R=e=>{if(1!==e.state.selection.ranges.length)return!1;let t=(0,s.wk)(e.state),r=e.state.doc.toString(),n=(0,w.dT)(e.state);if(!n)return!1;let o=function(e){let t=e.list,r=e.selectedItems,n=r[0]&&O(t,r[0]),i=[...e.parents];for(;!n;){let e=i.pop();if(!e)return null;t=e.list,r=[e.item],n=O(t,e.item)}return{list:t,items:r,previousSibling:n}}(n);if(!o||!o.items[0])return!0;let a=(0,_.xM)(o.previousSibling).listItemPrefix?.raw??"* ",d=" ".repeat(a.length),c=o.previousSibling.children?.findLast(e=>"list"===e.type)?.children?.findLast(e=>"listItem"===e.type),u=c?(0,_.LY)((0,_.xM)(c).listItemPrefix?.raw??"* "):(0,_.Ts)((0,_.xM)(o.items[0]).listItemPrefix?.raw??"* "),f=o.items.map(e=>{if(!(0,l.z)(e))return[];let n=-1;return i._.linesAtRange(t,r,e.position.start.offset,e.position.end.offset-1).map((e,t)=>{if(0===t){n=e.prefixes.findIndex(e=>"listItemPrefix"===e.tokenType);let t={from:e.prefixes[n]?.position?.start?.offset??e.start,to:e.prefixes[n]?.position?.end?.offset??e.contentStart,insert:`${d}${u}`};return u=(0,_.LY)(u),t}return{from:e.prefixes[n]?.position?.start?.offset??e.start,insert:d}})}),p=o.list.children.indexOf(o.items.at(-1));return f.push((0,w.mM)(o.list,p,a)),e.dispatch({scrollIntoView:!0,userEvent:"input",changes:f}),!0};var $=r(48749),B=r(95917);let F=e=>{let t=(0,w.dT)(e.state),r=t?.selectedItems[0];if(!r)return!1;let n=(0,p.JC)(e.state);if((0,B.Ji)(e.state).some(e=>"code"===e.type&&(null===n||(0,l.z)(e)&&(0,o.DV)(n,n,e.position.start.offset,e.position.end.offset)&&e.position.start.offset!==n&&(e.children?.filter(e=>"delimiter"===e.type&&"codeFencedFence"===e.tokenType).length===1||e.position.end.offset!==n))))return!1;let{listItemPrefix:i,taskListPrefix:s}=(0,_.xM)(r),a=s??i;if(a&&(0,l.z)(a)&&(0,$.h)(a).endOffset>e.state.selection.main.from)return!1;let d=i?.raw;if(!d)return!1;let u=(0,_.LY)(d);u.endsWith(" ")||(u+=" "),s&&(u+=(0,_.DN)(!1));let f=t.selectedItems.at(-1),m=t.list.ordered?(0,w.mM)(t.list,t.list.children.indexOf(f),u):[];return e.dispatch(e.state.replaceSelection(` +${u}`),{annotations:[c.c.of("escapeList")],userEvent:"input",scrollIntoView:!0,changes:m}),!0},D=e=>{let t=e.state.selection.main.anchor,r=(0,s.wk)(e.state),n=(0,o.NC)(r,t);return n?.type==="link"&&(window.open(n.url,"_blank","noopener,noreferrer"),!0)},z={key:"Mod-k",run:x.u},V={key:"Mod-b",run:e=>(0,b.Gr)(e,"strong")},H={key:"Mod-i",run:e=>(0,b.Gr)(e,"emphasis")},q={key:"Mod-e",run:e=>(0,b.Gr)(e,"inlineCode")},W={key:"Mod-Shift-.",run:e=>{let t,r;e.hasFocus||e.focus();let n=(0,s.wk)(e.state),d=e.state.doc.toString(),c=e.state.selection.main,u=i._.linesAtRange(n,d,c.from,c.to),f=a(u);if(t=0===f.length,r=f.some(e=>0===e.length),t||r){if(1===u.length&&u[0]?.isBlank)return e.dispatch({changes:[{from:c.from,insert:"> "}],selection:{anchor:c.from+2},userEvent:"input",scrollIntoView:!0}),!0;let t=[];for(let e of u)e.prefixes.some(e=>"blockQuotePrefix"===e.tokenType)||t.push({from:e.start,insert:"> "});e.dispatch({changes:t,userEvent:"input",scrollIntoView:!0})}else{let t=[...new Set(f.map(e=>e.length))].sort((e,t)=>e-t),r=(0,o.Uh)(n,c.from,c.to).find(e=>"blockquote"===e.type);if(!r||!(0,l.z)(r))return!0;let s=r.position.start.offset,u=r.position.end.offset,p=a(i._.linesAtRange(n,d,s,u)),m=[];for(let e of p){let r=!1,n=0;for(let i of t){if(e.length(0,y._4)(e,1)},K={key:"Mod-Alt-2",run:e=>(0,y._4)(e,2)},Q={key:"Mod-Alt-3",run:e=>(0,y._4)(e,3)},J={key:"Mod-Alt-4",run:e=>(0,y._4)(e,4)},Z={key:"Mod-Alt-5",run:e=>(0,y._4)(e,5)},X={key:"Mod-Alt-6",run:e=>(0,y._4)(e,6)},ee={key:"Mod-Shift-x",run:e=>(0,b.Gr)(e,"delete")},et={key:"Mod-Shift-l",run:e=>{e.hasFocus||e.focus();let t=e.state.selection.main,r=(0,s.wk)(e.state),n=e.state.doc.toString(),o=t.from,a=t.to,c=i._.linesAtRange(r,n,o,Math.max(a-1,o)),u=[];for(let t of c){let r=t.prefixes.find(e=>"taskListCheck"===e.tokenType);if(r&&(0,l.z)(r)){let e=r.position.start.offset,t=r.position.end.offset;" "===n.charAt(t)&&(t+=1),u.push({from:e,to:t});continue}let i=t.prefixes.findLast(e=>"listItemPrefix"===e.tokenType);if(i&&(0,l.z)(i)){let e=i.position.end.offset,r=n.slice(e,t.end).match(/^\[[ xX]\]\s*/);if(r){u.push({from:e,to:e+r[0].length});continue}u.push({from:e,to:e,insert:P});continue}let o=t.contentStart;e.state.doc.sliceString(o,o+A.length)!==A&&u.push({from:o,to:o,insert:A})}if(0===u.length)return!0;let f=d.VR.of(u,e.state.doc.length),p=t.anchor===t.head,m=t.anchor<=t.head,h=f.mapPos(t.anchor,p?1:m?-1:1),g=f.mapPos(t.head,p||m?1:-1);return e.dispatch({changes:u,selection:d.OF.single(h,g),userEvent:"input",scrollIntoView:!0}),!0}},er=Object.keys(k.S).map(e=>({key:e,run:t=>{if(t.state.selection.main.empty)return!1;if("`"===e||"~"===e)return((e,t)=>{let{doc:r,selection:n}=e.state,i=n.main,o=t.repeat(2),l=Math.max(0,i.from-2),a=r.sliceString(l,i.from),c=r.sliceString(i.to,i.to+2);if(i.from>=2&&a===o&&c===o){let n=r.sliceString(i.from,i.to),o=i.to+2,a=r.toString(),c=(0,s.wk)(e.state),u=(0,v.J)(c,a,l),f=(0,v.e)(a,o),p=`${t} +`,m=n.endsWith(` +`)?t:` +${t}`,h=[];u&&h.push({from:l,insert:u}),h.push({from:i.from,insert:p}),h.push({from:i.to,insert:m}),f&&h.push({from:o,insert:f});let g=u.length+p.length;return e.dispatch(e.state.changeByRange(e=>({changes:h,range:d.OF.range(e.from+g,e.to+g)})),{userEvent:"input",scrollIntoView:!0}),!0}return(0,b.un)(e,t,t),!0})(t,e);let r=k.S[e];return(0,b.un)(t,e,r),!0}}));function en({primaryAction:e,trackKeyboardShortcut:t}){let r=[{binding:{key:"Enter",run:f},commandId:"close_code_block"},{binding:{key:"Enter",run:j},commandId:"dedent_list_if_blank_item"},{binding:{key:"Enter",run:F},commandId:"insert_new_list_item"},{binding:{key:"Enter",run:u},commandId:"split_blockquote_if_blank_line"},{binding:{key:"Alt-Enter",run:D},commandId:"visit_if_link"},{binding:{key:"Mod-Enter",run:e},commandId:"primary_action"},{binding:z,commandId:"format_link"},{binding:V,commandId:"format_bold"},{binding:H,commandId:"format_italic"},{binding:q,commandId:"format_inline_code"},{binding:ee,commandId:"format_strikethrough"},{binding:et,commandId:"format_task_list"},{binding:W,commandId:"format_blockquote"},{binding:U,commandId:"format_unordered_list"},{binding:G,commandId:"format_ordered_list"},{binding:Y,commandId:"format_heading_1"},{binding:K,commandId:"format_heading_2"},{binding:Q,commandId:"format_heading_3"},{binding:J,commandId:"format_heading_4"},{binding:Z,commandId:"format_heading_5"},{binding:X,commandId:"format_heading_6"},...er.map(e=>({binding:e,commandId:e.key?`wrap_with_${e.key.replace(/[^a-zA-Z0-9]+/g,"_").toLowerCase()}`:"wrap_with_delimiter"})),{binding:{key:"Tab",run:h},commandId:"indent_line_if_code_block"},{binding:{key:"Shift-Tab",run:g},commandId:"unindent_line_if_code_block"},{binding:{key:"Shift-Tab",run:I},commandId:"dedent_selected_list_items"},{binding:{key:"Tab",run:R},commandId:"indent_selected_list_items"},{binding:{key:"Mod-[",run:I},commandId:"dedent_selected_list_items_mod"},{binding:{key:"Mod-]",run:R},commandId:"indent_selected_list_items_mod"}].map(({binding:e,commandId:r})=>((e,r)=>{if(!e.run||!e.key)return e;let n=e.run,i=e.key;return{...e,run:e=>{let o=n(e);return t({commandId:r,shortcut:i,handled:o}),o}}})({...e},r));return n.w4.of(r)}},55220:(e,t,r)=>{r.d(t,{Gr:()=>f,JB:()=>c,j9:()=>d,rx:()=>a,un:()=>u});var n=r(53839),i=r(65012),o=r(95917),l=r(77695),s=r(45580);let a=(e,t)=>(0,o.Ji)(e.state).findLast(e=>e.type===t),d=e=>e.children?e.children.filter(e=>"delimiter"===e.type):[],c=(e,t)=>{let r=d(t).filter(i.z);if(0===r.length)return;let n=r.map(e=>({from:e.position.start.offset,to:e.position.end.offset}));e.dispatch({changes:n,userEvent:"input",scrollIntoView:!0})},u=(e,t,r)=>{e.dispatch(e.state.changeByRange(e=>({changes:[{from:e.from,insert:t},{from:e.to,insert:r}],range:n.OF.range(e.from+t.length,e.to+t.length)})),{userEvent:"input",scrollIntoView:!0})},f=(e,t)=>{e.hasFocus||e.focus();let r=a(e,t);if(r)return c(e,r),!0;let n=s.t[t];if((0,l.Jr)(e.state))u(e,n,n);else{let t=(0,o.Ji)(e.state).find(e=>"text"===e.type);((e,t,r,n)=>{let o=e.state.selection.main.anchor,s=n?.value&&(0,i.z)(n),{text:a,offset:d}=s?{text:n.value,offset:o-n.position.start.offset}:{text:e.state.doc.toString(),offset:o},c=s?n.position.start.offset:0,{start:u,end:f}=(0,l.cL)(a,d);e.dispatch({changes:[{from:u+c,insert:t},{from:f+c,insert:r}],selection:{anchor:o+t.length},userEvent:"input",scrollIntoView:!0})})(e,n,n,t)}return!0}},62173:(e,t,r)=>{r.d(t,{y:()=>l});var n=r(96379),i=r(96540);async function o({text:e,issue:t,repository:r,project:i,subjectType:o,path:l,lineNumber:s,startCommitOid:a,endCommitOid:d,baseCommitOid:c,subject:u,startLineNumber:f}){let p=new FormData;p.append("text",e),p.append("issue",t),p.append("repository",r),p.append("project",i),l&&p.append("path",l),s&&p.append("line_number",s.toString()),a&&p.append("start_commit_oid",a),d&&p.append("end_commit_oid",d),c&&p.append("base_commit_oid",c),u&&p.append("subject",u.toString()),f&&p.append("start_line_number",f.toString()),o&&p.append("subject_type",o);let m=await (0,n.DI)("/preview",{body:p,method:"POST"});return m.ok?Promise.resolve(await m.text()):Promise.resolve("Markdown preview unavailable")}function l({subjectId:e,subjectType:t,subject:r,subjectRepoId:n,lineNumber:l,path:s,startCommitOid:a,startLineNumber:d,endCommitOid:c,baseCommitOid:u}){return(0,i.useCallback)(async i=>o({text:i,issue:e?.toString()??"",repository:n?.toString()??"",project:e?.toString()??"",subjectType:function(e){switch(e){case"issue":return"Issue";case"pull_request":return"PullRequest";case"project":return"Project";default:return}}(t),subject:r,lineNumber:l,path:s,startCommitOid:a,endCommitOid:c,baseCommitOid:u,startLineNumber:d}),[e,n,t,r,l,s,a,d,c,u])}},65012:(e,t,r)=>{function n(e){return void 0!==e.position&&void 0!==e.position.start&&void 0!==e.position.end&&"number"==typeof e.position.start.offset&&"number"==typeof e.position.end.offset}function i(e,t){return n(e)&&n(t)?e.position.start.offset!==t.position.start.offset?e.position.start.offset-t.position.start.offset:e.position.end.offset-t.position.end.offset:0}r.d(t,{y:()=>i,z:()=>n})},65826:(e,t,r)=>{r.d(t,{Ek:()=>d,Ph:()=>f,xf:()=>g});var n=r(74848),i=r(16522),o=r(90204),l=r(59403),s=r(5524),a=r(74508);function d(e){return"character"in e&&void 0!==e.character}let c=new Set(["+1","thumbsup","-1"]),u={triggerChar:":",keepTriggerCharOnCommit:!1},f=(e,t)=>void 0!==t?(0,n.jsx)("g-emoji",{alias:e.name,tone:t,"fallback-src":e.url,children:e.character}):e.character,p=e=>{let t,r,o,l=(0,i.c)(9),{emoji:a,tone:c}=e;return l[0]!==a||l[1]!==c?(t=d(a)?f(a,c):(0,n.jsx)("img",{src:a.url,alt:`${a.name} emoji`,height:"16",width:"16"}),l[0]=a,l[1]=c,l[2]=t):t=l[2],l[3]!==t?(r=(0,n.jsx)(s.l.LeadingVisual,{children:t}),l[3]=t,l[4]=r):r=l[4],l[5]!==a.name||l[6]!==e||l[7]!==r?(o=(0,n.jsxs)(s.l.Item,{...e,children:[r,a.name]}),l[5]=a.name,l[6]=e,l[7]=r,l[8]=o):o=l[8],o},m=(e,t)=>{let r=t.name.toLowerCase(),n=e.toLowerCase(),i=0;return r.includes(n)&&(i+=5,r.startsWith(n)&&(i+=5)),0===i?l.IP:i},h=(e,t)=>{let r=e.name.toLowerCase(),n=t.name.toLowerCase();return c.has(r)&&!c.has(n)?-1:c.has(n)&&!c.has(r)?1:0},g=(e,t)=>{let r,n,l=(0,i.c)(5);if(t?.tone,l[0]!==e||l[1]!==t?.tone){let n;r=(0,a.C)(e,m,h,(n=t?.tone,e=>({value:d(e)?void 0!==n?(0,o.R3)(e.character,n):e.character:`:${e.name}:`,key:e.name,render:t=>p({...t,emoji:e,tone:n})})),!0),l[0]=e,l[1]=t?.tone,l[2]=r}else r=l[2];let s=r;return l[3]!==s?(n={calculateSuggestions:s,trigger:u},l[3]=s,l[4]=n):n=l[4],n};try{c.displayName||(c.displayName="PRIORITIZED_EMOJIS")}catch{}try{p.displayName||(p.displayName="RenderEmoji")}catch{}},66964:(e,t,r)=>{r.d(t,{f:()=>i});var n=r(96540);let i=e=>{let[t,r]=(0,n.useState)(null),i=(0,n.useMemo)(()=>e.map(({trigger:e})=>e),[e]);return{triggers:i,suggestions:(0,n.useMemo)(()=>{if(!t)return null;for(let{trigger:r,suggestionsCalculator:n}of e)if(t.trigger.triggerChar===r.triggerChar)return n(t.query);return null},[t,e]),setSuggestionEvent:r,active:!!t}}},74508:(e,t,r)=>{r.d(t,{C:()=>i});var n=r(59403);let i=(e,t,r,i,o)=>l=>{if("loading"===e)return"loading";let s=l?e.map(e=>[t(l,e),e]).filter(([e])=>e>n.IP).sort(([e,t],[n,i])=>n===e?-r(i,t):n-e).slice(0,5).map(([,e])=>e):e.slice(0,5);return o&&s.sort(r),s.map(i)}},75617:(e,t,r)=>{r.d(t,{JZ:()=>m,Lm:()=>s,YF:()=>f,vQ:()=>p});var n=r(74313),i=r(16143),o=r(43346),l=r(65012);let s="dataDelimiter";function a(e){let t=[];for(let r of e.children??[])"delimiter"===r.type&&t.push(r);return t}let d={tableDelimiter:"td",tableDelimiterRow:"tr"};function c(e){let t={[s]:e.tokenType},r=e.children?.length?e.children.map(c):e.raw,i=(0,n.h)(d[e.tokenType]??"span",t,r);return(0,l.z)(e)&&(i.position={start:{...e.position.start},end:{...e.position.end}}),i}let u=(e,t)=>{let r=(0,i._)(t);if("element"===r.type){let e=a(t).map(c);r.children?.length?r.children=[...r.children,...e].sort(l.y):r.children=e}else if("text"===t.type)return[r,...a(t).map(c)];return r};function f(e){let t=e.properties?.[s];return"string"==typeof t?t:null}let p={handlers:{...Object.fromEntries(Array.from((0,o.XT)()("break","blankLine","code","definition","footnoteReference","image","imageReference","inlineCode","text","thematicBreak","yaml")).map(e=>[e,u])),delimiter:(e,t)=>c(t)}},m={attributes:{"*":[s]}}},76533:(e,t,r)=>{r.d(t,{F:()=>s});var n=r(74848),i=r(16522),o=r(11680),l=r(43715);let s=(0,r(96540).memo)(e=>{let t,r=(0,i.c)(2),{children:s}=e;return r[0]!==s?(t=(0,n.jsx)(o.l,{hideTitle:!0,variant:"critical",layout:"compact",title:"Error",description:(0,n.jsx)(l.o,{children:s}),flush:!0,className:"ErrorBanner-module__errorBanner--uXkz4"}),r[0]=s,r[1]=t):t=r[1],t});s.displayName="MarkdownEditor.ErrorBanner"},77695:(e,t,r)=>{function n(e){return 1===e.selection.ranges.length&&!e.selection.main.empty}function i(e){let t=e.selection.main.anchor,r=e.doc.toString(),n=r.slice(0,t).lastIndexOf(` +`)+1,i=r.indexOf(` +`,t);return -1===i&&(i=r.length),{from:n,to:i}}function o(e,t){let r=t,n=t,i=e=>/[^\w\d']/.test(e);for(;r>0&&e[r-1];){let t=e[r-1];if("'"===t){let t=e[r-2];if(!t||i(t)||/\s/.test(t))break}if(i(t))break;r--}for(;ns,JC:()=>l,Jr:()=>n,cL:()=>o,j6:()=>i});let s=(e,t)=>{try{let r=e.domAtPos(t);if(r?.node)try{let e=document.createRange();e.setStart(r.node,r.offset),e.setEnd(r.node,r.offset);let t=e.getBoundingClientRect();if(0!==t.left||0!==t.right||0!==t.top||0!==t.bottom)return{left:t.left,top:t.top,right:t.right,bottom:t.bottom}}catch{}return e.coordsAtPos(t)??null}catch{return null}}},78625:(e,t,r)=>{r.d(t,{DT:()=>l,DV:()=>d,H5:()=>u,NC:()=>f,On:()=>m,Uh:()=>s,aI:()=>a,v5:()=>c,z0:()=>p});var n=r(47970),i=r(76814),o=r(65012);function l(e,t,r,n){return e>=r&&e<=n||t>=r&&t<=n||e<=r&&t>=n}function s(e,t,r){let s=[];return(0,n.YR)(e,e=>{if((0,o.z)(e))if(!l(t,r,e.position.start.offset,e.position.end.offset))return i._Z;else s.push(e)}),s}function a(e,t,r){return e.children.filter(e=>(0,o.z)(e)&&l(t,r,e.position?.start.offset,e.position.end.offset))}function d(e,t,r,n,i){return i?e>=r&&t<=n:e>=r&&t<=n&&(e!==r||t!==n)}function c(e,t,r,l){let s=[];return(0,n.YR)(e,e=>{if((0,o.z)(e))if(!d(t,r,e.position.start.offset,e.position.end.offset,l))return i._Z;else s.push(e)}),s}function u(e,t,r){let s=[];return(0,n.YR)(e,e=>{if(!(0,o.z)(e))return;let n=e.position.start.offset,a=e.position.end.offset;if(!l(t,r,n,a))return i._Z;n>=t&&a<=r&&s.push(e)}),s}function f(e,t){let r;return(0,n.YR)(e,e=>{if((0,o.z)(e))if(!d(t,t,e.position.start.offset,e.position.end.offset)||"text"===e.type||"delimiter"===e.type)return i._Z;else r=e}),r}function p(e,t){return{column:e.column+t.column-1,line:e.line+t.line-1,offset:(e.offset??0)+(t.offset??0)}}function m(e,t){let r=t.split(` +`),n=r.at(-1);return{...e,line:e.line+r.length-1,column:1===r.length?e.column+t.length:n.length+1,offset:void 0!==e.offset?e.offset+t.length:void 0}}},80752:(e,t,r)=>{r.d(t,{KI:()=>d,VB:()=>s,a1:()=>a});var n=r(16522),i=r(88567);let o=/^(\s*(?:>\s*)*(?:[*-]\s{1,4})*)([*-]|(\d+)\.)(\s{1,4})(?:(\[[\sx]\])\s)?(.*)/i,l=e=>"number"==typeof e?.delimeter,s=e=>{let t=o.exec(e);if(!t)return null;let[,r="",n,i="",l,s=null,a]=t,d=Number.parseInt(i,10);return{leadingWhitespace:r,text:a,delimeter:Number.isNaN(d)?n:d,middleWhitespace:l,taskBox:s}},a=e=>"number"==typeof e.delimeter?`${e.leadingWhitespace}${e.delimeter}.${e.middleWhitespace}${e.taskBox?`${e.taskBox} `:""}${e.text}`:`${e.leadingWhitespace}${e.delimeter}${e.middleWhitespace}${e.taskBox||""} ${e.text}`,d=e=>{let t,r,o,a=(0,n.c)(7),{emitChange:d}=e;a[0]!==d?(t=(e,t)=>{let[r,n]=t||(0,i.ty)(e),o=s(e.value.slice(r,n));if(!l(o))return;let a=e.value.slice(n+1).split(/\r?\n/),u=[],f=o.delimeter;for(let e of a){let t=s(e);if(!l(t)||t.delimeter!==f)break;u.push(t),f++}if(0===u.length)return;let p=` +${u.map(c).join(` +`)}`;d(p,[n,n+p.length+1],e.selectionStart)},a[0]=d,a[1]=t):t=a[1];let u=t;a[2]!==d||a[3]!==u?(r=e=>{if("Enter"===e.key&&!e.shiftKey&&!e.defaultPrevented){let t=e.currentTarget,[r,n]=(0,i.ty)(t),o=s(t.value.slice(r,t.selectionStart)+t.value.slice(t.selectionEnd,n));if(o)if(e.preventDefault(),t.selectionStart===r){let e=(({leadingWhitespace:e="",delimeter:t,taskBox:r})=>{let n="number"==typeof t?`${t}.`:t;return`${n}${e}${r?" [ ]":" "} +`})(o);null===e?d("",[r,t.selectionEnd]):(d(e),u(t,[r,r+e.length-1]))}else{let e=(({leadingWhitespace:e="",delimeter:t,taskBox:r,text:n})=>{if(!n)return null;let i="number"==typeof t?`${t+1}.`:t;return` +${e}${i}${r?" [ ]":""} `})(o);null===e?d("",[r,t.selectionEnd]):(d(e),u(t))}}},a[2]=d,a[3]=u,a[4]=r):r=a[4];let f=r;return a[5]!==f?(o={onKeyDown:f},a[5]=f,a[6]=o):o=a[6],o};function c(e){return a({...e,delimeter:e.delimeter+1})}},81285:(e,t,r)=>{r.d(t,{M:()=>L});var n,i=r(74848),o=r(16522),l=r(69599),s=r(38621),a=r(64954),d=r(34164),c=r(1214),u=r(78625),f=r(65012),p=r(3266),m=r(55220);let h="```\n",g=e=>{e.hasFocus||e.focus();let t=(0,p.wk)(e.state),r=e.state.doc.toString(),n=e.state.selection.main,{from:i,to:o}=n,l=(0,m.rx)(e,"code");if(l){if(!(0,f.z)(l)||"code"!==l.type)return!1;let t=(0,m.j9)(l).filter(f.z);if(0===t.length)return!1;let r=t.map((e,r)=>({from:r===t.length-1?e.position.start.offset-1:e.position.start.offset,to:0===r?e.position.end.offset+1:e.position.end.offset}));return e.dispatch({changes:r,userEvent:"input",scrollIntoView:!0}),!0}let s=[],a=[...(0,u.Uh)(t,i,o)].filter(e=>"code"===e.type).flatMap(e=>{let t=(0,m.j9)(e).filter(f.z);return t.map((e,r)=>({from:r===t.length-1?e.position.start.offset-1:e.position.start.offset,to:0===r?e.position.end.offset+1:e.position.end.offset}))}),d=a.at(0)?.from,g=a.at(-1)?.to;s.push(...a);let y=c._.linesAtRange(t,r,i,o),k=y[0]?.isOffsetAfterPrefixes(i)?y[0]?.contentStart:y[0]?.start,b=y.at(-1)?.end,x=void 0!==d&&void 0!==k?Math.min(k,d):k,v=void 0!==g&&void 0!==b?Math.max(b,g):b;if(void 0===x||void 0===v)return!1;s.push({from:x,insert:h},{from:v,insert:"\n```"});let _=n.empty&&c._.atOffset(t,r,n.from)?.isBlank;return e.dispatch({changes:s,selection:_?{anchor:x+h.length}:void 0,userEvent:"input",scrollIntoView:!0}),!0};var y=r(38939),k=r(42306),b=r(53548),x=r(16058),v=r(29255),_=r(96540),w=r(13233),I=r(39603),j=r(18169);function S(e){return e?.replaceAll("+","Plus")?.replaceAll("-","+")}let T=()=>{let e,t=(0,o.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,i.jsx)("div",{className:"Toolbar-module__menuLeadingVisualPlaceholder--X75XP"}),t[0]=e):e=t[0],e},C=()=>{let e=(0,I.Ec)(),{view:t,selectedNodes:r}=(0,_.use)(j.P),n=(0,_.useMemo)(()=>{if(t)return(0,w.kH)(t)},[r,t]),o=(0,_.useCallback)(e=>!!t&&(0,w._n)(t,e),[r,t]),l=(0,_.useCallback)(e=>{if(void 0!==n)return n===e?s.CheckIcon:T},[n]),d=(0,_.useCallback)(e=>{let t=S(e.key);if(t)return(({keys:e})=>function(){return(0,i.jsx)(v.U,{className:"Toolbar-module__menuKeybindingHint--ET28p",keys:e})})({keys:t})},[]),c=(0,_.useCallback)((r,i)=>{if(!t)return;let o=n===r,l=(i.run||(()=>!1))(t,"toolbar");e.trackToolbarInteraction({control:`heading_${r}`,action:`heading_${r}`,trigger:"toolbar",isActive:o,keybinding:i.key,handled:l})},[e,t,n]),u=(0,_.useCallback)(r=>{if(!t)return;let n=!1;"increase"===r&&(n=(0,w.WZ)(t,"increase")),"decrease"===r&&(n=(0,w.WZ)(t,"decrease")),e.trackToolbarInteraction({control:`${r}_heading_level`,action:`${r}_heading_level`,trigger:"toolbar",isActive:!0,handled:n})},[e,t]);return(0,i.jsx)(a.A.Menu,{"aria-label":"Heading",icon:s.HeadingIcon,items:[{label:"Heading 1",onClick:()=>c(1,b.Jr),leadingVisual:l(1),trailingVisual:d(b.Jr)},{label:"Heading 2",onClick:()=>c(2,b.oE),leadingVisual:l(2),trailingVisual:d(b.oE)},{label:"Heading 3",onClick:()=>c(3,b.b5),leadingVisual:l(3),trailingVisual:d(b.b5)},{label:"Heading 4",onClick:()=>c(4,b.kD),leadingVisual:l(4),trailingVisual:d(b.kD)},{label:"Heading 5",onClick:()=>c(5,b.rk),leadingVisual:l(5),trailingVisual:d(b.rk)},{label:"Heading 6",onClick:()=>c(6,b.o8),leadingVisual:l(6),trailingVisual:d(b.o8)},{type:"divider"},{label:"Increase heading level",onClick:()=>u("increase"),disabled:!o("increase")},{label:"Decrease heading level",onClick:()=>u("decrease"),disabled:!o("decrease")}]})};try{T.displayName||(T.displayName="CheckIconPlaceholder")}catch{}try{(n=TrailingVisual).displayName||(n.displayName="TrailingVisual")}catch{}try{C.displayName||(C.displayName="HeadingMenu")}catch{}let E=e=>{let t,r,n,l,s,d,c,u,f,p=(0,o.c)(26);p[0]!==e?({command:t,matchingNodeFilter:r,resolveIsPressed:l,telemetryId:s,...n}=e,p[0]=e,p[1]=t,p[2]=r,p[3]=n,p[4]=l,p[5]=s):(t=p[1],r=p[2],n=p[3],l=p[4],s=p[5]);let{view:m,selectedNodes:h}=(0,_.use)(j.P);if(p[6]!==r||p[7]!==l||p[8]!==h){let e=h.some(r);d=l?.(h,e)??e,p[6]=r,p[7]=l,p[8]=h,p[9]=d}else d=p[9];let g=d,y=(0,I.Ec)(),k=n["aria-label"],b="function"!=typeof t,x=(b?t.run:t)??N,v=b?t.key:void 0;p[10]!==k||p[11]!==x||p[12]!==v||p[13]!==g||p[14]!==y||p[15]!==s||p[16]!==m?(c=()=>{if(!m)return;m.hasFocus||m.focus();let e=x(m,"toolbar");y.trackToolbarInteraction({control:s??k??"unknown",action:s??k??"unknown",trigger:"toolbar",isActive:g,keybinding:v,handled:e})},p[10]=k,p[11]=x,p[12]=v,p[13]=g,p[14]=y,p[15]=s,p[16]=m,p[17]=c):c=p[17];let w=c;p[18]!==v?(u=S(v),p[18]=v,p[19]=u):u=p[19];let T=!m;return p[20]!==g||p[21]!==n||p[22]!==w||p[23]!==u||p[24]!==T?(f=(0,i.jsx)(a.A.IconButton,{variant:"invisible",onMouseDown:M,keybindingHint:u,disabled:T,onClick:w,"aria-pressed":g,...n}),p[20]=g,p[21]=n,p[22]=w,p[23]=u,p[24]=T,p[25]=f):f=p[25],f};function N(){return!1}function M(e){return e.preventDefault()}E.displayName="MarkdownEditor.ToolbarButton";let L=e=>{let t,r,n,c,u,f,p,m,h,y,v,_,w,I,S,T,N,M,L,D,z,V,H,q,W,U,G,Y,K,Q,J,Z,X=(0,o.c)(83),{view:ee,fileUploadButton:et,selectedNodes:er,customButtons:en}=e;if(X[0]!==en||X[1]!==er||X[2]!==ee){let e,o,g,C,B,F,U=(0,l.G7)("markdown_experience_toolbar_redesign");X[28]===Symbol.for("react.memo_cache_sentinel")?(e=e=>(function(e){return"listItem"===e.type})(e)&&!!(0,x.xM)(e).taskListPrefix,X[28]=e):e=X[28];let G=e;X[29]===Symbol.for("react.memo_cache_sentinel")?(o=e=>"list"===e.type&&e.children.some(e=>G(e)),X[29]=o):o=X[29];let Y=o;X[30]===Symbol.for("react.memo_cache_sentinel")?(g=e=>{let t=e.list,r=new Set;for(let n of e.selectedItems)if(G(n)?r.add("task"):r.add(t.ordered?"ordered":"unordered"),r.size>1)return null;return r.values().next().value??null},X[30]=g):g=X[30];let K=g;X[31]===Symbol.for("react.memo_cache_sentinel")?(C=e=>{for(let t=e.length-1;t>=0;t-=1){let r=e[t];if(!r||"listItem"!==r.type)continue;if(G(r))return"task";let n=(0,x.xM)(r).listItemPrefix?.raw??"";return/^\s*(?:\d+\.|\d+\))/u.test(n)?"ordered":"unordered"}return null},X[31]=C):C=X[31];let Q=C,J=ee?(0,k.dT)(ee.state):null,Z=e=>(t,r)=>{let n=Q(t)??(J?K(J):null);return!!r&&!!n&&n===e};M=(0,d.$)("Toolbar-module__container--afgOi",U&&"Toolbar-module__leftAligned--fsPhq"),c=a.A,I="Formatting tools",S="Toolbar-module__actionBar--Igyiz",N="none",n=j.P,X[32]!==er||X[33]!==ee?(f={view:ee,selectedNodes:er},X[32]=er,X[33]=ee,X[34]=f):f=X[34],p=en,X[35]!==en?(m=!!en&&(0,i.jsx)(a.A.Divider,{}),X[35]=en,X[36]=m):m=X[36],X[37]===Symbol.for("react.memo_cache_sentinel")?(h=(0,i.jsx)(E,{"aria-label":"Bold",icon:s.BoldIcon,command:b.lM,telemetryId:"bold",matchingNodeFilter:P}),y=(0,i.jsx)(E,{"aria-label":"Italic",icon:s.ItalicIcon,command:b.Kp,telemetryId:"italic",matchingNodeFilter:A}),v=(0,i.jsx)(E,{"aria-label":"Link",icon:s.LinkIcon,command:b.gk,telemetryId:"link",matchingNodeFilter:O}),_=(0,i.jsx)(E,{"aria-label":"Code",icon:s.CodeIcon,command:b.SF,telemetryId:"inline_code",matchingNodeFilter:R}),w=(0,i.jsx)(E,{"aria-label":"Quote",icon:s.QuoteIcon,command:b.bF,telemetryId:"blockquote",matchingNodeFilter:$}),X[37]=h,X[38]=y,X[39]=v,X[40]=_,X[41]=w):(h=X[37],y=X[38],v=X[39],_=X[40],w=X[41]),r=a.A.Group,X[42]===Symbol.for("react.memo_cache_sentinel")?(H=(0,i.jsx)(a.A.Divider,{}),X[42]=H):H=X[42],X[43]===Symbol.for("react.memo_cache_sentinel")?(B=e=>"list"===e.type&&!e.ordered&&!Y(e),X[43]=B):B=X[43],q=(0,i.jsx)(E,{"aria-label":"Unordered list",icon:s.ListUnorderedIcon,command:b.KB,telemetryId:"unordered_list",matchingNodeFilter:B,resolveIsPressed:Z("unordered")}),X[44]===Symbol.for("react.memo_cache_sentinel")?(F=e=>"list"===e.type&&!!e.ordered&&!Y(e),X[44]=F):F=X[44],W=(0,i.jsx)(E,{"aria-label":"Ordered list",icon:s.ListOrderedIcon,command:b.xn,telemetryId:"ordered_list",matchingNodeFilter:F,resolveIsPressed:Z("ordered")}),t=E,u="Task list",T=s.TasklistIcon,L=b.Dc,D="task_list",X[45]===Symbol.for("react.memo_cache_sentinel")?(z=e=>G(e),X[45]=z):z=X[45],V=Z("task"),X[0]=en,X[1]=er,X[2]=ee,X[3]=t,X[4]=r,X[5]=n,X[6]=c,X[7]=u,X[8]=f,X[9]=p,X[10]=m,X[11]=h,X[12]=y,X[13]=v,X[14]=_,X[15]=w,X[16]=I,X[17]=S,X[18]=T,X[19]=N,X[20]=M,X[21]=L,X[22]=D,X[23]=z,X[24]=V,X[25]=H,X[26]=q,X[27]=W}else t=X[3],r=X[4],n=X[5],c=X[6],u=X[7],f=X[8],p=X[9],m=X[10],h=X[11],y=X[12],v=X[13],_=X[14],w=X[15],I=X[16],S=X[17],T=X[18],N=X[19],M=X[20],L=X[21],D=X[22],z=X[23],V=X[24],H=X[25],q=X[26],W=X[27];return X[46]!==t||X[47]!==u||X[48]!==T||X[49]!==L||X[50]!==D||X[51]!==z||X[52]!==V?(U=(0,i.jsx)(t,{"aria-label":u,icon:T,command:L,telemetryId:D,matchingNodeFilter:z,resolveIsPressed:V}),X[46]=t,X[47]=u,X[48]=T,X[49]=L,X[50]=D,X[51]=z,X[52]=V,X[53]=U):U=X[53],X[54]!==r||X[55]!==U||X[56]!==H||X[57]!==q||X[58]!==W?(G=(0,i.jsxs)(r,{children:[H,q,W,U]}),X[54]=r,X[55]=U,X[56]=H,X[57]=q,X[58]=W,X[59]=G):G=X[59],X[60]===Symbol.for("react.memo_cache_sentinel")?(Y=(0,i.jsx)(a.A.Divider,{}),X[60]=Y):Y=X[60],X[61]===Symbol.for("react.memo_cache_sentinel")?(K=(0,i.jsxs)(a.A.Group,{children:[(0,i.jsx)(E,{"aria-label":"Code block",icon:s.CodeSquareIcon,command:g,telemetryId:"code_block",matchingNodeFilter:B}),(0,i.jsx)(C,{}),(0,i.jsx)(E,{"aria-label":"Strikethrough",icon:s.StrikethroughIcon,command:b.VA,telemetryId:"strikethrough",matchingNodeFilter:F})]}),X[61]=K):K=X[61],X[62]!==n||X[63]!==et||X[64]!==f||X[65]!==p||X[66]!==m||X[67]!==h||X[68]!==y||X[69]!==v||X[70]!==_||X[71]!==w||X[72]!==G?(Q=(0,i.jsxs)(n,{value:f,children:[p,m,h,y,v,_,w,G,Y,et,K]}),X[62]=n,X[63]=et,X[64]=f,X[65]=p,X[66]=m,X[67]=h,X[68]=y,X[69]=v,X[70]=_,X[71]=w,X[72]=G,X[73]=Q):Q=X[73],X[74]!==c||X[75]!==I||X[76]!==S||X[77]!==N||X[78]!==Q?(J=(0,i.jsx)(c,{"aria-label":I,className:S,gap:N,children:Q}),X[74]=c,X[75]=I,X[76]=S,X[77]=N,X[78]=Q,X[79]=J):J=X[79],X[80]!==M||X[81]!==J?(Z=(0,i.jsx)("div",{className:M,children:J}),X[80]=M,X[81]=J,X[82]=Z):Z=X[82],Z};function P(e){return"strong"===e.type}function A(e){return"emphasis"===e.type}function O(e){return"link"===e.type&&(0,y.A)(e)}function R(e){return"inlineCode"===e.type}function $(e){return"blockquote"===e.type}function B(e){return"code"===e.type}function F(e){return"delete"===e.type}L.displayName="HybridMarkdownEditor.Toolbar"},84174:(e,t,r)=>{r.d(t,{V:()=>l});var n=r(74848),i=r(16522),o=r(46251);let l=e=>{let t,r=(0,i.c)(9),{label:l,link:s,className:a}=e;if(s){let e;return r[0]!==a||r[1]!==l||r[2]!==s?(e=(0,n.jsxs)(o.B,{direction:"horizontal",gap:"condensed",align:"baseline",className:a,children:[l," ",s]}),r[0]=a,r[1]=l,r[2]=s,r[3]=e):e=r[3],e}if(a){let e;return r[4]!==a||r[5]!==l?(e=(0,n.jsx)("span",{className:a,children:l}),r[4]=a,r[5]=l,r[6]=e):e=r[6],e}return r[7]!==l?(t=(0,n.jsx)(n.Fragment,{children:l}),r[7]=l,r[8]=t):t=r[8],t};try{l.displayName||(l.displayName="LabelWithLink")}catch{}},88316:(e,t,r)=>{r.d(t,{f:()=>v});var n=r(74848),i=r(16522),o=r(69599),l=r(75202),s=r(96540),a=r(11635),d=r(90670),c=r(34164),u=r(1878),f=r(33083),p=r(81285);function m(e){let t,r,o,l,s=(0,i.c)(7),{value:a,placeholder:d}=e;return s[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,n.jsx)(f.Y,{selectedView:"hybrid",children:(0,n.jsx)(p.M,{view:null,selectedNodes:[],fileUploadButton:(0,n.jsx)(u.g,{disabled:!0})})}),r=(0,c.$)("cm-editor","cm-content","SuspenseFallback-module__container--lkjVZ"),s[0]=t,s[1]=r):(t=s[0],r=s[1]),s[2]!==d||s[3]!==a?(o=a||(0,n.jsx)("div",{className:"SuspenseFallback-module__placeholder--rtvCC",children:d}),s[2]=d,s[3]=a,s[4]=o):o=s[4],s[5]!==o?(l=(0,n.jsxs)(n.Fragment,{children:[t,(0,n.jsx)("div",{className:r,children:o})]}),s[5]=o,s[6]=l):l=s[6],l}try{m.displayName||(m.displayName="SuspenseFallback")}catch{}var h=r(39603),g=r(64954),y=r(18169);function k({icon:e,"aria-label":t,disabled:r,keybindingHint:i,onClick:o,telemetryId:l}){let{view:a}=(0,s.use)(y.P),d=(0,h.Ec)();return(0,n.jsx)(g.A.IconButton,{variant:"invisible",onMouseDown:e=>e.preventDefault(),disabled:!a||r,onClick:()=>{if(!a)return;a.hasFocus||a.focus();let e=o(a);d.trackToolbarInteraction({control:l??t??"unknown",action:l??t??"unknown",trigger:"toolbar",isActive:!1,keybinding:i,handled:e})},icon:e,"aria-label":t,keybindingHint:i})}try{k.displayName||(k.displayName="CustomToolbarButton")}catch{}let b=(0,s.lazy)(async()=>({default:(await Promise.all([r.e(3088),r.e(15874),r.e(45230),r.e(31164),r.e(73048),r.e(25670)]).then(r.bind(r,25670))).CodeMirrorEditor}));function x(e){let t,r,c,u,f,p,g,y,k,x,v,_,w=(0,i.c)(26);return w[0]!==e?({onChangeViewMode:r,value:p,placeholder:c,ref:u,isGenerating:t,...f}=e,w[0]=e,w[1]=t,w[2]=r,w[3]=c,w[4]=u,w[5]=f,w[6]=p):(t=w[1],r=w[2],c=w[3],u=w[4],f=w[5],p=w[6]),w[7]!==r?(g=(0,n.jsx)(a.x,{onChangeViewMode:r}),w[7]=r,w[8]=g):g=w[8],w[9]===Symbol.for("react.memo_cache_sentinel")?(y={featureFlagEnabled:(0,o.G7)("markdown_experience_hybrid_editor")},w[9]=y):y=w[9],w[10]!==c||w[11]!==p?(k=(0,n.jsx)(m,{value:p,placeholder:c}),w[10]=c,w[11]=p,w[12]=k):k=w[12],w[13]!==t||w[14]!==r||w[15]!==c||w[16]!==u||w[17]!==f||w[18]!==p?(x=(0,n.jsx)(b,{ref:u,onChangeViewMode:r,value:p,placeholder:c,isGenerating:t,...f}),w[13]=t,w[14]=r,w[15]=c,w[16]=u,w[17]=f,w[18]=p,w[19]=x):x=w[19],w[20]!==k||w[21]!==x?(v=(0,n.jsx)(h.Ci,{options:y,children:(0,n.jsx)(s.Suspense,{fallback:k,children:x})}),w[20]=k,w[21]=x,w[22]=v):v=w[22],w[23]!==g||w[24]!==v?(_=(0,n.jsx)("div",{className:d.A.container,children:(0,n.jsx)(l.t,{fallback:g,children:v})}),w[23]=g,w[24]=v,w[25]=_):_=w[25],_}let v=Object.assign(x,{ToolbarButton:k});try{b.displayName||(b.displayName="CodeMirrorEditor")}catch{}try{x.displayName||(x.displayName="HybridMarkdownEditorComponent")}catch{}try{v.displayName||(v.displayName="HybridMarkdownEditor")}catch{}},88567:(e,t,r)=>{r.d(t,{TG:()=>u,VL:()=>a,iQ:()=>s,nf:()=>l,pF:()=>d,ty:()=>o});var n=r(18651),i=r(91446);let o=e=>{let t=e.value.lastIndexOf(` +`,e.selectionStart-1)+1,r=e.value.indexOf(` +`,e.selectionEnd);return -1===r&&(r=e.value.length),[t,r]},l=e=>``,s=(e,t)=>`[${e.replaceAll("[","\\[").replaceAll("]","\\]")}](${t.replaceAll("(","\\(").replaceAll(")","\\)")})`,a=e=>(0,n.U0)()?e.metaKey:e.ctrlKey,d=async e=>{let t=await (0,i.pF)(e);return t?{width:t.width,height:t.height,ppi:t.pixelsPerInch}:null},c=e=>e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'"),u=(e,t,r="Image")=>{let n=c(r),o=c(t);if(e.ppi===i.Sv){let t=Math.round(e.width/2),r=Math.round(e.height/2);return`${n}`}return e&&e.width>0&&e.height>0?`${n}`:`![${n}](${o})`}},90670:(e,t,r)=>{r.d(t,{A:()=>n});let n={container:"HybridMarkdownEditor-module__container--P0pK8",modPressed:"HybridMarkdownEditor-module__modPressed--Yxc01",isDraggedOver:"HybridMarkdownEditor-module__isDraggedOver--HtKSP",editorWrapper:"HybridMarkdownEditor-module__editorWrapper--EZVPm",skeletonOverlay:"HybridMarkdownEditor-module__skeletonOverlay--BC4BD",generatingText:"HybridMarkdownEditor-module__generatingText--uH9Of"}},91446:(e,t,r)=>{r.d(t,{Sv:()=>i,pF:()=>o});var n=r(50467);let PNGScanner=class PNGScanner{advance(e){this.pos+=e}readInt(e){let t=(()=>{switch(e){case 1:return this.dataview.getUint8(this.pos);case 2:return this.dataview.getUint16(this.pos);case 4:return this.dataview.getUint32(this.pos);default:throw Error("bytes parameter must be 1, 2 or 4")}})();return this.advance(e),t}readChar(){return this.readInt(1)}readShort(){return this.readInt(2)}readLong(){return this.readInt(4)}readString(e){let t=new Uint8Array(this.dataview.buffer,this.pos,e);return this.advance(e),new TextDecoder("ascii").decode(t)}scan(e){let t=[137,80,78,71,13,10,26,10];for(let e=0;e{let t,r,n=await new Promise((t,r)=>{let n=new FileReader;n.onload=()=>t(n.result),n.onerror=()=>r(n.error),n.readAsArrayBuffer(e)});return n?(t=new PNGScanner(n),r={width:0,height:0,pixelsPerInch:72},t.scan(function(e){switch(e){case"IHDR":r.width=this.readLong(),r.height=this.readLong();break;case"pHYs":{let e=this.readLong(),t=this.readLong();return 1===this.readChar()&&(r.pixelsPerInch=Math.round((e+t)/2*.0254)),!1}case"IDAT":return!1}return!0}),r):null}},91886:(e,t,r)=>{r.d(t,{Qd:()=>l,Sv:()=>o,fD:()=>i});var n=r(43346);let i=(0,n.XT)()("break","delete","emphasis","footnoteReference","html","image","imageReference","inlineCode","link","linkReference","strong","text","delimiter"),o=(0,n.XT)()("delete","emphasis","heading","link","linkReference","paragraph","strong","tableCell","root"),l=new Set(["delete","delimiter","emphasis","inlineCode","paragraph","strong","text","root"])},95863:(e,t,r)=>{r.d(t,{wd:()=>s});var n=r(96540);let i=/^([^/]+)\/([^;]+)/,o=e=>{if(e.startsWith("."))return t=>t.name.toLowerCase().endsWith(e.toLowerCase());{let t=i.exec(e);if(null===t)return()=>!1;let[,r,n]=t;return e=>{let[,t,o]=i.exec(e.type)??[];return r?.toLowerCase()===t?.toLowerCase()&&("*"===n||n?.toLowerCase()===o?.toLowerCase())}}};function l(e){let t=(0,n.useMemo)(()=>e.acceptedFileTypes?.map(o),[e.acceptedFileTypes]),r=(0,n.useCallback)(e=>t?.some(t=>t(e))??!0,[t]);return(0,n.useCallback)(function(t){if(0===t.length)return!1;if(e.multi){let n=[],i=[];for(let e of t)r(e)?n.push(e):i.push(e);e.onSelect(n,i)}else{let n=t[0];n&&r(n)?e.onSelect(n,void 0):e.onSelect(void 0,n)}return!0},[r,e.multi,e.onSelect])}function s(e){let t,r=function(e){let t=l(e),{multi:r,acceptedFileTypes:i}=e,o=(0,n.useCallback)(()=>{let e=document.createElement("input");e.setAttribute("type","file"),e.setAttribute("multiple",r?"true":"false"),i&&e.setAttribute("accept",i.join(", ")),e.addEventListener("change",e=>{let r=e.target;r instanceof HTMLInputElement&&r.files&&t(r.files)},{once:!0}),e.click()},[i,r,t]);return(0,n.useMemo)(()=>({onClick:o}),[o])}(e),i=(t=l(e),(0,n.useMemo)(()=>({onPaste:e=>{t(e.clipboardData.files)&&e.preventDefault()}}),[t])),[o,s]=function(e){let t=l(e),[r,i]=(0,n.useState)(!1),o=(0,n.useCallback)(()=>i(!1),[]),s=(0,n.useCallback)(e=>{a(e)&&(i(!0),e.stopPropagation(),e.preventDefault())},[]),d=(0,n.useCallback)(e=>{a(e)&&(e.stopPropagation(),e.preventDefault(),e.dataTransfer.dropEffect="copy")},[]),c=(0,n.useCallback)(e=>{t(e.dataTransfer.files)&&(e.preventDefault(),i(!1))},[t]);return[r,(0,n.useMemo)(()=>({onDragEnter:s,onDragOver:d,onDragLeave:o,onDrop:c}),[c,d,o,s])]}(e);return(0,n.useMemo)(()=>({clickTargetProps:r,pasteTargetProps:i,dropTargetProps:s,isDraggedOver:o}),[r,s,o,i])}let a=e=>e.dataTransfer.types.includes("Files")||Array.from(e.dataTransfer.items).some(e=>"file"===e.kind)},95917:(e,t,r)=>{r.d(t,{Ji:()=>c,Kr:()=>l,aG:()=>d,gJ:()=>u});var n=r(53839),i=r(78625),o=r(3266);let l=[];function s(e){let t=(0,o.wk)(e),r=e.selection.main;return(0,i.v5)(t,r.from,r.to,!0)}let a=n.sU.define({create:s,update:(e,t)=>!t.startState.selection.eq(t.newSelection)||(0,o.AT)(t)?s(t.state):e,provide:()=>[o.YZ]}),d=a;function c(e){return e.field(a)}function u(e){if(!e.startState.selection.eq(e.newSelection)||(0,o.AT)(e))return!0;let t=e.startState.field(a),r=e.state.field(a);if(t.length!==r.length)return!0;for(let e=0;e{r.d(t,{k:()=>p});var n=r(74848),i=r(16522),o=r(59403),l=r(20263),s=r(5524),a=r(74508);let d={triggerChar:"#",multiWord:!0},c=e=>({value:e.id,render:t=>(0,n.jsxs)(s.l.Item,{...t,children:[e.iconHtml&&(0,n.jsx)(s.l.LeadingVisual,{children:(0,n.jsx)(l.BC,{html:e.iconHtml})}),(0,n.jsx)("span",{className:"use-reference-suggestions-module__suggestionTitle--NZoUv",children:(0,n.jsx)(l.BC,{html:e.titleHtml})})," ",(0,n.jsxs)(s.l.Description,{truncate:!0,children:["#",e.id]})]})}),u=(e,t)=>(0,o.dt)(e,`${t.id} ${t.titleText}`),f=(e,t)=>0,p=e=>{let t,r,n=(0,i.c)(4);if(n[0]!==e){let r=(0,a.C)(e,u,f,c);t=e=>/^\d+\s/.test(e)?[]:r(e),n[0]=e,n[1]=t}else t=n[1];let o=t;return n[2]!==o?(r={calculateSuggestions:o,trigger:d},n[2]=o,n[3]=r):r=n[3],r}},98211:(e,t,r)=>{r.d(t,{U:()=>l,g:()=>o});var n=r(16522),i=r(96540);let o=Symbol("callbackCancelledResult"),l=(e,t)=>{let r,l,s,a,d,c=(0,n.c)(7),u=void 0!==t&&t,f=(0,i.useRef)(e);c[0]!==e?(r=()=>{f.current=e},l=[e],c[0]=e,c[1]=r,c[2]=l):(r=c[1],l=c[2]),(0,i.useLayoutEffect)(r,l);let p=(0,i.useRef)(!1);return c[3]!==u?(s=()=>(p.current=!0,()=>{u||(p.current=!1)}),a=[u],c[3]=u,c[4]=s,c[5]=a):(s=c[4],a=c[5]),(0,i.useEffect)(s,a),c[6]===Symbol.for("react.memo_cache_sentinel")?(d=(...e)=>p.current?f.current(...e):o,c[6]=d):d=c[6],d}},99206:(e,t,r)=>{r.d(t,{m:()=>g});var n=r(74848),i=r(16522),o=r(69599),l=r(38621),s=r(39768),a=r(34164);let d="segmented-control-module__segmentedControl--qAOgQ",c="segmented-control-module__active--fOdti",u=e=>{let t,r,u,f,p,m,h,g,y,k,b,x,v,_=(0,i.c)(34),{selectedView:w,onViewSelect:I,onLoadPreview:j,disabled:S}=e;_[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,o.G7)("markdown_experience_hybrid_editor"),_[0]=t):t=_[0];let T=t,C="edit"===w&&c;_[1]!==C?(r=(0,a.$)(d,C),_[1]=C,_[2]=r):r=_[2];let E="edit"===w;_[3]===Symbol.for("react.memo_cache_sentinel")?(u=(0,n.jsx)(l.CodeIcon,{}),_[3]=u):u=_[3],_[4]!==I?(f=()=>I?.("edit"),_[4]=I,_[5]=f):f=_[5],_[6]!==S||_[7]!==r||_[8]!==E||_[9]!==f?(p=(0,n.jsx)(s.I.IconButton,{className:r,selected:E,value:"edit","aria-label":"Edit mode",disabled:S,icon:u,onClick:f}),_[6]=S,_[7]=r,_[8]=E,_[9]=f,_[10]=p):p=_[10];let N="preview"===w&&c;_[11]!==N?(m=(0,a.$)(d,N),_[11]=N,_[12]=m):m=_[12];let M="preview"===w;return _[13]===Symbol.for("react.memo_cache_sentinel")?(h=(0,n.jsx)(l.EyeIcon,{}),_[13]=h):h=_[13],_[14]!==I?(g=()=>I?.("preview"),_[14]=I,_[15]=g):g=_[15],_[16]!==j?(y=()=>j?.(),k=()=>j?.(),_[16]=j,_[17]=y,_[18]=k):(y=_[17],k=_[18]),_[19]!==S||_[20]!==M||_[21]!==g||_[22]!==y||_[23]!==k||_[24]!==m?(b=(0,n.jsx)(s.I.IconButton,{className:m,selected:M,value:"preview","aria-label":"Preview mode",disabled:S,icon:h,onClick:g,onMouseOver:y,onFocus:k}),_[19]=S,_[20]=M,_[21]=g,_[22]=y,_[23]=k,_[24]=m,_[25]=b):b=_[25],_[26]!==S||_[27]!==I||_[28]!==w?(x=T&&(0,n.jsx)(s.I.IconButton,{className:(0,a.$)(d,"hybrid"===w&&c),value:"hybrid",selected:"hybrid"===w,"aria-label":"Hybrid mode",disabled:S,icon:(0,n.jsx)(l.ComposeIcon,{}),onClick:()=>I?.("hybrid")}),_[26]=S,_[27]=I,_[28]=w,_[29]=x):x=_[29],_[30]!==b||_[31]!==x||_[32]!==p?(v=(0,n.jsx)("nav",{children:(0,n.jsxs)(s.I,{"aria-label":"View mode",children:[p,b,x]})}),_[30]=b,_[31]=x,_[32]=p,_[33]=v):v=_[33],v};try{u.displayName||(u.displayName="SegmentedControlViewSwitch")}catch{}var f=r(1481);let p="tab-nav-module__tabNavLink--v2l8q",m="tab-nav-module__active--VyL0Y",h=e=>{let t,r,l,s,d,c,u,h,g,y,k,b=(0,i.c)(32),{selectedView:x,onViewSelect:v,onLoadPreview:_,disabled:w}=e;b[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,o.G7)("markdown_experience_hybrid_editor"),b[0]=t):t=b[0];let I=t,j="edit"===x,S="edit"===x&&m;b[1]!==S?(r=(0,a.$)(p,S),b[1]=S,b[2]=r):r=b[2],b[3]!==v?(l=()=>v?.("edit"),b[3]=v,b[4]=l):l=b[4],b[5]!==w||b[6]!==j||b[7]!==r||b[8]!==l?(s=(0,n.jsx)(f.A.Link,{as:"button",selected:j,disabled:w,className:r,onClick:l,children:"Write"}),b[5]=w,b[6]=j,b[7]=r,b[8]=l,b[9]=s):s=b[9];let T="preview"===x,C="preview"===x&&m;return b[10]!==C?(d=(0,a.$)(p,C),b[10]=C,b[11]=d):d=b[11],b[12]!==v?(c=()=>v?.("preview"),b[12]=v,b[13]=c):c=b[13],b[14]!==_?(u=()=>_?.(),h=()=>_?.(),b[14]=_,b[15]=u,b[16]=h):(u=b[15],h=b[16]),b[17]!==w||b[18]!==c||b[19]!==u||b[20]!==h||b[21]!==T||b[22]!==d?(g=(0,n.jsx)(f.A.Link,{as:"button",selected:T,disabled:w,className:d,onClick:c,onMouseOver:u,onFocus:h,children:"Preview"}),b[17]=w,b[18]=c,b[19]=u,b[20]=h,b[21]=T,b[22]=d,b[23]=g):g=b[23],b[24]!==w||b[25]!==v||b[26]!==x?(y=I&&(0,n.jsx)(f.A.Link,{as:"button",selected:"hybrid"===x,disabled:w,className:(0,a.$)(p,"hybrid"===x&&m),onClick:()=>v?.("hybrid"),children:"Hybrid"}),b[24]=w,b[25]=v,b[26]=x,b[27]=y):y=b[27],b[28]!==g||b[29]!==y||b[30]!==s?(k=(0,n.jsx)("div",{className:"tab-nav-module__viewSwitch--bqW56",children:(0,n.jsxs)(f.A,{"aria-label":"View mode",children:[s,g,y]})}),b[28]=g,b[29]=y,b[30]=s,b[31]=k):k=b[31],k};try{h.displayName||(h.displayName="TabNavViewSwitch")}catch{}let g=e=>{let t,r=(0,i.c)(2);return r[0]!==e?(t=(0,o.G7)("markdown_experience_toolbar_redesign")?(0,n.jsx)(u,{...e}):(0,n.jsx)(h,{...e}),r[0]=e,r[1]=t):t=r[1],t};try{g.displayName||(g.displayName="ViewSwitch")}catch{}}}]); +//# sourceMappingURL=22116-82c259a18d70.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/22785-f4d716875cdb.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/22785-f4d716875cdb.js" new file mode 100644 index 0000000..c277998 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/22785-f4d716875cdb.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:22785-f4d716875cdb.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[22785],{20263:(e,t,a)=>{a.d(t,{BC:()=>n,JU:()=>d,Pk:()=>l});var i=a(74848),r=a(16522),o=a(12683),s=a(99418);let l=u(o.az),n=u(o.EY),c=e=>{let t,a,o,s=(0,r.c)(6);return s[0]!==e?({ref:a,...t}=e,s[0]=e,s[1]=t,s[2]=a):(t=s[1],a=s[2]),s[3]!==t||s[4]!==a?(o=(0,i.jsx)("div",{...t,ref:a}),s[3]=t,s[4]=a,s[5]=o):o=s[5],o};c.displayName="Div";let d=u(c);function u(e){let t=t=>{let a,o,l,n=(0,r.c)(7);n[0]!==t?(a=function(e){let{html:t,domPurifyConfig:a,...i}=e,r={...a,RETURN_DOM:!1,RETURN_DOM_FRAGMENT:!1};return{sanitizedHTML:s.default.sanitize(t,r),props:i}}(t),n[0]=t,n[1]=a):a=n[1];let{sanitizedHTML:c,props:d}=a;return n[2]!==c?(o={__html:c},n[2]=c,n[3]=o):o=n[3],n[4]!==d||n[5]!==o?(l=(0,i.jsx)(e,{...d,dangerouslySetInnerHTML:o}),n[4]=d,n[5]=o,n[6]=l):l=n[6],l};return t.displayName=`UnsafeHTML${e.displayName||e.name}`,t}try{l.displayName||(l.displayName="UnsafeHTMLBox")}catch{}try{n.displayName||(n.displayName="UnsafeHTMLText")}catch{}try{d.displayName||(d.displayName="UnsafeHTMLDiv")}catch{}},33727:(e,t,a)=>{a.d(t,{$D:()=>r.$D,$_:()=>n,E4:()=>r.E4,Fy:()=>l,_i:()=>r._i,a6:()=>r.a6,a7:()=>o,bO:()=>r.bO,dQ:()=>s,sS:()=>r.sS,yV:()=>r.yV});var i=a(65154),r=a(39295);let o={filterDelimiter:":",valueDelimiter:",",variant:"full"},s={priority:r.a6,filterTypes:{inclusive:!0,exclusive:!0,valueless:!0,hasValue:!0,multiKey:!0,multiValue:!0},support:{status:i.b9.Supported}},l={aliasMatching:!1,disableAdvancedTextFilter:!1},n=100},39295:(e,t,a)=>{a.d(t,{$D:()=>n,$c:()=>f,BP:()=>b,E4:()=>c,Ez:()=>N,OV:()=>I,VT:()=>m,_W:()=>w,_i:()=>d,a6:()=>l,bO:()=>p,d6:()=>h,jb:()=>k,mn:()=>g,oO:()=>v,rt:()=>s,sS:()=>y,uK:()=>T,wO:()=>C,yV:()=>u});var i=a(38621),r=a(65154),o=a(75642);let s="#INDETERMINANT#",l=10,n=5,c=3,d={archived:{displayName:"Archived",key:"archived",priority:10,icon:i.ArchiveIcon,description:"Specify archived or non-archived items only"},base:{displayName:"Base",key:"base",priority:l,icon:i.GitBranchIcon,description:"Pull Request base branch"},closed:{displayName:"Closed date",key:"closed",priority:l,icon:i.CalendarIcon,description:"Closing date"},comments:{displayName:"Comment count",key:"comments",priority:l,icon:i.CommentIcon,description:"Item comment count"},created:{displayName:"Creation date",key:"created",priority:l,icon:i.CalendarIcon,description:"Creation date"},draft:{displayName:"Draft",key:"draft",priority:l,icon:i.IssueDraftIcon,description:"Search for draft items"},has:{key:"has",displayName:"Has",description:"Filter by items with a specific metadata value",priority:l,icon:i.PlusCircleIcon},head:{displayName:"Head",key:"head",priority:l,icon:i.GitBranchIcon,description:"Head branch commit sha"},inBody:{displayName:"In body",key:"in-body",priority:l,icon:i.NoteIcon,description:"Search for text only inside the body of an item"},inComments:{displayName:"In comments",key:"in-comments",priority:l,icon:i.CommentDiscussionIcon,description:"Search for text only inside the comments of an item"},interactions:{displayName:"Interactions count",key:"interactions",priority:l,icon:i.CommentDiscussionIcon,description:"Interaction count"},inTitle:{displayName:"In title",key:"in-title",priority:l,icon:i.TypographyIcon,description:"Search for text only inside the title of an item"},is:{displayName:"Is",key:"is",icon:i.AppsIcon,description:'Filter only "issues", "pulls", "open", "closed", or "draft"',priority:3},in:{displayName:"In",key:"in",priority:l,icon:i.AppsIcon,description:"Limit text search to the title, body, or comments of an item or a combination of them"},language:{displayName:"Code language",key:"language",priority:l,icon:i.CodeIcon,description:"Code language"},linked:{displayName:"Linked",key:"linked",icon:i.GitPullRequestIcon,description:"Items linked to an issue or pull request",priority:l},memexState:{displayName:"State",key:"state",priority:3,icon:i.IssueDraftIcon,description:"Look for open, closed, or draft issues"},merged:{displayName:"Merge date",key:"merged",priority:l,icon:i.CalendarIcon,description:"Merge date"},milestone:{displayName:"Milestone",key:"milestone",priority:l,icon:i.MilestoneIcon,description:"Milestone"},no:{key:"no",displayName:"No",description:"Filter by items without a specific metadata value",priority:l,icon:i.NoEntryIcon},parentIssue:{displayName:"Parent issue",key:"parent-issue",priority:5,icon:i.IssueTrackedByIcon,description:"Parent issue"},prState:{displayName:"State",key:"state",priority:3,icon:i.IssueDraftIcon,description:"State of Pull Requests"},reactions:{displayName:"Reaction count",key:"reactions",priority:l,icon:i.SmileyIcon,description:"Reactions count"},reason:{displayName:"Closed reason",key:"reason",priority:l,icon:i.MentionIcon,description:"Filter by item closed reason"},review:{displayName:"Review state",key:"review",priority:l,icon:i.GitPullRequestIcon,description:"Specify a review state"},sha:{displayName:"Commit SHA",key:"sha",priority:l,icon:i.FileIcon,description:"Commit SHA"},sort:{displayName:"Sort",key:"sort",priority:l,icon:i.SortDescIcon,description:"Sort results"},state:{displayName:"State",key:"state",priority:3,icon:i.IssueDraftIcon,description:"Look for open / closed items"},status:{displayName:"Status",key:"status",priority:l,icon:i.IssueDraftIcon,description:"Commit status: pending | success | failure"},team:{displayName:"Team",key:"team",priority:l,icon:i.PeopleIcon,description:"Team name"},teamReviewRequested:{displayName:"Team review requested",key:"team-review-requested",priority:l,icon:i.PeopleIcon,description:"Review requested from team"},updated:{displayName:"Update date",key:"updated",priority:l,icon:i.CalendarIcon,description:"Updated date"},repo:{displayName:"Repository",key:"repo",priority:1,icon:i.RepoIcon,description:"Filter by repository"},org:{displayName:"Organization",key:"org",aliases:["organization"],priority:2,icon:i.OrganizationIcon,description:"Filter by organization"},label:{displayName:"Label",key:"label",priority:3,icon:i.TagIcon,description:"Filter by label"},project:{displayName:"Project",key:"project",priority:3,icon:i.TableIcon,description:"Filter by project"},blockedBy:{displayName:"Blocked by",key:"blocked-by",priority:5,icon:i.BlockedIcon,description:"Issues blocked by another issue"},blocking:{displayName:"Blocking",key:"blocking",priority:5,icon:i.StopIcon,description:"Issues blocking another issue"}},u={assignee:{displayName:"Assignee",key:"assignee",icon:i.PersonIcon,description:"The assignee of the item",priority:3},author:{displayName:"Author",key:"author",icon:i.PersonIcon,description:"The author of the item",priority:3},commenter:{displayName:"Commenter",key:"commenter",icon:i.PersonIcon,description:"Items commented on by the user",priority:l},involves:{displayName:"Involves",key:"involves",icon:i.PersonIcon,description:"The user involved in the item",priority:l},mentions:{displayName:"Mentions",key:"mentions",icon:i.MentionIcon,description:"The user mentioned in the item",priority:l},reviewedBy:{displayName:"Reviewed by",key:"reviewed-by",icon:i.PersonIcon,description:"Items reviewed by the user",priority:l},reviewRequested:{displayName:"Review requested",key:"review-requested",icon:i.PersonIcon,description:"Items with review requested for the user",priority:l},user:{displayName:"User",key:"user",icon:i.PersonIcon,description:"Items in repositories owned by the user",priority:l},userReviewRequested:{displayName:"User review requested",key:"user-review-requested",icon:i.MentionIcon,description:"Items with review requested for the user explicitly",priority:l}};Object.values(u);let p=[{value:"true",displayName:"True",priority:1,aliases:["yes"]},{value:"false",displayName:"False",priority:2,aliases:["no"]}],y={archived:p,closed:o.p,comments:o.S,created:o.p,draft:p,interactions:o.S,is:[{value:"issue",displayName:"Issue",priority:1,icon:i.IssueOpenedIcon},{value:"pr",displayName:"Pull Request",priority:2,icon:i.GitPullRequestIcon}],in:[{value:"title",displayName:"Title",priority:1,icon:i.TypographyIcon},{value:"body",displayName:"Body",priority:2,icon:i.NoteIcon},{value:"comments",displayName:"Comments",priority:3,icon:i.CommentDiscussionIcon}],linked:[{value:"issue",displayName:"Issue",priority:1,icon:i.IssueOpenedIcon},{value:"pr",displayName:"Pull Request",priority:2,icon:i.GitPullRequestIcon}],sort:[],memexState:[{value:"open",displayName:"Open",priority:1,icon:i.IssueOpenedIcon,iconColor:"var(--fgColor-success, var(--color-success-fg))"},{value:"closed",displayName:"Closed",priority:2,icon:i.IssueClosedIcon,iconColor:"var(--fgColor-done, var(--color-done-fg))"},{value:"draft",displayName:"Draft",priority:3,icon:i.IssueDraftIcon,iconColor:"var(-fgColor-muted, var(--color-neutral-emphasis))"}],merged:o.p,prState:[{value:"open",displayName:"Open",icon:i.GitPullRequestIcon,priority:1,iconColor:"var(--fgColor-open, var(--color-open-fg))"},{value:"merged",displayName:"Merged",icon:i.GitMergeIcon,priority:2,iconColor:"var(--fgColor-done, var(--color-done-fg))"},{value:"draft",displayName:"Draft",icon:i.GitPullRequestDraftIcon,priority:3,iconColor:"var(--fgColor-draft)"},{value:"closed",displayName:"Closed",icon:i.GitPullRequestClosedIcon,priority:4,iconColor:"var(--fgColor-closed, var(--color-closed-fg))"}],reactions:o.S,reason:[{value:"completed",displayName:"Completed",priority:1,icon:i.CheckCircleIcon,iconColor:"var(--fgColor-done, var(--color-done-fg))"},{value:"not-planned",displayName:"Not planned",priority:2,icon:i.SkipIcon,iconColor:"var(--fgColor-muted, var(--color-neutral-emphasis))"},{value:"duplicate",displayName:"Duplicate",priority:3,icon:i.SkipIcon,iconColor:"var(--fgColor-muted, var(--color-neutral-emphasis))"}],review:[{value:"none",displayName:"No reviews",priority:1},{value:"required",displayName:"Review required",priority:2},{value:"approved",displayName:"Approved",priority:3},{value:"changes_requested",displayName:"Changes requested",priority:4}],state:[{value:"open",displayName:"Open",priority:1,icon:i.IssueOpenedIcon,iconColor:"var(--fgColor-success, var(--color-success-fg))"},{value:"closed",displayName:"Closed",priority:2,icon:i.IssueClosedIcon,iconColor:"var(--fgColor-done, var(--color-done-fg))"}],status:[{value:"pending",displayName:"Pending",priority:1,icon:i.DotFillIcon,iconColor:"var(--fgColor-attention, var(--color-attention-fg))"},{value:"success",displayName:"Success",priority:2,icon:i.CheckCircleFillIcon,iconColor:"var(--fgColor-success, var(--color-success-fg))"},{value:"failure",displayName:"Failure",priority:3,icon:i.XCircleFillIcon,iconColor:"var(--fgColor-danger, var(--color-danger-fg))"},{value:"queued",displayName:"Queued",priority:4,icon:i.IssueOpenedIcon,iconColor:"var(--fgColor-muted, var(--color-fg-subtle))"},{value:"waiting",displayName:"Waiting",priority:4,icon:i.ClockIcon,iconColor:"var(--fgColor-muted, var(--color-fg-subtle))"},{value:"cancelled",displayName:"Cancelled",priority:4,icon:i.StopIcon,iconColor:"var(--fgColor-muted, var(--color-fg-subtle))"},{value:"skipped",displayName:"Skipped",priority:4,icon:i.SkipIcon,iconColor:"var(--fgColor-muted, var(--color-fg-subtle))"}],updated:o.p};d.team,d.teamReviewRequested;let m={action:{value:"action",displayName:"Action",priority:3,icon:i.PlayIcon},closed:{value:"closed",displayName:"Closed",priority:2,icon:i.IssueClosedIcon},codespace:{value:"codespace",displayName:"Codespace",priority:3,icon:i.CodespacesIcon},discussion:{value:"discussion",displayName:"Discussion",priority:4,icon:i.CommentDiscussionIcon},draft:{value:"draft",displayName:"Draft",priority:3,icon:i.GitPullRequestDraftIcon},issue:{value:"issue",displayName:"Issue",priority:1,icon:i.IssueOpenedIcon},locked:{value:"locked",displayName:"Locked",priority:4,icon:i.LockIcon},merged:{value:"merged",displayName:"Merged",priority:3,icon:i.GitMergeIcon},unmerged:{value:"unmerged",displayName:"Unmerged",priority:3,icon:i.GitMergeIcon},open:{value:"open",displayName:"Open",priority:1,icon:i.IssueOpenedIcon},pr:{value:"pr",displayName:"Pull Request",priority:1,icon:i.GitPullRequestIcon},private:{value:"private",displayName:"Private",priority:3,icon:i.LockIcon},public:{value:"public",displayName:"Public",priority:3,icon:i.UnlockIcon},repository:{value:"repository",displayName:"Repository",priority:2,icon:i.RepoIcon},unlocked:{value:"unlocked",displayName:"Unlocked",priority:4,icon:i.UnlockIcon},blocked:{value:"blocked",displayName:"Blocked",priority:4,icon:i.BlockedIcon},blocking:{value:"blocking",displayName:"Blocking",priority:4,icon:i.StopIcon},queued:{value:"queued",displayName:"Queued",priority:4,icon:i.GitMergeQueueIcon}},v={title:{value:"title",displayName:"Title",priority:1,icon:i.TypographyIcon},body:{value:"body",displayName:"Body",priority:2,icon:i.NoteIcon},comments:{value:"comments",displayName:"Comments",priority:3,icon:i.CommentDiscussionIcon}},f={created:[{value:"created-desc",displayName:"Newest",priority:0,aliases:["created"]},{value:"created-asc",displayName:"Oldest",priority:1}],updated:[{value:"updated-desc",displayName:"Recently updated",priority:2,aliases:["updated"]},{value:"updated-asc",displayName:"Least recently updated",priority:3}],comments:[{value:"comments-desc",displayName:"Most commented",priority:4,aliases:["interactions","interactions-desc","comments"]},{value:"comments-asc",displayName:"Least commented",priority:5,aliases:["interactions-asc"]}],reactions:[{value:"reactions-desc",displayName:"Most reactions",priority:6,aliases:["reactions"]},{value:"reactions-asc",displayName:"Least reactions",priority:7}],"committer-date":[{value:"committer-date-desc",displayName:"Most recent committer date",priority:8,aliases:["committer-date"]},{value:"committer-date-asc",displayName:"Least recent committer date",priority:9}],"author-date":[{value:"author-date-desc",displayName:"Most recent author date",priority:9,aliases:["author-date"]},{value:"author-date-asc",displayName:"Least recent author date",priority:9}],relevance:[{value:"relevance",displayName:"Best match",priority:10,aliases:["relevance-desc"]}]},I=[{value:"reactions-+1",displayName:"Most thumbs up (\u{1F44D}) reactions",priority:10,aliases:["reactions-+1-desc"]},{value:"reactions-+1-asc",displayName:"Least thumbs up (\u{1F44D}) reactions",priority:10},{value:"reactions--1",displayName:"Most thumbs down (\u{1F44E}) reactions",priority:10,aliases:["reactions--1-desc"]},{value:"reactions--1-asc",displayName:"Least thumbs down (\u{1F44E}) reactions",priority:10},{value:"reactions-smile",displayName:"Most laugh (\u{1F604}) reactions",priority:10,aliases:["reactions-smile-desc"]},{value:"reactions-smile-asc",displayName:"Least laugh (\u{1F604}) reactions",priority:10},{value:"reactions-thinking_face",displayName:"Most confused (\u{1F615}) reactions",priority:10,aliases:["reactions-thinking_face-desc"]},{value:"reactions-thinking_face-asc",displayName:"Least confused (\u{1F615}) reactions",priority:10},{value:"reactions-tada",displayName:"Most tada (\u{1F389}) reactions",priority:10,aliases:["reactions-tada-desc"]},{value:"reactions-tada-asc",displayName:"Least tada (\u{1F389}) reactions",priority:10},{value:"reactions-heart",displayName:"Most heart (\u2764\uFE0F) reactions",priority:10,aliases:["reactions-heart-desc"]},{value:"reactions-heart-asc",displayName:"Least heart (\u2764\uFE0F) reactions",priority:10},{value:"reactions-eyes",displayName:"Most eyes (\u{1F440}) reactions",priority:10,aliases:["reactions-eyes-desc"]},{value:"reactions-eyes-asc",displayName:"Least eyes (\u{1F440}) reactions",priority:10},{value:"reactions-rocket",displayName:"Most rocket (\u{1F680}) reactions",priority:10,aliases:["reactions-rocket-desc"]},{value:"reactions-rocket-asc",displayName:"Least rocket (\u{1F680}) reactions",priority:10}],h=["AND","OR"],N={issue:{value:"issue",displayName:"Issue",priority:1,icon:i.IssueOpenedIcon},pr:{value:"pr",displayName:"Pull Request",priority:2,icon:i.GitPullRequestIcon}},g=5,k=["sort"],C=["@"],w={IsOneOf:"is one of",IsNotOneOf:"is not one of",Is:"is",IsNot:"is not",GreaterThan:"greater than",LessThan:"less than",GreaterThanOrEqualTo:"greater than or equal to",LessThanOrEqualTo:"less than or equal to",EqualTo:"equal to",Before:"before",After:"after",BeforeAndIncluding:"before and including",AfterAndIncluding:"after and including",Between:"between"},b=[r.tl.GreaterThan,r.tl.LessThan,r.tl.GreaterThanOrEqualTo,r.tl.LessThanOrEqualTo,r.tl.Before,r.tl.After,r.tl.Between],T={select:{single:[r.tl.Is,r.tl.IsNot],multi:[r.tl.IsOneOf,r.tl.IsNotOneOf]},user:{single:[r.tl.Is,r.tl.IsNot],multi:[r.tl.IsOneOf,r.tl.IsNotOneOf]},text:{single:[r.tl.Is,r.tl.IsNot],multi:[r.tl.IsOneOf,r.tl.IsNotOneOf]},date:[r.tl.Before,r.tl.After,r.tl.BeforeAndIncluding,r.tl.AfterAndIncluding,r.tl.Between,r.tl.IsOneOf,r.tl.IsNotOneOf],number:[r.tl.EqualTo,r.tl.GreaterThan,r.tl.GreaterThanOrEqualTo,r.tl.LessThan,r.tl.LessThanOrEqualTo,r.tl.Between],decimal:[r.tl.EqualTo,r.tl.GreaterThan,r.tl.GreaterThanOrEqualTo,r.tl.LessThan,r.tl.LessThanOrEqualTo,r.tl.Between],boolean:[r.tl.Is,r.tl.IsNot],rawText:[r.tl.Is],unknown:[r.tl.Is,r.tl.IsNot]}},51228:(e,t,a)=>{a.d(t,{J:()=>o});var i=a(38621),r=a(33727);let o={type:a(65154).CH.RawText,icon:i.TypographyIcon,options:r.dQ,key:"text",priority:5,displayName:"Text",getSuggestions:()=>[],validateFilterBlockValues:()=>[],getValueRowProps:()=>({text:""})}},55461:(e,t,a)=>{a.d(t,{$4:()=>p,B8:()=>C,Bt:()=>j,DS:()=>W,Di:()=>q,Dy:()=>X,Ed:()=>g,I8:()=>f,Lu:()=>K,M5:()=>I,Ms:()=>$,Nn:()=>P,ON:()=>L,Oo:()=>J,PU:()=>G,SH:()=>y,W5:()=>v,W9:()=>T,Xz:()=>m,ZH:()=>n,aK:()=>w,dV:()=>k,h8:()=>b,he:()=>N,iy:()=>S,j1:()=>_,jL:()=>R,jQ:()=>h,jh:()=>H,kZ:()=>Y,m1:()=>E,n$:()=>D,nV:()=>M,oE:()=>x,q5:()=>Q,sF:()=>B,t4:()=>z,uT:()=>V,v7:()=>O,vU:()=>F,wR:()=>U,zB:()=>A});var i=a(38621),r=a(98488),o=a(39295),s=a(51228),l=a(65154);let n=e=>e.charAt(0).toUpperCase()+e.slice(1),c=[" ","(",")",'"',"'",","],d=/^"[^"]*"$/gi,u=/\\?"/gi,p=e=>{if(!e||c.every(t=>0>e.indexOf(t)))return e;let t=e.trim(),a=t.startsWith("-");return a&&(t=t.substring(1).trim()),d.test(t)&&(t=t.substring(1,t.length-1)),t=t.replace(u,'\\"'),`${a?"-":""}"${t}"`},y=(e,t)=>!!e&&!!t&&e.toLocaleLowerCase()===t.toLocaleLowerCase(),m=e=>e.startsWith("-")?e.slice(1):e,v=(e,t,a)=>`${e}-${t??a}`,f=e=>e?"string"==typeof e?e:e():null,I=e=>{let t=f(e);return t?(e=>{if(!e||e.replaceAll('"',"").length<1)return e;let t=e;return t.startsWith('"')&&e.endsWith('"')&&(t=t.substring(1)),t.endsWith('"')&&e.startsWith('"')&&(t=t.substring(0,t.length-1)),t})(t):t},h=e=>{let t=f(e);return t?p(t):t},N=e=>new Promise(t=>setTimeout(t,e)),g=(e,t)=>e.blocks.map(({raw:e})=>e).join("").trim()===(void 0!==t?t:e.raw).trim(),k=(e,t,a)=>e>=0&&e>=t&&e<=a,C=e=>void 0!==e&&void 0!==e.filterProviders,w=e=>void 0!==e&&e.type===l._B.Filter&&void 0!==e.key&&void 0!==e.value,b=e=>void 0!==e.startIndex&&void 0!==e.endIndex,T=e=>e.type===l._B.Group&&void 0!==e.blocks&&void 0!==e.startIndex&&void 0!==e.endIndex,O=e=>w(e)&&b(e),L=e=>e.type===l._B.Text&&void 0!==e.startIndex&&void 0!==e.endIndex,x=e=>e.type===l._B.UnmatchedOpenParen&&void 0!==e.startIndex&&void 0!==e.endIndex,S=e=>e.type===l._B.UnmatchedCloseParen&&void 0!==e.startIndex&&void 0!==e.endIndex,B=e=>e.type===l._B.Filter,q=(e,t,a)=>a?e.blocks.filter(e=>w(e)&&e.provider.key===t&&e.value.values.findIndex(e=>e.value===a)>-1):[],M=e=>{let t=o.uK[e?.type??l.CH.Unknown],a=e?.options?.filterTypes.multiValue,i=void 0!==t.single?t[a?"multi":"single"]:t;return e?.options?.filterTypes.inclusive===!1&&(i=i.filter(e=>e!==l.tl.Is&&e!==l.tl.IsOneOf)),e?.options?.filterTypes.exclusive===!1&&(i=i.filter(e=>e!==l.tl.IsNot&&e!==l.tl.IsNotOneOf)),i},P=e=>e.type===l.CH.RawText?void 0:{value:e.key,valid:!0},A=(e,t,a)=>{let i=M(e),r=e?.options?.filterTypes.multiValue;if(i[0]){if(t?.startsWith("-"))return i.find(e=>r?e===l.tl.IsNotOneOf:e===l.tl.IsNot)??i[0];let o=a?.includes("..")&&a?.indexOf("..")===a?.lastIndexOf("..");if(e?.type===l.CH.Number||e?.type===l.CH.DecimalNumber){if(o)return i.find(e=>e===l.tl.Between)??i[0];else if(a?.startsWith("<="))return i.find(e=>e===l.tl.LessThanOrEqualTo)??i[0];else if(a?.startsWith("<"))return i.find(e=>e===l.tl.LessThan)??i[0];else if(a?.startsWith(">="))return i.find(e=>e===l.tl.GreaterThanOrEqualTo)??i[0];else if(a?.startsWith(">"))return i.find(e=>e===l.tl.GreaterThan)??i[0]}else if(e?.type===l.CH.Date){if(o&&"*..*"!==a)return i.find(e=>e===l.tl.Between)??i[0];else if(a?.startsWith("<="))return i.find(e=>e===l.tl.BeforeAndIncluding)??i[0];else if(a?.startsWith("<"))return i.find(e=>e===l.tl.Before)??i[0];else if(a?.startsWith(">="))return i.find(e=>e===l.tl.AfterAndIncluding)??i[0];else if(a?.startsWith(">"))return i.find(e=>e===l.tl.After)??i[0]}return i.find(e=>r?e===l.tl.IsOneOf:e===l.tl.Is)??i[0]}return l.tl.Is},D=(e,t)=>{let a=e.key?`${e.key.value}:`:"";switch(e.operator){case l.tl.IsNot:case l.tl.IsNotOneOf:return`${a.startsWith("-")?a:`-${a}`}${e.value?.values.map(e=>h(e.value)).join(t.valueDelimiter)}`;case l.tl.Before:case l.tl.LessThan:return`${a}<${e.value?.raw??""}`;case l.tl.After:case l.tl.GreaterThan:return`${a}>${!e.value?.raw?"":e.value?.raw}`;case l.tl.LessThanOrEqualTo:return`${a}<=${!e.value?.raw?"":e.value?.raw}`;case l.tl.GreaterThanOrEqualTo:return`${a}>=${!e.value?.raw?"":e.value?.raw}`;case l.tl.Between:return`${a}${f(e.value?.values[0]?.value)}..${f(e.value?.values[1]?.value)}`;default:return`${a.startsWith("-")?a.substring(1):a}${e.value?.values.map(e=>h(e.value)).join(t.valueDelimiter)}`}},$=(e,t=i.PlusCircleIcon,a=0)=>({displayName:`Has ${e.toLocaleLowerCase()}`,ariaLabel:`Has ${e}, ${e}`,icon:t,value:"*",type:l.ak.HasValue,priority:a}),R=(e,t=i.NoEntryIcon,a=0)=>({displayName:`No ${e.toLocaleLowerCase()}`,ariaLabel:`No ${e}, ${e}`,icon:t,value:"",type:l.ak.NoValue,priority:a}),E=e=>({displayName:e?`Exclude ${e.toLocaleLowerCase()}`:"Exclude",ariaLabel:e?`Exclude ${e.toLocaleLowerCase()}`:"Exclude",value:e?`-${e}`:"-",type:l.ak.Key,priority:1,icon:i.NoEntryIcon}),G=()=>({ariaLabel:"And",value:"AND",type:"keyword",priority:1,icon:i.PlusCircleIcon}),_=()=>({ariaLabel:"Or",value:"OR",type:"keyword",priority:1,icon:i.SkipIcon}),H=e=>{let t=[];for(let a of e)"suggestions"in a?t.push(...a.suggestions):t.push(a);return t},U=e=>{let t=[],a=[...e];for(;a.length;){let e=a.pop();e&&(t.push(e),T(e)&&a.push(...e.blocks))}return t},F=e=>{let t=[];for(let a=0;a{t+=`,${(f(e.value)??"").replaceAll(/[>|<|>=|<=]/g,"")??""}`}),t=t.slice(1),e.value={values:e.value?.values??[],raw:t}}e.id=t.length,t.push(e)}else t.push({type:l._B.Filter,id:t.length,provider:s.J,raw:i.raw??"",value:{raw:i.raw??"",values:[{value:i.raw??"",valid:!0}]}})}return t},W=(e,t)=>{let a;return(a=O(e)&&e.value?.values?((e,t=-1)=>{if(null===t||t<0)return f(e.at(-1)?.value);for(let a of e)if(k(t,a.startIndex,a.endIndex))return f(a.value);return null})(e.value.values,t)??"":w(e)&&e.value?.values?f(e.value.values[0]?.value)??"":e.raw).startsWith('"')&&(a=a.substring(1)),a.endsWith('"')&&(a=a.substring(0,a.length-1)),a},V=e=>{let t=w(e)&&e.value?.values?e.value.values:[];return!(t.length>1)&&(1!==t.length||t[0]?.value==="")},j=(e,t=!0)=>w(e)&&(t||e.value.values.length<=1),z=(e,t)=>{if(e.startIndex>t||e.endIndexk(t,e.startIndex,e.endIndex));return a?["value",a]:[null,null]},K=(e="mixed")=>{let t=[];if("mixed"===e){let e={};for(let t of[...o.sS.memexState,...o.sS.state,...o.sS.prState]){let a=f(t.value),{icon:i,iconColor:r,...o}=t;a&&!e[a]&&(e[a]={...o})}t=Object.values(e)}else t="issues"===e?o.sS.state:"memex"===e?o.sS.memexState:o.sS.prState;return t};function Q(e){return e?e.replaceAll("<","<")?.replaceAll(">",">"):e}let X=e=>{let t;if(0===e.length)return new Map;let a=0,i=[];for(;(t=e.indexOf('"',a))>-1;)i.push(t),a=t+1;let r=null,o=new Map;for(let e of i)r?(o.set(r,e),r=null):r=e;return o},J={filterTypes:{multiKey:!1,multiValue:!1,valueless:!1}},Y=(e,t,a=!1)=>{let i=e=>a?e.split(".").some(e=>e.toLocaleLowerCase().startsWith(t.toLocaleLowerCase()))||e.toLocaleLowerCase().startsWith(t.toLocaleLowerCase()):p(e.toLocaleLowerCase())===t.toLocaleLowerCase();return i(e.key)||e.aliases?.some(e=>i(e))||e.options?.filterTypes.exclusive&&(i(`-${e.key}`)||e.aliases?.some(e=>i(`-${e}`)))||!1}},59403:(e,t,a)=>{a.d(t,{Dx:()=>s,IP:()=>o,M4:()=>r,dt:()=>l});var i=a(91385);let r=1/0,o=-1/0,s=1,l=(e,t,a=s)=>{let l=e.trim().toLowerCase(),n=t.trim().toLowerCase();if(l===n)return r;if(0===n.length||0===l.length)return o;let c=(0,i.fN)(l,n);return c===1/0&&l!==n?o:n.startsWith(l)||n.endsWith(l)?c+a:c}},65154:(e,t,a)=>{a.d(t,{CH:()=>o,FT:()=>l,_B:()=>c,ak:()=>i,b:()=>n,b9:()=>s,tl:()=>d,uW:()=>r});let i={Key:"key",Value:"value",NoValue:"",HasValue:"*"},r={User:"user",Org:"org",Team:"team"},o={Select:"select",User:"user",Text:"text",Date:"date",Number:"number",DecimalNumber:"decimal",Boolean:"boolean",RawText:"rawText",Unknown:"unknown"},s={Unsupported:"unsupported",Supported:"supported",Deprecated:"deprecated"},l={SuggestionSelected:"suggestion-selected",DialogSubmit:"dialog-submit",ExplicitSubmit:"explicit-submit",Clear:"clear"},n={EmptyValue:"empty-value",InvalidValue:"invalid-value",MultiValueUnsupported:"multi-value-unsupported",FilterProviderDeprecated:"filter-provider-deprecated",FilterProviderUnsupported:"filter-provider-unsupported",FilterProviderTopLevel:"filter-provider-top-level",UnbalancedQuotations:"unbalanced-quotations",UnbalancedParentheses:"unbalanced-parentheses",MaxNestedGroups:"max-nested-groups"},c={Filter:"filter",Text:"text",Space:"space",Keyword:"keyword",Group:"group",UnmatchedOpenParen:"unmatched-open-paren",UnmatchedCloseParen:"unmatched-close-paren"},d={IsOneOf:"IsOneOf",IsNotOneOf:"IsNotOneOf",Is:"Is",IsNot:"IsNot",GreaterThan:"GreaterThan",LessThan:"LessThan",GreaterThanOrEqualTo:"GreaterThanOrEqualTo",LessThanOrEqualTo:"LessThanOrEqualTo",EqualTo:"EqualTo",Before:"Before",After:"After",BeforeAndIncluding:"BeforeAndIncluding",AfterAndIncluding:"AfterAndIncluding",Between:"Between"}},73017:(e,t,a)=>{a.d(t,{$6:()=>c,JR:()=>l,Jg:()=>u,vb:()=>s});var i=a(74848),r=a(16522),o=a(12683);let s=p(o.az),l=p(o.EY),n=e=>{let t,a,o,s=(0,r.c)(6);return s[0]!==e?({ref:a,...t}=e,s[0]=e,s[1]=t,s[2]=a):(t=s[1],a=s[2]),s[3]!==t||s[4]!==a?(o=(0,i.jsx)("div",{...t,ref:a}),s[3]=t,s[4]=a,s[5]=o):o=s[5],o};n.displayName="Div";let c=p(n),d=e=>{let t,a,o,s=(0,r.c)(6);return s[0]!==e?({ref:a,...t}=e,s[0]=e,s[1]=t,s[2]=a):(t=s[1],a=s[2]),s[3]!==t||s[4]!==a?(o=(0,i.jsx)("bdi",{...t,ref:a}),s[3]=t,s[4]=a,s[5]=o):o=s[5],o};d.displayName="Bdi";let u=p(d);function p(e){let t=t=>{let a,o,s,l,n=(0,r.c)(8);n[0]!==t?({html:a,...o}=t,n[0]=t,n[1]=a,n[2]=o):(a=n[1],o=n[2]);let c=o;return n[3]!==a?(s=a?{__html:a}:void 0,n[3]=a,n[4]=s):s=n[4],n[5]!==c||n[6]!==s?(l=(0,i.jsx)(e,{...c,dangerouslySetInnerHTML:s}),n[5]=c,n[6]=s,n[7]=l):l=n[7],l};return t.displayName=`SafeHTML${e.displayName||e.name}`,t}try{s.displayName||(s.displayName="VerifiedHTMLBox")}catch{}try{l.displayName||(l.displayName="VerifiedHTMLText")}catch{}try{c.displayName||(c.displayName="VerifiedHTMLDiv")}catch{}try{u.displayName||(u.displayName="VerifiedHTMLBdi")}catch{}},75642:(e,t,a)=>{a.d(t,{S:()=>o,p:()=>r});var i=a(38621);let r=[{value:"@today",displayName:"Today",priority:1,icon:i.ArrowSwitchIcon,iconColor:"var(--fgColor-done, var(--color-done-fg))"},{value:"@today-1d",displayName:"Yesterday",priority:2,icon:i.ArrowSwitchIcon,iconColor:"var(--fgColor-done, var(--color-done-fg))"},{value:">@today-1w",displayName:"Past 7 days",priority:3,icon:i.ArrowSwitchIcon,iconColor:"var(--fgColor-done, var(--color-done-fg))"},{value:">@today-30d",displayName:"Past 30 days",priority:4,icon:i.ArrowSwitchIcon,iconColor:"var(--fgColor-done, var(--color-done-fg))"},{value:">@today-1y",displayName:"Past year",priority:5,icon:i.ArrowSwitchIcon,iconColor:"var(--fgColor-done, var(--color-done-fg))"},{value:()=>{let e=new Date;return`${e.getFullYear()}-${`0${e.getMonth()+1}`.slice(-2)}-${`0${e.getDate()}`.slice(-2)}`},displayName:new Date().toLocaleDateString("en-us",{year:"numeric",month:"long",day:"numeric"}),priority:6,icon:i.CalendarIcon}],o=[{value:"<10",displayName:"Less than 10",priority:1},{value:">10",displayName:"More than 10",priority:2},{value:"10..100",displayName:"Between 10 and 100",priority:3},{value:"100",displayName:"100",priority:4}]},81945:(e,t,a)=>{a.d(t,{O:()=>c});var i=a(12683),r=a(38267);let o=(0,r.i7)(["0%{transform:translateX(-100%);}50%{transform:translateX(100%);}100%{transform:translateX(100%);}"]),s=(0,r.AH)(["animation:"," 1.5s infinite linear;"],o),l=(0,r.i7)(["0%{opacity:.3;}10%{opacity:1;}100%{opacity:.3;}"]),n=(0,r.AH)(["animation:"," 2s infinite linear;"],l),c=(0,r.Ay)(i.az).withConfig({displayName:"LoadingSkeleton",componentId:"sc-6893f3e-0"})(["position:relative;overflow:hidden;mask-image:radial-gradient(white,black);",";&::after{",";background:linear-gradient(90deg,transparent,",",transparent);content:'';position:absolute;transform:translateX(-100%);bottom:0;left:0;right:0;top:0;}background-color:",";border-radius:",";display:block;height:1.2em;"," width:",";height:",";",""],({animationStyle:e})=>"pulse"===e&&n,({animationStyle:e})=>"pulse"!==e&&s,(0,i.yB)("colors.neutral.subtle"),(0,i.yB)("colors.neutral.subtle"),({theme:e,variant:t})=>{switch(t){case"rounded":return(0,i.yB)("radii.1")(e);case"pill":return"100px";case"elliptical":return"50%";default:return"0"}},({variant:e})=>"elliptical"===e&&{borderRadius:"50%"},({width:e})=>{switch(e){case"random":return`${Math.floor(40*Math.random()+40)}%`;case"xl":return"32px";case"lg":return"24px";case"md":return"20px";case"sm":return"16px";default:return e}},({height:e})=>{switch(e){case"xl":return"32px";case"lg":return"24px";case"md":return"20px";case"sm":return"16px";default:return e}},i.sx);try{c.displayName||(c.displayName="LoadingSkeleton")}catch{}}}]); +//# sourceMappingURL=22785-be4ee06c8275.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/23048.2cf8290f43b251d573e6.module.css" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/23048.2cf8290f43b251d573e6.module.css" new file mode 100644 index 0000000..514fcb5 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/23048.2cf8290f43b251d573e6.module.css" @@ -0,0 +1,2 @@ +.ErrorPage-module__Heading--ucgNq{align-items:center;display:flex;flex-direction:column;justify-content:center;min-height:100%;min-width:100%}.ErrorPage-module__Status--ITNSj{font-size:var(--text-title-size-large);font-weight:var(--base-text-weight-semibold)}.ErrorPage-module__Message--CAZL0{font-size:var(--text-title-size-medium);padding-top:var(--base-size-8)}.PullRequestsProcessingIndicator-module__button--IKkby{color:var(--fgColor-muted);padding-bottom:var(--base-size-4)}.PullRequestsProcessingIndicator-module__indicator--iNiwb{align-items:center;display:flex;font-weight:var(--base-text-weight-normal);margin-top:var(--base-size-4);padding-left:var(--base-size-4)}.PullRequestsProcessingIndicator-module__text--JUMXg{color:var(--fgColor-muted);font-size:var(--text-body-size-small);margin-left:var(--base-size-4)} +/*# sourceMappingURL=lazy-react-partial-pull-requests-processing-indicator-47c09e52baea.js.map*/ \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/24291.ab50ab51004907dd0fb5.module.css" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/24291.ab50ab51004907dd0fb5.module.css" new file mode 100644 index 0000000..0d55913 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/24291.ab50ab51004907dd0fb5.module.css" @@ -0,0 +1,2 @@ +.ErrorPage-module__Heading--ucgNq{align-items:center;display:flex;flex-direction:column;justify-content:center;min-height:100%;min-width:100%}.ErrorPage-module__Status--ITNSj{font-size:var(--text-title-size-large);font-weight:var(--base-text-weight-semibold)}.ErrorPage-module__Message--CAZL0{font-size:var(--text-title-size-medium);padding-top:var(--base-size-8)}.SubscriptionList-module__subscriptionTypeName--feJ4k{font-weight:var(--base-text-weight-semibold)}.FooterActions-module__buttonsContainer--XOX1_,.FooterActions-module__footerContainer--sNVyn{align-items:center;display:flex;justify-content:flex-end}.FooterActions-module__buttonsContainer--XOX1_{padding-left:0;text-align:left}.FooterActions-module__errorMessageText--LtM5d{color:var(--fgColor-muted,var(--color-fg-muted));padding-bottom:var(--base-size-16);padding-left:var(--base-size-16);padding-top:var(--base-size-16)}.FooterActions-module__FooterActionsSpinner--WjF07{margin-right:var(--base-size-8)}.FooterActions-module__applyButton--Q5SC4{margin-left:var(--base-size-8)}.ThreadList-module__filterContainer--R6lFt{margin-left:var(--base-size-24);padding-top:var(--base-size-8)}.ThreadList-module__threadContent--x7fVL{border-color:var(--borderColor-default,var(--color-border-default));border-radius:var(--borderRadius-medium);border-style:solid;border-width:thin;margin:var(--base-size-16);margin-bottom:0}.ThreadList-module__threadRow--LKENb{padding:var(--base-size-8) var(--base-size-12)}.ThreadList-module__threadDisabledMessage--kfUK2{color:var(--fgColor-muted);font-size:var(--text-body-size-small);margin:0;margin-left:var(--base-size-24)}.NotificationsSubscriptionsMenu-module__watchCounter--vgIup{background-color:var(--buttonCounter-default-bgColor-rest,var(--color-btn-counter-bg));display:inline-block;padding:0 6px}.NotificationsSubscriptionsMenu-module__ActionMenuButton--UgYy6 [data-component=leadingVisual]{color:var(--fgColor-muted,var(--color-fg-muted))}@media(max-width:750px){.NotificationsSubscriptionsMenu-module__subscriptionDialog--H1n3k{max-height:100dvh;overflow-y:auto}} +/*# sourceMappingURL=lazy-react-partial-notifications-subscriptions-menu-5f52fcacb0a9.js.map*/ \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/24774-6623aa36f8d9.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/24774-6623aa36f8d9.js" new file mode 100644 index 0000000..8104119 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/24774-6623aa36f8d9.js" @@ -0,0 +1,12 @@ +performance.mark("js-parse-end:24774-6623aa36f8d9.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[24774],{24774:(t,e,i)=>{let s;i.d(e,{l_:()=>BlockWrapper,NZ:()=>Decoration,OP:()=>tt,Lz:()=>EditorView,wJ:()=>GutterMarker,Ip:()=>RectangleMarker,Z9:()=>ViewPlugin,xO:()=>WidgetType,A:()=>e7,ld:()=>ib,Eg:()=>im,cU:()=>iA,EV:()=>ik,Ux:()=>ig,w4:()=>eU,qd:()=>e4,$K:()=>iI,c_:()=>tA,qf:()=>it,TS:()=>eQ,S7:()=>iS,DK:()=>id,vX:()=>ii});var n,o,r,l=i(53839),h=i(97417),a={8:"Backspace",9:"Tab",10:"Enter",12:"NumLock",13:"Enter",16:"Shift",17:"Control",18:"Alt",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",44:"PrintScreen",45:"Insert",46:"Delete",59:";",61:"=",91:"Meta",92:"Meta",106:"*",107:"+",108:",",109:"-",110:".",111:"/",144:"NumLock",145:"ScrollLock",160:"Shift",161:"Shift",162:"Control",163:"Control",164:"Alt",165:"Alt",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},c={48:")",49:"!",50:"@",51:"#",52:"$",53:"%",54:"^",55:"&",56:"*",57:"(",59:":",61:"+",173:"_",186:":",187:"+",188:"<",189:"_",190:">",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},d="u">typeof navigator&&/Chrome\/(\d+)/.exec(navigator.userAgent);"u">typeof navigator&&/Gecko\/\d+/.test(navigator.userAgent);for(var u="u">typeof navigator&&/Mac/.test(navigator.platform),f="u">typeof navigator&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent),p=u||d&&57>+d[1],g=0;g<10;g++)a[48+g]=a[96+g]=String(g);for(var g=1;g<=24;g++)a[g+111]="F"+g;for(var g=65;g<=90;g++)a[g]=String.fromCharCode(g+32),c[g]=String.fromCharCode(g);for(var m in a)c.hasOwnProperty(m)||(c[m]=a[m]);let w="u">typeof navigator?navigator:{userAgent:"",vendor:"",platform:""},v="u">typeof document?document:{documentElement:{style:{}}},b=/Edge\/(\d+)/.exec(w.userAgent),y=/MSIE \d/.test(w.userAgent),x=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(w.userAgent),S=!!(y||x||b),k=!S&&/gecko\/(\d+)/i.test(w.userAgent),M=!S&&/Chrome\/(\d+)/.exec(w.userAgent),C="webkitFontSmoothing"in v.documentElement.style,T=!S&&/Apple Computer/.test(w.vendor),A=T&&(/Mobile\/\w+/.test(w.userAgent)||w.maxTouchPoints>2);var O={mac:A||/Mac/.test(w.platform),windows:/Win/.test(w.platform),linux:/Linux|X11/.test(w.platform),ie:S,ie_version:y?v.documentMode||6:x?+x[1]:b?+b[1]:0,gecko:k,gecko_version:k?+(/Firefox\/(\d+)/.exec(w.userAgent)||[0,0])[1]:0,chrome:!!M,chrome_version:M?+M[1]:0,ios:A,android:/Android\b/.test(w.userAgent),webkit:C,webkit_version:C?+(/\bAppleWebKit\/(\d+)/.exec(w.userAgent)||[0,0])[1]:0,safari:T,safari_version:T?+(/\bVersion\/(\d+(\.\d+)?)/.exec(w.userAgent)||[0,0])[1]:0,tabSize:null!=v.documentElement.style.tabSize?"tab-size":"-moz-tab-size"};function D(t,e){for(let i in t)"class"==i&&e.class?e.class+=" "+t.class:"style"==i&&e.style?e.style+=";"+t.style:e[i]=t[i];return e}let E=Object.create(null);function R(t,e,i){if(t==e)return!0;t||(t=E),e||(e=E);let s=Object.keys(t),n=Object.keys(e);if(s.length-(i&&s.indexOf(i)>-1?1:0)!=n.length-(i&&n.indexOf(i)>-1?1:0))return!1;for(let o of s)if(o!=i&&(-1==n.indexOf(o)||t[o]!==e[o]))return!1;return!0}function B(t,e,i){let s=!1;if(e)for(let n in e)i&&n in i||(s=!0,"style"==n?t.style.cssText="":t.removeAttribute(n));if(i)for(let n in i)e&&e[n]==i[n]||(s=!0,"style"==n?t.style.cssText=i[n]:t.setAttribute(n,i[n]));return s}let WidgetType=class WidgetType{eq(t){return!1}updateDOM(t,e){return!1}compare(t){return this==t||this.constructor==t.constructor&&this.eq(t)}get estimatedHeight(){return -1}get lineBreaks(){return 0}ignoreEvent(t){return!0}coordsAt(t,e,i){return null}get isHidden(){return!1}get editable(){return!1}destroy(t){}};var L=((n=L||(L={}))[n.Text=0]="Text",n[n.WidgetBefore=1]="WidgetBefore",n[n.WidgetAfter=2]="WidgetAfter",n[n.WidgetRange=3]="WidgetRange",n);let Decoration=class Decoration extends l.FB{constructor(t,e,i,s){super(),this.startSide=t,this.endSide=e,this.widget=i,this.spec=s}get heightRelevant(){return!1}static mark(t){return new MarkDecoration(t)}static widget(t){let e=Math.max(-1e4,Math.min(1e4,t.side||0)),i=!!t.block;return e+=i&&!t.inlineOrder?e>0?3e8:-4e8:e>0?1e8:-1e8,new PointDecoration(t,e,e,i,t.widget||null,!1)}static replace(t){let e=!!t.block,i,s;if(t.isBlockGap)i=-5e8,s=4e8;else{let{start:n,end:o}=P(t,e);i=(n?e?-3e8:-1:5e8)-1,s=(o?e?2e8:1:-6e8)+1}return new PointDecoration(t,i,s,e,t.widget||null,!0)}static line(t){return new LineDecoration(t)}static set(t,e=!1){return l.om.of(t,e)}hasHeight(){return!!this.widget&&this.widget.estimatedHeight>-1}};Decoration.none=l.om.empty;let MarkDecoration=class MarkDecoration extends Decoration{constructor(t){let{start:e,end:i}=P(t);super(e?-1:5e8,i?1:-6e8,null,t),this.tagName=t.tagName||"span",this.attrs=t.class&&t.attributes?D(t.attributes,{class:t.class}):t.class?{class:t.class}:t.attributes||E}eq(t){return this==t||t instanceof MarkDecoration&&this.tagName==t.tagName&&R(this.attrs,t.attrs)}range(t,e=t){if(t>=e)throw RangeError("Mark decorations may not be empty");return super.range(t,e)}};MarkDecoration.prototype.point=!1;let LineDecoration=class LineDecoration extends Decoration{constructor(t){super(-2e8,-2e8,null,t)}eq(t){return t instanceof LineDecoration&&this.spec.class==t.spec.class&&R(this.spec.attributes,t.spec.attributes)}range(t,e=t){if(e!=t)throw RangeError("Line decoration ranges must be zero-length");return super.range(t,e)}};LineDecoration.prototype.mapMode=l.iR.TrackBefore,LineDecoration.prototype.point=!0;let PointDecoration=class PointDecoration extends Decoration{constructor(t,e,i,s,n,o){super(e,i,n,t),this.block=s,this.isReplace=o,this.mapMode=s?e<=0?l.iR.TrackBefore:l.iR.TrackAfter:l.iR.TrackDel}get type(){return this.startSide!=this.endSide?L.WidgetRange:this.startSide<=0?L.WidgetBefore:L.WidgetAfter}get heightRelevant(){return this.block||!!this.widget&&(this.widget.estimatedHeight>=5||this.widget.lineBreaks>0)}eq(t){var e,i;return t instanceof PointDecoration&&(e=this.widget,e==(i=t.widget)||!!(e&&i&&e.compare(i)))&&this.block==t.block&&this.startSide==t.startSide&&this.endSide==t.endSide}range(t,e=t){if(this.isReplace&&(t>e||t==e&&this.startSide>0&&this.endSide<=0))throw RangeError("Invalid range for replacement decoration");if(!this.isReplace&&e!=t)throw RangeError("Widget decorations can only have zero-length ranges");return super.range(t,e)}};function P(t,e=!1){let{inclusiveStart:i,inclusiveEnd:s}=t;return null==i&&(i=t.inclusive),null==s&&(s=t.inclusive),{start:null!=i?i:e,end:null!=s?s:e}}function H(t,e,i,s=0){let n=i.length-1;n>=0&&i[n]+s>=t?i[n]=Math.max(i[n],e):i.push(t,e)}PointDecoration.prototype.point=!0;let BlockWrapper=class BlockWrapper extends l.FB{constructor(t,e){super(),this.tagName=t,this.attributes=e}eq(t){return t==this||t instanceof BlockWrapper&&this.tagName==t.tagName&&R(this.attributes,t.attributes)}static create(t){return new BlockWrapper(t.tagName,t.attributes||E)}static set(t,e=!1){return l.om.of(t,e)}};function V(t){return(11==t.nodeType?t.getSelection?t:t.ownerDocument:t).getSelection()}function W(t,e){return!!e&&(t==e||t.contains(1!=e.nodeType?e.parentNode:e))}function I(t,e){if(!e.anchorNode)return!1;try{return W(t,e.anchorNode)}catch(t){return!1}}function N(t){return 3==t.nodeType?U(t,0,t.nodeValue.length).getClientRects():1==t.nodeType?t.getClientRects():[]}function F(t,e,i,s){return!!i&&(j(t,e,i,s,-1)||j(t,e,i,s,1))}function z(t){for(var e=0;;e++)if(!(t=t.previousSibling))return e}function q(t){return 1==t.nodeType&&/^(DIV|P|LI|UL|OL|BLOCKQUOTE|DD|DT|H\d|SECTION|PRE)$/.test(t.nodeName)}function j(t,e,i,s,n){for(;;){if(t==i&&e==s)return!0;if(e==(n<0?0:G(t))){if("DIV"==t.nodeName)return!1;let i=t.parentNode;if(!i||1!=i.nodeType)return!1;e=z(t)+(n<0?0:1),t=i}else{if(1!=t.nodeType||1==(t=t.childNodes[e+(n<0?-1:0)]).nodeType&&"false"==t.contentEditable)return!1;e=n<0?G(t):0}}}function G(t){return 3==t.nodeType?t.nodeValue.length:t.childNodes.length}function K(t,e){let i=e?t.left:t.right;return{left:i,right:i,top:t.top,bottom:t.bottom}}function _(t,e){let i=e.width/t.offsetWidth,s=e.height/t.offsetHeight;return(i>.995&&i<1.005||!isFinite(i)||1>Math.abs(e.width-t.offsetWidth))&&(i=1),(s>.995&&s<1.005||!isFinite(s)||1>Math.abs(e.height-t.offsetHeight))&&(s=1),{scaleX:i,scaleY:s}}BlockWrapper.prototype.startSide=BlockWrapper.prototype.endSide=-1;let DOMSelectionState=class DOMSelectionState{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}eq(t){return this.anchorNode==t.anchorNode&&this.anchorOffset==t.anchorOffset&&this.focusNode==t.focusNode&&this.focusOffset==t.focusOffset}setRange(t){let{anchorNode:e,focusNode:i}=t;this.set(e,Math.min(t.anchorOffset,e?G(e):0),i,Math.min(t.focusOffset,i?G(i):0))}set(t,e,i,s){this.anchorNode=t,this.anchorOffset=e,this.focusNode=i,this.focusOffset=s}};let Y=null;function $(t){if(t.setActive)return t.setActive();if(Y)return t.focus(Y);let e=[];for(let i=t;i&&(e.push(i,i.scrollTop,i.scrollLeft),i!=i.ownerDocument);i=i.parentNode);if(t.focus(null==Y?{get preventScroll(){return Y={preventScroll:!0},!0}}:void 0),!Y){Y=!1;for(let t=0;tMath.max(1,t.scrollHeight-t.clientHeight-4)}function Q(t,e){for(let i=t,s=e;;)if(3==i.nodeType&&s>0)return{node:i,offset:s};else if(1==i.nodeType&&s>0){if("false"==i.contentEditable)return null;s=G(i=i.childNodes[s-1])}else{if(!i.parentNode||q(i))return null;s=z(i),i=i.parentNode}}function Z(t,e){for(let i=t,s=e;;)if(3==i.nodeType&&s=26&&(Y=!1);let DOMPos=class DOMPos{constructor(t,e,i=!0){this.node=t,this.offset=e,this.precise=i}static before(t,e){return new DOMPos(t.parentNode,z(t),e)}static after(t,e){return new DOMPos(t.parentNode,z(t)+1,e)}};var tt=((o=tt||(tt={}))[o.LTR=0]="LTR",o[o.RTL=1]="RTL",o);let te=tt.LTR,ti=tt.RTL;function ts(t){let e=[];for(let i=0;i=e){if(r.level==i)return o;(n<0||(0!=s?s<0?r.frome:t[n].level>r.level))&&(n=o)}}if(n<0)throw RangeError("Index out of range");return n}};let tc=[];function td(t){return[new BidiSpan(0,t,0)]}let tu="",tf=l.sj.define(),tp=l.sj.define(),tg=l.sj.define(),tm=l.sj.define(),tw=l.sj.define(),tv=l.sj.define(),tb=l.sj.define(),ty=l.sj.define(),tx=l.sj.define(),tS=l.sj.define({combine:t=>t.some(t=>t)}),tk=l.sj.define({combine:t=>t.some(t=>t)}),tM=l.sj.define();let ScrollTarget=class ScrollTarget{constructor(t,e="nearest",i="nearest",s=5,n=5,o=!1){this.range=t,this.y=e,this.x=i,this.yMargin=s,this.xMargin=n,this.isSnapshot=o}map(t){return t.empty?this:new ScrollTarget(this.range.map(t),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}clip(t){return this.range.to<=t.doc.length?this:new ScrollTarget(l.OF.cursor(t.doc.length),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}};let tC=l.Pe.define({map:(t,e)=>t.map(e)}),tT=l.Pe.define();function tA(t,e,i){let s=t.facet(tm);s.length?s[0](e):window.onerror&&window.onerror(String(e),i,void 0,void 0,e)||(i?console.error(i+":",e):console.error(e))}let tO=l.sj.define({combine:t=>!t.length||t[0]}),tD=0,tE=l.sj.define({combine:t=>t.filter((e,i)=>{for(let s=0;s{let e=[];return o&&e.push(tL.of(e=>{let i=e.plugin(t);return i?o(i):Decoration.none})),n&&e.push(n(t)),e})}static fromClass(t,e){return ViewPlugin.define((e,i)=>new t(e,i),e)}};let PluginInstance=class PluginInstance{constructor(t){this.spec=t,this.mustUpdate=null,this.value=null}get plugin(){return this.spec&&this.spec.plugin}update(t){if(this.value){if(this.mustUpdate){let t=this.mustUpdate;if(this.mustUpdate=null,this.value.update)try{this.value.update(t)}catch(e){if(tA(t.state,e,"CodeMirror plugin crashed"),this.value.destroy)try{this.value.destroy()}catch(t){}this.deactivate()}}}else if(this.spec)try{this.value=this.spec.plugin.create(t,this.spec.arg)}catch(e){tA(t.state,e,"CodeMirror plugin crashed"),this.deactivate()}return this}destroy(t){var e;if(null==(e=this.value)?void 0:e.destroy)try{this.value.destroy()}catch(e){tA(t.state,e,"CodeMirror plugin crashed")}}deactivate(){this.spec=this.value=null}};let tR=l.sj.define(),tB=l.sj.define(),tL=l.sj.define(),tP=l.sj.define(),tH=l.sj.define(),tV=l.sj.define(),tW=l.sj.define();function tI(t,e){let i=t.state.facet(tW);if(!i.length)return i;let s=i.map(e=>e instanceof Function?e(t):e),n=[];return l.om.spans(s,e.from,e.to,{point(){},span(t,i,s,o){let r=t-e.from,l=i-e.from,h=n;for(let t=s.length-1;t>=0;t--,o--){let i=s[t].spec.bidiIsolate,n;if(null==i&&(i=function(t,e,i){for(let s=e;s0&&h.length&&(n=h[h.length-1]).to==r&&n.direction==i)n.to=l,h=n.inner;else{let t={from:r,to:l,direction:i,inner:[]};h.push(t),h=t.inner}}}}),n}let tN=l.sj.define();function tF(t){let e=0,i=0,s=0,n=0;for(let o of t.state.facet(tN)){let r=o(t);r&&(null!=r.left&&(e=Math.max(e,r.left)),null!=r.right&&(i=Math.max(i,r.right)),null!=r.top&&(s=Math.max(s,r.top)),null!=r.bottom&&(n=Math.max(n,r.bottom)))}return{left:e,right:i,top:s,bottom:n}}let tz=l.sj.define();let ChangedRange=class ChangedRange{constructor(t,e,i,s){this.fromA=t,this.toA=e,this.fromB=i,this.toB=s}join(t){return new ChangedRange(Math.min(this.fromA,t.fromA),Math.max(this.toA,t.toA),Math.min(this.fromB,t.fromB),Math.max(this.toB,t.toB))}addToSet(t){let e=t.length,i=this;for(;e>0;e--){let s=t[e-1];if(!(s.fromA>i.toA)){if(s.toAs.push(new ChangedRange(t,e,i,n))),this.changedRanges=s}static create(t,e,i){return new ViewUpdate(t,e,i)}get viewportChanged(){return(4&this.flags)>0}get viewportMoved(){return(8&this.flags)>0}get heightChanged(){return(2&this.flags)>0}get geometryChanged(){return this.docChanged||(18&this.flags)>0}get focusChanged(){return(1&this.flags)>0}get docChanged(){return!this.changes.empty}get selectionSet(){return this.transactions.some(t=>t.selection)}get empty(){return 0==this.flags&&0==this.transactions.length}};let tq=[];let Tile=class Tile{constructor(t,e,i=0){this.dom=t,this.length=e,this.flags=i,this.parent=null,t.cmTile=this}get breakAfter(){return 1&this.flags}get children(){return tq}isWidget(){return!1}get isHidden(){return!1}isComposite(){return!1}isLine(){return!1}isText(){return!1}isBlock(){return!1}get domAttrs(){return null}sync(t){if(this.flags|=2,4&this.flags){this.flags&=-5;let t=this.domAttrs;t&&function(t,e){for(let i=t.attributes.length-1;i>=0;i--){let s=t.attributes[i].name;null==e[s]&&t.removeAttribute(s)}for(let i in e){let s=e[i];"style"==i?t.style.cssText=s:t.getAttribute(i)!=s&&t.setAttribute(i,s)}}(this.dom,t)}}toString(){return this.constructor.name+(this.children.length?`(${this.children})`:"")+(this.breakAfter?"#":"")}destroy(){this.parent=null}setDOM(t){this.dom=t,t.cmTile=this}get posAtStart(){return this.parent?this.parent.posBefore(this):0}get posAtEnd(){return this.posAtStart+this.length}posBefore(t,e=this.posAtStart){let i=e;for(let e of this.children){if(e==t)return i;i+=e.length+e.breakAfter}throw RangeError("Invalid child in posBefore")}posAfter(t){return this.posBefore(t)+t.length}covers(t){return!0}coordsIn(t,e){return null}domPosFor(t,e){let i=z(this.dom),s=this.length?t>0:e>0;return new DOMPos(this.parent.dom,i+ +!!s,0==t||t==this.length)}markDirty(t){this.flags&=-3,t&&(this.flags|=4),this.parent&&2&this.parent.flags&&this.parent.markDirty(!1)}get overrideDOMText(){return null}get root(){for(let t=this;t;t=t.parent)if(t instanceof DocTile)return t;return null}static get(t){return t.cmTile}};let CompositeTile=class CompositeTile extends Tile{constructor(t){super(t,0),this._children=[]}isComposite(){return!0}get children(){return this._children}get lastChild(){return this.children.length?this.children[this.children.length-1]:null}append(t){this.children.push(t),t.parent=this}sync(t){if(2&this.flags)return;super.sync(t);let e=this.dom,i=null,s,n=(null==t?void 0:t.node)==e?t:null,o=0;for(let r of this.children){if(r.sync(t),o+=r.length+r.breakAfter,s=i?i.nextSibling:e.firstChild,n&&s!=r.dom&&(n.written=!0),r.dom.parentNode==e)for(;s&&s!=r.dom;)s=tj(s);else e.insertBefore(r.dom,s);i=r.dom}for(s=i?i.nextSibling:e.firstChild,n&&s&&(n.written=!0);s;)s=tj(s);this.length=o}};function tj(t){let e=t.nextSibling;return t.parentNode.removeChild(t),e}let DocTile=class DocTile extends CompositeTile{constructor(t,e){super(e),this.view=t}owns(t){for(;t;t=t.parent)if(t==this)return!0;return!1}isBlock(){return!0}nearest(t){for(;;){if(!t)return null;let e=Tile.get(t);if(e&&this.owns(e))return e;t=t.parentNode}}blockTiles(t){for(let e=[],i=this,s=0,n=0;;)if(s==i.children.length){if(!e.length)return;(i=i.parent).breakAfter&&n++,s=e.pop()}else{let o=i.children[s++];if(o instanceof BlockWrapperTile)e.push(s),i=o,s=0;else{let e=n+o.length,i=t(o,n);if(void 0!==i)return i;n=e+o.breakAfter}}}resolveBlock(t,e){let i,s=-1,n,o=-1;if(this.blockTiles((r,l)=>{let h=l+r.length;if(t>=l&&t<=h){if(r.isWidget()&&e>=-1&&e<=1){if(32&r.flags)return!0;16&r.flags&&(i=void 0)}(lt||t==l&&(e>1?r.length:r.covers(-1)))&&(!n||!r.isWidget()&&n.isWidget())&&(n=r,o=t-l)}}),!i&&!n)throw Error("No tile at position "+t);return i&&e<0||!n?{tile:i,offset:s}:{tile:n,offset:o}}};let BlockWrapperTile=class BlockWrapperTile extends CompositeTile{constructor(t,e){super(t),this.wrapper=e}isBlock(){return!0}covers(t){return!!this.children.length&&(t<0?this.children[0].covers(-1):this.lastChild.covers(1))}get domAttrs(){return this.wrapper.attributes}static of(t,e){let i=new BlockWrapperTile(e||document.createElement(t.tagName),t);return e||(i.flags|=4),i}};let LineTile=class LineTile extends CompositeTile{constructor(t,e){super(t),this.attrs=e}isLine(){return!0}static start(t,e,i){let s=new LineTile(e||document.createElement("div"),t);return e&&i||(s.flags|=4),s}get domAttrs(){return this.attrs}resolveInline(t,e,i){let s=null,n=-1,o=null,r=-1;!function t(l,h){for(let a=0,c=0;a=h&&(d.isComposite()?t(d,h-c):(!o||o.isHidden&&(e>0||i&&function(t,e){let i=t.coordsIn(0,1),s=e.coordsIn(0,1);return i&&s&&s.toph||32&d.flags)?(o=d,r=h-c):(ci&&(t=i);let s=t,n=t,o=0;0==t&&e<0||t==i&&e>=0?!(O.chrome||O.gecko)&&(t?(s--,o=1):n=0)?0:r.length-1];return O.safari&&!o&&0==l.width&&(l=Array.prototype.find.call(r,t=>t.width)||l),o?K(l,o<0):l||null}static of(t,e){let i=new TextTile(e||document.createTextNode(t),t);return e||(i.flags|=2),i}};let WidgetTile=class WidgetTile extends Tile{constructor(t,e,i,s){super(t,e,s),this.widget=i}isWidget(){return!0}get isHidden(){return this.widget.isHidden}covers(t){return!(48&this.flags)&&(this.flags&(t<0?64:128))>0}coordsIn(t,e){return this.coordsInWidget(t,e,!1)}coordsInWidget(t,e,i){let s=this.widget.coordsAt(this.dom,t,e);if(s)return s;if(i)return K(this.dom.getBoundingClientRect(),this.length?0==t:e<=0);{let e=this.dom.getClientRects(),i=null;if(!e.length)return null;let s=!!(16&this.flags)||!(32&this.flags)&&t>0;for(let n=s?e.length-1:0;i=e[n],t>0?0!=n:n!=e.length-1&&!(i.top0;)if(s.isComposite())if(o){if(!t)break;i&&i.break(),t--,o=!1}else if(n==s.children.length){if(!t&&!r.length)break;i&&i.leave(s),o=!!s.breakAfter,({tile:s,index:n}=r.pop()),n++}else{let l=s.children[n],h=l.breakAfter;(e>0?l.length<=t:l.length=0;t--){let i=e.marks[t],n=s.lastChild;if(n instanceof MarkTile&&n.mark.eq(i.mark))n.dom!=i.dom&&n.setDOM(tY(i.dom)),s=n;else{if(this.cache.reused.get(i)){let t=Tile.get(i.dom);t&&t.setDOM(tY(i.dom))}let t=MarkTile.of(i.mark,i.dom);s.append(t),s=t}this.cache.reused.set(i,2)}let n=Tile.get(t.text);n&&this.cache.reused.set(n,2);let o=new TextTile(t.text,t.text.nodeValue);o.flags|=8,s.append(o)}addInlineWidget(t,e,i){let s=this.afterWidget&&48&t.flags&&(48&this.afterWidget.flags)==(48&t.flags);s||this.flushBuffer();let n=this.ensureMarks(e,i);s||16&t.flags||n.append(this.getBuffer(1)),n.append(t),this.pos+=t.length,this.afterWidget=t}addMark(t,e,i){this.flushBuffer(),this.ensureMarks(e,i).append(t),this.pos+=t.length,this.afterWidget=null}addBlockWidget(t){this.getBlockPos().append(t),this.pos+=t.length,this.lastBlock=t,this.endLine()}continueWidget(t){let e=this.afterWidget||this.lastBlock;e.length+=t,this.pos+=t}addLineStart(t,e){var i;t||(t=t_);let s=LineTile.start(t,e||(null==(i=this.cache.find(LineTile))?void 0:i.dom),!!e);this.getBlockPos().append(this.lastBlock=this.curLine=s)}addLine(t){this.getBlockPos().append(t),this.pos+=t.length,this.lastBlock=t,this.endLine()}addBreak(){this.lastBlock.flags|=1,this.endLine(),this.pos++}addLineStartIfNotCovered(t){this.blockPosCovered()||this.addLineStart(t)}ensureLine(t){this.curLine||this.addLineStart(t)}ensureMarks(t,e){var i;let s=this.curLine;for(let n=t.length-1;n>=0;n--){let o=t[n],r;if(e>0&&(r=s.lastChild)&&r instanceof MarkTile&&r.mark.eq(o))s=r,e--;else{let t=MarkTile.of(o,null==(i=this.cache.find(MarkTile,t=>t.mark.eq(o)))?void 0:i.dom);s.append(t),s=t,e=0}}return s}endLine(){if(this.curLine){this.flushBuffer();let t=this.curLine.lastChild;(!t||!tK(this.curLine,!1)||"BR"!=t.dom.nodeName&&t.isWidget()&&!(O.ios&&tK(this.curLine,!0)))&&this.curLine.append(this.cache.findWidget(t$,0,32)||new WidgetTile(t$.toDOM(),0,t$,32)),this.curLine=this.afterWidget=null}}updateBlockWrappers(){this.wrapperPos>this.pos+1e4&&(this.blockWrappers.goto(this.pos),this.wrappers.length=0);for(let t=this.wrappers.length-1;t>=0;t--)this.wrappers[t].to=this.pos){let e=new OpenWrapper(t.from,t.to,t.value,t.rank),i=this.wrappers.length;for(;i>0&&0>(this.wrappers[i-1].rank-e.rank||this.wrappers[i-1].to-e.to);)i--;this.wrappers.splice(i,0,e)}this.wrapperPos=this.pos}getBlockPos(){var t;this.updateBlockWrappers();let e=this.root;for(let i of this.wrappers){let s=e.lastChild;if(i.fromt.wrapper.eq(i.wrapper)))?void 0:t.dom);e.append(s),e=s}}return e}blockPosCovered(){let t=this.lastBlock;return null!=t&&!t.breakAfter&&(!t.isWidget()||(160&t.flags)>0)}getBuffer(t){let e=2|(t<0?16:32),i=this.cache.find(WidgetBufferTile,void 0,1);return i&&(i.flags=e),i||new WidgetBufferTile(e)}flushBuffer(){this.afterWidget&&!(32&this.afterWidget.flags)&&(this.afterWidget.parent.append(this.getBuffer(-1)),this.afterWidget=null)}};let TextStream=class TextStream{constructor(t){this.skipCount=0,this.text="",this.textOff=0,this.cursor=t.iter()}skip(t){this.textOff+t<=this.text.length?this.textOff+=t:(this.skipCount+=t-(this.text.length-this.textOff),this.text="",this.textOff=0)}next(t){if(this.textOff==this.text.length){let{value:e,lineBreak:i,done:s}=this.cursor.next(this.skipCount);if(this.skipCount=0,s)throw Error("Ran out of text content when drawing inline views");this.text=e;let n=this.textOff=Math.min(t,e.length);return i?null:e.slice(0,n)}let e=Math.min(this.text.length,this.textOff+t),i=this.text.slice(this.textOff,e);return this.textOff=e,i}};let tG=[WidgetTile,LineTile,TextTile,MarkTile,WidgetBufferTile,BlockWrapperTile,DocTile];for(let t=0;t[]),this.index=tG.map(()=>0),this.reused=new Map}add(t){t.demo&&console.log("Add widget to cache");let e=t.constructor.bucket,i=this.buckets[e];i.length<6?i.push(t):i[this.index[e]=(this.index[e]+1)%6]=t}find(t,e,i=2){let s=t.bucket,n=this.buckets[s],o=this.index[s];for(let t=n.length-1;t>=0;t--){let r=(t+o)%n.length,l=n[r];if((!e||e(l))&&!this.reused.has(l))return n.splice(r,1),r{if(this.cache.add(t),t.isComposite())return!1},enter:t=>this.cache.add(t),leave:()=>{},break:()=>{}}}run(t,e){let i=e&&this.getCompositionContext(e.text);for(let s=0,n=0,o=0;;){let r=os){let t=l-s;this.preserve(t,!o,!r),s=l,n+=t}if(!r)break;e&&r.fromA<=e.range.fromA&&r.toA>=e.range.toA?(this.forward(r.fromA,e.range.fromA),this.emit(n,e.range.fromB),this.cache.clear(),this.builder.addComposition(e,i),this.text.skip(e.range.toB-e.range.fromB),this.forward(e.range.fromA,r.toA),this.emit(e.range.toB,r.toB)):(this.forward(r.fromA,r.toA),this.emit(n,r.toB)),n=r.toB,s=r.toA}return this.builder.curLine&&this.builder.endLine(),this.builder.root}preserve(t,e,i){let s=function(t){let e=[];for(let i=t.parents.length;i>1;i--){let s=i==t.parents.length?t.tile:t.parents[i].tile;s instanceof MarkTile&&e.push(s.mark)}return e}(this.old),n=this.openMarks;this.old.advance(t,i?1:-1,{skip:(t,e,i)=>{if(t.isWidget())if(this.openWidget)this.builder.continueWidget(i-e);else{let o=i>0||e{t.isLine()?this.builder.addLineStart(t.attrs,this.cache.maybeReuse(t)):(this.cache.add(t),t instanceof MarkTile&&s.unshift(t.mark)),this.openWidget=!1},leave:t=>{t.isLine()?s.length&&(s.length=n=0):t instanceof MarkTile&&(s.shift(),n=Math.min(n,s.length))},break:()=>{this.builder.addBreak(),this.openWidget=!1}}),this.text.skip(t)}emit(t,e){let i=null,s=this.builder,n=0,o=l.om.spans(this.decorations,t,e,{point:(t,e,o,r,l,h)=>{var a,c,d;if(o instanceof PointDecoration){if(this.disallowBlockEffectsFor[h]){if(o.block)throw RangeError("Block decorations may not be specified via plugins");if(e>this.view.state.doc.lineAt(t).to)throw RangeError("Decorations that replace line breaks may not be specified via plugins")}if(n=r.length,l>r.length)s.continueWidget(e-t);else{let n,h=o.widget||(o.block?NullWidget.block:NullWidget.inline),c=(n=(a=o).isReplace?64*(a.startSide<0)|128*(a.endSide>0):a.startSide>0?32:16,a.block&&(n|=256),n),d=this.cache.findWidget(h,e-t,c)||WidgetTile.of(h,this.view,e-t,c);o.block?(o.startSide>0&&s.addLineStartIfNotCovered(i),s.addBlockWidget(d)):(s.ensureLine(i),s.addInlineWidget(d,r,l))}i=null}else{let t,e;c=i,t=(d=o).spec.attributes,e=d.spec.class,(t||e)&&(c||(c={class:"cm-line"}),t&&D(t,c),e&&(c.class+=" "+e)),i=c}e>t&&this.text.skip(e-t)},span:(t,e,n,o)=>{for(let r=t;rn,this.openMarks=o}forward(t,e){e-t<=10?this.old.advance(e-t,1,this.reuseWalker):(this.old.advance(5,-1,this.reuseWalker),this.old.advance(e-t-10,-1),this.old.advance(5,1,this.reuseWalker))}getCompositionContext(t){let e=[],i=null;for(let s=t.parentNode;;s=s.parentNode){let t=Tile.get(s);if(s==this.view.contentDOM)break;t instanceof MarkTile?e.push(t):(null==t?void 0:t.isLine())?i=t:"DIV"!=s.nodeName||i||s==this.view.contentDOM?e.push(MarkTile.of(new MarkDecoration({tagName:s.nodeName.toLowerCase(),attributes:function(t){let e=Object.create(null);for(let i=0;i{for(let s of t.children)if((e?s.isText():s.length)||i(s))return!0;return!1};return i(t)}let t_={class:"cm-line"};function tY(t){let e=Tile.get(t);return e&&e.setDOM(t.cloneNode()),t}let NullWidget=class NullWidget extends WidgetType{constructor(t){super(),this.tag=t}eq(t){return t.tag==this.tag}toDOM(){return document.createElement(this.tag)}updateDOM(t){return t.nodeName.toLowerCase()==this.tag}get isHidden(){return!0}};NullWidget.inline=new NullWidget("span"),NullWidget.block=new NullWidget("div");let t$=new class extends WidgetType{toDOM(){return document.createElement("br")}get isHidden(){return!0}get editable(){return!0}};let DocView=class DocView{constructor(t){this.view=t,this.decorations=[],this.blockWrappers=[],this.dynamicDecorationMap=[!1],this.domChanged=null,this.hasComposition=null,this.editContextFormatting=Decoration.none,this.lastCompositionAfterCursor=!1,this.minWidth=0,this.minWidthFrom=0,this.minWidthTo=0,this.impreciseAnchor=null,this.impreciseHead=null,this.forceSelection=!1,this.lastUpdate=Date.now(),this.updateDeco(),this.tile=new DocTile(t,t.contentDOM),this.updateInner([new ChangedRange(0,0,0,t.state.doc.length)],null)}update(t){var e,i,s,n,o,r,h,a,c;let d,u,f,p=t.changedRanges;this.minWidth>0&&p.length&&(p.every(({fromA:t,toA:e})=>ethis.minWidthTo)?(this.minWidthFrom=t.changes.mapPos(this.minWidthFrom,1),this.minWidthTo=t.changes.mapPos(this.minWidthTo,1)):this.minWidth=this.minWidthFrom=this.minWidthTo=0),this.updateEditContextFormatting(t);let g=-1;this.view.inputState.composing>=0&&!this.view.observer.editContext&&((null==(e=this.domChanged)?void 0:e.newSel)?g=this.domChanged.newSel.head:(i=t.changes,s=this.hasComposition,d=!1,s&&i.iterChangedRanges((t,e)=>{ts.from&&(d=!0)}),d||t.selectionSet||(g=t.state.selection.main.head)));let m=g>-1?function(t,e,i){let s=tX(t,i);if(!s)return null;let{node:n,from:o,to:r}=s,l=n.nodeValue;if(/[\n\r]/.test(l)||t.state.doc.sliceString(s.from,s.to)!=l)return null;let h=e.invertedDesc;return{range:new ChangedRange(h.mapPos(o),h.mapPos(r),o,r),text:n}}(this.view,t.changes,g):null;if(this.domChanged=null,this.hasComposition){let{from:e,to:i}=this.hasComposition;p=new ChangedRange(e,i,t.changes.mapPos(e,-1),t.changes.mapPos(i,1)).addToSet(p.slice())}this.hasComposition=m?{from:m.range.fromB,to:m.range.toB}:null,(O.ie||O.chrome)&&!m&&t&&t.state.doc.lines!=t.startState.doc.lines&&(this.forceSelection=!0);let w=this.decorations,v=this.blockWrappers;this.updateDeco();let b=(n=w,o=this.decorations,r=t.changes,u=new tJ,l.om.compare(n,o,r,u),u.changes);b.length&&(p=ChangedRange.extendWithRanges(p,b));let y=(h=v,a=this.blockWrappers,c=t.changes,f=new WrapperComparator,l.om.compare(h,a,c,f),f.changes);return y.length&&(p=ChangedRange.extendWithRanges(p,y)),m&&!p.some(t=>t.fromA<=m.range.fromA&&t.toA>=m.range.toA)&&(p=m.range.addToSet(p.slice())),(!(2&this.tile.flags)||0!=p.length)&&(this.updateInner(p,m),t.transactions.length&&(this.lastUpdate=Date.now()),!0)}updateInner(t,e){this.view.viewState.mustMeasureContent=!0;let{observer:i}=this.view;i.ignore(()=>{if(e||t.length){let i=this.tile,s=new TileUpdate(this.view,i,this.blockWrappers,this.decorations,this.dynamicDecorationMap);this.tile=s.run(t,e),tU(i,s.cache.reused)}this.tile.dom.style.height=this.view.viewState.contentHeight/this.view.scaleY+"px",this.tile.dom.style.flexBasis=this.minWidth?this.minWidth+"px":"";let s=O.chrome||O.ios?{node:i.selectionRange.focusNode,written:!1}:void 0;this.tile.sync(s),s&&(s.written||i.selectionRange.focusNode!=s.node||!this.tile.dom.contains(s.node))&&(this.forceSelection=!0),this.tile.dom.style.height=""});let s=[];if(this.view.viewport.from||this.view.viewport.to-1)&&I(s,this.view.observer.selectionRange)&&!(n&&s.contains(n));if(!(o||e||r))return;let l=this.forceSelection;this.forceSelection=!1;let h=this.view.state.selection.main,a,c;if(h.empty?c=a=this.inlineDOMNearPos(h.anchor,h.assoc||1):(c=this.inlineDOMNearPos(h.head,h.head==h.from?1:-1),a=this.inlineDOMNearPos(h.anchor,h.anchor==h.from?1:-1)),O.gecko&&h.empty&&!this.hasComposition&&1==(i=a).node.nodeType&&i.node.firstChild&&(0==i.offset||"false"==i.node.childNodes[i.offset-1].contentEditable)&&(i.offset==i.node.childNodes.length||"false"==i.node.childNodes[i.offset].contentEditable)){let t=document.createTextNode("");this.view.observer.ignore(()=>a.node.insertBefore(t,a.node.childNodes[a.offset]||null)),a=c=new DOMPos(t,0),l=!0}let d=this.view.observer.selectionRange;!l&&d.focusNode&&(F(a.node,a.offset,d.anchorNode,d.anchorOffset)&&F(c.node,c.offset,d.focusNode,d.focusOffset)||this.suppressWidgetCursorChange(d,h))||(this.view.observer.ignore(()=>{O.android&&O.chrome&&s.contains(d.focusNode)&&function(t,e){for(let i=t;i&&i!=e;i=i.assignedSlot||i.parentNode)if(1==i.nodeType&&"false"==i.contentEditable)return!0;return!1}(d.focusNode,s)&&(s.blur(),s.focus({preventScroll:!0}));let t=V(this.view.root);if(t)if(h.empty){if(O.gecko){var e,i;let t=(e=a.node,i=a.offset,1!=e.nodeType?0:(i&&"false"==e.childNodes[i-1].contentEditable?1:0)|2*(ih.head&&([a,c]=[c,a]),e.setEnd(c.node,c.offset),e.setStart(a.node,a.offset),t.removeAllRanges(),t.addRange(e)}r&&this.view.root.activeElement==s&&(s.blur(),n&&n.focus())}),this.view.observer.setSelectionRange(a,c)),this.impreciseAnchor=a.precise?null:new DOMPos(d.anchorNode,d.anchorOffset),this.impreciseHead=c.precise?null:new DOMPos(d.focusNode,d.focusOffset)}suppressWidgetCursorChange(t,e){return this.hasComposition&&e.empty&&F(t.focusNode,t.focusOffset,t.anchorNode,t.anchorOffset)&&this.posFromDOM(t.focusNode,t.focusOffset)==e.head}enforceCursorAssoc(){if(this.hasComposition)return;let{view:t}=this,e=t.state.selection.main,i=V(t.root),{anchorNode:s,anchorOffset:n}=t.observer.selectionRange;if(!i||!e.empty||!e.assoc||!i.modify)return;let o=this.lineAt(e.head,e.assoc);if(!o)return;let r=o.posAtStart;if(e.head==r||e.head==r+o.length)return;let l=this.coordsAt(e.head,-1),h=this.coordsAt(e.head,1);if(!l||!h||l.bottom>h.top)return;let a=this.domAtPos(e.head+e.assoc,e.assoc);i.collapse(a.node,a.offset),i.modify("move",e.assoc<0?"forward":"backward","lineboundary"),t.observer.readSelectionRange();let c=t.observer.selectionRange;t.docView.posFromDOM(c.anchorNode,c.anchorOffset)!=e.from&&i.collapse(s,n)}posFromDOM(t,e){let i=this.tile.nearest(t);if(!i)return 2&this.tile.dom.compareDocumentPosition(t)?0:this.view.state.doc.length;let s=i.posAtStart;if(i.isComposite()){let n;if(t==i.dom)n=i.dom.childNodes[e];else{let s=0==G(t)?0:0==e?-1:1;for(;;){let e=t.parentNode;if(e==i.dom)break;0==s&&e.firstChild!=e.lastChild&&(s=t==e.firstChild?-1:1),t=e}n=s<0?t:t.nextSibling}if(n==i.dom.firstChild)return s;for(;n&&!Tile.get(n);)n=n.nextSibling;if(!n)return s+i.length;for(let t=0,e=s;;t++){let s=i.children[t];if(s.dom==n)return e;e+=s.length+s.breakAfter}}else if(i.isText())return t==i.dom?s+e:s+(e?i.length:0);else return s}domAtPos(t,e){let{tile:i,offset:s}=this.tile.resolveBlock(t,e);return i.isWidget()?i.domPosFor(t,e):i.domIn(s,e)}inlineDOMNearPos(t,e){let i,s=-1,n=!1,o,r=-1,l=!1;return(this.tile.blockTiles((e,h)=>{if(e.isWidget()){if(32&e.flags&&h>=t)return!0;16&e.flags&&(n=!0)}else{let a=h+e.length;if(h<=t&&(i=e,s=t-h,n=a=t&&!o&&(o=e,r=t-h,l=h>t),h>t&&o)return!0}}),i||o)?(n&&o?i=null:l&&i&&(o=null),i&&e<0||!o?i.domIn(s,e):o.domIn(r,e)):this.domAtPos(t,e)}coordsAt(t,e){let{tile:i,offset:s}=this.tile.resolveBlock(t,e);return i.isWidget()?i.widget instanceof BlockGapWidget?null:i.coordsInWidget(s,e,!0):i.coordsIn(s,e)}lineAt(t,e){let{tile:i}=this.tile.resolveBlock(t,e);return i.isLine()?i:null}coordsForChar(t){let{tile:e,offset:i}=this.tile.resolveBlock(t,1);return e.isLine()?function t(e,i){if(e.isComposite())for(let s of e.children){if(s.length>=i){let e=t(s,i);if(e)return e}if((i-=s.length)<0)break}else if(e.isText()&&iMath.max(this.view.scrollDOM.clientWidth,this.minWidth)+1,r=-1,l=this.view.textDirection==tt.LTR,h=0,a=(t,c,d)=>{for(let u=0;us);u++){let s=t.children[u],f=c+s.length,p=s.dom.getBoundingClientRect(),{height:g}=p;if(d&&!u&&(h+=p.top-d.top),s instanceof BlockWrapperTile)f>i&&a(s,c,p);else if(c>=i&&(h>0&&e.push(-h),e.push(g+h),h=0,o)){let t=s.dom.lastChild,e=t?N(t):[];if(e.length){let t=e[e.length-1],i=l?t.right-p.left:p.right-t.left;i>r&&(r=i,this.minWidth=n,this.minWidthFrom=c,this.minWidthTo=f)}}d&&u==t.children.length-1&&(h+=d.bottom-p.bottom),c=f+s.breakAfter}};return a(this.tile,0,null),e}textDirectionAt(t){let{tile:e}=this.tile.resolveBlock(t,1);return"rtl"==getComputedStyle(e.dom).direction?tt.RTL:tt.LTR}measureTextSize(){let t=this.tile.blockTiles(t=>{if(t.isLine()&&t.children.length&&t.length<=20){let e=0,i;for(let s of t.children){if(!s.isText()||/[^ -~]/.test(s.text))return;let t=N(s.dom);if(1!=t.length)return;e+=t[0].width,i=t[0].height}if(e)return{lineHeight:t.dom.getBoundingClientRect().height,charWidth:e/t.length,textHeight:i}}});if(t)return t;let e=document.createElement("div"),i,s,n;return e.className="cm-line",e.style.width="99999px",e.style.position="absolute",e.textContent="abc def ghi jkl mno pqr stu",this.view.observer.ignore(()=>{this.tile.dom.appendChild(e);let t=N(e.firstChild)[0];i=e.getBoundingClientRect().height,s=t&&t.width?t.width/27:7,n=t&&t.height?t.height:i,e.remove()}),{lineHeight:i,charWidth:s,textHeight:n}}computeBlockGapDeco(){let t=[],e=this.view.viewState;for(let i=0,s=0;;s++){let n=s==e.viewports.length?null:e.viewports[s],o=n?n.from-1:this.view.state.doc.length;if(o>i){let s=(e.lineBlockAt(o).bottom-e.lineBlockAt(i).top)/this.view.scaleY;t.push(Decoration.replace({widget:new BlockGapWidget(s),block:!0,inclusive:!0,isBlockGap:!0}).range(i,o))}if(!n)break;i=n.to+1}return Decoration.set(t)}updateDeco(){let t=1,e=this.view.state.facet(tL).map(e=>(this.dynamicDecorationMap[t++]="function"==typeof e)?e(this.view):e),i=!1,s=this.view.state.facet(tH).map((t,e)=>{let s="function"==typeof t;return s&&(i=!0),s?t(this.view):t});for(s.length&&(this.dynamicDecorationMap[t++]=i,e.push(l.om.join(s))),this.decorations=[this.editContextFormatting,...e,this.computeBlockGapDeco(),this.view.viewState.lineGapDeco];t"function"==typeof t?t(this.view):t)}scrollIntoView(t){if(t.isSnapshot){let e=this.view.viewState.lineBlockAt(t.range.head);this.view.scrollDOM.scrollTop=e.top-t.yMargin,this.view.scrollDOM.scrollLeft=t.xMargin;return}for(let e of this.view.state.facet(tM))try{if(e(this.view,t.range,t))return!0}catch(t){tA(this.view.state,t,"scroll handler")}let{range:e}=t,i=this.coordsAt(e.head,e.empty?e.assoc:e.head>e.anchor?-1:1),s;if(!i)return;!e.empty&&(s=this.coordsAt(e.anchor,e.anchor>e.head?-1:1))&&(i={left:Math.min(i.left,s.left),top:Math.min(i.top,s.top),right:Math.max(i.right,s.right),bottom:Math.max(i.bottom,s.bottom)});let n=tF(this.view),o={left:i.left-n.left,top:i.top-n.top,right:i.right+n.right,bottom:i.bottom+n.bottom},{offsetWidth:r,offsetHeight:l}=this.view.scrollDOM;!function(t,e,i,s,n,o,r,l){let h=t.ownerDocument,a=h.defaultView||window;for(let c=t,d=!1;c&&!d;)if(1==c.nodeType){let t,u=c==h.body,f=1,p=1;if(u)t=function(t){let e=t.visualViewport;return e?{left:0,right:e.width,top:0,bottom:e.height}:{left:0,right:t.innerWidth,top:0,bottom:t.innerHeight}}(a);else{if(/^(fixed|sticky)$/.test(getComputedStyle(c).position)&&(d=!0),c.scrollHeight<=c.clientHeight&&c.scrollWidth<=c.clientWidth){c=c.assignedSlot||c.parentNode;continue}let e=c.getBoundingClientRect();({scaleX:f,scaleY:p}=_(c,e)),t={left:e.left,right:e.left+c.clientWidth*f,top:e.top,bottom:e.top+c.clientHeight*p}}let g=0,m=0;if("nearest"==n)e.top0&&e.bottom>t.bottom+m&&(m=e.bottom-t.bottom+r)):e.bottom>t.bottom&&(m=e.bottom-t.bottom+r,i<0&&e.top-m0&&e.right>t.right+g&&(g=e.right-t.right+o)):e.right>t.right&&(g=e.right-t.right+o,i<0&&e.leftMath.abs(t-g)&&(s="nearest"),i&&1>Math.abs(i-m)&&(n="nearest")}if(u)break;(e.topt.bottom||e.leftt.right)&&(e={left:Math.max(e.left,t.left),right:Math.min(e.right,t.right),top:Math.max(e.top,t.top),bottom:Math.min(e.bottom,t.bottom)}),c=c.assignedSlot||c.parentNode}else if(11==c.nodeType)c=c.host;else break}(this.view.scrollDOM,o,e.headt.isWidget()||t.children.some(e);return e(this.tile.resolveBlock(t,1).tile)}destroy(){tU(this.tile)}};function tU(t,e){let i=null==e?void 0:e.get(t);if(1!=i)for(let s of(null==i&&t.destroy(),t.children))tU(s,e)}function tX(t,e){let i=t.observer.selectionRange;if(!i.focusNode)return null;let s=Q(i.focusNode,i.focusOffset),n=Z(i.focusNode,i.focusOffset),o=s||n;if(n&&s&&n.node!=s.node){let e=Tile.get(n.node);if(!e||e.isText()&&e.text!=n.node.nodeValue)o=n;else if(t.docView.lastCompositionAfterCursor){let t=Tile.get(s.node);!t||t.isText()&&t.text!=s.node.nodeValue||(o=n)}}if(t.docView.lastCompositionAfterCursor=o!=s,!o)return null;let r=e-o.offset;return{from:r,to:r+o.node.nodeValue.length,node:o.node}}let tJ=class DecorationComparator{constructor(){this.changes=[]}compareRange(t,e){H(t,e,this.changes)}comparePoint(t,e){H(t,e,this.changes)}boundChange(t){H(t,t,this.changes)}};let WrapperComparator=class WrapperComparator{constructor(){this.changes=[]}compareRange(t,e){H(t,e,this.changes)}comparePoint(){}boundChange(t){H(t,t,this.changes)}};let BlockGapWidget=class BlockGapWidget extends WidgetType{constructor(t){super(),this.height=t}toDOM(){let t=document.createElement("div");return t.className="cm-gap",this.updateDOM(t),t}eq(t){return t.height==this.height}updateDOM(t){return t.style.height=this.height+"px",!0}get editable(){return!0}get estimatedHeight(){return this.height}ignoreEvent(){return!1}};function tQ(t,e,i){let s=t.lineBlockAt(e);if(Array.isArray(s.type)){let t;for(let n of s.type){if(n.from>e)break;if(!(n.toe)return n;(!t||n.type==L.Text&&(t.type!=n.type||(i<0?n.frome)))&&(t=n)}}return t||s}return s}function tZ(t,e,i,s){let n=t.state.doc.lineAt(e.head),o=t.bidiSpans(n),r=t.textDirectionAt(n.from);for(let h=e,a=null;;){let e=function(t,e,i,s,n){var o;let r=s.head-t.from,h=BidiSpan.find(e,r,null!=(o=s.bidiLevel)?o:-1,s.assoc),a=e[h],c=a.side(n,i);if(r==c){let t=h+=n?1:-1;if(t<0||t>=e.length)return null;r=(a=e[h=t]).side(!n,i),c=a.side(n,i)}let d=(0,l.zK)(t.text,r,a.forward(n,i));(da.to)&&(d=c),tu=t.text.slice(Math.min(r,d),Math.max(r,d));let u=h==(n?e.length-1:0)?null:e[h+(n?1:-1)];return u&&d==c&&u.level+ +!n{if(e>t&&ee(t)),i.from,e.head>i.from?-1:1);return s==i.from?i:l.OF.cursor(s,st.viewState.docHeight)return new PosAssoc(t.state.doc.length,-1);if(c=t.elementAtHeight(a),null==s)break;if(c.type==L.Text){let e=t.docView.coordsAt(s<0?c.from:c.to,s);if(e&&(s<0?e.top<=a+o:e.bottom>=a+o))break}let e=t.viewState.heightOracle.textHeight/2;a=s>0?c.bottom+e:c.top-e}if(t.viewport.from>=c.to||t.viewport.to<=c.from){if(i)return null;if(c.type==L.Text){let e=function(t,e,i,s,n){let o=Math.round((s-e.left)*t.defaultCharacterWidth);if(t.lineWrapping&&i.height>1.5*t.defaultLineHeight){let e=t.viewState.heightOracle.textHeight;o+=Math.floor((n-i.top-(t.defaultLineHeight-e)*.5)/e)*t.viewState.heightOracle.lineLength}let r=t.state.sliceDoc(i.from,i.to);return i.from+(0,l.kn)(r,o,t.state.tabSize)}(t,n,c,r,h);return new PosAssoc(e,e==c.from?1:-1)}}if(c.type!=L.Text)return a<(c.top+c.bottom)/2?new PosAssoc(c.from,1):new PosAssoc(c.to,-1);let d=t.docView.lineAt(c.from,2);return d&&d.length==c.length||(d=t.docView.lineAt(c.from,-2)),function t(e,i,s,n,o){let r=-1,h=null,a=1e9,c=1e9,d=o,u=o,f=(t,e)=>{for(let i=0;in?s.left-n:s.righto?s.top-o:s.bottom=d&&(d=Math.min(s.top,d),u=Math.max(s.bottom,u),f=0),(r<0||0>(f-c||l-a))&&(r>=0&&c&&a=d+2?c=0:(r=e,a=l,c=f,h=s))}};if(i.isText()){for(let t=0;t(h.left+h.right)/2==(t3(e,r+s)==tt.LTR)?new PosAssoc(s+(0,l.zK)(i.text,r),-1):new PosAssoc(s+r,1)}{if(!i.length)return new PosAssoc(s,1);for(let t=0;t(h.left+h.right)/2==(t3(e,r+s)==tt.LTR)?new PosAssoc(d+l.length,-1):new PosAssoc(d,1)}}(t,d,c.from,r,h)}function t3(t,e){let i=t.state.doc.lineAt(e);return t.bidiSpans(i)[BidiSpan.find(t.bidiSpans(i),e-i.from,-1,1)].dir}let DOMReader=class DOMReader{constructor(t,e){this.points=t,this.view=e,this.text="",this.lineSeparator=e.state.facet(l.$t.lineSeparator)}append(t){this.text+=t}lineBreak(){this.text+="\uFFFF"}readRange(t,e){if(!t)return this;let i=t.parentNode;for(let s=t;;){this.findPointBefore(i,s);let t=this.text.length;this.readNode(s);let n=Tile.get(s),o=s.nextSibling;if(o==e){(null==n?void 0:n.breakAfter)&&!o&&i!=this.view.contentDOM&&this.lineBreak();break}let r=Tile.get(o);(n&&r?n.breakAfter:(n?n.breakAfter:q(s))||q(o)&&("BR"!=s.nodeName||(null==n?void 0:n.isWidget()))&&this.text.length>t)&&!function(t,e){let i;for(;t!=e&&t;t=t.nextSibling){let e=Tile.get(t);if(!(null==e?void 0:e.isWidget()))return!1;e&&(i||(i=[])).push(e)}if(i)for(let t of i){let e=t.overrideDOMText;if(null==e?void 0:e.length)return!1}return!0}(o,e)&&this.lineBreak(),s=o}return this.findPointBefore(i,e),this}readTextNode(t){let e=t.nodeValue;for(let i of this.points)i.node==t&&(i.pos=this.text.length+Math.min(i.offset,e.length));for(let i=0,s=this.lineSeparator?null:/\r\n?|\n/g;;){let n=-1,o=1,r;if(this.lineSeparator?(n=e.indexOf(this.lineSeparator,i),o=this.lineSeparator.length):(r=s.exec(e))&&(n=r.index,o=r[0].length),this.append(e.slice(i,n<0?e.length:n)),n<0)break;if(this.lineBreak(),o>1)for(let e of this.points)e.node==t&&e.pos>this.text.length&&(e.pos-=o-1);i=n+o}}readNode(t){let e=Tile.get(t),i=e&&e.overrideDOMText;if(null!=i){this.findPointInside(t,i.length);for(let t=i.iter();!t.next().done;)t.lineBreak?this.lineBreak():this.append(t.value)}else 3==t.nodeType?this.readTextNode(t):"BR"==t.nodeName?t.nextSibling&&this.lineBreak():1==t.nodeType&&this.readRange(t.firstChild,null)}findPointBefore(t,e){for(let i of this.points)i.node==t&&t.childNodes[i.offset]==e&&(i.pos=this.text.length)}findPointInside(t,e){for(let i of this.points)(3==t.nodeType?i.node==t:t.contains(i.node))&&(i.pos=this.text.length+(!function(t,e,i){for(;;){if(!e||i-1;let{impreciseHead:n,impreciseAnchor:o}=t.docView;if(t.state.readOnly&&e>-1)this.newSel=null;else if(e>-1&&(this.bounds=function t(e,i,s,n){if(e.isComposite()){let o=-1,r=-1,l=-1,h=-1;for(let a=0,c=n,d=n;as)return t(n,i,s,c);if(u>=i&&-1==o&&(o=a,r=c),c>s&&n.dom.parentNode==e.dom){l=a,h=d;break}d=u,c=u+n.breakAfter}return{from:r,to:h<0?n+e.length:h,startDOM:(o?e.children[o-1].dom.nextSibling:null)||e.dom.firstChild,endDOM:l=0?e.children[l].dom:null}}return e.isText()?{from:n,to:n+e.length,startDOM:e.dom,endDOM:e.dom.nextSibling}:null}(t.docView.tile,e,i,0))){let e=n||o?[]:function(t){let e=[];if(t.root.activeElement!=t.contentDOM)return e;let{anchorNode:i,anchorOffset:s,focusNode:n,focusOffset:o}=t.observer.selectionRange;return i&&(e.push(new DOMPoint(i,s)),(n!=i||o!=s)&&e.push(new DOMPoint(n,o))),e}(t),i=new DOMReader(e,t);i.readRange(this.bounds.startDOM,this.bounds.endDOM),this.text=i.text,this.newSel=function(t,e){if(0==t.length)return null;let i=t[0].pos,s=2==t.length?t[1].pos:i;return i>-1&&s>-1?l.OF.single(i+e,s+e):null}(e,this.bounds.from)}else{let e=t.observer.selectionRange,i=n&&n.node==e.focusNode&&n.offset==e.focusOffset||!W(t.contentDOM,e.focusNode)?t.state.selection.main.head:t.docView.posFromDOM(e.focusNode,e.focusOffset),s=o&&o.node==e.anchorNode&&o.offset==e.anchorOffset||!W(t.contentDOM,e.anchorNode)?t.state.selection.main.anchor:t.docView.posFromDOM(e.anchorNode,e.anchorOffset),r=t.viewport;if((O.ios||O.chrome)&&t.state.selection.main.empty&&i!=s&&(r.from>0||r.to-1&&t.state.selection.ranges.length>1?this.newSel=t.state.selection.replaceRange(l.OF.range(s,i)):this.newSel=l.OF.single(s,i)}}};function t4(t,e){let i,{newSel:s}=e,n=t.state.selection.main,o=t.inputState.lastKeyTime>Date.now()-100?t.inputState.lastKeyCode:-1;if(e.bounds){let{from:s,to:r}=e.bounds,h=n.from,a=null;(8===o||O.android&&e.text.length=n.from&&i.to<=n.to&&(i.from!=n.from||i.to!=n.to)&&n.to-n.from-(i.to-i.from)<=4?i={from:n.from,to:n.to,insert:t.state.doc.slice(n.from,i.from).append(i.insert).append(t.state.doc.slice(i.to,n.to))}:t.state.doc.lineAt(n.from).toDate.now()-50?i={from:n.from,to:n.to,insert:t.state.toText(t.inputState.insertingText)}:O.chrome&&i&&i.from==i.to&&i.from==n.head&&` + `==i.insert.toString()&&t.lineWrapping&&(s&&(s=l.OF.single(s.main.anchor-1,s.main.head-1)),i={from:n.from,to:n.to,insert:l.EY.of([" "])}),i)return t5(t,i,s,o);if(!s||s.main.eq(n))return!1;{let e=!1,i="select";return t.inputState.lastSelectionTime>Date.now()-50&&("select"==t.inputState.lastSelectionOrigin&&(e=!0),"select.pointer"==(i=t.inputState.lastSelectionOrigin)&&(s=t1(t.state.facet(tV).map(e=>e(t)),s))),t.dispatch({selection:s,scrollIntoView:e,userEvent:i}),!0}}function t5(t,e,i,s=-1){let n;if(O.ios&&t.inputState.flushIOSKey(e))return!0;let o=t.state.selection.main;if(O.android&&(e.to==o.to&&(e.from==o.from||e.from==o.from-1&&" "==t.state.sliceDoc(e.from,o.from))&&1==e.insert.length&&2==e.insert.lines&&X(t.contentDOM,"Enter",13)||(e.from==o.from-1&&e.to==o.to&&0==e.insert.length||8==s&&e.insert.lengtho.head)&&X(t.contentDOM,"Backspace",8)||e.from==o.from&&e.to==o.to+1&&0==e.insert.length&&X(t.contentDOM,"Delete",46)))return!0;let r=e.insert.toString();t.inputState.composing>=0&&t.inputState.composing++;let h=()=>n||(n=function(t,e,i){let s,n=t.state,o=n.selection.main,r=-1;if(e.from==e.to&&e.fromo.to){let i=e.frome(t)),s,i);e.from==l&&(r=l)}if(r>-1)s={changes:e,selection:l.OF.cursor(e.from+e.insert.length,-1)};else if(e.from>=o.from&&e.to<=o.to&&e.to-e.from>=(o.to-o.from)/3&&(!i||i.main.empty&&i.main.from==e.from+e.insert.length)&&t.inputState.composing<0){let i=o.frome.to?n.sliceDoc(e.to,o.to):"";s=n.replaceSelection(t.state.toText(i+e.insert.sliceString(0,void 0,t.state.lineBreak)+r))}else{let r=n.changes(e),h=i&&i.main.to<=r.newLength?i.main:void 0;if(n.selection.ranges.length>1&&(t.inputState.composing>=0||t.inputState.compositionPendingChange)&&e.to<=o.to+10&&e.to>=o.to-10){let a=t.state.sliceDoc(e.from,e.to),c,d=i&&tX(t,i.main.head);if(d){let t=e.insert.length-(e.to-e.from);c={from:d.from,to:d.to-t}}else c=t.state.doc.lineAt(o.head);let u=o.to-e.to;s=n.changeByRange(i=>{if(i.from==o.from&&i.to==o.to)return{changes:r,range:h||i.map(r)};let s=i.to-u,d=s-a.length;if(t.state.sliceDoc(d,s)!=a||s>=c.from&&d<=c.to)return{range:i};let f=n.changes({from:d,to:s,insert:e.insert}),p=i.to-o.to;return{changes:f,range:h?l.OF.range(Math.max(0,h.anchor+p),Math.max(0,h.head+p)):i.map(f)}})}else s={changes:r,selection:h&&n.selection.replaceRange(h)}}let h="input.type";return(t.composing||t.inputState.compositionPendingChange&&t.inputState.compositionEndedAt>Date.now()-50)&&(t.inputState.compositionPendingChange=!1,h+=".compose",t.inputState.compositionFirstChange&&(h+=".start",t.inputState.compositionFirstChange=!1)),n.update(s,{userEvent:h,scrollIntoView:!0})}(t,e,i));return t.state.facet(tv).some(i=>i(t,e.from,e.to,r,h))||t.dispatch(h()),!0}function t9(t,e,i,s){let n=Math.min(t.length,e.length),o=0;for(;o0&&l>0&&t.charCodeAt(r-1)==e.charCodeAt(l-1);)r--,l--;if("end"==s){let t=Math.max(0,o-Math.min(r,l));i-=r+t-o}if(r=r?o-i:0;o-=t,l=o+(l-r),r=o}else if(l=l?o-i:0;o-=t,r=o+(r-l),l=o}return{from:o,toA:r,toB:l}}let InputState=class InputState{setSelectionOrigin(t){this.lastSelectionOrigin=t,this.lastSelectionTime=Date.now()}constructor(t){this.view=t,this.lastKeyCode=0,this.lastKeyTime=0,this.lastTouchTime=0,this.lastFocusTime=0,this.lastScrollTop=0,this.lastScrollLeft=0,this.pendingIOSKey=void 0,this.tabFocusMode=-1,this.lastSelectionOrigin=null,this.lastSelectionTime=0,this.lastContextMenu=0,this.scrollHandlers=[],this.handlers=Object.create(null),this.composing=-1,this.compositionFirstChange=null,this.compositionEndedAt=0,this.compositionPendingKey=!1,this.compositionPendingChange=!1,this.insertingText="",this.insertingTextAt=0,this.mouseSelection=null,this.draggedContent=null,this.handleEvent=this.handleEvent.bind(this),this.notifiedFocused=t.hasFocus,O.safari&&t.contentDOM.addEventListener("input",()=>null),O.gecko&&function(t){eb.has(t)||(eb.add(t),t.addEventListener("copy",()=>{}),t.addEventListener("cut",()=>{}))}(t.contentDOM.ownerDocument)}handleEvent(t){!function(t,e){if(!e.bubbles)return!0;if(e.defaultPrevented)return!1;for(let i=e.target,s;i!=t.contentDOM;i=i.parentNode)if(!i||11==i.nodeType||(s=Tile.get(i))&&s.isWidget()&&!s.isHidden&&s.widget.ignoreEvent(e))return!1;return!0}(this.view,t)||this.ignoreDuringComposition(t)||"keydown"==t.type&&this.keydown(t)||(0!=this.view.updateState?Promise.resolve().then(()=>this.runHandlers(t.type,t)):this.runHandlers(t.type,t))}runHandlers(t,e){let i=this.handlers[t];if(i){for(let t of i.observers)t(this.view,e);for(let t of i.handlers){if(e.defaultPrevented)break;if(t(this.view,e)){e.preventDefault();break}}}}ensureHandlers(t){let e=function(t){let e=Object.create(null);function i(t){return e[t]||(e[t]={observers:[],handlers:[]})}for(let e of t){let t=e.spec,s=t&&t.plugin.domEventHandlers,n=t&&t.plugin.domEventObservers;if(s)for(let t in s){let n=s[t];n&&i(t).handlers.push(t6(e.value,n))}if(n)for(let t in n){let s=n[t];s&&i(t).observers.push(t6(e.value,s))}}for(let t in es)i(t).handlers.push(es[t]);for(let t in en)i(t).observers.push(en[t]);return e}(t),i=this.handlers,s=this.view.contentDOM;for(let t in e)if("scroll"!=t){let n=!e[t].handlers.length,o=i[t];o&&!o.handlers.length!=n&&(s.removeEventListener(t,this.handleEvent),o=null),o||s.addEventListener(t,this.handleEvent,{passive:n})}for(let t in i)"scroll"==t||e[t]||s.removeEventListener(t,this.handleEvent);this.handlers=e}keydown(t){let e;return this.lastKeyCode=t.keyCode,this.lastKeyTime=Date.now(),!!(9==t.keyCode&&this.tabFocusMode>-1&&(!this.tabFocusMode||Date.now()<=this.tabFocusMode))||((this.tabFocusMode>0&&27!=t.keyCode&&0>ee.indexOf(t.keyCode)&&(this.tabFocusMode=-1),O.android&&O.chrome&&!t.synthetic&&(13==t.keyCode||8==t.keyCode))?(this.view.observer.delayAndroidKey(t.key,t.keyCode),!0):O.ios&&!t.synthetic&&!t.altKey&&!t.metaKey&&((e=t7.find(e=>e.keyCode==t.keyCode))&&!t.ctrlKey||et.indexOf(t.key)>-1&&t.ctrlKey&&!t.shiftKey)?(this.pendingIOSKey=e||t,setTimeout(()=>this.flushIOSKey(),250),!0):(229!=t.keyCode&&this.view.observer.forceFlush(),!1))}flushIOSKey(t){let e=this.pendingIOSKey;return!(!e||"Enter"==e.key&&t&&t.from0||!!(O.safari&&!O.ios&&this.compositionPendingKey&&Date.now()-this.compositionEndedAt<100)&&(this.compositionPendingKey=!1,!0))}startMouseSelection(t){this.mouseSelection&&this.mouseSelection.destroy(),this.mouseSelection=t}update(t){this.view.observer.update(t),this.mouseSelection&&this.mouseSelection.update(t),this.draggedContent&&t.docChanged&&(this.draggedContent=this.draggedContent.map(t.changes)),t.transactions.length&&(this.lastKeyCode=this.lastSelectionTime=0)}destroy(){this.mouseSelection&&this.mouseSelection.destroy()}};function t6(t,e){return(i,s)=>{try{return e.call(t,s,i)}catch(t){tA(i.state,t)}}}let t7=[{key:"Backspace",keyCode:8,inputType:"deleteContentBackward"},{key:"Enter",keyCode:13,inputType:"insertParagraph"},{key:"Enter",keyCode:13,inputType:"insertLineBreak"},{key:"Delete",keyCode:46,inputType:"deleteContentForward"}],et="dthko",ee=[16,17,18,20,91,92,224,225];function ei(t){return .7*Math.max(0,t)+8}let MouseSelection=class MouseSelection{constructor(t,e,i,s){this.view=t,this.startEvent=e,this.style=i,this.mustSelect=s,this.scrollSpeed={x:0,y:0},this.scrolling=-1,this.lastEvent=e,this.scrollParents=function(t){let e=t.ownerDocument,i,s;for(let n=t.parentNode;n;)if(n==e.body||i&&s)break;else if(1==n.nodeType)!s&&n.scrollHeight>n.clientHeight&&(s=n),!i&&n.scrollWidth>n.clientWidth&&(i=n),n=n.assignedSlot||n.parentNode;else if(11==n.nodeType)n=n.host;else break;return{x:i,y:s}}(t.contentDOM),this.atoms=t.state.facet(tV).map(e=>e(t));let n=t.contentDOM.ownerDocument;n.addEventListener("mousemove",this.move=this.move.bind(this)),n.addEventListener("mouseup",this.up=this.up.bind(this)),this.extend=e.shiftKey,this.multiple=t.state.facet(l.$t.allowMultipleSelections)&&function(t,e){let i=t.state.facet(tf);return i.length?i[0](e):O.mac?e.metaKey:e.ctrlKey}(t,e),this.dragging=!!function(t,e){let{main:i}=t.state.selection;if(i.empty)return!1;let s=V(t.root);if(!s||0==s.rangeCount)return!0;let n=s.getRangeAt(0).getClientRects();for(let t=0;t=e.clientX&&i.top<=e.clientY&&i.bottom>=e.clientY)return!0}return!1}(t,e)&&1==ef(e)&&null}start(t){!1===this.dragging&&this.select(t)}move(t){var e;if(0==t.buttons)return this.destroy();if(this.dragging||null==this.dragging&&10>(e=this.startEvent,Math.max(Math.abs(e.clientX-t.clientX),Math.abs(e.clientY-t.clientY))))return;this.select(this.lastEvent=t);let i=0,s=0,n=0,o=0,r=this.view.win.innerWidth,l=this.view.win.innerHeight;this.scrollParents.x&&({left:n,right:r}=this.scrollParents.x.getBoundingClientRect()),this.scrollParents.y&&({top:o,bottom:l}=this.scrollParents.y.getBoundingClientRect());let h=tF(this.view);t.clientX-h.left<=n+6?i=-ei(n-t.clientX):t.clientX+h.right>=r-6&&(i=ei(t.clientX-r)),t.clientY-h.top<=o+6?s=-ei(o-t.clientY):t.clientY+h.bottom>=l-6&&(s=ei(t.clientY-l)),this.setScrollSpeed(i,s)}up(t){null==this.dragging&&this.select(this.lastEvent),this.dragging||t.preventDefault(),this.destroy()}destroy(){this.setScrollSpeed(0,0);let t=this.view.contentDOM.ownerDocument;t.removeEventListener("mousemove",this.move),t.removeEventListener("mouseup",this.up),this.view.inputState.mouseSelection=this.view.inputState.draggedContent=null}setScrollSpeed(t,e){this.scrollSpeed={x:t,y:e},t||e?this.scrolling<0&&(this.scrolling=setInterval(()=>this.scroll(),50)):this.scrolling>-1&&(clearInterval(this.scrolling),this.scrolling=-1)}scroll(){let{x:t,y:e}=this.scrollSpeed;t&&this.scrollParents.x&&(this.scrollParents.x.scrollLeft+=t,t=0),e&&this.scrollParents.y&&(this.scrollParents.y.scrollTop+=e,e=0),(t||e)&&this.view.win.scrollBy(t,e),!1===this.dragging&&this.select(this.lastEvent)}select(t){let{view:e}=this,i=t1(this.atoms,this.style.get(t,this.extend,this.multiple));(this.mustSelect||!i.eq(e.state.selection,!1===this.dragging))&&this.view.dispatch({selection:i,userEvent:"select.pointer"}),this.mustSelect=!1}update(t){t.transactions.some(t=>t.isUserEvent("input.type"))?this.destroy():this.style.update(t)&&setTimeout(()=>this.select(this.lastEvent),20)}};let es=Object.create(null),en=Object.create(null),eo=O.ie&&O.ie_version<15||O.ios&&O.webkit_version<604;function er(t,e,i){for(let s of t.facet(e))i=s(i,t);return i}function el(t,e){e=er(t.state,ty,e);let{state:i}=t,s,n=1,o=i.toText(e),r=o.lines==i.selection.ranges.length;if(null!=eg&&i.selection.ranges.every(t=>t.empty)&&eg==o.toString()){let t=-1;s=i.changeByRange(s=>{let h=i.doc.lineAt(s.from);if(h.from==t)return{range:s};t=h.from;let a=i.toText((r?o.line(n++).text:e)+i.lineBreak);return{changes:{from:h.from,insert:a},range:l.OF.cursor(s.from+a.length)}})}else s=r?i.changeByRange(t=>{let e=o.line(n++);return{changes:{from:t.from,to:t.to,insert:e.text},range:l.OF.cursor(t.from+e.length)}}):i.replaceSelection(o);t.dispatch(s,{userEvent:"input.paste",scrollIntoView:!0})}function eh(t,e,i,s){if(1==s)return l.OF.cursor(e,i);{if(2==s)return function(t,e,i=1){let s=t.charCategorizer(e),n=t.doc.lineAt(e),o=e-n.from;if(0==n.length)return l.OF.cursor(e);0==o?i=1:o==n.length&&(i=-1);let r=o,h=o;i<0?r=(0,l.zK)(n.text,o,!1):h=(0,l.zK)(n.text,o);let a=s(n.text.slice(r,h));for(;r>0;){let t=(0,l.zK)(n.text,r,!1);if(s(n.text.slice(t,r))!=a)break;r=t}for(;h{t.inputState.lastScrollTop=t.scrollDOM.scrollTop,t.inputState.lastScrollLeft=t.scrollDOM.scrollLeft},es.keydown=(t,e)=>(t.inputState.setSelectionOrigin("select"),27==e.keyCode&&0!=t.inputState.tabFocusMode&&(t.inputState.tabFocusMode=Date.now()+2e3),!1),en.touchstart=(t,e)=>{t.inputState.lastTouchTime=Date.now(),t.inputState.setSelectionOrigin("select.pointer")},en.touchmove=t=>{t.inputState.setSelectionOrigin("select.pointer")},es.mousedown=(t,e)=>{var i,s;let n,o,r;if(t.observer.flush(),t.inputState.lastTouchTime>Date.now()-2e3)return!1;let h=null;for(let i of t.state.facet(tg))if(h=i(t,e))break;if(h||0!=e.button||(i=t,s=e,n=i.posAndSideAtCoords({x:s.clientX,y:s.clientY},!1),o=ef(s),r=i.state.selection,h={update(t){t.docChanged&&(n.pos=t.changes.mapPos(n.pos),r=r.map(t.changes))},get(t,e,s){let h=i.posAndSideAtCoords({x:t.clientX,y:t.clientY},!1),a,c=eh(i,h.pos,h.assoc,o);if(n.pos!=h.pos&&!e){let t=eh(i,n.pos,n.assoc,o),e=Math.min(t.from,c.from),s=Math.max(t.to,c.to);c=e1&&(a=function(t,e){for(let i=0;i=e)return l.OF.create(t.ranges.slice(0,i).concat(t.ranges.slice(i+1)),t.mainIndex==i?0:t.mainIndex-(t.mainIndex>i))}return null}(r,h.pos))?a:s?r.addRange(c):l.OF.create([c])}}),h){let i=!t.hasFocus;t.inputState.startMouseSelection(new MouseSelection(t,e,h,i)),i&&t.observer.ignore(()=>{$(t.contentDOM);let e=t.root.activeElement;e&&!e.contains(t.contentDOM)&&e.blur()});let s=t.inputState.mouseSelection;if(s)return s.start(e),!1===s.dragging}else t.inputState.setSelectionOrigin("select.pointer");return!1};let ea=O.ie&&O.ie_version<=11,ec=null,ed=0,eu=0;function ef(t){if(!ea)return t.detail;let e=ec,i=eu;return ec=t,eu=Date.now(),ed=!e||i>Date.now()-400&&2>Math.abs(e.clientX-t.clientX)&&2>Math.abs(e.clientY-t.clientY)?(ed+1)%3:1}function ep(t,e,i,s){let n;if(!(i=er(t.state,ty,i)))return;let o=t.posAtCoords({x:e.clientX,y:e.clientY},!1),{draggedContent:r}=t.inputState,l=s&&r&&((n=t.state.facet(tp)).length?n[0](e):O.mac?!e.altKey:!e.ctrlKey)?{from:r.from,to:r.to}:null,h={from:o,insert:i},a=t.state.changes(l?[l,h]:h);t.focus(),t.dispatch({changes:a,selection:{anchor:a.mapPos(o,-1),head:a.mapPos(o,1)},userEvent:l?"move.drop":"input.drop"}),t.inputState.draggedContent=null}es.dragstart=(t,e)=>{let{selection:{main:i}}=t.state;if(e.target.draggable){let s=t.docView.tile.nearest(e.target);if(s&&s.isWidget()){let t=s.posAtStart,e=t+s.length;(t>=i.to||e<=i.from)&&(i=l.OF.range(t,e))}}let{inputState:s}=t;return s.mouseSelection&&(s.mouseSelection.dragging=!0),s.draggedContent=i,e.dataTransfer&&(e.dataTransfer.setData("Text",er(t.state,tx,t.state.sliceDoc(i.from,i.to))),e.dataTransfer.effectAllowed="copyMove"),!1},es.dragend=t=>(t.inputState.draggedContent=null,!1),es.drop=(t,e)=>{if(!e.dataTransfer)return!1;if(t.state.readOnly)return!0;let i=e.dataTransfer.files;if(i&&i.length){let s=Array(i.length),n=0,o=()=>{++n==i.length&&ep(t,e,s.filter(t=>null!=t).join(t.state.lineBreak),!1)};for(let t=0;t{/[\x00-\x08\x0e-\x1f]{2}/.test(e.result)||(s[t]=e.result),o()},e.readAsText(i[t])}return!0}{let i=e.dataTransfer.getData("Text");if(i)return ep(t,e,i,!0),!0}return!1},es.paste=(t,e)=>{if(t.state.readOnly)return!0;t.observer.flush();let i=eo?null:e.clipboardData;return i?(el(t,i.getData("text/plain")||i.getData("text/uri-list")),!0):(!function(t){let e=t.dom.parentNode;if(!e)return;let i=e.appendChild(document.createElement("textarea"));i.style.cssText="position: fixed; left: -10000px; top: 10px",i.focus(),setTimeout(()=>{t.focus(),i.remove(),el(t,i.value)},50)}(t),!1)};let eg=null;es.copy=es.cut=(t,e)=>{let{text:i,ranges:s,linewise:n}=function(t){let e=[],i=[],s=!1;for(let s of t.selection.ranges)s.empty||(e.push(t.sliceDoc(s.from,s.to)),i.push(s));if(!e.length){let n=-1;for(let{from:s}of t.selection.ranges){let o=t.doc.lineAt(s);o.number>n&&(e.push(o.text),i.push({from:o.from,to:Math.min(t.doc.length,o.to+1)})),n=o.number}s=!0}return{text:er(t,tx,e.join(t.lineBreak)),ranges:i,linewise:s}}(t.state);if(!i&&!n)return!1;eg=n?i:null,"cut"!=e.type||t.state.readOnly||t.dispatch({changes:s,scrollIntoView:!0,userEvent:"delete.cut"});let o=eo?null:e.clipboardData;return o?(o.clearData(),o.setData("text/plain",i),!0):(!function(t,e){let i=t.dom.parentNode;if(!i)return;let s=i.appendChild(document.createElement("textarea"));s.style.cssText="position: fixed; left: -10000px; top: 10px",s.value=e,s.focus(),s.selectionEnd=e.length,s.selectionStart=0,setTimeout(()=>{s.remove(),t.focus()},50)}(t,i),!1)};let em=l.YH.define();function ew(t,e){let i=[];for(let s of t.facet(tb)){let n=s(t,e);n&&i.push(n)}return i.length?t.update({effects:i,annotations:em.of(!0)}):null}function ev(t){setTimeout(()=>{let e=t.hasFocus;if(e!=t.inputState.notifiedFocused){let i=ew(t.state,e);i?t.dispatch(i):t.update([])}},10)}en.focus=t=>{t.inputState.lastFocusTime=Date.now(),!t.scrollDOM.scrollTop&&(t.inputState.lastScrollTop||t.inputState.lastScrollLeft)&&(t.scrollDOM.scrollTop=t.inputState.lastScrollTop,t.scrollDOM.scrollLeft=t.inputState.lastScrollLeft),ev(t)},en.blur=t=>{t.observer.clearSelectionRange(),ev(t)},en.compositionstart=en.compositionupdate=t=>{!t.observer.editContext&&(null==t.inputState.compositionFirstChange&&(t.inputState.compositionFirstChange=!0),t.inputState.composing<0&&(t.inputState.composing=0))},en.compositionend=t=>{t.observer.editContext||(t.inputState.composing=-1,t.inputState.compositionEndedAt=Date.now(),t.inputState.compositionPendingKey=!0,t.inputState.compositionPendingChange=t.observer.pendingRecords().length>0,t.inputState.compositionFirstChange=null,O.chrome&&O.android?t.observer.flushSoon():t.inputState.compositionPendingChange?Promise.resolve().then(()=>t.observer.flush()):setTimeout(()=>{t.inputState.composing<0&&t.docView.hasComposition&&t.update([])},50))},en.contextmenu=t=>{t.inputState.lastContextMenu=Date.now()},es.beforeinput=(t,e)=>{var i,s;let n;if(("insertText"==e.inputType||"insertCompositionText"==e.inputType)&&(t.inputState.insertingText=e.data,t.inputState.insertingTextAt=Date.now()),"insertReplacementText"==e.inputType&&t.observer.editContext){let s=null==(i=e.dataTransfer)?void 0:i.getData("text/plain"),n=e.getTargetRanges();if(s&&n.length){let e=n[0],i=t.posAtDOM(e.startContainer,e.startOffset),o=t.posAtDOM(e.endContainer,e.endOffset);return t5(t,{from:i,to:o,insert:t.state.toText(s)},null),!0}}if(O.chrome&&O.android&&(n=t7.find(t=>t.inputType==e.inputType))&&(t.observer.delayAndroidKey(n.key,n.keyCode),"Backspace"==n.key||"Delete"==n.key)){let e=(null==(s=window.visualViewport)?void 0:s.height)||0;setTimeout(()=>{var i;((null==(i=window.visualViewport)?void 0:i.height)||0)>e+10&&t.hasFocus&&(t.contentDOM.blur(),t.focus())},100)}return O.ios&&"deleteContentForward"==e.inputType&&t.observer.flushSoon(),O.safari&&"insertText"==e.inputType&&t.inputState.composing>=0&&setTimeout(()=>en.compositionend(t,e),20),!1};let eb=new Set,ey=["pre-wrap","normal","pre-line","break-spaces"],ex=!1;let HeightOracle=class HeightOracle{constructor(t){this.lineWrapping=t,this.doc=l.EY.empty,this.heightSamples={},this.lineHeight=14,this.charWidth=7,this.textHeight=14,this.lineLength=30}heightForGap(t,e){let i=this.doc.lineAt(e).number-this.doc.lineAt(t).number+1;return this.lineWrapping&&(i+=Math.max(0,Math.ceil((e-t-i*this.lineLength*.5)/this.lineLength))),this.lineHeight*i}heightForLine(t){return this.lineWrapping?(1+Math.max(0,Math.ceil((t-this.lineLength)/Math.max(1,this.lineLength-5))))*this.lineHeight:this.lineHeight}setDoc(t){return this.doc=t,this}mustRefreshForWrapping(t){return ey.indexOf(t)>-1!=this.lineWrapping}mustRefreshForHeights(t){let e=!1;for(let i=0;i-1,l=Math.round(e)!=Math.round(this.lineHeight)||this.lineWrapping!=r;if(this.lineWrapping=r,this.lineHeight=e,this.charWidth=i,this.textHeight=s,this.lineLength=n,l){this.heightSamples={};for(let t=0;t0}set outdated(t){this.flags=2*!!t|-3&this.flags}setHeight(t){this.height!=t&&(Math.abs(this.height-t)>.001&&(ex=!0),this.height=t)}replace(t,e,i){return HeightMap.of(i)}decomposeLeft(t,e){e.push(this)}decomposeRight(t,e){e.push(this)}applyChanges(t,e,i,s){let n=this,o=i.doc;for(let r=s.length-1;r>=0;r--){let{fromA:l,toA:h,fromB:a,toB:c}=s[r],d=n.lineAt(l,eS.ByPosNoHeight,i.setDoc(e),0,0),u=d.to>=h?d:n.lineAt(h,eS.ByPosNoHeight,i,0,0);for(c+=u.to-h,h=u.to;r>0&&d.from<=s[r-1].toA;)l=s[r-1].fromA,a=s[r-1].fromB,r--,l2*n){let n=t[e-1];n.break?t.splice(--e,1,n.left,null,n.right):t.splice(--e,1,n.left,n.right),i+=1+n.break,s-=n.size}else if(n>2*s){let e=t[i];e.break?t.splice(i,1,e.left,null,e.right):t.splice(i,1,e.left,e.right),i+=2+e.break,n-=e.size}else break;else if(s=n&&o(this.lineAt(0,eS.ByPos,i,s,n))}setMeasuredHeight(t){let e=t.heights[t.index++];e<0?(this.spaceAbove=-e,e=t.heights[t.index++]):this.spaceAbove=0,this.setHeight(e)}updateHeight(t,e=0,i=!1,s){return s&&s.from<=e&&s.more&&this.setMeasuredHeight(s),this.outdated=!1,this}toString(){return`block(${this.length})`}};let HeightMapText=class HeightMapText extends HeightMapBlock{constructor(t,e,i){super(t,e,null),this.collapsed=0,this.widgetHeight=0,this.breaks=0,this.spaceAbove=i}mainBlock(t,e){return new BlockInfo(e,this.length,t+this.spaceAbove,this.height-this.spaceAbove,this.breaks)}replace(t,e,i){let s=i[0];return 1==i.length&&(s instanceof HeightMapText||s instanceof HeightMapGap&&4&s.flags)&&10>Math.abs(this.length-s.length)?(s instanceof HeightMapGap?s=new HeightMapText(s.length,this.height,this.spaceAbove):s.height=this.height,this.outdated||(s.outdated=!1),s):HeightMap.of(i)}updateHeight(t,e=0,i=!1,s){return s&&s.from<=e&&s.more?this.setMeasuredHeight(s):(i||this.outdated)&&(this.spaceAbove=0,this.setHeight(Math.max(this.widgetHeight,t.heightForLine(this.length-this.collapsed))+this.breaks*t.lineHeight)),this.outdated=!1,this}toString(){return`line(${this.length}${this.collapsed?-this.collapsed:""}${this.widgetHeight?":"+this.widgetHeight:""})`}};let HeightMapGap=class HeightMapGap extends HeightMap{constructor(t){super(t,0)}heightMetrics(t,e){let i=t.doc.lineAt(e).number,s=t.doc.lineAt(e+this.length).number,n=s-i+1,o,r=0;if(t.lineWrapping){let e=Math.min(this.height,t.lineHeight*n);o=e/n,this.length>n+1&&(r=(this.height-e)/(this.length-n-1))}else o=this.height/n;return{firstLine:i,lastLine:s,perLine:o,perChar:r}}blockAt(t,e,i,s){let{firstLine:n,lastLine:o,perLine:r,perChar:l}=this.heightMetrics(e,s);if(e.lineWrapping){let n=s+(t0){let t=i[i.length-1];t instanceof HeightMapGap?i[i.length-1]=new HeightMapGap(t.length+s):i.push(null,new HeightMapGap(s-1))}if(t>0){let e=i[0];e instanceof HeightMapGap?i[0]=new HeightMapGap(t+e.length):i.unshift(new HeightMapGap(t-1),null)}return HeightMap.of(i)}decomposeLeft(t,e){e.push(new HeightMapGap(t-1),null)}decomposeRight(t,e){e.push(null,new HeightMapGap(this.length-t-1))}updateHeight(t,e=0,i=!1,s){let n=e+this.length;if(s&&s.from<=e+this.length&&s.more){let i=[],o=Math.max(e,s.from),r=-1;for(s.from>e&&i.push(new HeightMapGap(s.from-e-1).updateHeight(t,e));o<=n&&s.more;){let e=t.doc.lineAt(o).length;i.length&&i.push(null);let n=s.heights[s.index++],l=0;n<0&&(l=-n,n=s.heights[s.index++]),-1==r?r=n:Math.abs(n-r)>=.001&&(r=-2);let h=new HeightMapText(e,n,l);h.outdated=!1,i.push(h),o+=e+1}o<=n&&i.push(null,new HeightMapGap(n-o).updateHeight(t,o));let l=HeightMap.of(i);return(r<0||Math.abs(l.height-this.height)>=.001||Math.abs(r-this.heightMetrics(t,e).perLine)>=.001)&&(ex=!0),ek(this,l)}return(i||this.outdated)&&(this.setHeight(t.heightForGap(e,e+this.length)),this.outdated=!1),this}toString(){return`gap(${this.length})`}};let HeightMapBranch=class HeightMapBranch extends HeightMap{constructor(t,e,i){super(t.length+e+i.length,t.height+i.height,e|(t.outdated||i.outdated?2:0)),this.left=t,this.right=i,this.size=t.size+i.size}get break(){return 1&this.flags}blockAt(t,e,i,s){let n=i+this.left.height;return tr))return h;let a=e==eS.ByPosNoHeight?eS.ByPosNoHeight:eS.ByPos;return l?h.join(this.right.lineAt(r,a,i,o,r)):this.left.lineAt(r,a,i,s,n).join(h)}forEachLine(t,e,i,s,n,o){let r=s+this.left.height,l=n+this.left.length+this.break;if(this.break)t=l&&this.right.forEachLine(t,e,i,r,l,o);else{let h=this.lineAt(l,eS.ByPos,i,s,n);t=t&&h.from<=e&&o(h),e>h.to&&this.right.forEachLine(h.to+1,e,i,r,l,o)}}replace(t,e,i){let s=this.left.length+this.break;if(ethis.left.length)return this.balanced(this.left,this.right.replace(t-s,e-s,i));let n=[];t>0&&this.decomposeLeft(t,n);let o=n.length;for(let t of i)n.push(t);if(t>0&&eC(n,o-1),e=++i&&e.push(null),t>i&&this.right.decomposeLeft(t-i,e)}decomposeRight(t,e){let i=this.left.length,s=i+this.break;if(t>=s)return this.right.decomposeRight(t-s,e);t2*e.size||e.size>2*t.size?HeightMap.of(this.break?[t,null,e]:[t,e]):(this.left=ek(this.left,t),this.right=ek(this.right,e),this.setHeight(t.height+e.height),this.outdated=t.outdated||e.outdated,this.size=t.size+e.size,this.length=t.length+this.break+e.length,this)}updateHeight(t,e=0,i=!1,s){let{left:n,right:o}=this,r=e+n.length+this.break,l=null;return(s&&s.from<=e+n.length&&s.more?l=n=n.updateHeight(t,e,i,s):n.updateHeight(t,e,i),s&&s.from<=r+o.length&&s.more?l=o=o.updateHeight(t,r,i,s):o.updateHeight(t,r,i),l)?this.balanced(n,o):(this.height=this.left.height+this.right.height,this.outdated=!1,this)}toString(){return this.left+(this.break?" ":"-")+this.right}};function eC(t,e){let i,s;null==t[e]&&(i=t[e-1])instanceof HeightMapGap&&(s=t[e+1])instanceof HeightMapGap&&t.splice(e-1,3,new HeightMapGap(i.length+1+s.length))}let NodeBuilder=class NodeBuilder{constructor(t,e){this.pos=t,this.oracle=e,this.nodes=[],this.lineStart=-1,this.lineEnd=-1,this.covering=null,this.writtenTo=t}get isCovered(){return this.covering&&this.nodes[this.nodes.length-1]==this.covering}span(t,e){if(this.lineStart>-1){let t=Math.min(e,this.lineEnd),i=this.nodes[this.nodes.length-1];i instanceof HeightMapText?i.length+=t-this.pos:(t>this.pos||!this.isCovered)&&this.nodes.push(new HeightMapText(t-this.pos,-1,0)),this.writtenTo=t,e>t&&(this.nodes.push(null),this.writtenTo++,this.lineStart=-1)}this.pos=e}point(t,e,i){if(t=5)&&this.addLineDeco(s,n,o)}else e>t&&this.span(t,e);this.lineEnd>-1&&this.lineEnd-1)return;let{from:t,to:e}=this.oracle.doc.lineAt(this.pos);this.lineStart=t,this.lineEnd=e,this.writtenTot&&this.nodes.push(new HeightMapText(this.pos-t,-1,0)),this.writtenTo=this.pos}blankContent(t,e){let i=new HeightMapGap(e-t);return this.oracle.doc.lineAt(t).to==e&&(i.flags|=4),i}ensureLine(){this.enterLine();let t=this.nodes.length?this.nodes[this.nodes.length-1]:null;if(t instanceof HeightMapText)return t;let e=new HeightMapText(0,-1,0);return this.nodes.push(e),e}addBlock(t){this.enterLine();let e=t.deco;e&&e.startSide>0&&!this.isCovered&&this.ensureLine(),this.nodes.push(t),this.writtenTo=this.pos=this.pos+t.length,e&&e.endSide>0&&(this.covering=t)}addLineDeco(t,e,i){let s=this.ensureLine();s.length+=i,s.collapsed+=i,s.widgetHeight=Math.max(s.widgetHeight,t),s.breaks+=e,this.writtenTo=this.pos=this.pos+i}finish(t){let e=0==this.nodes.length?null:this.nodes[this.nodes.length-1];!(this.lineStart>-1)||e instanceof HeightMapText||this.isCovered?(this.writtenTo"function"!=typeof t&&"cm-lineWrapping"==t.class);this.heightOracle=new HeightOracle(e),this.stateDeco=eD(t),this.heightMap=HeightMap.empty().applyChanges(this.stateDeco,l.EY.empty,this.heightOracle.setDoc(t.doc),[new ChangedRange(0,0,0,t.doc.length)]);for(let t=0;t<2&&(this.viewport=this.getViewport(0,null),this.updateForViewport());t++);this.updateViewportLines(),this.lineGaps=this.ensureLineGaps([]),this.lineGapDeco=Decoration.set(this.lineGaps.map(t=>t.draw(this,!1))),this.computeVisibleRanges()}updateForViewport(){let t=[this.viewport],{main:e}=this.state.selection;for(let i=0;i<=1;i++){let s=i?e.head:e.anchor;if(!t.some(({from:t,to:e})=>s>=t&&s<=e)){let{from:e,to:i}=this.lineBlockAt(s);t.push(new Viewport(e,i))}}return this.viewports=t.sort((t,e)=>t.from-e.from),this.updateScaler()}updateScaler(){let t=this.scaler;return this.scaler=this.heightMap.height<=7e6?eO:new BigScaler(this.heightOracle,this.heightMap,this.viewports),2*!t.eq(this.scaler)}updateViewportLines(){this.viewportLines=[],this.heightMap.forEachLine(this.viewport.from,this.viewport.to,this.heightOracle.setDoc(this.state.doc),0,0,t=>{this.viewportLines.push(eE(t,this.scaler))})}update(t,e=null){var i,s;let n;this.state=t.state;let o=this.stateDeco;this.stateDeco=eD(this.state);let r=t.changedRanges,h=ChangedRange.extendWithRanges(r,(i=this.stateDeco,s=t?t.changes:l.VR.empty(this.state.doc.length),n=new DecorationComparator,l.om.compare(o,i,s,n,0),n.changes)),a=this.heightMap.height,c=this.scrolledToBottom?null:this.scrollAnchorAt(this.scrollTop);ex=!1,this.heightMap=this.heightMap.applyChanges(this.stateDeco,t.startState.doc,this.heightOracle.setDoc(this.state.doc),h),(this.heightMap.height!=a||ex)&&(t.flags|=2),c?(this.scrollAnchorPos=t.changes.mapPos(c.from,-1),this.scrollAnchorHeight=c.top):(this.scrollAnchorPos=-1,this.scrollAnchorHeight=a);let d=h.length?this.mapViewport(this.viewport,t.changes):this.viewport;(e&&(e.range.headd.to)||!this.viewportIsAppropriate(d))&&(d=this.getViewport(0,e));let u=d.from!=this.viewport.from||d.to!=this.viewport.to;this.viewport=d,t.flags|=this.updateForViewport(),(u||!t.changes.empty||2&t.flags)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(this.mapLineGaps(this.lineGaps,t.changes))),t.flags|=this.computeVisibleRanges(t.changes),e&&(this.scrollTarget=e),!this.mustEnforceCursorAssoc&&(t.selectionSet||t.focusChanged)&&t.view.lineWrapping&&t.state.selection.main.empty&&t.state.selection.main.assoc&&!t.state.facet(tk)&&(this.mustEnforceCursorAssoc=!0)}measure(t){var e;let i,s,n=t.contentDOM,o=window.getComputedStyle(n),r=this.heightOracle,h=o.whiteSpace;this.defaultTextDirection="rtl"==o.direction?tt.RTL:tt.LTR;let a=this.heightOracle.mustRefreshForWrapping(h),c=n.getBoundingClientRect(),d=a||this.mustMeasureContent||this.contentDOMHeight!=c.height;this.contentDOMHeight=c.height,this.mustMeasureContent=!1;let u=0,f=0;if(c.width&&c.height){let{scaleX:t,scaleY:e}=_(n,c);(t>.005&&Math.abs(this.scaleX-t)>.005||e>.005&&Math.abs(this.scaleY-e)>.005)&&(this.scaleX=t,this.scaleY=e,u|=16,a=d=!0)}let p=(parseInt(o.paddingTop)||0)*this.scaleY,g=(parseInt(o.paddingBottom)||0)*this.scaleY;(this.paddingTop!=p||this.paddingBottom!=g)&&(this.paddingTop=p,this.paddingBottom=g,u|=18),this.editorWidth!=t.scrollDOM.clientWidth&&(r.lineWrapping&&(d=!0),this.editorWidth=t.scrollDOM.clientWidth,u|=16);let m=t.scrollDOM.scrollTop*this.scaleY;this.scrollTop!=m&&(this.scrollAnchorHeight=-1,this.scrollTop=m),this.scrolledToBottom=J(t.scrollDOM);let w=(this.printing?function(t,e){let i=t.getBoundingClientRect();return{left:0,right:i.right-i.left,top:e,bottom:i.bottom-(i.top+e)}}:function(t,e){let i=t.getBoundingClientRect(),s=t.ownerDocument,n=s.defaultView||window,o=Math.max(0,i.left),r=Math.min(n.innerWidth,i.right),l=Math.max(0,i.top),h=Math.min(n.innerHeight,i.bottom);for(let e=t.parentNode;e&&e!=s.body;)if(1==e.nodeType){let i=e,s=window.getComputedStyle(i);if((i.scrollHeight>i.clientHeight||i.scrollWidth>i.clientWidth)&&"visible"!=s.overflow){let s=i.getBoundingClientRect();o=Math.max(o,s.left),r=Math.min(r,s.right),l=Math.max(l,s.top),h=Math.min(e==t.parentNode?n.innerHeight:h,s.bottom)}e="absolute"==s.position||"fixed"==s.position?i.offsetParent:i.parentNode}else if(11==e.nodeType)e=e.host;else break;return{left:o-i.left,right:Math.max(o,r)-i.left,top:l-(i.top+e),bottom:Math.max(l,h)-(i.top+e)}})(n,this.paddingTop),v=w.top-this.pixelViewport.top,b=w.bottom-this.pixelViewport.bottom;this.pixelViewport=w;let y=this.pixelViewport.bottom>this.pixelViewport.top&&this.pixelViewport.right>this.pixelViewport.left;if(y!=this.inView&&(this.inView=y,y&&(d=!0)),!this.inView&&!this.scrollTarget&&(i=(e=t.dom).getBoundingClientRect(),s=e.ownerDocument.defaultView||window,!(i.left0)||!(i.top0)))return 0;let x=c.width;if((this.contentDOMWidth!=x||this.editorHeight!=t.scrollDOM.clientHeight)&&(this.contentDOMWidth=c.width,this.editorHeight=t.scrollDOM.clientHeight,u|=16),d){let e=t.docView.measureVisibleLineHeights(this.viewport);if(r.mustRefreshForHeights(e)&&(a=!0),a||r.lineWrapping&&Math.abs(x-this.contentDOMWidth)>r.charWidth){let{lineHeight:i,charWidth:s,textHeight:n}=t.docView.measureTextSize();(a=i>0&&r.refresh(h,i,s,n,Math.max(5,x/s),e))&&(t.docView.minWidth=0,u|=16)}for(let i of(v>0&&b>0?f=Math.max(v,b):v<0&&b<0&&(f=Math.min(v,b)),ex=!1,this.viewports)){let s=i.from==this.viewport.from?e:t.docView.measureVisibleLineHeights(i);this.heightMap=(a?HeightMap.empty().applyChanges(this.stateDeco,l.EY.empty,this.heightOracle,[new ChangedRange(0,0,0,t.state.doc.length)]):this.heightMap).updateHeight(r,0,a,new MeasuredHeights(i.from,s))}ex&&(u|=2)}let S=!this.viewportIsAppropriate(this.viewport,f)||this.scrollTarget&&(this.scrollTarget.range.headthis.viewport.to);return S&&(2&u&&(u|=this.updateScaler()),this.viewport=this.getViewport(f,this.scrollTarget),u|=this.updateForViewport()),(2&u||S)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(a?[]:this.lineGaps,t)),u|=this.computeVisibleRanges(),this.mustEnforceCursorAssoc&&(this.mustEnforceCursorAssoc=!1,t.docView.enforceCursorAssoc()),u}get visibleTop(){return this.scaler.fromDOM(this.pixelViewport.top)}get visibleBottom(){return this.scaler.fromDOM(this.pixelViewport.bottom)}getViewport(t,e){let i=.5-Math.max(-.5,Math.min(.5,t/1e3/2)),s=this.heightMap,n=this.heightOracle,{visibleTop:o,visibleBottom:r}=this,l=new Viewport(s.lineAt(o-1e3*i,eS.ByHeight,n,0,0).from,s.lineAt(r+(1-i)*1e3,eS.ByHeight,n,0,0).to);if(e){let{head:t}=e.range;if(tl.to){let i=Math.min(this.editorHeight,this.pixelViewport.bottom-this.pixelViewport.top),o=s.lineAt(t,eS.ByPos,n,0,0),r;r="center"==e.y?(o.top+o.bottom)/2-i/2:"start"==e.y||"nearest"==e.y&&t=r+Math.max(10,Math.min(i,250)))&&s>o-2e3&&n>1,o=s<<1;if(this.defaultTextDirection!=tt.LTR&&!i)return[];let r=[],h=(s,o,a,c)=>{if(o-ss&&tt.from>=a.from&&t.to<=a.to&&Math.abs(t.from-s)t.frome));if(!f){if(ot.from<=o&&t.to>=o)){let t=e.moveToLineBoundary(l.OF.cursor(o),!1,!0).head;t>s&&(o=t)}let t=this.gapSize(a,s,o,c),n=i||t<2e6?t:2e6;f=new LineGap(s,o,t,n)}r.push(f)},a=e=>{var n,r,a;let c,d,u,f,p;if(e.lengthf&&(u.push({from:f,to:t}),p+=t-f),f=e}},20),f2e6)for(let i of t)i.from>=e.from&&i.frome.from&&h(e.from,c,e,g),dt.draw(this,this.heightOracle.lineWrapping))))}computeVisibleRanges(t){let e=this.stateDeco;this.lineGaps.length&&(e=e.concat(this.lineGapDeco));let i=[];l.om.spans(e,this.viewport.from,this.viewport.to,{span(t,e){i.push({from:t,to:e})},point(){}},20);let s=0;if(i.length!=this.visibleRanges.length)s=12;else for(let e=0;e=this.viewport.from&&t<=this.viewport.to&&this.viewportLines.find(e=>e.from<=t&&e.to>=t)||eE(this.heightMap.lineAt(t,eS.ByPos,this.heightOracle,0,0),this.scaler)}lineBlockAtHeight(t){return t>=this.viewportLines[0].top&&t<=this.viewportLines[this.viewportLines.length-1].bottom&&this.viewportLines.find(e=>e.top<=t&&e.bottom>=t)||eE(this.heightMap.lineAt(this.scaler.fromDOM(t),eS.ByHeight,this.heightOracle,0,0),this.scaler)}scrollAnchorAt(t){let e=this.lineBlockAtHeight(t+8);return e.from>=this.viewport.from||this.viewportLines[0].top-t>200?e:this.viewportLines[0]}elementAtHeight(t){return eE(this.heightMap.blockAt(this.scaler.fromDOM(t),this.heightOracle,0,0),this.scaler)}get docHeight(){return this.scaler.toDOM(this.heightMap.height)}get contentHeight(){return this.docHeight+this.paddingTop+this.paddingBottom}};let Viewport=class Viewport{constructor(t,e){this.from=t,this.to=e}};function eT({total:t,ranges:e},i){if(i<=0)return e[0].from;if(i>=1)return e[e.length-1].to;let s=Math.floor(t*i);for(let t=0;;t++){let{from:i,to:n}=e[t],o=n-i;if(s<=o)return i+s;s-=o}}function eA(t,e){let i=0;for(let{from:s,to:n}of t.ranges){if(e<=n){i+=e-s;break}i+=n-s}return i/t.total}let eO={toDOM:t=>t,fromDOM:t=>t,scale:1,eq(t){return t==this}};function eD(t){let e=t.facet(tL).filter(t=>"function"!=typeof t),i=t.facet(tH).filter(t=>"function"!=typeof t);return i.length&&e.push(l.om.join(i)),e}let BigScaler=class BigScaler{constructor(t,e,i){let s=0,n=0,o=0;for(let r of(this.viewports=i.map(({from:i,to:n})=>{let o=e.lineAt(i,eS.ByPos,t,0,0).top,r=e.lineAt(n,eS.ByPos,t,0,0).bottom;return s+=r-o,{from:i,to:n,top:o,bottom:r,domTop:0,domBottom:0}}),this.scale=(7e6-s)/(e.height-s),this.viewports))r.domTop=o+(r.top-n)*this.scale,o=r.domBottom=r.domTop+(r.bottom-r.top),n=r.bottom}toDOM(t){for(let e=0,i=0,s=0;;e++){let n=ee.from==t.viewports[i].from&&e.to==t.viewports[i].to)}};function eE(t,e){if(1==e.scale)return t;let i=e.toDOM(t.top),s=e.toDOM(t.bottom);return new BlockInfo(t.from,t.length,i,s-i,Array.isArray(t._content)?t._content.map(t=>eE(t,e)):t._content)}let eR=l.sj.define({combine:t=>t.join(" ")}),eB=l.sj.define({combine:t=>t.indexOf(!0)>-1}),eL=h.G.newName(),eP=h.G.newName(),eH=h.G.newName(),eV={"&light":"."+eP,"&dark":"."+eH};function eW(t,e,i){return new h.G(e,{finish:e=>/&/.test(e)?e.replace(/&\w*/,e=>{if("&"==e)return t;if(!i||!i[e])throw RangeError(`Unsupported selector: ${e}`);return i[e]}):t+" "+e})}let eI=eW("."+eL,{"&":{position:"relative !important",boxSizing:"border-box","&.cm-focused":{outline:"1px dotted #212121"},display:"flex !important",flexDirection:"column"},".cm-scroller":{display:"flex !important",alignItems:"flex-start !important",fontFamily:"monospace",lineHeight:1.4,height:"100%",overflowX:"auto",position:"relative",zIndex:0,overflowAnchor:"none"},".cm-content":{margin:0,flexGrow:2,flexShrink:0,display:"block",whiteSpace:"pre",wordWrap:"normal",boxSizing:"border-box",minHeight:"100%",padding:"4px 0",outline:"none","&[contenteditable=true]":{WebkitUserModify:"read-write-plaintext-only"}},".cm-lineWrapping":{whiteSpace_fallback:"pre-wrap",whiteSpace:"break-spaces",wordBreak:"break-word",overflowWrap:"anywhere",flexShrink:1},"&light .cm-content":{caretColor:"black"},"&dark .cm-content":{caretColor:"white"},".cm-line":{display:"block",padding:"0 2px 0 6px"},".cm-layer":{position:"absolute",left:0,top:0,contain:"size style","& > *":{position:"absolute"}},"&light .cm-selectionBackground":{background:"#d9d9d9"},"&dark .cm-selectionBackground":{background:"#222"},"&light.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#d7d4f0"},"&dark.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#233"},".cm-cursorLayer":{pointerEvents:"none"},"&.cm-focused > .cm-scroller > .cm-cursorLayer":{animation:"steps(1) cm-blink 1.2s infinite"},"@keyframes cm-blink":{"0%":{},"50%":{opacity:0},"100%":{}},"@keyframes cm-blink2":{"0%":{},"50%":{opacity:0},"100%":{}},".cm-cursor, .cm-dropCursor":{borderLeft:"1.2px solid black",marginLeft:"-0.6px",pointerEvents:"none"},".cm-cursor":{display:"none"},"&dark .cm-cursor":{borderLeftColor:"#ddd"},".cm-dropCursor":{position:"absolute"},"&.cm-focused > .cm-scroller > .cm-cursorLayer .cm-cursor":{display:"block"},".cm-iso":{unicodeBidi:"isolate"},".cm-announced":{position:"fixed",top:"-10000px"},"@media print":{".cm-announced":{display:"none"}},"&light .cm-activeLine":{backgroundColor:"#cceeff44"},"&dark .cm-activeLine":{backgroundColor:"#99eeff33"},"&light .cm-specialChar":{color:"red"},"&dark .cm-specialChar":{color:"#f78"},".cm-gutters":{flexShrink:0,display:"flex",height:"100%",boxSizing:"border-box",zIndex:200},".cm-gutters-before":{insetInlineStart:0},".cm-gutters-after":{insetInlineEnd:0},"&light .cm-gutters":{backgroundColor:"#f5f5f5",color:"#6c6c6c",border:"0px solid #ddd","&.cm-gutters-before":{borderRightWidth:"1px"},"&.cm-gutters-after":{borderLeftWidth:"1px"}},"&dark .cm-gutters":{backgroundColor:"#333338",color:"#ccc"},".cm-gutter":{display:"flex !important",flexDirection:"column",flexShrink:0,boxSizing:"border-box",minHeight:"100%",overflow:"hidden"},".cm-gutterElement":{boxSizing:"border-box"},".cm-lineNumbers .cm-gutterElement":{padding:"0 3px 0 5px",minWidth:"20px",textAlign:"right",whiteSpace:"nowrap"},"&light .cm-activeLineGutter":{backgroundColor:"#e2f2ff"},"&dark .cm-activeLineGutter":{backgroundColor:"#222227"},".cm-panels":{boxSizing:"border-box",position:"sticky",left:0,right:0,zIndex:300},"&light .cm-panels":{backgroundColor:"#f5f5f5",color:"black"},"&light .cm-panels-top":{borderBottom:"1px solid #ddd"},"&light .cm-panels-bottom":{borderTop:"1px solid #ddd"},"&dark .cm-panels":{backgroundColor:"#333338",color:"white"},".cm-dialog":{padding:"2px 19px 4px 6px",position:"relative","& label":{fontSize:"80%"}},".cm-dialog-close":{position:"absolute",top:"3px",right:"4px",backgroundColor:"inherit",border:"none",font:"inherit",fontSize:"14px",padding:"0"},".cm-tab":{display:"inline-block",overflow:"hidden",verticalAlign:"bottom"},".cm-widgetBuffer":{verticalAlign:"text-top",height:"1em",width:0,display:"inline"},".cm-placeholder":{color:"#888",display:"inline-block",verticalAlign:"top",userSelect:"none"},".cm-highlightSpace":{backgroundImage:"radial-gradient(circle at 50% 55%, #aaa 20%, transparent 5%)",backgroundPosition:"center"},".cm-highlightTab":{backgroundImage:'url(\'data:image/svg+xml,\')',backgroundSize:"auto 100%",backgroundPosition:"right 90%",backgroundRepeat:"no-repeat"},".cm-trailingSpace":{backgroundColor:"#ff332255"},".cm-button":{verticalAlign:"middle",color:"inherit",fontSize:"70%",padding:".2em 1em",borderRadius:"1px"},"&light .cm-button":{backgroundImage:"linear-gradient(#eff1f5, #d9d9df)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#b4b4b4, #d0d3d6)"}},"&dark .cm-button":{backgroundImage:"linear-gradient(#393939, #111)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#111, #333)"}},".cm-textfield":{verticalAlign:"middle",color:"inherit",fontSize:"70%",border:"1px solid silver",padding:".2em .5em"},"&light .cm-textfield":{backgroundColor:"white"},"&dark .cm-textfield":{border:"1px solid #555",backgroundColor:"inherit"}},eV),eN={childList:!0,characterData:!0,subtree:!0,attributes:!0,characterDataOldValue:!0},eF=O.ie&&O.ie_version<=11;let DOMObserver=class DOMObserver{constructor(t){this.view=t,this.active=!1,this.editContext=null,this.selectionRange=new DOMSelectionState,this.selectionChanged=!1,this.delayedFlush=-1,this.resizeTimeout=-1,this.queue=[],this.delayedAndroidKey=null,this.flushingAndroidKey=-1,this.lastChange=0,this.scrollTargets=[],this.intersection=null,this.resizeScroll=null,this.intersecting=!1,this.gapIntersection=null,this.gaps=[],this.printQuery=null,this.parentCheck=-1,this.dom=t.contentDOM,this.observer=new MutationObserver(e=>{for(let t of e)this.queue.push(t);(O.ie&&O.ie_version<=11||O.ios&&t.composing)&&e.some(t=>"childList"==t.type&&t.removedNodes.length||"characterData"==t.type&&t.oldValue.length>t.target.nodeValue.length)?this.flushSoon():this.flush()}),window.EditContext&&O.android&&!1!==t.constructor.EDIT_CONTEXT&&!(O.chrome&&O.chrome_version<126)&&(this.editContext=new EditContextManager(t),t.state.facet(tO)&&(t.contentDOM.editContext=this.editContext.editContext)),eF&&(this.onCharData=t=>{this.queue.push({target:t.target,type:"characterData",oldValue:t.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this),this.onResize=this.onResize.bind(this),this.onPrint=this.onPrint.bind(this),this.onScroll=this.onScroll.bind(this),window.matchMedia&&(this.printQuery=window.matchMedia("print")),"function"==typeof ResizeObserver&&(this.resizeScroll=new ResizeObserver(()=>{var t;(null==(t=this.view.docView)?void 0:t.lastUpdate){this.parentCheck<0&&(this.parentCheck=setTimeout(this.listenForScroll.bind(this),1e3)),t.length>0&&t[t.length-1].intersectionRatio>0!=this.intersecting&&(this.intersecting=!this.intersecting,this.intersecting!=this.view.inView&&this.onScrollChanged(document.createEvent("Event")))},{threshold:[0,.001]}),this.intersection.observe(this.dom),this.gapIntersection=new IntersectionObserver(t=>{t.length>0&&t[t.length-1].intersectionRatio>0&&this.onScrollChanged(document.createEvent("Event"))},{})),this.listenForScroll(),this.readSelectionRange()}onScrollChanged(t){this.view.inputState.runHandlers("scroll",t),this.intersecting&&this.view.measure()}onScroll(t){this.intersecting&&this.flush(!1),this.editContext&&this.view.requestMeasure(this.editContext.measureReq),this.onScrollChanged(t)}onResize(){this.resizeTimeout<0&&(this.resizeTimeout=setTimeout(()=>{this.resizeTimeout=-1,this.view.requestMeasure()},50))}onPrint(t){("change"!=t.type&&t.type||t.matches)&&(this.view.viewState.printing=!0,this.view.measure(),setTimeout(()=>{this.view.viewState.printing=!1,this.view.requestMeasure()},500))}updateGaps(t){if(this.gapIntersection&&(t.length!=this.gaps.length||this.gaps.some((e,i)=>e!=t[i]))){for(let e of(this.gapIntersection.disconnect(),t))this.gapIntersection.observe(e);this.gaps=t}}onSelectionChange(t){let e=this.selectionChanged;if(!this.readSelectionRange()||this.delayedAndroidKey)return;let{view:i}=this,s=this.selectionRange;if(i.state.facet(tO)?i.root.activeElement!=this.dom:!I(this.dom,s))return;let n=s.anchorNode&&i.docView.tile.nearest(s.anchorNode);if(n&&n.isWidget()&&n.widget.ignoreEvent(t)){e||(this.selectionChanged=!1);return}(O.ie&&O.ie_version<=11||O.android&&O.chrome)&&!i.state.selection.main.empty&&s.focusNode&&F(s.focusNode,s.focusOffset,s.anchorNode,s.anchorOffset)?this.flushSoon():this.flush(!1)}readSelectionRange(){let{view:t}=this,e=V(t.root);if(!e)return!1;let i=O.safari&&11==t.root.nodeType&&t.root.activeElement==this.dom&&function(t,e){if(e.getComposedRanges){let i=e.getComposedRanges(t.root)[0];if(i)return eq(t,i)}let i=null;function s(t){t.preventDefault(),t.stopImmediatePropagation(),i=t.getTargetRanges()[0]}return t.contentDOM.addEventListener("beforeinput",s,!0),t.dom.ownerDocument.execCommand("indent"),t.contentDOM.removeEventListener("beforeinput",s,!0),i?eq(t,i):null}(this.view,e)||e;if(!i||this.selectionRange.eq(i))return!1;let s=I(this.dom,i);return s&&!this.selectionChanged&&t.inputState.lastFocusTime>Date.now()-200&&t.inputState.lastTouchTime{let t=this.delayedAndroidKey;t&&(this.clearDelayedAndroidKey(),this.view.inputState.lastKeyCode=t.keyCode,this.view.inputState.lastKeyTime=Date.now(),!this.flush()&&t.force&&X(this.dom,t.key,t.keyCode))};this.flushingAndroidKey=this.view.win.requestAnimationFrame(t)}this.delayedAndroidKey&&"Enter"!=t||(this.delayedAndroidKey={key:t,keyCode:e,force:this.lastChange{this.delayedFlush=-1,this.flush()}))}forceFlush(){this.delayedFlush>=0&&(this.view.win.cancelAnimationFrame(this.delayedFlush),this.delayedFlush=-1),this.flush()}pendingRecords(){for(let t of this.observer.takeRecords())this.queue.push(t);return this.queue}processRecords(){let t=this.pendingRecords();t.length&&(this.queue=[]);let e=-1,i=-1,s=!1;for(let n of t){let t=this.readMutation(n);t&&(t.typeOver&&(s=!0),-1==e?{from:e,to:i}=t:(e=Math.min(t.from,e),i=Math.max(t.to,i)))}return{from:e,to:i,typeOver:s}}readChange(){let{from:t,to:e,typeOver:i}=this.processRecords(),s=this.selectionChanged&&I(this.dom,this.selectionRange);if(t<0&&!s)return null;t>-1&&(this.lastChange=Date.now()),this.view.inputState.lastFocusTime=0,this.selectionChanged=!1;let n=new DOMChange(this.view,t,e,i);return this.view.docView.domChanged={newSel:n.newSel?n.newSel.main:null},n}flush(t=!0){if(this.delayedFlush>=0||this.delayedAndroidKey)return!1;t&&this.readSelectionRange();let e=this.readChange();if(!e)return this.view.requestMeasure(),!1;let i=this.view.state,s=t4(this.view,e);return this.view.state==i&&(e.domChanged||e.newSel&&!e.newSel.main.eq(this.view.state.selection.main))&&this.view.update([]),s}readMutation(t){let e=this.view.docView.tile.nearest(t.target);if(!e||e.isWidget())return null;if(e.markDirty("attributes"==t.type),"childList"==t.type){let i=ez(e,t.previousSibling||t.target.previousSibling,-1),s=ez(e,t.nextSibling||t.target.nextSibling,1);return{from:i?e.posAfter(i):e.posAtStart,to:s?e.posBefore(s):e.posAtEnd,typeOver:!1}}return"characterData"==t.type?{from:e.posAtStart,to:e.posAtEnd,typeOver:t.target.nodeValue==t.oldValue}:null}setWindow(t){t!=this.win&&(this.removeWindowListeners(this.win),this.win=t,this.addWindowListeners(this.win))}addWindowListeners(t){t.addEventListener("resize",this.onResize),this.printQuery?this.printQuery.addEventListener?this.printQuery.addEventListener("change",this.onPrint):this.printQuery.addListener(this.onPrint):t.addEventListener("beforeprint",this.onPrint),t.addEventListener("scroll",this.onScroll),t.document.addEventListener("selectionchange",this.onSelectionChange)}removeWindowListeners(t){t.removeEventListener("scroll",this.onScroll),t.removeEventListener("resize",this.onResize),this.printQuery?this.printQuery.removeEventListener?this.printQuery.removeEventListener("change",this.onPrint):this.printQuery.removeListener(this.onPrint):t.removeEventListener("beforeprint",this.onPrint),t.document.removeEventListener("selectionchange",this.onSelectionChange)}update(t){this.editContext&&(this.editContext.update(t),t.startState.facet(tO)!=t.state.facet(tO)&&(t.view.contentDOM.editContext=t.state.facet(tO)?this.editContext.editContext:null))}destroy(){var t,e,i;for(let s of(this.stop(),null==(t=this.intersection)||t.disconnect(),null==(e=this.gapIntersection)||e.disconnect(),null==(i=this.resizeScroll)||i.disconnect(),this.scrollTargets))s.removeEventListener("scroll",this.onScroll);this.removeWindowListeners(this.win),clearTimeout(this.parentCheck),clearTimeout(this.resizeTimeout),this.win.cancelAnimationFrame(this.delayedFlush),this.win.cancelAnimationFrame(this.flushingAndroidKey),this.editContext&&(this.view.contentDOM.editContext=null,this.editContext.destroy())}};function ez(t,e,i){for(;e;){let s=Tile.get(e);if(s&&s.parent==t)return s;let n=e.parentNode;e=n!=t.dom?n:i>0?e.nextSibling:e.previousSibling}return null}function eq(t,e){let i=e.startContainer,s=e.startOffset,n=e.endContainer,o=e.endOffset,r=t.docView.domAtPos(t.state.selection.main.anchor,1);return F(r.node,r.offset,n,o)&&([i,s,n,o]=[n,o,i,s]),{anchorNode:i,anchorOffset:s,focusNode:n,focusOffset:o}}let EditContextManager=class EditContextManager{constructor(t){this.from=0,this.to=0,this.pendingContextChange=null,this.handlers=Object.create(null),this.composing=null,this.resetRange(t.state);let e=this.editContext=new window.EditContext({text:t.state.doc.sliceString(this.from,this.to),selectionStart:this.toContextPos(Math.max(this.from,Math.min(this.to,t.state.selection.main.anchor))),selectionEnd:this.toContextPos(t.state.selection.main.head)});for(let i in this.handlers.textupdate=i=>{let s=t.state.selection.main,{anchor:n,head:o}=s,r=this.toEditorPos(i.updateRangeStart),h=this.toEditorPos(i.updateRangeEnd);t.inputState.composing>=0&&!this.composing&&(this.composing={contextBase:i.updateRangeStart,editorBase:r,drifted:!1});let a=h-r>i.text.length;r==this.from&&nthis.to&&(h=n);let c=t9(t.state.sliceDoc(r,h),i.text,(a?s.from:s.to)-r,a?"end":null);if(!c){let e=l.OF.single(this.toEditorPos(i.selectionStart),this.toEditorPos(i.selectionEnd));e.main.eq(s)||t.dispatch({selection:e,userEvent:"select"});return}let d={from:c.from+r,to:c.toA+r,insert:l.EY.of(i.text.slice(c.from,c.toB).split(` +`))};if((O.mac||O.android)&&d.from==o-1&&/^\. ?$/.test(i.text)&&"off"==t.contentDOM.getAttribute("autocorrect")&&(d={from:r,to:h,insert:l.EY.of([i.text.replace("."," ")])}),this.pendingContextChange=d,!t.state.readOnly){let e=this.to-this.from+(d.to-d.from+d.insert.length);t5(t,d,l.OF.single(this.toEditorPos(i.selectionStart,e),this.toEditorPos(i.selectionEnd,e)))}this.pendingContextChange&&(this.revertPending(t.state),this.setSelection(t.state)),d.from=0&&!/[\\p{Alphabetic}\\p{Number}_]/.test(e.text.slice(Math.max(0,i.updateRangeStart-1),Math.min(e.text.length,i.updateRangeStart+1)))&&this.handlers.compositionend(i)},this.handlers.characterboundsupdate=i=>{let s=[],n=null;for(let e=this.toEditorPos(i.rangeStart),o=this.toEditorPos(i.rangeEnd);e{let i=[];for(let t of e.getTextFormats()){let e=t.underlineStyle,s=t.underlineThickness;if(!/none/i.test(e)&&!/none/i.test(s)){let n=this.toEditorPos(t.rangeStart),o=this.toEditorPos(t.rangeEnd);if(n{t.inputState.composing<0&&(t.inputState.composing=0,t.inputState.compositionFirstChange=!0)},this.handlers.compositionend=()=>{if(t.inputState.composing=-1,t.inputState.compositionFirstChange=null,this.composing){let{drifted:e}=this.composing;this.composing=null,e&&this.reset(t.state)}},this.handlers)e.addEventListener(i,this.handlers[i]);this.measureReq={read:t=>{this.editContext.updateControlBounds(t.contentDOM.getBoundingClientRect());let e=V(t.root);e&&e.rangeCount&&this.editContext.updateSelectionBounds(e.getRangeAt(0).getBoundingClientRect())}}}applyEdits(t){let e=0,i=!1,s=this.pendingContextChange;return t.changes.iterChanges((n,o,r,l,h)=>{if(i)return;let a=h.length-(o-n);if(s&&o>=s.to)if(s.from==n&&s.to==o&&s.insert.eq(h)){s=this.pendingContextChange=null,e+=a,this.to+=a;return}else s=null,this.revertPending(t.state);if(n+=e,(o+=e)<=this.from)this.from+=a,this.to+=a;else if(nthis.to||this.to-this.from+h.length>3e4){i=!0;return}this.editContext.updateText(this.toContextPos(n),this.toContextPos(o),h.toString()),this.to+=a}e+=a}),s&&!i&&this.revertPending(t.state),!i}update(t){let e=this.pendingContextChange,i=t.startState.selection.main;this.composing&&(this.composing.drifted||!t.changes.touchesRange(i.from,i.to)&&t.transactions.some(t=>!t.isUserEvent("input.type")&&t.changes.touchesRange(this.from,this.to)))?(this.composing.drifted=!0,this.composing.editorBase=t.changes.mapPos(this.composing.editorBase)):this.applyEdits(t)&&this.rangeIsValid(t.state)?(t.docChanged||t.selectionSet||e)&&this.setSelection(t.state):(this.pendingContextChange=null,this.reset(t.state)),(t.geometryChanged||t.docChanged||t.selectionSet)&&t.view.requestMeasure(this.measureReq)}resetRange(t){let{head:e}=t.selection.main;this.from=Math.max(0,e-1e4),this.to=Math.min(t.doc.length,e+1e4)}reset(t){this.resetRange(t),this.editContext.updateText(0,this.editContext.text.length,t.doc.sliceString(this.from,this.to)),this.setSelection(t)}revertPending(t){let e=this.pendingContextChange;this.pendingContextChange=null,this.editContext.updateText(this.toContextPos(e.from),this.toContextPos(e.from+e.insert.length),t.doc.sliceString(e.from,e.to))}setSelection(t){let{main:e}=t.selection,i=this.toContextPos(Math.max(this.from,Math.min(this.to,e.anchor))),s=this.toContextPos(e.head);(this.editContext.selectionStart!=i||this.editContext.selectionEnd!=s)&&this.editContext.updateSelection(i,s)}rangeIsValid(t){let{head:e}=t.selection.main;return!(this.from>0&&e-this.from<500||this.to3e4)}toEditorPos(t,e=this.to-this.from){t=Math.min(t,e);let i=this.composing;return i&&i.drifted?i.editorBase+(t-i.contextBase):t+this.from}toContextPos(t){let e=this.composing;return e&&e.drifted?e.contextBase+(t-e.editorBase):t-this.from}destroy(){for(let t in this.handlers)this.editContext.removeEventListener(t,this.handlers[t])}};let EditorView=class EditorView{get state(){return this.viewState.state}get viewport(){return this.viewState.viewport}get visibleRanges(){return this.viewState.visibleRanges}get inView(){return this.viewState.inView}get composing(){return!!this.inputState&&this.inputState.composing>0}get compositionStarted(){return!!this.inputState&&this.inputState.composing>=0}get root(){return this._root}get win(){return this.dom.ownerDocument.defaultView||window}constructor(t={}){var e;this.plugins=[],this.pluginMap=new Map,this.editorAttrs={},this.contentAttrs={},this.bidiCache=[],this.destroyed=!1,this.updateState=2,this.measureScheduled=-1,this.measureRequests=[],this.contentDOM=document.createElement("div"),this.scrollDOM=document.createElement("div"),this.scrollDOM.tabIndex=-1,this.scrollDOM.className="cm-scroller",this.scrollDOM.appendChild(this.contentDOM),this.announceDOM=document.createElement("div"),this.announceDOM.className="cm-announced",this.announceDOM.setAttribute("aria-live","polite"),this.dom=document.createElement("div"),this.dom.appendChild(this.announceDOM),this.dom.appendChild(this.scrollDOM),t.parent&&t.parent.appendChild(this.dom);let{dispatch:i}=t;for(let e of(this.dispatchTransactions=t.dispatchTransactions||i&&(t=>t.forEach(t=>i(t,this)))||(t=>this.update(t)),this.dispatch=this.dispatch.bind(this),this._root=t.root||function(t){for(;t;){if(t&&(9==t.nodeType||11==t.nodeType&&t.host))return t;t=t.assignedSlot||t.parentNode}return null}(t.parent)||document,this.viewState=new ViewState(t.state||l.$t.create(t)),t.scrollTo&&t.scrollTo.is(tC)&&(this.viewState.scrollTarget=t.scrollTo.value.clip(this.viewState.state)),this.plugins=this.state.facet(tE).map(t=>new PluginInstance(t)),this.plugins))e.update(this);this.observer=new DOMObserver(this),this.inputState=new InputState(this),this.inputState.ensureHandlers(this.plugins),this.docView=new DocView(this),this.mountStyles(),this.updateAttrs(),this.updateState=0,this.requestMeasure(),(null==(e=document.fonts)?void 0:e.ready)&&document.fonts.ready.then(()=>this.requestMeasure())}dispatch(...t){let e=1==t.length&&t[0]instanceof l.ZX?t:1==t.length&&Array.isArray(t[0])?t[0]:[this.state.update(...t)];this.dispatchTransactions(e,this)}update(t){if(0!=this.updateState)throw Error("Calls to EditorView.update are not allowed while an update is in progress");let e=!1,i=!1,s,n=this.state;for(let e of t){if(e.startState!=n)throw RangeError("Trying to update state with a transaction that doesn't start from the previous state.");n=e.state}if(this.destroyed){this.viewState.state=n;return}let o=this.hasFocus,r=0,h=null;t.some(t=>t.annotation(em))?(this.inputState.notifiedFocused=o,r=1):o!=this.inputState.notifiedFocused&&(this.inputState.notifiedFocused=o,(h=ew(n,o))||(r=1));let a=this.observer.delayedAndroidKey,c=null;if(a?(this.observer.clearDelayedAndroidKey(),((c=this.observer.readChange())&&!this.state.doc.eq(n.doc)||!this.state.selection.eq(n.selection))&&(c=null)):this.observer.clear(),n.facet(l.$t.phrases)!=this.state.facet(l.$t.phrases))return this.setState(n);s=ViewUpdate.create(this,n,t),s.flags|=r;let d=this.viewState.scrollTarget;try{for(let e of(this.updateState=2,t)){if(d&&(d=d.map(e.changes)),e.scrollIntoView){let{main:t}=e.state.selection;d=new ScrollTarget(t.empty?t:l.OF.cursor(t.head,t.head>t.anchor?-1:1))}for(let t of e.effects)t.is(tC)&&(d=t.value.clip(this.state))}this.viewState.update(s,d),this.bidiCache=CachedOrder.update(this.bidiCache,s.changes),s.empty||(this.updatePlugins(s),this.inputState.update(s)),e=this.docView.update(s),this.state.facet(tz)!=this.styleModules&&this.mountStyles(),i=this.updateAttrs(),this.showAnnouncements(t),this.docView.updateSelection(e,t.some(t=>t.isUserEvent("select.pointer")))}finally{this.updateState=0}if(s.startState.facet(eR)!=s.state.facet(eR)&&(this.viewState.mustMeasureContent=!0),(e||i||d||this.viewState.mustEnforceCursorAssoc||this.viewState.mustMeasureContent)&&this.requestMeasure(),e&&this.docViewUpdate(),!s.empty)for(let t of this.state.facet(tw))try{t(s)}catch(t){tA(this.state,t,"update listener")}(h||c)&&Promise.resolve().then(()=>{h&&this.state==h.startState&&this.dispatch(h),c&&!t4(this,c)&&a.force&&X(this.contentDOM,a.key,a.keyCode)})}setState(t){if(0!=this.updateState)throw Error("Calls to EditorView.setState are not allowed while an update is in progress");if(this.destroyed){this.viewState.state=t;return}this.updateState=2;let e=this.hasFocus;try{for(let t of this.plugins)t.destroy(this);for(let e of(this.viewState=new ViewState(t),this.plugins=t.facet(tE).map(t=>new PluginInstance(t)),this.pluginMap.clear(),this.plugins))e.update(this);this.docView.destroy(),this.docView=new DocView(this),this.inputState.ensureHandlers(this.plugins),this.mountStyles(),this.updateAttrs(),this.bidiCache=[]}finally{this.updateState=0}e&&this.focus(),this.requestMeasure()}updatePlugins(t){let e=t.startState.facet(tE),i=t.state.facet(tE);if(e!=i){let s=[];for(let n of i){let i=e.indexOf(n);if(i<0)s.push(new PluginInstance(n));else{let e=this.plugins[i];e.mustUpdate=t,s.push(e)}}for(let e of this.plugins)e.mustUpdate!=t&&e.destroy(this);this.plugins=s,this.pluginMap.clear()}else for(let e of this.plugins)e.mustUpdate=t;for(let t=0;t-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.observer.delayedAndroidKey){this.measureScheduled=-1,this.requestMeasure();return}this.measureScheduled=0,t&&this.observer.forceFlush();let e=null,i=this.scrollDOM,s=i.scrollTop*this.scaleY,{scrollAnchorPos:n,scrollAnchorHeight:o}=this.viewState;Math.abs(s-this.viewState.scrollTop)>1&&(o=-1),this.viewState.scrollAnchorHeight=-1;try{for(let t=0;;t++){if(o<0)if(J(i))n=-1,o=this.viewState.heightMap.height;else{let t=this.viewState.scrollAnchorAt(s);n=t.from,o=t.top}this.updateState=1;let r=this.viewState.measure(this);if(!r&&!this.measureRequests.length&&null==this.viewState.scrollTarget)break;if(t>5){console.warn(this.measureRequests.length?"Measure loop restarted more than 5 times":"Viewport failed to stabilize");break}let l=[];4&r||([this.measureRequests,l]=[l,this.measureRequests]);let h=l.map(t=>{try{return t.read(this)}catch(t){return tA(this.state,t),eG}}),a=ViewUpdate.create(this,this.state,[]),c=!1;a.flags|=r,e?e.flags|=r:e=a,this.updateState=2,!a.empty&&(this.updatePlugins(a),this.inputState.update(a),this.updateAttrs(),(c=this.docView.update(a))&&this.docViewUpdate());for(let t=0;t1||t<-1){i.scrollTop=(s+=t)/this.scaleY,o=-1;continue}}break}}}finally{this.updateState=0,this.measureScheduled=-1}if(e&&!e.empty)for(let t of this.state.facet(tw))t(e)}get themeClasses(){return eL+" "+(this.state.facet(eB)?eH:eP)+" "+this.state.facet(eR)}updateAttrs(){let t=eK(this,tR,{class:"cm-editor"+(this.hasFocus?" cm-focused ":" ")+this.themeClasses}),e={spellcheck:"false",autocorrect:"off",autocapitalize:"off",writingsuggestions:"false",translate:"no",contenteditable:this.state.facet(tO)?"true":"false",class:"cm-content",style:`${O.tabSize}: ${this.state.tabSize}`,role:"textbox","aria-multiline":"true"};this.state.readOnly&&(e["aria-readonly"]="true"),eK(this,tB,e);let i=this.observer.ignore(()=>{let i=B(this.contentDOM,this.contentAttrs,e),s=B(this.dom,this.editorAttrs,t);return i||s});return this.editorAttrs=t,this.contentAttrs=e,i}showAnnouncements(t){let e=!0;for(let i of t)for(let t of i.effects)t.is(EditorView.announce)&&(e&&(this.announceDOM.textContent=""),e=!1,this.announceDOM.appendChild(document.createElement("div")).textContent=t.value)}mountStyles(){this.styleModules=this.state.facet(tz);let t=this.state.facet(EditorView.cspNonce);h.G.mount(this.root,this.styleModules.concat(eI).reverse(),t?{nonce:t}:void 0)}readMeasured(){if(2==this.updateState)throw Error("Reading the editor layout isn't allowed during an update");0==this.updateState&&this.measureScheduled>-1&&this.measure(!1)}requestMeasure(t){if((this.measureScheduled<0&&(this.measureScheduled=this.win.requestAnimationFrame(()=>this.measure())),t)&&!(this.measureRequests.indexOf(t)>-1)){if(null!=t.key){for(let e=0;ee.plugin==t)||null),e&&e.update(this).value}get documentTop(){return this.contentDOM.getBoundingClientRect().top+this.viewState.paddingTop}get documentPadding(){return{top:this.viewState.paddingTop,bottom:this.viewState.paddingBottom}}get scaleX(){return this.viewState.scaleX}get scaleY(){return this.viewState.scaleY}elementAtHeight(t){return this.readMeasured(),this.viewState.elementAtHeight(t)}lineBlockAtHeight(t){return this.readMeasured(),this.viewState.lineBlockAtHeight(t)}get viewportLineBlocks(){return this.viewState.viewportLines}lineBlockAt(t){return this.viewState.lineBlockAt(t)}get contentHeight(){return this.viewState.contentHeight}moveByChar(t,e,i){return t2(this,t,tZ(this,t,e,i))}moveByGroup(t,e){return t2(this,t,tZ(this,t,e,e=>{var i;let s,n;return i=t.head,n=(s=this.state.charCategorizer(i))(e),t=>{let e=s(t);return n==l.Je.Space&&(n=e),n==e}}))}visualLineSide(t,e){let i=this.bidiSpans(t),s=this.textDirectionAt(t.from),n=i[e?i.length-1:0];return l.OF.cursor(n.side(e,s)+t.from,n.forward(!e,s)?1:-1)}moveToLineBoundary(t,e,i=!0){return function(t,e,i,s){let n=tQ(t,e.head,e.assoc||-1),o=s&&n.type==L.Text&&(t.lineWrapping||n.widgetLineBreaks)?t.coordsAtPos(e.assoc<0&&e.head>n.from?e.head-1:e.head):null;if(o){let e=t.dom.getBoundingClientRect(),s=t.textDirectionAt(n.from),r=t.posAtCoords({x:i==(s==tt.LTR)?e.right-1:e.left+1,y:(o.top+o.bottom)/2});if(null!=r)return l.OF.cursor(r,i?-1:1)}return l.OF.cursor(i?n.to:n.from,i?-1:1)}(this,t,e,i)}moveVertically(t,e,i){return t2(this,t,function(t,e,i,s){let n=e.head,o=i?1:-1;if(n==(i?t.state.doc.length:0))return l.OF.cursor(n,e.assoc);let r=e.goalColumn,h,a=t.contentDOM.getBoundingClientRect(),c=t.coordsAtPos(n,e.assoc||-1),d=t.documentTop;if(c)null==r&&(r=c.left-a.left),h=o<0?c.top:c.bottom;else{let e=t.viewState.lineBlockAt(n);null==r&&(r=Math.min(a.right-a.left,t.defaultCharacterWidth*(n-e.from))),h=(o<0?e.top:e.bottom)+d}let u=a.left+r,f=null!=s?s:t.viewState.heightOracle.textHeight>>1;for(let e=0;;e+=10){let i=t8(t,{x:u,y:h+(f+e)*o},!1,o);return l.OF.cursor(i.pos,i.assoc,void 0,r)}}(this,t,e,i))}domAtPos(t,e=1){return this.docView.domAtPos(t,e)}posAtDOM(t,e=0){return this.docView.posFromDOM(t,e)}posAtCoords(t,e=!0){this.readMeasured();let i=t8(this,t,e);return i&&i.pos}posAndSideAtCoords(t,e=!0){return this.readMeasured(),t8(this,t,e)}coordsAtPos(t,e=1){this.readMeasured();let i=this.docView.coordsAt(t,e);if(!i||i.left==i.right)return i;let s=this.state.doc.lineAt(t),n=this.bidiSpans(s);return K(i,n[BidiSpan.find(n,t-s.from,-1,e)].dir==tt.LTR==e>0)}coordsForChar(t){return this.readMeasured(),this.docView.coordsForChar(t)}get defaultCharacterWidth(){return this.viewState.heightOracle.charWidth}get defaultLineHeight(){return this.viewState.heightOracle.lineHeight}get textDirection(){return this.viewState.defaultTextDirection}textDirectionAt(t){return!this.state.facet(tS)||tthis.viewport.to?this.textDirection:(this.readMeasured(),this.docView.textDirectionAt(t))}get lineWrapping(){return this.viewState.heightOracle.lineWrapping}bidiSpans(t){if(t.length>ej)return td(t.length);let e=this.textDirectionAt(t.from),i;for(let s of this.bidiCache)if(s.from==t.from&&s.dir==e&&(s.fresh||function t(e,i){if(e.length!=i.length)return!1;for(let s=0;stc.length;)tc[tc.length]=256;let s=[],n=+(e!=te);return function t(e,i,s,n,o,r,l){let h=i%2?2:1;!function(t,e,i,s,n){for(let o=0;o<=s.length;o++){let r=o?s[o-1].to:e,l=o=0;t-=3)if(tl[t+1]==-s){let i=tl[t+2],s=2&i?n:4&i?1&i?o:n:0;s&&(tc[e]=tc[tl[t]]=s),l=t;break}}else if(189==tl.length)break;else tl[l++]=e,tl[l++]=i,tl[l++]=h;else if(2==(r=tc[e])||1==r){let t=r==n;h=+!t;for(let e=l-3;e>=0;e-=3){let i=tl[e+2];if(2&i)break;if(t)tl[e+2]|=2;else{if(4&i)break;tl[e+2]|=4}}}}}(e,o,r,n,h),function(t,e,i,s){for(let n=0,o=s;n<=i.length;n++){let r=n?i[n-1].to:t,l=nh;)e==o&&(e=i[--s].from,o=s?i[s-1].to:t),tc[--e]=c;h=r}else o=r,h++}}}(o,r,n,h),function e(i,s,n,o,r,l,h){let a=o%2?2:1;if(o%2==r%2)for(let c=s,d=0;cc&&h.push(new BidiSpan(c,e.from,p)),t(i,e.direction==te!=!(p%2)?o+1:o,r,e.inner,e.from,e.to,h),c=e.to),g=e.to}else if(g==n||(s?tc[g]!=a:tc[g]==a))break;else g++;f?e(i,c,g,o+1,r,f,h):cs;){let n=!0,u=!1;if(!d||c>l[d-1].to){let t=tc[c-1];t!=a&&(n=!1,u=16==t)}let f=n||1!=a?null:[],p=n?o:o+1,g=c;t:for(;;)if(d&&g==l[d-1].to){if(u)break;let e=l[--d];if(!n)for(let t=e.from,i=d;;){if(t==s)break t;if(i&&l[i-1].to==t)t=l[--i].from;else if(tc[t-1]==a)break t;else break}f?f.push(e):(e.toDate.now()-3e4)&&this.root.activeElement==this.contentDOM}focus(){this.observer.ignore(()=>{$(this.contentDOM),this.docView.updateSelection()})}setRoot(t){this._root!=t&&(this._root=t,this.observer.setWindow((9==t.nodeType?t:t.ownerDocument).defaultView||window),this.mountStyles())}destroy(){for(let t of(this.root.activeElement==this.contentDOM&&this.contentDOM.blur(),this.plugins))t.destroy(this);this.plugins=[],this.inputState.destroy(),this.docView.destroy(),this.dom.remove(),this.observer.destroy(),this.measureScheduled>-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.destroyed=!0}static scrollIntoView(t,e={}){return tC.of(new ScrollTarget("number"==typeof t?l.OF.cursor(t):t,e.y,e.x,e.yMargin,e.xMargin))}scrollSnapshot(){let{scrollTop:t,scrollLeft:e}=this.scrollDOM,i=this.viewState.scrollAnchorAt(t);return tC.of(new ScrollTarget(l.OF.cursor(i.from),"start","start",i.top-t,e,!0))}setTabFocusMode(t){null==t?this.inputState.tabFocusMode=this.inputState.tabFocusMode<0?0:-1:"boolean"==typeof t?this.inputState.tabFocusMode=t?0:-1:0!=this.inputState.tabFocusMode&&(this.inputState.tabFocusMode=Date.now()+t)}static domEventHandlers(t){return ViewPlugin.define(()=>({}),{eventHandlers:t})}static domEventObservers(t){return ViewPlugin.define(()=>({}),{eventObservers:t})}static theme(t,e){let i=h.G.newName(),s=[eR.of(i),tz.of(eW(`.${i}`,t))];return e&&e.dark&&s.push(eB.of(!0)),s}static baseTheme(t){return l.Nb.lowest(tz.of(eW("."+eL,t,eV)))}static findFromDOM(t){var e;let i=t.querySelector(".cm-content"),s=i&&Tile.get(i)||Tile.get(t);return(null==(e=null==s?void 0:s.root)?void 0:e.view)||null}};EditorView.styleModule=tz,EditorView.inputHandler=tv,EditorView.clipboardInputFilter=ty,EditorView.clipboardOutputFilter=tx,EditorView.scrollHandler=tM,EditorView.focusChangeEffect=tb,EditorView.perLineTextDirection=tS,EditorView.exceptionSink=tm,EditorView.updateListener=tw,EditorView.editable=tO,EditorView.mouseSelectionStyle=tg,EditorView.dragMovesSelection=tp,EditorView.clickAddsSelectionRange=tf,EditorView.decorations=tL,EditorView.blockWrappers=tP,EditorView.outerDecorations=tH,EditorView.atomicRanges=tV,EditorView.bidiIsolatedRanges=tW,EditorView.scrollMargins=tN,EditorView.darkTheme=eB,EditorView.cspNonce=l.sj.define({combine:t=>t.length?t[0]:""}),EditorView.contentAttributes=tB,EditorView.editorAttributes=tR,EditorView.lineWrapping=EditorView.contentAttributes.of({class:"cm-lineWrapping"}),EditorView.announce=l.Pe.define();let ej=4096,eG={};let CachedOrder=class CachedOrder{constructor(t,e,i,s,n,o){this.from=t,this.to=e,this.dir=i,this.isolates=s,this.fresh=n,this.order=o}static update(t,e){if(e.empty&&!t.some(t=>t.fresh))return t;let i=[],s=t.length?t[t.length-1].dir:tt.LTR;for(let n=Math.max(0,t.length-10);n=0;n--){let e=s[n],o="function"==typeof e?e(t):e;o&&D(o,i)}return i}let e_=O.mac?"mac":O.windows?"win":O.linux?"linux":"key";function eY(t,e,i){return e.altKey&&(t="Alt-"+t),e.ctrlKey&&(t="Ctrl-"+t),e.metaKey&&(t="Meta-"+t),!1!==i&&e.shiftKey&&(t="Shift-"+t),t}let e$=l.Nb.default(EditorView.domEventHandlers({keydown:(t,e)=>e1(eJ(e.state),t,e,"editor")})),eU=l.sj.define({enables:e$}),eX=new WeakMap;function eJ(t){let e=t.facet(eU),i=eX.get(e);return i||eX.set(e,i=function(t,e=e_){let i=Object.create(null),s=Object.create(null),n=(t,e)=>{let i=s[t];if(null==i)s[t]=e;else if(i!=e)throw Error("Key binding "+t+" is used both as a regular binding and as a multi-stroke prefix")},o=(t,s,o,r,l)=>{var h,a;let c=i[t]||(i[t]=Object.create(null)),d=s.split(/ (?!$)/).map(t=>(function(t,e){let i,s,n,o,r=t.split(/-(?!$)/),l=r[r.length-1];"Space"==l&&(l=" ");for(let t=0;t{let s=eZ={view:e,prefix:i,scope:t};return setTimeout(()=>{eZ==s&&(eZ=null)},4e3),!0}]})}let u=d.join(" ");n(u,!1);let f=c[u]||(c[u]={preventDefault:!1,stopPropagation:!1,run:(null==(a=null==(h=c._any)?void 0:h.run)?void 0:a.slice())||[]});o&&f.run.push(o),r&&(f.preventDefault=!0),l&&(f.stopPropagation=!0)};for(let s of t){let t=s.scope?s.scope.split(" "):["editor"];if(s.any)for(let e of t){let t=i[e]||(i[e]=Object.create(null));t._any||(t._any={preventDefault:!1,stopPropagation:!1,run:[]});let{any:n}=s;for(let e in t)t[e].run.push(t=>n(t,e0))}let n=s[e]||s.key;if(n)for(let e of t)o(e,n,s.run,s.preventDefault,s.stopPropagation),s.shift&&o(e,"Shift-"+n,s.shift,s.preventDefault,s.stopPropagation)}return i}(e.reduce((t,e)=>t.concat(e),[]))),i}function eQ(t,e,i){return e1(eJ(t.state),e,t,i)}let eZ=null,e0=null;function e1(t,e,i,s){var n;e0=e;let o=("Esc"==(n=!(p&&(e.ctrlKey||e.altKey||e.metaKey)||f&&e.shiftKey&&e.key&&1==e.key.length||"Unidentified"==e.key)&&e.key||(e.shiftKey?c:a)[e.keyCode]||e.key||"Unidentified")&&(n="Escape"),"Del"==n&&(n="Delete"),"Left"==n&&(n="ArrowLeft"),"Up"==n&&(n="ArrowUp"),"Right"==n&&(n="ArrowRight"),"Down"==n&&(n="ArrowDown"),n),r=(0,l.vS)(o,0),h=(0,l.Fh)(r)==o.length&&" "!=o,d="",u=!1,g=!1,m=!1;eZ&&eZ.view==i&&eZ.scope==s&&(d=eZ.prefix+" ",0>ee.indexOf(e.keyCode)&&(g=!0,eZ=null));let w=new Set,v=t=>{if(t){for(let e of t.run)if(!w.has(e)&&(w.add(e),e(i)))return t.stopPropagation&&(m=!0),!0;t.preventDefault&&(t.stopPropagation&&(m=!0),g=!0)}return!1},b=t[s],y,x;return b&&(v(b[d+eY(o,e,!h)])?u=!0:h&&(e.altKey||e.metaKey||e.ctrlKey)&&!(O.windows&&e.ctrlKey&&e.altKey)&&!(O.mac&&e.altKey&&!(e.ctrlKey||e.metaKey))&&(y=a[e.keyCode])&&y!=o?v(b[d+eY(y,e,!0)])?u=!0:e.shiftKey&&(x=c[e.keyCode])!=o&&x!=y&&v(b[d+eY(x,e,!1)])&&(u=!0):h&&e.shiftKey&&v(b[d+eY(o,e,!0)])&&(u=!0),!u&&v(b._any)&&(u=!0)),g&&(u=!0),u&&m&&e.stopPropagation(),e0=null,u}let RectangleMarker=class RectangleMarker{constructor(t,e,i,s,n){this.className=t,this.left=e,this.top=i,this.width=s,this.height=n}draw(){let t=document.createElement("div");return t.className=this.className,this.adjust(t),t}update(t,e){return e.className==this.className&&(this.adjust(t),!0)}adjust(t){t.style.left=this.left+"px",t.style.top=this.top+"px",null!=this.width&&(t.style.width=this.width+"px"),t.style.height=this.height+"px"}eq(t){return this.left==t.left&&this.top==t.top&&this.width==t.width&&this.height==t.height&&this.className==t.className}static forRange(t,e,i){if(!i.empty)return function(t,e,i){if(i.to<=t.viewport.from||i.from>=t.viewport.to)return[];let s=Math.max(i.from,t.viewport.from),n=Math.min(i.to,t.viewport.to),o=t.textDirection==tt.LTR,r=t.contentDOM,l=r.getBoundingClientRect(),h=e2(t),a=r.querySelector(".cm-line"),c=a&&window.getComputedStyle(a),d=l.left+(c?parseInt(c.paddingLeft)+Math.min(0,parseInt(c.textIndent)):0),u=l.right-(c?parseInt(c.paddingRight):0),f=tQ(t,s,1),p=tQ(t,n,-1),g=f.type==L.Text?f:null,m=p.type==L.Text?p:null;if(g&&(t.lineWrapping||f.widgetLineBreaks)&&(g=e8(t,s,1,g)),m&&(t.lineWrapping||p.widgetLineBreaks)&&(m=e8(t,n,-1,m)),g&&m&&g.from==m.from&&g.to==m.to)return v(b(i.from,i.to,g));{let e=g?b(i.from,null,g):y(f,!1),s=m?b(null,i.to,m):y(p,!0),n=[];return(g||f).to<(m||p).from-(g&&m?1:0)||f.widgetLineBreaks>1&&e.bottom+t.defaultLineHeight/2a&&s.from=o)break;l>n&&h(Math.max(t,n),null==e&&t<=a,Math.min(l,o),null==i&&l>=c,r.dir)}if((n=s.to+1)>=o)break}return 0==l.length&&h(a,null==e,c,null==i,t.textDirection),{top:n,bottom:r,horizontal:l}}function y(t,e){let i=l.top+(e?t.top:t.bottom);return{top:i,bottom:i,horizontal:[]}}}(t,e,i);{let s=t.coordsAtPos(i.head,i.assoc||1);if(!s)return[];let n=e2(t);return[new RectangleMarker(e,s.left-n.left,s.top-n.top,null,s.bottom-s.top)]}}};function e2(t){let e=t.scrollDOM.getBoundingClientRect();return{left:(t.textDirection==tt.LTR?e.left:e.right-t.scrollDOM.clientWidth*t.scaleX)-t.scrollDOM.scrollLeft*t.scaleX,top:e.top-t.scrollDOM.scrollTop*t.scaleY}}function e8(t,e,i,s){let n=t.coordsAtPos(e,2*i);if(!n)return s;let o=t.dom.getBoundingClientRect(),r=(n.top+n.bottom)/2,l=t.posAtCoords({x:o.left+1,y:r}),h=t.posAtCoords({x:o.right-1,y:r});return null==l||null==h?s:{from:Math.max(s.from,Math.min(l,h)),to:Math.min(s.to,Math.max(l,h))}}let LayerView=class LayerView{constructor(t,e){this.view=t,this.layer=e,this.drawn=[],this.scaleX=1,this.scaleY=1,this.measureReq={read:this.measure.bind(this),write:this.draw.bind(this)},this.dom=t.scrollDOM.appendChild(document.createElement("div")),this.dom.classList.add("cm-layer"),e.above&&this.dom.classList.add("cm-layer-above"),e.class&&this.dom.classList.add(e.class),this.scale(),this.dom.setAttribute("aria-hidden","true"),this.setOrder(t.state),t.requestMeasure(this.measureReq),e.mount&&e.mount(this.dom,t)}update(t){t.startState.facet(e3)!=t.state.facet(e3)&&this.setOrder(t.state),(this.layer.update(t,this.dom)||t.geometryChanged)&&(this.scale(),t.view.requestMeasure(this.measureReq))}docViewUpdate(t){!1!==this.layer.updateOnDocViewUpdate&&t.requestMeasure(this.measureReq)}setOrder(t){let e=0,i=t.facet(e3);for(;e{var i;return i=this.drawn[e],!(t.constructor==i.constructor&&t.eq(i))})){let e=this.dom.firstChild,i=0;for(let s of t)s.update&&e&&s.constructor&&this.drawn[i].constructor&&s.update(e,this.drawn[i])?(e=e.nextSibling,i++):this.dom.insertBefore(s.draw(),e);for(;e;){let t=e.nextSibling;e.remove(),e=t}this.drawn=t,O.safari&&O.safari_version>=26&&(this.dom.style.display=this.dom.firstChild?"":"none")}}destroy(){this.layer.destroy&&this.layer.destroy(this.dom,this.view),this.dom.remove()}};let e3=l.sj.define();function e4(t){return[ViewPlugin.define(e=>new LayerView(e,t)),e3.of(t)]}let e5=l.Pe.define({map:(t,e)=>null==t?null:e.mapPos(t)}),e9=l.sU.define({create:()=>null,update:(t,e)=>(null!=t&&(t=e.changes.mapPos(t)),e.effects.reduce((t,e)=>e.is(e5)?e.value:t,t))}),e6=ViewPlugin.fromClass(class{constructor(t){this.view=t,this.cursor=null,this.measureReq={read:this.readPos.bind(this),write:this.drawCursor.bind(this)}}update(t){var e;let i=t.state.field(e9);null==i?null!=this.cursor&&(null==(e=this.cursor)||e.remove(),this.cursor=null):(this.cursor||(this.cursor=this.view.scrollDOM.appendChild(document.createElement("div")),this.cursor.className="cm-dropCursor"),(t.startState.field(e9)!=i||t.docChanged||t.geometryChanged)&&this.view.requestMeasure(this.measureReq))}readPos(){let{view:t}=this,e=t.state.field(e9),i=null!=e&&t.coordsAtPos(e);if(!i)return null;let s=t.scrollDOM.getBoundingClientRect();return{left:i.left-s.left+t.scrollDOM.scrollLeft*t.scaleX,top:i.top-s.top+t.scrollDOM.scrollTop*t.scaleY,height:i.bottom-i.top}}drawCursor(t){if(this.cursor){let{scaleX:e,scaleY:i}=this.view;t?(this.cursor.style.left=t.left/e+"px",this.cursor.style.top=t.top/i+"px",this.cursor.style.height=t.height/i+"px"):this.cursor.style.left="-100000px"}}destroy(){this.cursor&&this.cursor.remove()}setDropPos(t){this.view.state.field(e9)!=t&&this.view.dispatch({effects:e5.of(t)})}},{eventObservers:{dragover(t){this.setDropPos(this.view.posAtCoords({x:t.clientX,y:t.clientY}))},dragleave(t){t.target!=this.view.contentDOM&&this.view.contentDOM.contains(t.relatedTarget)||this.setDropPos(null)},dragend(){this.setDropPos(null)},drop(){this.setDropPos(null)}}});function e7(){return[e9,e6]}/x/.unicode;let Placeholder=class Placeholder extends WidgetType{constructor(t){super(),this.content=t}toDOM(t){let e=document.createElement("span");return e.className="cm-placeholder",e.style.pointerEvents="none",e.appendChild("string"==typeof this.content?document.createTextNode(this.content):"function"==typeof this.content?this.content(t):this.content.cloneNode(!0)),e.setAttribute("aria-hidden","true"),e}coordsAt(t){let e=t.firstChild?N(t.firstChild):[];if(!e.length)return null;let i=window.getComputedStyle(t.parentNode),s=K(e[0],"rtl"!=i.direction),n=parseInt(i.lineHeight);return s.bottom-s.top>1.5*n?{left:s.left,right:s.right,top:s.top,bottom:s.top+n}:s}ignoreEvent(){return!1}};function it(t){let e=ViewPlugin.fromClass(class{constructor(e){this.view=e,this.placeholder=t?Decoration.set([Decoration.widget({widget:new Placeholder(t),side:1}).range(0)]):Decoration.none}get decorations(){return this.view.state.doc.length?Decoration.none:this.placeholder}},{decorations:t=>t.decorations});return"string"==typeof t?[e,EditorView.contentAttributes.of({"aria-placeholder":t})]:e}let ie="-10000px";let TooltipViewManager=class TooltipViewManager{constructor(t,e,i,s){this.facet=e,this.createTooltipView=i,this.removeTooltipView=s,this.input=t.state.facet(e),this.tooltips=this.input.filter(t=>t);let n=null;this.tooltipViews=this.tooltips.map(t=>n=i(t,n))}update(t,e){var i;let s=t.state.facet(this.facet),n=s.filter(t=>t);if(s===this.input){for(let e of this.tooltipViews)e.update&&e.update(t);return!1}let o=[],r=e?[]:null;for(let i=0;io.indexOf(t)&&(this.removeTooltipView(t),null==(i=t.destroy)||i.call(t));return e&&(r.forEach((t,i)=>e[i]=t),e.length=r.length),this.input=s,this.tooltips=n,this.tooltipViews=o,!0}};function ii(t={}){return io.of(t)}function is(t){let e=t.dom.ownerDocument.documentElement;return{top:0,left:0,bottom:e.clientHeight,right:e.clientWidth}}let io=l.sj.define({combine:t=>{var e,i,s;return{position:O.ios?"absolute":(null==(e=t.find(t=>t.position))?void 0:e.position)||"fixed",parent:(null==(i=t.find(t=>t.parent))?void 0:i.parent)||null,tooltipSpace:(null==(s=t.find(t=>t.tooltipSpace))?void 0:s.tooltipSpace)||is}}}),ir=new WeakMap,il=ViewPlugin.fromClass(class{constructor(t){this.view=t,this.above=[],this.inView=!0,this.madeAbsolute=!1,this.lastTransaction=0,this.measureTimeout=-1;let e=t.state.facet(io);this.position=e.position,this.parent=e.parent,this.classes=t.themeClasses,this.createContainer(),this.measureReq={read:this.readMeasure.bind(this),write:this.writeMeasure.bind(this),key:this},this.resizeObserver="function"==typeof ResizeObserver?new ResizeObserver(()=>this.measureSoon()):null,this.manager=new TooltipViewManager(t,id,(t,e)=>this.createTooltip(t,e),t=>{this.resizeObserver&&this.resizeObserver.unobserve(t.dom),t.dom.remove()}),this.above=this.manager.tooltips.map(t=>!!t.above),this.intersectionObserver="function"==typeof IntersectionObserver?new IntersectionObserver(t=>{Date.now()>this.lastTransaction-50&&t.length>0&&t[t.length-1].intersectionRatio<1&&this.measureSoon()},{threshold:[1]}):null,this.observeIntersection(),t.win.addEventListener("resize",this.measureSoon=this.measureSoon.bind(this)),this.maybeMeasure()}createContainer(){this.parent?(this.container=document.createElement("div"),this.container.style.position="relative",this.container.className=this.view.themeClasses,this.parent.appendChild(this.container)):this.container=this.view.dom}observeIntersection(){if(this.intersectionObserver)for(let t of(this.intersectionObserver.disconnect(),this.manager.tooltipViews))this.intersectionObserver.observe(t.dom)}measureSoon(){this.measureTimeout<0&&(this.measureTimeout=setTimeout(()=>{this.measureTimeout=-1,this.maybeMeasure()},50))}update(t){t.transactions.length&&(this.lastTransaction=Date.now());let e=this.manager.update(t,this.above);e&&this.observeIntersection();let i=e||t.geometryChanged,s=t.state.facet(io);if(s.position!=this.position&&!this.madeAbsolute){for(let t of(this.position=s.position,this.manager.tooltipViews))t.dom.style.position=this.position;i=!0}if(s.parent!=this.parent){for(let t of(this.parent&&this.container.remove(),this.parent=s.parent,this.createContainer(),this.manager.tooltipViews))this.container.appendChild(t.dom);i=!0}else this.parent&&this.view.themeClasses!=this.classes&&(this.classes=this.container.className=this.view.themeClasses);i&&this.maybeMeasure()}createTooltip(t,e){let i=t.create(this.view),s=e?e.dom:null;if(i.dom.classList.add("cm-tooltip"),t.arrow&&!i.dom.querySelector(".cm-tooltip > .cm-tooltip-arrow")){let t=document.createElement("div");t.className="cm-tooltip-arrow",i.dom.appendChild(t)}return i.dom.style.position=this.position,i.dom.style.top=ie,i.dom.style.left="0px",this.container.insertBefore(i.dom,s),i.mount&&i.mount(this.view),this.resizeObserver&&this.resizeObserver.observe(i.dom),i}destroy(){var t,e,i;for(let e of(this.view.win.removeEventListener("resize",this.measureSoon),this.manager.tooltipViews))e.dom.remove(),null==(t=e.destroy)||t.call(e);this.parent&&this.container.remove(),null==(e=this.resizeObserver)||e.disconnect(),null==(i=this.intersectionObserver)||i.disconnect(),clearTimeout(this.measureTimeout)}readMeasure(){let t=1,e=1,i=!1;if("fixed"==this.position&&this.manager.tooltipViews.length){let{dom:t}=this.manager.tooltipViews[0];if(O.safari){let e=t.getBoundingClientRect();i=Math.abs(e.top+1e4)>1||Math.abs(e.left)>1}else i=!!t.offsetParent&&t.offsetParent!=this.container.ownerDocument.body}if(i||"absolute"==this.position)if(this.parent){let i=this.parent.getBoundingClientRect();i.width&&i.height&&(t=i.width/this.parent.offsetWidth,e=i.height/this.parent.offsetHeight)}else({scaleX:t,scaleY:e}=this.view.viewState);let s=this.view.scrollDOM.getBoundingClientRect(),n=tF(this.view);return{visible:{left:s.left+n.left,top:s.top+n.top,right:s.right-n.right,bottom:s.bottom-n.bottom},parent:this.parent?this.container.getBoundingClientRect():this.view.dom.getBoundingClientRect(),pos:this.manager.tooltips.map((t,e)=>{let i=this.manager.tooltipViews[e];return i.getCoords?i.getCoords(t.pos):this.view.coordsAtPos(t.pos)}),size:this.manager.tooltipViews.map(({dom:t})=>t.getBoundingClientRect()),space:this.view.state.facet(io).tooltipSpace(this.view),scaleX:t,scaleY:e,makeAbsolute:i}}writeMeasure(t){var e;if(t.makeAbsolute)for(let t of(this.madeAbsolute=!0,this.position="absolute",this.manager.tooltipViews))t.dom.style.position="absolute";let{visible:i,space:s,scaleX:n,scaleY:o}=t,r=[];for(let l=0;l=Math.min(i.bottom,s.bottom)||d.rightMath.min(i.right,s.right)+.1)){c.style.top=ie;continue}let f=h.arrow?a.dom.querySelector(".cm-tooltip-arrow"):null,p=7*!!f,g=u.right-u.left,m=null!=(e=ir.get(a))?e:u.bottom-u.top,w=a.offset||ic,v=this.view.textDirection==tt.LTR,b=u.width>s.right-s.left?v?s.left:s.right-u.width:v?Math.max(s.left,Math.min(d.left-14*!!f+w.x,s.right-g)):Math.min(Math.max(s.left,d.left-g+14*!!f-w.x),s.right-g),y=this.above[l];!h.strictSide&&(y?d.top-m-p-w.ys.bottom)&&y==s.bottom-d.bottom>d.top-s.top&&(y=this.above[l]=!y);let x=(y?d.top-s.top:s.bottom-d.bottom)-p;if(xb&&t.topS&&(S=y?t.top-m-2-p:t.bottom+p+2);if("absolute"==this.position?(c.style.top=(S-t.parent.top)/o+"px",ih(c,(b-t.parent.left)/n)):(c.style.top=S/o+"px",ih(c,b/n)),f){let t=d.left+(v?w.x:-w.x)-(b+14-7);f.style.left=t/n+"px"}!0!==a.overlap&&r.push({left:b,top:S,right:k,bottom:S+m}),c.classList.toggle("cm-tooltip-above",y),c.classList.toggle("cm-tooltip-below",!y),a.positioned&&a.positioned(t.space)}}maybeMeasure(){if(this.manager.tooltips.length&&(this.view.inView&&this.view.requestMeasure(this.measureReq),this.inView!=this.view.inView)&&(this.inView=this.view.inView,!this.inView))for(let t of this.manager.tooltipViews)t.dom.style.top=ie}},{eventObservers:{scroll(){this.maybeMeasure()}}});function ih(t,e){let i=parseInt(t.style.left,10);(isNaN(i)||Math.abs(e-i)>1)&&(t.style.left=e+"px")}let ia=EditorView.baseTheme({".cm-tooltip":{zIndex:500,boxSizing:"border-box"},"&light .cm-tooltip":{border:"1px solid #bbb",backgroundColor:"#f5f5f5"},"&light .cm-tooltip-section:not(:first-child)":{borderTop:"1px solid #bbb"},"&dark .cm-tooltip":{backgroundColor:"#333338",color:"white"},".cm-tooltip-arrow":{height:"7px",width:"14px",position:"absolute",zIndex:-1,overflow:"hidden","&:before, &:after":{content:"''",position:"absolute",width:0,height:0,borderLeft:"7px solid transparent",borderRight:"7px solid transparent"},".cm-tooltip-above &":{bottom:"-7px","&:before":{borderTop:"7px solid #bbb"},"&:after":{borderTop:"7px solid #f5f5f5",bottom:"1px"}},".cm-tooltip-below &":{top:"-7px","&:before":{borderBottom:"7px solid #bbb"},"&:after":{borderBottom:"7px solid #f5f5f5",top:"1px"}}},"&dark .cm-tooltip .cm-tooltip-arrow":{"&:before":{borderTopColor:"#333338",borderBottomColor:"#333338"},"&:after":{borderTopColor:"transparent",borderBottomColor:"transparent"}}}),ic={x:0,y:0},id=l.sj.define({enables:[il,ia]}),iu=l.sj.define({combine:t=>t.reduce((t,e)=>t.concat(e),[])});let HoverTooltipHost=class HoverTooltipHost{static create(t){return new HoverTooltipHost(t)}constructor(t){this.view=t,this.mounted=!1,this.dom=document.createElement("div"),this.dom.classList.add("cm-tooltip-hover"),this.manager=new TooltipViewManager(t,iu,(t,e)=>this.createHostedView(t,e),t=>t.dom.remove())}createHostedView(t,e){let i=t.create(this.view);return i.dom.classList.add("cm-tooltip-section"),this.dom.insertBefore(i.dom,e?e.dom.nextSibling:this.dom.firstChild),this.mounted&&i.mount&&i.mount(this.view),i}mount(t){for(let e of this.manager.tooltipViews)e.mount&&e.mount(t);this.mounted=!0}positioned(t){for(let e of this.manager.tooltipViews)e.positioned&&e.positioned(t)}update(t){this.manager.update(t)}destroy(){var t;for(let e of this.manager.tooltipViews)null==(t=e.destroy)||t.call(e)}passProp(t){let e;for(let i of this.manager.tooltipViews){let s=i[t];if(void 0!==s){if(void 0===e)e=s;else if(e!==s)return}}return e}get offset(){return this.passProp("offset")}get getCoords(){return this.passProp("getCoords")}get overlap(){return this.passProp("overlap")}get resize(){return this.passProp("resize")}};let ip=id.compute([iu],t=>{let e=t.facet(iu);return 0===e.length?null:{pos:Math.min(...e.map(t=>t.pos)),end:Math.max(...e.map(t=>{var e;return null!=(e=t.end)?e:t.pos})),create:HoverTooltipHost.create,above:e[0].above,arrow:e.some(t=>t.arrow)}});let HoverPlugin=class HoverPlugin{constructor(t,e,i,s,n){this.view=t,this.source=e,this.field=i,this.setHover=s,this.hoverTime=n,this.hoverTimeout=-1,this.restartTimeout=-1,this.pending=null,this.lastMove={x:0,y:0,target:t.dom,time:0},this.checkHover=this.checkHover.bind(this),t.dom.addEventListener("mouseleave",this.mouseleave=this.mouseleave.bind(this)),t.dom.addEventListener("mousemove",this.mousemove=this.mousemove.bind(this))}update(){this.pending&&(this.pending=null,clearTimeout(this.restartTimeout),this.restartTimeout=setTimeout(()=>this.startHover(),20))}get active(){return this.view.state.field(this.field)}checkHover(){if(this.hoverTimeout=-1,this.active.length)return;let t=Date.now()-this.lastMove.time;ti.bottom||e.xi.right+t.defaultCharacterWidth)return;let o=t.bidiSpans(t.state.doc.lineAt(s)).find(t=>t.from<=s&&t.to>=s),r=o&&o.dir==tt.RTL?-1:1;n=e.x{this.pending==e&&(this.pending=null,i&&!(Array.isArray(i)&&!i.length)&&t.dispatch({effects:this.setHover.of(Array.isArray(i)?i:[i])}))},e=>tA(t.state,e,"hover tooltip"))}else o&&!(Array.isArray(o)&&!o.length)&&t.dispatch({effects:this.setHover.of(Array.isArray(o)?o:[o])})}get tooltip(){let t=this.view.plugin(il),e=t?t.manager.tooltips.findIndex(t=>t.create==HoverTooltipHost.create):-1;return e>-1?t.manager.tooltipViews[e]:null}mousemove(t){var e,i;this.lastMove={x:t.clientX,y:t.clientY,target:t.target,time:Date.now()},this.hoverTimeout<0&&(this.hoverTimeout=setTimeout(this.checkHover,this.hoverTime));let{active:s,tooltip:n}=this;if(s.length&&n&&!function(t,e){let{left:i,right:s,top:n,bottom:o}=t.getBoundingClientRect(),r;if(r=t.querySelector(".cm-tooltip-arrow")){let t=r.getBoundingClientRect();n=Math.min(t.top,n),o=Math.max(t.bottom,o)}return e.clientX>=i-4&&e.clientX<=s+4&&e.clientY>=n-4&&e.clientY<=o+4}(n.dom,t)||this.pending){let{pos:n}=s[0]||this.pending,o=null!=(i=null==(e=s[0])?void 0:e.end)?i:n;(n==o?this.view.posAtCoords(this.lastMove)!=n:!function(t,e,i,s,n){let o=t.scrollDOM.getBoundingClientRect(),r=t.documentTop+t.documentPadding.top+t.contentHeight;if(o.left>s||o.rightn||Math.min(o.bottom,r)=e&&l<=i}(this.view,n,o,t.clientX,t.clientY))&&(this.view.dispatch({effects:this.setHover.of([])}),this.pending=null)}}mouseleave(t){clearTimeout(this.hoverTimeout),this.hoverTimeout=-1;let{active:e}=this;if(e.length){let{tooltip:e}=this;e&&e.dom.contains(t.relatedTarget)?this.watchTooltipLeave(e.dom):this.view.dispatch({effects:this.setHover.of([])})}}watchTooltipLeave(t){let e=i=>{t.removeEventListener("mouseleave",e),this.active.length&&!this.view.dom.contains(i.relatedTarget)&&this.view.dispatch({effects:this.setHover.of([])})};t.addEventListener("mouseleave",e)}destroy(){clearTimeout(this.hoverTimeout),clearTimeout(this.restartTimeout),this.view.dom.removeEventListener("mouseleave",this.mouseleave),this.view.dom.removeEventListener("mousemove",this.mousemove)}};function ig(t,e={}){let i=l.Pe.define(),s=l.sU.define({create:()=>[],update(t,s){if(t.length&&(e.hideOnChange&&(s.docChanged||s.selection)?t=[]:e.hideOn&&(t=t.filter(t=>!e.hideOn(s,t))),s.docChanged)){let e=[];for(let i of t){let t=s.changes.mapPos(i.pos,-1,l.iR.TrackDel);if(null!=t){let n=Object.assign(Object.create(null),i);n.pos=t,null!=n.end&&(n.end=s.changes.mapPos(n.end)),e.push(n)}}t=e}for(let e of s.effects)e.is(i)&&(t=e.value),e.is(iw)&&(t=[]);return t},provide:t=>iu.from(t)});return{active:s,extension:[s,ViewPlugin.define(n=>new HoverPlugin(n,t,s,i,e.hoverTime||300)),ip]}}function im(t,e){let i=t.plugin(il);if(!i)return null;let s=i.manager.tooltips.indexOf(e);return s<0?null:i.manager.tooltipViews[s]}let iw=l.Pe.define(),iv=l.sj.define({combine(t){let e,i;for(let s of t)e=e||s.topContainer,i=i||s.bottomContainer;return{topContainer:e,bottomContainer:i}}});function ib(t,e){let i=t.plugin(iy),s=i?i.specs.indexOf(e):-1;return s>-1?i.panels[s]:null}let iy=ViewPlugin.fromClass(class{constructor(t){this.input=t.state.facet(iS),this.specs=this.input.filter(t=>t),this.panels=this.specs.map(e=>e(t));let e=t.state.facet(iv);for(let i of(this.top=new PanelGroup(t,!0,e.topContainer),this.bottom=new PanelGroup(t,!1,e.bottomContainer),this.top.sync(this.panels.filter(t=>t.top)),this.bottom.sync(this.panels.filter(t=>!t.top)),this.panels))i.dom.classList.add("cm-panel"),i.mount&&i.mount()}update(t){let e=t.state.facet(iv);this.top.container!=e.topContainer&&(this.top.sync([]),this.top=new PanelGroup(t.view,!0,e.topContainer)),this.bottom.container!=e.bottomContainer&&(this.bottom.sync([]),this.bottom=new PanelGroup(t.view,!1,e.bottomContainer)),this.top.syncClasses(),this.bottom.syncClasses();let i=t.state.facet(iS);if(i!=this.input){let e=i.filter(t=>t),s=[],n=[],o=[],r=[];for(let i of e){let e=this.specs.indexOf(i),l;e<0?(l=i(t.view),r.push(l)):(l=this.panels[e]).update&&l.update(t),s.push(l),(l.top?n:o).push(l)}for(let t of(this.specs=e,this.panels=s,this.top.sync(n),this.bottom.sync(o),r))t.dom.classList.add("cm-panel"),t.mount&&t.mount()}else for(let e of this.panels)e.update&&e.update(t)}destroy(){this.top.sync([]),this.bottom.sync([])}},{provide:t=>EditorView.scrollMargins.of(e=>{let i=e.plugin(t);return i&&{top:i.top.scrollMargin(),bottom:i.bottom.scrollMargin()}})});let PanelGroup=class PanelGroup{constructor(t,e,i){this.view=t,this.top=e,this.container=i,this.dom=void 0,this.classes="",this.panels=[],this.syncClasses()}sync(t){for(let e of this.panels)e.destroy&&0>t.indexOf(e)&&e.destroy();this.panels=t,this.syncDOM()}syncDOM(){if(0==this.panels.length){this.dom&&(this.dom.remove(),this.dom=void 0);return}if(!this.dom){this.dom=document.createElement("div"),this.dom.className=this.top?"cm-panels cm-panels-top":"cm-panels cm-panels-bottom",this.dom.style[this.top?"top":"bottom"]="0";let t=this.container||this.view.dom;t.insertBefore(this.dom,this.top?t.firstChild:null)}let t=this.dom.firstChild;for(let e of this.panels)if(e.dom.parentNode==this.dom){for(;t!=e.dom;)t=ix(t);t=t.nextSibling}else this.dom.insertBefore(e.dom,t);for(;t;)t=ix(t)}scrollMargin(){return!this.dom||this.container?0:Math.max(0,this.top?this.dom.getBoundingClientRect().bottom-Math.max(0,this.view.scrollDOM.getBoundingClientRect().top):Math.min(innerHeight,this.view.scrollDOM.getBoundingClientRect().bottom)-this.dom.getBoundingClientRect().top)}syncClasses(){if(this.container&&this.classes!=this.view.themeClasses){for(let t of this.classes.split(" "))t&&this.container.classList.remove(t);for(let t of(this.classes=this.view.themeClasses).split(" "))t&&this.container.classList.add(t)}}};function ix(t){let e=t.nextSibling;return t.remove(),e}let iS=l.sj.define({enables:iy});let GutterMarker=class GutterMarker extends l.FB{compare(t){return this==t||this.constructor==t.constructor&&this.eq(t)}eq(t){return!1}destroy(t){}};GutterMarker.prototype.elementClass="",GutterMarker.prototype.toDOM=void 0,GutterMarker.prototype.mapMode=l.iR.TrackBefore,GutterMarker.prototype.startSide=GutterMarker.prototype.endSide=-1,GutterMarker.prototype.point=!0;let ik=l.sj.define(),iM=l.sj.define(),iC={class:"",renderEmptyElements:!1,elementStyle:"",markers:()=>l.om.empty,lineMarker:()=>null,widgetMarker:()=>null,lineMarkerChange:null,initialSpacer:null,updateSpacer:null,domEventHandlers:{},side:"before"},iT=l.sj.define();function iA(t){return[iD(),iT.of({...iC,...t})]}let iO=l.sj.define({combine:t=>t.some(t=>t)});function iD(t){let e=[iE];return t&&!1===t.fixed&&e.push(iO.of(!0)),e}let iE=ViewPlugin.fromClass(class{constructor(t){for(let e of(this.view=t,this.domAfter=null,this.prevViewport=t.viewport,this.dom=document.createElement("div"),this.dom.className="cm-gutters cm-gutters-before",this.dom.setAttribute("aria-hidden","true"),this.dom.style.minHeight=this.view.contentHeight/this.view.scaleY+"px",this.gutters=t.state.facet(iT).map(e=>new SingleGutterView(t,e)),this.fixed=!t.state.facet(iO),this.gutters))"after"==e.config.side?this.getDOMAfter().appendChild(e.dom):this.dom.appendChild(e.dom);this.fixed&&(this.dom.style.position="sticky"),this.syncGutters(!1),t.scrollDOM.insertBefore(this.dom,t.contentDOM)}getDOMAfter(){return this.domAfter||(this.domAfter=document.createElement("div"),this.domAfter.className="cm-gutters cm-gutters-after",this.domAfter.setAttribute("aria-hidden","true"),this.domAfter.style.minHeight=this.view.contentHeight/this.view.scaleY+"px",this.domAfter.style.position=this.fixed?"sticky":"",this.view.scrollDOM.appendChild(this.domAfter)),this.domAfter}update(t){if(this.updateGutters(t)){let e=this.prevViewport,i=t.view.viewport,s=Math.min(e.to,i.to)-Math.max(e.from,i.from);this.syncGutters(s<(i.to-i.from)*.8)}if(t.geometryChanged){let t=this.view.contentHeight/this.view.scaleY+"px";this.dom.style.minHeight=t,this.domAfter&&(this.domAfter.style.minHeight=t)}this.view.state.facet(iO)!=!this.fixed&&(this.fixed=!this.fixed,this.dom.style.position=this.fixed?"sticky":"",this.domAfter&&(this.domAfter.style.position=this.fixed?"sticky":"")),this.prevViewport=t.view.viewport}syncGutters(t){let e=this.dom.nextSibling;t&&(this.dom.remove(),this.domAfter&&this.domAfter.remove());let i=l.om.iter(this.view.state.facet(ik),this.view.viewport.from),s=[],n=this.gutters.map(t=>new UpdateContext(t,this.view.viewport,-this.view.documentPadding.top));for(let t of this.view.viewportLineBlocks)if(s.length&&(s=[]),Array.isArray(t.type)){let e=!0;for(let o of t.type)if(o.type==L.Text&&e){for(let t of(iB(i,s,o.from),n))t.line(this.view,o,s);e=!1}else if(o.widget)for(let t of n)t.widget(this.view,o)}else if(t.type==L.Text)for(let e of(iB(i,s,t.from),n))e.line(this.view,t,s);else if(t.widget)for(let e of n)e.widget(this.view,t);for(let t of n)t.finish();t&&(this.view.scrollDOM.insertBefore(this.dom,e),this.domAfter&&this.view.scrollDOM.appendChild(this.domAfter))}updateGutters(t){let e=t.startState.facet(iT),i=t.state.facet(iT),s=t.docChanged||t.heightChanged||t.viewportChanged||!l.om.eq(t.startState.facet(ik),t.state.facet(ik),t.view.viewport.from,t.view.viewport.to);if(e==i)for(let e of this.gutters)e.update(t)&&(s=!0);else{s=!0;let n=[];for(let s of i){let i=e.indexOf(s);i<0?n.push(new SingleGutterView(this.view,s)):(this.gutters[i].update(t),n.push(this.gutters[i]))}for(let t of this.gutters)t.dom.remove(),0>n.indexOf(t)&&t.destroy();for(let t of n)"after"==t.config.side?this.getDOMAfter().appendChild(t.dom):this.dom.appendChild(t.dom);this.gutters=n}return s}destroy(){for(let t of this.gutters)t.destroy();this.dom.remove(),this.domAfter&&this.domAfter.remove()}},{provide:t=>EditorView.scrollMargins.of(e=>{let i=e.plugin(t);if(!i||0==i.gutters.length||!i.fixed)return null;let s=i.dom.offsetWidth*e.scaleX,n=i.domAfter?i.domAfter.offsetWidth*e.scaleX:0;return e.textDirection==tt.LTR?{left:s,right:n}:{right:s,left:n}})});function iR(t){return Array.isArray(t)?t:[t]}function iB(t,e,i){for(;t.value&&t.from<=i;)t.from==i&&e.push(t.value),t.next()}let UpdateContext=class UpdateContext{constructor(t,e,i){this.gutter=t,this.height=i,this.i=0,this.cursor=l.om.iter(t.markers,e.from)}addElement(t,e,i){let{gutter:s}=this,n=(e.top-this.height)/t.scaleY,o=e.height/t.scaleY;if(this.i==s.elements.length){let e=new GutterElement(t,o,n,i);s.elements.push(e),s.dom.appendChild(e.dom)}else s.elements[this.i].update(t,o,n,i);this.height=e.bottom,this.i++}line(t,e,i){let s=[];iB(this.cursor,s,e.from),i.length&&(s=s.concat(i));let n=this.gutter.config.lineMarker(t,e,s);n&&s.unshift(n);let o=this.gutter;(0!=s.length||o.config.renderEmptyElements)&&this.addElement(t,e,s)}widget(t,e){let i=this.gutter.config.widgetMarker(t,e.widget,e),s=i?[i]:null;for(let i of t.state.facet(iM)){let n=i(t,e.widget,e);n&&(s||(s=[])).push(n)}s&&this.addElement(t,e,s)}finish(){let t=this.gutter;for(;t.elements.length>this.i;){let e=t.elements.pop();t.dom.removeChild(e.dom),e.destroy()}}};let SingleGutterView=class SingleGutterView{constructor(t,e){for(let i in this.view=t,this.config=e,this.elements=[],this.spacer=null,this.dom=document.createElement("div"),this.dom.className="cm-gutter"+(this.config.class?" "+this.config.class:""),e.domEventHandlers)this.dom.addEventListener(i,s=>{let n=s.target,o;if(n!=this.dom&&this.dom.contains(n)){for(;n.parentNode!=this.dom;)n=n.parentNode;let t=n.getBoundingClientRect();o=(t.top+t.bottom)/2}else o=s.clientY;let r=t.lineBlockAtHeight(o-t.documentTop);e.domEventHandlers[i](t,r,s)&&s.preventDefault()});this.markers=iR(e.markers(t)),e.initialSpacer&&(this.spacer=new GutterElement(t,0,0,[e.initialSpacer(t)]),this.dom.appendChild(this.spacer.dom),this.spacer.dom.style.cssText+="visibility: hidden; pointer-events: none")}update(t){let e=this.markers;if(this.markers=iR(this.config.markers(t.view)),this.spacer&&this.config.updateSpacer){let e=this.config.updateSpacer(this.spacer.markers[0],t);e!=this.spacer.markers[0]&&this.spacer.update(t.view,0,0,[e])}let i=t.view.viewport;return!l.om.eq(this.markers,e,i.from,i.to)||!!this.config.lineMarkerChange&&this.config.lineMarkerChange(t)}destroy(){for(let t of this.elements)t.destroy()}};let GutterElement=class GutterElement{constructor(t,e,i,s){this.height=-1,this.above=0,this.markers=[],this.dom=document.createElement("div"),this.dom.className="cm-gutterElement",this.update(t,e,i,s)}update(t,e,i,s){this.height!=e&&(this.height=e,this.dom.style.height=e+"px"),this.above!=i&&(this.dom.style.marginTop=(this.above=i)?i+"px":""),!function(t,e){if(t.length!=e.length)return!1;for(let i=0;i(0,l.QR)(t,{formatNumber:String,domEventHandlers:{}},{domEventHandlers(t,e){let i=Object.assign({},t);for(let t in e){let s=i[t],n=e[t];i[t]=s?(t,e,i)=>s(t,e,i)||n(t,e,i):n}return i}})});let NumberMarker=class NumberMarker extends GutterMarker{constructor(t){super(),this.number=t}eq(t){return this.number==t.number}toDOM(){return document.createTextNode(this.number)}};function iV(t,e){return t.state.facet(iH).formatNumber(e,t.state)}let iW=iT.compute([iH],t=>({class:"cm-lineNumbers",renderEmptyElements:!1,markers:t=>t.state.facet(iL),lineMarker:(t,e,i)=>i.some(t=>t.toDOM)?null:new NumberMarker(iV(t,t.state.doc.lineAt(e.from).number)),widgetMarker:(t,e,i)=>{for(let s of t.state.facet(iP)){let n=s(t,e,i);if(n)return n}return null},lineMarkerChange:t=>t.startState.facet(iH)!=t.state.facet(iH),initialSpacer:t=>new NumberMarker(iV(t,iN(t.state.doc.lines))),updateSpacer(t,e){let i=iV(e.view,iN(e.view.state.doc.lines));return i==t.number?t:new NumberMarker(i)},domEventHandlers:t.facet(iH).domEventHandlers,side:"before"}));function iI(t={}){return[iH.of(t),iD(),iW]}function iN(t){let e=9;for(;e{let s;i.d(e,{YH:()=>Annotation,Gu:()=>ChangeDesc,VR:()=>ChangeSet,Je:()=>U,xx:()=>Compartment,OF:()=>EditorSelection,$t:()=>EditorState,sj:()=>Facet,iR:()=>S,Nb:()=>H,om:()=>RangeSet,vB:()=>RangeSetBuilder,FB:()=>RangeValue,Pe:()=>StateEffect,sU:()=>StateField,EY:()=>Text,ZX:()=>Transaction,vS:()=>m,Fh:()=>v,QR:()=>J,y$:()=>tr,zK:()=>g,kn:()=>tl,MK:()=>w});let n=[],o=[],r="lc,34,7n,7,7b,19,,,,2,,2,,,20,b,1c,l,g,,2t,7,2,6,2,2,,4,z,,u,r,2j,b,1m,9,9,,o,4,,9,,3,,5,17,3,3b,f,,w,1j,,,,4,8,4,,3,7,a,2,t,,1m,,,,2,4,8,,9,,a,2,q,,2,2,1l,,4,2,4,2,2,3,3,,u,2,3,,b,2,1l,,4,5,,2,4,,k,2,m,6,,,1m,,,2,,4,8,,7,3,a,2,u,,1n,,,,c,,9,,14,,3,,1l,3,5,3,,4,7,2,b,2,t,,1m,,2,,2,,3,,5,2,7,2,b,2,s,2,1l,2,,,2,4,8,,9,,a,2,t,,20,,4,,2,3,,,8,,29,,2,7,c,8,2q,,2,9,b,6,22,2,r,,,,,,1j,e,,5,,2,5,b,,10,9,,2u,4,,6,,2,2,2,p,2,4,3,g,4,d,,2,2,6,,f,,jj,3,qa,3,t,3,t,2,u,2,1s,2,,7,8,,2,b,9,,19,3,3b,2,y,,3a,3,4,2,9,,6,3,63,2,2,,1m,,,7,,,,,2,8,6,a,2,,1c,h,1r,4,1c,7,,,5,,14,9,c,2,w,4,2,2,,3,1k,,,2,3,,,3,1m,8,2,2,48,3,,d,,7,4,,6,,3,2,5i,1m,,5,ek,,5f,x,2da,3,3x,,2o,w,fe,6,2x,2,n9w,4,,a,w,2,28,2,7k,,3,,4,,p,2,5,,47,2,q,i,d,,12,8,p,b,1a,3,1c,,2,4,2,2,13,,1v,6,2,2,2,2,c,,8,,1b,,1f,,,3,2,2,5,2,,,16,2,8,,6m,,2,,4,,fn4,,kh,g,g,g,a6,2,gt,,6a,,45,5,1ae,3,,2,5,4,14,3,4,,4l,2,fx,4,ar,2,49,b,4w,,1i,f,1k,3,1d,4,2,2,1x,3,10,5,,8,1q,,c,2,1g,9,a,4,2,,2n,3,2,,,2,6,,4g,,3,8,l,2,1l,2,,,,,m,,e,7,3,5,5f,8,2,3,,,n,,29,,2,6,,,2,,,2,,2,6j,,2,4,6,2,,2,r,2,2d,8,2,,,2,2y,,,,2,6,,,2t,3,2,4,,5,77,9,,2,6t,,a,2,,,4,,40,4,2,2,4,,w,a,14,6,2,4,8,,9,6,2,3,1a,d,,2,ba,7,,6,,,2a,m,2,7,,2,,2,3e,6,3,,,2,,7,,,20,2,3,,,,9n,2,f0b,5,1n,7,t4,,1r,4,29,,f5k,2,43q,,,3,4,5,8,8,2,7,u,4,44,3,1iz,1j,4,1e,8,,e,,m,5,,f,11s,7,,h,2,7,,2,,5,79,7,c5,4,15s,7,31,7,240,5,gx7k,2o,3k,6o".split(",").map(t=>t?parseInt(t,36):1);for(let t=0,e=0;t=127462&&t<=127487}function h(t,e,i){if(e==t.length)return e;e&&c(t.charCodeAt(e))&&d(t.charCodeAt(e-1))&&e--;let s=a(t,e);for(e+=u(s);e>1;if(t=o[s]))return!0;e=s+1}if(e==i)return!1}}(r))e+=u(r),s=r;else if(l(r)){let i=0,s=e-2;for(;s>=0&&l(a(t,s));)i++,s-=2;if(i%2==0)break;e+=2}else break}return e}function a(t,e){let i=t.charCodeAt(e);if(!d(i)||e+1==t.length)return i;let s=t.charCodeAt(e+1);return c(s)?(i-55296<<10)+(s-56320)+65536:i}function c(t){return t>=56320&&t<57344}function d(t){return t>=55296&&t<56320}function u(t){return t<65536?1:2}let Text=class Text{lineAt(t){if(t<0||t>this.length)throw RangeError(`Invalid position ${t} in document of length ${this.length}`);return this.lineInner(t,!1,1,0)}line(t){if(t<1||t>this.lines)throw RangeError(`Invalid line number ${t} in ${this.lines}-line document`);return this.lineInner(t,!0,1,0)}replace(t,e,i){[t,e]=p(this,t,e);let s=[];return this.decompose(0,t,s,2),i.length&&i.decompose(0,i.length,s,3),this.decompose(e,this.length,s,1),TextNode.from(s,this.length-(e-t)+i.length)}append(t){return this.replace(this.length,this.length,t)}slice(t,e=this.length){[t,e]=p(this,t,e);let i=[];return this.decompose(t,e,i,0),TextNode.from(i,e-t)}eq(t){if(t==this)return!0;if(t.length!=this.length||t.lines!=this.lines)return!1;let e=this.scanIdentical(t,1),i=this.length-this.scanIdentical(t,-1),s=new RawTextCursor(this),n=new RawTextCursor(t);for(let t=e,o=e;;){if(s.next(t),n.next(t),t=0,s.lineBreak!=n.lineBreak||s.done!=n.done||s.value!=n.value)return!1;if(o+=s.value.length,s.done||o>=i)return!0}}iter(t=1){return new RawTextCursor(this,t)}iterRange(t,e=this.length){return new PartialTextCursor(this,t,e)}iterLines(t,e){let i;if(null==t)i=this.iter();else{null==e&&(e=this.lines+1);let s=this.line(t).from;i=this.iterRange(s,Math.max(s,e==this.lines+1?this.length:e<=1?0:this.line(e-1).to))}return new LineCursor(i)}toString(){return this.sliceString(0)}toJSON(){let t=[];return this.flatten(t),t}static of(t){if(0==t.length)throw RangeError("A document must have at least one line");return 1!=t.length||t[0]?t.length<=32?new TextLeaf(t):TextNode.from(TextLeaf.split(t,[])):Text.empty}};let TextLeaf=class TextLeaf extends Text{constructor(t,e=function(t){let e=-1;for(let i of t)e+=i.length+1;return e}(t)){super(),this.text=t,this.length=e}get lines(){return this.text.length}get children(){return null}lineInner(t,e,i,s){for(let n=0;;n++){let o=this.text[n],r=s+o.length;if((e?i:r)>=t)return new Line(s,r,i,o);s=r+1,i++}}decompose(t,e,i,s){var n;let o=t<=0&&e>=this.length?this:new TextLeaf((n=this.text,f(n,[""],t,e)),Math.min(e,this.length)-Math.max(0,t));if(1&s){let t=i.pop(),e=f(o.text,t.text.slice(),0,o.length);if(e.length<=32)i.push(new TextLeaf(e,t.length+o.length));else{let t=e.length>>1;i.push(new TextLeaf(e.slice(0,t)),new TextLeaf(e.slice(t)))}}else i.push(o)}replace(t,e,i){var s;if(!(i instanceof TextLeaf))return super.replace(t,e,i);[t,e]=p(this,t,e);let n=f(this.text,f(i.text,(s=this.text,f(s,[""],0,t))),e),o=this.length+i.length-(e-t);return n.length<=32?new TextLeaf(n,o):TextNode.from(TextLeaf.split(n,[]),o)}sliceString(t,e=this.length,i=` +`){[t,e]=p(this,t,e);let s="";for(let n=0,o=0;n<=e&&ot&&o&&(s+=i),tn&&(s+=r.slice(Math.max(0,t-n),e-n)),n=l+1}return s}flatten(t){for(let e of this.text)t.push(e)}scanIdentical(){return 0}static split(t,e){let i=[],s=-1;for(let n of t)i.push(n),s+=n.length+1,32==i.length&&(e.push(new TextLeaf(i,s)),i=[],s=-1);return s>-1&&e.push(new TextLeaf(i,s)),e}};let TextNode=class TextNode extends Text{constructor(t,e){for(let i of(super(),this.children=t,this.length=e,this.lines=0,t))this.lines+=i.lines}lineInner(t,e,i,s){for(let n=0;;n++){let o=this.children[n],r=s+o.length,l=i+o.lines-1;if((e?l:r)>=t)return o.lineInner(t,e,i,s);s=r+1,i=l+1}}decompose(t,e,i,s){for(let n=0,o=0;o<=e&&n=o){let n=s&(o<=t|2*(l>=e));o>=t&&l<=e&&!n?i.push(r):r.decompose(t-o,e-o,i,n)}o=l+1}}replace(t,e,i){if([t,e]=p(this,t,e),i.lines=n&&e<=r){let l=o.replace(t-n,e-n,i),h=this.lines-o.lines+l.lines;if(l.lines>4&&l.lines>h>>6){let n=this.children.slice();return n[s]=l,new TextNode(n,this.length-(e-t)+i.length)}return super.replace(n,r,l)}n=r+1}return super.replace(t,e,i)}sliceString(t,e=this.length,i=` +`){[t,e]=p(this,t,e);let s="";for(let n=0,o=0;nt&&n&&(s+=i),to&&(s+=r.sliceString(t-o,e-o,i)),o=l+1}return s}flatten(t){for(let e of this.children)e.flatten(t)}scanIdentical(t,e){if(!(t instanceof TextNode))return 0;let i=0,[s,n,o,r]=e>0?[0,0,this.children.length,t.children.length]:[this.children.length-1,t.children.length-1,-1,-1];for(;;s+=e,n+=e){if(s==o||n==r)return i;let l=this.children[s],h=t.children[n];if(l!=h)return i+l.scanIdentical(h,e);i+=l.length+1}}static from(t,e=t.reduce((t,e)=>t+e.length+1,-1)){let i=0;for(let e of t)i+=e.lines;if(i<32){let i=[];for(let e of t)e.flatten(i);return new TextLeaf(i,e)}let s=Math.max(32,i>>5),n=s<<1,o=s>>1,r=[],l=0,h=-1,a=[];function c(){0!=l&&(r.push(1==a.length?a[0]:TextNode.from(a,h)),h=-1,l=a.length=0)}for(let e of t)!function t(e){let i;if(e.lines>n&&e instanceof TextNode)for(let i of e.children)t(i);else e.lines>o&&(l>o||!l)?(c(),r.push(e)):e instanceof TextLeaf&&l&&(i=a[a.length-1])instanceof TextLeaf&&e.lines+i.lines<=32?(l+=e.lines,h+=e.length+1,a[a.length-1]=new TextLeaf(i.text.concat(e.text),i.length+1+e.length)):(l+e.lines>s&&c(),l+=e.lines,h+=e.length+1,a.push(e))}(e);return c(),1==r.length?r[0]:new TextNode(r,e)}};function f(t,e,i=0,s=1e9){for(let n=0,o=0,r=!0;o=i&&(h>s&&(l=l.slice(0,s-n)),n0?1:(t instanceof TextLeaf?t.text.length:t.children.length)<<1]}nextInner(t,e){for(this.done=this.lineBreak=!1;;){let i=this.nodes.length-1,s=this.nodes[i],n=this.offsets[i],o=n>>1,r=s instanceof TextLeaf?s.text.length:s.children.length;if(o==(e>0?r:0)){if(0==i)return this.done=!0,this.value="",this;e>0&&this.offsets[i-1]++,this.nodes.pop(),this.offsets.pop()}else if((1&n)==(e>0?0:1)){if(this.offsets[i]+=e,0==t)return this.lineBreak=!0,this.value=` +`,this;t--}else if(s instanceof TextLeaf){let n=s.text[o+(e<0?-1:0)];if(this.offsets[i]+=e,n.length>Math.max(0,t))return this.value=0==t?n:e>0?n.slice(t):n.slice(0,n.length-t),this;t-=n.length}else{let n=s.children[o+(e<0?-1:0)];t>n.length?(t-=n.length,this.offsets[i]+=e):(e<0&&this.offsets[i]--,this.nodes.push(n),this.offsets.push(e>0?1:(n instanceof TextLeaf?n.text.length:n.children.length)<<1))}}}next(t=0){return t<0&&(this.nextInner(-t,-this.dir),t=this.value.length),this.nextInner(t,this.dir)}};let PartialTextCursor=class PartialTextCursor{constructor(t,e,i){this.value="",this.done=!1,this.cursor=new RawTextCursor(t,e>i?-1:1),this.pos=e>i?t.length:0,this.from=Math.min(e,i),this.to=Math.max(e,i)}nextInner(t,e){if(e<0?this.pos<=this.from:this.pos>=this.to)return this.value="",this.done=!0,this;t+=Math.max(0,e<0?this.pos-this.to:this.from-this.pos);let i=e<0?this.pos-this.from:this.to-this.pos;t>i&&(t=i),i-=t;let{value:s}=this.cursor.next(t);return this.pos+=(s.length+t)*e,this.value=s.length<=i?s:e<0?s.slice(s.length-i):s.slice(0,i),this.done=!this.value,this}next(t=0){return t<0?t=Math.max(t,this.from-this.pos):t>0&&(t=Math.min(t,this.to-this.pos)),this.nextInner(t,this.cursor.dir)}get lineBreak(){return this.cursor.lineBreak&&""!=this.value}};let LineCursor=class LineCursor{constructor(t){this.inner=t,this.afterBreak=!0,this.value="",this.done=!1}next(t=0){let{done:e,lineBreak:i,value:s}=this.inner.next(t);return e&&this.afterBreak?(this.value="",this.afterBreak=!1):e?(this.done=!0,this.value=""):i?this.afterBreak?this.value="":(this.afterBreak=!0,this.next()):(this.value=s,this.afterBreak=!1),this}get lineBreak(){return!1}};"u">typeof Symbol&&(Text.prototype[Symbol.iterator]=function(){return this.iter()},RawTextCursor.prototype[Symbol.iterator]=PartialTextCursor.prototype[Symbol.iterator]=LineCursor.prototype[Symbol.iterator]=function(){return this});let Line=class Line{constructor(t,e,i,s){this.from=t,this.to=e,this.number=i,this.text=s}get length(){return this.to-this.from}};function p(t,e,i){return[e=Math.max(0,Math.min(t.length,e)),Math.max(e,Math.min(t.length,i))]}function g(t,e,i=!0,s=!0){return function(t,e,i=!0,s=!0){return(i?h:function(t,e,i){for(;e>0;){let s=h(t,e-2,i);if(s=55296&&i<56320)||e+1==t.length)return i;let s=t.charCodeAt(e+1);return s>=56320&&s<57344?(i-55296<<10)+(s-56320)+65536:i}function w(t){return t<=65535?String.fromCharCode(t):String.fromCharCode(((t-=65536)>>10)+55296,(1023&t)+56320)}function v(t){return t<65536?1:2}let b=/\r\n?|\n/;var y,x,S=((y=S||(S={}))[y.Simple=0]="Simple",y[y.TrackDel=1]="TrackDel",y[y.TrackBefore=2]="TrackBefore",y[y.TrackAfter=3]="TrackAfter",y);let ChangeDesc=class ChangeDesc{constructor(t){this.sections=t}get length(){let t=0;for(let e=0;et)return n+(t-s);n+=r}else{if(i!=S.Simple&&h>=t&&(i==S.TrackDel&&st||i==S.TrackBefore&&st))return null;if(h>t||h==t&&e<0&&!r)return t==s||e<0?n:n+l;n+=l}s=h}if(t>s)throw RangeError(`Position ${t} is out of range for changeset of length ${s}`);return n}touchesRange(t,e=t){for(let i=0,s=0;i=0&&s<=e&&r>=t)return!(se)||"cover";s=r}return!1}toString(){let t="";for(let e=0;e=0?":"+s:"")}return t}toJSON(){return this.sections}static fromJSON(t){if(!Array.isArray(t)||t.length%2||t.some(t=>"number"!=typeof t))throw RangeError("Invalid JSON representation of ChangeDesc");return new ChangeDesc(t)}static create(t){return new ChangeDesc(t)}};let ChangeSet=class ChangeSet extends ChangeDesc{constructor(t,e){super(t),this.inserted=e}apply(t){if(this.length!=t.length)throw RangeError("Applying change set to a document with the wrong length");return C(this,(e,i,s,n,o)=>t=t.replace(s,s+(i-e),o),!1),t}mapDesc(t,e=!1){return T(this,t,e,!0)}invert(t){let e=this.sections.slice(),i=[];for(let s=0,n=0;s=0){e[s]=r,e[s+1]=o;let l=s>>1;for(;i.length0&&M(i,e,n.text),n.forward(t),r+=t}let h=t[o++];for(;r>1].toJSON()))}return t}static of(t,e,i){let s=[],n=[],o=0,r=null;function l(t=!1){if(!t&&!s.length)return;or||t<0||r>e)throw RangeError(`Invalid change range ${t} to ${r} (in doc of length ${e})`);let c=a?"string"==typeof a?Text.of(a.split(i||b)):a:Text.empty,d=c.length;if(t==r&&0==d)return;to&&k(s,t-o,-1),k(s,r-t,d),M(n,s,c),o=r}}(t),l(!r),r}static empty(t){return new ChangeSet(t?[t,-1]:[],[])}static fromJSON(t){if(!Array.isArray(t))throw RangeError("Invalid JSON representation of ChangeSet");let e=[],i=[];for(let s=0;se&&"string"!=typeof t))throw RangeError("Invalid JSON representation of ChangeSet");else if(1==n.length)e.push(n[0],0);else{for(;i.length=0&&i<=0&&i==t[n+1]?t[n]+=e:n>=0&&0==e&&0==t[n]?t[n+1]+=i:s?(t[n]+=e,t[n+1]+=i):t.push(e,i)}function M(t,e,i){if(0==i.length)return;let s=e.length-2>>1;if(s>1])),!i&&r!=t.sections.length&&!(t.sections[r+1]<0);)l=t.sections[r++],h=t.sections[r++];e(n,a,o,c,d),n=a,o=c}}}function T(t,e,i,s=!1){let n=[],o=s?[]:null,r=new SectionIter(t),l=new SectionIter(e);for(let t=-1;;)if(r.done&&l.len||l.done&&r.len)throw Error("Mismatched change set lengths");else if(-1==r.ins&&-1==l.ins){let t=Math.min(r.len,l.len);k(n,t,-1),r.forward(t),l.forward(t)}else if(l.ins>=0&&(r.ins<0||t==r.i||0==r.off&&(l.len=0&&t=0){let e=0,i=r.len;for(;i;)if(-1==l.ins){let t=Math.min(i,l.len);e+=t,i-=t,l.forward(t)}else if(0==l.ins&&l.lene||r.ins>=0&&r.len>e)&&(t||s.length>i),o.forward2(e),r.forward(e)}else k(s,0,r.ins,t),n&&M(n,s,r.text),r.next()}let SectionIter=class SectionIter{constructor(t){this.set=t,this.i=0,this.next()}next(){let{sections:t}=this.set;this.i>1;return e>=t.length?Text.empty:t[e]}textBit(t){let{inserted:e}=this.set,i=this.i-2>>1;return i>=e.length&&!t?Text.empty:e[i].slice(this.off,null==t?void 0:this.off+t)}forward(t){t==this.len?this.next():(this.len-=t,this.off+=t)}forward2(t){-1==this.ins?this.forward(t):t==this.ins?this.next():(this.ins-=t,this.off+=t)}};let SelectionRange=class SelectionRange{constructor(t,e,i){this.from=t,this.to=e,this.flags=i}get anchor(){return 32&this.flags?this.to:this.from}get head(){return 32&this.flags?this.from:this.to}get empty(){return this.from==this.to}get assoc(){return 8&this.flags?-1:16&this.flags?1:0}get bidiLevel(){let t=7&this.flags;return 7==t?null:t}get goalColumn(){let t=this.flags>>6;return 0xffffff==t?void 0:t}map(t,e=-1){let i,s;return this.empty?i=s=t.mapPos(this.from,e):(i=t.mapPos(this.from,1),s=t.mapPos(this.to,-1)),i==this.from&&s==this.to?this:new SelectionRange(i,s,this.flags)}extend(t,e=t){if(t<=this.anchor&&e>=this.anchor)return EditorSelection.range(t,e);let i=Math.abs(t-this.anchor)>Math.abs(e-this.anchor)?t:e;return EditorSelection.range(this.anchor,i)}eq(t,e=!1){return this.anchor==t.anchor&&this.head==t.head&&(!e||!this.empty||this.assoc==t.assoc)}toJSON(){return{anchor:this.anchor,head:this.head}}static fromJSON(t){if(!t||"number"!=typeof t.anchor||"number"!=typeof t.head)throw RangeError("Invalid JSON representation for SelectionRange");return EditorSelection.range(t.anchor,t.head)}static create(t,e,i){return new SelectionRange(t,e,i)}};let EditorSelection=class EditorSelection{constructor(t,e){this.ranges=t,this.mainIndex=e}map(t,e=-1){return t.empty?this:EditorSelection.create(this.ranges.map(i=>i.map(t,e)),this.mainIndex)}eq(t,e=!1){if(this.ranges.length!=t.ranges.length||this.mainIndex!=t.mainIndex)return!1;for(let i=0;it.toJSON()),main:this.mainIndex}}static fromJSON(t){if(!t||!Array.isArray(t.ranges)||"number"!=typeof t.main||t.main>=t.ranges.length)throw RangeError("Invalid JSON representation for EditorSelection");return new EditorSelection(t.ranges.map(t=>SelectionRange.fromJSON(t)),t.main)}static single(t,e=t){return new EditorSelection([EditorSelection.range(t,e)],0)}static create(t,e=0){if(0==t.length)throw RangeError("A selection needs at least one range");for(let i=0,s=0;st)|n)}static normalized(t,e=0){let i=t[e];t.sort((t,e)=>t.from-e.from),e=t.indexOf(i);for(let i=1;is.head?EditorSelection.range(r,o):EditorSelection.range(o,r))}}return new EditorSelection(t,e)}};function O(t,e){for(let i of t.ranges)if(i.to>e)throw RangeError("Selection points outside of document")}let D=0;let Facet=class Facet{constructor(t,e,i,s,n){this.combine=t,this.compareInput=e,this.compare=i,this.isStatic=s,this.id=D++,this.default=t([]),this.extensions="function"==typeof n?n(this):n}get reader(){return this}static define(t={}){return new Facet(t.combine||(t=>t),t.compareInput||((t,e)=>t===e),t.compare||(!t.combine?E:(t,e)=>t===e),!!t.static,t.enables)}of(t){return new FacetProvider([],this,0,t)}compute(t,e){if(this.isStatic)throw Error("Can't compute a static facet");return new FacetProvider(t,this,1,e)}computeN(t,e){if(this.isStatic)throw Error("Can't compute a static facet");return new FacetProvider(t,this,2,e)}from(t,e){return e||(e=t=>t),this.compute([t],i=>e(i.field(t)))}};function E(t,e){return t==e||t.length==e.length&&t.every((t,i)=>t===e[i])}let FacetProvider=class FacetProvider{constructor(t,e,i,s){this.dependencies=t,this.facet=e,this.type=i,this.value=s,this.id=D++}dynamicSlot(t){var e;let i=this.value,s=this.facet.compareInput,n=this.id,o=t[n]>>1,r=2==this.type,l=!1,h=!1,a=[];for(let i of this.dependencies)"doc"==i?l=!0:"selection"==i?h=!0:((null!=(e=t[i.id])?e:1)&1)==0&&a.push(t[i.id]);return{create:t=>(t.values[o]=i(t),1),update(t,e){if(l&&e.docChanged||h&&(e.docChanged||e.selection)||B(t,a)){let e=i(t);if(r?!R(e,t.values[o],s):!s(e,t.values[o]))return t.values[o]=e,1}return 0},reconfigure:(t,e)=>{let l,h=e.config.address[n];if(null!=h){let n=W(e,h);if(this.dependencies.every(i=>i instanceof Facet?e.facet(i)===t.facet(i):!(i instanceof StateField)||e.field(i,!1)==t.field(i,!1))||(r?R(l=i(t),n,s):s(l=i(t),n)))return t.values[o]=n,0}else l=i(t);return t.values[o]=l,1}}}};function R(t,e,i){if(t.length!=e.length)return!1;for(let s=0;st===e),t);return t.provide&&(e.provides=t.provide(e)),e}create(t){let e=t.facet(L).find(t=>t.field==this);return((null==e?void 0:e.create)||this.createF)(t)}slot(t){let e=t[this.id]>>1;return{create:t=>(t.values[e]=this.create(t),1),update:(t,i)=>{let s=t.values[e],n=this.updateF(s,i);return this.compareF(s,n)?0:(t.values[e]=n,1)},reconfigure:(t,i)=>{let s=t.facet(L),n=i.facet(L),o;return(o=s.find(t=>t.field==this))&&o!=n.find(t=>t.field==this)?(t.values[e]=o.create(t),1):null!=i.config.address[this.id]?(t.values[e]=i.field(this),0):(t.values[e]=this.create(t),1)}}}init(t){return[this,L.of({field:this,create:t})]}get extension(){return this}};function P(t){return e=>new PrecExtension(e,t)}let H={highest:P(0),high:P(1),default:P(2),low:P(3),lowest:P(4)};let PrecExtension=class PrecExtension{constructor(t,e){this.inner=t,this.prec=e}};let Compartment=class Compartment{of(t){return new CompartmentInstance(this,t)}reconfigure(t){return Compartment.reconfigure.of({compartment:this,extension:t})}get(t){return t.config.compartments.get(this)}};let CompartmentInstance=class CompartmentInstance{constructor(t,e){this.compartment=t,this.inner=e}};let Configuration=class Configuration{constructor(t,e,i,s,n,o){for(this.base=t,this.compartments=e,this.dynamicSlots=i,this.address=s,this.staticValues=n,this.facets=o,this.statusTemplate=[];this.statusTemplate.length>1]}static resolve(t,e,i){var s,n,o;let r,l,h=[],a=Object.create(null),c=new Map;for(let i of(s=t,n=e,o=c,r=[[],[],[],[],[]],l=new Map,!function t(e,i){let s=l.get(e);if(null!=s){if(s<=i)return;let t=r[s].indexOf(e);t>-1&&r[s].splice(t,1),e instanceof CompartmentInstance&&o.delete(e.compartment)}if(l.set(e,i),Array.isArray(e))for(let s of e)t(s,i);else if(e instanceof CompartmentInstance){if(o.has(e.compartment))throw RangeError("Duplicate use of compartment in extensions");let s=n.get(e.compartment)||e.inner;o.set(e.compartment,s),t(s,i)}else if(e instanceof PrecExtension)t(e.inner,e.prec);else if(e instanceof StateField)r[i].push(e),e.provides&&t(e.provides,i);else if(e instanceof FacetProvider)r[i].push(e),e.facet.extensions&&t(e.facet.extensions,2);else{let s=e.extension;if(!s)throw Error(`Unrecognized extension value in extension set (${e}). This sometimes happens because multiple instances of @codemirror/state are loaded, breaking instanceof checks.`);t(s,i)}}(s,2),r.reduce((t,e)=>t.concat(e))))i instanceof StateField?h.push(i):(a[i.facet.id]||(a[i.facet.id]=[])).push(i);let d=Object.create(null),u=[],f=[];for(let t of h)d[t.id]=f.length<<1,f.push(e=>t.slot(e));let p=null==i?void 0:i.config.facets;for(let t in a){let e=a[t],s=e[0].facet,n=p&&p[t]||[];if(e.every(t=>0==t.type))if(d[s.id]=u.length<<1|1,E(n,e))u.push(i.facet(s));else{let t=s.combine(e.map(t=>t.value));u.push(i&&s.compare(t,i.facet(s))?i.facet(s):t)}else{for(let t of e)0==t.type?(d[t.id]=u.length<<1|1,u.push(t.value)):(d[t.id]=f.length<<1,f.push(e=>t.dynamicSlot(e)));d[s.id]=f.length<<1,f.push(t=>(function(t,e,i){let s=i.map(e=>t[e.id]),n=i.map(t=>t.type),o=s.filter(t=>!(1&t)),r=t[e.id]>>1;function l(t){let i=[];for(let e=0;et(d)),d,u,a)}};function V(t,e){if(1&e)return 2;let i=e>>1,s=t.status[i];if(4==s)throw Error("Cyclic dependency between fields and/or facets");if(2&s)return s;t.status[i]=4;let n=t.computeSlot(t,t.config.dynamicSlots[i]);return t.status[i]=2|n}function W(t,e){return 1&e?t.config.staticValues[e>>1]:t.values[e>>1]}let I=Facet.define(),N=Facet.define({combine:t=>t.some(t=>t),static:!0}),F=Facet.define({combine:t=>t.length?t[0]:void 0,static:!0}),z=Facet.define(),q=Facet.define(),j=Facet.define(),G=Facet.define({combine:t=>!!t.length&&t[0]});let Annotation=class Annotation{constructor(t,e){this.type=t,this.value=e}static define(){return new AnnotationType}};let AnnotationType=class AnnotationType{of(t){return new Annotation(this,t)}};let StateEffectType=class StateEffectType{constructor(t){this.map=t}of(t){return new StateEffect(this,t)}};let StateEffect=class StateEffect{constructor(t,e){this.type=t,this.value=e}map(t){let e=this.type.map(this.value,t);return void 0===e?void 0:e==this.value?this:new StateEffect(this.type,e)}is(t){return this.type==t}static define(t={}){return new StateEffectType(t.map||(t=>t))}static mapEffects(t,e){if(!t.length)return t;let i=[];for(let s of t){let t=s.map(e);t&&i.push(t)}return i}};StateEffect.reconfigure=StateEffect.define(),StateEffect.appendConfig=StateEffect.define();let Transaction=class Transaction{constructor(t,e,i,s,n,o){this.startState=t,this.changes=e,this.selection=i,this.effects=s,this.annotations=n,this.scrollIntoView=o,this._doc=null,this._state=null,i&&O(i,e.newLength),n.some(t=>t.type==Transaction.time)||(this.annotations=n.concat(Transaction.time.of(Date.now())))}static create(t,e,i,s,n,o){return new Transaction(t,e,i,s,n,o)}get newDoc(){return this._doc||(this._doc=this.changes.apply(this.startState.doc))}get newSelection(){return this.selection||this.startState.selection.map(this.changes)}get state(){return this._state||this.startState.applyTransaction(this),this._state}annotation(t){for(let e of this.annotations)if(e.type==t)return e.value}get docChanged(){return!this.changes.empty}get reconfigured(){return this.startState.config!=this.state.config}isUserEvent(t){let e=this.annotation(Transaction.userEvent);return!!(e&&(e==t||e.length>t.length&&e.slice(0,t.length)==t&&"."==e[t.length]))}};function K(t,e,i){var s;let n,o,r;return i?(n=e.changes,o=ChangeSet.empty(e.changes.length),r=t.changes.compose(e.changes)):(n=e.changes.map(t.changes),o=t.changes.mapDesc(e.changes,!0),r=t.changes.compose(n)),{changes:r,selection:e.selection?e.selection.map(o):null==(s=t.selection)?void 0:s.map(n),effects:StateEffect.mapEffects(t.effects,n).concat(StateEffect.mapEffects(e.effects,o)),annotations:t.annotations.length?t.annotations.concat(e.annotations):e.annotations,scrollIntoView:t.scrollIntoView||e.scrollIntoView}}function _(t,e,i){let s=e.selection,n=$(e.annotations);return e.userEvent&&(n=n.concat(Transaction.userEvent.of(e.userEvent))),{changes:e.changes instanceof ChangeSet?e.changes:ChangeSet.of(e.changes||[],i,t.facet(F)),selection:s&&(s instanceof EditorSelection?s:EditorSelection.single(s.anchor,s.head)),effects:$(e.effects),annotations:n,scrollIntoView:!!e.scrollIntoView}}Transaction.time=Annotation.define(),Transaction.userEvent=Annotation.define(),Transaction.addToHistory=Annotation.define(),Transaction.remote=Annotation.define();let Y=[];function $(t){return null==t?Y:Array.isArray(t)?t:[t]}var U=((x=U||(U={}))[x.Word=0]="Word",x[x.Space=1]="Space",x[x.Other=2]="Other",x);let X=/[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/;try{s=RegExp("[\\p{Alphabetic}\\p{Number}_]","u")}catch(t){}let EditorState=class EditorState{constructor(t,e,i,s,n,o){this.config=t,this.doc=e,this.selection=i,this.values=s,this.status=t.statusTemplate.slice(),this.computeSlot=n,o&&(o._state=this);for(let t=0;t=0;n--){let o=i[n](t);o&&Object.keys(o).length&&(s=K(s,_(e,o,t.changes.newLength),!0))}return s==t?t:Transaction.create(e,t.changes,t.selection,s.effects,s.annotations,s.scrollIntoView)}(s?function(e){let i=e.startState,s=!0;for(let t of i.facet(z)){let i=t(e);if(!1===i){s=!1;break}Array.isArray(i)&&(s=!0===s?i:function(t,e){let i=[];for(let s=0,n=0;;){let o,r;if(s=t[s]))o=t[s++],r=t[s++];else{if(!(n=0;s--){let o=n[s](e);e=o instanceof Transaction?o:Array.isArray(o)&&1==o.length&&o[0]instanceof Transaction?o[0]:t(i,$(o),!1)}return e}(o):o)}(this,t,!0)}applyTransaction(t){let e,i=this.config,{base:s,compartments:n}=i;for(let e of t.effects)e.is(Compartment.reconfigure)?(i&&(n=new Map,i.compartments.forEach((t,e)=>n.set(e,t)),i=null),n.set(e.value.compartment,e.value.extension)):e.is(StateEffect.reconfigure)?(i=null,s=e.value):e.is(StateEffect.appendConfig)&&(i=null,s=$(s).concat(e.value));e=i?t.startState.values.slice():new EditorState(i=Configuration.resolve(s,n,this),this.doc,this.selection,i.dynamicSlots.map(()=>null),(t,e)=>e.reconfigure(t,this),null).values;let o=t.startState.facet(N)?t.newSelection:t.newSelection.asSingle();new EditorState(i,t.newDoc,o,e,(e,i)=>i.update(e,t),t)}replaceSelection(t){return"string"==typeof t&&(t=this.toText(t)),this.changeByRange(e=>({changes:{from:e.from,to:e.to,insert:t},range:EditorSelection.cursor(e.from+t.length)}))}changeByRange(t){let e=this.selection,i=t(e.ranges[0]),s=this.changes(i.changes),n=[i.range],o=$(i.effects);for(let i=1;in.spec.fromJSON(o,t)))}}return EditorState.create({doc:t.doc,selection:EditorSelection.fromJSON(t.selection),extensions:e.extensions?s.concat([e.extensions]):s})}static create(t={}){let e=Configuration.resolve(t.extensions||[],new Map),i=t.doc instanceof Text?t.doc:Text.of((t.doc||"").split(e.staticFacet(EditorState.lineSeparator)||b)),s=t.selection?t.selection instanceof EditorSelection?t.selection:EditorSelection.single(t.selection.anchor,t.selection.head):EditorSelection.single(0);return O(s,i.length),e.staticFacet(N)||(s=s.asSingle()),new EditorState(e,i,s,e.dynamicSlots.map(()=>null),(t,e)=>e.create(t),null)}get tabSize(){return this.facet(EditorState.tabSize)}get lineBreak(){return this.facet(EditorState.lineSeparator)||` +`}get readOnly(){return this.facet(G)}phrase(t,...e){for(let e of this.facet(EditorState.phrases))if(Object.prototype.hasOwnProperty.call(e,t)){t=e[t];break}return e.length&&(t=t.replace(/\$(\$|\d*)/g,(t,i)=>{if("$"==i)return"$";let s=+(i||1);return!s||s>e.length?t:e[s-1]})),t}languageDataAt(t,e,i=-1){let s=[];for(let n of this.facet(I))for(let o of n(this,e,i))Object.prototype.hasOwnProperty.call(o,t)&&s.push(o[t]);return s}charCategorizer(t){var e;return e=this.languageDataAt("wordChars",t).join(""),t=>{if(!/\S/.test(t))return U.Space;if(function(t){if(s)return s.test(t);for(let e=0;e"\x80"&&(i.toUpperCase()!=i.toLowerCase()||X.test(i)))return!0}return!1}(t))return U.Word;for(let i=0;i-1)return U.Word;return U.Other}}wordAt(t){let{text:e,from:i,length:s}=this.doc.lineAt(t),n=this.charCategorizer(t),o=t-i,r=t-i;for(;o>0;){let t=g(e,o,!1);if(n(e.slice(t,o))!=U.Word)break;o=t}for(;rt.length?t[0]:4}),EditorState.lineSeparator=F,EditorState.readOnly=G,EditorState.phrases=Facet.define({compare(t,e){let i=Object.keys(t),s=Object.keys(e);return i.length==s.length&&i.every(i=>t[i]==e[i])}}),EditorState.languageData=I,EditorState.changeFilter=z,EditorState.transactionFilter=q,EditorState.transactionExtender=j,Compartment.reconfigure=StateEffect.define();let RangeValue=class RangeValue{eq(t){return this==t}range(t,e=t){return Range.create(t,e,this)}};RangeValue.prototype.startSide=RangeValue.prototype.endSide=0,RangeValue.prototype.point=!1,RangeValue.prototype.mapMode=S.TrackDel;let Range=class Range{constructor(t,e,i){this.from=t,this.to=e,this.value=i}static create(t,e,i){return new Range(t,e,i)}};function Q(t,e){return t.from-e.from||t.value.startSide-e.value.startSide}let Chunk=class Chunk{constructor(t,e,i,s){this.from=t,this.to=e,this.value=i,this.maxPoint=s}get length(){return this.to[this.to.length-1]}findIndex(t,e,i,s=0){let n=i?this.to:this.from;for(let o=s,r=n.length;;){if(o==r)return o;let s=o+r>>1,l=n[s]-t||(i?this.value[s].endSide:this.value[s].startSide)-e;if(s==o)return l>=0?o:r;l>=0?r=s:o=s+1}}between(t,e,i,s){for(let n=this.findIndex(e,-1e9,!0),o=this.findIndex(i,1e9,!1,n);n(u=e.mapPos(c,h.endSide))||d==u&&h.startSide>0&&h.endSide<=0)continue;0>(u-d||h.endSide-h.startSide)||(o<0&&(o=d),h.point&&(r=Math.max(r,u-d)),i.push(h),s.push(d-o),n.push(u-o))}return{mapped:i.length?new Chunk(s,n,i,r):null,pos:o}}};let RangeSet=class RangeSet{constructor(t,e,i,s){this.chunkPos=t,this.chunk=e,this.nextLayer=i,this.maxPoint=s}static create(t,e,i,s){return new RangeSet(t,e,i,s)}get length(){let t=this.chunk.length-1;return t<0?0:Math.max(this.chunkEnd(t),this.nextLayer.length)}get size(){if(this.isEmpty)return 0;let t=this.nextLayer.size;for(let e of this.chunk)t+=e.value.length;return t}chunkEnd(t){return this.chunkPos[t]+this.chunk[t].length}update(t){let{add:e=[],sort:i=!1,filterFrom:s=0,filterTo:n=this.length}=t,o=t.filter;if(0==e.length&&!o)return this;if(i&&(e=e.slice().sort(Q)),this.isEmpty)return e.length?RangeSet.of(e):this;let r=new LayerCursor(this,null,-1).goto(0),l=0,h=[],a=new RangeSetBuilder;for(;r.value||l=0){let t=e[l++];a.addInner(t.from,t.to,t.value)||h.push(t)}else 1==r.rangeIndex&&r.chunkIndexthis.chunkEnd(r.chunkIndex)||nr.to||n=n&&t<=n+o.length&&!1===o.between(n,t-n,e-n,i))return}this.nextLayer.between(t,e,i)}}iter(t=0){return HeapCursor.from([this]).goto(t)}get isEmpty(){return this.nextLayer==this}static iter(t,e=0){return HeapCursor.from(t).goto(e)}static compare(t,e,i,s,n=-1){let o=t.filter(t=>t.maxPoint>0||!t.isEmpty&&t.maxPoint>=n),r=e.filter(t=>t.maxPoint>0||!t.isEmpty&&t.maxPoint>=n),l=Z(o,r,i),h=new SpanCursor(o,l,n),a=new SpanCursor(r,l,n);i.iterGaps((t,e,i)=>te(h,t,a,e,i,s)),i.empty&&0==i.length&&te(h,0,a,0,0,s)}static eq(t,e,i=0,s){null==s&&(s=0x3b9ac9ff);let n=t.filter(t=>!t.isEmpty&&0>e.indexOf(t)),o=e.filter(e=>!e.isEmpty&&0>t.indexOf(e));if(n.length!=o.length)return!1;if(!n.length)return!0;let r=Z(n,o),l=new SpanCursor(n,r,0).goto(i),h=new SpanCursor(o,r,0).goto(i);for(;;){if(l.to!=h.to||!ti(l.active,h.active)||l.point&&(!h.point||!l.point.eq(h.point)))return!1;if(l.to>s)return!0;l.next(),h.next()}}static spans(t,e,i,s,n=-1){let o=new SpanCursor(t,null,n).goto(e),r=e,l=o.openStart;for(;;){let t=Math.min(o.to,i);if(o.point){let i=o.activeForPoint(o.to),n=o.pointFromr&&(s.span(r,t,o.active,l),l=o.openEnd(t));if(o.to>i)return l+(o.point&&o.to>i?1:0);r=o.to,o.next()}}static of(t,e=!1){let i=new RangeSetBuilder;for(let s of t instanceof Range?[t]:e?function(t){if(t.length>1)for(let e=t[0],i=1;i0)return t.slice().sort(Q);e=s}return t}(t):t)i.add(s.from,s.to,s.value);return i.finish()}static join(t){if(!t.length)return RangeSet.empty;let e=t[t.length-1];for(let i=t.length-2;i>=0;i--)for(let s=t[i];s!=RangeSet.empty;s=s.nextLayer)e=new RangeSet(s.chunkPos,s.chunk,e,Math.max(s.maxPoint,e.maxPoint));return e}};RangeSet.empty=new RangeSet([],[],null,-1),RangeSet.empty.nextLayer=RangeSet.empty;let RangeSetBuilder=class RangeSetBuilder{finishChunk(t){this.chunks.push(new Chunk(this.from,this.to,this.value,this.maxPoint)),this.chunkPos.push(this.chunkStart),this.chunkStart=-1,this.setMaxPoint=Math.max(this.setMaxPoint,this.maxPoint),this.maxPoint=-1,t&&(this.from=[],this.to=[],this.value=[])}constructor(){this.chunks=[],this.chunkPos=[],this.chunkStart=-1,this.last=null,this.lastFrom=-1e9,this.lastTo=-1e9,this.from=[],this.to=[],this.value=[],this.maxPoint=-1,this.setMaxPoint=-1,this.nextLayer=null}add(t,e,i){this.addInner(t,e,i)||(this.nextLayer||(this.nextLayer=new RangeSetBuilder)).add(t,e,i)}addInner(t,e,i){let s=t-this.lastTo||i.startSide-this.last.endSide;if(s<=0&&0>(t-this.lastFrom||i.startSide-this.last.startSide))throw Error("Ranges must be added sorted by `from` position and `startSide`");return!(s<0)&&(250==this.from.length&&this.finishChunk(!0),this.chunkStart<0&&(this.chunkStart=t),this.from.push(t-this.chunkStart),this.to.push(e-this.chunkStart),this.last=i,this.lastFrom=t,this.lastTo=e,this.value.push(i),i.point&&(this.maxPoint=Math.max(this.maxPoint,e-t)),!0)}addChunk(t,e){if(0>(t-this.lastTo||e.value[0].startSide-this.last.endSide))return!1;this.from.length&&this.finishChunk(!0),this.setMaxPoint=Math.max(this.setMaxPoint,e.maxPoint),this.chunks.push(e),this.chunkPos.push(t);let i=e.value.length-1;return this.last=e.value[i],this.lastFrom=e.from[i]+t,this.lastTo=e.to[i]+t,!0}finish(){return this.finishInner(RangeSet.empty)}finishInner(t){if(this.from.length&&this.finishChunk(!1),0==this.chunks.length)return t;let e=RangeSet.create(this.chunkPos,this.chunks,this.nextLayer?this.nextLayer.finishInner(t):t,this.setMaxPoint);return this.from=null,e}};function Z(t,e,i){let s=new Map;for(let e of t)for(let t=0;t(this.to-t||this.endSide-e)&&this.gotoInner(t,e,!0)}next(){for(;;)if(this.chunkIndex==this.layer.chunk.length){this.from=this.to=1e9,this.value=null;break}else{let t=this.layer.chunkPos[this.chunkIndex],e=this.layer.chunk[this.chunkIndex],i=t+e.from[this.rangeIndex];if(this.from=i,this.to=t+e.to[this.rangeIndex],this.value=e.value[this.rangeIndex],this.setRangeIndex(this.rangeIndex+1),this.minPoint<0||this.value.point&&this.to-this.from>=this.minPoint)break}}setRangeIndex(t){if(t==this.layer.chunk[this.chunkIndex].value.length){if(this.chunkIndex++,this.skip)for(;this.chunkIndex=i&&s.push(new LayerCursor(o,e,i,n));return 1==s.length?s[0]:new HeapCursor(s)}get startSide(){return this.value?this.value.startSide:0}goto(t,e=-1e9){for(let i of this.heap)i.goto(t,e);for(let t=this.heap.length>>1;t>=0;t--)tt(this.heap,t);return this.next(),this}forward(t,e){for(let i of this.heap)i.forward(t,e);for(let t=this.heap.length>>1;t>=0;t--)tt(this.heap,t);0>(this.to-t||this.value.endSide-e)&&this.next()}next(){if(0==this.heap.length)this.from=this.to=1e9,this.value=null,this.rank=-1;else{let t=this.heap[0];this.from=t.from,this.to=t.to,this.value=t.value,this.rank=t.rank,t.value&&t.next(),tt(this.heap,0)}}};function tt(t,e){for(let i=t[e];;){let s=(e<<1)+1;if(s>=t.length)break;let n=t[s];if(s+1=0&&(n=t[s+1],s++),0>i.compare(n))break;t[s]=i,t[e]=n,e=s}}let SpanCursor=class SpanCursor{constructor(t,e,i){this.minPoint=i,this.active=[],this.activeTo=[],this.activeRank=[],this.minActive=-1,this.point=null,this.pointFrom=0,this.pointRank=0,this.to=-1e9,this.endSide=0,this.openStart=-1,this.cursor=HeapCursor.from(t,e,i)}goto(t,e=-1e9){return this.cursor.goto(t,e),this.active.length=this.activeTo.length=this.activeRank.length=0,this.minActive=-1,this.to=t,this.endSide=e,this.openStart=-1,this.next(),this}forward(t,e){for(;this.minActive>-1&&0>(this.activeTo[this.minActive]-t||this.active[this.minActive].endSide-e);)this.removeActive(this.minActive);this.cursor.forward(t,e)}removeActive(t){ts(this.active,t),ts(this.activeTo,t),ts(this.activeRank,t),this.minActive=to(this.active,this.activeTo)}addActive(t){let e=0,{value:i,to:s,rank:n}=this.cursor;for(;e0;)e++;tn(this.active,e,i),tn(this.activeTo,e,s),tn(this.activeRank,e,n),t&&tn(t,e,this.cursor.from),this.minActive=to(this.active,this.activeTo)}next(){let t=this.to,e=this.point;this.point=null;let i=this.openStart<0?[]:null;for(;;){let s=this.minActive;if(s>-1&&0>(this.activeTo[s]-this.cursor.from||this.active[s].endSide-this.cursor.startSide)){if(this.activeTo[s]>t){this.to=this.activeTo[s],this.endSide=this.active[s].endSide;break}this.removeActive(s),i&&ts(i,s)}else if(this.cursor.value)if(this.cursor.from>t){this.to=this.cursor.from,this.endSide=this.cursor.startSide;break}else{let t=this.cursor.value;if(t.point)if(e&&this.cursor.to==this.to&&this.cursor.from=0&&i[e]=0&&!(this.activeRank[i]t||this.activeTo[i]==t&&this.active[i].endSide>=this.point.endSide)&&e.push(this.active[i]);return e.reverse()}openEnd(t){let e=0;for(let i=this.activeTo.length-1;i>=0&&this.activeTo[i]>t;i--)e++;return e}};function te(t,e,i,s,n,o){t.goto(e),i.goto(s);let r=s+n,l=s,h=s-e;for(;;){let e=t.to+h-i.to,s=e||t.endSide-i.endSide,n=s<0?t.to+h:i.to,a=Math.min(n,r);if(t.point||i.point?t.point&&i.point&&(t.point==i.point||t.point.eq(i.point))&&ti(t.activeForPoint(t.to),i.activeForPoint(i.to))||o.comparePoint(l,a,t.point,i.point):a>l&&!ti(t.active,i.active)&&o.compareRange(l,a,t.active,i.active),n>r)break;(e||t.openEnd!=i.openEnd)&&o.boundChange&&o.boundChange(n),l=n,s<=0&&t.next(),s>=0&&i.next()}}function ti(t,e){if(t.length!=e.length)return!1;for(let i=0;i=e;i--)t[i+1]=t[i];t[e]=i}function to(t,e){let i=-1,s=1e9;for(let n=0;n(e[n]-s||t[n].endSide-t[i].endSide)&&(i=n,s=e[n]);return i}function tr(t,e,i=t.length){let s=0;for(let n=0;n=e)return s;if(s==t.length)break;n+=9==t.charCodeAt(s)?i-n%i:1,s=g(t,s)}return!0===s?-1:t.length}},97417:(t,e,i)=>{i.d(e,{G:()=>StyleModule});let s="u"typeof globalThis?globalThis:"u">typeof window?window:{};let StyleModule=class StyleModule{constructor(t,e){this.rules=[];let{finish:i}=e||{};function s(t){return/^@/.test(t)?[t]:t.split(/,\s*/)}for(let e in t)!function t(e,n,o,r){let l=[],h=/^@(\w+)\b/.exec(e[0]),a=h&&"keyframes"==h[1];if(h&&null==n)return o.push(e[0]+";");for(let i in n){let r=n[i];if(/&/.test(i))t(i.split(/,\s*/).map(t=>e.map(e=>t.replace(/&/,e))).reduce((t,e)=>t.concat(e)),r,o);else if(r&&"object"==typeof r){if(!h)throw RangeError("The value of a property ("+i+") should be a primitive value.");t(s(i),r,l,a)}else null!=r&&l.push(i.replace(/_.*/,"").replace(/[A-Z]/g,t=>"-"+t.toLowerCase())+": "+r+";")}(l.length||a)&&o.push((i&&!h&&!r?e.map(i):e).join(", ")+" {"+l.join(" ")+"}")}(s(e),t[e],this.rules)}getRules(){return this.rules.join(` +`)}static newName(){let t=o[s]||1;return o[s]=t+1,"\u037C"+t.toString(36)}static mount(t,e,i){let s=t[n],o=i&&i.nonce;s?o&&s.setNonce(o):s=new StyleSet(t,o),s.mount(Array.isArray(e)?e:[e],t)}};let r=new Map;let StyleSet=class StyleSet{constructor(t,e){let i=t.ownerDocument||t,s=i.defaultView;if(!t.head&&t.adoptedStyleSheets&&s.CSSStyleSheet){let e=r.get(i);if(e)return t[n]=e;this.sheet=new s.CSSStyleSheet,r.set(i,this)}else this.styleTag=i.createElement("style"),e&&this.styleTag.setAttribute("nonce",e);this.modules=[],t[n]=this}mount(t,e){let i=this.sheet,s=0,n=0;for(let e=0;e-1&&(this.modules.splice(r,1),n--,r=-1),-1==r){if(this.modules.splice(n++,0,o),i)for(let t=0;te.adoptedStyleSheets.indexOf(this.sheet)&&(e.adoptedStyleSheets=[this.sheet,...e.adoptedStyleSheets]);else{let t="";for(let e=0;e{s.d(t,{Mj:()=>b,IJ:()=>F,Pk:()=>x,pn:()=>U,A3:()=>B,bP:()=>k,mo:()=>H});var r=s(74848),a=s(16522),i=s(33535),n=s(96540),o=s(79184),d=s(25536);let c=(0,s(82075).A)("sessionStorage");function l(e,t){return!!e&&"assistive"===t}let h="restored-chat-messages";function u(e,t){if("childMessages"!==e&&"parentMessage"!==e)return t}function p(){c.removeItem(h)}var g=s(25641),E=s(4559),m=s(53419),f=s(73952),_=s(35247),T=s(79064),R=s(23657);let S=(e,t)=>{let s=t=>{T.Jt.selectedThreadID=t;let s=t!==e.selectedThreadID,r=T.Jt.getModel(t)?.id,a=e.availableModels?.find(e=>e.id===r)??e.model;return{...e,model:a,selectedThreadID:t,threadSelectedAt:s?new Date:e.threadSelectedAt,currentView:"thread",showTopicPicker:!t&&e.showTopicPicker,currentReferences:s?[]:e.currentReferences,threadHasNewMessages:!s&&e.threadHasNewMessages,editingMessage:s?void 0:e.editingMessage,pendingFirstMessage:s?void 0:e.pendingFirstMessage}};switch(t.type){case"SLASH_COMMANDS_ERROR":return(0,m.BI)("copilot.slash_commands_error"),{...e,slashCommandLoading:{...e.slashCommandLoading,state:"error"}};case"SLASH_COMMANDS_LOADED":return(0,m.BI)("copilot.slash_commands_loaded"),{...e,slashCommandLoading:{...e.slashCommandLoading,state:"loaded"}};case"SLASH_COMMANDS_LOADING":return{...e,slashCommandLoading:{...e.slashCommandLoading,state:"loading"}};case"OPEN_COPILOT_CHAT":return(0,m.BI)("copilot.open_copilot_chat",{source:t.source}),{...e,chatIsOpen:!0,chatIsVisible:!0,entryPointId:t.id};case"CLOSE_COPILOT_CHAT":return(0,m.BI)("copilot.close_copilot_chat"),{...e,chatIsOpen:!1};case"HIDE_COPILOT_CHAT":return(0,m.BI)("copilot.hide_copilot_chat"),{...e,chatIsVisible:!1};case"THREAD_CREATED":{let r=new Map(e.threads);return(0,m.BI)("copilot.thread_created",{...y(t.thread),mode:e.mode,count:r.size+1,defaultToTask:_.W.defaultToTaskInput,defaultToTaskControl:_.W.defaultToTaskControl,askModeDropdown:_.W.askModeDropdown}),r.set(t.thread.id,t.thread),{...t.preventThreadSelection?e:s(t.thread.id),threads:r}}case"THREAD_CONTINUED":{let r=new Map(e.threads);return(0,m.BI)("copilot.thread_continued",{...y(t.thread),mode:e.mode,count:r.size+1}),r.set(t.thread.id,t.thread),{...s(t.thread.id),threads:r}}case"THREAD_CONTINUED_FAILED":return(0,m.BI)("copilot.thread_continued_failed",{stateSelectedThreadID:e.selectedThreadID,sharedIdOnFetch:e.fetchSharedThreads?.shareId,mode:e.mode}),{...e};case"SUGGESTIONS_GENERATED":return{...e,suggestions:t.suggestions};case"CLEAR_SUGGESTIONS":return{...e,suggestions:null};case"CLEAR_THREAD":return(0,m.BI)("copilot.clear_thread"),{...e,messages:[],currentReferences:[]};case"CLEAR_CURRENT_REFERENCES":{(0,m.BI)("copilot.clear_current_references");let s=t.keepTypes&&new Set(t.keepTypes),r=s?e.currentReferences.filter(e=>s.has(e.type)):[];return{...e,currentReferences:r}}case"CLEAR_IMPLICIT_REFERENCES":{if(0===e.implicitReferences.size)return e;let t=e.currentReferences.filter(t=>!e.implicitReferences.has(t)),s=t.length===e.currentReferences.length?e.currentReferences:t;return{...e,currentReferences:s,implicitReferences:new Set}}case"CLEAR_ALL_REFERENCES":return(0,m.BI)("copilot.clear_all_references"),{...e,currentReferences:[]};case"MESSAGES_UPDATED":{let s=t.messages?[...t.messages]:[];if("error"===t.state&&((0,m.BI)("copilot.messages_updated",{count:t.messages?.length,loading:t.state}),t.notFound&&t.missingOrgIds&&t.missingOrgIds.length>0&&T.Jt.clearAuthToken()),!s)return{...e,messagesLoading:{...e.messagesLoading,state:t.state,missingOrgIds:t.missingOrgIds,notFound:t.notFound}};{let r=e.defaultRecipient,a=e.allClientConfirmations;for(let i of("loaded"===t.state&&s.length>0&&(r=M(s[s.length-1],e),a=s.map(e=>e.clientConfirmations?.map(e=>JSON.stringify(Object.values(e.confirmation).sort()))).flat().filter(Boolean)),s))i.clientSide=!1;return{...e,defaultRecipient:r,allClientConfirmations:a,messages:(0,f.zh)(s),messagesLoading:{...e.messagesLoading,state:t.state,missingOrgIds:t.missingOrgIds,notFound:t.notFound},messagesRestored:!1}}}case"WAITING_ON_COPILOT":return{...e,isWaitingOnCopilot:t.loading,threadHasNewMessages:!0};case"WAITING_ON_ATTACHMENT":return{...e,isWaitingOnAttachment:t.loading,attachmentProcessingType:t.loading&&t.attachmentType||null};case"SELECT_THREAD":{(0,m.BI)("copilot.select_thread",{threadID:t.thread?.id,mode:e.mode});let r={...s(t.thread?.id||null),currentTopic:t.clearTopic?void 0:e.currentTopic,topicLoading:t.clearTopic?{error:null,state:"loaded"}:e.topicLoading};return null===t.thread&&e.currentRepository&&(r.currentReferences=[(0,g.qS)(e.currentRepository)]),r}case"HANDLE_EVENT_START":return(0,m.BI)("copilot.handle_event_start"),{...e,chatIsOpen:!0,chatIsVisible:!0,entryPointId:t.id,currentReferences:t.references??e.currentReferences};case"THREADS_LOADING":return{...e,threadsLoading:{...e.threadsLoading,state:"loading"}};case"LATEST_THREAD_LOADED":{let s=new Map(e.threads);return s.set(t.latestThread.id,t.latestThread),{...e,threads:s}}case"THREADS_LOADED":{(0,m.BI)("copilot.threads_loaded",{count:t.threads.length,mode:e.mode});let s=e.selectedThreadID&&e.threads.get(e.selectedThreadID);return s&&Date.now()-new Date(s.createdAt).getTime()<6e4&&!t.threads.find(e=>e.id===s.id)&&t.threads.push(s),{...e,threadsLoading:{...e.threadsLoading,state:"loaded"},threads:new Map(t.threads.map(e=>[e.id,e]))}}case"THREADS_LOADING_ERROR":return(0,m.BI)("copilot.threads_loading_error",{error:t.message}),{...e,threadsLoading:{error:t.message,state:"error",status:t.status}};case"DELETE_THREAD_KEEP_SELECTION":{let r=new Map(e.threads);return(0,m.BI)("copilot.thread_deleted",{...y(t.thread),count:r.size-1}),r.delete(t.thread.id),{...s(null),threads:r,threadsLoading:{...e.threadsLoading,state:"loaded"},messages:[],messagesLoading:{state:"loaded",error:null},currentReferences:[],currentView:"list"}}case"DELETE_ALL_THREADS_KEEP_SELECTION":{let r=new Map(e.threads);for(let e of t.threads)(0,m.BI)("copilot.thread_deleted",{...y(e),count:r.size-1}),r.delete(e.id);return{...s(null),threads:r,threadsLoading:{...e.threadsLoading,state:"loaded"},messages:[],messagesLoading:{state:"loaded",error:null},currentReferences:[],currentView:"list"}}case"DELETE_THREAD":{let r=new Map(e.threads);if((0,m.BI)("copilot.thread_deleted",{...y(t.thread),count:r.size-1,mode:e.mode}),r.delete(t.thread.id),e.selectedThreadID===t.thread.id)return{...s(null),threads:r,threadsLoading:{...e.threadsLoading,state:"loaded"},messages:[],messagesLoading:{state:"loaded",error:null},currentReferences:[]};return{...e,threads:r}}case"DELETE_THREAD_ERROR":{(0,m.BI)("copilot.delete_thread_error",{...y(t.thread),error:t.error});let s=new Map(e.threads);return s.set(t.thread.id,t.thread),{...e,threadsLoading:{...e.threadsLoading,error:t.error},threads:s}}case"DELETE_ALL_THREADS_ERROR":{for(let e of t.threads)(0,m.BI)("copilot.delete_thread_error",{...y(e),error:t.error});let s=new Map(e.threads);for(let e of t.threads)s.set(e.id,e);return{...e,threadsLoading:{...e.threadsLoading,error:t.error},threads:s}}case"MESSAGE_ADDED":{(0,m.BI)("copilot.message_added",{...C(t.message),count:e.messages.length+1,repoHasCustomInstructions:!!t.repoHasCustomInstructions,usedRepoCustomInstructions:!!t.usedRepoCustomInstructions,customInstructionsOwners:t.customInstructionsOwners||""});let s=(0,f.HR)(e.messages,t.message);return{...e,messages:s,messagesLoading:{state:"loaded",error:null},pendingFirstMessage:void 0,threadHasNewMessages:!0,editingMessage:void 0}}case"MESSAGE_FEEDBACK":{let s=[...e.messages],r=s.findIndex(e=>e.id===t.message.id),a=s[r];if(!a)return(0,m.BI)("copilot.message_feedback_no_message_found",{...C(t.message)}),e;return s[r]={...a,feedback:t.feedback},{...e,messages:s}}case"MESSAGES_SET_SELECTED_MESSAGE":{let s=(0,f.ws)(e.messages,t.message);return(0,m.BI)("copilot.chat_subthread_changed",{removedReferences:e.currentReferences.length}),{...e,messages:s,threadHasNewMessages:!1,threadSelectedAt:new Date}}case"MESSAGES_UNSELECT_PREVIOUS_MESSAGE":{let s=(0,f.TC)(e.messages,t.message);return{...e,messages:s,threadHasNewMessages:!1}}case"THREAD_UPDATED":return{...e,threads:I(e,t.thread)};case"REFERENCES_LOADED":return(0,m.BI)("copilot.references_loaded",{count:t.references.length}),{...e,currentReferences:e.currentReferences.filter(e=>t.references.every(t=>(0,g.Vb)(t)!==(0,g.Vb)(e))).concat(t.references)};case"ADD_REFERENCE":{let s=[...e.currentReferences.filter(e=>!(0,g.x_)(e,t.reference)),t.reference],r=e.implicitReferences;if(s.length>e.currentReferences.length&&((0,m.BI)("copilot.add_reference",{...A(t.reference),source:t.source,count:e.currentReferences.length+1,implicit:!!t.implicit}),"repository"===t.reference.type&&T.Jt.setLastUsedRepository(t.reference)),(t.reference&&"issue"===t.reference.type||"pull-request"===t.reference.type||"discussion"===t.reference.type)&&(0,E.i)(`Adding ${t.reference.type} ${t.reference.number} as a reference.`),t.implicit){let e=new Set(r);e.add(t.reference),r=e}return{...e,currentReferences:s,implicitReferences:r}}case"REMOVE_REFERENCES":{let s=t.references;s.length>0&&(0,m.BI)("copilot.remove_reference",{count:e.currentReferences.length-s.length}),s[0]&&("issue"===s[0].type||"pull-request"===s[0].type||"discussion"===s[0].type)&&(0,E.i)(`Removing ${s[0].type} ${s[0].number} as a reference.`);let r=T.Jt.getCurrentReferences(e.selectedThreadID);if(r){let t=r.filter(e=>!s.some(t=>(0,g.x_)(t,e)));T.Jt.setCurrentReferences(e.selectedThreadID,t)}return{...e,currentReferences:e.currentReferences.filter(e=>!s.includes(e)),implicitReferences:new Set([...e.implicitReferences].filter(e=>!s.includes(e)))}}case"REPLACE_REFERENCE":{let s=[],r=e.implicitReferences;for(let a of e.currentReferences)if((0,g.x_)(a,t.referenceToDelete)){if(s.push(t.referenceToInsert),r.has(a)){let e=new Set(r);e.delete(a),e.add(t.referenceToInsert),r=e}}else(0,g.x_)(a,t.referenceToInsert)||s.push(a);return(0,m.BI)("copilot.replace_reference",{removedReference:(0,g.Vb)(t.referenceToDelete),addedReference:(0,g.Vb)(t.referenceToInsert),count:s.length}),{...e,implicitReferences:r,currentReferences:s}}case"SHOW_TOPIC_PICKER":return{...e,showTopicPicker:t.show};case"CURRENT_TOPIC_UPDATED":return t.topic&&(0,m.BI)("copilot.current_topic_updated",{type:t.topic?"repository":"none",mode:e.mode}),{...e,currentTopic:t.topic,topicLoading:{...e.topicLoading,state:t.state}};case"MESSAGE_STREAMING_STARTED":return(0,m.BI)("copilot.message_streaming_started",{...C(t.message),model:e.model?.id,mode:e.mode}),{...e,isWaitingOnCopilot:!0,streamingMessage:t.message,messages:[...e.messages]};case"MESSAGE_STREAMING_TOKEN_ADDED":return{...e,streamingMessage:e.streamingMessage?{...e.streamingMessage,content:e.streamingMessage.content+t.token}:null};case"MESSAGE_STREAMING_FUNCTION_CALLED":if(e.streamingMessage){let s=e.streamingMessage.skillExecutions||[],r=-1,a=(r=t.callId&&_.W.enableToolCallLogs?s.findIndex(e=>e.callId===t.callId):s.findIndex(e=>"started"===e.status||"progress"===e.status))>=0?s[r]:null,i=s,n=e.streamingMessage.references||[];switch(t.status){case"started":i=[...s,{slug:t.name,status:t.status,arguments:t.arguments,errorMessage:t.errorMessage,references:[],callId:t.callId}];break;case"progress":if(a){let e={...a,status:t.status,statusMessage:t.statusMessage};i=[...s.slice(0,r),e,...s.slice(r+1)]}break;case"completed":if(a){i=[...s];let e=a.references;a.references?.length||(e=t.references,n=Array.from(new Set([...n,...t.references]))),i[r]={...a,status:t.status,references:e}}else(0,m.BI)("copilot.function_call_missing_callid",{referenceCount:t.references.length,tool:t.name,callId:t.callId??"missing"});break;case"error":a&&((i=[...s])[r]={...a,status:t.status,errorMessage:t.errorMessage})}return{...e,streamingMessage:{...e.streamingMessage,skillExecutions:i,references:n}}}return e;case"MESSAGE_STREAMING_COMPLETED":{let s,r=e.defaultRecipient,a=e.messages;if(e.streamingMessage){let i=e.streamingMessage.skillExecutions;e.streamingMessage.skillExecutions&&(i=e.streamingMessage.skillExecutions.map(e=>"started"===e.status||"progress"===e.status?{...e,status:"completed"}:e)),r=M(s={...e.streamingMessage,id:t.messageResponse.id,references:t.messageResponse.references,createdAt:t.messageResponse.createdAt,intent:t.messageResponse.intent,copilotAnnotations:t.messageResponse.copilotAnnotations,parentMessageID:t.messageResponse.parentMessageID,model:t.messageResponse.model,clientSide:!1,skillExecutions:i},e),(0,m.BI)("copilot.message_streaming_completed",{...C(s),...D(t.timings),model:e.model?.id,mode:e.mode,count:e.messages.length+1}),e.streamingMessage.requestID&&T.Jt.addRequestID(s.id,e.streamingMessage?.requestID),a=(0,f.Y$)(a,s),a=(0,f.HR)(a,s)}return{...e,defaultRecipient:r,isWaitingOnCopilot:!1,streamingMessage:null,messages:a}}case"MESSAGE_STREAMING_FAILED":return(0,m.BI)("copilot.message_streaming_failed",{...e.streamingMessage?C(e.streamingMessage):{},...D(t.timings),model:e.model?.id,mode:e.mode}),{...e,isWaitingOnCopilot:!1,streamingMessage:null};case"MESSAGE_STREAMING_STOPPED":{let s,r=(0,f.B)(e.messages).findLast(e=>"user"===e.role)?.id;e.streamingMessage?(s={...e.streamingMessage,interrupted:!0,parentMessageID:r},(0,m.BI)("copilot.message_streaming_stopped",{...C(s),...D(t.timings),model:e.model?.id,mode:e.mode,count:e.messages.length+1})):e.isWaitingOnCopilot&&(s={id:crypto.randomUUID(),role:"assistant",threadID:e.selectedThreadID??"",references:[],createdAt:new Date().toISOString(),interrupted:!0,clientSide:!0,parentMessageID:r});let a=e.messages;if(null!=s){let e=a.findLast(e=>"user"===e.role);void 0!==e&&(s.parentMessageID=e.id),a=(0,f.HR)(a,s)}return{...e,isWaitingOnCopilot:!1,streamingMessage:null,messages:a}}case"MESSAGES_CLEAR_LAST_ERROR":{let t=(0,f.B)(e.messages),s=e.messages,r=t[t.length-1],a=r?.error||r?.interrupted,i=s;return a&&(i=s.filter(e=>e.id!==r?.id)),{...e,streamingMessage:null,messages:[...i]}}case"SELECT_REFERENCE":return t.reference&&(0,m.BI)("copilot.select_reference",A(t.reference)),{...e,selectedReference:t.reference};case"MODELS_LOADING":return{...e,modelsLoading:{state:"loading",error:null}};case"MODELS_LOADING_ERROR":return{...e,modelsLoading:{state:"error",error:t.error}};case"MODELS_LOADED":{let s=t.models;return _.W.visionAllowedInClaude||(s=t.models.map(e=>{if(e.id.startsWith("claude")){let t={...e};return t.capabilities.supports.vision=!1,t}return e})),{...e,model:(s||[]).find(t=>t.id===e.model.id)||e.model,availableModels:s||[],modelsLoading:{state:"loaded",error:null}}}case"SELECT_MODEL":{if("immersive"!==e.mode)return e;let s=t.model?.capabilities?.supports?.vision?e.currentReferences:e.currentReferences.filter(e=>"image"!==e.type);return(0,m.BI)("copilot.select_model",{model:t.model?.name,mode:e.mode}),{...e,model:t.model,currentReferences:s}}case"VIEW_ALL_THREADS":return{...e,currentView:"list"};case"VIEW_CURRENT_THREAD":return{...e,currentView:"thread"};case"IMPLICIT_CONTEXT_UPDATED":if(!(0,g.yR)(t.context,e.context))return{...e,context:t.context};return e;case"SET_TOP_REPOSITORIES":return{...e,topRepositoriesCache:t.topics};case"SET_AGENTS":return{...e,agents:t.agents};case"SET_CUSTOM_COPILOT":{let s=e.customCopilots?.find(e=>(0,R.UG)(e,t.customCopilot)),r=s&&t.partial,a=s?e.customCopilots?.map(e=>(0,R.UG)(e,s)?r?{...e,...t.customCopilot}:t.customCopilot:e):[...e.customCopilots??[],t.customCopilot];return{...e,customCopilots:a}}case"SET_CUSTOM_COPILOTS":return{...e,customCopilots:t.customCopilots};case"REMOVE_CUSTOM_COPILOT":return{...e,customCopilots:e.customCopilots?.filter(e=>!(0,R.UG)(e,t.customCopilotId))};case"SET_DEEP_CODESEARCH":return{...e,skillOptions:{...e.skillOptions,deepCodeSearch:t.deepCodeSearch}};case"MESSAGE_STREAMING_CONFIRMATION":{let s={title:t.title,message:t.message,confirmation:t.confirmation};return{...e,streamingMessage:e.streamingMessage?{...e.streamingMessage,confirmations:e.streamingMessage.confirmations?[...e.streamingMessage.confirmations,s]:[s]}:null}}case"AGENT_ERROR":{let s=e.streamingMessage,r=t.error;return{...e,streamingMessage:s&&{...s,agentErrors:[...s.agentErrors??[],{type:r.type,code:r.code,message:r.message,identifier:r.identifier}]}}}case"ENTITLEMENT_UPDATED":return{...e,entitlement:t.entitlement??e.entitlement};case"TOGGLE_REPO_CUSTOM_INSTRUCTIONS":return(0,m.BI)("copilot.repo_custom_instructions_toggled",{isEnabling:!!t.value}),{...e,repoCustomInstructionsEnabled:t.value};case"DISMISS_EDITOR_UPSELL_BANNER":return{...e,isEditorUpsellBannerDismissed:!0};case"DISMISS_AMBIENT_ERROR":return{...e,ambientError:null};case"ADD_AMBIENT_ERROR":return{...e,ambientError:{message:t.message}};case"SET_PERSONAL_INSTRUCTIONS":return{...e,personalInstructions:t.personalInstructions};case"SHARED_THREAD_UPDATED":{let s=I(e,t.thread),r=s.get(t.thread.id);return r&&(0,m.BI)("copilot.shared_thread_update",y(r)),{...e,threads:s}}case"SHARED_THREADS_LOADING":return{...e,sharedThreadsLoading:{...e.sharedThreadsLoading,state:"loading"}};case"SHARED_THREADS_LOADED":return(0,m.BI)("copilot.shared_threads_loaded"),{...e,sharedThreadsLoading:{...e.sharedThreadsLoading,state:"loaded"}};case"SHARED_THREADS_LOADING_ERROR":return(0,m.BI)("copilot.shared_threads_loading_error",{error:t.message}),{...e,sharedThreadsLoading:{...e.sharedThreadsLoading,state:"error",error:t.message}};case"IMAGE_UPLOADED":return{...e,currentReferences:e.currentReferences.map(e=>"image"===e.type&&e.id===t.referenceId?{...e,imageUrl:t.dotcomAttachment.previewUrl}:e)};case"START_EDITING_MESSAGE":return(0,m.BI)("dotcom_chat.activate",{target:"USER_MESSAGE_ACTION_EDIT",mode:"immersive"}),{...e,editingMessage:t.messageId};case"CANCEL_EDITING_MESSAGE":return{...e,editingMessage:void 0};case"FETCH_SHARED_THREAD_MESSAGES":return{...e,fetchSharedThreads:{ok:t.ok,status:t.status,shareId:t.shareId,originalThreadId:t.originalThreadId}};case"SET_WRAP_CODE_LINES":return{...e,wrapCodeLines:t.value};case"CLEAR_SHARED_THREAD_CHANNEL":return{...e,sharedThreadChannel:null};case"CLEAR_DEFAULT_RECIPIENT":return{...e,defaultRecipient:void 0};case"SET_PENDING_FIRST_MESSAGE":return{...e,pendingFirstMessage:t.message};case"SET_SHOULD_REPLACE_HISTORY_ON_NAVIGATION":return{...e,shouldReplaceHistoryOnNavigation:t.value}}};function I(e,t){let s=new Map(e.threads),r=e.threads.get(t.id);if(!r)return s;let a={...r,...t};return s.set(t.id,a),s}function C(e){var t;if(!e)return(0,m.Ti)({});let s={id:e.id,role:e.role,createdAt:e.createdAt,threadID:e.threadID,referenceCount:e.references?.length??0};return e.intent&&(s.intent=e.intent),e.error&&(s.error=e.error),e.copilotAnnotations&&(s.copilotAnnotations=function(e){if(e)return{CodeVulnerability:e.CodeVulnerability?.map(e=>({details:{type:e?.details?.type}})),PublicCodeReference:e.PublicCodeReference?.map(e=>({details:{license:e?.details?.license,language:e?.details?.language}}))}}(e.copilotAnnotations)),e.skillExecutions&&(s.skillExecutions=(t=e.skillExecutions)?t.map(e=>({slug:e?.slug,status:e?.status,argumentCount:e?.arguments?.length??0,errorMessage:e?.errorMessage,references:e?.references?.length??0})):[]),e.interrupted&&(s.interrupted=!0),(0,m.Ti)(s)}function y(e){return e?(0,m.Ti)({id:e.id,createdAt:e.createdAt,updatedAt:e.updatedAt,currentReferenceCount:e.currentReferences?.length??0}):(0,m.Ti)({})}function A(e){return e?(0,m.Ti)({type:e.type}):(0,m.Ti)({})}function D(e){let t={totalTime:e.endTime-e.startTime};return void 0!==e.firstByte&&(t.ttfb=e.firstByte-e.startTime),void 0!==e.firstToken&&(t.ttft=e.firstToken-e.startTime),t}function M(e,t){let s=(0,g.Th)(e,t.currentUserLogin);if("agent"===s.type)return s.name}var w=s(33592),v=s(46062),O=s(72206);let L=(0,n.createContext)(null),N=new Set;function b(e){var t,s,i,E;let m,_,R,I,C,y,A,D,M,O,b,P,x,H,U=(0,a.c)(68),{children:B,topic:k,workerPath:F,threadId:W,refs:J,selectedReference:V,mode:j,ssoOrganizations:z,chatIsOpen:q,chatIsVisible:$,chatVisibleSettingPath:K,agents:Y,customCopilots:X,messages:Z,testReducerState:Q,realIp:ee,currentView:et,copilotChatPayload:es}=e,er=function(e,t){let s,r,i,o=(0,a.c)(4),d=l(e,t);if(o[0]===Symbol.for("react.memo_cache_sentinel")){let e=c.getItem(h);s=e?JSON.parse(e):void 0,o[0]=s}else s=o[0];let u=s;if(o[1]===Symbol.for("react.memo_cache_sentinel")?(r=[],o[1]=r):r=o[1],(0,n.useEffect)(p,r),d&&u?.expiry&&u.expiry>Date.now()&&u.threadId===e){let e;return o[2]===Symbol.for("react.memo_cache_sentinel")?(e={restoredMessages:u.restoredMessages,restoredThreadTitle:u.threadTitle},o[2]=e):e=o[2],e}return o[3]===Symbol.for("react.memo_cache_sentinel")?(i={},o[3]=i):i=o[3],i}(W,j),ea=er.restoredMessages,ei=er.restoredThreadTitle;if(ea){let e;U[0]!==ea?(e=(0,f.zh)(ea),U[0]=ea,U[1]=e):e=U[1],ea=e}U[2]!==k?(m=k?(0,g.qS)(k):void 0,U[2]=k,U[3]=m):m=U[3];let en=m;U[4]===Symbol.for("react.memo_cache_sentinel")?(_=(0,v.fZ)(null,null),U[4]=_):_=U[4];let eo=_;U[5]!==Y||U[6]!==q||U[7]!==$||U[8]!==K||U[9]!==es.agentsEnabled||U[10]!==es.agentsPath||U[11]!==es.apiURL||U[12]!==es.autoSubmit||U[13]!==es.currentUserLogin||U[14]!==es.customCopilotsEnabled||U[15]!==es.customInstructions||U[16]!==es.hasCEorCBAccess||U[17]!==es.optedInToPreviewFeatures||U[18]!==es.optedInToUserFeedback||U[19]!==es.personalInstructions||U[20]!==es.plan||U[21]!==es.renderBetaLabel||U[22]!==es.reviewLab||U[23]!==es.sharedThreadChannel||U[24]!==et||U[25]!==X||U[26]!==Z||U[27]!==j||U[28]!==J||U[29]!==ea||U[30]!==ei||U[31]!==V||U[32]!==z||U[33]!==Q||U[34]!==W||U[35]!==k||U[36]!==en||U[37]!==F?(R=Q||{threadSelectedAt:new Date,threadsLoading:{state:"pending",error:null},messagesLoading:{state:"pending",error:null},messagesRestored:!!ea,slashCommandLoading:{state:"pending",error:null},showTopicPicker:"immersive"!==j&&(!W||"assistive"===j)&&!k,topicLoading:{state:"pending",error:null},threads:new Map,restoredThreadTitle:ei,model:eo,availableModels:[eo],modelsLoading:{state:"pending",error:null},messages:Z??ea??[],streamingMessage:null,selectedThreadID:W,currentTopic:void 0,chatIsOpen:!!q,isWaitingOnCopilot:!1,isWaitingOnAttachment:!1,attachmentProcessingType:null,currentUserLogin:es.currentUserLogin,apiUrl:es.apiURL,currentReferences:en?[en,...J]:J,implicitReferences:N,findFileWorkerPath:F,currentView:et||"thread",selectedReference:V??null,mode:j,currentRepository:k,ssoOrganizations:z,context:void 0,customInstructions:es.customInstructions,chatIsVisible:$,chatVisibleSettingPath:K,renderBetaLabel:es.renderBetaLabel,topRepositoriesCache:void 0,agentsPath:es.agentsPath,customCopilotsEnabled:es.customCopilotsEnabled??!1,optedInToPreviewFeatures:es.optedInToPreviewFeatures,optedInToUserFeedback:es.optedInToUserFeedback,agents:Y,customCopilots:X,reviewLab:es.reviewLab,repoCustomInstructionsEnabled:T.Jt.getRepoCustomInstructionsState(),ambientError:void 0,personalInstructions:es.personalInstructions??null,threadHasNewMessages:!1,sharedThreadsLoading:{state:"pending",error:null},skillOptions:{deepCodeSearch:!1},wrapCodeLines:T.Jt.getWrapCodeLines(),sharedThreadChannel:es.sharedThreadChannel,autoSubmit:es.autoSubmit??!1,plan:es.plan,hasCEorCBAccess:es.hasCEorCBAccess,agentsEnabled:es.agentsEnabled},U[5]=Y,U[6]=q,U[7]=$,U[8]=K,U[9]=es.agentsEnabled,U[10]=es.agentsPath,U[11]=es.apiURL,U[12]=es.autoSubmit,U[13]=es.currentUserLogin,U[14]=es.customCopilotsEnabled,U[15]=es.customInstructions,U[16]=es.hasCEorCBAccess,U[17]=es.optedInToPreviewFeatures,U[18]=es.optedInToUserFeedback,U[19]=es.personalInstructions,U[20]=es.plan,U[21]=es.renderBetaLabel,U[22]=es.reviewLab,U[23]=es.sharedThreadChannel,U[24]=et,U[25]=X,U[26]=Z,U[27]=j,U[28]=J,U[29]=ea,U[30]=ei,U[31]=V,U[32]=z,U[33]=Q,U[34]=W,U[35]=k,U[36]=en,U[37]=F,U[38]=R):R=U[38];let ed=R,[ec,el]=(0,n.useReducer)(S,ed);return t=ec.messages,s=ec.selectedThreadID,i=ec.threads,E=ec.mode,(x=(0,a.c)(9))[0]!==E||x[1]!==s?(O=l(s,E),x[0]=E,x[1]=s,x[2]=O):O=x[2],H=O,x[3]!==t||x[4]!==H||x[5]!==s||x[6]!==i?(b=()=>{if(!H)return;let e=()=>{if(!t?.length||!s)return;let e=i.get(s),r=e?.name,a={expiry:Date.now()+8e3,restoredMessages:t,threadId:s,threadTitle:r};c.setItem(h,JSON.stringify(a,u))};return window.addEventListener("turbo:before-fetch-response",e),window.addEventListener("beforeunload",e),window.addEventListener("popstate",e),()=>{window.removeEventListener("turbo:before-fetch-response",e),window.removeEventListener("beforeunload",e),window.removeEventListener("popstate",e)}},P=[t,H,s,i],x[3]=t,x[4]=H,x[5]=s,x[6]=i,x[7]=b,x[8]=P):(b=x[7],P=x[8]),(0,n.useEffect)(b,P),U[39]!==ec.chatIsOpen||U[40]!==ec.currentReferences||U[41]!==ec.currentRepository?.id||U[42]!==ec.selectedThreadID?(I=function(){if(!ec.chatIsOpen)return;let e=ec.currentReferences.filter(e=>"repository"!==e.type||e.id!==ec.currentRepository?.id);T.Jt.setCurrentReferences(ec.selectedThreadID,e)},U[39]=ec.chatIsOpen,U[40]=ec.currentReferences,U[41]=ec.currentRepository?.id,U[42]=ec.selectedThreadID,U[43]=I):I=U[43],U[44]!==ec.chatIsOpen||U[45]!==ec.currentReferences||U[46]!==ec.currentRepository||U[47]!==ec.selectedThreadID?(C=[ec.selectedThreadID,ec.currentReferences,ec.currentRepository,ec.chatIsOpen],U[44]=ec.chatIsOpen,U[45]=ec.currentReferences,U[46]=ec.currentRepository,U[47]=ec.selectedThreadID,U[48]=C):C=U[48],(0,n.useEffect)(I,C),U[49]!==B||U[50]!==ec.selectedThreadID?(y=(0,r.jsx)(d.M,{selectedThreadId:ec.selectedThreadID,children:B}),U[49]=B,U[50]=ec.selectedThreadID,U[51]=y):y=U[51],U[52]!==es.apiURL||U[53]!==es.apiVersion||U[54]!==es.hasCEorCBAccess||U[55]!==ee||U[56]!==z||U[57]!==ec||U[58]!==y?(A=(0,r.jsx)(L,{value:el,children:(0,r.jsx)(w.v,{apiURL:es.apiURL,apiVersion:es.apiVersion,state:ec,dispatch:el,ssoOrganizations:z,realIp:ee,hasCEorCBAccess:es.hasCEorCBAccess,children:y})}),U[52]=es.apiURL,U[53]=es.apiVersion,U[54]=es.hasCEorCBAccess,U[55]=ee,U[56]=z,U[57]=ec,U[58]=y,U[59]=A):A=U[59],U[60]!==ec||U[61]!==A?(D=(0,r.jsx)(G,{state:ec,children:A}),U[60]=ec,U[61]=A,U[62]=D):D=U[62],U[63]!==es.licenseType||U[64]!==es.plan||U[65]!==es.quotas||U[66]!==D?(M=(0,r.jsx)(o.$d,{initialLicenseType:es.licenseType,initialPlan:es.plan,initialQuotas:es.quotas,children:D}),U[63]=es.licenseType,U[64]=es.plan,U[65]=es.quotas,U[66]=D,U[67]=M):M=U[67],M}let P=(0,n.createContext)(null);function G(e){let t,s,o,d,c=(0,a.c)(14),{state:l,children:h}=e,[u,p]=(0,i.XG)(l);return c[0]!==p||c[1]!==l||c[2]!==u.current.value?(t=()=>{l!==u.current.value&&p(l)},c[0]=p,c[1]=l,c[2]=u.current.value,c[3]=t):t=c[3],c[4]!==p||c[5]!==l||c[6]!==u?(s=[l,u,p],c[4]=p,c[5]=l,c[6]=u,c[7]=s):s=c[7],(0,n.useLayoutEffect)(t,s),c[8]!==h||c[9]!==l?(o=(0,r.jsx)(P,{value:l,children:h}),c[8]=h,c[9]=l,c[10]=o):o=c[10],c[11]!==u||c[12]!==o?(d=(0,r.jsx)(O.sw,{value:u,children:o}),c[11]=u,c[12]=o,c[13]=d):d=c[13],d}function x(){let e=(0,n.use)(P);if(!e)throw Error("useChatState can only be used inside a CopilotChatProvider");return e}function H(){return(0,n.use)(P)??void 0}function U(e){let t=(0,O.rE)();if(!t||!t.current)throw Error("useChatStateLens can only be used inside a CopilotChatProvider");let s=(0,i.Sk)(t.current,e);return(0,i.HN)(s)}function B(e){let t,s=(0,a.c)(2);return s[0]!==e?(t=t=>t[e],s[0]=e,s[1]=t):t=s[1],U(t)}function k(...e){let t,s=(0,a.c)(2);return s[0]!==e?(t=t=>(function(e,t){let s={};for(let r of t)s[r]=e[r];return s})(t,e),s[0]=e,s[1]=t):t=s[1],U(t)}function F(){let e=(0,n.use)(L);if(!e)throw Error("useChatDispatch can only be used inside a CopilotChatProvider");return e}try{L.displayName||(L.displayName="CopilotChatDispatchContext")}catch{}try{b.displayName||(b.displayName="CopilotChatProvider")}catch{}try{P.displayName||(P.displayName="ChatStateContext")}catch{}try{G.displayName||(G.displayName="ChatStateProvider")}catch{}},6219:(e,t,s)=>{s.d(t,{BV:()=>i,My:()=>o,QM:()=>n,ZK:()=>GenericServerError});var r=s(50467),a=s(96379);async function i(e,t,s){let r=await (0,a.DI)(t,{method:"POST",body:d(e),signal:s}),i=await r.json();if(!r.ok)throw new GenericServerError("Error creating policy",i.errors);if(!i.asset_upload_url)throw Error("Unexpected error, missing asset upload URL");return i}async function n(e,t,s){let r=await fetch(t.upload_url,{method:"POST",body:d({...t.form,file:e}),signal:s});if(!r.ok)throw Error(await r.text())}async function o(e,t){let s=await (0,a.DI)(e.asset_upload_url,{method:"PUT",signal:t}),r=await s.json();if(!s.ok)throw new GenericServerError("Error completing the upload",r.errors);return r}let GenericServerError=class GenericServerError extends Error{constructor(e,t){super(e),(0,r._)(this,"errors",void 0),this.name="GenericServerError",this.errors=t}};function d(e){let t=new FormData;for(let[s,r]of Object.entries(e).filter(([,e])=>null!=e))t.append(s,r);return t}},25536:(e,t,s)=>{s.d(t,{M:()=>o,O:()=>d});var r=s(74848),a=s(16522),i=s(96540);let n=(0,i.createContext)(null);function o(e){let t,s,o,d=(0,a.c)(7),{selectedThreadId:c,children:l}=e,[h,u]=(0,i.useState)();d[0]===Symbol.for("react.memo_cache_sentinel")?(t=e=>{u(e)},d[0]=t):t=d[0];let p=t;d[1]!==h||d[2]!==c?(s={selectedCopilotSpaceId:h,setSelectedCopilotSpaceId:p,selectedThreadId:c},d[1]=h,d[2]=c,d[3]=s):s=d[3];let g=s;return d[4]!==l||d[5]!==g?(o=(0,r.jsx)(n,{value:g,children:l}),d[4]=l,d[5]=g,d[6]=o):o=d[6],o}function d(){let e=(0,i.use)(n);if(!e)throw Error("useCopilotSpaceSelection must be used within a CopilotSpaceSelectionProvider");return e}try{n.displayName||(n.displayName="CopilotSpaceSelectionContext")}catch{}try{o.displayName||(o.displayName="CopilotSpaceSelectionProvider")}catch{}},26239:(e,t,s)=>{s.d(t,{Bc:()=>i,Qs:()=>c,fv:()=>n,uN:()=>a,wJ:()=>d,wX:()=>o,wg:()=>r});let r="copilot-chat-textarea",a="copilot-chat-topic-search",i="Review",n="copilot-chat-header-button",o="copilot-diff-header-button",d="copilot-chat-panel",c="copilot-chat-panel"},30456:(e,t,s)=>{s.d(t,{N:()=>UploadableFileAttachment});var r=s(35750),a=s(18150),i=s(85242),n=s(50467),o=s(6219),d=s(34681);async function c(e,t){return void 0!==t.width&&void 0!==t.height?{width:t.width,height:t.height}:e.type.startsWith("image/")?new Promise((s,r)=>{let a=new FileReader;a.onload=e=>{if(!e.target?.result||"string"!=typeof e.target.result)return void s({width:void 0,height:void 0});let a=new Image;a.onload=()=>{t.width=a.width,t.height=a.height,s({width:a.width,height:a.height})},a.onerror=()=>r(Error("Failed to load image for dimension extraction")),a.src=e.target.result},a.readAsDataURL(e)}):{width:void 0,height:void 0}}var l=new WeakMap,h=new WeakMap,u=new WeakMap;let UploadableFileAttachment=class UploadableFileAttachment{prefetch(){return(0,r._)(this,u).load()}get previewUrl(){return(0,r._)(this,u).read().href}async url(){return(await (0,r._)(this,u).load()).href}async getDimensions(){return c(this.file,this)}constructor(e,t,s=null){(0,n._)(this,"file",void 0),(0,n._)(this,"width",void 0),(0,n._)(this,"height",void 0),(0,a._)(this,l,{writable:!0,value:void 0}),(0,a._)(this,h,{writable:!0,value:void 0}),(0,n._)(this,"abortController",void 0),(0,n._)(this,"key",void 0),(0,n._)(this,"threadID",void 0),(0,n._)(this,"isLoaded",!1),(0,n._)(this,"hasError",!1),(0,a._)(this,u,{writable:!0,value:(0,d.Z)(async()=>{let e=await (0,o.BV)({name:this.file.name,size:String(this.file.size),content_type:this.file.type,thread_id:this.threadID},"/upload/policies/copilot-chat-attachments",(0,r._)(this,h));await (0,o.QM)(this.file,e,(0,r._)(this,h));let t=await (0,o.My)(e,(0,r._)(this,h)),s=await (0,r._)(this,l);return this.width=s.width,this.height=s.height,this.isLoaded=!0,t})}),this.file=t,this.abortController=new AbortController,(0,i._)(this,h,this.abortController.signal),this.key=e,(0,i._)(this,l,this.getDimensions()),this.threadID=s}}},33592:(e,t,s)=>{s.d(t,{b:()=>E,v:()=>g});var r=s(74848),a=s(16522),i=s(70170),n=s(96540),o=s(79184),d=s(37294),c=s(47789),l=s(66239),h=s(35247),u=s(72206);let p=(0,n.createContext)(null);function g(e){let t,s,g,E,m,f=(0,a.c)(24),{apiURL:_,state:T,dispatch:R,ssoOrganizations:S,children:I,realIp:C,hasCEorCBAccess:y,apiVersion:A}=e,D=(0,u.tD)(),M=(0,c.qw)(),w=(0,d.jR)();f[0]!==_||f[1]!==A||f[2]!==R||f[3]!==D||f[4]!==y||f[5]!==M||f[6]!==C||f[7]!==S||f[8]!==w?(t=new l.e8(R,_,S,D,C,void 0,y,M,A,w),f[0]=_,f[1]=A,f[2]=R,f[3]=D,f[4]=y,f[5]=M,f[6]=C,f[7]=S,f[8]=w,f[9]=t):t=f[9];let v=t,{licenseType:O}=(0,o.xR)(),L=(0,n.useRef)(T.currentReferences.length);return f[10]!==T.currentReferences.length?(s=()=>{L.current=T.currentReferences.length},f[10]=T.currentReferences.length,f[11]=s):s=f[11],(0,n.useEffect)(s),f[12]!==v||f[13]!==T.chatIsOpen||f[14]!==T.mode?(g=()=>{let e=new AbortController,t=h.W.immersiveEmbedded&&"immersive"===T.mode,s=async e=>{let t=window.location.hash,s=window.location.pathname,r=window.location.hash?`${s}${t}`:s,a=r.slice(1).split("/");if(a.length<2)return;let i=a[0],n=a[1];i&&n&&await v.fetchImplicitContext(r,i,n,e)},r=e=>{s(e)},a=(0,i.s)(()=>r(!t),500);return T.chatIsOpen&&(r(!0),!function(){let{replaceState:t,pushState:s}=window.history;window.history.replaceState=function(...e){t.apply(window.history,e),v.clearSuggestions(),window.dispatchEvent(new Event("replaceState"))},window.history.pushState=function(...e){s.apply(window.history,e),v.clearSuggestions(),window.dispatchEvent(new Event("pushState"))},window.addEventListener("popstate",a,{signal:e.signal}),window.addEventListener("replaceState",a,{signal:e.signal}),window.addEventListener("pushState",a,{signal:e.signal})}()),()=>{e.abort()}},f[12]=v,f[13]=T.chatIsOpen,f[14]=T.mode,f[15]=g):g=f[15],f[16]!==O||f[17]!==v||f[18]!==T.chatIsOpen||f[19]!==T.mode?(E=[v,T.chatIsOpen,T.mode,O],f[16]=O,f[17]=v,f[18]=T.chatIsOpen,f[19]=T.mode,f[20]=E):E=f[20],(0,n.useEffect)(g,E),f[21]!==I||f[22]!==v?(m=(0,r.jsx)(p,{value:v,children:I}),f[21]=I,f[22]=v,f[23]=m):m=f[23],m}function E(){let e=(0,n.use)(p);if(!e)throw Error("useChatManager must be used within a CopilotChatManagerProvider");return e}try{p.displayName||(p.displayName="CopilotChatManagerContext")}catch{}try{g.displayName||(g.displayName="CopilotChatManagerProvider")}catch{}},34681:(e,t,s)=>{s.d(t,{Z:()=>r});function r(e){let t,s=null;return{load:()=>(s||(s=e().then(e=>t=e)),s),read(){if(t)return t;throw this.load()}}}},38627:(e,t,s)=>{function r(e,t){if(e?.components)return e.components.find(e=>e.routes.some(e=>e instanceof RegExp?e.test(t.pathname):e(t)))}function a(e,t){let{pathname:s}=e;if(!s)return;let r={pathname:s,search:e.search||"",hash:e.hash||""};return t.find(e=>{var t,s;return!!e.components&&e.components.length>0&&(t=e,s=r,!!t.components&&t.components.length>0&&t.components.some(e=>e.routes.some(e=>e instanceof RegExp?e.test(s.pathname):e(s))))})}s.d(t,{BW:()=>a,bG:()=>r})},40104:(e,t,s)=>{s.d(t,{D6:()=>h,Fo:()=>c,MV:()=>u,zB:()=>p});var r=s(50467),a=s(82075),i=s(96540);let n=(0,a.A)("sessionStorage"),o="session-storage-update",d=class UseSessionStorageUpdateEvent extends Event{constructor(e,t){super(o),(0,r._)(this,"storageKey",void 0),(0,r._)(this,"storageValue",void 0),this.storageKey=e,this.storageValue=t}};function c(e,t){let s=(0,i.useRef)(t);(0,i.useEffect)(()=>{s.current=t});let[r,a]=(0,i.useState)(()=>{let t=n.getItem(e);return t?JSON.parse(t):s.current}),c=(0,i.useCallback)(t=>{a(void 0!==t?t:s.current),void 0===t?n.removeItem(e):n.setItem(e,JSON.stringify(t)),document.dispatchEvent(new d(e,t))},[e]),l=(0,i.useCallback)(e=>{s.current=e},[s]);return(0,i.useEffect)(()=>{function t(t){if(t.storageKey===e){let e=t.storageValue;a(void 0!==e?e:s.current)}}document.addEventListener(o,t);let r=n.getItem(e);return r?a(JSON.parse(r)):a(s.current),()=>{document.removeEventListener(o,t)}},[e]),[r,c,l]}function l(e){let t=n.getKeys(),s=[];for(let r in t)t[r]?.startsWith(e)&&s.push(t[r]);return s}function h(e){for(let t of e)n.removeItem(t),document.dispatchEvent(new d(t,void 0))}function u(e){let t=[];for(let s of l(e)){let e=n.getItem(s);null!=e&&t.push(JSON.parse(e))}return t}function p(e){h(l(e))}},47789:(e,t,s)=>{s.d(t,{Hb:()=>o,qw:()=>d});var r=s(74848),a=s(16522),i=s(96540);let n=(0,i.createContext)([]);function o(e){let t,s=(0,a.c)(3),{plugins:i,children:o}=e;return s[0]!==o||s[1]!==i?(t=(0,r.jsx)(n,{value:i,children:o}),s[0]=o,s[1]=i,s[2]=t):t=s[2],t}function d(){return(0,i.use)(n)}try{n.displayName||(n.displayName="PluginsContext")}catch{}try{o.displayName||(o.displayName="ImmersivePluginsProvider")}catch{}},66239:(e,t,s)=>{s.d(t,{L9:()=>C,e8:()=>CopilotChatManager});var r,a=s(50467),i=s(74848),n=s(79802),o=s(53419),d=s(40104),c=s(96379),l=s(38627),h=s(26239),u=s(25641),p=s(86339),g=s(20139),E=s(73952),m=s(51213),f=s(35247),_=s(79064),T=s(57872),R=s(46062),S=s(63828),I=s(30456);let C=99,y="Only one agent is allowed per thread, and their context can't be shared. If you want to interact with another agent, please start a new thread and @ mention the new agent.",A=null;let CopilotChatManager=class CopilotChatManager{async openChat(e,t,s,r,a,i){if(this.dispatch({type:"OPEN_COPILOT_CHAT",source:s}),"thread"===t&&await this.findOrStartNewThread(e,a,i),_.Jt.setCollapsedState(!1),v(this.getChatState().entryPointId??h.fv,!0),r){let e=new FormData;e.set("copilot_chat_visible","true"),(0,c.DI)(r,{method:"PUT",body:e})}}closeChat(){this.dispatch({type:"CLOSE_COPILOT_CHAT"}),_.Jt.setCollapsedState(!0),v(this.getChatState().entryPointId??h.fv,!1)}hideChat(e){if(this.dispatch({type:"HIDE_COPILOT_CHAT"}),this.closeChat(),e){let t=new FormData;t.set("copilot_chat_visible","false"),(0,c.DI)(e,{method:"PUT",body:t})}}toggleRepoCustomInstructions(e){this.dispatch({type:"TOGGLE_REPO_CUSTOM_INSTRUCTIONS",value:e}),_.Jt.setRepoCustomInstructionsState(e)}viewAllThreads(){this.dispatch({type:"VIEW_ALL_THREADS"})}viewCurrentThread(){this.dispatch({type:"VIEW_CURRENT_THREAD"})}maxMessagesReached(){return this.getChatState().messages.length>=3e3}setShouldReplaceHistoryOnNavigation(e){this.dispatch({type:"SET_SHOULD_REPLACE_HISTORY_ON_NAVIGATION",value:e})}async sendChatMessage({thread:e,content:t,references:s,topic:r,context:a,confirmations:i,customInstructions:n,model:o,customCopilotId:d,intent:c,parentMessageId:l,modeOverride:h,skillOptions:p,noSend:g,mediaContent:E}){let m=e;if(!m){let e=(0,u.Y6)({role:"user",content:t,mediaContent:[],references:s});this.dispatch({type:"SET_PENDING_FIRST_MESSAGE",message:e});try{m=await this.createThread({customCopilotId:d})}catch(s){let e="An unexpected error has occurred.";return s instanceof Error&&(e=s.message),this.handleSendMessageError(m,w(e),t,"ERROR_THREAD_CREATION",e),null}}E||(E=s.length?await Promise.all(s.filter(e=>"image"===e.type).map(async e=>{let{attachment:s}=e;if(!s.threadID){s.threadID=m?.id||null;try{await s.prefetch()}catch{let e="An error occurred uploading image attachments";this.handleSendMessageError(m,w(e),t,"ERROR_IMAGE_UPLOAD",e)}}let r=await s.url(),a=s.file;return{mediaType:a.type,name:a.name,url:r,chatAttachmentUrl:r,width:s.width,height:s.height}})):[]);let f=s.filter(e=>"image"!==e.type);return(f=f.filter(e=>"figma"!==e.type||!e.authenticationRequired),null!=m&&this.clearEditedReferencesFromSessionStorage(m.id),g)?{thread:m,references:f,mediaContent:E}:(await this.sendNewMessage(m,t,E,f,c,r,a,i,n,o,d,l,h,p),null)}FindLastMessageID(){let e=(0,E.B)(this.getChatState().messages);return e[e.length-1]?.id||"root"}async retryLastUnsuccessfulChatMessage(e){let{currentTopic:t,context:s,customInstructions:r,model:a}=this.getChatState(),i=(0,E.B)(this.getChatState().messages).findLast(e=>"user"===e.role);if(!i?.content)return;let n=i.references?.length?i.references:e.currentReferences??[],o=i.mediaContent||[];this.dispatch({type:"MESSAGES_CLEAR_LAST_ERROR"}),this.unselectPreviousChildMessage(i);let d="";if(i.clientSide){let e=(0,E.B)(this.getChatState().messages).findLast(e=>!e.clientSide);d=e?"user"===e.role?e.parentMessageID||"root":e.id:"root"}else d=i.id;return this.sendMessage(e,i.content,o,n,i.intent,s,t,r,a,void 0,d)}async retryUserChatMessage(e,t,s){let r,{currentTopic:a,context:i,customInstructions:n,model:o}=this.getChatState();if(t.parentMessageID&&(r=this.getChatState().messages.findLast(e=>e.id===t.parentMessageID)),!r||!r.content)return;this.unselectPreviousChildMessage(r);let d=r.references||[],c=r.mediaContent||[];return this.sendMessage(e,r.content,c,d,t.intent,i,a,n,s||o,void 0,r.id)}async editUserChatMessage(e,t,s){if(!s)return;let{currentTopic:r,context:a,customInstructions:i,messages:n,model:o}=this.getChatState(),d=(0,E.CX)(n,t);if(!d)return;let c=d?.id||"",l=t.clientConfirmations??[],h=t.references||[],p=t.mediaContent||[],g=(0,u.Y6)({role:"user",content:s,mediaContent:p,references:h,thread:e,confirmationResponses:l,parentMessageID:c}),m=(0,u.lG)(r,h);if(this.dispatch({type:"MESSAGE_ADDED",message:g,repoHasCustomInstructions:!!m,usedRepoCustomInstructions:!!(m&&this.repoInstructionsEnabled()),customInstructionsOwners:(0,u.j$)(h)}),this.reloadingThreadPromise&&(this.dispatch({type:"WAITING_ON_COPILOT",loading:!0}),this.afterThreadReloadCallback=()=>{this.dispatch({type:"MESSAGE_ADDED",message:g,repoHasCustomInstructions:!!m,usedRepoCustomInstructions:!!(m&&this.repoInstructionsEnabled()),customInstructionsOwners:(0,u.j$)(h)})},!await this.reloadingThreadPromise))return;let f=d;for(;f&&f.clientSide;)f=(0,E.CX)(n,f);return this.sendMessage(e,s,p,h,t.intent,a,r,i,o,void 0,f?.id||"")}handleFeedback(e,t){this.dispatch({type:"MESSAGE_FEEDBACK",message:e,feedback:t})}setSelectedMessage(e){this.clearEditedReferencesFromSessionStorage(e.threadID),this.dispatch({type:"MESSAGES_SET_SELECTED_MESSAGE",message:e})}unselectPreviousChildMessage(e){this.dispatch({type:"MESSAGES_UNSELECT_PREVIOUS_MESSAGE",message:e})}async stopStreaming(){this.streamer?(await this.streamer.stop(),this.streamer=void 0):this.messageAbortController?.abort(),this.dispatch({type:"MESSAGE_STREAMING_STOPPED",timings:this.completeTiming()})}async getSystemPrompt(){let{mode:e}=this.getChatState();return await this.systemPrompt(e)}async createThread(e){let t,{customCopilotId:s,preventThreadSelection:r=!1,scopeId:a}=e||{},i=await this.service.createThread(s,a);if(i.ok)return t=i.payload,_.Jt.migrateNullThreadToNewThread(t.id),this.dispatch({type:"THREAD_CREATED",thread:t,preventThreadSelection:r}),t;throw Error(i.error)}async sendNewMessage(e,t,s,r,a,i,n,o,d,c,l,h,p,g){let{mode:m}=this.getChatState(),f=(0,u.Y6)({role:"user",content:t,mediaContent:s,references:r,thread:e,confirmationResponses:o?[o]:[],parentMessageID:h||this.FindLastMessageID(),skillOptions:g}),T=(0,u.lG)(i,r);if(this.dispatch({type:"MESSAGE_ADDED",message:f,repoHasCustomInstructions:!!T,usedRepoCustomInstructions:!!(T&&this.repoInstructionsEnabled()),customInstructionsOwners:(0,u.j$)(r)}),!e)try{e=await this.createThread({customCopilotId:l})}catch(r){let s="An unexpected error has occurred.";r instanceof Error&&(s=r.message),this.handleSendMessageError(e,w(s),t,"ERROR_THREAD_CREATION",s);return}this.dispatch({type:"THREAD_UPDATED",thread:{id:e.id,updatedAt:new Date().toISOString()}}),this.dispatch({type:"CLEAR_CURRENT_REFERENCES"}),c&&"assistive"!==m&&_.Jt.setModel(e.id,c);let R="";if(!h){let e=(0,E.B)(this.getChatState().messages),t=e[e.length-1];if(h=t?t.clientSide?e.findLast(e=>!e.clientSide&&"assistant"===e.role)?.id||"root":t.id:"root",this.reloadingThreadPromise&&(this.dispatch({type:"WAITING_ON_COPILOT",loading:!0}),this.afterThreadReloadCallback=e=>{0!==e.length&&(f.parentMessageID=R=e[e.length-1].id,this.dispatch({type:"MESSAGE_ADDED",message:f,repoHasCustomInstructions:!!T,usedRepoCustomInstructions:!!(T&&this.repoInstructionsEnabled()),customInstructionsOwners:(0,u.j$)(r)}))},!await this.reloadingThreadPromise))return}return this.sendMessage(e,t,s,r,a,n,i,d,c,o,R||h,p,g)}async sendMessage(e,t,s,r,a,i,d,c,l,h,g,E,f){a??(a=m.wh.conversation);let _=(0,u.Y6)({role:"assistant",content:"",mediaContent:[],thread:e,parentMessageID:g});_.messageIndex=-1,this.dispatch({type:"WAITING_ON_COPILOT",loading:!0});let T=r.length&&(1!==r.length||r[0]?.type!=="repository")?void 0:i;(0,o.BI)("copilot.implicit_context",{usedImplicitContext:!!T,type:T?.[0]?.type,count:T?.length}),!r.length&&d&&(r=[(0,u.qS)(d)]);let R=[];if(this.repoInstructionsEnabled()){let e=(0,u.NJ)(r);R.push(...e)}c?.type!=="Organization"||R.find(e=>"Organization"===e.type)||R.push(c),c?.type==="Assistant"&&R.push(c);let S=R.find(e=>"Organization"===e.type);S&&r.push((0,u.lj)(S.owner));let I=R.map(e=>e.prompt),{mode:C}=this.getChatState();this.timings={startTime:Date.now()},this.streamer=void 0,this.messageAbortController=new AbortController;try{let i={threadID:e.id,messageID:_.id,content:t,mediaContent:s,intent:a,mode:E||C,references:r,context:T??[],confirmations:h?[h]:[],customInstructions:I,model:l?.id,customCopilotID:(0,n.O)(e),parentMessageID:g,signal:this.messageAbortController.signal,skillOptions:f},o=this.activePlugin?.overrideCreateMessageOptions?await this.activePlugin.overrideCreateMessageOptions(i):i,d=await this.service.createMessageStreaming(o);if(d.ok){let s=d.response.body?.getReader();if(!s)return void this.handleSendMessageError(e,w(u.DW),t,"ERROR_STREAM_READER",u.DW);_.requestID=d.response.headers.get("x-github-request-id")||void 0;let r=new p.X(s);this.streamer=r,this.dispatch({type:"MESSAGE_STREAMING_STARTED",message:_}),await this.handleStreamingMessage(e,r),await this.generateThreadName(e)}else{if(this.messageAbortController.signal.aborted)return;this.handleSendMessageError(e,w(d.error),t,"ERROR_MESSAGE_STREAMING",d.error)}}finally{this.streamer=void 0,this.messageAbortController=void 0}}repoInstructionsEnabled(){return!!_.Jt.getRepoCustomInstructionsState()}async populateReferenceLanguage(e){let t=await this.service.fetchLanguageForFileReference(e);if(t.ok&&t.payload.language){let{languageName:s,languageId:r}=t.payload.language;this.replaceReference(e,{...e,languageName:s,languageId:r})}}clearEditedReferencesFromSessionStorage(e){(0,d.zB)(`edited-${e}-`)}addReference(e,t,s={}){this.dispatch({type:"ADD_REFERENCE",reference:e,source:t,implicit:!!s.implicit}),(0,u.SI)(e)&&(void 0===e.languageId||void 0===e.languageName)&&this.populateReferenceLanguage(e)}removeReference(e){e&&(O([e]),this.dispatch({type:"REMOVE_REFERENCES",references:[e]}))}removeReferences(e){O(e),this.dispatch({type:"REMOVE_REFERENCES",references:e})}clearImplicitReferences(){this.dispatch({type:"CLEAR_IMPLICIT_REFERENCES"})}replaceReference(e,t){this.dispatch({type:"REPLACE_REFERENCE",referenceToDelete:e,referenceToInsert:t})}setImageAttachmentUploaded(e,t){this.dispatch({type:"IMAGE_UPLOADED",referenceId:e,dotcomAttachment:t})}selectModel(e,t=!0){this.dispatch({type:"SELECT_MODEL",model:e}),t&&_.Jt.setModel(this.getChatState().selectedThreadID,e)}get activePlugin(){return(0,l.BW)(location,this.plugins)}setCopilotSettings(e){_.Jt.settings=e}async selectThread(e,t){let{clearTopic:s,includeThreads:r=!0}=t??{};await this.fetchModels(),await this.stopStreaming(),this.dispatch({type:"CLEAR_SHARED_THREAD_CHANNEL"}),this.dispatch({type:"SELECT_THREAD",thread:e,clearTopic:s});let a=[];a.push(this.fetchMessages(e?.id||null)),r&&a.push(this.fetchThreads()),await Promise.all(a)}addMessage(e,t,s,r,a,i,n){let o=(0,u.Y6)({role:e,content:s,mediaContent:r,references:a,thread:t,confirmationResponses:i,clientSkillConfirmations:n,parentMessageID:this.FindLastMessageID()});this.dispatch({type:"MESSAGE_ADDED",message:o})}async renameThread(e,t){(await this.service.renameThread(e.id,t)).ok&&this.dispatch({type:"THREAD_UPDATED",thread:{id:e.id,name:t}})}async generateThreadName(e){if(!e.id||""===e.id.trim())return;let t=this.getChatState().messages;if(""!==e.name&&t.length>8)return;let s=await this.service.generateThreadName(e.id);s.ok&&this.dispatch({type:"THREAD_UPDATED",thread:{id:e.id,name:s.payload}})}dismissAmbientError(){this.dispatch({type:"DISMISS_AMBIENT_ERROR"})}addAmbientError(e){this.dispatch({type:"ADD_AMBIENT_ERROR",message:e});let{mode:t}=this.getChatState();(0,o.BI)("dotcom_chat.activate.error",{target:"ERROR_AMBIENT",mode:t,message:e})}async clearThread(e){(await this.service.clearThread(e.id)).ok&&this.dispatch({type:"CLEAR_THREAD",threadID:e.id})}async deleteThreadKeepSelection(e){this.dispatch({type:"DELETE_THREAD_KEEP_SELECTION",thread:e});let t=await this.service.deleteThread(e.id);t.ok||this.dispatch({type:"DELETE_THREAD_ERROR",thread:e,error:t.error})}async deleteAllThreadKeepSelection(e){this.dispatch({type:"DELETE_ALL_THREADS_KEEP_SELECTION",threads:e});let t=e.map(e=>e.id);for(let s=0;s!0){return Array.from(e.values()).filter(e=>t(e)&&!e.scopeID).sort((e,t)=>new Date(t.updatedAt).getTime()-new Date(e.updatedAt).getTime())}async sendMessageToNewThread(e,t,s,r,a){if(""===t.trim()){let[e,r]=this.tryInferMessage(s);if(!e||!r)return;t=r}e&&(_.Jt.setSavedMessageFast(e,null),_.Jt.clearCurrentReferences(e)),await this.sendNewMessage(null,t,[],s,void 0,void 0,r,void 0,void 0,a)}startThreadReload(){this.reloadingThreadPromise=new Promise(e=>{this.resolvePromise=e})}cancelThreadReload(){this.resolvePromise(!1),this.resolvePromise=()=>{},this.reloadingThreadPromise=void 0,this.afterThreadReloadCallback=void 0,this.fetchingThreadID=null}async fetchMessages(e,t=!1,s=!1){let r=_.Jt.getCurrentReferences(e);if(!e)return this.threadDataLoaded(e,[],r||[]),()=>{};t||this.dispatch({type:"MESSAGES_UPDATED",state:"loading"});let a=this.getChatState().messages;this.fetchingThreadID=e;let i=async s=>{let n=await this.service.listMessages(e);if(t&&this.fetchingThreadID!==e)return!1;if(!n.ok)return this.setMessageUpdatedError(n.status,n.payload?.missingOrgIds),this.afterThreadReloadCallback=void 0,!1;if(s&&n.payload.messages.length===a.length)return i(!1);{let t=n.payload.thread;return this.threadDataLoaded(e,n.payload.messages,r||t.currentReferences||[]),this.afterThreadReloadCallback&&(this.afterThreadReloadCallback(n.payload.messages),this.afterThreadReloadCallback=void 0),!0}},n=await i(s);return()=>{this.resolvePromise(n),this.resolvePromise=()=>{},this.reloadingThreadPromise=void 0}}async fetchSharedThreadMessages(e){if(!e)return;this.dispatch({type:"MESSAGES_UPDATED",state:"loading"});let t=await this.service.listSharedThreadMessages(e);if(this.dispatch({type:"FETCH_SHARED_THREAD_MESSAGES",ok:t.ok,status:t.status,shareId:e,originalThreadId:t.ok?t.payload.thread.id:void 0}),t.ok){this.threadDataLoaded(e,t.payload.messages,[]),await this.fetchModels();let s=t.payload.messages?.at(-1)?.model,r=s&&this.getChatState().availableModels?.find(e=>e.id===s);r&&this.selectModel(r)}else this.setMessageUpdatedError(t.status,t.payload?.missingOrgIds)}setMessageUpdatedError(e,t){this.dispatch({type:"MESSAGES_UPDATED",state:"error",...404===e?{notFound:!0,missingOrgIds:t}:{}})}selectReference(e){this.dispatch({type:"SELECT_REFERENCE",reference:e})}setTopRepositoryTopics(e){this.dispatch({type:"SET_TOP_REPOSITORIES",topics:e})}async handleStreamingMessage(e,t){try{for await(let s of t.stream())this.processStreamingMessage(e,s)}catch(s){let t;if(this.isWrappedStreamingResponseError(s))t=this.getStreamingErrorMessage(s.error);else{t=w(u.DW);let{mode:e}=this.getChatState();(0,o.BI)("dotcom_chat.activate.error",{target:"ERROR_STREAMING_GENERIC",mode:e,message:"An unexpected error occurred during message streaming."})}this.handleSendMessageError(e,t);return}}isWrappedStreamingResponseError(e){return!!e&&"object"==typeof e&&"error"in e&&!!e.error&&"object"==typeof e.error&&"errorType"in e.error&&"string"==typeof e.error.errorType&&m.C6.includes(e.error.errorType)}processStreamingMessage(e,t){var s,r,a;switch((s=this.timings).firstByte??(s.firstByte=Date.now()),t.type){case"content":(r=this.timings).firstToken??(r.firstToken=Date.now()),this.dispatch({type:"MESSAGE_STREAMING_TOKEN_ADDED",token:t.body});break;case"functionCall":a=t.name,m.xP.includes(a)&&this.dispatch({type:"MESSAGE_STREAMING_FUNCTION_CALLED",name:t.name,status:t.status,arguments:t.arguments,errorMessage:t.errorMessage,references:t.references,statusMessage:t.statusMessage,callId:t.callId});break;case"confirmation":this.dispatch({type:"MESSAGE_STREAMING_CONFIRMATION",title:t.title,message:t.message,confirmation:t.confirmation});break;case"threadTitle":this.dispatch({type:"THREAD_UPDATED",thread:{...e,name:t.title}});break;case"complete":t.references=(0,T.q)(t.references),this.dispatch({type:"MESSAGE_STREAMING_COMPLETED",messageResponse:t,timings:this.completeTiming()}),this.handleSendMessageSuccess(e);break;case"error":{let s=this.getStreamingErrorMessage(t);this.handleSendMessageError(e,s);break}case"debug":console.log("Prompt Body:",t.body);break;case"trace":{let s=this.getChatState().streamingMessage?.createdAt;try{if(!t.traceId){console.error("Received trace data without trace ID from backend, ignoring trace");break}let r=(0,S.r)(t.spans);if(r[0]){let a=s||t.traceId;this.traceDispatch?.({type:"SET_TRACE_INFO",traceInfo:{spanNode:r[0],messageId:a,threadId:e.id,actualTraceId:t.traceId}})}}catch(e){console.error("Failed to process trace info:",e)}break}case"agentError":this.dispatch({type:"AGENT_ERROR",error:{type:t.agentErrorType,code:t.code,message:t.message,identifier:t.identifier}})}}getStreamingErrorMessage(e){let{mode:t}=this.getChatState();switch(e.errorType){case"publicCode":{let e="https://docs.github.com/en/copilot/managing-copilot/managing-copilot-as-an-individual-subscriber/managing-copilot-policies-as-an-individual-subscriber",s=(0,i.jsxs)(i.Fragment,{children:["This response cannot be shown because it references public code, which is restricted by"," ",(0,i.jsx)("a",{href:e,children:"your Copilot settings"}),"."]});return this.hasCEorCBAccess&&(e="https://docs.github.com/en/enterprise-cloud@latest/copilot/managing-copilot/managing-github-copilot-in-your-organization/managing-policies-for-copilot-in-your-organization",s=(0,i.jsxs)(i.Fragment,{children:["This response cannot be shown because it references public code, which is restricted by"," ",(0,i.jsx)("a",{href:e,children:"your organization's Copilot settings"}),"."]})),(0,o.BI)("dotcom_chat.activate.error",{target:"ERROR_PUBLIC_CODE",mode:t,message:"This response cannot be shown because it references public code, which is restricted by your Copilot settings."}),{type:"publicCode",isError:!0,message:s,retryable:!0}}case"filtered":{let e=(0,i.jsxs)(i.Fragment,{children:["This response has been filtered because it violates ",(0,i.jsx)("a",{href:"https://docs.github.com/en/site-policy/github-terms/github-terms-for-additional-products-and-features#github-copilot",children:"GitHub's safety policies"}),"."]});return(0,o.BI)("dotcom_chat.activate.error",{target:"ERROR_FILTERED_RESPONSE",mode:t,message:"This response has been filtered because it violates GitHub's safety policies."}),{type:"filtered",isError:!0,message:e,retryable:!1}}case"contentTooLarge":return(0,o.BI)("dotcom_chat.activate.error",{target:"ERROR_CONTENT_TOO_LARGE",mode:t,message:u.nN[413]||u.DW}),{isError:!0,message:u.nN[413]||u.DW,type:"basic",retryable:!1};case"rateLimit":return(0,o.BI)("dotcom_chat.activate.error",{target:"ERROR_RATE_LIMIT",mode:t,message:u.nN[429]||u.DW}),w(u.nN[429]||u.DW);case"agentUnauthorized":{let s=JSON.parse(e.description),r=`You haven't authorized ${s.name} to access your account. You can do that by going here: ${window.location.origin}/login/oauth/authorize?client_id=${s.client_id}`;return(0,o.BI)("dotcom_chat.activate.error",{target:"ERROR_AGENT_UNAUTHORIZED",mode:t,message:r}),{type:"agentUnauthorized",isError:!0,message:r,details:s}}case"agentRequest":{let s=JSON.parse(e.description);return(0,o.BI)("dotcom_chat.activate.error",{target:"ERROR_AGENT_REQUEST",mode:t,message:s.message}),{type:"agentRequest",isError:!0,message:s.message,details:s}}case"multipleAgentsAttempt":return(0,o.BI)("dotcom_chat.activate.error",{target:"ERROR_MULTIPLE_AGENTS_ATTEMPT",mode:t,message:y}),w(y);case"networkError":return(0,o.BI)("dotcom_chat.activate.error",{target:"ERROR_NETWORK",mode:t,message:u.nN[408]||u.DW}),w(u.nN[408]||u.DW);default:return(0,o.BI)("dotcom_chat.activate.error",{target:"ERROR_EXCEPTION",mode:t,message:u.FF[e.errorType]||u.DW}),w(u.FF[e.errorType]||u.DW)}}handleSendMessageSuccess(e){_.Jt.setSavedMessageFast(e.id,null),_.Jt.clearCurrentReferences(e.id),this.dispatch({type:"WAITING_ON_COPILOT",loading:!1})}handleSendMessageError(e,t,s,r,a=u.DW){e&&s&&_.Jt.setSavedUserMessageOnError(e.id,s);let i=(0,E.B)(this.getChatState().messages).findLast(e=>"user"===e.role)?.id||"root",n=(0,u.Y6)({role:"assistant",content:"",mediaContent:[],error:t,thread:e,parentMessageID:i});if(this.dispatch({type:"MESSAGE_ADDED",message:n}),this.dispatch({type:"WAITING_ON_COPILOT",loading:!1}),this.dispatch({type:"MESSAGE_STREAMING_FAILED",timings:this.completeTiming()}),r){let{mode:e}=this.getChatState();(0,o.BI)("dotcom_chat.activate.error",{target:r,mode:e,message:a})}}async fetchModels(){if(A){let{availableModels:e}=this.getChatState();(!e||A.length>e.length)&&this.dispatch({type:"MODELS_LOADED",models:A});return}this.dispatch({type:"MODELS_LOADING"});let e=await this.service.listModels();if(e.ok){let t=(0,R.eW)(e.payload);A=t,this.dispatch({type:"MODELS_LOADED",models:t});let s=_.Jt.getModel(this.getChatState().selectedThreadID)?.id,r=t.find(e=>e.id===s)||t.find(e=>e.is_chat_default);r&&this.dispatch({type:"SELECT_MODEL",model:r})}else this.dispatch({type:"MODELS_LOADING_ERROR",error:e.error})}async acceptModelPolicy(e){e.policy&&"enabled"!==e.policy.state&&(await this.service.setModelPolicyState(e.id,"enabled"),A=null,this.fetchModels())}async fetchThreads(){if(!this.fetchThreadsPromise)try{return this.fetchThreadsPromise=this.fetchThreadsImpl(),await this.fetchThreadsPromise}finally{this.fetchThreadsPromise=null}return this.fetchThreadsPromise}async fetchThreadsImpl(){this.dispatch({type:"THREADS_LOADING"});let e=await this.service.fetchThreads();return e.ok?(setTimeout(()=>this.dispatch({type:"THREADS_LOADED",threads:e.payload}),100),e.payload):(setTimeout(()=>this.dispatch({type:"THREADS_LOADING_ERROR",message:e.error,status:e.status}),100),null)}async fetchSharedThreads(){this.dispatch({type:"SHARED_THREADS_LOADING"});let e=await this.service.fetchSharedThreads();return e.ok?(setTimeout(()=>this.dispatch({type:"SHARED_THREADS_LOADED"}),100),e.payload):(setTimeout(()=>this.dispatch({type:"SHARED_THREADS_LOADING_ERROR",message:e.error}),100),null)}async fetchLatestThread(e){let t=await this.service.fetchLatestThread(e);return t.ok?(t.payload&&this.dispatch({type:"LATEST_THREAD_LOADED",latestThread:t.payload}),t.payload):null}async continueSharedThread(e){if(!e)return this.dispatch({type:"THREAD_CONTINUED_FAILED"}),null;this.dispatch({type:"MESSAGES_UPDATED",state:"loading"});let t=await this.service.continueSharedThread(e);if(!t.ok)return null;{let{thread:e,messages:s}=t.payload;this.dispatch({type:"THREAD_CONTINUED",thread:e}),this.dispatch({type:"MESSAGES_UPDATED",state:"loaded",messages:s})}return t.payload}async unshareAllThreads(){let e=await this.service.unshareAllThreads();if(!e.ok)return this.dispatch({type:"ADD_AMBIENT_ERROR",message:e.error||"Failed to unshare all threads"}),e;for(let e of Array.from(this.getChatState().threads.values()))e.sharedAt&&this.dispatch({type:"THREAD_UPDATED",thread:{id:e.id,sharedAt:void 0,sharedID:void 0}});return e}async findOrStartNewThread(e,t,s){let r=null;if(e)r=e;else if(!s){let e=_.Jt.selectedThreadID||void 0;r=await this.fetchLatestThread(e)}if(r&&((0,u.F2)(r)||r.customCopilotID)&&(r=null),r&&t){let e=await this.service.listMessages(r.id);if(e.ok){let s=e.payload.messages,a=s?.length;a>=2&&!s[a-2]?.references?.find(e=>(0,u.x_)(e,t))&&(r=null)}}return await this.selectThread(r,{includeThreads:!1}),r}async systemPrompt(e){let t=await this.service.getSystemPrompt(e);return t.ok?t.payload.prompt:""}async fetchAgents(e){let t=await this.service.listAgents(e),s=[];return t.ok&&(s=t.payload,this.dispatch({type:"SET_AGENTS",agents:s})),s}async fetchCopilotSpace(e){let t=await this.service.fetchCopilotSpace(e),s={};return t.ok&&(s=t.payload),s}async fetchCurrentRepo(e){let t=await this.service.fetchRepo(e);if(t.ok)return this.dispatch({type:"ADD_REFERENCE",reference:(0,u.qS)(t.payload),source:"currentRepo"}),t.payload}async fetchImplicitContext(e,t,s,r=!0){let a=await this.service.fetchImplicitContext(e,t,s);if(a.ok){let e=a.payload?Array.isArray(a.payload)?a.payload:[a.payload]:void 0;this.dispatch({type:"IMPLICIT_CONTEXT_UPDATED",context:e});let i=this.getChatState();if(r&&"immersive"===i.mode&&e&&e.length>0){for(let r of e=await Promise.all(e.map(async e=>{if(!e)return e;if("pull-request"===e.type||"issue"===e.type||"discussion"===e.type){let r="pull-request"===e.type?"pull_request":e.type,a=await this.service.fetchReferenceDetails(t,s,r,e.number);if(a.ok&&a.payload)return a.payload}return e})))if(r){let e=this.getChatState(),t=e.currentReferences?.find(e=>(0,u.x_)(e,r));t?this.replaceReference(t,r):this.addReference(r,"implicit-context",{implicit:!0})}}e&&e.length>0&&void 0!==e[0]&&this.generateSuggestions(e[0])}}threadDataLoaded(e,t,s){this.dispatch({type:"MESSAGES_UPDATED",messages:t,state:"loaded"}),this.dispatch({type:"REFERENCES_LOADED",references:s})}dismissEditorUpsellBanner(){let e=new FormData;e.set("copilot_editor_upsell_banner_dismissed","true"),(0,c.DI)("/github-copilot/preferences",{method:"PUT",body:e}),this.dispatch({type:"DISMISS_EDITOR_UPSELL_BANNER"})}tryInferMessage(e){return e&&e.find(e=>"image"===e.type)?[!0,"Describe this image"]:[!1,void 0]}setWrapCodeLines(e){this.dispatch({type:"SET_WRAP_CODE_LINES",value:e}),_.Jt.setWrapCodeLines(e)}clearDefaultRecipient(){this.dispatch({type:"CLEAR_DEFAULT_RECIPIENT"})}completeTiming(){return{...this.timings,endTime:Date.now()}}getCustomCopilotKey(e){return e?`${e.owner}:${e.id}`:"default"}getThreadById(e){return e&&this.getChatState().threads.get(e)||null}constructor(e,t,s,r,i,n,o,d,c,l){(0,a._)(this,"dispatch",void 0),(0,a._)(this,"traceDispatch",void 0),(0,a._)(this,"service",void 0),(0,a._)(this,"getChatState",void 0),(0,a._)(this,"hasCEorCBAccess",void 0),(0,a._)(this,"timings",{startTime:0}),(0,a._)(this,"streamer",void 0),(0,a._)(this,"messageAbortController",void 0),(0,a._)(this,"reloadingThreadPromise",void 0),(0,a._)(this,"fetchingThreadID",null),(0,a._)(this,"afterThreadReloadCallback",void 0),(0,a._)(this,"plugins",void 0),(0,a._)(this,"clearCurrentReferences",e=>{e&&e.includes("image")||O(this.getChatState().currentReferences),this.dispatch({type:"CLEAR_CURRENT_REFERENCES",keepTypes:e})}),(0,a._)(this,"clearAllReferences",()=>{O(this.getChatState().currentReferences),this.dispatch({type:"CLEAR_ALL_REFERENCES"})}),(0,a._)(this,"resolvePromise",()=>{}),(0,a._)(this,"fetchThreadsPromise",null),(0,a._)(this,"clearCurrentTopic",()=>{this.dispatch({type:"CURRENT_TOPIC_UPDATED",topic:void 0,state:"loaded"})}),(0,a._)(this,"showTopicPicker",(e=!0)=>{this.dispatch({type:"SHOW_TOPIC_PICKER",show:e})}),(0,a._)(this,"startEditingMessage",e=>this.dispatch({type:"START_EDITING_MESSAGE",messageId:e})),(0,a._)(this,"cancelEditingMessage",()=>this.dispatch({type:"CANCEL_EDITING_MESSAGE"})),this.dispatch=e,this.traceDispatch=l,this.service=n??new g.k(t,s,i,c),this.getChatState=r,this.hasCEorCBAccess=!!o,this.plugins=d}};function D(e){var t;return M(e,[m.wh.explain,m.wh.suggest])||M(e,[m.wh.conversation])&&"content"in(t=e)&&"string"==typeof t.content}function M(e,t){return new Set(t).has(e.intent)}function w(e){return{isError:!0,message:e,type:"basic",retryable:!0}}function v(e,t){let s=document.getElementById(e);s?.setAttribute("aria-expanded",t?"true":"false")}function O(e){for(let t of e)if("image"===t.type){let e=t.attachment;e instanceof I.N&&e.abortController.abort("Reference removed before upload completed")}}try{(r=Intent).displayName||(r.displayName="Intent")}catch{}},72206:(e,t,s)=>{s.d(t,{rE:()=>c,sw:()=>o,tD:()=>d});var r=s(74848),a=s(16522),i=s(96540);let n=(0,i.createContext)(null);function o(e){let t,s=(0,a.c)(3),{children:i,value:o}=e;return s[0]!==i||s[1]!==o?(t=(0,r.jsx)(n,{value:o,children:i}),s[0]=i,s[1]=o,s[2]=t):t=s[2],t}function d(){let e=(0,i.use)(n);if(!e||!e.current)throw Error("useGetChatState can only be used inside a CopilotChatProvider");return(0,i.useCallback)(()=>e.current.value,[e])}function c(){return(0,i.use)(n)}try{n.displayName||(n.displayName="ObservableChatStateContext")}catch{}try{o.displayName||(o.displayName="ObservableChatStateProvider")}catch{}},73952:(e,t,s)=>{s.d(t,{B:()=>i,CX:()=>l,HR:()=>d,TC:()=>o,Y$:()=>c,ws:()=>n,zh:()=>a});var r=s(53419);function a(e,t=!0){let s=performance.now(),i=0,n={id:"root",role:"user",createdAt:"",threadID:"",references:null,childMessageIndexes:[],messageIndex:0,clientSide:!1};if(0===e.length)return e=[n],i=performance.now()-s,(0,r.BI)("copilot.timings",{function:"constructMessagesHierarchy",timeElapsed:i,messagesLength:e.length,selectMostRecentMessages:t}),e;"root"!==e[0].id&&(e=[n,...e],(0,r.BI)("copilot.legacy_thread_updated",{threadID:e[1].threadID,messagesLength:e.length,selectMostRecentMessages:t}));let o=e[1];if(!o)return e;[e,o]=h(e,1,"parentMessageID","root");let d=new Map,c=[];for(let[t,s]of e.entries()){if([e,s]=h(e,t,"messageIndex",t),c[t]=[],d.set(s.id,t),"root"===s.id)continue;s.parentMessageID||([e,s]=h(e,t,"parentMessageID",o.id),o=s);let r=d.get(s.parentMessageID);if(void 0!==r){[e,s]=h(e,t,"parentMessageIndex",r);let a=e[r];a&&(c[r].push(t),void 0===a.selectedChildIndex&&([e,a]=h(e,r,"selectedChildIndex",t)))}}for(let t=0;t({...e})),r=s[t.parentMessageIndex];return r&&(r.selectedChildIndex=t.messageIndex),s}function o(e,t){let s=e.map(e=>({...e})),r=s[t.messageIndex];return r&&void 0!==r.selectedChildIndex&&(r.selectedChildIndex=void 0),s}function d(e,t){let s=e.findIndex(e=>e.id===t?.parentMessageID);if(-1!==s){let r=e[s],a={...t};a.messageIndex=e.length,a.childMessageIndexes=[],a.parentMessageIndex=r.messageIndex;let i=r.childMessageIndexes?.slice()||[];i.includes(a.messageIndex)||i.push(a.messageIndex),r={...r,childMessageIndexes:i,selectedChildIndex:a.messageIndex},e=[...e,a].toSpliced(s,1,r)}return e}function c(e,t){if(null==e.find(e=>e.id===t?.parentMessageID)){let s=i(e),r=s[s.length-1];if(void 0!==r)if(r.clientSide&&"user"===r.role){let s=e.indexOf(r);[e,r]=h(e,s,"id",t.parentMessageID),[e,r]=h(e,s,"clientSide",!1)}else t.parentMessageID=r.id}return e}function l(e,t){return void 0!==t.parentMessageIndex?e[t.parentMessageIndex]:void 0}function h(e,t,s,r){let a=e[t];if(!a)throw Error(`Message at index ${t} does not exist.`);let i=a[s];if(i===r||Array.isArray(i)&&Array.isArray(r)&&i.length===r.length&&i.every((e,t)=>e===r[t]))return[e,a];let n={...a,[s]:r},o=[...e];return o[t]=n,[o,o[t]]}},79802:(e,t,s)=>{s.d(t,{O:()=>r});function r(e){return e&&e.customCopilotID&&e.customCopilotOwner?{id:e.customCopilotID,owner:e.customCopilotOwner}:null}},86339:(e,t,s)=>{s.d(t,{X:()=>CopilotChatMessageStreamer});var r=s(50467);let a=` + +`,i=/^data:\s+/;let CopilotStreamingError=class CopilotStreamingError extends Error{constructor(e){super(e.description),(0,r._)(this,"error",void 0),this.error=e,this.name="CopilotStreamingError"}};let CopilotChatMessageStreamer=class CopilotChatMessageStreamer{async *stream(){let e=new TextDecoder("utf-8"),t="";for(;;){let s,r;try{({value:s,done:r}=await this.reader.read())}catch{throw new CopilotStreamingError({type:"error",errorType:"networkError",description:"NETWORK_CONNECTION_INTERRUPTED"})}if(r)break;for(t+=e.decode(s);;){let e=t.indexOf(a);if(-1===e)break;let s=t.slice(0,e).replace(i,"");if("[DONE]"===s)return;let r=JSON.parse(s);if(yield r,r?.type==="complete")return;t=t.slice(e+a.length)}}}async stop(){return this.reader.cancel()}constructor(e){(0,r._)(this,"reader",void 0),this.reader=e}}}}]); +//# sourceMappingURL=2635-19d7a07100f6.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/26744-cce4d4bab7ed.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/26744-cce4d4bab7ed.js" new file mode 100644 index 0000000..7826c9a --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/26744-cce4d4bab7ed.js" @@ -0,0 +1,4 @@ +performance.mark("js-parse-end:26744-cce4d4bab7ed.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[26744],{5077:e=>{var t=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,r=/\n/g,n=/^\s*/,o=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,i=/^:\s*/,s=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,a=/^[;\s]*/,l=/^\s+|\s+$/g,u=` +`;function c(e){return e?e.replace(l,""):""}e.exports=function(e,l){if("string"!=typeof e)throw TypeError("First argument must be a string");if(!e)return[];l=l||{};var p=1,f=1;function d(e){var t=e.match(r);t&&(p+=t.length);var n=e.lastIndexOf(u);f=~n?e.length-n:f+e.length}function m(){var e={line:p,column:f};return function(t){return t.position=new h(e),g(n),t}}function h(e){this.start=e,this.end={line:p,column:f},this.source=l.source}function y(t){var r=Error(l.source+":"+p+":"+f+": "+t);if(r.reason=t,r.filename=l.source,r.line=p,r.column=f,r.source=e,l.silent);else throw r}function g(t){var r=t.exec(e);if(r){var n=r[0];return d(n),e=e.slice(n.length),r}}function v(e){var t;for(e=e||[];t=x();)!1!==t&&e.push(t);return e}function x(){var t=m();if("/"==e.charAt(0)&&"*"==e.charAt(1)){for(var r=2;""!=e.charAt(r)&&("*"!=e.charAt(r)||"/"!=e.charAt(r+1));)++r;if(r+=2,""===e.charAt(r-1))return y("End of comment missing");var n=e.slice(2,r-2);return f+=2,d(n),e=e.slice(r),f+=2,t({type:"comment",comment:n})}}h.prototype.content=e,g(n);var w,b=[];for(v(b);w=function(){var e=m(),r=g(o);if(r){if(x(),!g(i))return y("property missing ':'");var n=g(s),l=e({type:"declaration",property:c(r[0].replace(t,"")),value:n?c(n[0].replace(t,"")):""});return g(a),l}}();)!1!==w&&(b.push(w),v(b));return b}},7277:(e,t,r)=>{function n(e){if(e)throw e}r.d(t,{l:()=>c});var o=r(92849),i=r(97471);function s(e){if("object"!=typeof e||null===e)return!1;let t=Object.getPrototypeOf(e);return(null===t||t===Object.prototype||null===Object.getPrototypeOf(t))&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)}var a=r(7711);let l=function(e){let t=this.constructor.prototype,r=t[e],n=function(){return r.apply(n,arguments)};return Object.setPrototypeOf(n,t),n},u={}.hasOwnProperty;let Processor=class Processor extends l{constructor(){super("copy"),this.Compiler=void 0,this.Parser=void 0,this.attachers=[],this.compiler=void 0,this.freezeIndex=-1,this.frozen=void 0,this.namespace={},this.parser=void 0,this.transformers=function(){let e=[],t={run:function(...t){let r=-1,n=t.pop();if("function"!=typeof n)throw TypeError("Expected function as last argument, not "+n);!function o(i,...s){let a=e[++r],l=-1;if(i)return void n(i);for(;++lt.length;s&&t.push(n);try{i=e.apply(this,t)}catch(e){if(s&&r)throw e;return n(e)}s||(i instanceof Promise?i.then(o,n):i instanceof Error?n(i):o(i))};function n(e,...o){r||(r=!0,t(e,...o))}function o(e){n(null,e)}})(a,o)(...s):n(null,...s)}(null,...t)},use:function(r){if("function"!=typeof r)throw TypeError("Expected `middelware` to be a function, not "+r);return e.push(r),t}};return t}()}copy(){let e=new Processor,t=-1;for(;++t0){let[n,...a]=t,l=r[i][1];s(l)&&s(n)&&(n=o(!0,l,n)),r[i]=[e,n,...a]}}}};let c=new Processor().freeze();function p(e,t){if("function"!=typeof t)throw TypeError("Cannot `"+e+"` without `parser`")}function f(e,t){if("function"!=typeof t)throw TypeError("Cannot `"+e+"` without `compiler`")}function d(e,t){if(t)throw Error("Cannot call `"+e+"` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`.")}function m(e){if(!s(e)||"string"!=typeof e.type)throw TypeError("Expected node, got `"+e+"`")}function h(e,t,r){if(!r)throw Error("`"+e+"` finished async. Use `"+t+"` instead")}function y(e){var t;return(t=e)&&"object"==typeof t&&"message"in t&&"messages"in t?e:new a.T(e)}},26744:(e,t,r)=>{r.d(t,{o:()=>U});var n=r(97471),o=r(72282);let i=/^[$_\p{ID_Start}][$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,s=/^[$_\p{ID_Start}][-$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,a={};function l(e,t){return((t||a).jsx?s:i).test(e)}var u=r(78619),c=r(55035),p=r(91775);let f={classId:"classID",dataType:"datatype",itemId:"itemID",strokeDashArray:"strokeDasharray",strokeDashOffset:"strokeDashoffset",strokeLineCap:"strokeLinecap",strokeLineJoin:"strokeLinejoin",strokeMiterLimit:"strokeMiterlimit",typeOf:"typeof",xLinkActuate:"xlinkActuate",xLinkArcRole:"xlinkArcrole",xLinkHref:"xlinkHref",xLinkRole:"xlinkRole",xLinkShow:"xlinkShow",xLinkTitle:"xlinkTitle",xLinkType:"xlinkType",xmlnsXLink:"xmlnsXlink"};var d=r(72485),m=r(35229),h=r(5824),y=r(15946);let g={}.hasOwnProperty,v=new Map,x=/[A-Z]/g,w=new Set(["table","tbody","thead","tfoot","tr"]),b=new Set(["td","th"]),E="https://github.com/syntax-tree/hast-util-to-jsx-runtime";function k(e,t,r){var i,s,a,l,h,v,k,T,S;let N,I,z,L,D,F,M,$,H,J,U;return"element"===t.type?(i=e,s=t,a=r,I=N=i.schema,"svg"===s.tagName.toLowerCase()&&"html"===N.space&&(i.schema=c.JW),i.ancestors.push(s),z=O(i,s.tagName,!1),L=function(e,t){let r,n,i={};for(n in t.properties)if("children"!==n&&g.call(t.properties,n)){let s=function(e,t,r){let n=(0,p.I)(e.schema,t);if(!(null==r||"number"==typeof r&&Number.isNaN(r))){if(Array.isArray(r)&&(r=n.commaSeparated?(0,o.A)(r):(0,d.A)(r)),"style"===n.property){let t="object"==typeof r?r:function(e,t){try{return m(t,{reactCompat:!0})}catch(r){if(e.ignoreInvalidStyle)return{};let t=new y.o("Cannot parse `style` attribute",{ancestors:e.ancestors,cause:r,ruleId:"style",source:"hast-util-to-jsx-runtime"});throw t.file=e.filePath||void 0,t.url=E+"#cannot-parse-style-attribute",t}}(e,String(r));return"css"===e.stylePropertyNameCase&&(t=function(e){let t,r={};for(t in e)g.call(e,t)&&(r[function(e){let t=e.replace(x,P);return"ms-"===t.slice(0,3)&&(t="-"+t),t}(t)]=e[t]);return r}(t)),["style",t]}return["react"===e.elementAttributeNameCase&&n.space?f[n.property]||n.property:n.attribute,r]}}(e,n,t.properties[n]);if(s){let[n,o]=s;e.tableCellAlignToStyle&&"align"===n&&"string"==typeof o&&b.has(t.tagName)?r=o:i[n]=o}}return r&&((i.style||(i.style={}))["css"===e.stylePropertyNameCase?"text-align":"textAlign"]=r),i}(i,s),D=_(i,s),w.has(s.tagName)&&(D=D.filter(function(e){return"string"!=typeof e||!(0,u.m)(e)})),j(i,L,z,s),A(L,D),i.ancestors.pop(),i.schema=N,i.create(s,z,L,a)):"mdxFlowExpression"===t.type||"mdxTextExpression"===t.type?function(e,t){if(t.data&&t.data.estree&&e.evaluater){let r=t.data.estree.body[0];return(0,n.ok)("ExpressionStatement"===r.type),e.evaluater.evaluateExpression(r.expression)}C(e,t.position)}(e,t):"mdxJsxFlowElement"===t.type||"mdxJsxTextElement"===t.type?(l=e,h=t,v=r,M=F=l.schema,"svg"===h.name&&"html"===F.space&&(l.schema=c.JW),l.ancestors.push(h),$=null===h.name?l.Fragment:O(l,h.name,!0),H=function(e,t){let r={};for(let o of t.attributes)if("mdxJsxExpressionAttribute"===o.type)if(o.data&&o.data.estree&&e.evaluater){let t=o.data.estree.body[0];(0,n.ok)("ExpressionStatement"===t.type);let i=t.expression;(0,n.ok)("ObjectExpression"===i.type);let s=i.properties[0];(0,n.ok)("SpreadElement"===s.type),Object.assign(r,e.evaluater.evaluateExpression(s.argument))}else C(e,t.position);else{let i,s=o.name;if(o.value&&"object"==typeof o.value)if(o.value.data&&o.value.data.estree&&e.evaluater){let t=o.value.data.estree.body[0];(0,n.ok)("ExpressionStatement"===t.type),i=e.evaluater.evaluateExpression(t.expression)}else C(e,t.position);else i=null===o.value||o.value;r[s]=i}return r}(l,h),J=_(l,h),j(l,H,$,h),A(H,J),l.ancestors.pop(),l.schema=F,l.create(h,$,H,v)):"mdxjsEsm"===t.type?function(e,t){if(t.data&&t.data.estree&&e.evaluater)return e.evaluater.evaluateProgram(t.data.estree);C(e,t.position)}(e,t):"root"===t.type?(k=e,T=t,S=r,A(U={},_(k,T)),k.create(T,k.Fragment,U,S)):"text"===t.type?t.value:void 0}function j(e,t,r,n){"string"!=typeof r&&r!==e.Fragment&&e.passNode&&(t.node=n)}function A(e,t){if(t.length>0){let r=t.length>1?t:t[0];r&&(e.children=r)}}function _(e,t){let r=[],n=-1,o=e.passKeys?new Map:v;for(;++n for more info)");let v=y.parse(g),x=y.runSync(v,g);return i&&(x={type:"element",tagName:"div",properties:{className:i},children:"root"===x.type?x.children:[x]}),(0,D.YR)(x,function(e,n,o){if("raw"===e.type&&o&&"number"==typeof n)return f?o.children.splice(n,1):o.children[n]={type:"text",value:e.value},n;if("element"===e.type){let t;for(t in T)if(Object.hasOwn(T,t)&&Object.hasOwn(e.properties,t)){let r=e.properties[t],n=T[t];(null===n||n.includes(e.tagName))&&(e.properties[t]=m(String(r||""),t,e))}}if("element"===e.type){let i=t?!t.includes(e.tagName):!!a&&a.includes(e.tagName);if(!i&&r&&"number"==typeof n&&(i=!r(e,n,o)),i&&o&&"number"==typeof n)return d&&e.children?o.children.splice(n,1,...e.children):o.children.splice(n,1),n}}),function(e,t){var r,n,o,i;let s;if(!t||void 0===t.Fragment)throw TypeError("Expected `Fragment` in options");let a=t.filePath||void 0;if(t.development){if("function"!=typeof t.jsxDEV)throw TypeError("Expected `jsxDEV` in options when `development: true`");r=a,n=t.jsxDEV,s=function(e,t,o,i){let s=Array.isArray(o.children),a=(0,h.PW)(e);return n(t,o,i,s,{columnNumber:a?a.column-1:void 0,fileName:r,lineNumber:a?a.line:void 0},void 0)}}else{if("function"!=typeof t.jsx)throw TypeError("Expected `jsx` in production options");if("function"!=typeof t.jsxs)throw TypeError("Expected `jsxs` in production options");o=t.jsx,i=t.jsxs,s=function(e,t,r,n){let s=Array.isArray(r.children)?i:o;return n?s(t,r,n):s(t,r)}}let l={Fragment:t.Fragment,ancestors:[],components:t.components||{},create:s,elementAttributeNameCase:t.elementAttributeNameCase||"react",evaluater:t.createEvaluater?t.createEvaluater():void 0,filePath:a,ignoreInvalidStyle:t.ignoreInvalidStyle||!1,passKeys:!1!==t.passKeys,passNode:t.passNode||!1,schema:"svg"===t.space?c.JW:c.qy,stylePropertyNameCase:t.stylePropertyNameCase||"dom",tableCellAlignToStyle:!1!==t.tableCellAlignToStyle},u=k(l,e,void 0);return u&&"string"!=typeof u?u:l.create(e,l.Fragment,{children:u||void 0},void 0)}(x,{Fragment:S.Fragment,components:s,ignoreInvalidStyle:!0,jsx:S.jsx,jsxs:S.jsxs,passKeys:!0,passNode:!0})}function V(e){let t=e.indexOf(":"),r=e.indexOf("?"),n=e.indexOf("#"),o=e.indexOf("/");return -1===t||-1!==o&&t>o||-1!==r&&t>r||-1!==n&&t>n||H.test(e.slice(0,t))?e:""}},35229:function(e,t,r){var n=(this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}})(r(51133)),o=r(98917);function i(e,t){var r={};return e&&"string"==typeof e&&(0,n.default)(e,function(e,n){e&&n&&(r[(0,o.camelCase)(e,t)]=n)}),r}i.default=i,e.exports=i},51133:function(e,t,r){var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t){let r=null;if(!e||"string"!=typeof e)return r;let n=(0,o.default)(e),i="function"==typeof t;return n.forEach(e=>{if("declaration"!==e.type)return;let{property:n,value:o}=e;i?t(n,o,e):o&&((r=r||{})[n]=o)}),r};let o=n(r(5077))},78619:(e,t,r)=>{r.d(t,{m:()=>o});let n=/[ \t\n\f\r]/g;function o(e){return"object"==typeof e?"text"===e.type&&i(e.value):i(e)}function i(e){return""===e.replace(n,"")}},87798:(e,t,r)=>{r.d(t,{A:()=>o});var n=r(86350);function o(e){let t=this;t.parser=function(r){return(0,n.Y)(r,{...t.data("settings"),...e,extensions:t.data("micromarkExtensions")||[],mdastExtensions:t.data("fromMarkdownExtensions")||[]})}}},92849:e=>{var t=Object.prototype.hasOwnProperty,r=Object.prototype.toString,n=Object.defineProperty,o=Object.getOwnPropertyDescriptor,i=function(e){return"function"==typeof Array.isArray?Array.isArray(e):"[object Array]"===r.call(e)},s=function(e){if(!e||"[object Object]"!==r.call(e))return!1;var n,o=t.call(e,"constructor"),i=e.constructor&&e.constructor.prototype&&t.call(e.constructor.prototype,"isPrototypeOf");if(e.constructor&&!o&&!i)return!1;for(n in e);return void 0===n||t.call(e,n)},a=function(e,t){n&&"__proto__"===t.name?n(e,t.name,{enumerable:!0,configurable:!0,value:t.newValue,writable:!0}):e[t.name]=t.newValue},l=function(e,r){if("__proto__"===r){if(!t.call(e,r))return;else if(o)return o(e,r).value}return e[r]};e.exports=function e(){var t,r,n,o,u,c,p=arguments[0],f=1,d=arguments.length,m=!1;for("boolean"==typeof p&&(m=p,p=arguments[1]||{},f=2),(null==p||"object"!=typeof p&&"function"!=typeof p)&&(p={});f{Object.defineProperty(t,"__esModule",{value:!0}),t.camelCase=void 0;var r=/^--[a-zA-Z0-9_-]+$/,n=/-([a-z])/g,o=/^[^-]+$/,i=/^-(webkit|moz|ms|o|khtml)-/,s=/^-(ms)-/,a=function(e,t){return t.toUpperCase()},l=function(e,t){return"".concat(t,"-")};t.camelCase=function(e,t){var u;return(void 0===t&&(t={}),!(u=e)||o.test(u)||r.test(u))?e:(e=e.toLowerCase(),(e=t.reactCompat?e.replace(s,l):e.replace(i,l)).replace(n,a))}}}]); +//# sourceMappingURL=26744-6a10c3233f1e.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/28546-373396140b52.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/28546-373396140b52.js" new file mode 100644 index 0000000..cd8d2f4 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/28546-373396140b52.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:28546-373396140b52.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[28546],{181:(e,t,s)=>{var n=s(13735);e.exports=function(e,t){return t=void 0!==t?t:window.statusbar.visible,n(e)&&!t}},2224:(e,t,s)=>{var n=s(76369),i=s(67365);e.exports=function(e){return n(e=e||window.navigator.userAgent)||/iPhone|iPod|iPad|Mobile|Tablet/i.test(e)&&i(e)}},4295:(e,t,s)=>{s.d(t,{K:()=>Topic});let Topic=class Topic{static parse(e){let[t,s]=e.split("--");if(!t||!s)return null;let n=JSON.parse(atob(t));return n.c&&n.t?new Topic(n.c,e):null}constructor(e,t){this.name=e,this.signed=t,this.offset=""}}},4951:(e,t,s)=>{var n=s(92112);e.exports=function(e){var t;return e=e||window.navigator.userAgent,!!window.PaymentRequest&&(!n(e)||!!(t=e.match(/Chrome\/(\d+)\./))&&parseInt(t[1],10)>=61)}},10204:(e,t,s)=>{s.d(t,{JR:()=>r.JR,KK:()=>o.K,VH:()=>i.V,ib:()=>n.i,m0:()=>a.m,nH:()=>i.n});var n=s(86948),i=s(14845),r=s(77479),a=s(29406),o=s(4295)},10777:(e,t,s)=>{var n=s(13735);e.exports=function(e,t){return t=void 0!==t?t:window.statusbar.visible,n(e)&&t}},11193:(e,t,s)=>{function n(e){return new Promise((t,s)=>{let n=Error("aborted");n.name="AbortError",e.aborted?s(n):e.addEventListener("abort",()=>s(n))})}async function i(e,t){let s,i=new Promise(t=>{s=self.setTimeout(t,e)});if(!t)return i;try{await Promise.race([i,n(t)])}catch(e){throw self.clearTimeout(s),e}}async function r(e,t,s=1/0,a){let o=a?n(a):null;for(let n=0;nr})},13735:(e,t,s)=>{var n=s(63969),i=s(29572);e.exports=function(e){return!!n(e=e||window.navigator.userAgent)&&(!!i(e)||/.+AppleWebKit(?!.*Safari)/i.test(e))}},14845:(e,t,s)=>{s.d(t,{V:()=>PresenceMetadataSet,n:()=>n});let n="_i";function i(e){return Object.assign(Object.assign({},e),{isLocal:!0})}let PresenceMetadataForChannel=class PresenceMetadataForChannel{constructor(){this.subscriberMetadata=new Map}setMetadata(e,t){this.subscriberMetadata.set(e,t)}removeSubscribers(e){let t=!1;for(let s of e)t=this.subscriberMetadata.delete(s)||t;return t}getMetadata(e){if(!e){let e,t=[];for(let s of this.subscriberMetadata.values())for(let i of s)if(n in i){let t=!!i[n];e=void 0===e?t:t&&e}else t.push(i);return void 0!==e&&t.push({[n]:+!!e}),t}let t=[],{subscriber:s,markAllAsLocal:r}=e;for(let[e,n]of this.subscriberMetadata){let a=r||e===s?n.map(i):n;t.push(...a)}return t}hasSubscribers(){return this.subscriberMetadata.size>0}};let PresenceMetadataSet=class PresenceMetadataSet{constructor(){this.metadataByChannel=new Map}setMetadata({subscriber:e,channelName:t,metadata:s}){let n=this.metadataByChannel.get(t);n||(n=new PresenceMetadataForChannel,this.metadataByChannel.set(t,n)),n.setMetadata(e,s)}removeSubscribers(e){let t=new Set;for(let[s,n]of this.metadataByChannel)n.removeSubscribers(e)&&t.add(s),n.hasSubscribers()||this.metadataByChannel.delete(s);return t}getChannelMetadata(e,t){let s=this.metadataByChannel.get(e);return(null==s?void 0:s.getMetadata(t))||[]}}},16174:e=>{e.exports=function(e){return -1!==(e=e||window.navigator.userAgent).indexOf("Trident/7")}},20777:e=>{e.exports=function(e){return -1!==(e=e||window.navigator.userAgent).indexOf("MSIE 9")}},23683:(e,t,s)=>{t.nr=void 0,s(76091),s(70955),s(92112),s(60020),s(45744),s(20777),s(42189),s(16174),s(40691),s(67365),t.nr=s(32514),s(63969),s(76369),s(29572),s(45710),s(181),s(13735),s(10777),s(41464),s(2224),s(66787),s(46788),s(85571),s(62701),s(68861),s(4951)},23963:(e,t,s)=>{s.d(t,{s:()=>n});function*n(e,t){for(let s=0;s{async function n(e,t){let s,n=new Promise((t,n)=>{s=self.setTimeout(()=>n(Error("timeout")),e)});if(!t)return n;try{await Promise.race([n,a(t)])}catch(e){throw self.clearTimeout(s),e}}async function i(e,t){let s,n=new Promise(t=>{s=self.setTimeout(t,e)});if(!t)return n;try{await Promise.race([n,a(t)])}catch(e){throw self.clearTimeout(s),e}}async function r(e,t,s=1/0,n){let o=n?a(n):null;for(let r=0;r{let n=Error("aborted");n.name="AbortError",e.aborted?s(n):e.addEventListener("abort",()=>s(n))})}async function o(e,t,s){var i;let r=new WebSocket(e),a=(i=r,new Promise((e,t)=>{i.readyState===WebSocket.OPEN?e(i):(i.onerror=()=>{i.onerror=null,i.onopen=null,t(Error("connect failed"))},i.onopen=()=>{i.onerror=null,i.onopen=null,e(i)})}));try{return await Promise.race([a,n(t,s)]),r}catch(e){throw c(a),e}}async function c(e){try{(await e).close()}catch(e){}}s.d(t,{Zl:()=>StableSocket});let StableSocket=class StableSocket{constructor(e,t,s){this.socket=null,this.opening=null,this.url=e,this.delegate=t,this.policy=s}async open(){if(this.opening||this.socket)return;this.opening=new AbortController;let e=Object.assign(Object.assign({},this.policy),{signal:this.opening.signal});try{var t;this.socket=await (t=this.url,r(()=>o(t,e.timeout,e.signal),e.attempts,e.maxDelay,e.signal))}catch(e){this.delegate.socketDidFinish(this);return}finally{this.opening=null}this.socket.onclose=e=>{var t;this.socket=null,this.delegate.socketDidClose(this,e.code,e.reason),(this.delegate.socketShouldRetry?this.delegate.socketShouldRetry(this,e.code):(t=e.code)!==l&&t!==h)?setTimeout(()=>this.open(),Math.random()*(100+(this.delegate.reconnectWindow||50)-100)+100):this.delegate.socketDidFinish(this)},this.socket.onmessage=e=>{this.delegate.socketDidReceiveMessage(this,e.data)},this.delegate.socketDidOpen(this)}close(e,t){this.opening?(this.opening.abort(),this.opening=null):this.socket&&(this.socket.onclose=null,this.socket.close(e,t),this.socket=null,this.delegate.socketDidClose(this,e,t),this.delegate.socketDidFinish(this))}send(e){this.socket&&this.socket.send(e)}isOpen(){return!!this.socket}};let l=1008,h=1011},29406:(e,t,s)=>{s.d(t,{m:()=>SubscriptionSet});var n=s(43730);let SubscriptionSet=class SubscriptionSet{constructor(){this.subscriptions=new n.A,this.signatures=new Map}add(...e){let t=[];for(let{subscriber:s,topic:n}of e)this.subscriptions.has(n.name)||(t.push(n),this.signatures.set(n.name,n)),this.subscriptions.set(n.name,s);return t}delete(...e){let t=[];for(let{subscriber:s,topic:n}of e)this.subscriptions.delete(n.name,s)&&!this.subscriptions.has(n.name)&&(t.push(n),this.signatures.delete(n.name));return t}drain(...e){let t=[];for(let s of e)for(let e of this.subscriptions.drain(s)){let s=this.signatures.get(e);this.signatures.delete(e),t.push(s)}return t}topics(){return this.signatures.values()}topic(e){return this.signatures.get(e)||null}subscribers(e){return this.subscriptions.get(e).values()}}},29572:(e,t,s)=>{var n=s(63969);e.exports=function(e){var t;return n(e=e||window.navigator.userAgent)&&(t=e,/\bGSA\b/.test(t))}},32514:e=>{e.exports=function(e){return e=e||window.navigator.userAgent,/^Mozilla\/5\.0.*Safari\//.test(e)&&!/(iPhone|iPad|iPod|Android|SM-)/i.test(e)&&!/Chrome|CriOS|FxiOS|OPiOS|mercury/i.test(e)}},40691:e=>{e.exports=function(e){return -1!==(e=e||window.navigator.userAgent).indexOf("Edge/")||-1!==e.indexOf("Edg/")}},41464:e=>{e.exports=function(e,t){return e=e||window.navigator.userAgent,t=t||window.document,/Mac|iPad/i.test(e)&&"ontouchend"in t}},42189:e=>{e.exports=function(e){return -1!==(e=e||window.navigator.userAgent).indexOf("MSIE 10")}},43730:(e,t,s)=>{s.d(t,{A:()=>MultiMap});let MultiMap=class MultiMap{constructor(e){if(this.map=new Map,e)for(const[t,s]of e)this.set(t,s)}get(e){return this.map.get(e)||new Set}set(e,t){let s=this.map.get(e);return s||(s=new Set,this.map.set(e,s)),s.add(t),this}has(e){return this.map.has(e)}delete(e,t){let s=this.map.get(e);if(!s)return!1;if(!t)return this.map.delete(e);let n=s.delete(t);return s.size||this.map.delete(e),n}drain(e){let t=[];for(let s of this.keys())this.delete(s,e)&&!this.has(s)&&t.push(s);return t}keys(){return this.map.keys()}values(){return this.map.values()}entries(){return this.map.entries()}[Symbol.iterator](){return this.entries()}clear(){this.map.clear()}get size(){return this.map.size}}},45710:(e,t,s)=>{var n=s(63969),i=s(76369),r=/webkit/i;e.exports=function(e){var t;return n(e=e||window.navigator.userAgent)&&(t=e,r.test(t))&&!(e.indexOf("CriOS")>-1)&&!i(e)&&!(e.indexOf("FBAN")>-1)}},45744:(e,t,s)=>{var n=s(16174);e.exports=function(e){return -1!==(e=e||window.navigator.userAgent).indexOf("MSIE")||n(e)}},46788:e=>{e.exports=function(e){return e=e||window.navigator.userAgent,/SamsungBrowser/i.test(e)}},60020:e=>{e.exports=function(e){return -1!==(e=e||window.navigator.userAgent).indexOf("DuckDuckGo/")}},62701:(e,t,s)=>{var n=s(76091),i=s(70955),r=s(63969);e.exports=function(){return n()||i()||r()}},63969:(e,t,s)=>{var n=s(41464);e.exports=function(e,t,s){void 0===t&&(t=!0),e=e||window.navigator.userAgent;var i=/iPhone|iPod|iPad/i.test(e);return t?i||n(e,s):i}},66787:e=>{e.exports=function(e){return -1!==(e=e||window.navigator.userAgent).indexOf("OPR/")||-1!==e.indexOf("Opera/")||-1!==e.indexOf("OPT/")}},67365:e=>{e.exports=function(e){return e=e||window.navigator.userAgent,/Firefox/i.test(e)}},68861:(e,t,s)=>{var n=s(76091),i=s(76369),r=s(13735),a=s(92112),o=s(46788),c=s(60020);function l(e){return(e=e||window.navigator.userAgent).indexOf("Opera Mini")>-1}e.exports=function(e){var t,s,h;return!(r(e=e||window.navigator.userAgent)||i(e)||n(t=(t=e)||window.navigator.userAgent)&&/Version\/[\d.]+/i.test(t)&&!l(t)&&!c(t)||l(e)||(s=(e||window.navigator.userAgent).match(/CriOS\/(\d+)\./))&&48>parseInt(s[1],10)||!a(h=e)&&!o(h)&&/samsung/i.test(h))}},70955:e=>{e.exports=function(e){return e=e||window.navigator.userAgent,/CrOS/i.test(e)}},76091:e=>{e.exports=function(e){return e=e||window.navigator.userAgent,/Android/i.test(e)}},76369:e=>{e.exports=function(e){return e=e||window.navigator.userAgent,/FxiOS/i.test(e)}},77479:(e,t,s)=>{function n(e,t){return`${e}:${t}`}function i(e){let[t,s]=e.p.split(".");return{userId:e.u,presenceKey:n(e.u,t),connectionCount:Number(s),metadata:e.m||[]}}function r(e){return e.startsWith("presence-")}s.d(t,{JR:()=>r,NW:()=>n,fI:()=>AlivePresence});let PresenceChannel=class PresenceChannel{constructor(){this.presenceItems=new Map}shouldUsePresenceItem(e){let t=this.presenceItems.get(e.presenceKey);return!t||t.connectionCount<=e.connectionCount}addPresenceItem(e){this.shouldUsePresenceItem(e)&&this.presenceItems.set(e.presenceKey,e)}removePresenceItem(e){this.shouldUsePresenceItem(e)&&this.presenceItems.delete(e.presenceKey)}replacePresenceItems(e){for(let t of(this.presenceItems.clear(),e))this.addPresenceItem(t)}getPresenceItems(){return Array.from(this.presenceItems.values())}};let AlivePresence=class AlivePresence{constructor(){this.presenceChannels=new Map}getPresenceChannel(e){let t=this.presenceChannels.get(e)||new PresenceChannel;return this.presenceChannels.set(e,t),t}handleMessage(e,t){let s=this.getPresenceChannel(e);switch(t.e){case"pf":s.replacePresenceItems(t.d.map(i));break;case"pa":s.addPresenceItem(i(t.d));break;case"pr":s.removePresenceItem(i(t.d))}return this.getChannelItems(e)}getChannelItems(e){return this.getPresenceChannel(e).getPresenceItems()}clearChannel(e){this.presenceChannels.delete(e)}}},85571:e=>{e.exports=function(e){return -1!==(e=e||window.navigator.userAgent).indexOf("Silk/")}},86948:(e,t,s)=>{s.d(t,{i:()=>AliveSession});var n,i,r=s(77479),a=s(14845),o=s(28556),c=s(29406),l=s(23963),h=s(11193);(n=i||(i={})).Deploy="Alive Redeploy",n.Reconnect="Alive Reconnect";let AliveSession=class AliveSession{constructor(e,t,s,n,i=6e5,o={}){this.url=e,this.getUrl=t,this.inSharedWorker=s,this.notify=n,this.maxReconnectBackoff=i,this.options=o,this.subscriptions=new c.m,this.state="online",this.retrying=null,this.connectionCount=0,this.presence=new r.fI,this.presenceMetadata=new a.V,this.intentionallyDisconnected=!1,this.lastCameOnline=0,this.userId=function(e){let t=e.match(/\/u\/(\d+)\/ws/);return t?+t[1]:0}(e),this.presenceId=`${Math.round(0x7fffffff*Math.random())}_${Math.round(Date.now()/1e3)}`,this.presenceKey=(0,r.NW)(this.userId,this.presenceId),this.socket=this.connect()}subscribe(e){let t=this.subscriptions.add(...e);for(let s of(this.sendSubscribe(t),e)){let e=s.topic.name;(0,r.JR)(e)&&this.notifyCachedPresence(s.subscriber,e)}}unsubscribe(e){let t=this.subscriptions.delete(...e);this.sendUnsubscribe(t)}unsubscribeAll(...e){let t=this.subscriptions.drain(...e);this.sendUnsubscribe(t);let s=this.presenceMetadata.removeSubscribers(e);this.sendPresenceMetadataUpdate(s)}requestPresence(e,t){for(let s of t)this.notifyCachedPresence(e,s)}notifyCachedPresence(e,t){let s=this.presence.getChannelItems(t);0!==s.length&&this.notifyPresenceChannel(t,s)}updatePresenceMetadata(e){let t=new Set;for(let s of e)this.presenceMetadata.setMetadata(s),t.add(s.channelName);this.sendPresenceMetadataUpdate(t)}sendPresenceMetadataUpdate(e){if(!e.size)return;let t=[];for(let s of e){let e=this.subscriptions.topic(s);e&&t.push(e)}this.sendSubscribe(t)}online(){var e;this.lastCameOnline=Date.now(),this.state="online",null==(e=this.retrying)||e.abort(),this.socket.open()}offline(){var e;this.state="offline",null==(e=this.retrying)||e.abort(),this.socket.close()}shutdown(){this.inSharedWorker&&self.close()}get reconnectWindow(){let e=Date.now()-this.lastCameOnline<6e4;return 0===this.connectionCount||this.intentionallyDisconnected||e?0:1e4}socketDidOpen(){this.intentionallyDisconnected=!1,this.connectionCount++,this.socket.url=this.getUrlWithPresenceId(),this.sendSubscribe(this.subscriptions.topics())}socketDidClose(e,t,s){if(void 0!==this.redeployEarlyReconnectTimeout&&clearTimeout(this.redeployEarlyReconnectTimeout),"Alive Reconnect"===s)this.intentionallyDisconnected=!0;else if("Alive Redeploy"===s){this.intentionallyDisconnected=!0;let e=3+22*Math.random();this.redeployEarlyReconnectTimeout=setTimeout(()=>{this.intentionallyDisconnected=!0,this.socket.close(1e3,"Alive Redeploy Early Client Reconnect")},60*e*1e3)}}socketDidFinish(){"offline"!==this.state&&this.reconnect()}socketDidReceiveMessage(e,t){let s=JSON.parse(t);switch(s.e){case"ack":this.handleAck(s);break;case"msg":this.handleMessage(s)}}handleAck(e){for(let t of this.subscriptions.topics())t.offset=e.off}handleMessage(e){let t=e.ch,s=this.subscriptions.topic(t);if(s){if(s.offset=e.off,"e"in e.data){let s=this.presence.handleMessage(t,e.data);this.notifyPresenceChannel(t,s);return}e.data.wait||(e.data.wait=0),this.notify(this.subscriptions.subscribers(t),{channel:t,type:"message",data:e.data})}}notifyPresenceChannel(e,t){var s,n;let i=new Map;for(let e of t){let{userId:t,metadata:s,presenceKey:n}=e,r=i.get(t)||{userId:t,isOwnUser:t===this.userId,metadata:[]};if(n!==this.presenceKey){for(let e of s){if(a.n in e){!1!==r.isIdle&&(r.isIdle=!!e[a.n]);continue}r.metadata.push(e)}i.set(t,r)}}for(let t of this.subscriptions.subscribers(e)){let r=this.userId,a=Array.from(i.values()).filter(e=>e.userId!==r),o=null!=(n=null==(s=i.get(this.userId))?void 0:s.metadata)?n:[],c=this.presenceMetadata.getChannelMetadata(e,{subscriber:t,markAllAsLocal:!this.inSharedWorker});this.notify([t],{channel:e,type:"presence",data:[{userId:r,isOwnUser:!0,metadata:[...o,...c]},...a]})}}async reconnect(){if(!this.retrying)try{this.retrying=new AbortController;let e=await (0,h.L)(this.getUrl,1/0,this.maxReconnectBackoff,this.retrying.signal);e?(this.url=e,this.socket=this.connect()):this.shutdown()}catch(e){if("AbortError"!==e.name)throw e}finally{this.retrying=null}}getUrlWithPresenceId(){let e=new URL(this.url,self.location.origin);return e.searchParams.set("shared",this.inSharedWorker.toString()),e.searchParams.set("p",`${this.presenceId}.${this.connectionCount}`),e.toString()}connect(){let e=new o.Zl(this.getUrlWithPresenceId(),this,this.options.socketPolicy||{timeout:4e3,attempts:16,maxDelay:512e3});return e.open(),e}sendSubscribe(e){let t=Array.from(e);for(let e of(0,l.s)(t,25)){let t={};for(let s of e)(0,r.JR)(s.name)?t[s.signed]=JSON.stringify(this.presenceMetadata.getChannelMetadata(s.name)):t[s.signed]=s.offset;this.socket.send(JSON.stringify({subscribe:t}))}}sendUnsubscribe(e){let t=Array.from(e,e=>e.signed);for(let e of(0,l.s)(t,25))this.socket.send(JSON.stringify({unsubscribe:e}));for(let t of e)(0,r.JR)(t.name)&&this.presence.clearChannel(t.name)}}},92112:(e,t,s)=>{var n=s(40691),i=s(46788),r=s(60020),a=s(66787),o=s(85571);e.exports=function(e){return(-1!==(e=e||window.navigator.userAgent).indexOf("Chrome")||-1!==e.indexOf("CriOS"))&&!n(e)&&!i(e)&&!r(e)&&!a(e)&&!o(e)}}}]); +//# sourceMappingURL=28546-622a09760ac8.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/28633.4f47147a32c89ffb4097.module.css" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/28633.4f47147a32c89ffb4097.module.css" new file mode 100644 index 0000000..2370eb7 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/28633.4f47147a32c89ffb4097.module.css" @@ -0,0 +1,2 @@ +.GlobalSSOBanner-module__bannerOuterWrapper--fyxDF{height:auto;overflow:hidden;transition:height var(--base-duration-300) var(--base-easing-easeIn)}.GlobalSSOBanner-module__bannerInnerWrapper--butqf{transform:translateY(0);transition:transform var(--base-duration-300) var(--base-easing-easeIn)}.GlobalSSOBanner-module__banner--kzCnx{border-left:0;border-radius:0;border-right:0;border-top:0}.GlobalSSOBanner-module__dismissedOrgList--Jkrx7{display:block;margin:var(--base-size-12) var(--base-size-24);padding:0}.GlobalSSOBanner-module__durationSelector--DOJjX{margin:var(--base-size-12) 0}.emoji-module__emojiContainer--UKG6Z img,.emoji-module__emojiIcon--Vu8EW,.styles-module__emojiContainer--EDpzK img,.styles-module__emojiIcon--oLPDd{font-size:14px;height:14px;margin-top:1px;vertical-align:-2px;width:14px} +/*# sourceMappingURL=28633-6b4e16e33d88.js.map*/ \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/29665-d8a5ff44df6d.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/29665-d8a5ff44df6d.js" new file mode 100644 index 0000000..1871c2b --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/29665-d8a5ff44df6d.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:29665-d8a5ff44df6d.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[29665],{23967:(e,n,o)=>{function s(e){let n=e.toUpperCase(),o=i[n];return!o&&t[n]&&(o=i[t[n]]),o??{name:e}}o.d(n,{Yr:()=>a,r4:()=>i,vL:()=>s});let a=new Set(["Markdown","MDX"]),t={CPP:"C++",CSHARP:"C#",FSHARP:"F#",VBNET:"VISUAL BASIC .NET"},i={"1C ENTERPRISE":{color:"#814CCC",name:"1C Enterprise",extensions:[".bsl",".os"]},"2-DIMENSIONAL ARRAY":{color:"#38761D",name:"2-Dimensional Array",extensions:[".2da"]},"4D":{color:"#004289",name:"4D",extensions:[".4dm"]},ABAP:{color:"#E8274B",name:"ABAP",extensions:[".abap"]},"ABAP CDS":{color:"#555e25",name:"ABAP CDS",extensions:[".asddls"]},ABNF:{name:"ABNF",extensions:[".abnf"]},"AGS SCRIPT":{color:"#B9D9FF",name:"AGS Script",extensions:[".asc",".ash"]},AIDL:{color:"#34EB6B",name:"AIDL",extensions:[".aidl"]},AL:{color:"#3AA2B5",name:"AL",extensions:[".al"]},AMPL:{color:"#E6EFBB",name:"AMPL",extensions:[".ampl",".mod"]},ANTLR:{color:"#9DC3FF",name:"ANTLR",extensions:[".g4"]},"API BLUEPRINT":{color:"#2ACCA8",name:"API Blueprint",extensions:[".apib"]},APL:{color:"#5A8164",name:"APL",extensions:[".apl",".dyalog"]},ASL:{name:"ASL",extensions:[".asl",".dsl"]},"ASN.1":{name:"ASN.1",extensions:[".asn",".asn1"]},"ASP.NET":{color:"#9400ff",name:"ASP.NET",extensions:[".asax",".ascx",".ashx",".asmx",".aspx",".axd"]},ATS:{color:"#1ac620",name:"ATS",extensions:[".dats",".hats",".sats"]},ACTIONSCRIPT:{color:"#882B0F",name:"ActionScript",extensions:[".as"]},ADA:{color:"#02f88c",name:"Ada",extensions:[".adb",".ada",".ads"]},"ADBLOCK FILTER LIST":{color:"#800000",name:"Adblock Filter List",extensions:[".txt"]},"ADOBE FONT METRICS":{color:"#fa0f00",name:"Adobe Font Metrics",extensions:[".afm"]},AGDA:{color:"#315665",name:"Agda",extensions:[".agda"]},AIKEN:{color:"#640ff8",name:"Aiken",extensions:[".ak"]},ALLOY:{color:"#64C800",name:"Alloy",extensions:[".als"]},"ALPINE ABUILD":{color:"#0D597F",name:"Alpine Abuild"},"ALTIUM DESIGNER":{color:"#A89663",name:"Altium Designer",extensions:[".OutJob",".PcbDoc",".PrjPCB",".SchDoc"]},ANGELSCRIPT:{color:"#C7D7DC",name:"AngelScript",extensions:[".as",".angelscript"]},"ANSWER SET PROGRAMMING":{color:"#A9CC29",name:"Answer Set Programming",extensions:[".lp"]},"ANT BUILD SYSTEM":{color:"#A9157E",name:"Ant Build System"},ANTLERS:{color:"#ff269e",name:"Antlers",extensions:[".antlers.html",".antlers.php",".antlers.xml"]},APACHECONF:{color:"#d12127",name:"ApacheConf",extensions:[".apacheconf",".vhost"]},APEX:{color:"#1797c0",name:"Apex",extensions:[".cls",".apex",".trigger"]},"APOLLO GUIDANCE COMPUTER":{color:"#0B3D91",name:"Apollo Guidance Computer",extensions:[".agc"]},APPLESCRIPT:{color:"#101F1F",name:"AppleScript",extensions:[".applescript",".scpt"]},ARC:{color:"#aa2afe",name:"Arc",extensions:[".arc"]},ASCIIDOC:{color:"#73a0c5",name:"AsciiDoc",extensions:[".asciidoc",".adoc",".asc"],wrap:!0},ASPECTJ:{color:"#a957b0",name:"AspectJ",extensions:[".aj"]},ASSEMBLY:{color:"#6E4C13",name:"Assembly",extensions:[".asm",".a51",".i",".inc",".nas",".nasm",".s"]},ASTRO:{color:"#ff5a03",name:"Astro",extensions:[".astro"]},ASYMPTOTE:{color:"#ff0000",name:"Asymptote",extensions:[".asy"]},AUGEAS:{color:"#9CC134",name:"Augeas",extensions:[".aug"]},AUTOHOTKEY:{color:"#6594b9",name:"AutoHotkey",extensions:[".ahk",".ahkl"]},AUTOIT:{color:"#1C3552",name:"AutoIt",extensions:[".au3"]},"AVRO IDL":{color:"#0040FF",name:"Avro IDL",extensions:[".avdl"]},AWK:{color:"#c30e9b",name:"Awk",extensions:[".awk",".auk",".gawk",".mawk",".nawk"]},B4X:{color:"#00e4ff",name:"B4X",extensions:[".bas"]},BASIC:{color:"#ff0000",name:"BASIC",extensions:[".bas"]},BQN:{color:"#2b7067",name:"BQN",extensions:[".bqn"]},BALLERINA:{color:"#FF5000",name:"Ballerina",extensions:[".bal"]},BATCHFILE:{color:"#C1F12E",name:"Batchfile",extensions:[".bat",".cmd"]},BEEF:{color:"#a52f4e",name:"Beef",extensions:[".bf"]},BEFUNGE:{name:"Befunge",extensions:[".befunge",".bf"]},BERRY:{color:"#15A13C",name:"Berry",extensions:[".be"]},BIBTEX:{color:"#778899",name:"BibTeX",extensions:[".bib",".bibtex"]},"BIBTEX STYLE":{name:"BibTeX Style",extensions:[".bst"]},BICEP:{color:"#519aba",name:"Bicep",extensions:[".bicep",".bicepparam"]},BIKESHED:{color:"#5562ac",name:"Bikeshed",extensions:[".bs"]},BISON:{color:"#6A463F",name:"Bison",extensions:[".bison"]},BITBAKE:{color:"#00bce4",name:"BitBake",extensions:[".bb",".bbappend",".bbclass",".inc"]},BLADE:{color:"#f7523f",name:"Blade",extensions:[".blade",".blade.php"]},BLITZBASIC:{color:"#00FFAE",name:"BlitzBasic",extensions:[".bb",".decls"]},BLITZMAX:{color:"#cd6400",name:"BlitzMax",extensions:[".bmx"]},BLUESPEC:{color:"#12223c",name:"Bluespec",extensions:[".bsv"]},"BLUESPEC BH":{color:"#12223c",name:"Bluespec BH",extensions:[".bs"]},BOO:{color:"#d4bec1",name:"Boo",extensions:[".boo"]},BOOGIE:{color:"#c80fa0",name:"Boogie",extensions:[".bpl"]},BRAINFUCK:{color:"#2F2530",name:"Brainfuck",extensions:[".b",".bf"]},BRIGHTERSCRIPT:{color:"#66AABB",name:"BrighterScript",extensions:[".bs"]},BRIGHTSCRIPT:{color:"#662D91",name:"Brightscript",extensions:[".brs"]},BROWSERSLIST:{color:"#ffd539",name:"Browserslist"},BUILDSTREAM:{color:"#006bff",name:"BuildStream",extensions:[".bst"]},C:{color:"#555555",name:"C",extensions:[".c",".cats",".h",".h.in",".idc"]},"C#":{color:"#178600",name:"C#",extensions:[".cs",".cake",".cs.pp",".csx",".linq"]},"C++":{color:"#f34b7d",name:"C++",extensions:[".cpp",".c++",".cc",".cp",".cppm",".cxx",".h",".h++",".hh",".hpp",".hxx",".inc",".inl",".ino",".ipp",".ixx",".re",".tcc",".tpp",".txx"]},"C-OBJDUMP":{name:"C-ObjDump",extensions:[".c-objdump"]},"C2HS HASKELL":{name:"C2hs Haskell",extensions:[".chs"]},"CAP CDS":{color:"#0092d1",name:"CAP CDS",extensions:[".cds"]},CIL:{name:"CIL",extensions:[".cil"]},CLIPS:{color:"#00A300",name:"CLIPS",extensions:[".clp"]},CMAKE:{color:"#DA3434",name:"CMake",extensions:[".cmake",".cmake.in"]},COBOL:{name:"COBOL",extensions:[".cob",".cbl",".ccp",".cobol",".cpy"]},CODEOWNERS:{name:"CODEOWNERS"},COLLADA:{color:"#F1A42B",name:"COLLADA",extensions:[".dae"]},CSON:{color:"#244776",name:"CSON",extensions:[".cson"]},CSS:{color:"#663399",name:"CSS",extensions:[".css"]},CSV:{color:"#237346",name:"CSV",extensions:[".csv"]},CUE:{color:"#5886E1",name:"CUE",extensions:[".cue"]},CWEB:{color:"#00007a",name:"CWeb",extensions:[".w"]},"CABAL CONFIG":{color:"#483465",name:"Cabal Config",extensions:[".cabal"]},CADDYFILE:{color:"#22b638",name:"Caddyfile",extensions:[".caddyfile"]},CADENCE:{color:"#00ef8b",name:"Cadence",extensions:[".cdc"]},CAIRO:{color:"#ff4a48",name:"Cairo",extensions:[".cairo"]},"CAIRO ZERO":{color:"#ff4a48",name:"Cairo Zero",extensions:[".cairo"]},CAMELIGO:{color:"#3be133",name:"CameLIGO",extensions:[".mligo"]},"CAP'N PROTO":{color:"#c42727",name:"Cap'n Proto",extensions:[".capnp"]},CARBON:{color:"#222222",name:"Carbon",extensions:[".carbon"]},CARTOCSS:{name:"CartoCSS",extensions:[".mss"]},CEYLON:{color:"#dfa535",name:"Ceylon",extensions:[".ceylon"]},CHAPEL:{color:"#8dc63f",name:"Chapel",extensions:[".chpl"]},CHARITY:{name:"Charity",extensions:[".ch"]},CHECKSUMS:{name:"Checksums",extensions:[".crc32",".md2",".md4",".md5",".sha1",".sha2",".sha224",".sha256",".sha256sum",".sha3",".sha384",".sha512"]},CHUCK:{color:"#3f8000",name:"ChucK",extensions:[".ck"]},CIRCOM:{color:"#707575",name:"Circom",extensions:[".circom"]},CIRRU:{color:"#ccccff",name:"Cirru",extensions:[".cirru"]},CLARION:{color:"#db901e",name:"Clarion",extensions:[".clw"]},CLARITY:{color:"#5546ff",name:"Clarity",extensions:[".clar"]},"CLASSIC ASP":{color:"#6a40fd",name:"Classic ASP",extensions:[".asp"]},CLEAN:{color:"#3F85AF",name:"Clean",extensions:[".icl",".dcl"]},CLICK:{color:"#E4E6F3",name:"Click",extensions:[".click"]},CLOJURE:{color:"#db5855",name:"Clojure",extensions:[".clj",".bb",".boot",".cl2",".cljc",".cljs",".cljs.hl",".cljscm",".cljx",".hic"]},"CLOSURE TEMPLATES":{color:"#0d948f",name:"Closure Templates",extensions:[".soy"]},"CLOUD FIRESTORE SECURITY RULES":{color:"#FFA000",name:"Cloud Firestore Security Rules"},CLUE:{color:"#0009b5",name:"Clue",extensions:[".clue"]},"CONLL-U":{name:"CoNLL-U",extensions:[".conllu",".conll"]},CODEQL:{color:"#140f46",name:"CodeQL",extensions:[".ql",".qll"]},COFFEESCRIPT:{color:"#244776",name:"CoffeeScript",extensions:[".coffee","._coffee",".cake",".cjsx",".iced"]},COLDFUSION:{color:"#ed2cd6",name:"ColdFusion",extensions:[".cfm",".cfml"]},"COLDFUSION CFC":{color:"#ed2cd6",name:"ColdFusion CFC",extensions:[".cfc"]},"COMMON LISP":{color:"#3fb68b",name:"Common Lisp",extensions:[".lisp",".asd",".cl",".l",".lsp",".ny",".podsl",".sexp"]},"COMMON WORKFLOW LANGUAGE":{color:"#B5314C",name:"Common Workflow Language",extensions:[".cwl"]},"COMPONENT PASCAL":{color:"#B0CE4E",name:"Component Pascal",extensions:[".cp",".cps"]},COOL:{name:"Cool",extensions:[".cl"]},"CPP-OBJDUMP":{name:"Cpp-ObjDump",extensions:[".cppobjdump",".c++-objdump",".c++objdump",".cpp-objdump",".cxx-objdump"]},CREOLE:{name:"Creole",extensions:[".creole"],wrap:!0},CRYSTAL:{color:"#000100",name:"Crystal",extensions:[".cr"]},CSOUND:{color:"#1a1a1a",name:"Csound",extensions:[".orc",".udo"]},"CSOUND DOCUMENT":{color:"#1a1a1a",name:"Csound Document",extensions:[".csd"]},"CSOUND SCORE":{color:"#1a1a1a",name:"Csound Score",extensions:[".sco"]},CUDA:{color:"#3A4E3A",name:"Cuda",extensions:[".cu",".cuh"]},"CUE SHEET":{name:"Cue Sheet",extensions:[".cue"]},CURRY:{color:"#531242",name:"Curry",extensions:[".curry"]},CYCRIPT:{name:"Cycript",extensions:[".cy"]},CYLC:{color:"#00b3fd",name:"Cylc",extensions:[".cylc"]},CYPHER:{color:"#34c0eb",name:"Cypher",extensions:[".cyp",".cypher"]},CYTHON:{color:"#fedf5b",name:"Cython",extensions:[".pyx",".pxd",".pxi"]},D:{color:"#ba595e",name:"D",extensions:[".d",".di"]},"D-OBJDUMP":{name:"D-ObjDump",extensions:[".d-objdump"]},D2:{color:"#526ee8",name:"D2",extensions:[".d2"]},"DIGITAL COMMAND LANGUAGE":{name:"DIGITAL Command Language",extensions:[".com"]},DM:{color:"#447265",name:"DM",extensions:[".dm"]},"DNS ZONE":{name:"DNS Zone",extensions:[".zone",".arpa"]},DTRACE:{name:"DTrace",extensions:[".d"]},DAFNY:{color:"#FFEC25",name:"Dafny",extensions:[".dfy"]},"DARCS PATCH":{color:"#8eff23",name:"Darcs Patch",extensions:[".darcspatch",".dpatch"]},DART:{color:"#00B4AB",name:"Dart",extensions:[".dart"]},DASLANG:{color:"#d3d3d3",name:"Daslang",extensions:[".das"]},DATAWEAVE:{color:"#003a52",name:"DataWeave",extensions:[".dwl"]},"DEBIAN PACKAGE CONTROL FILE":{color:"#D70751",name:"Debian Package Control File",extensions:[".dsc"]},DENIZENSCRIPT:{color:"#FBEE96",name:"DenizenScript",extensions:[".dsc"]},DHALL:{color:"#dfafff",name:"Dhall",extensions:[".dhall"]},DIFF:{name:"Diff",extensions:[".diff",".patch"]},"DIRECTX 3D FILE":{color:"#aace60",name:"DirectX 3D File",extensions:[".x"]},DOCKERFILE:{color:"#384d54",name:"Dockerfile",extensions:[".dockerfile",".containerfile"]},DOGESCRIPT:{color:"#cca760",name:"Dogescript",extensions:[".djs"]},DOTENV:{color:"#e5d559",name:"Dotenv",extensions:[".env"]},DUNE:{color:"#89421e",name:"Dune"},DYLAN:{color:"#6c616e",name:"Dylan",extensions:[".dylan",".dyl",".intr",".lid"]},E:{color:"#ccce35",name:"E",extensions:[".e"]},"E-MAIL":{name:"E-mail",extensions:[".eml",".mbox"]},EBNF:{name:"EBNF",extensions:[".ebnf"]},ECL:{color:"#8a1267",name:"ECL",extensions:[".ecl",".eclxml"]},ECLIPSE:{color:"#001d9d",name:"ECLiPSe",extensions:[".ecl"]},EJS:{color:"#a91e50",name:"EJS",extensions:[".ejs",".ect",".ejs.t",".jst"]},EQ:{color:"#a78649",name:"EQ",extensions:[".eq"]},EAGLE:{name:"Eagle",extensions:[".sch",".brd"]},EARTHLY:{color:"#2af0ff",name:"Earthly"},EASYBUILD:{color:"#069406",name:"Easybuild",extensions:[".eb"]},"ECERE PROJECTS":{color:"#913960",name:"Ecere Projects",extensions:[".epj"]},ECMARKUP:{color:"#eb8131",name:"Ecmarkup",extensions:[".html"]},EDGE:{color:"#0dffe0",name:"Edge",extensions:[".edge"]},EDGEQL:{color:"#31A7FF",name:"EdgeQL",extensions:[".edgeql",".esdl"]},EDITORCONFIG:{color:"#fff1f2",name:"EditorConfig",extensions:[".editorconfig"]},"EDJE DATA COLLECTION":{name:"Edje Data Collection",extensions:[".edc"]},EIFFEL:{color:"#4d6977",name:"Eiffel",extensions:[".e"]},ELIXIR:{color:"#6e4a7e",name:"Elixir",extensions:[".ex",".exs"]},ELM:{color:"#60B5CC",name:"Elm",extensions:[".elm"]},ELVISH:{color:"#55BB55",name:"Elvish",extensions:[".elv"]},"ELVISH TRANSCRIPT":{color:"#55BB55",name:"Elvish Transcript"},"EMACS LISP":{color:"#c065db",name:"Emacs Lisp",extensions:[".el",".emacs",".emacs.desktop"]},EMBERSCRIPT:{color:"#FFF4F3",name:"EmberScript",extensions:[".em",".emberscript"]},ERLANG:{color:"#B83998",name:"Erlang",extensions:[".erl",".app",".app.src",".es",".escript",".hrl",".xrl",".yrl"]},EUPHORIA:{color:"#FF790B",name:"Euphoria",extensions:[".e",".ex"]},"F#":{color:"#b845fc",name:"F#",extensions:[".fs",".fsi",".fsx"]},"F*":{color:"#572e30",name:"F*",extensions:[".fst",".fsti"]},"FIGLET FONT":{color:"#FFDDBB",name:"FIGlet Font",extensions:[".flf"]},FIRRTL:{color:"#2f632f",name:"FIRRTL",extensions:[".fir"]},FLUX:{color:"#88ccff",name:"FLUX",extensions:[".fx",".flux"]},FACTOR:{color:"#636746",name:"Factor",extensions:[".factor"]},FANCY:{color:"#7b9db4",name:"Fancy",extensions:[".fy",".fancypack"]},FANTOM:{color:"#14253c",name:"Fantom",extensions:[".fan"]},FAUST:{color:"#c37240",name:"Faust",extensions:[".dsp"]},FENNEL:{color:"#fff3d7",name:"Fennel",extensions:[".fnl"]},"FILEBENCH WML":{color:"#F6B900",name:"Filebench WML",extensions:[".f"]},FILTERSCRIPT:{name:"Filterscript",extensions:[".fs"]},FLUENT:{color:"#ffcc33",name:"Fluent",extensions:[".ftl"]},FORMATTED:{name:"Formatted",extensions:[".for",".eam.fs"]},FORTH:{color:"#341708",name:"Forth",extensions:[".fth",".4th",".f",".for",".forth",".fr",".frt",".fs"]},FORTRAN:{color:"#4d41b1",name:"Fortran",extensions:[".f",".f77",".for",".fpp"]},"FORTRAN FREE FORM":{color:"#4d41b1",name:"Fortran Free Form",extensions:[".f90",".f03",".f08",".f95"]},FREEBASIC:{color:"#141AC9",name:"FreeBASIC",extensions:[".bi",".bas"]},FREEMARKER:{color:"#0050b2",name:"FreeMarker",extensions:[".ftl"]},FREGE:{color:"#00cafe",name:"Frege",extensions:[".fr"]},FUTHARK:{color:"#5f021f",name:"Futhark",extensions:[".fut"]},"G-CODE":{color:"#D08CF2",name:"G-code",extensions:[".g",".cnc",".gco",".gcode"]},GAML:{color:"#FFC766",name:"GAML",extensions:[".gaml"]},GAMS:{color:"#f49a22",name:"GAMS",extensions:[".gms"]},GAP:{color:"#0000cc",name:"GAP",extensions:[".g",".gap",".gd",".gi",".tst"]},"GCC MACHINE DESCRIPTION":{color:"#FFCFAB",name:"GCC Machine Description",extensions:[".md"]},GDB:{name:"GDB",extensions:[".gdb",".gdbinit"]},GDSCRIPT:{color:"#355570",name:"GDScript",extensions:[".gd"]},GDSHADER:{color:"#478CBF",name:"GDShader",extensions:[".gdshader",".gdshaderinc"]},GEDCOM:{color:"#003058",name:"GEDCOM",extensions:[".ged"]},GLSL:{color:"#5686a5",name:"GLSL",extensions:[".glsl",".fp",".frag",".frg",".fs",".fsh",".fshader",".geo",".geom",".glslf",".glslv",".gs",".gshader",".rchit",".rmiss",".shader",".tesc",".tese",".vert",".vrx",".vs",".vsh",".vshader"]},GN:{name:"GN",extensions:[".gn",".gni"]},GSC:{color:"#FF6800",name:"GSC",extensions:[".gsc",".csc",".gsh"]},"GAME MAKER LANGUAGE":{color:"#71b417",name:"Game Maker Language",extensions:[".gml"]},"GEMFILE.LOCK":{color:"#701516",name:"Gemfile.lock"},GEMINI:{color:"#ff6900",name:"Gemini",extensions:[".gmi"],wrap:!0},"GENERO 4GL":{color:"#63408e",name:"Genero 4gl",extensions:[".4gl"]},"GENERO PER":{color:"#d8df39",name:"Genero per",extensions:[".per"]},GENIE:{color:"#fb855d",name:"Genie",extensions:[".gs"]},GENSHI:{color:"#951531",name:"Genshi",extensions:[".kid"]},"GENTOO EBUILD":{color:"#9400ff",name:"Gentoo Ebuild",extensions:[".ebuild"]},"GENTOO ECLASS":{color:"#9400ff",name:"Gentoo Eclass",extensions:[".eclass"]},"GERBER IMAGE":{color:"#d20b00",name:"Gerber Image",extensions:[".gbr",".cmp",".gbl",".gbo",".gbp",".gbs",".gko",".gml",".gpb",".gpt",".gtl",".gto",".gtp",".gts",".ncl",".sol"]},"GETTEXT CATALOG":{name:"Gettext Catalog",extensions:[".po",".pot"]},GHERKIN:{color:"#5B2063",name:"Gherkin",extensions:[".feature",".story"]},"GIT ATTRIBUTES":{color:"#F44D27",name:"Git Attributes"},"GIT CONFIG":{color:"#F44D27",name:"Git Config",extensions:[".gitconfig"]},"GIT REVISION LIST":{color:"#F44D27",name:"Git Revision List"},GLEAM:{color:"#ffaff3",name:"Gleam",extensions:[".gleam"]},"GLIMMER JS":{color:"#F5835F",name:"Glimmer JS",extensions:[".gjs"]},"GLIMMER TS":{color:"#3178c6",name:"Glimmer TS",extensions:[".gts"]},GLYPH:{color:"#c1ac7f",name:"Glyph",extensions:[".glf"]},"GLYPH BITMAP DISTRIBUTION FORMAT":{name:"Glyph Bitmap Distribution Format",extensions:[".bdf"]},GNUPLOT:{color:"#f0a9f0",name:"Gnuplot",extensions:[".gp",".gnu",".gnuplot",".p",".plot",".plt"]},GO:{color:"#00ADD8",name:"Go",extensions:[".go"]},"GO CHECKSUMS":{color:"#00ADD8",name:"Go Checksums"},"GO MODULE":{color:"#00ADD8",name:"Go Module"},"GO WORKSPACE":{color:"#00ADD8",name:"Go Workspace"},"GODOT RESOURCE":{color:"#355570",name:"Godot Resource",extensions:[".gdnlib",".gdns",".tres",".tscn"]},GOLO:{color:"#88562A",name:"Golo",extensions:[".golo"]},GOSU:{color:"#82937f",name:"Gosu",extensions:[".gs",".gst",".gsx",".vark"]},GRACE:{color:"#615f8b",name:"Grace",extensions:[".grace"]},GRADLE:{color:"#02303a",name:"Gradle",extensions:[".gradle"]},"GRADLE KOTLIN DSL":{color:"#02303a",name:"Gradle Kotlin DSL",extensions:[".gradle.kts"]},"GRAMMATICAL FRAMEWORK":{color:"#ff0000",name:"Grammatical Framework",extensions:[".gf"]},"GRAPH MODELING LANGUAGE":{name:"Graph Modeling Language",extensions:[".gml"]},GRAPHQL:{color:"#e10098",name:"GraphQL",extensions:[".graphql",".gql",".graphqls"]},"GRAPHVIZ (DOT)":{color:"#2596be",name:"Graphviz (DOT)",extensions:[".dot",".gv"]},GROOVY:{color:"#4298b8",name:"Groovy",extensions:[".groovy",".grt",".gtpl",".gvy"]},"GROOVY SERVER PAGES":{color:"#4298b8",name:"Groovy Server Pages",extensions:[".gsp"]},HAPROXY:{color:"#106da9",name:"HAProxy",extensions:[".cfg"]},HCL:{color:"#844FBA",name:"HCL",extensions:[".hcl",".nomad",".tf",".tfvars",".workflow"]},HIP:{color:"#4F3A4F",name:"HIP",extensions:[".hip"]},HLSL:{color:"#aace60",name:"HLSL",extensions:[".hlsl",".cginc",".fx",".fxh",".hlsli"]},HOCON:{color:"#9ff8ee",name:"HOCON",extensions:[".hocon"]},HTML:{color:"#e34c26",name:"HTML",extensions:[".html",".hta",".htm",".html.hl",".inc",".xht",".xhtml"]},"HTML+ECR":{color:"#2e1052",name:"HTML+ECR",extensions:[".ecr"]},"HTML+EEX":{color:"#6e4a7e",name:"HTML+EEX",extensions:[".html.eex",".heex",".leex"]},"HTML+ERB":{color:"#701516",name:"HTML+ERB",extensions:[".erb",".erb.deface",".rhtml"]},"HTML+PHP":{color:"#4f5d95",name:"HTML+PHP",extensions:[".phtml"]},"HTML+RAZOR":{color:"#512be4",name:"HTML+Razor",extensions:[".cshtml",".razor"]},HTTP:{color:"#005C9C",name:"HTTP",extensions:[".http"]},HXML:{color:"#f68712",name:"HXML",extensions:[".hxml"]},HACK:{color:"#878787",name:"Hack",extensions:[".hack",".hh",".hhi",".php"]},HAML:{color:"#ece2a9",name:"Haml",extensions:[".haml",".haml.deface"]},HANDLEBARS:{color:"#f7931e",name:"Handlebars",extensions:[".handlebars",".hbs"]},HARBOUR:{color:"#0e60e3",name:"Harbour",extensions:[".hb"]},HARE:{color:"#9d7424",name:"Hare",extensions:[".ha"]},HASKELL:{color:"#5e5086",name:"Haskell",extensions:[".hs",".hs-boot",".hsc"]},HAXE:{color:"#df7900",name:"Haxe",extensions:[".hx",".hxsl"]},HIVEQL:{color:"#dce200",name:"HiveQL",extensions:[".q",".hql"]},HOLYC:{color:"#ffefaf",name:"HolyC",extensions:[".hc"]},"HOSTS FILE":{color:"#308888",name:"Hosts File"},HY:{color:"#7790B2",name:"Hy",extensions:[".hy"]},HYPHY:{name:"HyPhy",extensions:[".bf"]},IDL:{color:"#a3522f",name:"IDL",extensions:[".pro",".dlm"]},"IGOR PRO":{color:"#0000cc",name:"IGOR Pro",extensions:[".ipf"]},INI:{color:"#d1dbe0",name:"INI",extensions:[".ini",".cfg",".cnf",".dof",".frm",".lektorproject",".prefs",".pro",".properties",".url"]},"IRC LOG":{name:"IRC log",extensions:[".irclog",".weechatlog"]},ISPC:{color:"#2D68B1",name:"ISPC",extensions:[".ispc"]},IDRIS:{color:"#b30000",name:"Idris",extensions:[".idr",".lidr"]},"IGNORE LIST":{color:"#000000",name:"Ignore List",extensions:[".gitignore"]},"IMAGEJ MACRO":{color:"#99AAFF",name:"ImageJ Macro",extensions:[".ijm"]},IMBA:{color:"#16cec6",name:"Imba",extensions:[".imba"]},"INFORM 7":{name:"Inform 7",extensions:[".ni",".i7x"],wrap:!0},INK:{name:"Ink",extensions:[".ink"],wrap:!0},"INNO SETUP":{color:"#264b99",name:"Inno Setup",extensions:[".iss",".isl"]},IO:{color:"#a9188d",name:"Io",extensions:[".io"]},IOKE:{color:"#078193",name:"Ioke",extensions:[".ik"]},ISABELLE:{color:"#FEFE00",name:"Isabelle",extensions:[".thy"]},"ISABELLE ROOT":{color:"#FEFE00",name:"Isabelle ROOT"},J:{color:"#9EEDFF",name:"J",extensions:[".ijs"]},"JAR MANIFEST":{color:"#b07219",name:"JAR Manifest"},JCL:{color:"#d90e09",name:"JCL",extensions:[".jcl"]},JFLEX:{color:"#DBCA00",name:"JFlex",extensions:[".flex",".jflex"]},JSON:{color:"#292929",name:"JSON",extensions:[".json",".4DForm",".4DProject",".avsc",".geojson",".gltf",".har",".ice",".JSON-tmLanguage",".json.example",".jsonl",".mcmeta",".sarif",".tact",".tfstate",".tfstate.backup",".topojson",".webapp",".webmanifest",".yy",".yyp"]},"JSON WITH COMMENTS":{color:"#292929",name:"JSON with Comments",extensions:[".jsonc",".code-snippets",".code-workspace",".sublime-build",".sublime-color-scheme",".sublime-commands",".sublime-completions",".sublime-keymap",".sublime-macro",".sublime-menu",".sublime-mousemap",".sublime-project",".sublime-settings",".sublime-theme",".sublime-workspace",".sublime_metrics",".sublime_session"]},JSON5:{color:"#267CB9",name:"JSON5",extensions:[".json5"]},JSONLD:{color:"#0c479c",name:"JSONLD",extensions:[".jsonld"]},JSONIQ:{color:"#40d47e",name:"JSONiq",extensions:[".jq"]},JAI:{color:"#ab8b4b",name:"Jai",extensions:[".jai"]},JANET:{color:"#0886a5",name:"Janet",extensions:[".janet"]},JASMIN:{color:"#d03600",name:"Jasmin",extensions:[".j"]},JAVA:{color:"#b07219",name:"Java",extensions:[".java",".jav",".jsh"]},"JAVA PROPERTIES":{color:"#2A6277",name:"Java Properties",extensions:[".properties"]},"JAVA SERVER PAGES":{color:"#2A6277",name:"Java Server Pages",extensions:[".jsp",".tag"]},"JAVA TEMPLATE ENGINE":{color:"#2A6277",name:"Java Template Engine",extensions:[".jte"]},JAVASCRIPT:{color:"#f1e05a",name:"JavaScript",extensions:[".js","._js",".bones",".cjs",".es",".es6",".frag",".gs",".jake",".javascript",".jsb",".jscad",".jsfl",".jslib",".jsm",".jspre",".jss",".jsx",".mjs",".njs",".pac",".sjs",".ssjs",".xsjs",".xsjslib"]},"JAVASCRIPT+ERB":{color:"#f1e05a",name:"JavaScript+ERB",extensions:[".js.erb"]},"JEST SNAPSHOT":{color:"#15c213",name:"Jest Snapshot",extensions:[".snap"]},"JETBRAINS MPS":{color:"#21D789",name:"JetBrains MPS",extensions:[".mps",".mpl",".msd"]},JINJA:{color:"#a52a22",name:"Jinja",extensions:[".jinja",".j2",".jinja2"]},JISON:{color:"#56b3cb",name:"Jison",extensions:[".jison"]},"JISON LEX":{color:"#56b3cb",name:"Jison Lex",extensions:[".jisonlex"]},JOLIE:{color:"#843179",name:"Jolie",extensions:[".ol",".iol"]},JSONNET:{color:"#0064bd",name:"Jsonnet",extensions:[".jsonnet",".libsonnet"]},JULIA:{color:"#a270ba",name:"Julia",extensions:[".jl"]},"JULIA REPL":{color:"#a270ba",name:"Julia REPL"},"JUPYTER NOTEBOOK":{color:"#DA5B0B",name:"Jupyter Notebook",extensions:[".ipynb"]},JUST:{color:"#384d54",name:"Just",extensions:[".just"]},KDL:{color:"#ffb3b3",name:"KDL",extensions:[".kdl"]},KRL:{color:"#28430A",name:"KRL",extensions:[".krl"]},"KAITAI STRUCT":{color:"#773b37",name:"Kaitai Struct",extensions:[".ksy"]},KAKOUNESCRIPT:{color:"#6f8042",name:"KakouneScript",extensions:[".kak"]},KERBOSCRIPT:{color:"#41adf0",name:"KerboScript",extensions:[".ks"]},"KICAD LAYOUT":{color:"#2f4aab",name:"KiCad Layout",extensions:[".kicad_pcb",".kicad_mod",".kicad_wks"]},"KICAD LEGACY LAYOUT":{color:"#2f4aab",name:"KiCad Legacy Layout",extensions:[".brd"]},"KICAD SCHEMATIC":{color:"#2f4aab",name:"KiCad Schematic",extensions:[".kicad_sch",".kicad_sym",".sch"]},KICKSTART:{name:"Kickstart",extensions:[".ks"]},KIT:{name:"Kit",extensions:[".kit"]},KOKA:{color:"#215166",name:"Koka",extensions:[".kk"]},KOTLIN:{color:"#A97BFF",name:"Kotlin",extensions:[".kt",".ktm",".kts"]},KUSTO:{name:"Kusto",extensions:[".csl",".kql"]},LFE:{color:"#4C3023",name:"LFE",extensions:[".lfe"]},LLVM:{color:"#185619",name:"LLVM",extensions:[".ll"]},LOLCODE:{color:"#cc9900",name:"LOLCODE",extensions:[".lol"]},LSL:{color:"#3d9970",name:"LSL",extensions:[".lsl",".lslp"]},"LTSPICE SYMBOL":{name:"LTspice Symbol",extensions:[".asy"]},LABVIEW:{color:"#fede06",name:"LabVIEW",extensions:[".lvproj",".lvclass",".lvlib"]},LARK:{color:"#2980B9",name:"Lark",extensions:[".lark"]},LASSO:{color:"#999999",name:"Lasso",extensions:[".lasso",".las",".lasso8",".lasso9"]},LATTE:{color:"#f2a542",name:"Latte",extensions:[".latte"]},LEAN:{name:"Lean",extensions:[".lean",".hlean"]},"LEAN 4":{name:"Lean 4",extensions:[".lean"]},LEO:{color:"#C4FFC2",name:"Leo",extensions:[".leo"],wrap:!0},LESS:{color:"#1d365d",name:"Less",extensions:[".less"]},LEX:{color:"#DBCA00",name:"Lex",extensions:[".l",".lex"]},LIGOLANG:{color:"#0e74ff",name:"LigoLANG",extensions:[".ligo"]},LILYPOND:{color:"#9ccc7c",name:"LilyPond",extensions:[".ly",".ily"]},LIMBO:{name:"Limbo",extensions:[".b",".m"]},"LINEAR PROGRAMMING":{name:"Linear Programming",extensions:[".lp"]},"LINKER SCRIPT":{name:"Linker Script",extensions:[".ld",".lds",".x"]},"LINUX KERNEL MODULE":{name:"Linux Kernel Module",extensions:[".mod"]},LIQUID:{color:"#67b8de",name:"Liquid",extensions:[".liquid"]},"LITERATE AGDA":{color:"#315665",name:"Literate Agda",extensions:[".lagda"]},"LITERATE COFFEESCRIPT":{color:"#244776",name:"Literate CoffeeScript",extensions:[".litcoffee",".coffee.md"],wrap:!0},"LITERATE HASKELL":{color:"#5e5086",name:"Literate Haskell",extensions:[".lhs"]},"LIVECODE SCRIPT":{color:"#0c5ba5",name:"LiveCode Script",extensions:[".livecodescript"]},LIVESCRIPT:{color:"#499886",name:"LiveScript",extensions:[".ls","._ls"]},LOGOS:{name:"Logos",extensions:[".xm",".x",".xi"]},LOGTALK:{color:"#295b9a",name:"Logtalk",extensions:[".lgt",".logtalk"]},LOOKML:{color:"#652B81",name:"LookML",extensions:[".lkml",".lookml"]},LOOMSCRIPT:{name:"LoomScript",extensions:[".ls"]},LUA:{color:"#000080",name:"Lua",extensions:[".lua",".fcgi",".nse",".p8",".pd_lua",".rbxs",".rockspec",".wlua"]},LUAU:{color:"#00A2FF",name:"Luau",extensions:[".luau"]},M:{name:"M",extensions:[".mumps",".m"]},M3U:{color:"#179C7D",name:"M3U",extensions:[".m3u",".m3u8"]},M4:{name:"M4",extensions:[".m4",".mc"]},M4SUGAR:{name:"M4Sugar",extensions:[".m4"]},MATLAB:{color:"#e16737",name:"MATLAB",extensions:[".matlab",".m"]},MAXSCRIPT:{color:"#00a6a6",name:"MAXScript",extensions:[".ms",".mcr"]},MDX:{color:"#fcb32c",name:"MDX",extensions:[".mdx"],wrap:!0},MLIR:{color:"#5EC8DB",name:"MLIR",extensions:[".mlir"]},MQL4:{color:"#62A8D6",name:"MQL4",extensions:[".mq4",".mqh"]},MQL5:{color:"#4A76B8",name:"MQL5",extensions:[".mq5",".mqh"]},MTML:{color:"#b7e1f4",name:"MTML",extensions:[".mtml"]},MUF:{name:"MUF",extensions:[".muf",".m"]},MACAULAY2:{color:"#d8ffff",name:"Macaulay2",extensions:[".m2"]},MAKEFILE:{color:"#427819",name:"Makefile",extensions:[".mak",".d",".make",".makefile",".mk",".mkfile"]},MAKO:{color:"#7e858d",name:"Mako",extensions:[".mako",".mao"]},MARKDOWN:{color:"#083fa1",name:"Markdown",extensions:[".md",".livemd",".markdown",".mdown",".mdwn",".mkd",".mkdn",".mkdown",".ronn",".scd",".workbook"],wrap:!0},MARKO:{color:"#42bff2",name:"Marko",extensions:[".marko"]},MASK:{color:"#f97732",name:"Mask",extensions:[".mask"]},MATHEMATICA:{color:"#dd1100",name:"Mathematica",extensions:[".mathematica",".cdf",".m",".ma",".mt",".nb",".nbp",".wl",".wlt"]},"MAVEN POM":{name:"Maven POM"},MAX:{color:"#c4a79c",name:"Max",extensions:[".maxpat",".maxhelp",".maxproj",".mxt",".pat"]},MERCURY:{color:"#ff2b2b",name:"Mercury",extensions:[".m",".moo"]},MERMAID:{color:"#ff3670",name:"Mermaid",extensions:[".mmd",".mermaid"]},MESON:{color:"#007800",name:"Meson"},METAL:{color:"#8f14e9",name:"Metal",extensions:[".metal"]},"MICROSOFT DEVELOPER STUDIO PROJECT":{name:"Microsoft Developer Studio Project",extensions:[".dsp"]},"MICROSOFT VISUAL STUDIO SOLUTION":{name:"Microsoft Visual Studio Solution",extensions:[".sln"]},MINID:{name:"MiniD",extensions:[".minid"]},MINIYAML:{color:"#ff1111",name:"MiniYAML",extensions:[".yaml",".yml"]},MINIZINC:{color:"#06a9e6",name:"MiniZinc",extensions:[".mzn"]},"MINIZINC DATA":{name:"MiniZinc Data",extensions:[".dzn"]},MINT:{color:"#02b046",name:"Mint",extensions:[".mint"]},MIRAH:{color:"#c7a938",name:"Mirah",extensions:[".druby",".duby",".mirah"]},MODELICA:{color:"#de1d31",name:"Modelica",extensions:[".mo"]},"MODULA-2":{color:"#10253f",name:"Modula-2",extensions:[".mod"]},"MODULA-3":{color:"#223388",name:"Modula-3",extensions:[".i3",".ig",".m3",".mg"]},"MODULE MANAGEMENT SYSTEM":{name:"Module Management System",extensions:[".mms",".mmk"]},MOJO:{color:"#ff4c1f",name:"Mojo",extensions:[".mojo"]},MONKEY:{name:"Monkey",extensions:[".monkey",".monkey2"]},"MONKEY C":{color:"#8D6747",name:"Monkey C",extensions:[".mc"]},MOOCODE:{name:"Moocode",extensions:[".moo"]},MOONBIT:{color:"#b92381",name:"MoonBit",extensions:[".mbt"]},MOONSCRIPT:{color:"#ff4585",name:"MoonScript",extensions:[".moon"]},MOTOKO:{color:"#fbb03b",name:"Motoko",extensions:[".mo"]},"MOTOROLA 68K ASSEMBLY":{color:"#005daa",name:"Motorola 68K Assembly",extensions:[".asm",".i",".inc",".s",".x68"]},MOVE:{color:"#4a137a",name:"Move",extensions:[".move"]},MUSE:{name:"Muse",extensions:[".muse"],wrap:!0},MUSTACHE:{color:"#724b3b",name:"Mustache",extensions:[".mustache"]},MYGHTY:{name:"Myghty",extensions:[".myt"]},NASL:{name:"NASL",extensions:[".nasl",".inc"]},NCL:{color:"#28431f",name:"NCL",extensions:[".ncl"]},NEON:{name:"NEON",extensions:[".neon"]},NL:{name:"NL",extensions:[".nl"]},NMODL:{color:"#00356B",name:"NMODL",extensions:[".mod"]},"NPM CONFIG":{color:"#cb3837",name:"NPM Config"},NSIS:{name:"NSIS",extensions:[".nsi",".nsh"]},NWSCRIPT:{color:"#111522",name:"NWScript",extensions:[".nss"]},NASAL:{color:"#1d2c4e",name:"Nasal",extensions:[".nas"]},NEARLEY:{color:"#990000",name:"Nearley",extensions:[".ne",".nearley"]},NEMERLE:{color:"#3d3c6e",name:"Nemerle",extensions:[".n"]},NETLINX:{color:"#0aa0ff",name:"NetLinx",extensions:[".axs",".axi"]},"NETLINX+ERB":{color:"#747faa",name:"NetLinx+ERB",extensions:[".axs.erb",".axi.erb"]},NETLOGO:{color:"#ff6375",name:"NetLogo",extensions:[".nlogo"]},NEWLISP:{color:"#87AED7",name:"NewLisp",extensions:[".nl",".lisp",".lsp"]},NEXTFLOW:{color:"#3ac486",name:"Nextflow",extensions:[".nf"]},NGINX:{color:"#009639",name:"Nginx",extensions:[".nginx",".nginxconf",".vhost"]},NICKEL:{color:"#E0C3FC",name:"Nickel",extensions:[".ncl"]},NIM:{color:"#ffc200",name:"Nim",extensions:[".nim",".nim.cfg",".nimble",".nimrod",".nims"]},NINJA:{name:"Ninja",extensions:[".ninja"]},NIT:{color:"#009917",name:"Nit",extensions:[".nit"]},NIX:{color:"#7e7eff",name:"Nix",extensions:[".nix"]},NOIR:{color:"#2f1f49",name:"Noir",extensions:[".nr"]},NU:{color:"#c9df40",name:"Nu",extensions:[".nu"]},NUMPY:{color:"#9C8AF9",name:"NumPy",extensions:[".numpy",".numpyw",".numsc"]},NUNJUCKS:{color:"#3d8137",name:"Nunjucks",extensions:[".njk"]},NUSHELL:{color:"#4E9906",name:"Nushell",extensions:[".nu"]},"OASV2-JSON":{color:"#85ea2d",name:"OASv2-json",extensions:[".json"]},"OASV2-YAML":{color:"#85ea2d",name:"OASv2-yaml",extensions:[".yaml",".yml"]},"OASV3-JSON":{color:"#85ea2d",name:"OASv3-json",extensions:[".json"]},"OASV3-YAML":{color:"#85ea2d",name:"OASv3-yaml",extensions:[".yaml",".yml"]},OCAML:{color:"#ef7a08",name:"OCaml",extensions:[".ml",".eliom",".eliomi",".ml4",".mli",".mll",".mly"]},"OMNET++ MSG":{color:"#a0e0a0",name:"OMNeT++ MSG",extensions:[".msg"]},"OMNET++ NED":{color:"#08607c",name:"OMNeT++ NED",extensions:[".ned"]},OBERON:{name:"Oberon",extensions:[".ob2"]},OBJDUMP:{name:"ObjDump",extensions:[".objdump"]},"OBJECT DATA INSTANCE NOTATION":{name:"Object Data Instance Notation",extensions:[".odin"]},OBJECTSCRIPT:{color:"#424893",name:"ObjectScript",extensions:[".cls"]},"OBJECTIVE-C":{color:"#438eff",name:"Objective-C",extensions:[".m",".h"]},"OBJECTIVE-C++":{color:"#6866fb",name:"Objective-C++",extensions:[".mm"]},"OBJECTIVE-J":{color:"#ff0c5a",name:"Objective-J",extensions:[".j",".sj"]},ODIN:{color:"#60AFFE",name:"Odin",extensions:[".odin"]},OMGROFL:{color:"#cabbff",name:"Omgrofl",extensions:[".omgrofl"]},OPA:{name:"Opa",extensions:[".opa"]},OPAL:{color:"#f7ede0",name:"Opal",extensions:[".opal"]},"OPEN POLICY AGENT":{color:"#7d9199",name:"Open Policy Agent",extensions:[".rego"]},"OPENAPI SPECIFICATION V2":{color:"#85ea2d",name:"OpenAPI Specification v2"},"OPENAPI SPECIFICATION V3":{color:"#85ea2d",name:"OpenAPI Specification v3"},OPENCL:{color:"#ed2e2d",name:"OpenCL",extensions:[".cl",".opencl"]},"OPENEDGE ABL":{color:"#5ce600",name:"OpenEdge ABL",extensions:[".p",".cls",".w"]},OPENQASM:{color:"#AA70FF",name:"OpenQASM",extensions:[".qasm"]},"OPENRC RUNSCRIPT":{name:"OpenRC runscript"},OPENSCAD:{color:"#e5cd45",name:"OpenSCAD",extensions:[".scad"]},"OPENSTEP PROPERTY LIST":{name:"OpenStep Property List",extensions:[".plist",".glyphs"]},"OPENTYPE FEATURE FILE":{name:"OpenType Feature File",extensions:[".fea"]},"OPTION LIST":{color:"#476732",name:"Option List"},ORG:{color:"#77aa99",name:"Org",extensions:[".org"],wrap:!0},OVERPASSQL:{color:"#cce2aa",name:"OverpassQL",extensions:[".overpassql"],wrap:!0},OX:{name:"Ox",extensions:[".ox",".oxh",".oxo"]},OXYGENE:{color:"#cdd0e3",name:"Oxygene",extensions:[".oxygene"]},OZ:{color:"#fab738",name:"Oz",extensions:[".oz"]},P4:{color:"#7055b5",name:"P4",extensions:[".p4"]},PDDL:{color:"#0d00ff",name:"PDDL",extensions:[".pddl"]},"PEG.JS":{color:"#234d6b",name:"PEG.js",extensions:[".pegjs",".peggy"]},PHP:{color:"#4F5D95",name:"PHP",extensions:[".php",".aw",".ctp",".fcgi",".inc",".php3",".php4",".php5",".phps",".phpt"]},PLSQL:{color:"#dad8d8",name:"PLSQL",extensions:[".pls",".bdy",".ddl",".fnc",".pck",".pkb",".pks",".plb",".plsql",".prc",".spc",".sql",".tpb",".tps",".trg",".vw"]},PLPGSQL:{color:"#336790",name:"PLpgSQL",extensions:[".pgsql",".sql"]},"POV-RAY SDL":{color:"#6bac65",name:"POV-Ray SDL",extensions:[".pov",".inc"]},PACT:{color:"#F7A8B8",name:"Pact",extensions:[".pact"]},PAN:{color:"#cc0000",name:"Pan",extensions:[".pan"]},PAPYRUS:{color:"#6600cc",name:"Papyrus",extensions:[".psc"]},PARROT:{color:"#f3ca0a",name:"Parrot",extensions:[".parrot"]},"PARROT ASSEMBLY":{name:"Parrot Assembly",extensions:[".pasm"]},"PARROT INTERNAL REPRESENTATION":{name:"Parrot Internal Representation",extensions:[".pir"]},PASCAL:{color:"#E3F171",name:"Pascal",extensions:[".pas",".dfm",".dpr",".inc",".lpr",".pascal",".pp"]},PAWN:{color:"#dbb284",name:"Pawn",extensions:[".pwn",".inc",".sma"]},PEP8:{color:"#C76F5B",name:"Pep8",extensions:[".pep"]},PERL:{color:"#0298c3",name:"Perl",extensions:[".pl",".al",".cgi",".fcgi",".perl",".ph",".plx",".pm",".psgi",".t"]},PIC:{name:"Pic",extensions:[".pic",".chem"]},PICKLE:{name:"Pickle",extensions:[".pkl"]},PICOLISP:{color:"#6067af",name:"PicoLisp",extensions:[".l"]},PIGLATIN:{color:"#fcd7de",name:"PigLatin",extensions:[".pig"]},PIKE:{color:"#005390",name:"Pike",extensions:[".pike",".pmod"]},"PIP REQUIREMENTS":{color:"#FFD343",name:"Pip Requirements"},PKL:{color:"#6b9543",name:"Pkl",extensions:[".pkl"]},PLANTUML:{color:"#fbbd16",name:"PlantUML",extensions:[".puml",".iuml",".plantuml"]},POD:{name:"Pod",extensions:[".pod"],wrap:!0},"POD 6":{name:"Pod 6",extensions:[".pod",".pod6"],wrap:!0},POGOSCRIPT:{color:"#d80074",name:"PogoScript",extensions:[".pogo"]},POLAR:{color:"#ae81ff",name:"Polar",extensions:[".polar"]},PONY:{name:"Pony",extensions:[".pony"]},PORTUGOL:{color:"#f8bd00",name:"Portugol",extensions:[".por"]},POSTCSS:{color:"#dc3a0c",name:"PostCSS",extensions:[".pcss",".postcss"]},POSTSCRIPT:{color:"#da291c",name:"PostScript",extensions:[".ps",".eps",".epsi",".pfa"]},POWERBUILDER:{color:"#8f0f8d",name:"PowerBuilder",extensions:[".pbt",".sra",".sru",".srw"]},POWERSHELL:{color:"#012456",name:"PowerShell",extensions:[".ps1",".psd1",".psm1"]},PRAAT:{color:"#c8506d",name:"Praat",extensions:[".praat"]},PRISMA:{color:"#0c344b",name:"Prisma",extensions:[".prisma"]},PROCESSING:{color:"#0096D8",name:"Processing",extensions:[".pde"]},PROCFILE:{color:"#3B2F63",name:"Procfile"},PROGUARD:{name:"Proguard",extensions:[".pro"]},PROLOG:{color:"#74283c",name:"Prolog",extensions:[".pl",".plt",".pro",".prolog",".yap"]},PROMELA:{color:"#de0000",name:"Promela",extensions:[".pml"]},"PROPELLER SPIN":{color:"#7fa2a7",name:"Propeller Spin",extensions:[".spin"]},"PROTOCOL BUFFER":{name:"Protocol Buffer",extensions:[".proto"]},"PROTOCOL BUFFER TEXT FORMAT":{name:"Protocol Buffer Text Format",extensions:[".textproto",".pbt",".pbtxt"]},"PUBLIC KEY":{name:"Public Key",extensions:[".asc",".pub"]},PUG:{color:"#a86454",name:"Pug",extensions:[".jade",".pug"]},PUPPET:{color:"#302B6D",name:"Puppet",extensions:[".pp"]},"PURE DATA":{name:"Pure Data",extensions:[".pd"]},PUREBASIC:{color:"#5a6986",name:"PureBasic",extensions:[".pb",".pbi"]},PURESCRIPT:{color:"#1D222D",name:"PureScript",extensions:[".purs"]},PYRET:{color:"#ee1e10",name:"Pyret",extensions:[".arr"]},PYTHON:{color:"#3572A5",name:"Python",extensions:[".py",".cgi",".fcgi",".gyp",".gypi",".lmi",".py3",".pyde",".pyi",".pyp",".pyt",".pyw",".rpy",".spec",".tac",".wsgi",".xpy"]},"PYTHON CONSOLE":{color:"#3572A5",name:"Python console"},"PYTHON TRACEBACK":{color:"#3572A5",name:"Python traceback",extensions:[".pytb"]},"Q#":{color:"#fed659",name:"Q#",extensions:[".qs"]},QML:{color:"#44a51c",name:"QML",extensions:[".qml",".qbs"]},QMAKE:{name:"QMake",extensions:[".pro",".pri"]},"QT SCRIPT":{color:"#00b841",name:"Qt Script",extensions:[".qs"]},QUAKE:{color:"#882233",name:"Quake"},QUICKBASIC:{color:"#008080",name:"QuickBASIC",extensions:[".bas"]},R:{color:"#198CE7",name:"R",extensions:[".r",".rd",".rsx"]},RAML:{color:"#77d9fb",name:"RAML",extensions:[".raml"]},RBS:{color:"#701516",name:"RBS",extensions:[".rbs"]},RDOC:{color:"#701516",name:"RDoc",extensions:[".rdoc"],wrap:!0},REALBASIC:{name:"REALbasic",extensions:[".rbbas",".rbfrm",".rbmnu",".rbres",".rbtbar",".rbuistate"]},REXX:{color:"#d90e09",name:"REXX",extensions:[".rexx",".pprx",".rex"]},RMARKDOWN:{color:"#198ce7",name:"RMarkdown",extensions:[".qmd",".rmd"],wrap:!0},RON:{color:"#a62c00",name:"RON",extensions:[".ron"]},RPC:{name:"RPC",extensions:[".x"]},RPGLE:{color:"#2BDE21",name:"RPGLE",extensions:[".rpgle",".sqlrpgle"]},"RPM SPEC":{name:"RPM Spec",extensions:[".spec"]},RUNOFF:{color:"#665a4e",name:"RUNOFF",extensions:[".rnh",".rno"],wrap:!0},RACKET:{color:"#3c5caa",name:"Racket",extensions:[".rkt",".rktd",".rktl",".scrbl"]},RAGEL:{color:"#9d5200",name:"Ragel",extensions:[".rl"]},RAKU:{color:"#0000fb",name:"Raku",extensions:[".6pl",".6pm",".nqp",".p6",".p6l",".p6m",".pl",".pl6",".pm",".pm6",".raku",".rakumod",".t"]},RASCAL:{color:"#fffaa0",name:"Rascal",extensions:[".rsc"]},"RAW TOKEN DATA":{name:"Raw token data",extensions:[".raw"]},RESCRIPT:{color:"#ed5051",name:"ReScript",extensions:[".res",".resi"]},"READLINE CONFIG":{name:"Readline Config"},REASON:{color:"#ff5847",name:"Reason",extensions:[".re",".rei"]},REASONLIGO:{color:"#ff5847",name:"ReasonLIGO",extensions:[".religo"]},REBOL:{color:"#358a5b",name:"Rebol",extensions:[".reb",".r",".r2",".r3",".rebol"]},"RECORD JAR":{color:"#0673ba",name:"Record Jar"},RED:{color:"#f50000",name:"Red",extensions:[".red",".reds"]},REDCODE:{name:"Redcode",extensions:[".cw"]},"REDIRECT RULES":{name:"Redirect Rules"},"REGULAR EXPRESSION":{color:"#009a00",name:"Regular Expression",extensions:[".regexp",".regex"]},"REN'PY":{color:"#ff7f7f",name:"Ren'Py",extensions:[".rpy"]},RENDERSCRIPT:{name:"RenderScript",extensions:[".rs",".rsh"]},REZ:{color:"#FFDAB3",name:"Rez",extensions:[".r"]},"RICH TEXT FORMAT":{name:"Rich Text Format",extensions:[".rtf"]},RING:{color:"#2D54CB",name:"Ring",extensions:[".ring"]},RIOT:{color:"#A71E49",name:"Riot",extensions:[".riot"]},ROBOTFRAMEWORK:{color:"#00c0b5",name:"RobotFramework",extensions:[".robot",".resource"]},ROC:{color:"#7c38f5",name:"Roc",extensions:[".roc"]},"ROCQ PROVER":{color:"#d0b68c",name:"Rocq Prover",extensions:[".v",".coq"]},ROFF:{color:"#ecdebe",name:"Roff",extensions:[".roff",".1",".1in",".1m",".1x",".2",".3",".3in",".3m",".3p",".3pm",".3qt",".3x",".4",".5",".6",".7",".8",".9",".l",".man",".mdoc",".me",".ms",".n",".nr",".rno",".tmac"],wrap:!0},"ROFF MANPAGE":{color:"#ecdebe",name:"Roff Manpage",extensions:[".1",".1in",".1m",".1x",".2",".3",".3in",".3m",".3p",".3pm",".3qt",".3x",".4",".5",".6",".7",".8",".9",".man",".mdoc"],wrap:!0},ROUGE:{color:"#cc0088",name:"Rouge",extensions:[".rg"]},"ROUTEROS SCRIPT":{color:"#DE3941",name:"RouterOS Script",extensions:[".rsc"]},RUBY:{color:"#701516",name:"Ruby",extensions:[".rb",".builder",".eye",".fcgi",".gemspec",".god",".jbuilder",".mspec",".pluginspec",".podspec",".prawn",".rabl",".rake",".rbi",".rbuild",".rbw",".rbx",".ru",".ruby",".spec",".thor",".watchr"]},RUST:{color:"#dea584",name:"Rust",extensions:[".rs",".rs.in"]},SAS:{color:"#B34936",name:"SAS",extensions:[".sas"]},SCSS:{color:"#c6538c",name:"SCSS",extensions:[".scss"]},"SELINUX POLICY":{name:"SELinux Policy",extensions:[".te"]},SMT:{name:"SMT",extensions:[".smt2",".smt",".z3"]},SPARQL:{color:"#0C4597",name:"SPARQL",extensions:[".sparql",".rq"]},SQF:{color:"#3F3F3F",name:"SQF",extensions:[".sqf",".hqf"]},SQL:{color:"#e38c00",name:"SQL",extensions:[".sql",".cql",".ddl",".inc",".mysql",".prc",".tab",".udf",".viw"]},SQLPL:{color:"#e38c00",name:"SQLPL",extensions:[".sql",".db2"]},"SRECODE TEMPLATE":{color:"#348a34",name:"SRecode Template",extensions:[".srt"]},"SSH CONFIG":{name:"SSH Config"},STAR:{name:"STAR",extensions:[".star"]},STL:{color:"#373b5e",name:"STL",extensions:[".stl"]},STON:{name:"STON",extensions:[".ston"]},SVG:{color:"#ff9900",name:"SVG",extensions:[".svg"]},SWIG:{name:"SWIG",extensions:[".i",".swg",".swig"]},SAGE:{name:"Sage",extensions:[".sage",".sagews"]},SAIL:{color:"#259dd5",name:"Sail",extensions:[".sail"]},SALTSTACK:{color:"#646464",name:"SaltStack",extensions:[".sls"]},SASS:{color:"#a53b70",name:"Sass",extensions:[".sass"]},SCALA:{color:"#c22d40",name:"Scala",extensions:[".scala",".kojo",".sbt",".sc"]},SCAML:{color:"#bd181a",name:"Scaml",extensions:[".scaml"]},SCENIC:{color:"#fdc700",name:"Scenic",extensions:[".scenic"]},SCHEME:{color:"#1e4aec",name:"Scheme",extensions:[".scm",".sch",".sld",".sls",".sps",".ss"]},SCILAB:{color:"#ca0f21",name:"Scilab",extensions:[".sci",".sce",".tst"]},SELF:{color:"#0579aa",name:"Self",extensions:[".self"]},SHADERLAB:{color:"#222c37",name:"ShaderLab",extensions:[".shader"]},SHELL:{color:"#89e051",name:"Shell",extensions:[".sh",".bash",".bats",".cgi",".command",".fcgi",".ksh",".sh.in",".tmux",".tool",".trigger",".zsh",".zsh-theme"]},"SHELLCHECK CONFIG":{color:"#cecfcb",name:"ShellCheck Config"},SHELLSESSION:{name:"ShellSession",extensions:[".sh-session"]},SHEN:{color:"#120F14",name:"Shen",extensions:[".shen"]},SIEVE:{name:"Sieve",extensions:[".sieve"]},"SIMPLE FILE VERIFICATION":{color:"#C9BFED",name:"Simple File Verification",extensions:[".sfv"]},SINGULARITY:{color:"#64E6AD",name:"Singularity"},SLANG:{color:"#1fbec9",name:"Slang",extensions:[".slang"]},SLASH:{color:"#007eff",name:"Slash",extensions:[".sl"]},SLICE:{color:"#003fa2",name:"Slice",extensions:[".ice"]},SLIM:{color:"#2b2b2b",name:"Slim",extensions:[".slim"]},SLINT:{color:"#2379F4",name:"Slint",extensions:[".slint"]},SMPL:{color:"#c94949",name:"SmPL",extensions:[".cocci"]},SMALI:{name:"Smali",extensions:[".smali"]},SMALLTALK:{color:"#596706",name:"Smalltalk",extensions:[".st",".cs"]},SMARTY:{color:"#f0c040",name:"Smarty",extensions:[".tpl"]},SMITHY:{color:"#c44536",name:"Smithy",extensions:[".smithy"]},SNAKEMAKE:{color:"#419179",name:"Snakemake",extensions:[".smk",".snakefile"]},SOLIDITY:{color:"#AA6746",name:"Solidity",extensions:[".sol"]},SOONG:{name:"Soong"},SOURCEPAWN:{color:"#f69e1d",name:"SourcePawn",extensions:[".sp",".inc"]},"SPLINE FONT DATABASE":{name:"Spline Font Database",extensions:[".sfd"]},SQUIRREL:{color:"#800000",name:"Squirrel",extensions:[".nut"]},STAN:{color:"#b2011d",name:"Stan",extensions:[".stan"]},"STANDARD ML":{color:"#dc566d",name:"Standard ML",extensions:[".ml",".fun",".sig",".sml"]},STARLARK:{color:"#76d275",name:"Starlark",extensions:[".bzl",".star"]},STATA:{color:"#1a5f91",name:"Stata",extensions:[".do",".ado",".doh",".ihlp",".mata",".matah",".sthlp"]},STRINGTEMPLATE:{color:"#3fb34f",name:"StringTemplate",extensions:[".st"]},STYLUS:{color:"#ff6347",name:"Stylus",extensions:[".styl"]},"SUBRIP TEXT":{color:"#9e0101",name:"SubRip Text",extensions:[".srt"]},SUGARSS:{color:"#2fcc9f",name:"SugarSS",extensions:[".sss"]},SUPERCOLLIDER:{color:"#46390b",name:"SuperCollider",extensions:[".sc",".scd"]},"SURVEX DATA":{color:"#ffcc99",name:"Survex data",extensions:[".svx"]},SVELTE:{color:"#ff3e00",name:"Svelte",extensions:[".svelte"]},SWAY:{color:"#00F58C",name:"Sway",extensions:[".sw"]},SWEAVE:{color:"#198ce7",name:"Sweave",extensions:[".rnw"]},SWIFT:{color:"#F05138",name:"Swift",extensions:[".swift"]},SYSTEMVERILOG:{color:"#DAE1C2",name:"SystemVerilog",extensions:[".sv",".svh",".vh"]},"TI PROGRAM":{color:"#A0AA87",name:"TI Program",extensions:[".8xp",".8xp.txt"]},"TL-VERILOG":{color:"#C40023",name:"TL-Verilog",extensions:[".tlv"]},TLA:{color:"#4b0079",name:"TLA",extensions:[".tla"]},TOML:{color:"#9c4221",name:"TOML",extensions:[".toml"]},"TSPLIB DATA":{name:"TSPLIB data",extensions:[".tsp"]},TSQL:{color:"#e38c00",name:"TSQL",extensions:[".sql"]},TSV:{color:"#237346",name:"TSV",extensions:[".tsv",".vcf"]},TSX:{color:"#3178c6",name:"TSX",extensions:[".tsx"]},TXL:{color:"#0178b8",name:"TXL",extensions:[".txl"]},TACT:{color:"#48b5ff",name:"Tact",extensions:[".tact"]},TALON:{color:"#333333",name:"Talon",extensions:[".talon"]},TCL:{color:"#e4cc98",name:"Tcl",extensions:[".tcl",".adp",".sdc",".tcl.in",".tm",".xdc"]},TCSH:{name:"Tcsh",extensions:[".tcsh",".csh"]},TEX:{color:"#3D6117",name:"TeX",extensions:[".tex",".aux",".bbx",".cbx",".cls",".dtx",".ins",".lbx",".ltx",".mkii",".mkiv",".mkvi",".sty",".toc"],wrap:!0},TEA:{name:"Tea",extensions:[".tea"]},TERRA:{color:"#00004c",name:"Terra",extensions:[".t"]},"TERRAFORM TEMPLATE":{color:"#7b42bb",name:"Terraform Template",extensions:[".tftpl"]},TEXINFO:{name:"Texinfo",extensions:[".texinfo",".texi",".txi"],wrap:!0},TEXT:{name:"Text",extensions:[".txt",".fr",".nb",".ncl",".no"],wrap:!0},TEXTGRID:{color:"#c8506d",name:"TextGrid",extensions:[".TextGrid"]},"TEXTMATE PROPERTIES":{color:"#df66e4",name:"TextMate Properties"},TEXTILE:{color:"#ffe7ac",name:"Textile",extensions:[".textile"],wrap:!0},THRIFT:{color:"#D12127",name:"Thrift",extensions:[".thrift"]},TOIT:{color:"#c2c9fb",name:"Toit",extensions:[".toit"]},"TOR CONFIG":{color:"#59316b",name:"Tor Config"},"TREE-SITTER QUERY":{color:"#8ea64c",name:"Tree-sitter Query",extensions:[".scm"]},TURING:{color:"#cf142b",name:"Turing",extensions:[".t",".tu"]},TURTLE:{name:"Turtle",extensions:[".ttl"]},TWIG:{color:"#c1d026",name:"Twig",extensions:[".twig"]},"TYPE LANGUAGE":{name:"Type Language",extensions:[".tl"]},TYPESCRIPT:{color:"#3178c6",name:"TypeScript",extensions:[".ts",".cts",".mts"]},TYPESPEC:{color:"#4A3665",name:"TypeSpec",extensions:[".tsp"]},TYPST:{color:"#239dad",name:"Typst",extensions:[".typ"]},"UNIFIED PARALLEL C":{color:"#4e3617",name:"Unified Parallel C",extensions:[".upc"]},"UNITY3D ASSET":{color:"#222c37",name:"Unity3D Asset",extensions:[".anim",".asset",".mask",".mat",".meta",".prefab",".unity"]},"UNIX ASSEMBLY":{name:"Unix Assembly",extensions:[".s",".ms"]},UNO:{color:"#9933cc",name:"Uno",extensions:[".uno"]},UNREALSCRIPT:{color:"#a54c4d",name:"UnrealScript",extensions:[".uc"]},"UNTYPED PLUTUS CORE":{color:"#36adbd",name:"Untyped Plutus Core",extensions:[".uplc"]},URWEB:{color:"#ccccee",name:"UrWeb",extensions:[".ur",".urs"]},V:{color:"#4f87c4",name:"V",extensions:[".v"]},VBA:{color:"#867db1",name:"VBA",extensions:[".bas",".cls",".frm",".vba"]},VBSCRIPT:{color:"#15dcdc",name:"VBScript",extensions:[".vbs"]},VCL:{color:"#148AA8",name:"VCL",extensions:[".vcl"]},VHDL:{color:"#adb2cb",name:"VHDL",extensions:[".vhdl",".vhd",".vhf",".vhi",".vho",".vhs",".vht",".vhw"]},VALA:{color:"#a56de2",name:"Vala",extensions:[".vala",".vapi"]},"VALVE DATA FORMAT":{color:"#f26025",name:"Valve Data Format",extensions:[".vdf"]},"VELOCITY TEMPLATE LANGUAGE":{color:"#507cff",name:"Velocity Template Language",extensions:[".vtl"]},VENTO:{color:"#ff0080",name:"Vento",extensions:[".vto"]},VERILOG:{color:"#b2b7f8",name:"Verilog",extensions:[".v",".veo"]},"VIM HELP FILE":{color:"#199f4b",name:"Vim Help File",extensions:[".txt"]},"VIM SCRIPT":{color:"#199f4b",name:"Vim Script",extensions:[".vim",".vba",".vimrc",".vmb"]},"VIM SNIPPET":{color:"#199f4b",name:"Vim Snippet",extensions:[".snip",".snippet",".snippets"]},"VISUAL BASIC .NET":{color:"#945db7",name:"Visual Basic .NET",extensions:[".vb",".vbhtml"]},"VISUAL BASIC 6.0":{color:"#2c6353",name:"Visual Basic 6.0",extensions:[".bas",".cls",".ctl",".Dsr",".frm"]},VOLT:{color:"#1F1F1F",name:"Volt",extensions:[".volt"]},VUE:{color:"#41b883",name:"Vue",extensions:[".vue"]},VYPER:{color:"#9F4CF2",name:"Vyper",extensions:[".vy"]},WDL:{color:"#42f1f4",name:"WDL",extensions:[".wdl"]},WGSL:{color:"#1a5e9a",name:"WGSL",extensions:[".wgsl"]},"WAVEFRONT MATERIAL":{name:"Wavefront Material",extensions:[".mtl"]},"WAVEFRONT OBJECT":{name:"Wavefront Object",extensions:[".obj"]},"WEB ONTOLOGY LANGUAGE":{color:"#5b70bd",name:"Web Ontology Language",extensions:[".owl"]},WEBASSEMBLY:{color:"#04133b",name:"WebAssembly",extensions:[".wast",".wat"]},"WEBASSEMBLY INTERFACE TYPE":{color:"#6250e7",name:"WebAssembly Interface Type",extensions:[".wit"]},WEBIDL:{name:"WebIDL",extensions:[".webidl"]},WEBVTT:{name:"WebVTT",extensions:[".vtt"],wrap:!0},"WGET CONFIG":{name:"Wget Config"},WHILEY:{color:"#d5c397",name:"Whiley",extensions:[".whiley"]},WIKITEXT:{color:"#fc5757",name:"Wikitext",extensions:[".mediawiki",".wiki",".wikitext"],wrap:!0},"WIN32 MESSAGE FILE":{name:"Win32 Message File",extensions:[".mc"]},"WINDOWS REGISTRY ENTRIES":{color:"#52d5ff",name:"Windows Registry Entries",extensions:[".reg"]},"WITCHER SCRIPT":{color:"#ff0000",name:"Witcher Script",extensions:[".ws"]},WOLLOK:{color:"#a23738",name:"Wollok",extensions:[".wlk"]},"WORLD OF WARCRAFT ADDON DATA":{color:"#f7e43f",name:"World of Warcraft Addon Data",extensions:[".toc"]},WREN:{color:"#383838",name:"Wren",extensions:[".wren"]},"X BITMAP":{name:"X BitMap",extensions:[".xbm"]},"X FONT DIRECTORY INDEX":{name:"X Font Directory Index"},"X PIXMAP":{name:"X PixMap",extensions:[".xpm",".pm"]},X10:{color:"#4B6BEF",name:"X10",extensions:[".x10"]},XC:{color:"#99DA07",name:"XC",extensions:[".xc"]},XCOMPOSE:{name:"XCompose"},XML:{color:"#0060ac",name:"XML",extensions:[".xml",".adml",".admx",".ant",".axaml",".axml",".builds",".ccproj",".ccxml",".clixml",".cproject",".cscfg",".csdef",".csl",".csproj",".ct",".depproj",".dita",".ditamap",".ditaval",".dll.config",".dotsettings",".filters",".fsproj",".fxml",".glade",".gml",".gmx",".gpx",".grxml",".gst",".hzp",".iml",".ivy",".jelly",".jsproj",".kml",".launch",".mdpolicy",".mjml",".mm",".mod",".mojo",".mxml",".natvis",".ncl",".ndproj",".nproj",".nuspec",".odd",".osm",".pkgproj",".pluginspec",".proj",".props",".ps1xml",".psc1",".pt",".qhelp",".rdf",".res",".resx",".rs",".rss",".sch",".scxml",".sfproj",".shproj",".slnx",".srdf",".storyboard",".sublime-snippet",".sw",".targets",".tml",".ts",".tsx",".typ",".ui",".urdf",".ux",".vbproj",".vcxproj",".vsixmanifest",".vssettings",".vstemplate",".vxml",".wixproj",".workflow",".wsdl",".wsf",".wxi",".wxl",".wxs",".x3d",".xacro",".xaml",".xib",".xlf",".xliff",".xmi",".xml.dist",".xmp",".xproj",".xsd",".xspec",".xul",".zcml"]},"XML PROPERTY LIST":{color:"#0060ac",name:"XML Property List",extensions:[".plist",".stTheme",".tmCommand",".tmLanguage",".tmPreferences",".tmSnippet",".tmTheme"]},XPAGES:{name:"XPages",extensions:[".xsp-config",".xsp.metadata"]},XPROC:{name:"XProc",extensions:[".xpl",".xproc"]},XQUERY:{color:"#5232e7",name:"XQuery",extensions:[".xquery",".xq",".xql",".xqm",".xqy"]},XS:{name:"XS",extensions:[".xs"]},XSLT:{color:"#EB8CEB",name:"XSLT",extensions:[".xslt",".xsl"]},XMAKE:{color:"#22a079",name:"Xmake"},XOJO:{color:"#81bd41",name:"Xojo",extensions:[".xojo_code",".xojo_menu",".xojo_report",".xojo_script",".xojo_toolbar",".xojo_window"]},XONSH:{color:"#285EEF",name:"Xonsh",extensions:[".xsh"]},XTEND:{color:"#24255d",name:"Xtend",extensions:[".xtend"]},YAML:{color:"#cb171e",name:"YAML",extensions:[".yml",".mir",".reek",".rviz",".sublime-syntax",".syntax",".yaml",".yaml-tmlanguage",".yaml.sed",".yml.mysql"]},YANG:{name:"YANG",extensions:[".yang"]},YARA:{color:"#220000",name:"YARA",extensions:[".yar",".yara"]},YASNIPPET:{color:"#32AB90",name:"YASnippet",extensions:[".yasnippet"]},YACC:{color:"#4B6C4B",name:"Yacc",extensions:[".y",".yacc",".yy"]},YUL:{color:"#794932",name:"Yul",extensions:[".yul"]},ZAP:{color:"#0d665e",name:"ZAP",extensions:[".zap",".xzap"]},ZIL:{color:"#dc75e5",name:"ZIL",extensions:[".zil",".mud"]},ZEEK:{name:"Zeek",extensions:[".zeek",".bro"]},ZENSCRIPT:{color:"#00BCD1",name:"ZenScript",extensions:[".zs"]},ZEPHIR:{color:"#118f9e",name:"Zephir",extensions:[".zep"]},ZIG:{color:"#ec915c",name:"Zig",extensions:[".zig",".zig.zon"]},ZIMPL:{color:"#d67711",name:"Zimpl",extensions:[".zimpl",".zmpl",".zpl"]},ZMODEL:{color:"#ff7100",name:"Zmodel",extensions:[".zmodel"]},"CURL CONFIG":{name:"cURL Config"},CRONTAB:{color:"#ead7ac",name:"crontab"},DESKTOP:{name:"desktop",extensions:[".desktop",".desktop.in",".service"]},DIRCOLORS:{name:"dircolors",extensions:[".dircolors"]},EC:{color:"#913960",name:"eC",extensions:[".ec",".eh"]},EDN:{name:"edn",extensions:[".edn"]},FISH:{color:"#4aae47",name:"fish",extensions:[".fish"]},HOON:{color:"#00b171",name:"hoon",extensions:[".hoon"]},ICALENDAR:{color:"#ec564c",name:"iCalendar",extensions:[".ics",".ical"]},JQ:{color:"#c7254e",name:"jq",extensions:[".jq"]},KVLANG:{color:"#1da6e0",name:"kvlang",extensions:[".kv"]},"MIRC SCRIPT":{color:"#3d57c3",name:"mIRC Script",extensions:[".mrc"]},MCFUNCTION:{color:"#E22837",name:"mcfunction",extensions:[".mcfunction"]},MDSVEX:{color:"#5f9ea0",name:"mdsvex",extensions:[".svx"],wrap:!0},MUPAD:{color:"#244963",name:"mupad",extensions:[".mu"]},NANORC:{color:"#2d004d",name:"nanorc",extensions:[".nanorc"]},NESC:{color:"#94B0C7",name:"nesC",extensions:[".nc"]},OOC:{color:"#b0b77e",name:"ooc",extensions:[".ooc"]},Q:{color:"#0040cd",name:"q",extensions:[".q"]},RESTRUCTUREDTEXT:{color:"#141414",name:"reStructuredText",extensions:[".rst",".rest",".rest.txt",".rst.txt"],wrap:!0},"ROBOTS.TXT":{name:"robots.txt"},SED:{color:"#64b970",name:"sed",extensions:[".sed"]},TEMPL:{color:"#66D0DD",name:"templ",extensions:[".templ"]},VCARD:{color:"#ee2647",name:"vCard",extensions:[".vcf"]},WISP:{color:"#7582D1",name:"wisp",extensions:[".wisp"]},XBASE:{color:"#403a40",name:"xBase",extensions:[".prg",".ch",".prw"]}}},40260:(e,n,o)=>{o.d(n,{D:()=>s});function s(e){let n;if("clipboard"in navigator)return navigator.clipboard.writeText(e);let o=document.body;if(!o)return Promise.reject(Error());let s=((n=document.createElement("pre")).style.width="1px",n.style.height="1px",n.style.position="fixed",n.style.top="5px",n.textContent=e,n);return o.appendChild(s),!function(e){if("clipboard"in navigator)return navigator.clipboard.writeText(e.textContent||"");let n=getSelection();if(null==n)return Promise.reject(Error());n.removeAllRanges();let o=document.createRange();o.selectNodeContents(e),n.addRange(o),document.execCommand("copy"),n.removeAllRanges(),Promise.resolve()}(s),o.removeChild(s),Promise.resolve()}},98755:(e,n,o)=>{o.d(n,{T:()=>p});var s=o(74848),a=o(16522),t=o(70263),i=o(38621),c=o(26108),l=o(74753),r=o(96540),m=o(34164),x=o(12683),E=o(40260),A=o(62916);function p(e){let n,o,p,S,L,d,C,T,O,f,R,I,b,P,N=(0,a.c)(33);N[0]!==e?({icon:d,size:C,onCopy:L,textToCopy:O,tooltipProps:f,variant:T,ariaLabel:n,className:o,disabled:p,...S}=e,N[0]=e,N[1]=n,N[2]=o,N[3]=p,N[4]=S,N[5]=L,N[6]=d,N[7]=C,N[8]=T,N[9]=O,N[10]=f):(n=N[1],o=N[2],p=N[3],S=N[4],L=N[5],d=N[6],C=N[7],T=N[8],O=N[9],f=N[10]);let M=void 0===d?i.CopyIcon:d,D=void 0===C?"medium":C,g=void 0===T?"invisible":T,[u,F]=r.useState(!1),h=(0,t.A)();N[11]!==h||N[12]!==L||N[13]!==O?(R=()=>{F(!0),(0,E.D)(O),L?.(),setTimeout(()=>h()&&F(!1),2e3)},N[11]=h,N[12]=L,N[13]=O,N[14]=R):R=N[14];let B=R,G=n??`Copy "${O}" to clipboard`,y=u?"Copied!":G,k=u?i.CheckIcon:M,U=u?"color-fg-success":void 0;N[15]!==o||N[16]!==U?(I=(0,m.$)(U,o),N[15]=o,N[16]=U,N[17]=I):I=N[17],N[18]!==S||N[19]!==B||N[20]!==D||N[21]!==k||N[22]!==I||N[23]!==g?(b={size:D,variant:g,onClick:B,icon:k,className:I,...S},N[18]=S,N[19]=B,N[20]=D,N[21]=k,N[22]=I,N[23]=g,N[24]=b):b=N[24];let v=b,j=(0,r.useId)();return N[25]!==u||N[26]!==p||N[27]!==G||N[28]!==v||N[29]!==j||N[30]!==f||N[31]!==y?(P=p?(0,s.jsx)(c.K,{...v,"aria-label":G,disabled:!0}):(0,s.jsxs)(s.Fragment,{children:[u&&(0,s.jsx)(l.s,{children:(0,s.jsx)(A.e,{children:"Copied!"})}),(0,s.jsx)(x.m_,{text:y,"aria-label":G,type:"label",id:j,"aria-hidden":!0,...f,className:(0,m.$)("CopyToClipboardButton-module__tooltip--HDUYz",f?.className),children:(0,s.jsx)(c.K,{...v,"aria-labelledby":j})})]}),N[25]=u,N[26]=p,N[27]=G,N[28]=v,N[29]=j,N[30]=f,N[31]=y,N[32]=P):P=N[32],P}try{p.displayName||(p.displayName="CopyToClipboardButton")}catch{}}}]); +//# sourceMappingURL=29665-9ec537456ca6.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/3042-4e8e39856f05.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/3042-4e8e39856f05.js" new file mode 100644 index 0000000..2a7d59e --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/3042-4e8e39856f05.js" @@ -0,0 +1,261 @@ +performance.mark("js-parse-end:3042-4e8e39856f05.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[3042,91707],{14940:(e,t,i)=>{function r(e){if("clipboard"in navigator)return navigator.clipboard.writeText(e.textContent||"");let t=getSelection();if(null==t)return Promise.reject(Error());t.removeAllRanges();let i=document.createRange();return i.selectNodeContents(e),t.addRange(i),document.execCommand("copy"),t.removeAllRanges(),Promise.resolve()}function n(e){let t;if("clipboard"in navigator)return navigator.clipboard.writeText(e);let i=document.body;if(!i)return Promise.reject(Error());let n=((t=document.createElement("pre")).style.width="1px",t.style.height="1px",t.style.position="fixed",t.style.top="5px",t.textContent=e,t);return i.appendChild(n),r(n),i.removeChild(n),Promise.resolve()}async function o(e){let t=e.getAttribute("for"),i=e.getAttribute("value");function o(){e.dispatchEvent(new CustomEvent("clipboard-copy",{bubbles:!0}))}if("true"!==e.getAttribute("aria-disabled")){if(i)await n(i),o();else if(t){var s;let i="getRootNode"in Element.prototype?e.getRootNode():e.ownerDocument;if(!(i instanceof Document||"ShadowRoot"in window&&i instanceof ShadowRoot))return;let a=i.getElementById(t);a&&(await ((s=a)instanceof HTMLInputElement||s instanceof HTMLTextAreaElement?n(s.value):s instanceof HTMLAnchorElement&&s.hasAttribute("href")?n(s.href):r(s)),o())}}}function s(e){let t=e.currentTarget;t instanceof HTMLElement&&o(t)}function a(e){if(" "===e.key||"Enter"===e.key){let t=e.currentTarget;t instanceof HTMLElement&&(e.preventDefault(),o(t))}}function l(e){e.currentTarget.addEventListener("keydown",a)}function c(e){e.currentTarget.removeEventListener("keydown",a)}i.d(t,{S:()=>clipboard_copy_element_ClipboardCopyElement});let clipboard_copy_element_ClipboardCopyElement=class clipboard_copy_element_ClipboardCopyElement extends HTMLElement{static define(e="clipboard-copy",t=customElements){return t.define(e,this),this}constructor(){super(),this.addEventListener("click",s),this.addEventListener("focus",l),this.addEventListener("blur",c)}connectedCallback(){this.hasAttribute("tabindex")||this.setAttribute("tabindex","0"),this.hasAttribute("role")||this.setAttribute("role","button")}get value(){return this.getAttribute("value")||""}set value(e){this.setAttribute("value",e)}};let h="u">typeof globalThis?globalThis:window;try{h.ClipboardCopyElement=clipboard_copy_element_ClipboardCopyElement.define()}catch(e){if(!(h.DOMException&&e instanceof DOMException&&"NotSupportedError"===e.name)&&!(e instanceof ReferenceError))throw e}},20761:(e,t,i)=>{var r,n,o,s=i(70170),a=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)},l=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i};(r=o||(o={})).GET="GET",r.POST="POST";let c=new WeakMap;let AutoCheckEvent=class AutoCheckEvent extends Event{constructor(e){super(`auto-check-${e}`,{bubbles:!0}),this.phase=e}get detail(){return this}};let AutoCheckValidationEvent=class AutoCheckValidationEvent extends AutoCheckEvent{constructor(e,t=""){super(e),this.phase=e,this.message=t,this.setValidity=e=>{this.message=e}}};let AutoCheckCompleteEvent=class AutoCheckCompleteEvent extends AutoCheckEvent{constructor(){super("complete")}};let AutoCheckSuccessEvent=class AutoCheckSuccessEvent extends AutoCheckEvent{constructor(e){super("success"),this.response=e}};let AutoCheckStartEvent=class AutoCheckStartEvent extends AutoCheckValidationEvent{constructor(){super("start","Verifying\u2026")}};let AutoCheckErrorEvent=class AutoCheckErrorEvent extends AutoCheckValidationEvent{constructor(e){super("error","Validation failed"),this.response=e}};let AutoCheckSendEvent=class AutoCheckSendEvent extends AutoCheckEvent{constructor(e){super("send"),this.body=e}};let auto_check_element_AutoCheckElement=class auto_check_element_AutoCheckElement extends HTMLElement{constructor(){super(...arguments),n.set(this,null)}static define(e="auto-check",t=customElements){return t.define(e,this),this}get onloadend(){return a(this,n,"f")}set onloadend(e){a(this,n,"f")&&this.removeEventListener("loadend",a(this,n,"f")),l(this,n,"object"==typeof e||"function"==typeof e?e:null,"f"),"function"==typeof e&&this.addEventListener("loadend",e)}connectedCallback(){let e=this.input;if(!e)return;let t=(0,s.s)(f.bind(null,this),300);c.set(this,{check:t,controller:null});let i=h.bind(null,t);e.addEventListener("blur",i),e.addEventListener("input",i),e.addEventListener("triggervalidation",i),e.autocomplete="off",e.spellcheck=!1}disconnectedCallback(){let e=this.input;if(!e)return;let t=c.get(this);t&&(c.delete(this),e.removeEventListener("input",d),e.removeEventListener("input",t.check),e.setCustomValidity(""))}attributeChangedCallback(e){if("required"===e){let e=this.input;e&&(e.required=this.required)}}triggerValidation(){let e=this.input;e&&e.dispatchEvent(new CustomEvent("triggervalidation"))}static get observedAttributes(){return["required"]}get input(){return this.querySelector("input")}get src(){let e=this.getAttribute("src");if(!e)return"";let t=this.ownerDocument.createElement("a");return t.href=e,t.href}set src(e){this.setAttribute("src",e)}get csrf(){let e=this.querySelector("[data-csrf]");return this.getAttribute("csrf")||e instanceof HTMLInputElement&&e.value||""}set csrf(e){this.setAttribute("csrf",e)}get required(){return this.hasAttribute("required")}set required(e){e?this.setAttribute("required",""):this.removeAttribute("required")}get csrfField(){return this.getAttribute("csrf-field")||"authenticity_token"}set csrfField(e){this.setAttribute("csrf-field",e)}get httpMethod(){return o[this.getAttribute("http-method")]||"POST"}set validateOnKeystroke(e){e?this.setAttribute("validate-on-keystroke",""):this.removeAttribute("validate-on-keystroke")}get validateOnKeystroke(){let e=this.getAttribute("validate-on-keystroke");return"true"===e||""===e}};function h(e,t){let i=t.currentTarget;if(!(i instanceof HTMLInputElement))return;let r=i.closest("auto-check");!(r instanceof auto_check_element_AutoCheckElement)||("input"===t.type&&r.setAttribute("dirty",""),0!==i.value.length&&("blur"===t.type&&!r.validateOnKeystroke&&r.hasAttribute("dirty")||"input"===t.type&&r.validateOnKeystroke||"triggervalidation"===t.type)&&(d(t),e()))}function d(e){let t=e.currentTarget;if(!(t instanceof HTMLInputElement))return;let i=t.closest("auto-check");if(!(i instanceof auto_check_element_AutoCheckElement))return;let r=i.src,n=i.csrf,o=i.httpMethod,s=c.get(i);if(!r||"POST"===o&&!n||!s)return;let a=new AutoCheckStartEvent;t.dispatchEvent(a),i.required&&t.setCustomValidity(a.message)}async function u(e,t,i){"GET"===i.method&&delete i.body;try{let r=await fetch(t,i);return e.dispatchEvent(new Event("load")),e.dispatchEvent(new Event("loadend")),r}catch(t){throw"AbortError"!==t.name&&(e.dispatchEvent(new Event("error")),e.dispatchEvent(new Event("loadend"))),t}}async function f(e){let t=e.input;if(!t)return;let i=e.csrfField,r=e.src,n=e.csrf,o=c.get(e),s=e.httpMethod;if(!r||"POST"===s&&!n||!o||!t.value.trim()){e.required&&t.setCustomValidity("");return}let a=new FormData,l=new URL(r,window.location.origin);"POST"===s?(a.append(i,n),a.append("value",t.value)):l.search=new URLSearchParams({value:t.value}).toString(),t.dispatchEvent(new AutoCheckSendEvent(a)),o.controller?o.controller.abort():e.dispatchEvent(new Event("loadstart")),o.controller="AbortController"in window?new AbortController:{signal:null,abort(){}},e.removeAttribute("dirty");try{let i=await u(e,l.toString(),{credentials:"same-origin",signal:o.controller.signal,method:s,body:a});if(i.ok)e.required&&t.setCustomValidity(""),e.validateOnKeystroke=!1,t.dispatchEvent(new AutoCheckSuccessEvent(i.clone()));else{e.validateOnKeystroke=!0;let r=new AutoCheckErrorEvent(i.clone());t.dispatchEvent(r),e.required&&t.setCustomValidity(r.message)}o.controller=null,t.dispatchEvent(new AutoCheckCompleteEvent)}catch(e){"AbortError"!==e.name&&(o.controller=null,t.dispatchEvent(new AutoCheckCompleteEvent))}}n=new WeakMap;let p="u">typeof globalThis?globalThis:window;try{p.AutoCheckElement=auto_check_element_AutoCheckElement.define()}catch(e){if(!(p.DOMException&&e instanceof DOMException&&"NotSupportedError"===e.name)&&!(e instanceof ReferenceError))throw e}},35908:(e,t,i)=>{i.d(t,{A:()=>Combobox});let Combobox=class Combobox{constructor(e,t,{tabInsertsSuggestions:i,firstOptionSelectionMode:r,scrollIntoViewOptions:o}={}){this.input=e,this.list=t,this.tabInsertsSuggestions=null==i||i,this.firstOptionSelectionMode=null!=r?r:"none",this.scrollIntoViewOptions=null!=o?o:{block:"nearest",inline:"nearest"},this.isComposing=!1,t.id||(t.id=`combobox-${Math.random().toString().slice(2,6)}`),this.ctrlBindings=!!navigator.userAgent.match(/Macintosh/),this.keyboardEventHandler=e=>(function(e,t){if(!e.shiftKey&&!e.metaKey&&!e.altKey&&(t.ctrlBindings||!e.ctrlKey)&&!t.isComposing)switch(e.key){case"Enter":n(t.input,t.list)&&e.preventDefault();break;case"Tab":t.tabInsertsSuggestions&&n(t.input,t.list)&&e.preventDefault();break;case"Escape":t.clearSelection();break;case"ArrowDown":t.navigate(1),e.preventDefault();break;case"ArrowUp":t.navigate(-1),e.preventDefault();break;case"n":t.ctrlBindings&&e.ctrlKey&&(t.navigate(1),e.preventDefault());break;case"p":t.ctrlBindings&&e.ctrlKey&&(t.navigate(-1),e.preventDefault());break;default:if(e.ctrlKey)break;t.resetSelection()}})(e,this),this.compositionEventHandler=e=>{var t,i;return t=e,i=this,void(i.isComposing="compositionstart"===t.type,document.getElementById(i.input.getAttribute("aria-controls")||"")&&i.clearSelection())},this.inputHandler=this.clearSelection.bind(this),e.setAttribute("role","combobox"),e.setAttribute("aria-controls",t.id),e.setAttribute("aria-expanded","false"),e.setAttribute("aria-autocomplete","list"),e.setAttribute("aria-haspopup","listbox")}destroy(){this.clearSelection(),this.stop(),this.input.removeAttribute("role"),this.input.removeAttribute("aria-controls"),this.input.removeAttribute("aria-expanded"),this.input.removeAttribute("aria-autocomplete"),this.input.removeAttribute("aria-haspopup")}start(){this.input.setAttribute("aria-expanded","true"),this.input.addEventListener("compositionstart",this.compositionEventHandler),this.input.addEventListener("compositionend",this.compositionEventHandler),this.input.addEventListener("input",this.inputHandler),this.input.addEventListener("keydown",this.keyboardEventHandler),this.list.addEventListener("click",r),this.resetSelection()}stop(){this.clearSelection(),this.input.setAttribute("aria-expanded","false"),this.input.removeEventListener("compositionstart",this.compositionEventHandler),this.input.removeEventListener("compositionend",this.compositionEventHandler),this.input.removeEventListener("input",this.inputHandler),this.input.removeEventListener("keydown",this.keyboardEventHandler),this.list.removeEventListener("click",r)}indicateDefaultOption(){var e;"active"===this.firstOptionSelectionMode?null==(e=Array.from(this.list.querySelectorAll('[role="option"]:not([aria-disabled="true"])')).filter(o)[0])||e.setAttribute("data-combobox-option-default","true"):"selected"===this.firstOptionSelectionMode&&this.navigate(1)}navigate(e=1){let t=Array.from(this.list.querySelectorAll('[aria-selected="true"]')).filter(o)[0],i=Array.from(this.list.querySelectorAll('[role="option"]')).filter(o),r=i.indexOf(t);if(r===i.length-1&&1===e||0===r&&-1===e){this.clearSelection(),this.input.focus();return}let n=1===e?0:i.length-1;if(t&&r>=0){let t=r+e;t>=0&&t0||e.offsetHeight>0)}},44911:()=>{let e="complete"===document.readyState?Promise.resolve():new Promise(e=>{window.addEventListener("load",e)});let TypingEffectElement=class TypingEffectElement extends HTMLElement{async connectedCallback(){await e,this.content&&await t(this.lines,this.content,this.characterDelay,this.lineDelay),this.cursor&&(this.cursor.hidden=!0),this.dispatchEvent(new CustomEvent("typing:complete",{bubbles:!0,cancelable:!0}))}get content(){return this.querySelector('[data-target="typing-effect.content"]')}get cursor(){return this.querySelector('[data-target="typing-effect.cursor"]')}get lines(){let e=this.getAttribute("data-lines");try{return e?JSON.parse(e):[]}catch(e){return[]}}get prefersReducedMotion(){return window.matchMedia("(prefers-reduced-motion)").matches}get characterDelay(){return this.prefersReducedMotion?0:Math.max(0,Math.min(Math.floor(Number(this.getAttribute("data-character-delay"))),0x7fffffff))||40}set characterDelay(e){if(e>0x7fffffff||e<0)throw new DOMException("Value is negative or greater than the allowed amount");this.setAttribute("data-character-delay",String(e))}get lineDelay(){return this.prefersReducedMotion?0:Math.max(0,Math.min(Math.floor(Number(this.getAttribute("data-line-delay"))),0x7fffffff))||40}set lineDelay(e){if(e>0x7fffffff||e<0)throw new DOMException("Value is negative or greater than the allowed amount");this.setAttribute("data-line-delay",String(e))}};async function t(e,t,r,n){for(let o=0;o{setTimeout(t,e)})}window.customElements.get("typing-effect")||(window.TypingEffectElement=TypingEffectElement,window.customElements.define("typing-effect",TypingEffectElement))},58943:(e,t,i)=>{let r;var n,o,s,a,l,c,h,d,u,f,p,m,g,b,v,w,y,E,A,k,L,T,C,x,S,M,I,P,D,O,R,H,q,F,V,j,N,W,_,$,B,z,K,Y,U,X,G,J,Q,Z,ee,et,ei,er,en,eo,es,ea,el,ec,eh,ed,eu,ef,ep,em,eg,eb,ev,ew,ey,eE,eA,ek,eL,eT,eC,ex,eS,eM,eI,eP,eD,eO,eR,eH,eq,eF,eV,ej,eN,eW,e_,e$,eB,ez,eK,eY,eU,eX,eG,eJ,eQ,eZ,e0,e1,e3,e2,e7,e9,e4,e5,e6,e8,te,tt,ti,tr,tn,to,ts,ta,tl,tc,th,td,tu,tf,tp,tm,tg,tb,tv,tw,ty,tE,tA,tk,tL,tT,tC,tx,tS,tM,tI,tP,tD,tO,tR,tH,tq,tF,tV,tj,tN=i(94147);i(27552);var tW=i(39595),t_=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i},t$=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)};let ActionListTruncationObserver=class ActionListTruncationObserver{constructor(e){this.resizeObserver=new ResizeObserver(e=>{for(let t of e){let e=t.target;e instanceof HTMLElement&&this.update(e)}}),this.resizeObserver.observe(e)}unobserve(e){this.resizeObserver.unobserve(e)}update(e){for(let t of e.querySelectorAll("li")){let e=t.querySelector(".ActionListItem-label");if(!e)continue;let i=t.querySelector(".ActionListItem-truncationTooltip");i&&(e.scrollWidth>e.clientWidth?i.style.display="":i.style.display="none")}}};let tB=class ActionListElement extends HTMLElement{constructor(){super(...arguments),a.set(this,void 0)}connectedCallback(){t_(this,a,new ActionListTruncationObserver(this),"f")}disconnectedCallback(){t$(this,a,"f").unobserve(this)}};a=new WeakMap,tB=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s}([tW.p_],tB);var tz=i(97068),tK=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s},tY=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)},tU=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i};let tX=new IntersectionObserver(e=>{for(let t of e){let e=t.target;t.isIntersecting&&e instanceof tJ&&e.update()}}),tG=new ResizeObserver(e=>{for(let t of e){let e=t.target;e instanceof tJ&&e.update()}});(n=m||(m={}))[n.Item=0]="Item",n[n.Divider=1]="Divider";let tJ=class ActionBarElement extends HTMLElement{constructor(){super(...arguments),l.add(this),c.set(this,null)}connectedCallback(){tG.observe(this),tX.observe(this),requestAnimationFrame(()=>{this.style.overflow="visible",this.update()})}disconnectedCallback(){tG.unobserve(this),tX.unobserve(this)}menuItemClick(e){let t=e.currentTarget,i=t?.getAttribute("data-for");i&&document.getElementById(i)?.click()}update(){let e=tY(this,l,"a",h);if(!e)return;let t=e.getBoundingClientRect().top,i=null;tY(this,l,"m",p).call(this,(e,r,n)=>{let o=e.getBoundingClientRect().top;return n===m.Item&&(o>t?(tY(this,l,"m",u).call(this,r),this.moreMenu.hidden&&(this.moreMenu.hidden=!1),i===m.Divider&&tY(this,l,"m",u).call(this,r-1)):(tY(this,l,"m",d).call(this,r),r===this.items.length-1&&(this.moreMenu.hidden=!0),i===m.Divider&&tY(this,l,"m",d).call(this,r-1))),i=n,!0}),tY(this,c,"f")&&tY(this,c,"f").abort(),tU(this,c,(0,tz.zB)(this,{bindKeys:tz.z0.ArrowHorizontal|tz.z0.HomeAndEnd,focusOutBehavior:"wrap",focusableElementFilter:e=>{let t=this.items.indexOf(e.parentElement),i=t>-1&&"visible"===this.items[t].style.visibility,r=e===this.moreMenu.invokerElement&&!this.moreMenu.hidden;return i||r}}),"f")}};c=new WeakMap,l=new WeakSet,h=function(){let e=null;return tY(this,l,"m",p).call(this,(t,i,r)=>r!==m.Item||(e=t,!1)),e},d=function(e){let t=this.items[e],i=tY(this,l,"a",f)[e];t&&i&&(t.style.setProperty("visibility","visible"),i.hidden=!0)},u=function(e){let t=this.items[e],i=tY(this,l,"a",f)[e];t&&i&&(t.style.setProperty("visibility","hidden"),i.hidden=!1)},f=function(){return this.moreMenu.querySelectorAll('[role="menu"] > li')},p=function(e){for(let t=0;t{let e=new Set,t=null,i=null;function r(){for(let t of e)t.update()}return n=>{window.addEventListener("resize",r),window.addEventListener("scroll",r),t||(t=new IntersectionObserver(t=>{for(let i of t){let t=i.target;i.isIntersecting?(t.update(),e.add(t)):e.delete(t)}})),i||(i=new ResizeObserver(()=>{for(let t of e)t.update()})),i.observe(n.ownerDocument.documentElement),t.observe(n)}})();let AnchoredPositionElement=class AnchoredPositionElement extends HTMLElement{constructor(){super(...arguments),g.set(this,null),b.set(this,void 0)}get align(){let e=this.getAttribute("align");return"center"===e||"end"===e?e:"start"}set align(e){this.setAttribute("align",`${e}`)}get side(){let e=this.getAttribute("side");return"inside-top"===e||"inside-bottom"===e||"inside-left"===e||"inside-right"===e||"inside-center"===e||"outside-top"===e||"outside-left"===e||"outside-right"===e?e:"outside-bottom"}set side(e){this.setAttribute("side",`${e}`)}get anchorOffset(){let e=this.getAttribute("anchor-offset");return"spacious"===e||"8"===e?8:4}set anchorOffset(e){this.setAttribute("anchor-offset",`${e}`)}get anchor(){return this.getAttribute("anchor")||""}set anchor(e){this.setAttribute("anchor",`${e}`)}get anchorElement(){if(tQ(this,g,"f"))return tQ(this,g,"f");let e=this.anchor;return e?this.ownerDocument.getElementById(e):null}set anchorElement(e){tZ(this,g,e,"f"),tQ(this,g,"f")||this.removeAttribute("anchor")}get alignmentOffset(){return Number(this.getAttribute("alignment-offset"))}set alignmentOffset(e){this.setAttribute("alignment-offset",`${e}`)}get allowOutOfBounds(){return this.hasAttribute("allow-out-of-bounds")}set allowOutOfBounds(e){this.toggleAttribute("allow-out-of-bounds",e)}connectedCallback(){this.update(),this.addEventListener("beforetoggle",()=>this.update()),t0(this)}attributeChangedCallback(){this.update()}update(){this.isConnected&&(cancelAnimationFrame(tQ(this,b,"f")),tZ(this,b,requestAnimationFrame(()=>{let e=this.anchorElement;if(this.classList.toggle("not-anchored",!e),e){let{left:t,top:i}=(0,tz.uG)(this,e,this);this.style.top=`${i}px`,this.style.left=`${t}px`,this.style.bottom="auto",this.style.right="auto"}else this.style.top="0",this.style.left="0",this.style.bottom="0",this.style.right="0"}),"f"))}};g=new WeakMap,b=new WeakMap,AnchoredPositionElement.observedAttributes=["align","side","anchor","alignment-offset","allow-out-of-bounds"],customElements.get("anchored-position")||(window.AnchoredPositionElement=AnchoredPositionElement,customElements.define("anchored-position",AnchoredPositionElement));var t1=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i},t3=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)};function t2(e){let t=e.target,i=t?.closest("button");if(!i||i.hasAttribute("disabled")||"true"===i.getAttribute("aria-disabled"))return;let r=i?.getAttribute("data-show-dialog-id");if(r){let t=document.getElementById(r);if(t instanceof HTMLDialogElement){t.showModal(),e.preventDefault();let r=i,n=!1;for(;r;)(r=r.parentElement?.closest("[popover]:not(:popover-open)"))&&"auto"===r.popover&&(r.classList.add("dialog-inside-popover-fix"),r.popover="manual",r.showPopover(),n=!0);n&&(t.addEventListener("close",e=>e.stopImmediatePropagation(),{once:!0}),t.close(),t.showModal(),t.addEventListener("close",()=>{for(let e of t.ownerDocument.querySelectorAll(".dialog-inside-popover-fix"))e.contains(t)&&(e.classList.remove("dialog-inside-popover-fix"),e.popover="auto",e.showPopover())},{once:!0}))}}if(r=i.getAttribute("data-close-dialog-id")||i.getAttribute("data-submit-dialog-id")){let e=document.getElementById(r);e instanceof HTMLDialogElement&&e.open&&e.close()}}let DialogHelperElement=class DialogHelperElement extends HTMLElement{constructor(){super(...arguments),v.add(this),w.set(this,null)}get dialog(){return this.querySelector("dialog")}connectedCallback(){let{signal:e}=t1(this,w,new AbortController,"f");document.addEventListener("click",t2,!0),document.addEventListener("click",this,{signal:e}),this.ownerDocument.body.style.setProperty("--dialog-scrollgutter",`${window.innerWidth-this.ownerDocument.body.clientWidth}px`),new MutationObserver(e=>{for(let t of e)t.target===this.dialog&&t3(this,v,"m",y).call(this)}).observe(this,{subtree:!0,attributeFilter:["open"]}),t3(this,v,"m",y).call(this)}disconnectedCallback(){t3(this,w,"f")?.abort()}handleEvent(e){let t=e.target,i=this.dialog;if(t!==i||!i?.open||i.querySelector("form"))return;let r=i.getBoundingClientRect();r.top<=e.clientY&&e.clientY<=r.top+r.height&&r.left<=e.clientX&&e.clientX<=r.left+r.width||i.close()}};w=new WeakMap,v=new WeakSet,y=function(){this.dialog&&this.dialog.matches("[open]:not(:modal)")&&(this.dialog.addEventListener("close",e=>e.stopImmediatePropagation(),{once:!0}),this.dialog.close(),this.dialog.showModal())},window.customElements.get("dialog-helper")||(window.DialogHelperElement=DialogHelperElement,window.customElements.define("dialog-helper",DialogHelperElement));var t7=class extends Event{oldState;newState;constructor(e,{oldState:t="",newState:i="",...r}={}){super(e,r),this.oldState=String(t||""),this.newState=String(i||"")}},t9=new WeakMap;function t4(e,t,i){t9.set(e,setTimeout(()=>{t9.has(e)&&e.dispatchEvent(new t7("toggle",{cancelable:!1,oldState:t,newState:i}))},0))}var t5=globalThis.ShadowRoot||function(){},t6=globalThis.HTMLDialogElement||function(){},t8=new WeakMap,ie=new WeakMap,it=new WeakMap;function ii(e){return it.get(e)||"hidden"}var ir=new WeakMap;function io(e,t){return!("auto"!==e.popover&&"manual"!==e.popover||!e.isConnected||t&&"showing"!==ii(e)||!t&&"hidden"!==ii(e)||e instanceof t6&&e.hasAttribute("open"))&&document.fullscreenElement!==e}function is(e){return e?Array.from(ie.get(e.ownerDocument)||[]).indexOf(e)+1:0}function ia(e){let t=ie.get(e);for(let e of t||[])if(e.isConnected)return e;else t.delete(e);return null}function il(e){return"function"==typeof e.getRootNode?e.getRootNode():e.parentNode?il(e.parentNode):e}function ic(e){for(;e;){if(e instanceof HTMLElement&&"auto"===e.popover&&"showing"===it.get(e))return e;if((e=e instanceof Element&&e.assignedSlot||e.parentElement||il(e))instanceof t5&&(e=e.host),e instanceof Document)return}}var ih=new WeakMap;function id(e){if(!io(e,!1))return;let t=e.ownerDocument;if(!e.dispatchEvent(new t7("beforetoggle",{cancelable:!0,oldState:"closed",newState:"open"}))||!io(e,!1))return;let i=!1;if("auto"===e.popover){let i=e.getAttribute("popover");if(im(function(e){let t=new Map,i=0;for(let r of ie.get(e.ownerDocument)||[])t.set(r,i),i+=1;t.set(e,i),i+=1;let r=null;return!function(e){let i=ic(e);if(null===i)return;let n=t.get(i);(null===r||t.get(r)is(i)?t:i);if(o&&"pointerdown"===e.type)ig.set(n,o);else if("pointerup"===e.type){let e=ig.get(n)===o;ig.delete(n),e&&im(o||n,!1,!0)}}var iv=new WeakMap;function iw(e,t=!1){if(!e)return;iv.has(e)||iv.set(e,e.getAttribute("aria-expanded"));let i=e.popoverTargetElement;if(i instanceof HTMLElement&&"auto"===i.popover)e.setAttribute("aria-expanded",String(t));else{let t=iv.get(e);t?e.setAttribute("aria-expanded",t):e.removeAttribute("aria-expanded")}}var iy=globalThis.ShadowRoot||function(){};function iE(e,t,i){let r=e[t];Object.defineProperty(e,t,{value(e){return r.call(this,i(e))}})}var iA=/(^|[^\\]):popover-open\b/g,ik=null;function iL(e){let t,i=(t="function"==typeof globalThis.CSSLayerBlockRule,` +${t?"@layer popover-polyfill {":""} + :where([popover]) { + position: fixed; + z-index: 2147483647; + inset: 0; + padding: 0.25em; + width: fit-content; + height: fit-content; + border-width: initial; + border-color: initial; + border-image: initial; + border-style: solid; + background-color: canvas; + color: canvastext; + overflow: auto; + margin: auto; + } + + :where([popover]:not(.\\:popover-open)) { + display: none; + } + + :where(dialog[popover].\\:popover-open) { + display: block; + } + + :where(dialog[popover][open]) { + display: revert; + } + + :where([anchor].\\:popover-open) { + inset: auto; + } + + :where([anchor]:popover-open) { + inset: auto; + } + + @supports not (background-color: canvas) { + :where([popover]) { + background-color: white; + color: black; + } + } + + @supports (width: -moz-fit-content) { + :where([popover]) { + width: -moz-fit-content; + height: -moz-fit-content; + } + } + + @supports not (inset: 0) { + :where([popover]) { + top: 0; + left: 0; + right: 0; + bottom: 0; + } + } +${t?"}":""} +`);if(null===ik)try{(ik=new CSSStyleSheet).replaceSync(i)}catch{ik=!1}if(!1===ik){let t=document.createElement("style");t.textContent=i,e instanceof Document?e.head.prepend(t):e.prepend(t)}else e.adoptedStyleSheets=[ik,...e.adoptedStyleSheets]}"u">typeof HTMLElement&&"object"==typeof HTMLElement.prototype&&"popover"in HTMLElement.prototype||function(){var e;if("u"{let t=e.composedPath(),i=t[0];if(!(i instanceof Element)||i?.shadowRoot)return;let r=il(i);if(!(r instanceof iy||r instanceof Document))return;let n=t.find(e=>e.matches?.("[popovertargetaction],[popovertarget]"));if(n){!function(e){let t=e.popoverTargetElement;if(!(t instanceof HTMLElement))return;let i=ii(t);"show"===e.popoverTargetAction&&"showing"===i||("hide"!==e.popoverTargetAction||"hidden"!==i)&&("showing"===i?iu(t,!0,!0):io(t,!1)&&(ir.set(t,e),id(t)))}(n),e.preventDefault();return}}),e.addEventListener("keydown",e=>{let t=e.key,i=e.target;!e.defaultPrevented&&i&&("Escape"===t||"Esc"===t)&&im(i.ownerDocument,!0,!0)}),e.addEventListener("pointerdown",ib),e.addEventListener("pointerup",ib),iL(document)}();var iT=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i},iC=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)};let ix=['[role="menuitem"]','[role="menuitemcheckbox"]','[role="menuitemradio"]','[role="option"]'].map(e=>`:not([hidden]) > ${e}`).join(", "),iS=e=>e.textContent?.trim()[0].toLowerCase(),iM=/^\S$/;let FocusGroupElement=class FocusGroupElement extends HTMLElement{constructor(){super(...arguments),E.add(this),A.set(this,null),k.set(this,null)}get nowrap(){return this.hasAttribute("nowrap")}set nowrap(e){this.toggleAttribute("nowrap",e)}get direction(){return"horizontal"===this.getAttribute("direction")?"horizontal":"vertical"}set direction(e){this.setAttribute("direction",`${e}`)}get retain(){return this.hasAttribute("retain")}set retain(e){this.toggleAttribute("retain",e)}get mnemonics(){return this.hasAttribute("mnemonics")}connectedCallback(){iT(this,k,new AbortController,"f");let{signal:e}=iC(this,k,"f");this.addEventListener("keydown",this,{signal:e}),this.addEventListener("click",this,{signal:e}),this.addEventListener("mouseover",this,{signal:e}),this.addEventListener("focusin",this,{signal:e})}disconnectedCallback(){iC(this,k,"f")?.abort()}handleEvent(e){let{direction:t,nowrap:i}=this;if("focusin"===e.type){if(this.retain&&e.target instanceof Element&&e.target.matches(ix)){iC(this,A,"f")?.abort();let{signal:t}=iT(this,A,new AbortController,"f");for(let i of iC(this,E,"a",L)){i.setAttribute("tabindex",i===e.target?"0":"-1");let r=e.target.closest("[popover]");i===e.target&&r?.popover==="auto"&&r.closest("focus-group")===this&&r.addEventListener("toggle",e=>{if(e.target instanceof Element&&"closed"===e.newState&&(iC(this,A,"f")?.abort(),i.setAttribute("tabindex","-1"),r.id)){let e=this.querySelector(`[popovertarget="${r.id}"]`);e?e.setAttribute("tabindex","0"):iC(this,E,"a",L)[0]?.setAttribute("tabindex","0")}},{signal:t})}}}else if(e instanceof KeyboardEvent){let r=Array.from(iC(this,E,"a",L)),n=r.indexOf(e.target),o=e.key;if("Up"===o||"ArrowUp"===o)("vertical"===t||"both"===t)&&(n-=n<0?0:1,e.preventDefault());else if("Down"===o||"ArrowDown"===o)("vertical"===t||"both"===t)&&(n+=1,e.preventDefault());else if("Left"===e.key||"ArrowLeft"===e.key)("horizontal"===t||"both"===t)&&(n-=1,e.preventDefault());else if("Right"===e.key||"ArrowRight"===e.key)("horizontal"===t||"both"===t)&&(n+=1,e.preventDefault());else if("Home"===e.key||"PageUp"===e.key)n=0,e.preventDefault();else if("End"===e.key||"PageDown"===e.key)n=r.length-1,e.preventDefault();else{if(!(this.mnemonics&&iM.test(o)))return;let t=o.toLowerCase(),s=n>0&&iS(e.target)===t?n:0;(n=r.findIndex((e,i)=>i>s&&iS(e)===t))<0&&!i&&(n=r.findIndex(e=>iS(e)===t))}i&&n<0&&(n=0),!i&&n>=r.length&&(n=0);let s=r.at(Math.min(n,r.length-1));{let t=s;do t=t.closest("[popover]:not(:popover-open)"),t?.popover!=="auto"||["ArrowRight","ArrowLeft"].includes(e.key)||t.showPopover(),t=t?.parentElement||null;while(t)}s?.focus()}}};A=new WeakMap,k=new WeakMap,E=new WeakSet,L=function(){return this.querySelectorAll(ix)},customElements.get("focus-group")||(window.FocusGroupElement=FocusGroupElement,customElements.define("focus-group",FocusGroupElement));var iI=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s};let iP=class ScrollableRegionElement extends HTMLElement{constructor(){super(...arguments),this.hasOverflow=!1,this.labelledBy=""}connectedCallback(){this.style.overflow="auto",this.observer=new ResizeObserver(e=>{for(let t of e)this.hasOverflow=t.target.scrollHeight>t.target.clientHeight||t.target.scrollWidth>t.target.clientWidth}),this.observer.observe(this)}disconnectedCallback(){this.observer.disconnect()}attributeChangedCallback(e){"data-has-overflow"===e&&(this.hasOverflow?(this.setAttribute("aria-labelledby",this.labelledBy),this.setAttribute("role","region"),this.setAttribute("tabindex","0")):(this.removeAttribute("aria-labelledby"),this.removeAttribute("role"),this.removeAttribute("tabindex")))}};iI([tW.CF],iP.prototype,"hasOverflow",void 0),iI([tW.CF],iP.prototype,"labelledBy",void 0),iP=iI([tW.p_],iP),window.ScrollableRegionElement=iP,i(80147);var iD=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s},iO=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i},iR=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)};let iH=class NavListElement extends HTMLElement{constructor(){super(...arguments),T.add(this),C.set(this,void 0)}connectedCallback(){this.topLevelList&&iO(this,C,new ActionListTruncationObserver(this.topLevelList),"f")}disconnectedCallback(){this.topLevelList&&iR(this,C,"f").unobserve(this.topLevelList)}selectItemById(e){if(!e)return!1;let t=iR(this,T,"m",x).call(this,e);return!!t&&(iR(this,T,"m",I).call(this,t),!0)}selectItemByHref(e){if(!e)return!1;let t=iR(this,T,"m",S).call(this,e);return!!t&&(iR(this,T,"m",I).call(this,t),!0)}selectItemByCurrentLocation(){let e=iR(this,T,"m",M).call(this);return!!e&&(iR(this,T,"m",I).call(this,e),!0)}expandItem(e){e.nextElementSibling?.removeAttribute("data-hidden"),e.setAttribute("aria-expanded","true")}collapseItem(e){e.nextElementSibling?.setAttribute("data-hidden",""),e.setAttribute("aria-expanded","false"),e.focus()}itemIsExpanded(e){return e?.tagName==="A"||e?.getAttribute("aria-expanded")==="true"}handleItemWithSubItemClick(e){let t=e.target;if(!(t instanceof HTMLElement))return;let i=t.closest("button");i&&(this.itemIsExpanded(i)?this.collapseItem(i):this.expandItem(i),e.stopPropagation())}handleItemWithSubItemKeydown(e){let t=e.currentTarget;if(!(t instanceof HTMLElement))return;let i=t.closest("button");if(!i){let e=t.getAttribute("aria-labelledby");if(!e)return;i=document.getElementById(e)}this.itemIsExpanded(i)&&"Escape"===e.key&&this.collapseItem(i),e.stopPropagation()}};C=new WeakMap,T=new WeakSet,x=function(e){for(let t of this.items)if(!t.classList.contains("ActionListItem--hasSubItem")&&(t.getAttribute("data-item-id")?.split(" ")||[]).includes(e))return t;return null},S=function(e){let t=this.querySelector(`.ActionListContent[href="${e}"]`);return t?t.closest(".ActionListItem"):null},M=function(){return iR(this,T,"m",S).call(this,window.location.pathname)},I=function(e){let t=this.querySelector(".ActionListItem--navActive");t&&iR(this,T,"m",P).call(this,t),e.classList.add("ActionListItem--navActive"),e.children.length>0&&e.children[0].setAttribute("aria-current","page");let i=iR(this,T,"m",D).call(this,e);i&&(this.expandItem(i),i.classList.add("ActionListContent--hasActiveSubItem"))},P=function(e){e.classList.remove("ActionListItem--navActive"),e.children.length>0&&e.children[0].removeAttribute("aria-current");let t=iR(this,T,"m",D).call(this,e);t&&(this.collapseItem(t),t.classList.remove("ActionListContent--hasActiveSubItem"))},D=function(e){if(!e.classList.contains("ActionListItem--subItem"))return null;let t=e.closest("li.ActionListItem--hasSubItem")?.querySelector("button.ActionListContent");return t||null},iD([tW.zV],iH.prototype,"items",void 0),iD([tW.aC],iH.prototype,"topLevelList",void 0),iH=iD([tW.p_],iH);var iq=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s},iF=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)};let iV=class NavListGroupElement extends HTMLElement{constructor(){super(...arguments),O.add(this),H.set(this,new ActionListTruncationObserver(this))}connectedCallback(){this.setShowMoreItemState()}get showMoreDisabled(){return this.showMoreItem.hasAttribute("aria-disabled")}set showMoreDisabled(e){e?this.showMoreItem.setAttribute("aria-disabled","true"):this.showMoreItem.removeAttribute("aria-disabled"),this.showMoreItem.classList.toggle("disabled",e)}set currentPage(e){this.showMoreItem.setAttribute("data-current-page",e.toString())}get currentPage(){return parseInt(this.showMoreItem.getAttribute("data-current-page"))||1}get totalPages(){return parseInt(this.showMoreItem.getAttribute("data-total-pages"))||1}get paginationSrc(){return this.showMoreItem.getAttribute("src")||""}async showMore(e){let t;if(e.preventDefault(),this.showMoreDisabled)return;this.showMoreDisabled=!0;try{let e=new URL(this.paginationSrc,window.location.origin);this.currentPage++,e.searchParams.append("page",this.currentPage.toString());let i=await fetch(e);if(!i.ok)return;t=await i.text(),this.currentPage===this.totalPages&&(this.showMoreItem.hidden=!0)}catch(e){this.showMoreDisabled=!1,this.currentPage--;return}let i=iF(this,O,"m",R).call(this,document,t);i?.querySelector("li > a")?.setAttribute("data-targets","nav-list-group.focusMarkers");let r=e.target.closest("button").getAttribute("data-list-id");document.getElementById(r).append(i),this.focusMarkers.pop()?.focus(),this.showMoreDisabled=!1}setShowMoreItemState(){this.showMoreItem&&(this.currentPage=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s},iN=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)};let iW=class SegmentedControlElement extends HTMLElement{constructor(){super(...arguments),q.add(this)}connectedCallback(){iN(this,q,"m",F).call(this)}select(e){let t=e.currentTarget;for(let e of this.items)e.classList.remove("SegmentedControl-item--selected"),e.querySelector("[aria-current]")?.setAttribute("aria-current","false");t.closest("li.SegmentedControl-item")?.classList.add("SegmentedControl-item--selected"),t.setAttribute("aria-current","true")}};q=new WeakSet,F=function(){for(let e of this.querySelectorAll(".Button-label"))e.setAttribute("data-content",e.textContent||"")},ij([tW.zV],iW.prototype,"items",void 0),iW=ij([tW.p_],iW),window.customElements.get("segmented-control")||(window.SegmentedControlElement=iW,window.customElements.define("segmented-control",iW));var i_=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s};let i$=class ToggleSwitchElement extends HTMLElement{constructor(){super(...arguments),this.turbo=!1,this.toggling=!1}get src(){let e=this.getAttribute("src");if(!e)return null;let t=this.ownerDocument.createElement("a");return t.href=e,t.href}get csrf(){let e=this.querySelector("[data-csrf]");return this.getAttribute("data-csrf")||e instanceof HTMLInputElement&&e.value||null}get csrfField(){return this.getAttribute("csrf-field")||"authenticity_token"}isRemote(){return null!=this.src}async toggle(){if(!this.toggling&&(this.toggling=!0,!this.isDisabled())){if(!this.isRemote()){this.performToggle(),this.toggling=!1;return}this.performToggle(),this.setLoadingState();try{await this.submitForm()}catch(e){e instanceof Error&&(this.setErrorState(e.message||"An error occurred, please try again."),this.performToggle());return}finally{this.toggling=!1}this.setSuccessState()}}turnOn(){this.isDisabled()||(this.switch.setAttribute("aria-pressed","true"),this.classList.add("ToggleSwitch--checked"))}turnOff(){this.isDisabled()||(this.switch.setAttribute("aria-pressed","false"),this.classList.remove("ToggleSwitch--checked"))}isOn(){return"true"===this.switch.getAttribute("aria-pressed")}isOff(){return!this.isOn()}isDisabled(){return null!=this.switch.getAttribute("disabled")}disable(){this.switch.setAttribute("disabled","disabled")}enable(){this.switch.removeAttribute("disabled")}performToggle(){this.isOn()?this.turnOff():this.turnOn()}setLoadingState(){this.errorIcon.setAttribute("hidden","hidden"),this.loadingSpinner.removeAttribute("hidden");let e=new CustomEvent("toggleSwitchLoading",{bubbles:!0});this.dispatchEvent(e)}setSuccessState(){let e=new CustomEvent("toggleSwitchSuccess",{bubbles:!0});this.dispatchEvent(e),this.setFinishedState(!1)}setErrorState(e){let t=new CustomEvent("toggleSwitchError",{bubbles:!0,detail:e});this.dispatchEvent(t),this.setFinishedState(!0)}setFinishedState(e){e&&this.errorIcon.removeAttribute("hidden"),this.loadingSpinner.setAttribute("hidden","hidden")}async submitForm(){let e,t=new FormData;if(this.csrf&&t.append(this.csrfField,this.csrf),t.append("value",this.isOn()?"1":"0"),!this.src)throw Error("invalid src");let i={"Requested-With":"XMLHttpRequest","X-Requested-With":"XMLHttpRequest"};this.turbo&&(i.Accept="text/vnd.turbo-stream.html");try{e=await fetch(this.src,{credentials:"same-origin",method:"POST",headers:i,body:t})}catch(e){throw Error("A network error occurred, please try again.")}if(!e.ok)throw Error(await e.text());let r=e.headers.get("Content-Type");window.Turbo&&this.turbo&&r?.startsWith("text/vnd.turbo-stream.html")&&window.Turbo.renderStreamMessage(await e.text())}};i_([tW.aC],i$.prototype,"switch",void 0),i_([tW.aC],i$.prototype,"loadingSpinner",void 0),i_([tW.aC],i$.prototype,"errorIcon",void 0),i_([tW.CF],i$.prototype,"turbo",void 0),i$=i_([tW.p_],i$),window.customElements.get("toggle-switch")||(window.ToggleSwitchElement=i$,window.customElements.define("toggle-switch",i$));var iB=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)},iz=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i};let iK=e=>r?e.matches(r):function(e){try{return r=":popover-open",e.matches(r)}catch{try{return r=":open",e.matches(":open")}catch{return r=".\\:popover-open",e.matches(".\\:popover-open")}}}(e),iY="sr-only",iU=["tooltip-n","tooltip-s","tooltip-e","tooltip-w","tooltip-ne","tooltip-se","tooltip-nw","tooltip-sw"];function iX(e){for(let t of iZ)t!==e&&(iK(t)?t.hidePopover():iZ.delete(t))}function iG(){iX()}function iJ(e){setTimeout(()=>{for(let t of iZ)iK(t)&&"focus"===t.showReason&&t.control!==e.target&&t.hidePopover()},0)}let iQ=new Set,iZ=new Set;let ToolTipElement=class ToolTipElement extends HTMLElement{constructor(){super(...arguments),V.add(this),j.set(this,void 0),N.set(this,"center"),W.set(this,"outside-bottom"),_.set(this,!1),$.set(this,"mouse"),B.set(this,!1)}styles(){return` + :host { + --tooltip-top: var(--tool-tip-position-top, 0); + --tooltip-left: var(--tool-tip-position-left, 0); + padding: var(--overlay-paddingBlock-condensed) var(--overlay-padding-condensed) !important; + font: var(--text-body-shorthand-small); + color: var(--tooltip-fgColor, var(--fgColor-onEmphasis)) !important; + text-align: center; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-wrap: break-word; + white-space: pre; + background: var(--tooltip-bgColor, var(--bgColor-emphasis)) !important; + border-radius: var(--borderRadius-medium); + border: 0 !important; + opacity: 0; + max-width: var(--overlay-width-small); + word-wrap: break-word; + white-space: normal; + width: max-content !important; + inset: var(--tooltip-top) auto auto var(--tooltip-left) !important; + overflow: visible !important; + text-wrap: balance; + } + + :host(:is(.tooltip-n, .tooltip-nw, .tooltip-ne)) { + --tooltip-top: calc(var(--tool-tip-position-top, 0) - var(--overlay-offset, 0.25rem)); + --tooltip-left: var(--tool-tip-position-left); + } + + :host(:is(.tooltip-s, .tooltip-sw, .tooltip-se)) { + --tooltip-top: calc(var(--tool-tip-position-top, 0) + var(--overlay-offset, 0.25rem)); + --tooltip-left: var(--tool-tip-position-left); + } + + :host(.tooltip-w) { + --tooltip-top: var(--tool-tip-position-top); + --tooltip-left: calc(var(--tool-tip-position-left, 0) - var(--overlay-offset, 0.25rem)); + } + + :host(.tooltip-e) { + --tooltip-top: var(--tool-tip-position-top); + --tooltip-left: calc(var(--tool-tip-position-left, 0) + var(--overlay-offset, 0.25rem)); + } + + :host:after{ + position: absolute; + display: block; + right: 0; + left: 0; + height: var(--overlay-offset, 0.25rem); + content: ""; + } + + :host(.tooltip-s):after, + :host(.tooltip-se):after, + :host(.tooltip-sw):after { + bottom: 100% + } + + :host(.tooltip-n):after, + :host(.tooltip-ne):after, + :host(.tooltip-nw):after { + top: 100%; + } + + @keyframes tooltip-appear { + from { + opacity: 0; + } + to { + opacity: 1; + } + } + + :host(:popover-open), + :host(:popover-open):before { + animation-name: tooltip-appear; + animation-duration: .1s; + animation-fill-mode: forwards; + animation-timing-function: ease-in; + } + + :host(.\\:popover-open) { + animation-name: tooltip-appear; + animation-duration: .1s; + animation-fill-mode: forwards; + animation-timing-function: ease-in; + } + + @media (forced-colors: active) { + :host { + outline: solid 1px transparent; + } + + :host:before { + display: none; + } + } + `}get showReason(){return iB(this,$,"f")}get htmlFor(){return this.getAttribute("for")||""}set htmlFor(e){this.setAttribute("for",e)}get type(){return"label"===this.getAttribute("data-type")?"label":"description"}set type(e){this.setAttribute("data-type",e)}get direction(){return this.getAttribute("data-direction")||"s"}set direction(e){this.setAttribute("data-direction",e)}get control(){return this.ownerDocument.getElementById(this.htmlFor)}set hiddenFromView(e){e&&iK(this)?this.hidePopover():e||iK(this)||this.showPopover()}get hiddenFromView(){return!iK(this)}connectedCallback(){if(iQ.add(this),iB(this,V,"m",Y).call(this),iB(this,V,"m",U).call(this),!this.shadowRoot){let e=this.attachShadow({mode:"open"});e.appendChild(document.createElement("style")).textContent=this.styles(),e.appendChild(document.createElement("slot"))}iB(this,V,"m",z).call(this,!1),iz(this,_,!0,"f"),iB(this,V,"m",K).call(this)}disconnectedCallback(){iQ.delete(this),iZ.delete(this),iB(this,j,"f")?.abort()}async handleEvent(e){if(!this.control)return;let t=iK(this);"beforetoggle"===e.type&&e.currentTarget!==this&&iz(this,B,"open"===e.newState,"f");let i=("mouseenter"===e.type||"focus"===e.type&&(navigator.webdriver||this.control.matches(":focus-visible")))&&!iB(this,B,"f"),r="mouseleave"===e.type&&e.relatedTarget!==this.control&&e.relatedTarget!==this,n="keydown"===e.type&&"Escape"===e.key,o="mousedown"===e.type&&e.currentTarget===this.control,s="beforetoggle"===e.type&&e.currentTarget!==this&&"open"===e.newState;t&&n&&(e.stopImmediatePropagation(),e.preventDefault()),await Promise.resolve(),t||!i||iK(this)?t&&(r||n||o||s)&&iK(this)&&this.hidePopover():(iz(this,$,"mouseenter"===e.type?"mouse":"focus","f"),this.showPopover()),"toggle"===e.type&&iB(this,V,"m",z).call(this,"open"===e.newState)}attributeChangedCallback(e){this.isConnected&&("for"===e?iB(this,V,"m",K).call(this):"id"===e||"data-type"===e?iB(this,V,"m",Y).call(this):"data-direction"===e&&iB(this,V,"m",U).call(this))}};j=new WeakMap,N=new WeakMap,W=new WeakMap,_=new WeakMap,$=new WeakMap,B=new WeakMap,V=new WeakSet,z=function(e){e?(iZ.add(this),this.classList.remove(iY),iX(this),iB(this,V,"m",X).call(this)):(iZ.delete(this),this.classList.remove(...iU),this.classList.add(iY))},K=function(){if(!this.control)return;this.setAttribute("role","tooltip"),iB(this,j,"f")?.abort(),iz(this,j,new AbortController,"f");let{signal:e}=iB(this,j,"f");this.addEventListener("mouseleave",this,{signal:e}),this.addEventListener("toggle",this,{signal:e}),this.control.addEventListener("mouseenter",this,{signal:e}),this.control.addEventListener("mouseleave",this,{signal:e}),this.control.addEventListener("focus",this,{signal:e}),this.control.addEventListener("mousedown",this,{signal:e}),this.control.popoverTargetElement?.addEventListener("beforetoggle",this,{signal:e}),this.ownerDocument.addEventListener("focusout",iG),this.ownerDocument.addEventListener("focusin",iJ),this.ownerDocument.addEventListener("keydown",this,{signal:e,capture:!0})},Y=function(){if(this.id&&this.control)if("label"===this.type){let e=this.control.getAttribute("aria-labelledby");e=e?e.split(" ").includes(this.id)?`${e}`:`${e} ${this.id}`:this.id,this.control.setAttribute("aria-labelledby",e),this.setAttribute("aria-hidden","true")}else{let e=this.control.getAttribute("aria-describedby");e=e?e.split(" ").includes(this.id)?`${e}`:`${e} ${this.id}`:this.id,this.control.setAttribute("aria-describedby",e)}},U=function(){this.classList.remove(...iU);let e=this.direction;"n"===e?(iz(this,N,"center","f"),iz(this,W,"outside-top","f")):"ne"===e?(iz(this,N,"end","f"),iz(this,W,"outside-top","f")):"e"===e?(iz(this,N,"center","f"),iz(this,W,"outside-right","f")):"se"===e?(iz(this,N,"end","f"),iz(this,W,"outside-bottom","f")):"s"===e?(iz(this,N,"center","f"),iz(this,W,"outside-bottom","f")):"sw"===e?(iz(this,N,"start","f"),iz(this,W,"outside-bottom","f")):"w"===e?(iz(this,N,"center","f"),iz(this,W,"outside-left","f")):"nw"===e&&(iz(this,N,"start","f"),iz(this,W,"outside-top","f"))},X=function(){if(!this.control||!iB(this,_,"f")||!iK(this))return;let e=(0,tz.uG)(this,this.control,{side:iB(this,W,"f"),align:iB(this,N,"f"),anchorOffset:0}),t=e.anchorSide,i=e.anchorAlign;this.style.setProperty("--tool-tip-position-top",`${e.top}px`),this.style.setProperty("--tool-tip-position-left",`${e.left}px`);let r="s";r="outside-left"===t?"w":"outside-right"===t?"e":"outside-top"===t?"center"===i?"n":"start"===i?"ne":"nw":"center"===i?"s":"start"===i?"se":"sw",this.classList.add(`tooltip-${r}`)},ToolTipElement.observedAttributes=["data-type","data-direction","id","for"],window.customElements.get("tool-tip")||(window.ToolTipElement=ToolTipElement,window.customElements.define("tool-tip",ToolTipElement));var i0=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s},i1=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)};let i3=class XBannerElement extends HTMLElement{constructor(){super(...arguments),G.add(this)}dismiss(){if("remove"===i1(this,G,"a",J)){let e=this.parentElement;if(!e)return;e.removeChild(this)}else this.hide();this.dispatchEvent(new CustomEvent("banner:dismiss"))}show(){this.style.setProperty("display","initial")}hide(){this.style.setProperty("display","none")}};function i2(e){e.style.display="inline-block"}function i7(e){e.style.display="none"}G=new WeakSet,J=function(){return this.getAttribute("data-dismiss-scheme")},i0([tW.aC],i3.prototype,"titleText",void 0),i3=i0([tW.p_],i3),window.customElements.get("x-banner")||(window.XBannerElement=i3,window.customElements.define("x-banner",i3)),i(96907),i(14940);let i9=new WeakMap;document.addEventListener("clipboard-copy",({target:e})=>{if(!(e instanceof HTMLElement)||!e.hasAttribute("data-view-component"))return;let t=i9.get(e),i=e.parentNode?.querySelector("[data-clipboard-copy-feedback]"),r="Copied!";t?(clearTimeout(t),i9.delete(e)):(!function(e){let[t,i]=e.querySelectorAll(".octicon");t&&i&&(i7(t),i2(i))}(e),i&&(i.textContent===r?i.textContent=`${r}\u00A0`:i.textContent=r)),i9.set(e,setTimeout(()=>{!function(e){let[t,i]=e.querySelectorAll(".octicon");t&&i&&(i2(t),i7(i))}(e),i9.delete(e)},2e3))}),i(4712),i(49728);var i4=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s};let i5=class PrimerMultiInputElement extends HTMLElement{activateField(e){let t=this.findField(e);if(t){for(let e of this.fields)e!==t&&(e.setAttribute("disabled","disabled"),e.setAttribute("hidden","hidden"),e.parentElement?.setAttribute("hidden","hidden"));t.removeAttribute("disabled"),t.removeAttribute("hidden"),t.parentElement?.removeAttribute("hidden")}}findField(e){for(let t of this.fields)if(t.getAttribute("data-name")===e)return t;return null}};i4([tW.zV],i5.prototype,"fields",void 0),i5=i4([tW.p_],i5),window.customElements.get("primer-multi-input")||(Object.assign(window,{PrimerMultiInputElement:i5}),window.customElements.define("primer-multi-input",i5)),i(20761);let CharacterCounter=class CharacterCounter{constructor(e,t,i){this.inputElement=e,this.characterLimitElement=t,this.characterLimitSrElement=i,this.SCREEN_READER_DELAY=500,this.announceTimeout=null,this.isInitialLoad=!0}initialize(e){this.inputElement.addEventListener("keyup",()=>this.updateCharacterCount(),e?{signal:e}:void 0),this.inputElement.addEventListener("paste",()=>setTimeout(()=>this.updateCharacterCount(),50),e?{signal:e}:void 0),this.updateCharacterCount(),this.isInitialLoad=!1}cleanup(){this.announceTimeout&&clearTimeout(this.announceTimeout)}pluralize(e,t){return 1===e?t:`${t}s`}updateCharacterCount(){if(!this.characterLimitElement)return;let e=this.characterLimitElement.getAttribute("data-max-length");if(!e)return;let t=parseInt(e,10)-this.inputElement.value.length,i="";if(t>=0){let e=this.pluralize(t,"character");i=`${t} ${e} remaining`;let r=this.characterLimitElement.querySelector(".FormControl-caption-text");r&&(r.textContent=i),this.clearError()}else{let e=-t,r=this.pluralize(e,"character");i=`${e} ${r} over`;let n=this.characterLimitElement.querySelector(".FormControl-caption-text");n&&(n.textContent=i),this.setError()}this.isInitialLoad||this.announceToScreenReader(i)}announceToScreenReader(e){this.announceTimeout&&clearTimeout(this.announceTimeout),this.announceTimeout=window.setTimeout(()=>{this.characterLimitSrElement&&(this.characterLimitSrElement.textContent=e)},this.SCREEN_READER_DELAY)}setError(){this.inputElement.setAttribute("invalid","true"),this.inputElement.setAttribute("aria-invalid","true"),this.characterLimitElement.classList.add("fgColor-danger");let e=this.characterLimitElement.querySelector(".FormControl-caption-icon");e&&e.removeAttribute("hidden")}clearError(){this.inputElement.removeAttribute("invalid"),this.inputElement.removeAttribute("aria-invalid"),this.characterLimitElement.classList.remove("fgColor-danger");let e=this.characterLimitElement.querySelector(".FormControl-caption-icon");e&&e.setAttribute("hidden","")}};var i6=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s},i8=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)},re=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i};let rt=class PrimerTextFieldElement extends HTMLElement{constructor(){super(...arguments),Q.set(this,void 0),Z.set(this,null)}connectedCallback(){i8(this,Q,"f")?.abort();let{signal:e}=re(this,Q,new AbortController,"f");this.addEventListener("auto-check-success",async e=>{let t=await e.detail.response.text();t&&t.length>0?this.setSuccess(t):this.clearError()},{signal:e}),this.addEventListener("auto-check-error",async e=>{let t=await e.detail.response.text();this.setError(t)},{signal:e}),this.characterLimitElement&&(re(this,Z,new CharacterCounter(this.inputElement,this.characterLimitElement,this.characterLimitSrElement),"f"),i8(this,Z,"f").initialize(e))}disconnectedCallback(){i8(this,Q,"f")?.abort(),i8(this,Z,"f")?.cleanup()}clearContents(){this.inputElement.value="",this.inputElement.focus(),this.inputElement.dispatchEvent(new Event("input",{bubbles:!0,cancelable:!1}))}clearError(){this.inputElement.removeAttribute("invalid"),this.validationElement.hidden=!0,this.validationMessageElement.replaceChildren()}setValidationMessage(e){let t=document.createElement("template");t.innerHTML=e;let i=document.importNode(t.content,!0);this.validationMessageElement.replaceChildren(i)}toggleValidationStyling(e){e?this.validationElement.classList.remove("FormControl-inlineValidation--success"):this.validationElement.classList.add("FormControl-inlineValidation--success"),this.validationSuccessIcon.hidden=e,this.validationErrorIcon.hidden=!e,this.inputElement.setAttribute("invalid",e?"true":"false")}setSuccess(e){this.toggleValidationStyling(!1),this.setValidationMessage(e),this.validationElement.hidden=!1}setError(e){this.toggleValidationStyling(!0),this.setValidationMessage(e),this.validationElement.hidden=!1}showLeadingSpinner(){this.leadingSpinner?.removeAttribute("hidden"),this.leadingVisual?.setAttribute("hidden","")}hideLeadingSpinner(){this.leadingSpinner?.setAttribute("hidden",""),this.leadingVisual?.removeAttribute("hidden")}};Q=new WeakMap,Z=new WeakMap,i6([tW.aC],rt.prototype,"inputElement",void 0),i6([tW.aC],rt.prototype,"validationElement",void 0),i6([tW.aC],rt.prototype,"validationMessageElement",void 0),i6([tW.aC],rt.prototype,"validationSuccessIcon",void 0),i6([tW.aC],rt.prototype,"validationErrorIcon",void 0),i6([tW.aC],rt.prototype,"leadingVisual",void 0),i6([tW.aC],rt.prototype,"leadingSpinner",void 0),i6([tW.aC],rt.prototype,"characterLimitElement",void 0),i6([tW.aC],rt.prototype,"characterLimitSrElement",void 0),rt=i6([tW.p_],rt);var ri=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s},rr=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i},rn=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)};let ro=class PrimerTextAreaElement extends HTMLElement{constructor(){super(...arguments),ee.set(this,null)}connectedCallback(){this.characterLimitElement&&(rr(this,ee,new CharacterCounter(this.inputElement,this.characterLimitElement,this.characterLimitSrElement),"f"),rn(this,ee,"f").initialize())}disconnectedCallback(){rn(this,ee,"f")?.cleanup()}};ee=new WeakMap,ri([tW.aC],ro.prototype,"inputElement",void 0),ri([tW.aC],ro.prototype,"characterLimitElement",void 0),ri([tW.aC],ro.prototype,"characterLimitSrElement",void 0),ro=ri([tW.p_],ro),window.customElements.get("primer-text-area")||(Object.assign(window,{PrimerTextAreaElement:ro}),window.customElements.define("primer-text-area",ro));var rs=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s};let ra=class ToggleSwitchInputElement extends HTMLElement{connectedCallback(){this.addEventListener("toggleSwitchError",e=>{this.validationMessageElement.textContent=e.detail,this.validationElement.removeAttribute("hidden")}),this.addEventListener("toggleSwitchSuccess",()=>{this.validationMessageElement.textContent="",this.validationElement.setAttribute("hidden","hidden")}),this.addEventListener("toggleSwitchLoading",()=>{this.validationMessageElement.textContent="",this.validationElement.setAttribute("hidden","hidden")})}};rs([tW.aC],ra.prototype,"validationElement",void 0),rs([tW.aC],ra.prototype,"validationMessageElement",void 0),ra=rs([tW.p_],ra);let rl=(e,t,i)=>{if(t())i();else{let r=new MutationObserver(()=>{t()&&(i(),r.disconnect())});r.observe(e,{childList:!0,subtree:!0})}};var rc=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s},rh=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i},rd=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)};let ru=['[role="menuitem"]','[role="menuitemcheckbox"]','[role="menuitemradio"]'],rf=ru.map(e=>`:not([hidden]) > ${e}`),rp=class ActionMenuElement extends HTMLElement{constructor(){super(...arguments),et.add(this),ei.set(this,void 0),er.set(this,""),en.set(this,""),eo.set(this,!1),es.set(this,void 0)}get selectVariant(){return this.getAttribute("data-select-variant")}set selectVariant(e){e?this.setAttribute("data-select-variant",e):this.removeAttribute("variant")}get dynamicLabelPrefix(){let e=this.getAttribute("data-dynamic-label-prefix");return e?`${e}:`:""}set dynamicLabelPrefix(e){this.setAttribute("data-dynamic-label",e)}get dynamicLabel(){return this.hasAttribute("data-dynamic-label")}set dynamicLabel(e){this.toggleAttribute("data-dynamic-label",e)}get popoverElement(){return this.invokerElement?.popoverTargetElement||null}get invokerElement(){let e=this.querySelector("[role=menu]")?.id;if(!e)return null;for(let t of this.querySelectorAll("[aria-controls]"))if(t.getAttribute("aria-controls")===e)return t;return null}get invokerLabel(){return this.invokerElement?this.invokerElement.querySelector(".Button-label"):null}get selectedItems(){let e=this.querySelectorAll("[aria-checked=true]"),t=[];for(let i of e){let e=i.querySelector(".ActionListItem-label");t.push({label:e?.textContent,value:i?.getAttribute("data-value"),element:i})}return t}connectedCallback(){let{signal:e}=rh(this,ei,new AbortController,"f");this.addEventListener("keydown",this,{signal:e}),this.addEventListener("click",this,{signal:e}),this.addEventListener("mouseover",this,{signal:e}),this.addEventListener("focusout",this,{signal:e}),this.addEventListener("mousedown",this,{signal:e}),this.popoverElement?.addEventListener("toggle",this,{signal:e}),rd(this,et,"m",ew).call(this),rd(this,et,"m",ey).call(this),rd(this,et,"m",ea).call(this),this.includeFragment&&this.includeFragment.addEventListener("include-fragment-replaced",this,{signal:e});let t=()=>{rd(this,et,"m",ev).call(this)&&this.overlay?.update()};rh(this,es,new IntersectionObserver(e=>{for(let i of e)i.target===this.invokerElement&&(i.isIntersecting?window.addEventListener("scroll",t,{capture:!0}):window.removeEventListener("scroll",t,{capture:!0}))}),"f"),rl(this,()=>!!this.invokerElement,()=>rd(this,es,"f").observe(this.invokerElement)),this.includeFragment||this.setAttribute("data-ready","true")}disconnectedCallback(){rd(this,ei,"f").abort()}handleEvent(e){let t=this.invokerElement?.contains(e.target),i=rd(this,et,"m",eh).call(this,e);if("toggle"===e.type&&"open"===e.newState&&window.requestAnimationFrame(()=>{rd(this,et,"a",eE)?.focus()}),t&&"mousedown"===e.type)return void rh(this,eo,!0,"f");if("mousedown"===e.type)return void e.preventDefault();if(t&&i){rd(this,et,"m",ed).call(this,e),rh(this,eo,!1,"f");return}if("focusout"===e.type){if(rd(this,eo,"f"))return;requestAnimationFrame(()=>{this.contains(document.activeElement)&&document.activeElement!==this.invokerElement||rd(this,et,"m",em).call(this)});return}let r=e.target.closest(rf.join(","));if(null!==r&&i){if(rd(this,et,"m",el).call(this,e))return;let t=r.closest("[data-show-dialog-id]");if(t){let i=this.ownerDocument.getElementById(t.getAttribute("data-show-dialog-id")||"");if(i&&this.contains(t))return void rd(this,et,"m",eu).call(this,e,i)}rd(this,et,"m",ec).call(this,e)&&(e.preventDefault(),r.click()),rd(this,et,"m",ef).call(this,r);return}"include-fragment-replaced"===e.type&&rd(this,et,"m",ep).call(this)}get items(){return Array.from(this.querySelectorAll(rf.join(",")))}getItemById(e){return this.querySelector(`li[data-item-id="${e}"`)}isItemDisabled(e){return!!e&&e.classList.contains("ActionListItem--disabled")}disableItem(e){e&&(e.classList.add("ActionListItem--disabled"),e.querySelector(".ActionListContent").setAttribute("aria-disabled","true"))}enableItem(e){e&&(e.classList.remove("ActionListItem--disabled"),e.querySelector(".ActionListContent").removeAttribute("aria-disabled"))}isItemHidden(e){return!!e&&e.hasAttribute("hidden")}hideItem(e){e&&e.setAttribute("hidden","hidden")}showItem(e){e&&e.removeAttribute("hidden")}isItemChecked(e){return!!e&&"true"===e.querySelector(".ActionListContent").getAttribute("aria-checked")}checkItem(e){if(e&&("single"===this.selectVariant||"multiple"===this.selectVariant)){let t=e.querySelector(".ActionListContent");"true"!==t.getAttribute("aria-checked")&&rd(this,et,"m",ef).call(this,t)}}uncheckItem(e){if(e&&("single"===this.selectVariant||"multiple"===this.selectVariant)){let t=e.querySelector(".ActionListContent");"true"===t.getAttribute("aria-checked")&&rd(this,et,"m",ef).call(this,t)}}};ei=new WeakMap,er=new WeakMap,en=new WeakMap,eo=new WeakMap,es=new WeakMap,et=new WeakSet,ea=function(){let{signal:e}=rd(this,ei,"f");for(let t of this.querySelectorAll(ru.join(",")))t.addEventListener("click",rd(this,et,"m",el).bind(this),{signal:e}),t.addEventListener("keydown",rd(this,et,"m",el).bind(this),{signal:e})},el=function(e){if(!rd(this,et,"m",eh).call(this,e))return!1;let t=e.target.closest(rf.join(","));return!!t&&!!t.getAttribute("aria-disabled")&&(e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation(),!0)},ec=function(e){return e.target instanceof HTMLAnchorElement&&e instanceof KeyboardEvent&&"keydown"===e.type&&!(e.ctrlKey||e.altKey||e.metaKey||e.shiftKey)&&" "===e.key},eh=function(e){return e instanceof MouseEvent&&"click"===e.type||rd(this,et,"m",ec).call(this,e)},ed=function(e){e.preventDefault(),e.stopPropagation(),rd(this,et,"m",ev).call(this)?rd(this,et,"m",eb).call(this):rd(this,et,"m",eg).call(this)},eu=function(e,t){this.contains(t)&&(this.querySelector(".ActionListWrap").style.display="none");let i=new AbortController,{signal:r}=i,n=()=>{i.abort(),this.contains(t)&&(this.querySelector(".ActionListWrap").style.display="",rd(this,et,"m",ev).call(this)&&rd(this,et,"m",eb).call(this));let e=this.ownerDocument.activeElement,r=this.ownerDocument.activeElement===this.ownerDocument.body,n=this.contains(e),o=t.contains(e);(r||n||o)&&setTimeout(()=>{let t=this.ownerDocument.activeElement;(t===e||t===this.ownerDocument.body)&&this.invokerElement?.focus()},0)};t.addEventListener("close",n,{signal:r}),t.addEventListener("cancel",n,{signal:r})},ef=function(e){if("multiple"!==this.selectVariant&&setTimeout(()=>{rd(this,et,"m",ev).call(this)&&rd(this,et,"m",eb).call(this)}),"multiple"!==this.selectVariant&&"single"!==this.selectVariant)return;let t="true"!==e.getAttribute("aria-checked");if("single"===this.selectVariant){for(let i of(t&&e.setAttribute("aria-checked","true"),this.querySelectorAll("[aria-checked]")))i!==e&&i.setAttribute("aria-checked","false");rd(this,et,"m",ew).call(this)}else e.setAttribute("aria-checked",`${t}`);rd(this,et,"m",ey).call(this),this.dispatchEvent(new CustomEvent("itemActivated",{bubbles:!0,detail:{item:e.parentElement,checked:this.isItemChecked(e.parentElement)}}))},ep=function(){rd(this,et,"a",eE)?.focus(),rd(this,et,"m",ea).call(this),this.setAttribute("data-ready","true")},em=function(){rd(this,et,"m",eb).call(this)},eg=function(){this.popoverElement?.showPopover()},eb=function(){this.popoverElement?.hidePopover()},ev=function(){return this.popoverElement?.matches(":popover-open")},ew=function(){if("single"!==this.selectVariant||!this.dynamicLabel)return;let e=this.invokerLabel;if(!e)return;rh(this,er,rd(this,er,"f")||e.textContent||"","f");let t=this.querySelector("[aria-checked=true] .ActionListItem-label");if(t&&this.dynamicLabel){let i=document.createElement("span");i.classList.add("color-fg-muted");let r=document.createElement("span");i.textContent=this.dynamicLabelPrefix,r.textContent=t.textContent||"",e.replaceChildren(i,r)}else e.textContent=rd(this,er,"f")},ey=function(){if("single"===this.selectVariant){let e=this.querySelector("[data-list-inputs=true] input");if(!e)return;let t=this.selectedItems[0];t?(e.value=(t.value||t.label||"").trim(),e.removeAttribute("disabled")):e.setAttribute("disabled","disabled")}else if("none"!==this.selectVariant){let e=this.querySelector("[data-list-inputs=true]");if(!e)return;let t=e.querySelectorAll("input");for(let i of(t.length>0&&rh(this,en,rd(this,en,"f")||t[0].name,"f"),this.selectedItems)){let t=document.createElement("input");t.setAttribute("data-list-input","true"),t.type="hidden",t.autocomplete="off",t.name=rd(this,en,"f"),t.value=(i.value||i.label||"").trim(),e.append(t)}for(let e of t)e.remove()}},eE=function(){return this.querySelector(rf.join(","))},rc([tW.aC],rp.prototype,"includeFragment",void 0),rc([tW.aC],rp.prototype,"overlay",void 0),rp=rc([tW.p_],rp),window.customElements.get("action-menu")||(window.ActionMenuElement=rp,window.customElements.define("action-menu",rp));let rm="less",rg="equal",rb="greater";var rv=e=>{throw TypeError(e)},rw=(e,t,i)=>t.has(e)||rv("Cannot "+i),ry=(e,t,i)=>(rw(e,t,"read from private field"),i?i.call(e):t.get(e)),rE=(e,t,i)=>t.has(e)?rv("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(e):t.set(e,i),rA=(e,t,i,r)=>(rw(e,t,"write to private field"),t.set(e,i),i),rk=(e,t,i)=>(rw(e,t,"access private method"),i);let MinHeap=class MinHeap{constructor({compareFn:e}){rE(this,eL),rE(this,eA),rE(this,ek),rA(this,eA,e),rA(this,ek,[])}insert(e){ry(this,ek).push(e),rk(this,eL,eC).call(this)}pop(){let e=ry(this,ek)[0];return ry(this,ek)[ry(this,ek).length-1]&&(ry(this,ek)[0]=ry(this,ek)[ry(this,ek).length-1],ry(this,ek).pop()),rk(this,eL,eT).call(this),e}peek(){return ry(this,ek)[0]}delete(e){let t=ry(this,ek).indexOf(e);-1!==t&&(rT(ry(this,ek),t,ry(this,ek).length-1),ry(this,ek).pop(),rk(this,eL,eT).call(this))}clear(){rA(this,ek,[])}get size(){return ry(this,ek).length}};function rL(e){return Math.floor((e-1)/2)}function rT(e,t,i){let r=e[t];e[t]=e[i],e[i]=r}eA=new WeakMap,ek=new WeakMap,eL=new WeakSet,eT=function(){let e=0;for(;2*e+10&&ry(this,eA).call(this,ry(this,ek)[t],(e=ry(this,ek),e[rL(t)]))===rm;)rT(ry(this,ek),t,rL(t)),t=rL(t)};var rC=Object.defineProperty,rx=e=>{throw TypeError(e)},rS=(e,t,i)=>t.has(e)||rx("Cannot "+i),rM=(e,t,i)=>(rS(e,t,"read from private field"),i?i.call(e):t.get(e)),rI=(e,t,i)=>t.has(e)?rx("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(e):t.set(e,i),rP=(e,t,i,r)=>(rS(e,t,"write to private field"),t.set(e,i),i);ex=Symbol.toStringTag;let Deferred=class Deferred{constructor(){((e,t,i)=>{let r;return(r="symbol"!=typeof t?t+"":t)in e?rC(e,r,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[r]=i})(this,ex,"Deferred"),rI(this,eS),rI(this,eM),rI(this,eI),rP(this,eS,new Promise((e,t)=>{rP(this,eM,e),rP(this,eI,t)}))}then(e,t){return Promise.prototype.then.apply(rM(this,eS),[e,t])}catch(e){return Promise.prototype.catch.apply(rM(this,eS),[e])}finally(e){return Promise.prototype.finally.apply(rM(this,eS),[e])}resolve(e){rM(this,eM).call(this,e)}reject(e){rM(this,eI).call(this,e)}getPromise(){return rM(this,eS)}};eS=new WeakMap,eM=new WeakMap,eI=new WeakMap;var rD=e=>{throw TypeError(e)},rO=(e,t,i)=>t.has(e)||rD("Cannot "+i),rR=(e,t,i)=>(rO(e,t,"read from private field"),i?i.call(e):t.get(e)),rH=(e,t,i)=>t.has(e)?rD("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(e):t.set(e,i),rq=(e,t,i,r)=>(rO(e,t,"write to private field"),t.set(e,i),i),rF=(e,t,i)=>(rO(e,t,"access private method"),i);let LiveRegionElement=class LiveRegionElement extends HTMLElement{constructor(){if(super(),rH(this,eR),rH(this,eP),rH(this,eD),rH(this,eO),!this.shadowRoot){const e=(rV||((rV=document.createElement("template")).innerHTML=rj),rV);this.attachShadow({mode:"open"}).appendChild(e.content.cloneNode(!0))}rq(this,eP,!1),rq(this,eO,null),rq(this,eD,new MinHeap({compareFn:rN}))}get delay(){let e=this.getAttribute("delay");return e?parseInt(e,10):150}set delay(e){this.setAttribute("delay",`${e}`)}announce(e,t={}){let{delayMs:i,politeness:r="polite"}=t,n=Date.now(),o=new Deferred,s={deferred:o,politeness:r,contents:e,scheduled:void 0!==i?n+i:n};return rR(this,eD).insert(s),rF(this,eR,eH).call(this),{...o.getPromise(),cancel:()=>{rR(this,eD).delete(s),o.resolve()}}}announceFromElement(e,t){var i;let r,n=(r="",(i=e).hasAttribute("aria-label")?r=i.getAttribute("aria-label"):i.innerText?r=i.innerText:i.textContent&&(r=i.textContent),r?r.trim():"");return""!==n?this.announce(n,t):{...Promise.resolve(),cancel:rW}}getMessage(e="polite"){let t=this.shadowRoot?.getElementById(e);if(!t)throw Error("Unable to find container for message");return t.textContent}clear(){null!==rR(this,eO)&&(clearTimeout(rR(this,eO)),rq(this,eO,null)),rq(this,eP,!1),rR(this,eD).clear()}};eP=new WeakMap,eD=new WeakMap,eO=new WeakMap,eR=new WeakSet,eH=function(){if(rR(this,eP))return;let e=rR(this,eD).peek();if(!e)return;null!==rR(this,eO)&&(clearTimeout(rR(this,eO)),rq(this,eO,null));let t=Date.now();if(e.scheduled<=t){(e=rR(this,eD).pop())&&rF(this,eR,eq).call(this,e),rF(this,eR,eH).call(this);return}let i=e.scheduled-t;rq(this,eO,window.setTimeout(()=>{rq(this,eO,null),rF(this,eR,eH).call(this)},i))},eq=function(e){rq(this,eP,!0);let{contents:t,deferred:i,politeness:r}=e,n=this.shadowRoot?.getElementById(r);if(!n)throw rq(this,eP,!1),Error(`Unable to find container for message. Expected a container with id="${r}"`);n.textContent===t?n.textContent=`${t}\xa0`:n.textContent=t,null!==rR(this,eO)&&clearTimeout(rR(this,eO)),i.resolve(),this.delay>0?rq(this,eO,window.setTimeout(()=>{rq(this,eO,null),rq(this,eP,!1),rF(this,eR,eH).call(this)},this.delay)):(rq(this,eO,null),rq(this,eP,!1),rF(this,eR,eH).call(this))};let rV=null,rj=` + +
+
+`;function rN(e,t){return e.politeness===t.politeness?e.scheduled===t.scheduled?rg:e.scheduled=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s},r$=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)},rB=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i};let rz=['[role="option"]'],rK=rz.join(","),rY=rz.map(e=>`:not([hidden]) > ${e}`).join(",");(o=tf||(tf={}))[o.REMOTE=0]="REMOTE",o[o.EVENTUALLY_LOCAL=1]="EVENTUALLY_LOCAL",o[o.LOCAL=2]="LOCAL",(s=tp||(tp={}))[s.BODY=0]="BODY",s[s.BANNER=1]="BANNER";let rU=(()=>{let e=new Set,t=null;function i(){for(let t of e)t.updateAnchorPosition()}return r=>{window.addEventListener("resize",i),window.addEventListener("scroll",i),t||(t=new ResizeObserver(()=>{for(let t of e)t.updateAnchorPosition()})),t.observe(r.ownerDocument.documentElement),r.addEventListener("dialog:close",()=>{r.invokerElement?.setAttribute("aria-expanded","false"),e.delete(r)}),r.addEventListener("dialog:open",()=>{e.add(r)})}})(),rX=class SelectPanelElement extends HTMLElement{constructor(){super(...arguments),eF.add(this),eV.set(this,void 0),ej.set(this,void 0),eN.set(this,""),eW.set(this,""),e_.set(this,new Map),e$.set(this,null),eB.set(this,null),ez.set(this,!1)}get open(){return this.dialog.open}get selectVariant(){return this.getAttribute("data-select-variant")}get ariaSelectionType(){return"multiple"===this.selectVariant?"aria-checked":"aria-selected"}set selectVariant(e){e?this.setAttribute("data-select-variant",e):this.removeAttribute("variant")}get dynamicLabelPrefix(){let e=this.getAttribute("data-dynamic-label-prefix");return e?`${e}:`:""}get dynamicAriaLabelPrefix(){let e=this.getAttribute("data-dynamic-aria-label-prefix");return e?`${e}:`:""}set dynamicLabelPrefix(e){this.setAttribute("data-dynamic-label",e)}get dynamicLabel(){return this.hasAttribute("data-dynamic-label")}set dynamicLabel(e){this.toggleAttribute("data-dynamic-label",e)}get invokerElement(){let e=this.querySelector("dialog")?.id;if(!e)return null;for(let t of this.querySelectorAll("[aria-controls]"))if(t.getAttribute("aria-controls")===e)return t;return null}get closeButton(){return this.querySelector("button[data-close-dialog-id]")}get invokerLabel(){return this.invokerElement?this.invokerElement.querySelector(".Button-label"):null}get selectedItems(){return Array.from(r$(this,e_,"f").values())}get align(){return this.getAttribute("anchor-align")||"start"}get side(){return this.getAttribute("anchor-side")||"outside-bottom"}updateAnchorPosition(){if(this&&null===this.offsetParent&&this.hide(),this.invokerElement){let{top:e,left:t}=(0,tz.uG)(this.dialog,this.invokerElement,{align:this.align,side:this.side,anchorOffset:4});this.dialog.style.top=`${e}px`,this.dialog.style.left=`${t}px`,this.dialog.style.bottom="auto",this.dialog.style.right="auto"}}connectedCallback(){let{signal:e}=rB(this,ej,new AbortController,"f");this.addEventListener("keydown",this,{signal:e}),this.addEventListener("click",this,{signal:e}),this.addEventListener("mousedown",this,{signal:e}),this.addEventListener("input",this,{signal:e}),this.addEventListener("remote-input-success",this,{signal:e}),this.addEventListener("remote-input-error",this,{signal:e}),this.addEventListener("loadstart",this,{signal:e}),r$(this,eF,"m",ta).call(this),r$(this,eF,"m",tl).call(this),r$(this,eF,"m",eK).call(this),rU(this),rl(this,()=>!!this.remoteInput,()=>{this.remoteInput.addEventListener("loadstart",this,{signal:e}),this.remoteInput.addEventListener("loadend",this,{signal:e})}),rl(this,()=>!!this.includeFragment,()=>{this.includeFragment.addEventListener("include-fragment-replaced",this,{signal:e}),this.includeFragment.addEventListener("error",this,{signal:e}),this.includeFragment.addEventListener("loadend",this,{signal:e})}),rB(this,eV,new IntersectionObserver(e=>{for(let t of e){let e=t.target;t.isIntersecting&&e===this.dialog&&(this.filterInputTextField&&document.activeElement!==this.filterInputTextField&&this.filterInputTextField.focus(),this.dialog.setAttribute("data-ready","true"),this.updateAnchorPosition(),r$(this,eF,"a",tt)===tf.LOCAL&&r$(this,eF,"m",e4).call(this))}}),"f"),rl(this,()=>!!this.dialog,()=>{r$(this,eV,"f").observe(this.dialog),this.dialog.addEventListener("close",this,{signal:e}),"true"===this.getAttribute("data-open-on-load")&&this.show()}),r$(this,eF,"a",tt)===tf.LOCAL&&rl(this,()=>this.items.length>0,()=>{r$(this,eF,"m",e4).call(this),r$(this,eF,"m",tl).call(this)})}disconnectedCallback(){r$(this,ej,"f").abort()}handleEvent(e){if(e.target===this.filterInputTextField)return void r$(this,eF,"m",e9).call(this,e);if(e.target===this.remoteInput)return void r$(this,eF,"m",e2).call(this,e);let t=this.invokerElement?.contains(e.target),i=this.closeButton?.contains(e.target),r=r$(this,eF,"m",eG).call(this,e);if(t&&"mousedown"===e.type||"mousedown"===e.type&&e.target instanceof HTMLInputElement)return;if("mousedown"===e.type)return void e.preventDefault();if(t&&r)return void r$(this,eF,"m",tn).call(this,e);if(i&&r)return;if("keydown"===e.type&&e instanceof KeyboardEvent&&e.target.closest(rY)){let t=e.ctrlKey||e.altKey||e.metaKey,i=1===e.key.length&&/[a-z\d]/i.test(e.key);!t&&i&&e.stopPropagation()}if(e.target===this.dialog&&"close"===e.type){if(this.dialog.removeAttribute("data-ready"),this.invokerElement?.setAttribute("aria-expanded","false"),this.filterInputTextField){let e=this.filterInputTextField.value.length>0;this.filterInputTextField.value="",e&&this.filterInputTextField.dispatchEvent(new Event("input"))}this.dispatchEvent(new CustomEvent("panelClosed",{detail:{panel:this},bubbles:!0}));return}let n=e.target.closest(rY)?.parentElement;if(null!=n&&r){if(r$(this,eF,"m",eU).call(this,e))return;let t=n.closest("[data-show-dialog-id]");if(t){let i=this.ownerDocument.getElementById(t.getAttribute("data-show-dialog-id")||"");if(i&&this.contains(t)&&this.contains(i))return void r$(this,eF,"m",to).call(this,e,i)}r$(this,eF,"m",eX).call(this,e)&&(e.preventDefault(),r$(this,eF,"m",tu).call(this,n)?.click()),r$(this,eF,"m",ts).call(this,n);return}if("click"===e.type){let t=this.dialog.getBoundingClientRect();t.top<=e.clientY&&e.clientY<=t.top+t.height&&t.left<=e.clientX&&e.clientX<=t.left+t.width||this.hide()}e.target instanceof tN.T&&r$(this,eF,"m",e1).call(this,e)}show(){this.updateAnchorPosition(),this.dialog.showModal(),this.invokerElement?.setAttribute("aria-expanded","true");let e=new CustomEvent("dialog:open",{detail:{dialog:this.dialog}});this.dispatchEvent(e)}hide(){this.dialog.close()}get visibleItems(){return Array.from(this.querySelectorAll(rY)).map(e=>e.parentElement)}get items(){return Array.from(this.querySelectorAll(rK)).map(e=>e.parentElement)}get focusableItem(){for(let e of this.items){let t=r$(this,eF,"m",tu).call(this,e);if(t&&"0"===t.getAttribute("tabindex"))return t}}getItemById(e){return this.querySelector(`li[data-item-id="${e}"`)}isItemDisabled(e){return!!e&&e.classList.contains("ActionListItem--disabled")}disableItem(e){e&&(e.classList.add("ActionListItem--disabled"),r$(this,eF,"m",tu).call(this,e).setAttribute("aria-disabled","true"))}enableItem(e){e&&(e.classList.remove("ActionListItem--disabled"),r$(this,eF,"m",tu).call(this,e).removeAttribute("aria-disabled"))}isItemHidden(e){return!!e&&e.hasAttribute("hidden")}isItemChecked(e){return!!e&&"true"===r$(this,eF,"m",tu).call(this,e).getAttribute(this.ariaSelectionType)}checkItem(e){e&&("single"===this.selectVariant||"multiple"===this.selectVariant)&&!this.isItemChecked(e)&&r$(this,eF,"m",ts).call(this,e)}uncheckItem(e){e&&("single"===this.selectVariant||"multiple"===this.selectVariant)&&this.isItemChecked(e)&&r$(this,eF,"m",ts).call(this,e)}};eV=new WeakMap,ej=new WeakMap,eN=new WeakMap,eW=new WeakMap,e_=new WeakMap,e$=new WeakMap,eB=new WeakMap,ez=new WeakMap,eF=new WeakSet,eK=function(){let{signal:e}=r$(this,ej,"f");for(let t of this.querySelectorAll(rz.join(",")))t.addEventListener("click",r$(this,eF,"m",eU).bind(this),{signal:e}),t.addEventListener("keydown",r$(this,eF,"m",eU).bind(this),{signal:e})},eY=function(){let e=!1;if("single"===this.selectVariant)for(let t of this.items){let i=r$(this,eF,"m",tu).call(this,t);i&&(!this.isItemHidden(t)&&this.isItemChecked(t)&&!e?(i.setAttribute("tabindex","0"),e=!0):i.setAttribute("tabindex","-1"),t.removeAttribute("tabindex"))}else for(let e of this.items){let t=r$(this,eF,"m",tu).call(this,e);t&&(t.setAttribute("tabindex","-1"),e.removeAttribute("tabindex"))}!e&&r$(this,eF,"a",tc)&&r$(this,eF,"m",tu).call(this,r$(this,eF,"a",tc))?.setAttribute("tabindex","0")},eU=function(e){if(!r$(this,eF,"m",eG).call(this,e))return!1;let t=e.target.closest(rY);return!!t&&!!t.getAttribute("aria-disabled")&&(e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation(),!0)},eX=function(e){return e.target instanceof HTMLAnchorElement&&e instanceof KeyboardEvent&&"keydown"===e.type&&!(e.ctrlKey||e.altKey||e.metaKey||e.shiftKey)&&" "===e.key},eG=function(e){return e instanceof MouseEvent&&"click"===e.type||r$(this,eF,"m",eX).call(this,e)},eJ=function(){for(let e of this.items){let t=r$(this,eF,"m",tu).call(this,e);if(!t)continue;let i=t.getAttribute("data-value");i&&r$(this,e_,"f").has(i)&&t.setAttribute(this.ariaSelectionType,"true")}r$(this,eF,"m",tl).call(this)},eQ=function(e){let t=r$(this,eF,"m",tu).call(this,e);if(!t)return;let i=t.getAttribute("data-value");i&&r$(this,e_,"f").set(i,{value:i,label:t.querySelector(".ActionListItem-label")?.textContent?.trim(),inputName:t.getAttribute("data-input-name")})},eZ=function(e){let t=r$(this,eF,"m",tu).call(this,e);if(!t)return;let i=t.getAttribute("data-value");i&&r$(this,e_,"f").delete(i)},e0=function(){r$(this,eF,"a",ti)&&(r$(this,e$,"f")&&clearTimeout(r$(this,e$,"f")),r$(this,eB,"f")&&clearTimeout(r$(this,eB,"f")),rB(this,eB,setTimeout(()=>{this.liveRegion.announce("Loading")},2e3),"f"),rB(this,e$,setTimeout(()=>{r$(this,eF,"a",ti)?.showLeadingSpinner()},1e3),"f"))},e1=function(e){switch(e.type){case"include-fragment-replaced":r$(this,eF,"m",e4).call(this);break;case"loadstart":r$(this,eF,"m",e3).call(this,!1);break;case"loadend":r$(this,eF,"a",ti)?.hideLeadingSpinner(),this.dispatchEvent(new CustomEvent("loadend"));break;case"error":{r$(this,eF,"m",e3).call(this,!0);let t=this.fragmentErrorElement;throw t&&!t.hasAttribute("hidden")&&this.liveRegion.announceFromElement(t,{politeness:"assertive"}),Error(e.detail.error)}}},e3=function(e){for(let t of this.includeFragment.querySelectorAll("[data-show-on-error]"))t instanceof HTMLElement&&(t.hidden=!e);for(let t of this.includeFragment.querySelectorAll("[data-hide-on-error]"))t instanceof HTMLElement&&(t.hidden=e)},e2=function(e){switch(e.type){case"remote-input-success":r$(this,eF,"m",e8).call(this),r$(this,eF,"m",e4).call(this),r$(this,eF,"m",eJ).call(this);break;case"remote-input-error":this.bodySpinner?.setAttribute("hidden",""),this.includeFragment||0===this.visibleItems.length?r$(this,eF,"m",e6).call(this,tp.BODY):r$(this,eF,"m",e6).call(this,tp.BANNER);break;case"loadstart":if(!r$(this,eF,"m",tr).call(this)){if(r$(this,eF,"m",e8).call(this),this.bodySpinner?.removeAttribute("hidden"),this.bodySpinner)break;r$(this,eF,"m",e0).call(this)}break;case"loadend":r$(this,eF,"a",ti)?.hideLeadingSpinner(),r$(this,eB,"f")&&clearTimeout(r$(this,eB,"f")),r$(this,e$,"f")&&clearTimeout(r$(this,e$,"f")),this.dispatchEvent(new CustomEvent("loadend"))}},e7=function(e,t){return(e.getAttribute("data-filter-string")||e.textContent||"").toLowerCase().indexOf(t.toLowerCase())>-1},e9=function(e){if("keydown"===e.type){let t=e.key;if("Enter"===t){let e=this.visibleItems[0];if(e){let t=r$(this,eF,"m",tu).call(this,e);t&&t.click()}}else if("ArrowDown"===t){let t=this.focusableItem||r$(this,eF,"m",tu).call(this,this.visibleItems[0]);t&&(t.focus(),e.preventDefault())}else if("Home"===t){let t=this.visibleItems[0];if(t){let i=r$(this,eF,"m",tu).call(this,t);i&&i.focus(),e.preventDefault()}}else if("End"===t&&this.visibleItems.length>0){let t=this.visibleItems[this.visibleItems.length-1],i=r$(this,eF,"m",tu).call(this,t);i&&i.focus(),e.preventDefault()}}if("input"===e.type&&(this.bodySpinner||r$(this,eF,"m",tr).call(this)||r$(this,eF,"m",e0).call(this),r$(this,eF,"a",tt)===tf.LOCAL||r$(this,eF,"a",tt)===tf.EVENTUALLY_LOCAL)){if(this.includeFragment)return void this.includeFragment.refetch();r$(this,eF,"m",e4).call(this)}},e4=function(){if(!this.list)return;let e=!1;if(r$(this,eF,"m",tr).call(this)){let t=this.filterInputTextField?.value??"",i=this.filterFn||r$(this,eF,"m",e7);for(let r of this.items)i(r,t)?(r$(this,eF,"m",td).call(this,r),e=!0):r$(this,eF,"m",th).call(this,r)}else e=this.items.length>0;for(let e of(r$(this,eF,"m",eY).call(this),r$(this,eF,"m",te).call(this),this.items)){let t=r$(this,eF,"m",tu).call(this,e);if(!t)continue;let i=t.getAttribute("data-value");r$(this,ez,"f")?i&&!r$(this,e_,"f").has(i)&&t.setAttribute(this.ariaSelectionType,"false"):i&&!r$(this,e_,"f").has(i)&&this.isItemChecked(e)&&r$(this,eF,"m",eQ).call(this,e)}if(rB(this,ez,!0,"f"),this.noResults){if(r$(this,eF,"m",e5).call(this))return void this.noResults.setAttribute("hidden","");e?(this.noResults.setAttribute("hidden",""),this.list?.querySelector(".ActionListWrap")?.removeAttribute("hidden")):(this.list?.querySelector(".ActionListWrap")?.setAttribute("hidden",""),this.noResults.removeAttribute("hidden"))}},e5=function(){return!(!this.fragmentErrorElement||this.fragmentErrorElement.hasAttribute("hidden"))||!!this.bannerErrorElement&&!this.bannerErrorElement.hasAttribute("hidden")},e6=function(e){let t=this.fragmentErrorElement;if(e===tp.BODY&&this.fragmentErrorElement?(this.fragmentErrorElement.removeAttribute("hidden"),this.bannerErrorElement.setAttribute("hidden","")):(t=this.bannerErrorElement,this.bannerErrorElement?.removeAttribute("hidden"),this.fragmentErrorElement?.setAttribute("hidden","")),t&&!t.hasAttribute("hidden"))return void this.liveRegion.announceFromElement(t,{politeness:"assertive"})},e8=function(){this.fragmentErrorElement?.setAttribute("hidden",""),this.bannerErrorElement.setAttribute("hidden","")},te=function(){if(this.open&&this.list){let e=this.visibleItems;if(e.length>0)this.liveRegion.announce(`${e.length} result${1===e.length?"":"s"} tab for results`);else{let e=this.noResults;e&&this.liveRegion.announceFromElement(e)}}},tt=function(){if(!this.list)return tf.REMOTE;switch(this.list.getAttribute("data-fetch-strategy")){case"local":return tf.LOCAL;case"eventually_local":return tf.EVENTUALLY_LOCAL;default:return tf.REMOTE}},ti=function(){return this.filterInputTextField?.closest("primer-text-field")},tr=function(){return r$(this,eF,"a",tt)===tf.LOCAL||r$(this,eF,"a",tt)===tf.EVENTUALLY_LOCAL},tn=function(e){e.preventDefault(),e.stopPropagation(),this.open?this.hide():this.show()},to=function(e,t){this.querySelector(".ActionListWrap").style.display="none";let i=new AbortController,{signal:r}=i,n=()=>{i.abort(),this.querySelector(".ActionListWrap").style.display="",this.open&&this.hide();let e=this.ownerDocument.activeElement,t=this.ownerDocument.activeElement===this.ownerDocument.body,r=this.contains(e);(t||r)&&setTimeout(()=>this.invokerElement?.focus(),0)};t.addEventListener("close",n,{signal:r}),t.addEventListener("cancel",n,{signal:r})},ts=function(e){if("multiple"!==this.selectVariant&&setTimeout(()=>{this.open&&this.hide()}),"multiple"!==this.selectVariant&&"single"!==this.selectVariant)return;let t=this.isItemChecked(e),i=!t;if(!this.dispatchEvent(new CustomEvent("beforeItemActivated",{bubbles:!0,cancelable:!0,detail:{item:e,checked:i,value:r$(this,eF,"m",tu).call(this,e)?.getAttribute("data-value")}})))return;let r=r$(this,eF,"m",tu).call(this,e);if("single"===this.selectVariant){if(r?.getAttribute("href"))return;if(!t){for(let e of this.items)r$(this,eF,"m",tu).call(this,e)?.setAttribute(this.ariaSelectionType,"false");r$(this,e_,"f").clear(),i&&(r$(this,eF,"m",eQ).call(this,e),r?.setAttribute(this.ariaSelectionType,"true")),r$(this,eF,"m",ta).call(this)}}else r?.setAttribute(this.ariaSelectionType,`${i}`),i?r$(this,eF,"m",eQ).call(this,e):r$(this,eF,"m",eZ).call(this,e);r$(this,eF,"m",tl).call(this),r$(this,eF,"m",eY).call(this),this.dispatchEvent(new CustomEvent("itemActivated",{bubbles:!0,detail:{item:e,checked:i,value:r$(this,eF,"m",tu).call(this,e)?.getAttribute("data-value")}}))},ta=function(){if(!this.dynamicLabel)return;let e=this.invokerLabel;if(!e)return;rB(this,eN,r$(this,eN,"f")||e.textContent||"","f");let t=this.querySelector(`[${this.ariaSelectionType}=true] .ActionListItem-label`)?.textContent||r$(this,eN,"f");if(t){let i=document.createElement("span");i.classList.add("color-fg-muted");let r=document.createElement("span");i.textContent=`${this.dynamicLabelPrefix} `,r.textContent=t,e.replaceChildren(i,r),this.dynamicAriaLabelPrefix&&this.invokerElement?.setAttribute("aria-label",`${this.dynamicAriaLabelPrefix} ${t.trim()}`)}else e.textContent=r$(this,eN,"f")},tl=function(){if("single"===this.selectVariant){let e=this.querySelector("[data-select-panel-inputs=true] input")??this.querySelector("[data-list-inputs=true] input");if(!e)return;let t=this.selectedItems[0];t?(e.value=(t.value||t.label||"").trim(),t.inputName&&(e.name=t.inputName),e.removeAttribute("disabled")):r$(this,ez,"f")&&e.setAttribute("disabled","disabled")}else if("none"!==this.selectVariant){let e=!!this.querySelector("[data-select-panel-inputs=true]"),t=this.querySelector("[data-select-panel-inputs=true]")??this.querySelector("[data-list-inputs=true]");if(!t)return;let i=t.querySelectorAll("input");for(let r of(i.length>0&&rB(this,eW,r$(this,eW,"f")||i[0].name,"f"),this.selectedItems)){let i=document.createElement("input");i.setAttribute(`${e?"data-select-panel-input":"data-list-input"}`,"true"),i.type="hidden",i.autocomplete="off",i.name=r.inputName||r$(this,eW,"f"),i.value=(r.value||r.label||"").trim(),t.append(i)}for(let e of i)e.remove()}},tc=function(){return this.querySelector(rY)?.parentElement||null},th=function(e){e&&e.setAttribute("hidden","hidden")},td=function(e){e&&e.removeAttribute("hidden")},tu=function(e){return e.querySelector(".ActionListContent")},r_([tW.aC],rX.prototype,"includeFragment",void 0),r_([tW.aC],rX.prototype,"dialog",void 0),r_([tW.aC],rX.prototype,"filterInputTextField",void 0),r_([tW.aC],rX.prototype,"remoteInput",void 0),r_([tW.aC],rX.prototype,"list",void 0),r_([tW.aC],rX.prototype,"noResults",void 0),r_([tW.aC],rX.prototype,"fragmentErrorElement",void 0),r_([tW.aC],rX.prototype,"bannerErrorElement",void 0),r_([tW.aC],rX.prototype,"bodySpinner",void 0),r_([tW.aC],rX.prototype,"liveRegion",void 0),rX=r_([tW.p_],rX),window.customElements.get("select-panel")||(window.SelectPanelElement=rX,window.customElements.define("select-panel",rX));var rG=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s};let rJ=class DetailsToggleElement extends HTMLElement{toggle(){if(this.detailsTarget.hasAttribute("open")){let e=this.summaryTarget.getAttribute("data-aria-label-closed");e&&this.summaryTarget.setAttribute("aria-label",e),this.summaryTarget.setAttribute("aria-expanded","false")}else{let e=this.summaryTarget.getAttribute("data-aria-label-open");e&&this.summaryTarget.setAttribute("aria-label",e),this.summaryTarget.setAttribute("aria-expanded","true")}}};function rQ(e,t){let i=e.closest("[role=tree]");if(!i)return;let r=document.createTreeWalker(i,NodeFilter.SHOW_ELEMENT,e=>e instanceof HTMLElement&&"treeitem"===e.getAttribute("role")?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP),n=r.firstChild();for(;n!==e;)n=r.nextNode();let o="next"===t?r.nextNode():r.previousNode();for(;o instanceof HTMLElement&&function(e,t){for(let i of t.querySelectorAll("[role=treeitem][aria-expanded=false]"))if(e!==i&&i.closest("li")?.contains(e))return i;return null}(o,i);)o="next"===t?r.nextNode():r.previousNode();return o instanceof HTMLElement?o:void 0}function rZ(e){let t=e.closest("[role=group]"),i=t?.closest("[role=treeitem]");return i instanceof HTMLElement?i:void 0}rG([tW.aC],rJ.prototype,"detailsTarget",void 0),rG([tW.aC],rJ.prototype,"summaryTarget",void 0),rJ=rG([tW.p_],rJ),window.DetailsToggleElement=rJ;var r0=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s},r1=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i},r3=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)};let r2=class TreeViewElement extends HTMLElement{constructor(){super(...arguments),tm.add(this),tg.set(this,void 0)}connectedCallback(){var e;let{signal:t}=r1(this,tg,new AbortController,"f");this.addEventListener("click",this,{signal:t}),this.addEventListener("focusin",this,{signal:t}),this.addEventListener("keydown",this,{signal:t}),e=this,(0,tz.zB)(e,{bindKeys:tz.z0.ArrowVertical|tz.z0.ArrowHorizontal|tz.z0.HomeAndEnd|tz.z0.Backspace,getNextFocusable:(e,t,i)=>{if(t instanceof HTMLElement){try{if(t.closest("dialog:modal"))return}catch{}return function(e,t){let i=function(e){if("treeitem"!==e.getAttribute("role"))throw Error("Element is not a treeitem");switch(e.getAttribute("aria-expanded")){case"true":return"open";case"false":return"closed";default:return"end"}}(e);switch(`${i} ${t.key}`){case"open ArrowRight":let r;return(r=e.querySelector("[role=treeitem]"))instanceof HTMLElement?r:void 0;case"open ArrowLeft":case"closed ArrowRight":case"end ArrowRight":return;case"closed ArrowLeft":case"end ArrowLeft":return rZ(e)}switch(t.key){case"ArrowUp":return rQ(e,"previous");case"ArrowDown":return rQ(e,"next");case"Backspace":return rZ(e)}}(t,i)??t}},focusInStrategy:()=>{let t=e.querySelector("[aria-current]");t=t?.checkVisibility()?t:null;let i=e.querySelector('[role="treeitem"]');return t instanceof HTMLElement?t:document.activeElement instanceof HTMLElement&&e.contains(document.activeElement)&&"treeitem"===document.activeElement.getAttribute("role")?document.activeElement:i instanceof HTMLElement?i:void 0}}),new MutationObserver(e=>{for(let t of e)for(let e of t.addedNodes)e instanceof HTMLElement&&e.querySelector("[aria-expanded=true]")&&r3(this,tm,"m",tb).call(this,e)}).observe(this,{childList:!0,subtree:!0}),new MutationObserver(e=>{if(!this.formInputContainer||!e.some(e=>e.target instanceof HTMLElement&&e.target.getAttribute("aria-checked")!==e.oldValue))return;let t=[];for(let e of this.querySelectorAll("[role=treeitem][aria-checked=true]")){let i=this.formInputPrototype.cloneNode();i.removeAttribute("data-target"),i.removeAttribute("form");let r={path:this.getNodePath(e)},n=this.getFormInputValueForNode(e);n&&(r.value=n),i.value=JSON.stringify(r),t.push(i)}this.formInputContainer.replaceChildren(...t)}).observe(this,{childList:!0,subtree:!0,attributeFilter:["aria-checked"]}),customElements.whenDefined("tree-view-sub-tree-node").then(()=>{r3(this,tm,"m",tb).call(this,this)})}disconnectedCallback(){r3(this,tg,"f").abort()}handleEvent(e){let t=r3(this,tm,"m",tw).call(this,e);t&&r3(this,tm,"m",ty).call(this,t,e)}getFormInputValueForNode(e){return e.getAttribute("data-value")}getNodePath(e){let t=e.getAttribute("data-path");return t?JSON.parse(t):[]}getNodeType(e){return e.getAttribute("data-node-type")}markCurrentAtPath(e){let t=JSON.stringify(e),i=this.querySelector(`[data-path="${CSS.escape(t)}"`);i&&(this.currentNode?.setAttribute("aria-current","false"),i.setAttribute("aria-current","true"))}get currentNode(){return this.querySelector("[aria-current=true]")}expandAtPath(e){let t=this.subTreeAtPath(e);t&&t.expand()}collapseAtPath(e){let t=this.subTreeAtPath(e);t&&t.collapse()}toggleAtPath(e){let t=this.subTreeAtPath(e);t&&t.toggle()}checkAtPath(e){let t=this.nodeAtPath(e);t&&this.setNodeCheckedValue(t,"true")}uncheckAtPath(e){let t=this.nodeAtPath(e);t&&this.setNodeCheckedValue(t,"false")}toggleCheckedAtPath(e){let t=this.nodeAtPath(e);t&&"leaf"===this.getNodeType(t)&&("true"===this.getNodeCheckedValue(t)?this.uncheckAtPath(e):this.checkAtPath(e))}checkedValueAtPath(e){let t=this.nodeAtPath(e);return t?this.getNodeCheckedValue(t):"false"}disabledValueAtPath(e){let t=this.nodeAtPath(e);return!!t&&this.getNodeDisabledValue(t)}nodeAtPath(e,t){let i=JSON.stringify(e);return this.querySelector(`${t||""}[data-path="${CSS.escape(i)}"]`)}subTreeAtPath(e){let t=this.nodeAtPath(e,"[data-node-type=sub-tree]");return t?t.closest("tree-view-sub-tree-node"):null}leafAtPath(e){return this.nodeAtPath(e,"[data-node-type=leaf]")}setNodeCheckedValue(e,t){e.setAttribute("aria-checked",t.toString())}getNodeCheckedValue(e){return e.getAttribute("aria-checked")||"false"}getNodeDisabledValue(e){return"true"===e.getAttribute("aria-disabled")}setNodeDisabledValue(e,t){t?e.setAttribute("aria-disabled","true"):e.removeAttribute("aria-disabled")}nodeHasCheckBox(e){return null!==e.querySelector(".TreeViewItemCheckbox")}nodeHasNativeAction(e){return e instanceof HTMLAnchorElement||e instanceof HTMLButtonElement}expandAncestorsForNode(e){let t=e.closest("tree-view-sub-tree-node");if(t)for(let e of t.eachAncestorSubTreeNode())e.expanded||e.expand()}infoFromNode(e,t){let i=this.getNodeType(e);if(!i)return null;let r=this.getNodeCheckedValue(e);return{node:e,type:i,path:this.getNodePath(e),checkedValue:t||r,previousCheckedValue:r}}};tg=new WeakMap,tm=new WeakSet,tb=function(e){for(let t of e.querySelectorAll("[aria-expanded=true]"))this.expandAncestorsForNode(t)},tv=function(e){return"click"===e.type},tw=function(e){let t=e.target,i=t.closest("[role=treeitem]");return!i||t.closest(".TreeViewItemToggle")||t.closest(".TreeViewItemLeadingAction")?null:i},ty=function(e,t){r3(this,tm,"m",tE).call(this,t,e)?r3(this,tm,"m",tA).call(this,t,e):r3(this,tm,"m",tv).call(this,t)?r3(this,tm,"m",tk).call(this,t,e):"focusin"===t.type?r3(this,tm,"m",tL).call(this,e):t instanceof KeyboardEvent&&r3(this,tm,"m",tT).call(this,t,e)},tE=function(e,t){return"click"===e.type&&this.nodeHasCheckBox(t)},tA=function(e,t){this.getNodeDisabledValue(t)?e.preventDefault():"leaf"===this.getNodeType(t)&&("true"===this.getNodeCheckedValue(t)?this.setNodeCheckedValue(t,"false"):this.setNodeCheckedValue(t,"true"))},tk=function(e,t){if(this.getNodeDisabledValue(t))return void e.preventDefault();if(!(t instanceof HTMLDivElement))return;let i=this.getNodePath(t);this.dispatchEvent(new CustomEvent("treeViewBeforeNodeActivated",{bubbles:!0,cancelable:!0,detail:this.infoFromNode(t)}))&&(this.nodeHasNativeAction(t)||this.toggleAtPath(i),this.dispatchEvent(new CustomEvent("treeViewNodeActivated",{bubbles:!0,detail:this.infoFromNode(t)})))},tL=function(e){let t=this.querySelector("[aria-selected=true]");t?.setAttribute("aria-selected","false"),e.setAttribute("aria-selected","true")},tT=function(e,t){if(t&&"leaf"===this.getNodeType(t))switch(e.key){case" ":case"Enter":if(this.getNodeDisabledValue(t)){e.preventDefault();break}this.nodeHasCheckBox(t)?(e.preventDefault(),"true"===this.getNodeCheckedValue(t)?this.setNodeCheckedValue(t,"false"):this.setNodeCheckedValue(t,"true")):t instanceof HTMLAnchorElement&&t.click()}},r0([tW.aC],r2.prototype,"formInputContainer",void 0),r0([tW.aC],r2.prototype,"formInputPrototype",void 0),r2=r0([tW.p_],r2),window.customElements.get("tree-view")||(window.TreeViewElement=r2,window.customElements.define("tree-view",r2));var r7=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s},r9=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)};let r4=class TreeViewIconPairElement extends HTMLElement{constructor(){super(...arguments),tC.add(this)}connectedCallback(){rl(this,()=>!!this.collapsedIcon&&!!this.expandedIcon,()=>{this.expanded=this.collapsedIcon.hidden})}showExpanded(){this.expanded=!0,r9(this,tC,"m",tx).call(this)}showCollapsed(){this.expanded=!1,r9(this,tC,"m",tx).call(this)}toggle(){this.expanded=!this.expanded,r9(this,tC,"m",tx).call(this)}};tC=new WeakSet,tx=function(){this.expanded?(this.expandedIcon.hidden=!1,this.collapsedIcon.hidden=!0):(this.expandedIcon.hidden=!0,this.collapsedIcon.hidden=!1)},r7([tW.aC],r4.prototype,"expandedIcon",void 0),r7([tW.aC],r4.prototype,"collapsedIcon",void 0),r4=r7([tW.p_],r4),window.customElements.get("tree-view-icon-pair")||(window.TreeViewIconPairElement=r4,window.customElements.define("tree-view-icon-pair",r4));var r5=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s},r6=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)},r8=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i};let ne=class TreeViewSubTreeNodeElement extends HTMLElement{constructor(){super(...arguments),tS.add(this),tM.set(this,null),tI.set(this,"success"),tP.set(this,void 0),tD.set(this,!1)}connectedCallback(){rl(this,()=>!!this.node&&!!this.subTree,()=>{r6(this,tS,"m",tV).call(this)});let{signal:e}=r8(this,tP,new AbortController,"f");this.addEventListener("click",this,{signal:e}),this.addEventListener("keydown",this,{signal:e}),rl(this,()=>!!this.includeFragment,()=>{this.includeFragment.addEventListener("loadstart",this,{signal:e}),this.includeFragment.addEventListener("error",this,{signal:e}),this.includeFragment.addEventListener("include-fragment-replace",this,{signal:e}),this.includeFragment.addEventListener("include-fragment-replaced",e=>{r6(this,tS,"m",tR).call(this,e)},{signal:e})}),rl(this,()=>!!this.retryButton,()=>{this.retryButton.addEventListener("click",e=>{r6(this,tS,"m",tH).call(this,e)},{signal:e})}),new MutationObserver(()=>{if("mixed_descendants"!==this.selectStrategy)return;let e="unknown";for(let t of this.eachDirectDescendantNode())switch(`${e} ${t.getAttribute("aria-checked")||"false"}`){case"unknown mixed":case"false mixed":case"true mixed":case"false true":case"true false":e="mixed";break;case"unknown false":e="false";break;case"unknown true":e="true"}"unknown"!==e&&this.node?.getAttribute("aria-checked")!==e&&this.node?.setAttribute("aria-checked",e)}).observe(this,{childList:!0,subtree:!0,attributeFilter:["aria-checked"]})}get expanded(){return null===r6(this,tM,"f")&&r8(this,tM,"true"===this.node.getAttribute("aria-expanded"),"f"),r6(this,tM,"f")}set expanded(e){r8(this,tM,e,"f"),r6(this,tS,"m",tV).call(this)}get loadingState(){return r6(this,tI,"f")}set loadingState(e){r8(this,tI,e,"f"),r6(this,tS,"m",tV).call(this)}get selectStrategy(){return this.node.getAttribute("data-select-strategy")||"descendants"}disconnectedCallback(){r6(this,tP,"f").abort()}handleEvent(e){e.target===this.toggleButton?r6(this,tS,"m",tO).call(this,e):e.target===this.includeFragment?r6(this,tS,"m",tR).call(this,e):e instanceof KeyboardEvent?r6(this,tS,"m",tq).call(this,e):e.target.closest("[role=treeitem]")===this.node&&"click"===e.type&&r6(this,tS,"a",tj)&&r6(this,tS,"m",tF).call(this,e)}expand(){let e=this.expanded;this.expanded=!0,!e&&this.treeView&&this.treeView.dispatchEvent(new CustomEvent("treeViewNodeExpanded",{bubbles:!0,detail:this.treeView?.infoFromNode(this.node)}))}collapse(){let e=!this.expanded;if(this.expanded=!1,!e&&this.treeView){let e=this.subTree.querySelector("[tabindex='0']");e?.setAttribute("tabindex","-1"),this.node.setAttribute("tabindex","0"),this.treeView.dispatchEvent(new CustomEvent("treeViewNodeCollapsed",{bubbles:!0,detail:this.treeView?.infoFromNode(this.node)}))}}toggle(){this.expanded?this.collapse():this.expand()}get nodes(){return this.querySelectorAll(":scope > [role=treeitem]")}*eachDirectDescendantNode(){for(let e of this.subTree.querySelectorAll(":scope > li > .TreeViewItemContainer > [role=treeitem]"))yield e;for(let e of this.subTree.querySelectorAll(":scope > tree-view-sub-tree-node > li > .TreeViewItemContainer > [role=treeitem]"))yield e}*eachDescendantNode(){for(let e of this.subTree.querySelectorAll("[role=treeitem]"))yield e}*eachAncestorSubTreeNode(){if(!this.treeView)return;let e=this;for(;e&&this.treeView.contains(e);)yield e,e=e.parentElement?.closest("tree-view-sub-tree-node")}get isEmpty(){return 0===this.nodes.length}get treeView(){return this.closest("tree-view")}toggleChecked(){let e="false"===(this.treeView?.getNodeCheckedValue(this.node)||"false")?"true":"false",t=[],i=this.treeView?.infoFromNode(this.node,e);if(i&&t.push(i),"descendants"===this.selectStrategy||"mixed_descendants"===this.selectStrategy)for(let i of this.eachDescendantNode()){let r=this.treeView?.infoFromNode(i,e);r&&t.push(r)}if(this.dispatchEvent(new CustomEvent("treeViewBeforeNodeChecked",{bubbles:!0,cancelable:!0,detail:t}))){for(let i of t)i.node.setAttribute("aria-checked",e);this.dispatchEvent(new CustomEvent("treeViewNodeChecked",{bubbles:!0,cancelable:!0,detail:t}))}}};tM=new WeakMap,tI=new WeakMap,tP=new WeakMap,tD=new WeakMap,tS=new WeakSet,tO=function(e){"click"===e.type&&(this.toggle(),e.stopPropagation())},tR=function(e){switch(e.type){case"loadstart":this.loadingState="loading";break;case"error":this.loadingState="error";break;case"include-fragment-replace":r8(this,tD,document.activeElement===this.loadingIndicator.closest("[role=treeitem]"),"f"),this.loadingState="success";break;case"include-fragment-replaced":if(this.expanded=!0,r6(this,tD,"f")){let e=this.querySelector("[role=group] > :first-child");if(!e)return;let t=e.querySelector("[role=treeitem]");if(!t)return;t.focus()}r8(this,tD,!1,"f")}},tH=function(e){"click"===e.type&&(this.loadingState="loading",this.includeFragment.refetch())},tq=function(e){let t=e.target.closest("[role=treeitem]");if(t&&this.treeView?.getNodeType(t)==="sub-tree")switch(e.key){case"Enter":if(this.treeView?.getNodeDisabledValue(t)){e.preventDefault();break}e.stopPropagation(),r6(this,tS,"a",tj)?this.toggleChecked():this.treeView?.nodeHasNativeAction(t)||this.toggle();break;case"ArrowRight":e.stopPropagation(),this.expand();break;case"ArrowLeft":e.stopPropagation(),this.collapse();break;case" ":if(this.treeView?.getNodeDisabledValue(t)){e.preventDefault();break}r6(this,tS,"a",tj)?(e.stopPropagation(),e.preventDefault(),this.toggleChecked()):t instanceof HTMLAnchorElement?t.click():this.treeView?.nodeHasNativeAction(t)||this.toggle()}},tF=function(e){this.treeView?.getNodeDisabledValue(this.node)?e.preventDefault():"click"===e.type&&(this.toggleChecked(),e.stopPropagation())},tV=function(){switch(this.expanded?(this.subTree&&(this.subTree.hidden=!1),this.node.setAttribute("aria-expanded","true"),this.treeView?.expandAncestorsForNode(this),this.iconPair&&this.iconPair.showExpanded(),this.expandedToggleIcon&&this.collapsedToggleIcon&&(this.expandedToggleIcon.removeAttribute("hidden"),this.collapsedToggleIcon.setAttribute("hidden","hidden"))):(this.subTree&&(this.subTree.hidden=!0),this.node.setAttribute("aria-expanded","false"),this.iconPair&&this.iconPair.showCollapsed(),this.expandedToggleIcon&&this.collapsedToggleIcon&&(this.expandedToggleIcon.setAttribute("hidden","hidden"),this.collapsedToggleIcon.removeAttribute("hidden"))),this.loadingState){case"loading":this.loadingFailureMessage&&(this.loadingFailureMessage.hidden=!0),this.loadingIndicator&&(this.loadingIndicator.hidden=!1);break;case"error":this.loadingIndicator&&(this.loadingIndicator.hidden=!0),this.loadingFailureMessage&&(this.loadingFailureMessage.hidden=!1);break;default:this.loadingIndicator&&(this.loadingIndicator.hidden=!0),this.loadingFailureMessage&&(this.loadingFailureMessage.hidden=!0)}},tj=function(){return this.querySelector(".TreeViewItemCheckbox")},r5([tW.aC],ne.prototype,"node",void 0),r5([tW.aC],ne.prototype,"subTree",void 0),r5([tW.aC],ne.prototype,"iconPair",void 0),r5([tW.aC],ne.prototype,"toggleButton",void 0),r5([tW.aC],ne.prototype,"expandedToggleIcon",void 0),r5([tW.aC],ne.prototype,"collapsedToggleIcon",void 0),r5([tW.aC],ne.prototype,"includeFragment",void 0),r5([tW.aC],ne.prototype,"loadingIndicator",void 0),r5([tW.aC],ne.prototype,"loadingFailureMessage",void 0),r5([tW.aC],ne.prototype,"retryButton",void 0),ne=r5([tW.p_],ne),window.customElements.get("tree-view-sub-tree-node")||(window.TreeViewSubTreeNodeElement=ne,window.customElements.define("tree-view-sub-tree-node",ne));let nt=class TreeViewIncludeFragmentElement extends tN.T{request(){let e=super.request(),t=new URL(e.url);return t.searchParams.set("path",this.getAttribute("data-path")||""),new Request(t,{method:e.method,headers:e.headers,credentials:e.credentials})}};nt=function(e,t,i,r){var n,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(s=(o<3?n(s):o>3?n(t,i,s):n(t,i))||s);return o>3&&s&&Object.defineProperty(t,i,s),s}([tW.p_],nt),window.customElements.get("tree-view-include-fragment")||(window.TreeViewIncludeFragmentElement=nt,window.customElements.define("tree-view-include-fragment",nt))},60612:()=>{let DetailsMenuElement=class DetailsMenuElement extends HTMLElement{get preload(){return this.hasAttribute("preload")}set preload(e){e?this.setAttribute("preload",""):this.removeAttribute("preload")}get src(){return this.getAttribute("src")||""}set src(e){this.setAttribute("src",e)}connectedCallback(){var l;let u;this.hasAttribute("role")||this.setAttribute("role","menu");let f=this.parentElement;if(!f)return;let p=f.querySelector("summary");p&&(p.setAttribute("aria-haspopup","menu"),p.hasAttribute("role")||p.setAttribute("role","button"));let m=[i(f,"compositionstart",e=>d(this,e)),i(f,"compositionend",e=>d(this,e)),i(f,"click",e=>a(f,e)),i(f,"change",e=>a(f,e)),i(f,"keydown",t=>(function(t,i,r){if(!(r instanceof KeyboardEvent)||t.querySelector("details[open]"))return;let n=e.get(i);if(!n||n.isComposing)return;let a=r.target instanceof Element&&"SUMMARY"===r.target.tagName;switch(r.key){case"Escape":t.hasAttribute("open")&&(h(t),r.preventDefault(),r.stopPropagation());break;case"ArrowDown":{a&&!t.hasAttribute("open")&&t.setAttribute("open","");let e=o(t,!0);e&&e.focus(),r.preventDefault()}break;case"ArrowUp":{a&&!t.hasAttribute("open")&&t.setAttribute("open","");let e=o(t,!1);e&&e.focus(),r.preventDefault()}break;case"n":if(s&&r.ctrlKey){let e=o(t,!0);e&&e.focus(),r.preventDefault()}break;case"p":if(s&&r.ctrlKey){let e=o(t,!1);e&&e.focus(),r.preventDefault()}break;case" ":case"Enter":{let e=document.activeElement;e instanceof HTMLElement&&c(e)&&e.closest("details")===t&&(r.preventDefault(),r.stopPropagation(),e.click())}}})(f,this,t)),i(f,"toggle",()=>r(f,this),{once:!0}),i(f,"toggle",()=>(function(e){if(e.hasAttribute("open"))for(let t of document.querySelectorAll("details[open] > details-menu")){let i=t.closest("details");i&&i!==e&&!i.contains(e)&&i.removeAttribute("open")}})(f)),this.preload?i(f,"mouseover",()=>r(f,this),{once:!0}):t,...(u=!1,[i(l=f,"mousedown",()=>u=!0),i(l,"keydown",()=>u=!1),i(l,"toggle",()=>{l.hasAttribute("open")&&!n(l)&&(u||function(e){let t=document.activeElement;if(t&&c(t)&&e.contains(t))return;let i=o(e,!0);i&&i.focus()}(l))})])];e.set(this,{subscriptions:m,loaded:!1,isComposing:!1})}disconnectedCallback(){let t=e.get(this);if(t)for(let i of(e.delete(this),t.subscriptions))i.unsubscribe()}};let e=new WeakMap,t={unsubscribe(){}};function i(e,t,r,n=!1){return e.addEventListener(t,r,n),{unsubscribe:()=>{e.removeEventListener(t,r,n)}}}function r(t,i){let r=i.getAttribute("src");if(!r)return;let o=e.get(i);if(!o||o.loaded)return;o.loaded=!0;let s=i.querySelector("include-fragment");s&&!s.hasAttribute("src")&&(s.addEventListener("loadend",()=>n(t)),s.setAttribute("src",r))}function n(e){if(!e.hasAttribute("open"))return!1;let t=e.querySelector("details-menu [autofocus]");return!!t&&(t.focus(),!0)}function o(e,t){let i=Array.from(e.querySelectorAll('[role^="menuitem"]:not([hidden]):not([disabled])')),r=document.activeElement,n=r instanceof HTMLElement?i.indexOf(r):-1,o=t?i[n+1]:i[n-1],s=t?i[0]:i[i.length-1];return o||s}let s=navigator.userAgent.match(/Macintosh/);function a(e,t){let i=t.target;if(i instanceof Element&&i.closest("details")===e){if("click"===t.type){let t=i.closest('[role="menuitem"], [role="menuitemradio"]');if(!t)return;let r=t.querySelector("input");if("LABEL"===t.tagName&&i===r)return;"LABEL"===t.tagName&&r&&!r.checked||l(t,e)}else if("change"===t.type){let t=i.closest('[role="menuitemradio"], [role="menuitemcheckbox"]');t&&l(t,e)}}}function l(e,t){if(e.hasAttribute("disabled")||"true"===e.getAttribute("aria-disabled"))return;let i=e.closest("details-menu");if(i&&i.dispatchEvent(new CustomEvent("details-menu-select",{cancelable:!0,detail:{relatedTarget:e}}))){!function(e,t){let i=t.querySelector("[data-menu-button]");if(!i)return;let r=function(e){if(!e)return null;let t=e.hasAttribute("data-menu-button-text")?e:e.querySelector("[data-menu-button-text]");return t?t.getAttribute("data-menu-button-text")||t.textContent:null}(e);if(r)i.textContent=r;else{let t=function(e){if(!e)return null;let t=e.hasAttribute("data-menu-button-contents")?e:e.querySelector("[data-menu-button-contents]");return t?t.innerHTML:null}(e);t&&(i.innerHTML=t)}}(e,t);for(let i of t.querySelectorAll('[role="menuitemradio"], [role="menuitemcheckbox"]')){let t=i.querySelector('input[type="radio"], input[type="checkbox"]'),r=(i===e).toString();t instanceof HTMLInputElement&&(r=t.indeterminate?"mixed":t.checked.toString()),i.setAttribute("aria-checked",r)}"menuitemcheckbox"!==e.getAttribute("role")&&h(t),i.dispatchEvent(new CustomEvent("details-menu-selected",{detail:{relatedTarget:e}}))}}function c(e){let t=e.getAttribute("role");return"menuitem"===t||"menuitemcheckbox"===t||"menuitemradio"===t}function h(e){if(!e.hasAttribute("open"))return;e.removeAttribute("open");let t=e.querySelector("summary");t&&t.focus()}function d(t,i){let r=e.get(t);r&&(r.isComposing="compositionstart"===i.type)}window.customElements.get("details-menu")||(window.DetailsMenuElement=DetailsMenuElement,window.customElements.define("details-menu",DetailsMenuElement))},70170:(e,t,i)=>{function r(e,t=0,{start:i=!0,middle:n=!0,once:o=!1}={}){let s,a=i,l=0,c=!1;function h(...r){if(c)return;let d=Date.now()-l;l=Date.now(),i&&n&&d>=t&&(a=!0),a?(a=!1,e.apply(this,r),o&&h.cancel()):(n&&d{l=Date.now(),e.apply(this,r),o&&h.cancel()},n?t-d:t))}return h.cancel=()=>{clearTimeout(s),c=!0},h}function n(e,t=0,{start:i=!1,middle:o=!1,once:s=!1}={}){return r(e,t,{start:i,middle:o,once:s})}i.d(t,{n:()=>r,s:()=>n})},90204:(e,t,i)=>{i.d(t,{R3:()=>o});let r=new Set(["\u{1F44B}","\u{1F91A}","\u{1F590}\uFE0F","\u270B","\u{1F596}","\u{1F44C}","\u{1F90F}","\u270C\uFE0F","\u{1F91E}","\u{1F91F}","\u{1F918}","\u{1F919}","\u{1F448}","\u{1F449}","\u{1F446}","\u{1F595}","\u{1F447}","\u261D\uFE0F","\u{1F44D}","\u{1F44E}","\u270A","\u{1F44A}","\u{1F91B}","\u{1F91C}","\u{1F44F}","\u{1F64C}","\u{1F450}","\u{1F932}","\u{1F64F}","\u270D\uFE0F","\u{1F485}","\u{1F933}","\u{1F4AA}","\u{1F9B5}","\u{1F9B6}","\u{1F442}","\u{1F9BB}","\u{1F443}","\u{1F476}","\u{1F9D2}","\u{1F466}","\u{1F467}","\u{1F9D1}","\u{1F471}","\u{1F468}","\u{1F9D4}","\u{1F471}\u200D\u2642\uFE0F","\u{1F468}\u200D\u{1F9B0}","\u{1F468}\u200D\u{1F9B1}","\u{1F468}\u200D\u{1F9B3}","\u{1F468}\u200D\u{1F9B2}","\u{1F469}","\u{1F471}\u200D\u2640\uFE0F","\u{1F469}\u200D\u{1F9B0}","\u{1F469}\u200D\u{1F9B1}","\u{1F469}\u200D\u{1F9B3}","\u{1F469}\u200D\u{1F9B2}","\u{1F9D3}","\u{1F474}","\u{1F475}","\u{1F64D}","\u{1F64D}\u200D\u2642\uFE0F","\u{1F64D}\u200D\u2640\uFE0F","\u{1F64E}","\u{1F64E}\u200D\u2642\uFE0F","\u{1F64E}\u200D\u2640\uFE0F","\u{1F645}","\u{1F645}\u200D\u2642\uFE0F","\u{1F645}\u200D\u2640\uFE0F","\u{1F646}","\u{1F646}\u200D\u2642\uFE0F","\u{1F646}\u200D\u2640\uFE0F","\u{1F481}","\u{1F481}\u200D\u2642\uFE0F","\u{1F481}\u200D\u2640\uFE0F","\u{1F64B}","\u{1F64B}\u200D\u2642\uFE0F","\u{1F64B}\u200D\u2640\uFE0F","\u{1F9CF}","\u{1F9CF}\u200D\u2642\uFE0F","\u{1F9CF}\u200D\u2640\uFE0F","\u{1F647}","\u{1F647}\u200D\u2642\uFE0F","\u{1F647}\u200D\u2640\uFE0F","\u{1F926}","\u{1F926}\u200D\u2642\uFE0F","\u{1F926}\u200D\u2640\uFE0F","\u{1F937}","\u{1F937}\u200D\u2642\uFE0F","\u{1F937}\u200D\u2640\uFE0F","\u{1F468}\u200D\u2695\uFE0F","\u{1F469}\u200D\u2695\uFE0F","\u{1F468}\u200D\u{1F393}","\u{1F469}\u200D\u{1F393}","\u{1F468}\u200D\u{1F3EB}","\u{1F469}\u200D\u{1F3EB}","\u{1F468}\u200D\u2696\uFE0F","\u{1F469}\u200D\u2696\uFE0F","\u{1F468}\u200D\u{1F33E}","\u{1F469}\u200D\u{1F33E}","\u{1F468}\u200D\u{1F373}","\u{1F469}\u200D\u{1F373}","\u{1F468}\u200D\u{1F527}","\u{1F469}\u200D\u{1F527}","\u{1F468}\u200D\u{1F3ED}","\u{1F469}\u200D\u{1F3ED}","\u{1F468}\u200D\u{1F4BC}","\u{1F469}\u200D\u{1F4BC}","\u{1F468}\u200D\u{1F52C}","\u{1F469}\u200D\u{1F52C}","\u{1F468}\u200D\u{1F4BB}","\u{1F469}\u200D\u{1F4BB}","\u{1F468}\u200D\u{1F3A4}","\u{1F469}\u200D\u{1F3A4}","\u{1F468}\u200D\u{1F3A8}","\u{1F469}\u200D\u{1F3A8}","\u{1F468}\u200D\u2708\uFE0F","\u{1F469}\u200D\u2708\uFE0F","\u{1F468}\u200D\u{1F680}","\u{1F469}\u200D\u{1F680}","\u{1F468}\u200D\u{1F692}","\u{1F469}\u200D\u{1F692}","\u{1F46E}","\u{1F46E}\u200D\u2642\uFE0F","\u{1F46E}\u200D\u2640\uFE0F","\u{1F575}\uFE0F","\u{1F575}\uFE0F\u200D\u2642\uFE0F","\u{1F575}\uFE0F\u200D\u2640\uFE0F","\u{1F482}","\u{1F482}\u200D\u2642\uFE0F","\u{1F482}\u200D\u2640\uFE0F","\u{1F477}","\u{1F477}\u200D\u2642\uFE0F","\u{1F477}\u200D\u2640\uFE0F","\u{1F934}","\u{1F478}","\u{1F473}","\u{1F473}\u200D\u2642\uFE0F","\u{1F473}\u200D\u2640\uFE0F","\u{1F472}","\u{1F9D5}","\u{1F935}","\u{1F470}","\u{1F930}","\u{1F931}","\u{1F47C}","\u{1F385}","\u{1F936}","\u{1F9B8}","\u{1F9B8}\u200D\u2642\uFE0F","\u{1F9B8}\u200D\u2640\uFE0F","\u{1F9B9}","\u{1F9B9}\u200D\u2642\uFE0F","\u{1F9B9}\u200D\u2640\uFE0F","\u{1F9D9}","\u{1F9D9}\u200D\u2642\uFE0F","\u{1F9D9}\u200D\u2640\uFE0F","\u{1F9DA}","\u{1F9DA}\u200D\u2642\uFE0F","\u{1F9DA}\u200D\u2640\uFE0F","\u{1F9DB}","\u{1F9DB}\u200D\u2642\uFE0F","\u{1F9DB}\u200D\u2640\uFE0F","\u{1F9DC}","\u{1F9DC}\u200D\u2642\uFE0F","\u{1F9DC}\u200D\u2640\uFE0F","\u{1F9DD}","\u{1F9DD}\u200D\u2642\uFE0F","\u{1F9DD}\u200D\u2640\uFE0F","\u{1F486}","\u{1F486}\u200D\u2642\uFE0F","\u{1F486}\u200D\u2640\uFE0F","\u{1F487}","\u{1F487}\u200D\u2642\uFE0F","\u{1F487}\u200D\u2640\uFE0F","\u{1F6B6}","\u{1F6B6}\u200D\u2642\uFE0F","\u{1F6B6}\u200D\u2640\uFE0F","\u{1F9CD}","\u{1F9CD}\u200D\u2642\uFE0F","\u{1F9CD}\u200D\u2640\uFE0F","\u{1F9CE}","\u{1F9CE}\u200D\u2642\uFE0F","\u{1F9CE}\u200D\u2640\uFE0F","\u{1F468}\u200D\u{1F9AF}","\u{1F469}\u200D\u{1F9AF}","\u{1F468}\u200D\u{1F9BC}","\u{1F469}\u200D\u{1F9BC}","\u{1F468}\u200D\u{1F9BD}","\u{1F469}\u200D\u{1F9BD}","\u{1F3C3}","\u{1F3C3}\u200D\u2642\uFE0F","\u{1F3C3}\u200D\u2640\uFE0F","\u{1F483}","\u{1F57A}","\u{1F574}\uFE0F","\u{1F9D6}","\u{1F9D6}\u200D\u2642\uFE0F","\u{1F9D6}\u200D\u2640\uFE0F","\u{1F9D7}","\u{1F9D7}\u200D\u2642\uFE0F","\u{1F9D7}\u200D\u2640\uFE0F","\u{1F3C7}","\u{1F3C2}","\u{1F3CC}\uFE0F","\u{1F3CC}\uFE0F\u200D\u2642\uFE0F","\u{1F3CC}\uFE0F\u200D\u2640\uFE0F","\u{1F3C4}","\u{1F3C4}\u200D\u2642\uFE0F","\u{1F3C4}\u200D\u2640\uFE0F","\u{1F6A3}","\u{1F6A3}\u200D\u2642\uFE0F","\u{1F6A3}\u200D\u2640\uFE0F","\u{1F3CA}","\u{1F3CA}\u200D\u2642\uFE0F","\u{1F3CA}\u200D\u2640\uFE0F","\u26F9\uFE0F","\u26F9\uFE0F\u200D\u2642\uFE0F","\u26F9\uFE0F\u200D\u2640\uFE0F","\u{1F3CB}\uFE0F","\u{1F3CB}\uFE0F\u200D\u2642\uFE0F","\u{1F3CB}\uFE0F\u200D\u2640\uFE0F","\u{1F6B4}","\u{1F6B4}\u200D\u2642\uFE0F","\u{1F6B4}\u200D\u2640\uFE0F","\u{1F6B5}","\u{1F6B5}\u200D\u2642\uFE0F","\u{1F6B5}\u200D\u2640\uFE0F","\u{1F938}","\u{1F938}\u200D\u2642\uFE0F","\u{1F938}\u200D\u2640\uFE0F","\u{1F93D}","\u{1F93D}\u200D\u2642\uFE0F","\u{1F93D}\u200D\u2640\uFE0F","\u{1F93E}","\u{1F93E}\u200D\u2642\uFE0F","\u{1F93E}\u200D\u2640\uFE0F","\u{1F939}","\u{1F939}\u200D\u2642\uFE0F","\u{1F939}\u200D\u2640\uFE0F","\u{1F9D8}","\u{1F9D8}\u200D\u2642\uFE0F","\u{1F9D8}\u200D\u2640\uFE0F","\u{1F6C0}","\u{1F6CC}","\u{1F9D1}\u200D\u{1F91D}\u200D\u{1F9D1}","\u{1F46D}","\u{1F46B}","\u{1F46C}"]);function n(e){return r.has(e)}function o(e,t){let i=s(e);if(!n(i))return e;let r=c(t);return r?i.split("\u200D").map(e=>n(e)?a(e,r):e).join("\u200D"):e}function s(e){return[...e].filter(e=>!l(e.codePointAt(0))).join("")}function a(e,t){let i=[...e].map(e=>e.codePointAt(0));return i[1]&&(l(i[1])||65039===i[1])?i[1]=t:i.splice(1,0,t),String.fromCodePoint(...i)}function l(e){return e>=127995&&e<=127999}function c(e){switch(e){case 1:return 127995;case 2:return 127996;case 3:return 127997;case 4:return 127998;case 5:return 127999;default:return null}}let GEmojiElement=class GEmojiElement extends HTMLElement{get image(){return this.firstElementChild instanceof HTMLImageElement?this.firstElementChild:null}get tone(){return(this.getAttribute("tone")||"").split(" ").map(e=>{let t=parseInt(e,10);return t>=0&&t<=5?t:0}).join(" ")}set tone(e){this.setAttribute("tone",e)}connectedCallback(){if(null===this.image&&!GEmojiElement.emojiSupportFunction()){let t=this.getAttribute("fallback-src");if(t){var e;let i;this.textContent="";let r=(e=this,(i=document.createElement("img")).className="emoji",i.alt=e.getAttribute("alias")||"",i.height=20,i.width=20,i);r.src=t,this.appendChild(r)}}this.hasAttribute("tone")&&h(this)}static get observedAttributes(){return["tone"]}attributeChangedCallback(e){"tone"===e&&h(this)}};function h(e){if(e.image)return;let t=e.tone.split(" ").map(e=>parseInt(e,10));if(0===t.length)e.textContent=s(e.textContent||"");else if(1===t.length){let i=t[0];e.textContent=0===i?s(e.textContent||""):o(e.textContent||"",i)}else e.textContent=function(e,t){let i=s(e);if(!n(i))return e;let r=t.map(e=>c(e));return i.split("\u200D").map(e=>{if(!n(e))return e;let t=r.shift();return t?a(e,t):e}).join("\u200D")}(e.textContent||"",t)}GEmojiElement.emojiSupportFunction=function(){let e=/\bWindows NT 6.1\b/.test(navigator.userAgent),t=/\bWindows NT 6.2\b/.test(navigator.userAgent),i=/\bWindows NT 6.3\b/.test(navigator.userAgent),r=/\bFreeBSD\b/.test(navigator.userAgent),n=/\bLinux\b/.test(navigator.userAgent)&&!/\bAndroid\b/.test(navigator.userAgent);return!(e||t||i||n||r)},window.customElements.get("g-emoji")||(window.GEmojiElement=GEmojiElement,window.customElements.define("g-emoji",GEmojiElement))},91707:(e,t,i)=>{i.r(t),i.d(t,{Attachment:()=>Attachment,default:()=>f});let Attachment=class Attachment{constructor(e,t){this.file=e,this.directory=t,this.state="pending",this.id=null,this.href=null,this.name=null,this.percent=0}static traverse(e,t){var i,o;return i=e,t&&(o=i).items&&Array.from(o.items).some(e=>{let t=e.webkitGetAsEntry&&e.webkitGetAsEntry();return t&&t.isDirectory})?n("",Array.from(i.items).map(e=>e.webkitGetAsEntry()).filter(e=>null!=e)):Promise.resolve(r(Array.from(i.files||[])).map(e=>new Attachment(e)))}static from(e){let t=[];for(let i of e)if(i instanceof File)t.push(new Attachment(i));else if(i instanceof Attachment)t.push(i);else throw Error("Unexpected type");return t}get fullPath(){return this.directory?`${this.directory}/${this.file.name}`:this.file.name}isImage(){return["image/gif","image/png","image/jpg","image/jpeg","image/svg+xml"].indexOf(this.file.type)>-1}isVideo(){return["video/mp4","video/quicktime"].indexOf(this.file.type)>-1}saving(e){if("pending"!==this.state&&"saving"!==this.state)throw Error(`Unexpected transition from ${this.state} to saving`);this.state="saving",this.percent=e}saved(e){var t,i,r;if("pending"!==this.state&&"saving"!==this.state)throw Error(`Unexpected transition from ${this.state} to saved`);this.state="saved",this.id=null!=(t=null==e?void 0:e.id)?t:null,this.href=null!=(i=null==e?void 0:e.href)?i:null,this.name=null!=(r=null==e?void 0:e.name)?r:null}isPending(){return"pending"===this.state}isSaving(){return"saving"===this.state}isSaved(){return"saved"===this.state}};function r(e){return Array.from(e).filter(e=>!e.name.startsWith("."))}async function n(e,t){let i=[];for(let o of r(t))if(o.isDirectory)i.push(...await n(o.fullPath,await function(e){return new Promise(function(t,i){let r=[],n=e.createReader(),o=()=>{n.readEntries(e=>{e.length>0?(r.push(...e),o()):t(r)},i)};o()})}(o)));else{let t=await function(e){return new Promise(function(t,i){e.file(t,i)})}(o);i.push(new Attachment(t,e))}return i}let FileAttachmentElement=class FileAttachmentElement extends HTMLElement{connectedCallback(){this.addEventListener("dragenter",a),this.addEventListener("dragover",a),this.addEventListener("dragleave",l),this.addEventListener("drop",c),this.addEventListener("paste",d),this.addEventListener("change",u)}disconnectedCallback(){this.removeEventListener("dragenter",a),this.removeEventListener("dragover",a),this.removeEventListener("dragleave",l),this.removeEventListener("drop",c),this.removeEventListener("paste",d),this.removeEventListener("change",u)}get directory(){return this.hasAttribute("directory")}set directory(e){e?this.setAttribute("directory",""):this.removeAttribute("directory")}async attach(e){let t=e instanceof DataTransfer?await Attachment.traverse(e,this.directory):Attachment.from(e);this.dispatchEvent(new CustomEvent("file-attachment-accept",{bubbles:!0,cancelable:!0,detail:{attachments:t}}))&&t.length&&this.dispatchEvent(new CustomEvent("file-attachment-accepted",{bubbles:!0,detail:{attachments:t}}))}};function o(e){return Array.from(e.types).indexOf("Files")>=0}let s=null;function a(e){let t=e.currentTarget;s&&clearTimeout(s),s=window.setTimeout(()=>t.removeAttribute("hover"),200);let i=e.dataTransfer;i&&o(i)&&(i.dropEffect="copy",t.setAttribute("hover",""),e.preventDefault())}function l(e){e.dataTransfer&&(e.dataTransfer.dropEffect="none"),e.currentTarget.removeAttribute("hover"),e.stopPropagation(),e.preventDefault()}function c(e){let t=e.currentTarget;if(!(t instanceof FileAttachmentElement))return;t.removeAttribute("hover");let i=e.dataTransfer;i&&o(i)&&(t.attach(i),e.stopPropagation(),e.preventDefault())}let h=/^image\/(gif|png|jpeg)$/;function d(e){if(!e.clipboardData||!e.clipboardData.items)return;let t=e.currentTarget;if(!(t instanceof FileAttachmentElement))return;let i=function(e){for(let t of e)if("file"===t.kind&&h.test(t.type))return t.getAsFile();return null}(e.clipboardData.items);i&&(t.attach([i]),e.preventDefault())}function u(e){let t=e.currentTarget;if(!(t instanceof FileAttachmentElement))return;let i=e.target;if(!(i instanceof HTMLInputElement))return;let r=t.getAttribute("input");if(r&&i.id!==r)return;let n=i.files;n&&0!==n.length&&(t.attach(n),i.value="")}window.customElements.get("file-attachment")||(window.FileAttachmentElement=FileAttachmentElement,window.customElements.define("file-attachment",FileAttachmentElement));let f=FileAttachmentElement},92284:()=>{let e=new WeakMap,t=new WeakMap,i=new WeakMap;function r(e){let r=e.currentTarget;if(!(r instanceof ImageCropElement))return;let{box:n,image:o}=i.get(r)||{};if(!n||!o)return;let s=0,a=0;if(e instanceof KeyboardEvent)"ArrowUp"===e.key?a=-1:"ArrowDown"===e.key?a=1:"ArrowLeft"===e.key?s=-1:"ArrowRight"===e.key&&(s=1);else if(t.has(r)&&e instanceof MouseEvent){let i=t.get(r);s=e.pageX-i.dragStartX,a=e.pageY-i.dragStartY}else if(t.has(r)&&e instanceof TouchEvent){let{pageX:i,pageY:n}=e.changedTouches[0],{dragStartX:o,dragStartY:l}=t.get(r);s=i-o,a=n-l}if(0!==s||0!==a){let e=Math.min(Math.max(0,n.offsetLeft+s),o.width-n.offsetWidth),t=Math.min(Math.max(0,n.offsetTop+a),o.height-n.offsetHeight);n.style.left=`${e}px`,n.style.top=`${t}px`,h(r,{x:e,y:t,width:n.offsetWidth,height:n.offsetHeight})}if(e instanceof MouseEvent)t.set(r,{dragStartX:e.pageX,dragStartY:e.pageY});else if(e instanceof TouchEvent){let{pageX:i,pageY:n}=e.changedTouches[0];t.set(r,{dragStartX:i,dragStartY:n})}}function n(t){let r,n,s,c=t.target;if(!(c instanceof HTMLElement))return;let h=o(c);if(!(h instanceof ImageCropElement))return;let{box:d}=i.get(h)||{};if(!d)return;let u=h.getBoundingClientRect();if(t instanceof KeyboardEvent){if("Escape"===t.key)return l(h);if("-"===t.key&&(s=-10),"="===t.key&&(s=10),!s)return;r=d.offsetWidth+s,n=d.offsetHeight+s,e.set(h,{startX:d.offsetLeft,startY:d.offsetTop})}else if(t instanceof MouseEvent){let i=e.get(h);if(!i)return;r=t.pageX-i.startX-u.left-window.pageXOffset,n=t.pageY-i.startY-u.top-window.pageYOffset}else if(t instanceof TouchEvent){let i=e.get(h);if(!i)return;r=t.changedTouches[0].pageX-i.startX-u.left-window.pageXOffset,n=t.changedTouches[0].pageY-i.startY-u.top-window.pageYOffset}r&&n&&a(h,r,n,!(t instanceof KeyboardEvent))}function o(e){let t=e.getRootNode();return t instanceof ShadowRoot?t.host:e}function s(t){let s=t.currentTarget;if(!(s instanceof HTMLElement))return;let a=o(s);if(!(a instanceof ImageCropElement))return;let{box:l}=i.get(a)||{};if(!l)return;let c=t.target;if(c instanceof HTMLElement)if(c.hasAttribute("data-direction")){let i=c.getAttribute("data-direction")||"";a.addEventListener("mousemove",n),a.addEventListener("touchmove",n,{passive:!0}),["nw","se"].indexOf(i)>=0&&a.classList.add("nwse"),["ne","sw"].indexOf(i)>=0&&a.classList.add("nesw"),e.set(a,{startX:l.offsetLeft+(["se","ne"].indexOf(i)>=0?0:l.offsetWidth),startY:l.offsetTop+(["se","sw"].indexOf(i)>=0?0:l.offsetHeight)}),n(t)}else a.addEventListener("mousemove",r),a.addEventListener("touchmove",r,{passive:!0})}function a(t,r,n,o=!0){let s=Math.max(Math.abs(r),Math.abs(n),10),l=e.get(t);if(!l)return;let{box:c,image:d}=i.get(t)||{};if(!c||!d)return;s=Math.min(s,n>0?d.height-l.startY:l.startY,r>0?d.width-l.startX:l.startX);let u=o?Math.round(Math.max(0,r>0?l.startX:l.startX-s)):c.offsetLeft,f=o?Math.round(Math.max(0,n>0?l.startY:l.startY-s)):c.offsetTop;c.style.left=`${u}px`,c.style.top=`${f}px`,c.style.width=`${s}px`,c.style.height=`${s}px`,h(t,{x:u,y:f,width:s,height:s})}function l(t){let{image:r}=i.get(t)||{};if(!r)return;let n=Math.round(r.clientWidth>r.clientHeight?r.clientHeight:r.clientWidth);e.set(t,{startX:(r.clientWidth-n)/2,startY:(r.clientHeight-n)/2}),a(t,n,n)}function c(e){let i=e.currentTarget;i instanceof ImageCropElement&&(t.delete(i),i.classList.remove("nwse","nesw"),i.removeEventListener("mousemove",n),i.removeEventListener("mousemove",r),i.removeEventListener("touchmove",n),i.removeEventListener("touchmove",r))}function h(e,t){let{image:r}=i.get(e)||{};if(!r)return;let n=r.naturalWidth/r.width;for(let i in t){let r=Math.round(t[i]*n);t[i]=r;let o=e.querySelector(`[data-image-crop-input='${i}']`);o instanceof HTMLInputElement&&(o.value=r.toString())}e.dispatchEvent(new CustomEvent("image-crop-change",{bubbles:!0,detail:t}))}let ImageCropElement=class ImageCropElement extends HTMLElement{connectedCallback(){if(i.has(this))return;let e=this.attachShadow({mode:"open"});e.innerHTML=` + + +
+ +
+
+
+
+
+
+
+
+
+
+`;let t=e.querySelector("[data-crop-box]");if(!(t instanceof HTMLElement))return;let o=e.querySelector("img");o instanceof HTMLImageElement&&(i.set(this,{box:t,image:o}),o.addEventListener("load",()=>{this.loaded=!0,l(this)}),this.addEventListener("mouseleave",c),this.addEventListener("touchend",c),this.addEventListener("mouseup",c),t.addEventListener("mousedown",s),t.addEventListener("touchstart",s,{passive:!0}),this.addEventListener("keydown",r),this.addEventListener("keydown",n),this.src&&(o.src=this.src))}static get observedAttributes(){return["src"]}get src(){return this.getAttribute("src")}set src(e){e?this.setAttribute("src",e):this.removeAttribute("src")}get loaded(){return this.hasAttribute("loaded")}set loaded(e){e?this.setAttribute("loaded",""):this.removeAttribute("loaded")}attributeChangedCallback(e,t,r){let{image:n}=i.get(this)||{};"src"===e&&(this.loaded=!1,n&&(n.src=r))}};window.customElements.get("image-crop")||(window.ImageCropElement=ImageCropElement,window.customElements.define("image-crop",ImageCropElement))},94147:(e,t,i)=>{i.d(t,{T:()=>include_fragment_element_IncludeFragmentElement});var r,n,o,s,a,l,c,h,d=function(e,t,i,r){if("a"===i&&!r)throw TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(e):r?r.value:t.get(e)},u=function(e,t,i,r,n){if("m"===r)throw TypeError("Private method is not writable");if("a"===r&&!n)throw TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,i):n?n.value=i:t.set(e,i),i};let f=new WeakMap,p=null;let include_fragment_element_IncludeFragmentElement=class include_fragment_element_IncludeFragmentElement extends HTMLElement{constructor(){super(...arguments),r.add(this),n.set(this,!1),o.set(this,new IntersectionObserver(e=>{for(let t of e)if(t.isIntersecting){let{target:e}=t;if(d(this,o,"f").unobserve(e),!(e instanceof include_fragment_element_IncludeFragmentElement))return;"lazy"===e.loading&&d(this,r,"m",s).call(this)}},{rootMargin:"0px 0px 256px 0px",threshold:.01}))}static define(e="include-fragment",t=customElements){return t.define(e,this),this}static setCSPTrustedTypesPolicy(e){p=null===e?e:Promise.resolve(e)}static get observedAttributes(){return["src","loading"]}get src(){let e=this.getAttribute("src");if(!e)return"";{let t=this.ownerDocument.createElement("a");return t.href=e,t.href}}set src(e){this.setAttribute("src",e)}get loading(){return"lazy"===this.getAttribute("loading")?"lazy":"eager"}set loading(e){this.setAttribute("loading",e)}get accept(){return this.getAttribute("accept")||""}set accept(e){this.setAttribute("accept",e)}get data(){return d(this,r,"m",l).call(this)}attributeChangedCallback(e,t){"src"===e?this.isConnected&&"eager"===this.loading&&d(this,r,"m",s).call(this):"loading"===e&&this.isConnected&&"eager"!==t&&"eager"===this.loading&&d(this,r,"m",s).call(this)}connectedCallback(){if(!this.shadowRoot){this.attachShadow({mode:"open"});let e=document.createElement("style");e.textContent=":host {display: block;}",this.shadowRoot.append(e,document.createElement("slot"))}this.src&&"eager"===this.loading&&d(this,r,"m",s).call(this),"lazy"===this.loading&&d(this,o,"f").observe(this)}request(){let e=this.src;if(!e)throw Error("missing src");return new Request(e,{method:"GET",credentials:"same-origin",headers:{Accept:this.accept||"text/html"}})}load(){return d(this,r,"m",l).call(this)}fetch(e){return fetch(e)}refetch(){f.delete(this),d(this,r,"m",s).call(this)}};n=new WeakMap,o=new WeakMap,r=new WeakSet,s=async function(){if(!d(this,n,"f")){u(this,n,!0,"f"),d(this,o,"f").unobserve(this);try{let e=await d(this,r,"m",a).call(this);if(e instanceof Error)throw e;let t=document.createElement("template");t.innerHTML=e;let i=document.importNode(t.content,!0);if(!this.dispatchEvent(new CustomEvent("include-fragment-replace",{cancelable:!0,detail:{fragment:i}})))return void u(this,n,!1,"f");this.replaceWith(i),this.dispatchEvent(new CustomEvent("include-fragment-replaced"))}catch(e){this.classList.add("is-error")}finally{u(this,n,!1,"f")}}},a=async function(){let e=this.src,t=f.get(this);if(t&&t.src===e)return t.data;{let t;return t=e?d(this,r,"m",h).call(this):Promise.reject(Error("missing src")),f.set(this,{src:e,data:t}),t}},l=async function(){let e=await d(this,r,"m",a).call(this);if(e instanceof Error)throw e;return e.toString()},c=async function(e,t){for(let i of(await new Promise(e=>setTimeout(e,0)),e))this.dispatchEvent(t?new CustomEvent(i,{detail:{error:t}}):new Event(i))},h=async function(){try{var e;await d(this,r,"m",c).call(this,["loadstart"]);let t=await this.fetch(this.request()),i=t.headers.get("Content-Type");if(!((e=this.accept)&&e.split(",").find(e=>e.match(/^\s*\*\/\*/)))&&(!i||!i.includes(this.accept?this.accept:"text/html")))throw Error(`Failed to load resource: expected ${this.accept||"text/html"} but was ${i}`);if(200!==t.status)throw Error(`Failed to load resource: the server responded with a status of ${t.status}`);let n=await t.text(),o=n;return p&&(o=(await p).createHTML(n,t)),d(this,r,"m",c).call(this,["load","loadend"]),o}catch(e){throw d(this,r,"m",c).call(this,["error","loadend"],e),e}};let m="u">typeof globalThis?globalThis:window;try{m.IncludeFragmentElement=include_fragment_element_IncludeFragmentElement.define()}catch(e){if(!(m.DOMException&&e instanceof DOMException&&"NotSupportedError"===e.name)&&!(e instanceof ReferenceError))throw e}},97797:(e,t,i)=>{function r(){if(!(this instanceof r))return new r;this.size=0,this.uid=0,this.selectors=[],this.selectorObjects={},this.indexes=Object.create(this.indexes),this.activeIndexes=[]}i.d(t,{h:()=>C,on:()=>T});var n,o=window.document.documentElement,s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector;r.prototype.matchesSelector=function(e,t){return s.call(e,t)},r.prototype.querySelectorAll=function(e,t){return t.querySelectorAll(e)},r.prototype.indexes=[];var a=/^#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;r.prototype.indexes.push({name:"ID",selector:function(e){var t;if(t=e.match(a))return t[0].slice(1)},element:function(e){if(e.id)return[e.id]}});var l=/^\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;r.prototype.indexes.push({name:"CLASS",selector:function(e){var t;if(t=e.match(l))return t[0].slice(1)},element:function(e){var t=e.className;if(t){if("string"==typeof t)return t.split(/\s/);else if("object"==typeof t&&"baseVal"in t)return t.baseVal.split(/\s/)}}});var c=/^((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;r.prototype.indexes.push({name:"TAG",selector:function(e){var t;if(t=e.match(c))return t[0].toUpperCase()},element:function(e){return[e.nodeName.toUpperCase()]}}),r.prototype.indexes.default={name:"UNIVERSAL",selector:function(){return!0},element:function(){return[!0]}},n="function"==typeof window.Map?window.Map:function(){function e(){this.map={}}return e.prototype.get=function(e){return this.map[e+" "]},e.prototype.set=function(e,t){this.map[e+" "]=t},e}();var h=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g;function d(e,t){var i,r,n,o,s,a,l=(e=e.slice(0).concat(e.default)).length,c=t,d=[];do if(h.exec(""),(n=h.exec(c))&&(c=n[3],n[2]||!c)){for(i=0;i3&&void 0!==arguments[3]?arguments[3]:{},o=!!n.capture,s=o?p:f,a=s[e];a||(a=new r,s[e]=a,document.addEventListener(e,L,o)),a.add(t,i)}function C(e,t,i){return e.dispatchEvent(new CustomEvent(t,{bubbles:!0,cancelable:!0,detail:i}))}}}]); +//# sourceMappingURL=3042-3c5d6f26221b.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/30587-9e7ad105c2cc.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/30587-9e7ad105c2cc.js" new file mode 100644 index 0000000..6229c06 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/30587-9e7ad105c2cc.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:30587-9e7ad105c2cc.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[30587],{1651:(e,t,r)=>{r.d(t,{$:()=>o});var s=r(29658),i=r(26261),n=r(79757),u=r(66500),a=r(94658),h=r(24880),c=r(52775),o=class extends u.Q{constructor(e,t){super(),this.options=t,this.#e=e,this.#t=null,this.#r=(0,a.T)(),this.bindMethods(),this.setOptions(t)}#e;#s=void 0;#i=void 0;#n=void 0;#u;#a;#r;#t;#h;#c;#o;#l;#d;#p;#f=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){1===this.listeners.size&&(this.#s.addObserver(this),l(this.#s,this.options)?this.#y():this.updateResult(),this.#R())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return d(this.#s,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return d(this.#s,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#b(),this.#v(),this.#s.removeObserver(this)}setOptions(e){let t=this.options,r=this.#s;if(this.options=this.#e.defaultQueryOptions(e),void 0!==this.options.enabled&&"boolean"!=typeof this.options.enabled&&"function"!=typeof this.options.enabled&&"boolean"!=typeof(0,h.Eh)(this.options.enabled,this.#s))throw Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#Q(),this.#s.setOptions(this.options),t._defaulted&&!(0,h.f8)(this.options,t)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#s,observer:this});let s=this.hasListeners();s&&p(this.#s,r,this.options,t)&&this.#y(),this.updateResult(),s&&(this.#s!==r||(0,h.Eh)(this.options.enabled,this.#s)!==(0,h.Eh)(t.enabled,this.#s)||(0,h.d2)(this.options.staleTime,this.#s)!==(0,h.d2)(t.staleTime,this.#s))&&this.#m();let i=this.#g();s&&(this.#s!==r||(0,h.Eh)(this.options.enabled,this.#s)!==(0,h.Eh)(t.enabled,this.#s)||i!==this.#p)&&this.#I(i)}getOptimisticResult(e){var t,r;let s=this.#e.getQueryCache().build(this.#e,e),i=this.createResult(s,e);return t=this,r=i,(0,h.f8)(t.getCurrentResult(),r)||(this.#n=i,this.#a=this.options,this.#u=this.#s.state),i}getCurrentResult(){return this.#n}trackResult(e,t){return new Proxy(e,{get:(e,r)=>(this.trackProp(r),t?.(r),"promise"===r&&(this.trackProp("data"),this.options.experimental_prefetchInRender||"pending"!==this.#r.status||this.#r.reject(Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(e,r))})}trackProp(e){this.#f.add(e)}getCurrentQuery(){return this.#s}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){let t=this.#e.defaultQueryOptions(e),r=this.#e.getQueryCache().build(this.#e,t);return r.fetch().then(()=>this.createResult(r,t))}fetch(e){return this.#y({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#n))}#y(e){this.#Q();let t=this.#s.fetch(this.options,e);return e?.throwOnError||(t=t.catch(h.lQ)),t}#m(){this.#b();let e=(0,h.d2)(this.options.staleTime,this.#s);if(h.S$||this.#n.isStale||!(0,h.gn)(e))return;let t=(0,h.j3)(this.#n.dataUpdatedAt,e);this.#l=c.zs.setTimeout(()=>{this.#n.isStale||this.updateResult()},t+1)}#g(){return("function"==typeof this.options.refetchInterval?this.options.refetchInterval(this.#s):this.options.refetchInterval)??!1}#I(e){this.#v(),this.#p=e,!h.S$&&!1!==(0,h.Eh)(this.options.enabled,this.#s)&&(0,h.gn)(this.#p)&&0!==this.#p&&(this.#d=c.zs.setInterval(()=>{(this.options.refetchIntervalInBackground||s.m.isFocused())&&this.#y()},this.#p))}#R(){this.#m(),this.#I(this.#g())}#b(){this.#l&&(c.zs.clearTimeout(this.#l),this.#l=void 0)}#v(){this.#d&&(c.zs.clearInterval(this.#d),this.#d=void 0)}createResult(e,t){let r,s=this.#s,i=this.options,u=this.#n,c=this.#u,o=this.#a,d=e!==s?e.state:this.#i,{state:y}=e,R={...y},b=!1;if(t._optimisticResults){let r=this.hasListeners(),u=!r&&l(e,t),a=r&&p(e,s,t,i);(u||a)&&(R={...R,...(0,n.k)(y.data,e.options)}),"isRestoring"===t._optimisticResults&&(R.fetchStatus="idle")}let{error:v,errorUpdatedAt:Q,status:m}=R;r=R.data;let g=!1;if(void 0!==t.placeholderData&&void 0===r&&"pending"===m){let e;u?.isPlaceholderData&&t.placeholderData===o?.placeholderData?(e=u.data,g=!0):e="function"==typeof t.placeholderData?t.placeholderData(this.#o?.state.data,this.#o):t.placeholderData,void 0!==e&&(m="success",r=(0,h.pl)(u?.data,e,t),b=!0)}if(t.select&&void 0!==r&&!g)if(u&&r===c?.data&&t.select===this.#h)r=this.#c;else try{this.#h=t.select,r=t.select(r),r=(0,h.pl)(u?.data,r,t),this.#c=r,this.#t=null}catch(e){this.#t=e}this.#t&&(v=this.#t,r=this.#c,Q=Date.now(),m="error");let I="fetching"===R.fetchStatus,E="pending"===m,O="error"===m,T=E&&I,S=void 0!==r,C={status:m,fetchStatus:R.fetchStatus,isPending:E,isSuccess:"success"===m,isError:O,isInitialLoading:T,isLoading:T,data:r,dataUpdatedAt:R.dataUpdatedAt,error:v,errorUpdatedAt:Q,failureCount:R.fetchFailureCount,failureReason:R.fetchFailureReason,errorUpdateCount:R.errorUpdateCount,isFetched:R.dataUpdateCount>0||R.errorUpdateCount>0,isFetchedAfterMount:R.dataUpdateCount>d.dataUpdateCount||R.errorUpdateCount>d.errorUpdateCount,isFetching:I,isRefetching:I&&!E,isLoadingError:O&&!S,isPaused:"paused"===R.fetchStatus,isPlaceholderData:b,isRefetchError:O&&S,isStale:f(e,t),refetch:this.refetch,promise:this.#r,isEnabled:!1!==(0,h.Eh)(t.enabled,e)};if(this.options.experimental_prefetchInRender){let t=e=>{"error"===C.status?e.reject(C.error):void 0!==C.data&&e.resolve(C.data)},r=()=>{t(this.#r=C.promise=(0,a.T)())},i=this.#r;switch(i.status){case"pending":e.queryHash===s.queryHash&&t(i);break;case"fulfilled":("error"===C.status||C.data!==i.value)&&r();break;case"rejected":("error"!==C.status||C.error!==i.reason)&&r()}}return C}updateResult(){let e=this.#n,t=this.createResult(this.#s,this.options);if(this.#u=this.#s.state,this.#a=this.options,void 0!==this.#u.data&&(this.#o=this.#s),(0,h.f8)(t,e))return;this.#n=t;let r=()=>{if(!e)return!0;let{notifyOnChangeProps:t}=this.options,r="function"==typeof t?t():t;if("all"===r||!r&&!this.#f.size)return!0;let s=new Set(r??this.#f);return this.options.throwOnError&&s.add("error"),Object.keys(this.#n).some(t=>this.#n[t]!==e[t]&&s.has(t))};this.#E({listeners:r()})}#Q(){let e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#s)return;let t=this.#s;this.#s=e,this.#i=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#R()}#E(e){i.jG.batch(()=>{e.listeners&&this.listeners.forEach(e=>{e(this.#n)}),this.#e.getQueryCache().notify({query:this.#s,type:"observerResultsUpdated"})})}};function l(e,t){return!1!==(0,h.Eh)(t.enabled,e)&&void 0===e.state.data&&("error"!==e.state.status||!1!==t.retryOnMount)||void 0!==e.state.data&&d(e,t,t.refetchOnMount)}function d(e,t,r){if(!1!==(0,h.Eh)(t.enabled,e)&&"static"!==(0,h.d2)(t.staleTime,e)){let s="function"==typeof r?r(e):r;return"always"===s||!1!==s&&f(e,t)}return!1}function p(e,t,r,s){return(e!==t||!1===(0,h.Eh)(s.enabled,e))&&(!r.suspense||"error"!==e.state.status)&&f(e,r)}function f(e,t){return!1!==(0,h.Eh)(t.enabled,e)&&e.isStaleByTime((0,h.d2)(t.staleTime,e))}},3335:(e,t,r)=>{r.d(t,{d:()=>u,w:()=>n});var s=r(96540),i=s.createContext(!1),n=()=>s.useContext(i),u=i.Provider},15985:(e,t,r)=>{r.d(t,{t:()=>l});var s=r(96540),i=r(26261),n=r(24880),u=r(97665),a=r(96672),h=r(68590),c=r(3335),o=r(60791);function l(e,t,r){let l=(0,c.w)(),d=(0,a.h)(),p=(0,u.jE)(r),f=p.defaultQueryOptions(e);p.getDefaultOptions().queries?._experimental_beforeQuery?.(f);let y=p.getQueryCache().get(f.queryHash);f._optimisticResults=l?"isRestoring":"optimistic",(0,o.jv)(f),(0,h.LJ)(f,d,y),(0,h.wZ)(d);let R=!p.getQueryCache().get(f.queryHash),[b]=s.useState(()=>new t(p,f)),v=b.getOptimisticResult(f),Q=!l&&!1!==e.subscribed;if(s.useSyncExternalStore(s.useCallback(e=>{let t=Q?b.subscribe(i.jG.batchCalls(e)):n.lQ;return b.updateResult(),t},[b,Q]),()=>b.getCurrentResult(),()=>b.getCurrentResult()),s.useEffect(()=>{b.setOptions(f)},[f,b]),(0,o.EU)(f,v))throw(0,o.iL)(f,b,d);if((0,h.$1)({result:v,errorResetBoundary:d,throwOnError:f.throwOnError,query:y,suspense:f.suspense}))throw v.error;if(p.getDefaultOptions().queries?._experimental_afterQuery?.(f,v),f.experimental_prefetchInRender&&!n.S$&&(0,o.nE)(v,l)){let e=R?(0,o.iL)(f,b,d):y?.promise;e?.catch(n.lQ).finally(()=>{b.updateResult()})}return f.notifyOnChangeProps?v:b.trackResult(v)}},60791:(e,t,r)=>{r.d(t,{EU:()=>u,R3:()=>s,iL:()=>a,jv:()=>i,nE:()=>n});var s=(e,t)=>void 0===t.state.data,i=e=>{if(e.suspense){let t=e=>"static"===e?e:Math.max(e??1e3,1e3),r=e.staleTime;e.staleTime="function"==typeof r?(...e)=>t(r(...e)):t(r),"number"==typeof e.gcTime&&(e.gcTime=Math.max(e.gcTime,1e3))}},n=(e,t)=>e.isLoading&&e.isFetching&&!t,u=(e,t)=>e?.suspense&&t.isPending,a=(e,t,r)=>t.fetchOptimistic(e).catch(()=>{r.clearReset()})},68590:(e,t,r)=>{r.d(t,{$1:()=>a,LJ:()=>n,wZ:()=>u});var s=r(96540),i=r(24880),n=(e,t,r)=>{let s=r?.state.error&&"function"==typeof e.throwOnError?(0,i.GU)(e.throwOnError,[r.state.error,r]):e.throwOnError;(e.suspense||e.experimental_prefetchInRender||s)&&!t.isReset()&&(e.retryOnMount=!1)},u=e=>{s.useEffect(()=>{e.clearReset()},[e])},a=({result:e,errorResetBoundary:t,throwOnError:r,query:s,suspense:n})=>e.isError&&!t.isReset()&&!e.isFetching&&s&&(n&&void 0===e.data||(0,i.GU)(r,[e.error,s]))},96672:(e,t,r)=>{r.d(t,{U:()=>h,h:()=>a});var s=r(96540),i=r(74848);function n(){let e=!1;return{clearReset:()=>{e=!1},reset:()=>{e=!0},isReset:()=>e}}var u=s.createContext(n()),a=()=>s.useContext(u),h=({children:e})=>{let[t]=s.useState(()=>n());return(0,i.jsx)(u.Provider,{value:t,children:"function"==typeof e?e(t):e})}}}]); +//# sourceMappingURL=30587-423a4a07af7c.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/30721-20f0b537f116.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/30721-20f0b537f116.js" new file mode 100644 index 0000000..c823c1d --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/30721-20f0b537f116.js" @@ -0,0 +1,4 @@ +performance.mark("js-parse-end:30721-20f0b537f116.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[30721],{30721:(e,t,r)=>{r.d(t,{mf:()=>M.RelayEnvironmentProvider,VB:()=>SSRNetwork,SD:()=>q,E7:()=>H});var i=r(50467),s=r(40961),a=r(69487),n=r(37285),o=r(96379),l=r(56038),c=r(38102),u=r(69599);let d=["NOT_FOUND","SAML","SERVICE_UNAVAILABLE","FORBIDDEN","AUTHENTICATION"];var h=r(51987),p=r(86185);let f=class ValidationError extends Error{constructor(e,t,r){super(e,t),(0,i._)(this,"catalogService",void 0),this.catalogService=r,this.name="ValidationError"}},_=class RateLimitError extends Error{constructor(e,t,...r){super(...r),(0,i._)(this,"retryAfter",void 0),(0,i._)(this,"resetTime",void 0),this.retryAfter=e,this.resetTime=t,this.name="RateLimitError"}},m=class ServiceUnavailableError extends Error{constructor(...e){super(...e),this.name="ServiceUnavailableError"}},E=class NotAcceptableError extends Error{constructor(...e){super(...e),this.name="NotAcceptableError"}},w=class SecFetchHeaderError extends Error{constructor(...e){super(...e),this.name="SecFetchHeaderError"}},g=class FetchNetworkError extends Error{constructor(...e){super(...e),this.name="FetchNetworkError"}},y=class NoiseError extends Error{constructor(...e){super(...e),this.name="NoiseError"}};async function v(e,t,r){if(e.status>401&&404!==e.status){var i,s;let a=await e.text(),n={url:e.url,timestamp:new Date().toISOString(),persistedQueryId:t,persistedQueryName:r,failureRequestId:e.headers.get("X-Github-Request-Id")},o=`HTTP error (${e.status}): ${a||"No additional text"}. + Error Info: ${JSON.stringify(n)}`;if(429===e.status)throw new _(Number(e.headers.get("Retry-After")),Number(e.headers.get("X-RateLimit-Reset")),o,{cause:e.status});if(!(0,u.G7)("fetch_graphql_filter_noise_errors")||(i=e.status,s=a,418===i||403===i&&s.toLowerCase().includes("cloudflare")?0:1)){if(503===e.status)throw new m(o,{cause:e.status});else if(406===e.status)throw new E(o,{cause:e.status});else if(422===e.status&&(a.includes("sec-fetch-dest")||a.includes("sec-fetch-site")))throw new w(o,{cause:e.status})}else throw new y(o,{cause:e.status});throw Error(o,{cause:e.status})}}async function b(e,t,r,i="GET",s,a,n,o,l){return(await S(e,t,r,i,{isSubscription:!1,scope:void 0,preheatSource:l},s,a,n,o)).response}async function S(e,t,r,i="POST",s={},o,u,h,p){let _=JSON.stringify((0,a.stableCopy)({persistedQueryName:t,query:e,variables:r,...s.scopeObject?{scopeObject:s.scopeObject}:{}})),{isSubscription:m,scope:E,subscriptionTopic:w,dispatchTime:g}=s,y=o;void 0===o||""!==o&&o.endsWith("/_graphql")||((0,c.N7)(Error(`fetchGraphQL received invalid baseUrl - must end with /_graphql persistedQueryId: ${e}, persistedQueryName: ${t}, invalidBaseUrl: ${o}`)),y=void 0);let v=function(e,t,r,i,s,a,n="/_graphql"){let o=[];if("GET"===e&&o.push(`body=${t}`),r&&o.push("subscription=1"),s&&o.push(`scope=${encodeURIComponent(s)}`),i&&o.push(`subscriptionTopic=${encodeURIComponent(i)}`),a&&o.push(`dispatchTime=${encodeURIComponent(a)}`),l.cg){let e=new URL(l.cg.location.href,l.cg.location.origin).searchParams.get("_features");e&&o.push(`_features=${e}`)}return o.length>0?`${n}?${o.join("&")}`:n}(i,encodeURIComponent(_),m,w,E,g,y),b=null;try{let{subscriptionId:r,requestId:a,json:o}=await A(v,i,e,t,_,u,s.preheatSource);if(b=r,!function(e,t,r){let i=("errors"in e?e.errors:[]).filter(e=>!d.includes(e.type));if("errors"in e&&i.length){let t=i.map(e=>`GraphQL error: ${e.type}: ${e.message} (path: ${e.path})`).join(", "),s=new f(`${t} (Persisted query id: ${r})`,{cause:i},e.extensions?.query_owning_catalog_service);(0,c.N7)(s)}if(!("data"in e)){let i=function e(t){if(null==t)return t;if(Array.isArray(t))return t.map(t=>null==t?t:"object"==typeof t?e(t):"[FILTERED]");if("object"==typeof t){let r={};for(let i in t)if(Object.prototype.hasOwnProperty.call(t,i)){let s=t[i];"errors"===i||null==s?r[i]=s:"object"==typeof s?r[i]=e(s):r[i]="[FILTERED]"}return r}return t}(e),s=Error(`Expected data property in response: ${JSON.stringify(i)}. persistedQueryId: ${r}, requestId: ${t}`);(0,c.N7)(s)}}(o,a,e),o)if(p){let e={__trace:{...o?.__trace,cache_result:"refresh"}};(0,n.Av)(e)}else(0,n.Av)(o);return{subscriptionId:b,response:o}}catch(e){if(h){let t,r=e?.name;"RateLimitError"===(t=e?.name)||"SecFetchHeaderError"===t||"NotAcceptableError"===t||"FetchNetworkError"===t||"NoiseError"===t||"ServiceUnavailableError"===t&&(0,c.ff)()||(0,c.N7)(e);let i={};if(("RateLimitError"===r||"ServiceUnavailableError"===r)&&(i={backoff:!0,errorType:r},"RateLimitError"===r)){let t=e.retryAfter;void 0===t||isNaN(t)||(i={...i,retryAfter:t});let r=e.resetTime;void 0===r||isNaN(r)||(i={...i,resetTime:r})}return h.error(e),{subscriptionId:b,response:{errors:[{message:"An error occurred while fetching data. Please try again later."}],extensions:i}}}throw e}}async function A(e,t,r,i,s,a,o){return T((0,n.RD)(e),t,r,i,s,a,o)}async function T(e,t,r,i,s,a,n){let u,d,f={...(0,h.kt)(),...n?{"X-GITHUB-PREHEAT":n}:{}};a?.issues_react_perf_test&&(f["X-LUC-Environment"]="issues");let _=(u="GET"===t?await fetch(e,{method:t,cache:"no-cache",credentials:"include",headers:{Accept:"application/json",...f}}):await (0,o.DI)(e,{method:t,headers:{Accept:"application/json",...f},...s?{body:s}:void 0})).headers.get("X-Subscription-ID"),m=u.headers.get("X-Github-Request-Id")||"",E=u.status;if(p.z.checkResponse(u),await v(u,r,i),404===E&&"POST"===t)throw l.cg?.location.reload(),Error("Reloading page due to 404 on GraphQL mutation for unauthenticated user.");try{d=await u.json()}catch(r){let t={error:r instanceof Error?`${r.name}: ${r.message}`:String(r),status:E,url:e,requestId:m};if(r instanceof Error&&"TypeError"===r.name&&"Failed to fetch"===r.message)throw new g(`Network error while reading response. Please check your connection and try again. ${JSON.stringify(t)}`);throw(0,c.N7)(Error(`Failed to parse server JSON response ${JSON.stringify(t)}`)),Error(`Failed to parse server response. Please try again later. ${JSON.stringify(t)}`)}return{subscriptionId:_,requestId:m,json:d,status:E}}let O=[{kind:"linked",handle(e,t,r){if(null!=t&&t.getType()===a.ROOT_TYPE&&"node"===e.name&&r.hasOwnProperty("id"))return r.id}},{kind:"pluralLinked",handle(e,t,r){if(null!=t&&t.getType()===a.ROOT_TYPE&&"nodes"===e.name&&r.hasOwnProperty("ids"))return r.ids}}];var R=r(11418),N=r(73056),C=r(69982);function k(e){return(0,C.unstable_scheduleCallback)(C.unstable_LowPriority,e)}var D=r(6923),I=r(87683),P=r(53419),x=r(21067),L=r(82606),$=r(64549),M=r(18312);function U(e){let t=e?.ttl,r=e?.defaultValues,i=e?.[I.Zm.EXCLUDE_FROM_CACHE_KEY],s=e?.preheatSource,a=e?.skipCache;return{cacheTTL:t,defaultValues:r,keysToExclude:i,preheatSource:s,skipCache:a,skipNetwork:e?.[I.Zm.SKIP_NETWORK],cacheEnabledForQuery:void 0!==t&&t>0}}async function j({params:e,variables:t,baseUrl:r,enabledFeatures:i,observer:s,isClientSideCachingEnabled:a,cache:n,metadata:o,preloadSubscriptions:l}){if(!e.id)throw Error("Params has no id property!");let{cacheTTL:c,defaultValues:u,keysToExclude:d,preheatSource:h,skipCache:p,skipNetwork:f,cacheEnabledForQuery:_}=U(o),m="mutation"===e.operationKind?"POST":"GET",E=a=>b(e.id,e.name,t,m,r,i,s,a,p?"force_refresh":h);return n&&a&&_&&"mutation"!==e.operationKind?n.persisterFn(E,e.id,e.name,t,s,c,{query_name:e.name,preheat_source:h,[I.Zm.EXCLUDE_FROM_CACHE_KEY]:d,[I.Zm.SKIP_NETWORK]:f,skip_cache:p},u,l):E()}let F={cancel:()=>!1,schedule:e=>((0,s.unstable_batchedUpdates)(e),"")};let SSRNetwork=class SSRNetwork{preloadSubscriptions(e){if(e&&"extensions"in e&&e.extensions&&e.extensions.subscriptions){let t=e.extensions.subscriptions;for(let e in t)for(let r in this.preloadedSubscriptions.has(e)||this.preloadedSubscriptions.set(e,new Map),t[e])this.preloadedSubscriptions.get(e)?.set(r,t[e][r])}}execute(e,t,r){return this.relayNetwork.execute(e,t,r)}getPreloadedSubscriptions(){return this.preloadedSubscriptions}constructor(e,t={},r,s,n,o,l,u){(0,i._)(this,"relayNetwork",void 0),(0,i._)(this,"ssrPreloadedData",void 0),(0,i._)(this,"preloadedSubscriptions",void 0),(0,i._)(this,"warningsShown",void 0),(0,i._)(this,"enabled_features",void 0),(0,i._)(this,"maxAge",void 0),(0,i._)(this,"cache",void 0),(0,i._)(this,"stalePreloadedData",void 0),(0,i._)(this,"markPreloadedDataAsStale",void 0),this.ssrPreloadedData=e,this.enabled_features=t,this.preloadedSubscriptions=r,this.warningsShown=new Set,this.maxAge=n,this.cache=o,this.stalePreloadedData=l??!1,this.markPreloadedDataAsStale=u,this.relayNetwork=a.Network.create((e,t,r)=>a.Observable.create(i=>{let a=function({params:e,variables:t,ssrPreloadedQueries:r,baseUrl:i,emitWarning:s,enabledFeatures:a,maxAge:n,observer:o,cache:l,metadata:c,stalePreloadedData:u,preloadSubscriptions:d}){if(!e.id)throw Error("params has no id property!");let h=(0,x.M3)(),p=e.metadata?.defaultValues;if(e.id&&r){let i=(0,$.NA)(t,p),s=r.get(e.id)?.get(i),a=Math.floor(Date.now()/1e3),c=s?.timestamp;if(s&&(o.next(s),!(n&&c&&a>c+n)&&!u)){if(h&&l){let r=e.metadata?.ttl;void 0!==r&&r>0&&l.tryCacheFetchResult(e.id,e.name,t,s,r,{query_name:e.name,update_type:"preloaded"},p)}o.complete();return}e.metadata?.isRelayRouteRequest&&(0,D.g5)()}let f={...c??{},...e.metadata};if(D.KJ&&h&&"mutation"!==e.operationKind){let{keysToExclude:r,preheatSource:i,skipCache:s,cacheEnabledForQuery:a,defaultValues:n}=U(f);if(a&&!i&&!s){let i=`${I.vp}-${(0,x.cj)()}`,s=(0,I.KE)(i,e.id,e.name,t,n,r);s&&s!==L.uY&&(d?.(s),o.next(s),(0,L.CI)())}}if(D.KJ)return j({params:e,variables:t,baseUrl:i,enabledFeatures:a,observer:o,isClientSideCachingEnabled:h,cache:l,metadata:f,preloadSubscriptions:d})}({params:e,variables:t,ssrPreloadedQueries:this.ssrPreloadedData,baseUrl:s,emitWarning:e=>{this.warningsShown.has(e)||(this.warningsShown.add(e),console.warn(e))},enabledFeatures:this.enabled_features,maxAge:n,observer:i,cache:this.cache,metadata:r.metadata,stalePreloadedData:this.stalePreloadedData,preloadSubscriptions:this.preloadSubscriptions.bind(this)});a instanceof Promise&&a.then(e=>{Array.isArray(e)||this.preloadSubscriptions(e),e&&i.next(e),i.complete()}),"mutation"===e.operationKind&&(this.stalePreloadedData=!0,this.markPreloadedDataAsStale?.(!0))}),(e,t)=>(function(e,t,r=new Map){let i=e.id,s=e.name;return a.Observable.create(a=>{let n=()=>{},o=!1;return async function(){if(!i)throw Error("unexpected operation with no id!");let l=e.metadata?.scope,u=function(e,t,r,i){let s=i.get(e);if(s)e:for(let[e,i]of s){for(let[i,s]of Object.entries(JSON.parse(e)))if("$scope"===i&&r!==s||t[i]!==s)continue e;return i}}(i,t,l,r),d=null;if(u)d=u.subscriptionId,u.response&&a.next(u.response);else try{let e=await S(i,s,t,"GET",{isSubscription:!0,scope:l});d=e.subscriptionId,e.response&&a.next(e.response)}catch(e){if(e instanceof Error&&e.message.includes("Subscription halted"))return;throw e}try{let e=await (0,R.H)();if(o)return;let r=(0,N.$)(e,d,async({scope_object:e,subscription_topic:r,dispatch_time:n})=>{try{let{response:o}=await S(i,s,{...t},"GET",{isSubscription:!0,scopeObject:e,subscriptionTopic:r,dispatchTime:n,scope:l});o&&a.next(o)}catch(e){(0,c.N7)(e,{message:`Error in fetching update for ${i} with variables ${JSON.stringify(t)}`})}});r?.unsubscribe&&(n=r.unsubscribe)}catch(e){a.error(e)}}(),{get closed(){return o},unsubscribe(){o=!0,n()}}})})(e,t,this.preloadedSubscriptions))}};let H=e=>{let t;if(D.KJ){let e=(0,u.G7)("issues_react_client_side_caching_analytics");t=(0,I.VC)({sendAnalyticsEvent:(e,t,r={})=>{let i={react:!0,version:I.L7};(0,P.BI)(e,{...i,...r,target:t})},reportableEvents:e?I.Zf.ANY:I.Zf.NONE})}let r=new SSRNetwork(new Map,{},new Map,e,void 0,t),i=new a.Environment({scheduler:F,store:new a.Store(new a.RecordSource,{gcReleaseBufferSize:50,queryCacheExpirationTime:3e5,gcScheduler:k}),getDataID:(e,t)=>{if("Viewer"===t)return null==e.id?(0,a.generateClientID)("client:root","viewer"):e.id;if("ProjectV2SingleSelectFieldOption"===t){let t=[];return e.id&&t.push(e.id),e.name&&t.push(e.name),e.color&&t.push(e.color),e.description&&t.push(function(e){let t=0;if(0===e.length)return t;for(let r=0;rr.getPreloadedSubscriptions()},i};function q({environment:e,query:t,variables:r={},metadata:i}){let s=(0,a.getRequest)(t),n=(0,a.createOperationDescriptor)(s,r);return e.retain(n),(0,a.fetchQuery)(e,t,r,{fetchPolicy:"store-or-network",networkCacheConfig:{metadata:i}})}},64549:(e,t,r)=>{r.d(t,{Gd:()=>i,NA:()=>s,wY:()=>a});let i=12096e5;function s(e,t){var r;let i=(r=e,{...t,...r});return JSON.stringify(i,Object.keys(i).sort())}function a(e){let t={};if("operation"in e)for(let r of e.operation.argumentDefinitions)void 0!==r.defaultValue&&null!==r.defaultValue&&(t[r.name]=r.defaultValue);return Object.keys(t).length>0?t:void 0}},82606:(e,t,r)=>{let i;r.d(t,{Zm:()=>j,uY:()=>F,XA:()=>K,CI:()=>X,KE:()=>V});var s=r(69599),a=r(37285),n=r(82518),o=r(35750),l=r(18150),c=r(85242),u=r(50467);let d={status:"CLOSED",nextAttemptTime:null,failureCount:0},h="offline_cache.circuit_breaker";var p,f,_,m,E,w,g=new WeakMap,y=new WeakMap,v=new WeakMap,b=new WeakMap,S=new WeakMap,A=new WeakMap,T=new WeakMap,O=new WeakMap;let CircuitBreaker=class CircuitBreaker{constructor(e,t){(0,l._)(this,g,{writable:!0,value:void 0}),(0,l._)(this,y,{writable:!0,value:void 0}),(0,l._)(this,v,{writable:!0,value:null}),(0,u._)(this,"reportFailure",(e,t,r)=>{switch((0,o._)(this,y).lastErrorType&&(0,o._)(this,y).lastErrorType!==e&&(0,o._)(this,A).call(this,e),e){case"RateLimitError":return(0,o._)(this,b).call(this,t,r);case"ServiceUnavailableError":return(0,o._)(this,S).call(this);default:return}}),(0,u._)(this,"reportSuccess",()=>{(0,c._)(this,y,{status:"CLOSED",nextAttemptTime:null,failureCount:0}),null==(p=(0,o._)(f=this,v))||p.call(f,h,"success_reported")}),(0,u._)(this,"getStatus",()=>{if("CLOSED"===(0,o._)(this,y).status)return"CLOSED";console.log("nextAttemptTime:",(0,o._)(this,y).nextAttemptTime,"currentTime:",Date.now());let e=Date.now();return(0,o._)(this,y).nextAttemptTime&&e>=(0,o._)(this,y).nextAttemptTime?((0,c._)(this,y,{status:"CLOSED",nextAttemptTime:null,failureCount:0}),"CLOSED"):"OPEN"}),(0,l._)(this,b,{writable:!0,value:(e,t)=>{let r=null;if(void 0!==e){let t=1e3*e,i=Math.random()*t*.05;r=Date.now()+t+i}else r=void 0!==t?1e3*t+5e3*Math.random():(0,o._)(this,T).call(this,(0,o._)(this,y).failureCount+1);let i=((0,o._)(this,y).failureCount||0)+1,s=(0,o._)(this,O).call(this,(0,o._)(this,y),i),a={status:s,nextAttemptTime:r,failureCount:i,lastErrorType:"RateLimitError"};(0,c._)(this,y,a),null==(_=(0,o._)(m=this,v))||_.call(m,h,"error_reported",{error_type:"RateLimitError",new_status:s,failure_count:i,next_attempt_time:r})}}),(0,l._)(this,S,{writable:!0,value:()=>{let e=(0,o._)(this,T).call(this,(0,o._)(this,y).failureCount+1),t=((0,o._)(this,y).failureCount||0)+1,r="OPEN";(0,c._)(this,y,{status:r,nextAttemptTime:e,failureCount:t,lastErrorType:"ServiceUnavailableError"}),null==(E=(0,o._)(w=this,v))||E.call(w,h,"error_reported",{error_type:"ServiceUnavailableError",new_status:r,failure_count:t,next_attempt_time:e})}}),(0,l._)(this,A,{writable:!0,value:e=>{(0,c._)(this,y,{status:"CLOSED",nextAttemptTime:null,failureCount:0,lastErrorType:e})}}),(0,l._)(this,T,{writable:!0,value:e=>{let t=Math.min(5e3*2**(e-1),3e5),r=Math.random()*t*.25;return Date.now()+(t+r)}}),(0,l._)(this,O,{writable:!0,value:(e,t)=>"OPEN"===e.status||t>=1?"OPEN":"CLOSED"}),(0,c._)(this,g,e),(0,c._)(this,v,t),(0,c._)(this,y,d)}};var R=new WeakMap,N=new WeakMap;let C=new class LRUCache{get(e){let t=(0,o._)(this,R).get(e);return void 0!==t&&((0,o._)(this,R).delete(e),(0,o._)(this,R).set(e,t)),t}set(e,t){if((0,o._)(this,R).has(e)&&(0,o._)(this,R).delete(e),(0,o._)(this,R).set(e,t),(0,o._)(this,R).size>(0,o._)(this,N)){let e=(0,o._)(this,R).keys().next().value;void 0!==e&&(0,o._)(this,R).delete(e)}}delete(e){(0,o._)(this,R).delete(e)}clear(){(0,o._)(this,R).clear()}get size(){return(0,o._)(this,R).size}constructor(e){(0,l._)(this,R,{writable:!0,value:void 0}),(0,l._)(this,N,{writable:!0,value:void 0}),(0,c._)(this,R,new Map),(0,c._)(this,N,e)}}(250);function k(e,t,r){i&&i("hot_cache.error",t,{error_type:e,error_message:r instanceof Error?r.message:"Unknown error"})}let D={init(e){i=e},getItem(e){try{return C.get(e)}catch(t){k("get_item",e,t);return}},setItem(e,t){try{C.set(e,t)}catch(t){k("set_item",e,t)}},removeItem(e){try{C.delete(e)}catch(t){k("remove_item",e,t)}},sendAnalyticsEvent(...e){i?.(...e)},clear(){C.clear()},size:()=>C.size};var I=r(2362);let P=/^https?:\/\/[^/]+\/([^/]+)\/([^/]+)\/issues\/(\d+)$/,x={lastResult:null,pendingEvent:null,pendingEventTime:null,listenerRegistered:!1,sendAnalyticsEvent:null,enabled:!1},L=()=>{x.lastResult=null,x.pendingEvent=null,x.pendingEventTime=null},$=(e,t)=>{if(null!==t&&((0,n.au)({name:"ISSUES_SHOW_HPC",value:e.detail.hpc,tags:{cpu:e.detail.cpu||"unknown",cache_result:t,mechanism:e.detail.mechanism||"unknown"}},void 0,1),x.sendAnalyticsEvent)){let r,i=((r=performance.getEntriesByType("navigation")).length>0&&r[0]?.serverTiming||[]).map(e=>({name:e.name,duration:e.duration}));x.sendAnalyticsEvent("issues.hpc","issue#show",{hpc:e.detail.hpc,cpu:e.detail.cpu||"unknown",cache_result:t,mechanism:e.detail.mechanism||"unknown",server_timing:JSON.stringify(i)})}},M=e=>{if(P.test(e.detail.name))if(null!==x.lastResult){let t=x.lastResult;L(),$(e,t)}else x.pendingEvent=e,x.pendingEventTime=Date.now()},U=(e,t)=>{if(x.enabled&&"IssueViewerViewQuery"===e&&null!==t&&(x.lastResult=t,x.pendingEvent)){let e=x.lastResult,t=x.pendingEvent,r=Date.now()-(x.pendingEventTime||0);L(),r<=500&&$(t,e)}},j={EXCLUDE_FROM_CACHE_KEY:"exclude_from_cache_key",SKIP_NETWORK:"skip_network"},F={};function H(e,t,r){let i={...t,...Object.fromEntries(Object.entries(e).filter(([,e])=>void 0!==e))},s=Object.keys(i).sort(),a={};for(let e of s){if(r&&r.includes(e))continue;let t=i[e];null!=t&&(a[e]=t)}return a}function q(e,t,r,i,s){let a=H(r,i,s);return`${e}-${t}#${JSON.stringify(a)}`}function V(e,t,r,i,s,a){let n=q(e,r,i,s,a),o=D.getItem(n);if(o)return o.queryHash!==t?F:(U(r,"hit-hot"),D.sendAnalyticsEvent("hot_cache.hit",n,{}),o.state.data)}function K({storage:e,prefix:t,maxAgeMs:r,sendAnalyticsEvent:i}){let n=(0,s.G7)("issues_react_custom_hpc_metric"),o=new CircuitBreaker(`${t}-circuit-breaker`,i);async function l(r,s,a,n,o){if(!e)return;let l=q(t,s,a,o,n?.[j.EXCLUDE_FROM_CACHE_KEY]);try{let t=await e.getItem(l,G(n));if(t&&t.queryHash!==r)return F;return t?.state.data}catch(e){i(I.Zf.CACHE_READ_ERROR,l,{error:String(e)});return}}async function c(t){if(e)try{D.removeItem(t),await e.removeItem(t)}catch(e){i(I.Zf.CACHE_EVICT_ERROR,t,{error:String(e)})}}async function u(r,s,a,n,o,l,c,u){if(!e)return;let d=l?.[j.EXCLUDE_FROM_CACHE_KEY],h=q(t,s,a,c,d),p={queryHash:r,variables:H(a,c,d),state:{data:n,dataUpdatedAt:Date.now(),ttl:o,preheatSource:u}};try{u&&D.setItem(h,p),await e.setItem(h,p,void 0,void 0,G(l))}catch(e){i(I.Zf.CACHE_WRITE_ERROR,h,{error:String(e)})}}return n&&!x.enabled&&(x.sendAnalyticsEvent=i,x.listenerRegistered||(document.addEventListener("web-vitals:hpc",M),x.listenerRegistered=!0),x.enabled=!0),D.init(i),{persisterFn:async function(s,n,d,h,p,f,_,m,E){var w,g,y,v,b,S,A;let T,O=await l(n,d,h,_,m),R=_?.[j.EXCLUDE_FROM_CACHE_KEY],N=q(t,d,h,m,R),C=void 0!==O&&O!==F,k=_?.preheat_source,I=!!k,P=!!_?.skip_cache,x=!!_?.[j.SKIP_NETWORK],L=null,$=null;if(C?("object"==typeof O&&null!==O&&"data"in O&&(L=JSON.stringify(O.data)),(0,a.Av)({__trace:{query_name:_?.query_name,query_id:n,query_variables:h,duration_ms:1,cache_result:"hit"}}),I||P||(U(d,"hit"),E?.(O),p.next(O),X())):U(d,"miss"),I&&C){let e={queryHash:n,variables:H(h,m,R),state:{data:O,dataUpdatedAt:Date.now(),ttl:f,preheatSource:k}};D.setItem(N,e),k&&i("offline_cache.preheat_noop",N,{preheatSource:k});return}if(x)return;let M=o.getStatus();try{if(I&&"OPEN"===M)return;T=await s(C)}catch(e){if(C)return J([{message:e instanceof Error?e.message:"Unknown error"}]),O;throw e}let V=W(T);if(C&&V&&J(T.errors),I)if(V){let e=function(e){if(!e)return{shouldBackoff:!1};if("object"==typeof e&&"extensions"in e&&"object"==typeof e.extensions&&null!==e.extensions&&"backoff"in e.extensions){let t=e.extensions,r="string"==typeof t.errorType?t.errorType:void 0,i="number"==typeof t.retryAfter?t.retryAfter:void 0,s="number"==typeof t.resetTime?t.resetTime:void 0;return{shouldBackoff:!!t.backoff,errorType:r,retryAfter:i,resetTime:s}}return{shouldBackoff:!1}}(T);e.shouldBackoff&&o.reportFailure(e.errorType??"Unknown",e.retryAfter,e.resetTime)}else"OPEN"===M&&o.reportSuccess();let K=(w=T,!!(g=O)&&(g===F||!!w&&W(w))),G=!(!(y=T)||"object"==typeof y&&"errors"in y&&Array.isArray(y.errors)&&y.errors.length>0);if(e&&K)c(N);else if(G&&e){"object"==typeof T&&null!==T&&"data"in T&&($=JSON.stringify(T.data));let e=(v=!!O,b=L,S=$,A=I,P?"force_refresh":v?b!==S?"changed":"unchanged":A?"pre_heated":"new");u(n,d,h,T,f??r,{..._,update_type:e},m,k)}if(!I)return T},retrieveQuery:l,tryCacheFetchResult:u}}function G(e){if(!e)return;let t={};for(let[r,i]of Object.entries(e))Object.values(j).includes(r)||(t[r]=i);return t}function W(e){return"object"==typeof e&&null!==e&&"errors"in e&&Array.isArray(e.errors)&&e.errors.length>0}function J(e){"u">typeof window&&window.dispatchEvent(new CustomEvent("stale-cache-warning",{detail:{errors:e}}))}function X(){"u"{r.d(t,{z:()=>p});var i=r(35750),s=r(18150),a=r(87057),n=r(69599),o=r(82075);let l="VERSION_MISMATCH_LAST_TRIGGERED",c=(0,o.A)("localStorage",{ttl:9e7,throwQuotaErrorsOnSet:!1}),u=null;let VersionMismatchRateLimiter=class VersionMismatchRateLimiter{canTrigger(){let e=this.getLastTriggerTime();return null===e||Date.now()-e>=864e5}recordTrigger(){let e=Date.now();c.setItem(l,e.toString()),u=e}getLastTriggerTime(){let e=c.getItem(l);if(e){let t=parseInt(e,10);return isNaN(t)?null:t}return u}clearTriggerRecord(){c.removeItem(l),u=null}};let d=new VersionMismatchRateLimiter;var h=new WeakMap;let p=new class VersionMismatchDetector{registerApp(e,t){(0,i._)(this,h).set(e,t)}unregisterApp(e){(0,i._)(this,h).delete(e)}checkResponse(e,t){if("true"!==e.headers.get("X-GitHub-Version-Mismatch")||!(0,n.G7)("react_version_mismatch_detection")||!d.canTrigger())return!1;let r={clientVersion:(0,a.O)(),serverVersion:e.headers.get("X-GitHub-Server-Version")||void 0,requestUrl:e.url,responseHeaders:e.headers,appName:t};if(d.recordTrigger(),t){let e=(0,i._)(this,h).get(t);if(e)return e.onMismatchDetected(r),!0}else{let e=!1;for(let[t,s]of(0,i._)(this,h).entries()){let i={...r,appName:t};s.onMismatchDetected(i),e=!0}return e}return!1}constructor(){(0,s._)(this,h,{writable:!0,value:new Map})}}},87683:(e,t,r)=>{r.d(t,{KE:()=>a.KE,L7:()=>c,VC:()=>u,Zf:()=>i.Zf,Zm:()=>a.Zm,vp:()=>o});var i=r(2362),s=r(21067),a=r(82606);let n={Check:e=>"object"==typeof e&&null!==e&&(void 0===e.data||"object"==typeof e.data)&&(void 0===e.errors||!!Array.isArray(e.errors)),Code:()=>"manual-validator",Errors:()=>[]},o="relay-query",l=6048e5,c="1.0.9",u=({sendAnalyticsEvent:e,reportableEvents:t=i.Zf.ANY,maxAgeMs:r=l})=>{let c=(0,i.i5)({validator:n,sendAnalyticsEvent:(r,...s)=>{t!==i.Zf.NONE&&(t===i.Zf.ANY||Array.isArray(t)&&t.includes(r))&&e(r,...s)}});return(0,a.XA)({storage:c,prefix:`${o}-${(0,s.cj)()}`,maxAgeMs:r,sendAnalyticsEvent:e})}}}]); +//# sourceMappingURL=30721-98ab59d6372d.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/31475-a29a8d21ba6e.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/31475-a29a8d21ba6e.js" new file mode 100644 index 0000000..3058dae --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/31475-a29a8d21ba6e.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:31475-a29a8d21ba6e.js"); +(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[31475],{2833:e=>{e.exports=function(e,t,r,o){var n=r?r.call(o,e,t):void 0;if(void 0!==n)return!!n;if(e===t)return!0;if("object"!=typeof e||!e||"object"!=typeof t||!t)return!1;var a=Object.keys(e),i=Object.keys(t);if(a.length!==i.length)return!1;for(var s=Object.prototype.hasOwnProperty.bind(t),c=0;c{"use strict";var o=r(44363),n={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},a={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},i={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};function c(e){return o.isMemo(e)?i:s[e.$$typeof]||n}s[o.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},s[o.Memo]=i;var l=Object.defineProperty,d=Object.getOwnPropertyNames,u=Object.getOwnPropertySymbols,f=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,m=Object.prototype;e.exports=function e(t,r,o){if("string"!=typeof r){if(m){var n=p(r);n&&n!==m&&e(t,n,o)}var i=d(r);u&&(i=i.concat(u(r)));for(var s=c(t),h=c(r),g=0;g{"use strict";r.d(t,{A:()=>o});let o=function(e){function t(e,t,o){var n=t.trim().split(m);t=n;var a=n.length,i=e.length;switch(i){case 0:case 1:var s=0;for(e=0===i?"":e[0]+" ";so&&(o=(t=t.trim()).charCodeAt(0)),o){case 38:return t.replace(h,"$1"+e.trim());case 58:return e.trim()+t.replace(h,"$1"+e.trim());default:if(0<+r&&0c.charCodeAt(8))break;case 115:i=i.replace(c,"-webkit-"+c)+";"+i;break;case 207:case 102:i=i.replace(c,"-webkit-"+(102s.charCodeAt(0)&&(s=s.trim()),s=[s],0p)&&($=(V=V.replace(" ",":")).length),0{"use strict";r.d(t,{K1:()=>o.K1,U0:()=>n.U,Z0:()=>o.Z0,tp:()=>o.tp});var o=r(55966),n=r(84366);r(23635)},12683:(e,t,r)=>{"use strict";r.d(t,{lF:()=>M,Wy:()=>H,eu:()=>K,cA:()=>w,az:()=>o.A,BI:()=>Z,$n:()=>et,$c:()=>eu,Hx:()=>ep,MJ:()=>eh,DZ:()=>ev,K0:()=>eS,JU:()=>eL,N_:()=>eI,z9:()=>eN,zY:()=>eV.z,Iz:()=>eJ,y$:()=>e0,EY:()=>e9,ks:()=>tn,TM:()=>e7,NP:()=>p,Kf:()=>ti,ou:()=>td,m_:()=>ts.m,PA:()=>tf,Ou:()=>tA,h1:()=>d,sx:()=>C.A,yB:()=>v,DP:()=>m});var o=r(45846),n=r(96540),a=r(40961),i=r(38267),s=r(565),c=r(49021),l=r(36293),d=r(14744),u=r(74848);let f=n.createContext({setColorMode:()=>null,setDayScheme:()=>null,setNightScheme:()=>null}),p=({children:e,...t})=>{let{theme:r,colorMode:o,dayScheme:p,nightScheme:A}=m(),y=t.theme??r??s.A,w=(0,c.B)(),{resolvedServerColorMode:_}=(e=>{try{let t=document.getElementById(`__PRIMER_DATA_${e}__`)?.textContent;if(t)return JSON.parse(t)}catch(e){}return{}})(w),b=n.useRef(_),[v,x]=(0,l.N)(t.colorMode??o??"day"),[C,S]=(0,l.N)(t.dayScheme??p??"light"),[k,O]=(0,l.N)(t.nightScheme??A??"dark"),L=function(){let[e,t]=n.useState(h);return n.useEffect(()=>{let e=window?.matchMedia?.("(prefers-color-scheme: dark)");function r(e){return e?"night":"day"}function o(e){t(r(e.matches))}if(e){if(t(r(e.matches)),void 0!==e.addEventListener)return e.addEventListener("change",o),function(){e.removeEventListener("change",o)};if(void 0!==e.addListener)return e.addListener(o),function(){e.removeListener(o)}}},[]),e}(),j=b.current||g(v,L),T=function(e,t,r){switch(e){case"day":case"light":return t;case"dark":case"night":return r}}(j,C,k),{resolvedTheme:I,resolvedColorScheme:P}=n.useMemo(()=>(function(e,t){if(!e.colorSchemes)return{resolvedTheme:e,resolvedColorScheme:void 0};if(!e.colorSchemes[t]){console.error(`\`${t}\` scheme not defined in \`theme.colorSchemes\``);let r=Object.keys(e.colorSchemes)[0];return{resolvedTheme:d(e,e.colorSchemes[r]),resolvedColorScheme:r}}return{resolvedTheme:d(e,e.colorSchemes[t]),resolvedColorScheme:t}})(y,T),[y,T]);return n.useEffect(function(){let e=g(v,L);b.current&&(b.current!==e&&window.setTimeout(()=>{a.flushSync(()=>{x(e)}),x(v)}),b.current=null)},[v,L,x]),(0,u.jsx)(f.Provider,{value:{theme:I,colorScheme:T,colorMode:v,resolvedColorMode:j,resolvedColorScheme:P,dayScheme:C,nightScheme:k,setColorMode:x,setDayScheme:S,setNightScheme:O},children:(0,u.jsxs)(i.NP,{theme:I,children:[e,t.preventSSRMismatch?(0,u.jsx)("script",{type:"application/json",id:`__PRIMER_DATA_${w}__`,dangerouslySetInnerHTML:{__html:JSON.stringify({resolvedServerColorMode:j})}}):null]})})};function m(){return n.useContext(f)}function h(){return"u">typeof window&&window.matchMedia?.("(prefers-color-scheme: dark)")?.matches?"night":"day"}function g(e,t){return"auto"===e?t:e}var A=r(34164);r(43842);let y=(0,i.DU)(["*{box-sizing:border-box;}body{margin:0;}table{border-collapse:collapse;}[data-color-mode='light'] input{color-scheme:light;}[data-color-mode='dark'] input{color-scheme:dark;}@media (prefers-color-scheme:light){[data-color-mode='auto'][data-light-theme*='light']{color-scheme:light;}}@media (prefers-color-scheme:dark){[data-color-mode='auto'][data-dark-theme*='dark']{color-scheme:dark;}}[role='button']:focus:not(:focus-visible):not(:global(.focus-visible)),[role='tabpanel'][tabindex='0']:focus:not(:focus-visible):not(:global(.focus-visible)),button:focus:not(:focus-visible):not(:global(.focus-visible)),summary:focus:not(:focus-visible):not(:global(.focus-visible)),a:focus:not(:focus-visible):not(:global(.focus-visible)){outline:none;box-shadow:none;}[tabindex='0']:focus:not(:focus-visible):not(:global(.focus-visible)),details-dialog:focus:not(:focus-visible):not(:global(.focus-visible)){outline:none;}.BaseStyles{font-family:var(--BaseStyles-fontFamily,var(--fontStack-system));line-height:var(--BaseStyles-lineHeight,1.5);color:var(--BaseStyles-fgColor,var(--fgColor-default));&:has([data-color-mode='light']){input &{color-scheme:light;}}&:has([data-color-mode='dark']){input &{color-scheme:dark;}}:where(a:not([class*='prc-']):not([class*='PRC-']):not([class*='Primer_Brand__'])){color:var(--fgColor-accent,var(--color-accent-fg));text-decoration:none;&:hover{text-decoration:underline;}}}"]);function w({children:e,color:t,fontFamily:r,lineHeight:o,className:n,as:a="div",style:i,...s}){let{colorMode:c,colorScheme:l,dayScheme:d,nightScheme:f}=m();return(0,u.jsxs)(a,{className:(0,A.$)("BaseStyles",n),"data-portal-root":!0,"data-color-mode":"auto"===c?"auto":l?.includes("dark")?"dark":"light","data-light-theme":d,"data-dark-theme":f,style:{"--BaseStyles-fgColor":t,"--BaseStyles-fontFamily":r,"--BaseStyles-lineHeight":o,...i},...s,children:[(0,u.jsx)(y,{colorScheme:l?.includes("dark")?"dark":"light"}),e]})}var _=r(57227);let{Jt:b}=r(57304),v=e=>(0,_.y)(e,b(s.A,e));var x=r(5524),C=r(49539);let S=(0,i.Ay)(x.l).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"ActionList__StyledActionList",componentId:"sc-hw2362-0"})(["",""],C.A),k=n.forwardRef(function({as:e,...t},r){return(0,u.jsx)(S,{ref:r,...t,...e?{forwardedAs:e}:{}})}),O=(0,i.Ay)(x.l.LinkItem).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"ActionList__StyledActionListLinkItem",componentId:"sc-hw2362-1"})(["",""],C.A),L=n.forwardRef(({children:e,as:t,...r},o)=>(0,u.jsx)(O,{ref:o,...r,...t?{forwardedAs:t}:{},children:e}));L.displayName="ActionList.LinkItem";let j=(0,i.Ay)(x.l.TrailingAction).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"ActionList__StyledActionListTrailingAction",componentId:"sc-hw2362-2"})(["",""],C.A),T=n.forwardRef((e,t)=>{let{as:r,...o}=e;return(0,u.jsx)(j,{...o,...r?{forwardedAs:r}:{},ref:t})}),I=(0,i.Ay)(x.l.Item).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"ActionList__StyledActionListItem",componentId:"sc-hw2362-3"})(["",""],C.A),P=n.forwardRef(({children:e,as:t,...r},o)=>(0,u.jsx)(I,{ref:o,...r,...t?{forwardedAs:t}:{},children:e})),N=(0,i.Ay)(x.l.Group).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"ActionList__StyledActionListGroup",componentId:"sc-hw2362-4"})(["",""],C.A),R=({children:e,as:t,...r})=>(0,u.jsx)(N,{...r,...t?{forwardedAs:t}:{},children:e});R.displayName="ActionList.Group";let E=(0,i.Ay)(x.l.Divider).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"ActionList__ActionListDivider",componentId:"sc-hw2362-5"})(["",""],C.A),F=(0,i.Ay)(x.l.LeadingVisual).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"ActionList__StyledActionListLeadingVisual",componentId:"sc-hw2362-6"})(["",""],C.A),B=({children:e,as:t,...r})=>(0,u.jsx)(F,{...r,...t?{forwardedAs:t}:{},children:e});B.displayName="ActionList.LeadingVisual";let z=(0,i.Ay)(x.l.TrailingVisual).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"ActionList__StyledActionListTrailingVisual",componentId:"sc-hw2362-7"})(["",""],C.A),$=({children:e,as:t,...r})=>(0,u.jsx)(z,{...r,...t?{forwardedAs:t}:{},children:e});$.displayName="ActionList.TrailingVisual";let M=Object.assign(k,{Item:P,LinkItem:L,Group:R,GroupHeading:x.l.GroupHeading,Divider:E,Description:x.l.Description,LeadingVisual:B,TrailingVisual:$,Heading:x.l.Heading,TrailingAction:T});P.__SLOT__=x.l.Item.__SLOT__,L.__SLOT__=x.l.LinkItem.__SLOT__,R.__SLOT__=x.l.Group.__SLOT__,E.__SLOT__=x.l.Divider.__SLOT__,B.__SLOT__=x.l.LeadingVisual.__SLOT__,$.__SLOT__=x.l.TrailingVisual.__SLOT__,T.__SLOT__=x.l.TrailingAction.__SLOT__;var D=r(94236);let V=(0,i.Ay)(D.W.Overlay).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"ActionMenu__ActionMenuOverlay",componentId:"sc-w5s60e-0"})(["",""],C.A),H=Object.assign(D.W,{Button:D.W.Button,Anchor:D.W.Anchor,Overlay:V,Divider:D.W.Divider});V.__SLOT__=D.W.Overlay.__SLOT__;var G=r(55213);let W=(0,i.Ay)(G.A.Overlay).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Autocomplete__AutocompleteOverlay",componentId:"sc-j8ax2e-0"})(["",""],C.A),U=(0,i.Ay)(G.A.Input).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Autocomplete__AutocompleteInput",componentId:"sc-j8ax2e-1"})(["",""],C.A);Object.assign(G.A,{Context:G.A.Context,Input:U,Menu:G.A.Menu,Overlay:W}),W.__SLOT__=G.A.Overlay.__SLOT__;var q=r(51790);let K=(0,n.forwardRef)(function(e,t){return(0,u.jsx)(o.A,{as:q.A,ref:t,...e})});var X=r(76662);let Y=(0,i.Ay)(X.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Breadcrumbs__BreadcrumbsImpl",componentId:"sc-1qj8pw-0"})(["",""],C.A),J=(0,i.Ay)(X.A.Item).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Breadcrumbs__StyledBreadcrumbsItem",componentId:"sc-1qj8pw-1"})(["",""],C.A),Z=Object.assign(Y,{Item:function({as:e,...t}){return(0,u.jsx)(J,{...t,...e?{forwardedAs:e}:{}})}});var Q=r(21373);let ee=(0,i.Ay)(Q.Q).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Button__StyledButtonComponent",componentId:"sc-vqy3e4-0"})(["",""],C.A),et=(0,n.forwardRef)(({as:e,sx:t,style:r,...o},n)=>{let{block:a,size:i="medium",leadingVisual:s,trailingVisual:c,trailingAction:l}=o,d={},f={...r||{}};if(null!==t&&Object.keys(t||{}).length>0){d=er({block:a,size:i,leadingVisual:s,trailingVisual:c,trailingAction:l},t);let{color:e}=t;e&&(f["--button-color"]=e)}return(0,u.jsx)(ee,{style:f,sx:d,ref:n,...o,...e?{forwardedAs:e}:{}})});function er(e,t){let r=`[data-size="${e.size}"]`,o=e.block?'[data-block="block"]':"",n=e.leadingVisual||e.trailingVisual||e.trailingAction?"":"[data-no-visuals]",a=`&${r}${o}${n}`,i={};return t&&(i[a]=t),i}et.displayName="Button",et.__SLOT__=Q.Q.__SLOT__;var eo=r(46720);(0,n.forwardRef)(function(e,t){return(0,u.jsx)(o.A,{as:eo.A,ref:t,...e})}).__SLOT__=eo.A.__SLOT__;var en=r(64451);let ea=e=>(0,u.jsx)(o.A,{as:en.A,...e}),ei=e=>(0,u.jsx)(o.A,{as:en.A.Label,...e}),es=e=>(0,u.jsx)(o.A,{as:en.A.Caption,...e}),ec=e=>(0,u.jsx)(o.A,{as:en.A.Validation,...e});Object.assign(ea,{Label:ei,Caption:es,Validation:ec}),ea.__SLOT__=en.A.__SLOT__,ei.__SLOT__=en.A.Label.__SLOT__,es.__SLOT__=en.A.Caption.__SLOT__,ec.__SLOT__=en.A.Validation.__SLOT__;var el=r(12996);(0,i.Ay)(el.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"CircleBadge",componentId:"sc-1u7lp3v-0"})(["",""],C.A);var ed=r(57478);let eu=(0,n.forwardRef)(function(e,t){return(0,u.jsx)(o.A,{as:ed.A,ref:t,...e})});r(85203);var ef=r(72511);let ep=(0,i.Ay)(ef.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Flash",componentId:"sc-413izo-0"})(["",""],C.A);var em=r(86877);let eh=Object.assign((0,i.Ay)(em.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"FormControl__FormControlImpl",componentId:"sc-1642wfe-0"})(["",""],C.A),{__SLOT__:em.A.__SLOT__,Caption:em.A.Caption,LeadingVisual:em.A.LeadingVisual,Validation:em.A.Validation,Label:em.A.Label});var eg=r(4355);let eA=(0,n.forwardRef)(function(e,t){return(0,u.jsx)(o.A,{as:eg.A,ref:t,...e})}),ey=(0,n.forwardRef)(({as:e,...t},r)=>(0,u.jsx)(eA,{...t,...e?{forwardedAs:e}:{},ref:r})),ew=(0,n.forwardRef)(function(e,t){return(0,u.jsx)(o.A,{as:eg.A.Item,ref:t,...e})}),e_=(0,n.forwardRef)(function(e,t){return(0,u.jsx)(o.A,{as:eg.A.Link,ref:t,...e})});Object.assign(ey,{Item:ew,Link:(0,n.forwardRef)(({as:e,...t},r)=>(0,u.jsx)(e_,{...t,...e?{forwardedAs:e}:{},ref:r}))});var eb=r(81960);let ev=(0,i.Ay)(eb.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Heading",componentId:"sc-1vc165i-0"})(["",""],C.A);var ex=r(26108);let eC=(0,i.Ay)(ex.K).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"IconButton__StyledIconButton",componentId:"sc-i53dt6-0"})(["",""],C.A),eS=(0,n.forwardRef)(({as:e,sx:t,...r},o)=>{let n=t,{size:a="medium"}=r;return null!=t&&Object.keys(t).length>0&&(n=er({size:a},t)),(0,u.jsx)(eC,{sx:n,...r,...e?{forwardedAs:e}:{},ref:o})});eS.__SLOT__=ex.K.__SLOT__;var ek=r(26607);let eO=(0,i.Ay)(ek.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Label__StyledLabel",componentId:"sc-1cpass9-0"})(["",""],C.A),eL=(0,n.forwardRef)(({as:e,...t},r)=>(0,u.jsx)(eO,{...t,...e?{forwardedAs:e}:{},ref:r}));var ej=r(84268);let eT=(0,i.Ay)(ej.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Link__StyledLink",componentId:"sc-1syctfj-0"})(["",""],C.A),eI=(0,n.forwardRef)(({as:e,...t},r)=>(0,u.jsx)(eT,{...t,...e?{forwardedAs:e}:{},ref:r}));var eP=r(73077);let eN=(0,i.Ay)(eP.z).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"LinkButton",componentId:"sc-1v6zkmg-0"})(["",""],C.A);var eR=r(61864);let eE=(0,i.Ay)(eR.c).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"NavList__StyledNavListImpl",componentId:"sc-86jrwg-0"})(["",""],C.A),eF=(0,n.forwardRef)(function({as:e,...t},r){return(0,u.jsx)(eE,{ref:r,...e?{forwardedAs:e}:{},...t})}),eB=(0,i.Ay)(eR.c.Item).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"NavList__StyledNavListItem",componentId:"sc-86jrwg-1"})(["",""],C.A),ez=(0,n.forwardRef)(({as:e,...t},r)=>(0,u.jsx)(eB,{...t,...e?{forwardedAs:e}:{},ref:r})),e$=(0,i.Ay)(eR.c.LeadingVisual).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"NavList__StyledNavListLeadingVisual",componentId:"sc-86jrwg-2"})(["",""],C.A),eM=(0,n.forwardRef)(({as:e,...t},r)=>(0,u.jsx)(e$,{...t,...e?{forwardedAs:e}:{},ref:r}));eM.__SLOT__=eR.c.LeadingVisual.__SLOT__,Object.assign(eF,{Item:ez,Group:eR.c.Group,GroupHeading:eR.c.GroupHeading,LeadingVisual:eM,SubNav:eR.c.SubNav,Divider:eR.c.Divider,TrailingVisual:eR.c.TrailingVisual,TrailingAction:eR.c.TrailingAction,GroupExpand:eR.c.GroupExpand});var eD=r(79080);(0,i.Ay)(eD.Ay).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Overlay",componentId:"sc-tjbd74-0"})(["",""],C.A);var eV=r(65729),eH=r(15837);let eG=e=>(0,u.jsx)(o.A,{as:eH.A,...e}),eW=e=>(0,u.jsx)(o.A,{as:eH.A.Label,...e}),eU=e=>(0,u.jsx)(o.A,{as:eH.A.Caption,...e}),eq=e=>(0,u.jsx)(o.A,{as:eH.A.Validation,...e});Object.assign(eG,{Label:eW,Caption:eU,Validation:eq}),eG.__SLOT__=eH.A.__SLOT__,eW.__SLOT__=eH.A.Label.__SLOT__,eU.__SLOT__=eH.A.Caption.__SLOT__,eq.__SLOT__=eH.A.Validation.__SLOT__;var eK=r(39768);let eX=e=>(0,u.jsx)(o.A,{as:eK.I.Button,...e}),eY=e=>(0,u.jsx)(o.A,{as:eK.I.IconButton,...e}),eJ=Object.assign(e=>(0,u.jsx)(o.A,{as:eK.I,...e}),{__SLOT__:eK.I.__SLOT__,Button:eX,IconButton:eY});eX.__SLOT__=eK.I.Button.__SLOT__,eY.__SLOT__=eK.I.IconButton.__SLOT__;var eZ=r(96296);(0,i.Ay)(eZ.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Select__StyledSelect",componentId:"sc-1pyiuc8-0"})(["",""],C.A);var eQ=r(69726);let e0=(0,i.Ay)(eQ.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Spinner",componentId:"sc-jbw2a0-0"})(["",""],C.A);var e1=r(75300);let e2=(0,n.forwardRef)(function(e,t){return(0,u.jsx)(o.A,{as:e1.A,ref:t,...e})}),e4=(0,n.forwardRef)(function(e,t){return(0,u.jsx)(o.A,{as:e1.A.Link,ref:t,...e})});Object.assign(e2,{__SLOT__:e1.A.__SLOT__,Link:e4}),e4.__SLOT__=e1.A.Link.__SLOT__;var e3=r(98552);let e5=(0,i.Ay)(e3.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Text__StyledText",componentId:"sc-1klmep6-0"})(["",""],C.A),e9=(0,n.forwardRef)(({as:e,...t},r)=>(0,u.jsx)(e5,{...t,...e?{forwardedAs:e}:{},ref:r}));var e6=r(10576);let e8=(0,i.Ay)(e6.Ay).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Textarea__StyledTextarea",componentId:"sc-40d1gp-0"})(["",""],C.A),e7=(0,n.forwardRef)(({as:e,...t},r)=>(0,u.jsx)(e8,{...t,...e?{forwardedAs:e}:{},ref:r}));var te=r(30093);let tt=(0,i.Ay)(te.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"TextInput__StyledTextInput",componentId:"sc-ttxlvl-0"})(["",""],C.A),tr=(0,n.forwardRef)(({as:e,...t},r)=>(0,u.jsx)(tt,{ref:r,...t,...e?{forwardedAs:e}:{}})),to=(0,i.Ay)(te.A.Action).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"TextInput__TextInputAction",componentId:"sc-ttxlvl-1"})(["",""],C.A),tn=Object.assign(tr,{__SLOT__:te.A.__SLOT__,Action:to});to.displayName="TextInputAction",tr.displayName="TextInput";var ta=r(5956);let ti=Object.assign((0,n.forwardRef)(function(e,t){return(0,u.jsx)(o.A,{as:ta.A,ref:t,...e})}),{Item:(0,n.forwardRef)(function(e,t){return(0,u.jsx)(o.A,{as:ta.A.Item,ref:t,...e})}),Badge:function(e){return(0,u.jsx)(o.A,{as:ta.A.Badge,...e})},Body:(0,n.forwardRef)(function(e,t){return(0,u.jsx)(o.A,{as:ta.A.Body,ref:t,...e})}),Break:(0,n.forwardRef)(function(e,t){return(0,u.jsx)(o.A,{as:ta.A.Break,ref:t,...e})})});var ts=r(49716),tc=r(51933);let tl=(0,i.Ay)(tc.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Token__StyledToken",componentId:"sc-ldn0r8-0"})(["",""],C.A),td=(0,n.forwardRef)(({as:e,...t},r)=>(0,u.jsx)(tl,{...t,...e?{forwardedAs:e}:{},ref:r}));var tu=r(69497);let tf=(0,i.Ay)(tu.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Truncate",componentId:"sc-x3i4it-0"})(["",""],C.A);var tp=r(19579);let tm=(0,n.forwardRef)(function(e,t){return(0,u.jsx)(o.A,{as:tp.O,ref:t,...e})}),th=(0,n.forwardRef)(({as:e,...t},r)=>(0,u.jsx)(tm,{...t,...e?{forwardedAs:e}:{},ref:r})),tg=(0,i.Ay)(tp.O.Item).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"UnderlineNav__StyledUnderlineNavItem",componentId:"sc-dx6br2-0"})(["",""],C.A),tA=Object.assign(th,{Item:(0,n.forwardRef)(({as:e,...t},r)=>(0,u.jsx)(tg,{...t,...e?{forwardedAs:e}:{},ref:r}))})},14744:e=>{"use strict";var t=function(e){var t,o,n;return!!(t=e)&&"object"==typeof t&&(o=e,"[object RegExp]"!==(n=Object.prototype.toString.call(o))&&"[object Date]"!==n&&o.$$typeof!==r)},r="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?s(Array.isArray(e)?[]:{},e,t):e}function n(e,t,r){return e.concat(t).map(function(e){return o(e,r)})}function a(e){return Object.keys(e).concat(Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter(function(t){return Object.propertyIsEnumerable.call(e,t)}):[])}function i(e,t){try{return t in e}catch(e){return!1}}function s(e,r,c){(c=c||{}).arrayMerge=c.arrayMerge||n,c.isMergeableObject=c.isMergeableObject||t,c.cloneUnlessOtherwiseSpecified=o;var l,d,u=Array.isArray(r);return u!==Array.isArray(e)?o(r,c):u?c.arrayMerge(e,r,c):(d={},(l=c).isMergeableObject(e)&&a(e).forEach(function(t){d[t]=o(e[t],l)}),a(r).forEach(function(t){i(e,t)&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))||(i(e,t)&&l.isMergeableObject(r[t])?d[t]=(function(e,t){if(!t.customMerge)return s;var r=t.customMerge(e);return"function"==typeof r?r:s})(t,l)(e[t],r[t],l):d[t]=o(r[t],l))}),d)}s.all=function(e,t){if(!Array.isArray(e))throw Error("first argument should be an array");return e.reduce(function(e,r){return s(e,r,t)},{})},e.exports=s},15455:(e,t,r)=>{"use strict";r.d(t,{A:()=>i});var o,n,a=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/;let i=(o=function(e){return a.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&91>e.charCodeAt(2)},n=Object.create(null),function(e){return void 0===n[e]&&(n[e]=o(e)),n[e]})},17103:(e,t,r)=>{"use strict";r.d(t,{A:()=>o});let o={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1}},43842:function(){!function(){"use strict";function e(e){var t=!0,r=!1,o=null,n={text:!0,search:!0,url:!0,tel:!0,email:!0,password:!0,number:!0,date:!0,month:!0,week:!0,time:!0,datetime:!0,"datetime-local":!0};function a(e){return!!e&&e!==document&&"HTML"!==e.nodeName&&"BODY"!==e.nodeName&&"classList"in e&&"contains"in e.classList}function i(e){e.classList.contains("focus-visible")||(e.classList.add("focus-visible"),e.setAttribute("data-focus-visible-added",""))}function s(e){t=!1}function c(){document.addEventListener("mousemove",l),document.addEventListener("mousedown",l),document.addEventListener("mouseup",l),document.addEventListener("pointermove",l),document.addEventListener("pointerdown",l),document.addEventListener("pointerup",l),document.addEventListener("touchmove",l),document.addEventListener("touchstart",l),document.addEventListener("touchend",l)}function l(e){e.target.nodeName&&"html"===e.target.nodeName.toLowerCase()||(t=!1,document.removeEventListener("mousemove",l),document.removeEventListener("mousedown",l),document.removeEventListener("mouseup",l),document.removeEventListener("pointermove",l),document.removeEventListener("pointerdown",l),document.removeEventListener("pointerup",l),document.removeEventListener("touchmove",l),document.removeEventListener("touchstart",l),document.removeEventListener("touchend",l))}document.addEventListener("keydown",function(r){r.metaKey||r.altKey||r.ctrlKey||(a(e.activeElement)&&i(e.activeElement),t=!0)},!0),document.addEventListener("mousedown",s,!0),document.addEventListener("pointerdown",s,!0),document.addEventListener("touchstart",s,!0),document.addEventListener("visibilitychange",function(e){"hidden"===document.visibilityState&&(r&&(t=!0),c())},!0),c(),e.addEventListener("focus",function(e){if(a(e.target)){var r,o,s;(t||(o=(r=e.target).type,"INPUT"===(s=r.tagName)&&n[o]&&!r.readOnly||"TEXTAREA"===s&&!r.readOnly||r.isContentEditable||0))&&i(e.target)}},!0),e.addEventListener("blur",function(e){if(a(e.target)&&(e.target.classList.contains("focus-visible")||e.target.hasAttribute("data-focus-visible-added"))){var t;r=!0,window.clearTimeout(o),o=window.setTimeout(function(){r=!1},100),(t=e.target).hasAttribute("data-focus-visible-added")&&(t.classList.remove("focus-visible"),t.removeAttribute("data-focus-visible-added"))}},!0),e.nodeType===Node.DOCUMENT_FRAGMENT_NODE&&e.host?e.host.setAttribute("data-js-focus-visible",""):e.nodeType===Node.DOCUMENT_NODE&&(document.documentElement.classList.add("js-focus-visible"),document.documentElement.setAttribute("data-js-focus-visible",""))}if("u">typeof window&&"u">typeof document){var t;window.applyFocusVisiblePolyfill=e;try{t=new CustomEvent("focus-visible-polyfill-ready")}catch(e){(t=document.createEvent("CustomEvent")).initCustomEvent("focus-visible-polyfill-ready",!1,!1,{})}window.dispatchEvent(t)}"u">typeof document&&e(document)}()},44363:(e,t,r)=>{"use strict";e.exports=r(54405)},45228:e=>{"use strict";var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;e.exports=!function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;var o=Object.getOwnPropertyNames(t).map(function(e){return t[e]});if("0123456789"!==o.join(""))return!1;var n={};if("abcdefghijklmnopqrst".split("").forEach(function(e){n[e]=e}),"abcdefghijklmnopqrst"!==Object.keys(Object.assign({},n)).join(""))return!1;return!0}catch(e){return!1}}()?function(e,n){for(var a,i,s=function(e){if(null==e)throw TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),c=1;c{"use strict";r.d(t,{A:()=>i});var o=r(38267),n=r(57304),a=r(49539);let i=o.Ay.div.withConfig({displayName:"Box",componentId:"sc-62in7e-0"})(n.xe,n.yW,n.Il,n.Zp,n.pn,n.Vg,n.Tp,n.PQ,n.G1,n.r7,a.A)},49539:(e,t,r)=>{"use strict";r.d(t,{A:()=>n});var o=r(50402);r(14744);let n=e=>(0,o.Ay)(e.sx)},49716:(e,t,r)=>{"use strict";r.d(t,{m:()=>s});var o=r(11196),n=r(45846),a=r(96540),i=r(74848);let s=(0,a.forwardRef)(function(e,t){return(0,i.jsx)(n.A,{as:o.m,ref:t,...e})});s.__SLOT__=o.m.__SLOT__},54405:(e,t)=>{"use strict";var r=Symbol.for("react.transitional.element"),o=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),a=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),s=Symbol.for("react.consumer"),c=Symbol.for("react.context"),l=Symbol.for("react.forward_ref"),d=Symbol.for("react.suspense"),u=Symbol.for("react.suspense_list"),f=Symbol.for("react.memo"),p=Symbol.for("react.lazy"),m=Symbol.for("react.view_transition"),h=Symbol.for("react.client.reference");function g(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case n:case i:case a:case d:case u:case m:return e;default:switch(e=e&&e.$$typeof){case c:case l:case p:case f:case s:return e;default:return t}}case o:return t}}}t.ContextConsumer=s,t.ContextProvider=c,t.Element=r,t.ForwardRef=l,t.Fragment=n,t.Lazy=p,t.Memo=f,t.Portal=o,t.Profiler=i,t.StrictMode=a,t.Suspense=d,t.SuspenseList=u,t.isContextConsumer=function(e){return g(e)===s},t.isContextProvider=function(e){return g(e)===c},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return g(e)===l},t.isFragment=function(e){return g(e)===n},t.isLazy=function(e){return g(e)===p},t.isMemo=function(e){return g(e)===f},t.isPortal=function(e){return g(e)===o},t.isProfiler=function(e){return g(e)===i},t.isStrictMode=function(e){return g(e)===a},t.isSuspense=function(e){return g(e)===d},t.isSuspenseList=function(e){return g(e)===u},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===n||e===i||e===a||e===d||e===u||"object"==typeof e&&null!==e&&(e.$$typeof===p||e.$$typeof===f||e.$$typeof===c||e.$$typeof===s||e.$$typeof===l||e.$$typeof===h||void 0!==e.getModuleId)||!1},t.typeOf=g},57304:(e,t,r)=>{"use strict";r.d(t,{G1:()=>u.G,Il:()=>i.I,Jt:()=>o.Jt,PQ:()=>l.P,Tp:()=>d.T,Vg:()=>c.V,Zp:()=>n.Z,pn:()=>s.p,r7:()=>p.r,xe:()=>f.xe,yW:()=>a.y});var o=r(49236),n=r(75447),a=r(77638),i=r(3962),s=r(58523),c=r(96069),l=r(84995),d=r(43581),u=r(59756),f=r(89165),p=r(42049);r(38144),n.A.width,n.A.height,n.A.minWidth,n.A.minHeight,n.A.maxWidth,n.A.maxHeight,n.A.size,n.A.verticalAlign,n.A.display,n.A.overflow,n.A.overflowX,n.A.overflowY,a.A.opacity,i.A.fontSize,i.A.fontFamily,i.A.fontWeight,i.A.lineHeight,i.A.textAlign,i.A.fontStyle,i.A.letterSpacing,s.A.alignItems,s.A.alignContent,s.A.justifyItems,s.A.justifyContent,s.A.flexWrap,s.A.flexDirection,s.A.flex,s.A.flexGrow,s.A.flexShrink,s.A.flexBasis,s.A.justifySelf,s.A.alignSelf,s.A.order,c.A.gridGap,c.A.gridColumnGap,c.A.gridRowGap,c.A.gridColumn,c.A.gridRow,c.A.gridAutoFlow,c.A.gridAutoColumns,c.A.gridAutoRows,c.A.gridTemplateColumns,c.A.gridTemplateRows,c.A.gridTemplateAreas,c.A.gridArea,l.A.borderWidth,l.A.borderStyle,l.A.borderColor,l.A.borderTop,l.A.borderRight,l.A.borderBottom,l.A.borderLeft,l.A.borderRadius,d.A.backgroundImage,d.A.backgroundSize,d.A.backgroundPosition,d.A.backgroundRepeat,u.A.zIndex,u.A.top,u.A.right,u.A.bottom,u.A.left},61669:e=>{e.exports=function(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}},62383:(e,t,r)=>{e=r.nmd(e);var o,n,a,i="[object Map]",s="[object Promise]",c="[object Set]",l="[object WeakMap]",d="[object DataView]",u=/^\[object .+?Constructor\]$/,f="object"==typeof r.g&&r.g&&r.g.Object===Object&&r.g,p="object"==typeof self&&self&&self.Object===Object&&self,m=f||p||Function("return this")(),h=t&&!t.nodeType&&t,g=h&&e&&!e.nodeType&&e,A=g&&g.exports===h,y=Function.prototype,w=Object.prototype,_=m["__core-js_shared__"],b=(o=/[^.]+$/.exec(_&&_.keys&&_.keys.IE_PROTO||""))?"Symbol(src)_1."+o:"",v=y.toString,x=w.hasOwnProperty,C=w.toString,S=RegExp("^"+v.call(x).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),k=A?m.Buffer:void 0,O=w.propertyIsEnumerable,L=k?k.isBuffer:void 0,j=(n=Object.keys,a=Object,function(e){return n(a(e))}),T=D(m,"DataView"),I=D(m,"Map"),P=D(m,"Promise"),N=D(m,"Set"),R=D(m,"WeakMap"),E=!O.call({valueOf:1},"valueOf"),F=H(T),B=H(I),z=H(P),$=H(N),M=H(R);function D(e,t){var r,o=null==e?void 0:e[t];return!(!K(o)||(r=o,b&&b in r))&&(q(o)||function(e){var t=!1;if(null!=e&&"function"!=typeof e.toString)try{t=!!(e+"")}catch(e){}return t}(o)?S:u).test(H(o))?o:void 0}var V=function(e){return C.call(e)};function H(e){if(null!=e){try{return v.call(e)}catch(e){}try{return e+""}catch(e){}}return""}(T&&V(new T(new ArrayBuffer(1)))!=d||I&&V(new I)!=i||P&&V(P.resolve())!=s||N&&V(new N)!=c||R&&V(new R)!=l)&&(V=function(e){var t=C.call(e),r="[object Object]"==t?e.constructor:void 0,o=r?H(r):void 0;if(o)switch(o){case F:return d;case B:return i;case z:return s;case $:return c;case M:return l}return t});var G=Array.isArray;function W(e){var t;return null!=e&&"number"==typeof(t=e.length)&&t>-1&&t%1==0&&t<=0x1fffffffffffff&&!q(e)}var U=L||function(){return!1};function q(e){var t=K(e)?C.call(e):"";return"[object Function]"==t||"[object GeneratorFunction]"==t}function K(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}e.exports=function(e){if(W(e)&&(G(e)||"string"==typeof e||"function"==typeof e.splice||U(e)||(r=t=e)&&"object"==typeof r&&W(t)&&x.call(e,"callee")&&(!O.call(e,"callee")||"[object Arguments]"==C.call(e))))return!e.length;var t,r,o,n=V(e);if(n==i||n==c)return!e.size;if(E||(o=e&&e.constructor,e===("function"==typeof o&&o.prototype||w)))return!j(e).length;for(var a in e)if(x.call(e,a))return!1;return!0}},65729:(e,t,r)=>{"use strict";r.d(t,{z:()=>p});var o=r(16051),n=r(38267),a=r(49539),i=r(45846),s=r(96540),c=r(74848);let l=(0,n.Ay)(o.z).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"PageHeader__StyledPageHeader",componentId:"sc-1g9symn-0"})(["",""],a.A),d=s.forwardRef(({as:e,...t},r)=>(0,c.jsx)(l,{...t,...e?{forwardedAs:e}:{},ref:r}));function u({sx:e,...t}){let r={};if(e){let{fontSize:t,lineHeight:o,fontWeight:n}=e;t&&(r["--custom-font-size"]=t),o&&(r["--custom-line-height"]=o),n&&(r["--custom-font-weight"]=n)}return(0,c.jsx)(i.A,{...t,as:o.z.Title,style:r,sx:e})}let f=(0,n.Ay)(o.z.TitleArea).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"PageHeader__PageHeaderTitleArea",componentId:"sc-1g9symn-1"})(["",""],a.A),p=Object.assign(d,{Actions:function({sx:e,...t}){let r={};if(e){let{height:t}=e;t&&(r["--custom-height"]=t)}return(0,c.jsx)(i.A,{...t,as:o.z.Actions,style:r,sx:e})},ContextArea:o.z.ContextArea,ParentLink:o.z.ParentLink,ContextBar:o.z.ContextBar,TitleArea:f,ContextAreaActions:o.z.ContextAreaActions,LeadingAction:o.z.LeadingAction,Breadcrumbs:o.z.Breadcrumbs,LeadingVisual:o.z.LeadingVisual,Title:({as:e,...t})=>(0,c.jsx)(u,{...t,...e?{forwardedAs:e}:{}}),TrailingVisual:o.z.TrailingVisual,Description:o.z.Description,TrailingAction:o.z.TrailingAction})},85203:(e,t,r)=>{"use strict";r.d(t,{l:()=>g});var o=r(57387),n=r(49539),a=r(38267),i=r(96540),s=r(74848);let c=(0,a.Ay)(o.l).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Dialog__StyledDialog",componentId:"sc-19zph8h-0"})(["",""],n.A),l=(0,i.forwardRef)(function({as:e,...t},r){return(0,s.jsx)(c,{ref:r,...e?{forwardedAs:e}:{},...t})}),d=(0,a.Ay)(o.l.Header).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Dialog__StyledDialogHeader",componentId:"sc-19zph8h-1"})(["",""],n.A),u=(0,i.forwardRef)(function({as:e,...t},r){return(0,s.jsx)(d,{ref:r,...e?{forwardedAs:e}:{},...t})}),f=(0,a.Ay)(o.l.Body).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Dialog__StyledDialogBody",componentId:"sc-19zph8h-2"})(["",""],n.A),p=(0,i.forwardRef)(function({as:e,...t},r){return(0,s.jsx)(f,{ref:r,...e?{forwardedAs:e}:{},...t})}),m=(0,a.Ay)(o.l.Footer).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Dialog__StyledDialogFooter",componentId:"sc-19zph8h-3"})(["",""],n.A),h=(0,i.forwardRef)(function({as:e,...t},r){return(0,s.jsx)(m,{ref:r,...e?{forwardedAs:e}:{},...t})});u.__SLOT__=o.l.Header.__SLOT__,p.__SLOT__=o.l.Body.__SLOT__,h.__SLOT__=o.l.Footer.__SLOT__;let g=Object.assign(l,{__SLOT__:o.l.__SLOT__,Buttons:o.l.Buttons,Header:u,Body:p,Footer:h})}}]); +//# sourceMappingURL=31475-9895cd77fb3d.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/32162-bce5168543b8.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/32162-bce5168543b8.js" new file mode 100644 index 0000000..3b93c23 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/32162-bce5168543b8.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:32162-bce5168543b8.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[32162],{5225:(t,e,n)=>{function i(...t){return JSON.stringify(t,(t,e)=>"object"==typeof e?e:String(e))}function o(t,e={}){let{hash:n=i,cache:r=new Map}=e;return function(...e){let i=n.apply(this,e);if(r.has(i))return r.get(i);let o=t.apply(this,e);return o instanceof Promise&&(o=o.catch(t=>{throw r.delete(i),t})),r.set(i,o),o}}n.d(e,{A:()=>o})},31635:(t,e,n)=>{n.d(e,{AQ:()=>s,Cg:()=>o,Me:()=>a,N3:()=>r,Tt:()=>i,xN:()=>l});function i(t,e){var n={};for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&0>e.indexOf(i)&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,i=Object.getOwnPropertySymbols(t);oe.indexOf(i[o])&&Object.prototype.propertyIsEnumerable.call(t,i[o])&&(n[i[o]]=t[i[o]]);return n}function o(t,e,n,i){var o,r=arguments.length,s=r<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(t,e,n,i);else for(var a=t.length-1;a>=0;a--)(o=t[a])&&(s=(r<3?o(s):r>3?o(e,n,s):o(e,n))||s);return r>3&&s&&Object.defineProperty(e,n,s),s}function r(t){return this instanceof r?(this.v=t,this):new r(t)}function s(t,e,n){if(!Symbol.asyncIterator)throw TypeError("Symbol.asyncIterator is not defined.");var i,o=n.apply(t,e||[]),s=[];return i=Object.create(("function"==typeof AsyncIterator?AsyncIterator:Object).prototype),a("next"),a("throw"),a("return",function(t){return function(e){return Promise.resolve(e).then(t,h)}}),i[Symbol.asyncIterator]=function(){return this},i;function a(t,e){o[t]&&(i[t]=function(e){return new Promise(function(n,i){s.push([t,e,n,i])>1||l(t,e)})},e&&(i[t]=e(i[t])))}function l(t,e){try{var n;(n=o[t](e)).value instanceof r?Promise.resolve(n.value.v).then(u,h):c(s[0][2],n)}catch(t){c(s[0][3],t)}}function u(t){l("next",t)}function h(t){l("throw",t)}function c(t,e){t(e),s.shift(),s.length&&l(s[0][0],s[0][1])}}function a(t){var e,n;return e={},i("next"),i("throw",function(t){throw t}),i("return"),e[Symbol.iterator]=function(){return this},e;function i(i,o){e[i]=t[i]?function(e){return(n=!n)?{value:r(t[i](e)),done:!1}:o?o(e):e}:o}}function l(t){if(!Symbol.asyncIterator)throw TypeError("Symbol.asyncIterator is not defined.");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=function(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],i=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&i>=t.length&&(t=void 0),{value:t&&t[i++],done:!t}}};throw TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}(t),e={},i("next"),i("throw"),i("return"),e[Symbol.asyncIterator]=function(){return this},e);function i(n){e[n]=t[n]&&function(e){return new Promise(function(i,o){var r,s,a;r=i,s=o,a=(e=t[n](e)).done,Promise.resolve(e.value).then(function(t){r({value:t,done:a})},s)})}}}"function"==typeof SuppressedError&&SuppressedError},50467:(t,e,n)=>{n.d(e,{_:()=>i});function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}},70170:(t,e,n)=>{function i(t,e=0,{start:n=!0,middle:o=!0,once:r=!1}={}){let s,a=n,l=0,u=!1;function h(...i){if(u)return;let c=Date.now()-l;l=Date.now(),n&&o&&c>=e&&(a=!0),a?(a=!1,t.apply(this,i),r&&h.cancel()):(o&&c{l=Date.now(),t.apply(this,i),r&&h.cancel()},o?e-c:e))}return h.cancel=()=>{clearTimeout(s),u=!0},h}function o(t,e=0,{start:n=!1,middle:r=!1,once:s=!1}={}){return i(t,e,{start:n,middle:r,once:s})}n.d(e,{n:()=>i,s:()=>o})},78134:(t,e,n)=>{n.d(e,{i4:()=>TemplateInstance,xr:()=>c});let i=new Map;function o(t){if(i.has(t))return i.get(t);let e=t.length,n=0,o=0,r=0,s=[];for(let i=0;in&&(s.push(Object.freeze({type:"string",start:n,end:o,value:t.slice(n,o)})),n=o),s.push(Object.freeze({type:"part",start:o,end:i+2,value:t.slice(n+2,i).trim()})),i+=1,n=i+1)}return n"string"==typeof t?t:t.value).join("");this.element.setAttributeNS(this.attr.namespaceURI,this.attr.name,t)}}};let a=new WeakMap;let NodeTemplatePart=class NodeTemplatePart{constructor(t,e){this.expression=e,a.set(this,[t]),t.textContent=""}get value(){return a.get(this).map(t=>t.textContent).join("")}set value(t){this.replace(t)}get previousSibling(){return a.get(this)[0].previousSibling}get nextSibling(){return a.get(this)[a.get(this).length-1].nextSibling}replace(...t){var e,n;let i=t.map(t=>"string"==typeof t?new Text(t):t);i.length||i.push(new Text(""));let o=a.get(this)[0];for(let t of i)null==(e=o.parentNode)||e.insertBefore(t,o);for(let t of a.get(this))null==(n=t.parentNode)||n.removeChild(t);a.set(this,i)}};let InnerTemplatePart=class InnerTemplatePart extends NodeTemplatePart{constructor(t){var e;super(t,null!=(e=t.getAttribute("expression"))?e:""),this.template=t}get directive(){var t;return null!=(t=this.template.getAttribute("directive"))?t:""}};function l(t){return{processCallback(e,n,i){var o;if("object"==typeof i&&i){for(let e of n)if(e.expression in i){let n=null!=(o=i[e.expression])?o:"";t(e,n,i)}}}}}function u(t,e){t.value=e instanceof Node?e:String(e)}let h=l(u),c=l((t,e)=>{"boolean"==typeof e&&t instanceof AttributeTemplatePart&&"boolean"==typeof t.element[t.attributeName]&&(t.booleanValue=e,1)||u(t,e)}),f=new WeakMap,d=new WeakMap;let TemplateInstance=class TemplateInstance extends(globalThis.DocumentFragment||EventTarget){constructor(t,e,n=h){var i,r;super(),Object.getPrototypeOf(this)!==TemplateInstance.prototype&&Object.setPrototypeOf(this,TemplateInstance.prototype),this.appendChild(t.content.cloneNode(!0)),d.set(this,Array.from(function* t(e){let n,i=e.ownerDocument.createTreeWalker(e,NodeFilter.SHOW_TEXT|NodeFilter.SHOW_ELEMENT,null);for(;n=i.nextNode();)if(n instanceof HTMLTemplateElement)if(n.hasAttribute("directive"))yield new InnerTemplatePart(n);else for(let e of t(n.content))yield e;else if(n instanceof Element&&n.hasAttributes())for(let t=0;t{n.d(e,{A:()=>r});var i=n(83770),o=function(){function t(e){var n=e.itemCount,i=e.itemSizeGetter,o=e.estimatedItemSize;if(!(this instanceof t))throw TypeError("Cannot call a class as a function");this._itemSizeGetter=i,this._itemCount=n,this._estimatedItemSize=o,this._itemSizeAndPositionData={},this._lastMeasuredIndex=-1}return t.prototype.getLastMeasuredIndex=function(){return this._lastMeasuredIndex},t.prototype.getSizeAndPositionForIndex=function(t){if(t<0||t>=this._itemCount)throw Error("Requested index "+t+" is outside of range 0.."+this._itemCount);if(t>this._lastMeasuredIndex){for(var e=this.getSizeAndPositionOfLastMeasuredItem(),n=e.offset+e.size,i=this._lastMeasuredIndex+1;i<=t;i++){var o=this._itemSizeGetter({index:i});if(null==o||isNaN(o))throw Error("Invalid size returned for index "+i+" of value "+o);this._itemSizeAndPositionData[i]={offset:n,size:o},n+=o}this._lastMeasuredIndex=t}return this._itemSizeAndPositionData[t]},t.prototype.getSizeAndPositionOfLastMeasuredItem=function(){return this._lastMeasuredIndex>=0?this._itemSizeAndPositionData[this._lastMeasuredIndex]:{offset:0,size:0}},t.prototype.getTotalSize=function(){var t=this.getSizeAndPositionOfLastMeasuredItem();return t.offset+t.size+(this._itemCount-this._lastMeasuredIndex-1)*this._estimatedItemSize},t.prototype.getUpdatedOffsetForIndex=function(t){var e=t.align,n=t.containerSize,i=t.targetIndex;if(n<=0)return 0;var o=this.getSizeAndPositionForIndex(i),r=o.offset,s=r-n+o.size,a=void 0;switch(void 0===e?"start":e){case"end":a=s;break;case"center":a=r-(n-o.size)/2;break;default:a=r}return Math.max(0,Math.min(this.getTotalSize()-n,a))},t.prototype.getVisibleRange=function(t){var e=t.containerSize,n=t.offset,i=t.overscanCount;if(0===this.getTotalSize())return{};var o=n+e,r=this._findNearestItem(n),s=r,a=this.getSizeAndPositionForIndex(r);for(n=a.offset+a.size;ni&&(n=o-1)}if(e>0)return e-1},t.prototype._exponentialSearch=function(t){for(var e=t.index,n=t.offset,i=1;e=t?this._binarySearch({high:n,low:0,offset:t}):this._exponentialSearch({index:n,offset:t})},t}(),r=function(){function t(e,n){var i=this;if(!(this instanceof t))throw TypeError("Cannot call a class as a function");this.getRowHeight=function(t){var e=t.index,n=i.options.rowHeight;return"function"==typeof n?n(e):Array.isArray(n)?n[e]:n},this.container=e,this.options=n,this.state={},this._initializeSizeAndPositionManager(n.rowCount),this.render=this.render.bind(this),this.handleScroll=this.handleScroll.bind(this),this.componentDidMount()}return t.prototype.componentDidMount=function(){var t=this,e=this.options,n=e.onMount,i=e.initialScrollTop,o=e.initialIndex,r=e.height,s=i||null!=o&&this.getRowOffset(o)||0,a=this.inner=document.createElement("div"),l=this.content=document.createElement("div");a.setAttribute("style","position:relative; overflow:hidden; width:100%; min-height:100%; will-change: transform;"),l.setAttribute("style","position:absolute; top:0; left:0; height:100%; width:100%; overflow:visible;"),a.appendChild(l),this.container.appendChild(a),this.setState({offset:s,height:r},function(){s&&(t.container.scrollTop=s),t.container.addEventListener("scroll",t.handleScroll),"function"==typeof n&&n()})},t.prototype._initializeSizeAndPositionManager=function(t){this._sizeAndPositionManager=new o({itemCount:t,itemSizeGetter:this.getRowHeight,estimatedItemSize:this.options.estimatedRowHeight||100})},t.prototype.setState=function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments[1];this.state=Object.assign(this.state,e),requestAnimationFrame(function(){t.render(),"function"==typeof n&&n()})},t.prototype.resize=function(t,e){this.setState({height:t},e)},t.prototype.handleScroll=function(t){var e=this.options.onScroll,n=this.container.scrollTop;this.setState({offset:n}),"function"==typeof e&&e(n,t)},t.prototype.getRowOffset=function(t){return this._sizeAndPositionManager.getSizeAndPositionForIndex(t).offset},t.prototype.scrollToIndex=function(t,e){var n=this.state.height,i=this._sizeAndPositionManager.getUpdatedOffsetForIndex({align:e,containerSize:n,targetIndex:t});this.container.scrollTop=i},t.prototype.setRowCount=function(t){this._initializeSizeAndPositionManager(t),this.render()},t.prototype.onRowsRendered=function(t){var e=this.options.onRowsRendered;"function"==typeof e&&e(t)},t.prototype.destroy=function(){this.container.removeEventListener("scroll",this.handleScroll),this.container.innerHTML=""},t.prototype.render=function(){for(var t=this.options,e=t.overscanCount,n=t.renderRow,o=this.state,r=o.height,s=o.offset,a=this._sizeAndPositionManager.getVisibleRange({containerSize:r,offset:void 0===s?0:s,overscanCount:e}),l=a.start,u=a.stop,h=document.createDocumentFragment(),c=l;c<=u;c++)h.appendChild(n(c));this.inner.style.height=this._sizeAndPositionManager.getTotalSize()+"px",this.content.style.top=this.getRowOffset(l)+"px",(0,i.A)(this.content,h,{childrenOnly:!0,getNodeKey:function(t){return t.nodeIndex}}),this.onRowsRendered({startIndex:l,stopIndex:u})},t}();if("function"!=typeof r&&null!==r)throw TypeError("Super expression must either be null or a function, not "+typeof r);function s(){if(!(this instanceof s))throw TypeError("Cannot call a class as a function");var t=r.apply(this,arguments);if(!this)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return t&&("object"==typeof t||"function"==typeof t)?t:this}s.prototype=Object.create(r&&r.prototype,{constructor:{value:s,enumerable:!1,writable:!0,configurable:!0}}),r&&(Object.setPrototypeOf?Object.setPrototypeOf(s,r):s.__proto__=r),s.prototype.onRowsRendered=function(t){var e=this,n=t.startIndex,i=t.stopIndex,o=this.options,r=o.isRowLoaded,s=o.loadMoreRows,a=o.minimumBatchSize,l=o.rowCount,u=void 0===l?0:l,h=o.threshold,c=void 0===h?15:h;(function(t){for(var e=t.isRowLoaded,n=t.minimumBatchSize,i=t.rowCount,o=t.startIndex,r=t.stopIndex,s=[],a=null,l=null,u=o;u<=r;u++)e(u)?null!==l&&(s.push({startIndex:a,stopIndex:l}),a=l=null):(l=u,null===a&&(a=u));if(null!==l){for(var h=Math.min(Math.max(l,a+n-1),i-1),c=l+1;c<=h;c++)if(e({index:c}))break;else l=c;s.push({startIndex:a,stopIndex:l})}if(s.length)for(var f=s[0];f.stopIndex-f.startIndex+10;){var d=f.startIndex-1;if(e({index:d}))break;f.startIndex=d}return s})({isRowLoaded:r,minimumBatchSize:void 0===a?10:a,rowCount:u,startIndex:Math.max(0,n-c),stopIndex:Math.min(u-1,i+c)}).forEach(function(t){var o=s(t);o&&o.then(function(){var o,r,s,a,l;r=(o={lastRenderedStartIndex:n,lastRenderedStopIndex:i,startIndex:t.startIndex,stopIndex:t.stopIndex}).lastRenderedStartIndex,s=o.lastRenderedStopIndex,a=o.startIndex,l=o.stopIndex,a>s||l{n.d(t,{$r:()=>o,M1:()=>c,li:()=>i,pS:()=>l,wE:()=>s});var r=n(56038);let i="X-Fetch-Nonce",a=new Set;function o(e){a.add(e)}function c(){return a.values().next().value||""}function s(e){let t={};return void 0!==e&&(t["X-Fetch-Nonce-To-Validate"]=e),void 0===e?t[i]=c():a.has(e)?t[i]=e:t[i]=Array.from(a).join(","),t}function l(){let e=r.XC?.head?.querySelector('meta[name="fetch-nonce"]')?.content||"";e&&o(e)}},18679:(e,t,n)=>{n.d(t,{s:()=>AnalyticsClient});let r=["utm_source","utm_medium","utm_campaign","utm_term","utm_content","scid"];var i=n(36301);let AnalyticsClient=class AnalyticsClient{constructor(e){this.options=e}get collectorUrl(){return this.options.collectorUrl}get clientId(){return this.options.clientId?this.options.clientId:(0,i.y)()}createEvent(e){return{page:location.href,title:document.title,context:{...this.options.baseContext,...function(){let e={};try{for(let[t,n]of new URLSearchParams(window.location.search)){let i=t.toLowerCase();r.includes(i)&&(e[i]=n)}return e}catch(e){return{}}}(),...e}}}sendPageView(e){let t=this.createEvent(e);this.send({page_views:[t]})}sendEvent(e,t){let n={...this.createEvent(t),type:e};this.send({events:[n]})}send({page_views:e,events:t}){let n=JSON.stringify({client_id:this.clientId,page_views:e,events:t,request_context:{referrer:function(){let e;try{e=window.top.document.referrer}catch(t){if(window.parent)try{e=window.parent.document.referrer}catch(e){}}return""===e&&(e=document.referrer),e}(),user_agent:navigator.userAgent,screen_resolution:function(){try{return`${screen.width}x${screen.height}`}catch(e){return"unknown"}}(),browser_resolution:function(){let e=0,t=0;try{return"number"==typeof window.innerWidth?(t=window.innerWidth,e=window.innerHeight):null!=document.documentElement&&null!=document.documentElement.clientWidth?(t=document.documentElement.clientWidth,e=document.documentElement.clientHeight):null!=document.body&&null!=document.body.clientWidth&&(t=document.body.clientWidth,e=document.body.clientHeight),`${t}x${e}`}catch(e){return"unknown"}}(),browser_languages:navigator.languages?navigator.languages.join(","):navigator.language||"",pixel_ratio:window.devicePixelRatio,timestamp:Date.now(),tz_seconds:-60*new Date().getTimezoneOffset()}});try{if(navigator.sendBeacon)return void navigator.sendBeacon(this.collectorUrl,n)}catch{}fetch(this.collectorUrl,{method:"POST",cache:"no-cache",headers:{"Content-Type":"application/json"},body:n,keepalive:!1})}}},30459:(e,t,n)=>{n.d(t,{S:()=>s,s:()=>c});var r=n(16522),i=n(96540),a=n(53419),o=n(49936);function c(){let e,t,n=(0,r.c)(6),c=(0,i.use)(o.I);if(!c)throw Error("useAnalytics must be used within an AnalyticsContext");let{appName:s,category:l,metadata:u}=c;n[0]!==s||n[1]!==l||n[2]!==u?(e=(e,t,n)=>{let r={react:!0,app_name:s,category:l,...u};(0,a.BI)(e,{...r,...void 0===n?{}:n,target:t})},n[0]=s,n[1]=l,n[2]=u,n[3]=e):e=n[3];let d=e;return n[4]!==d?(t={sendAnalyticsEvent:d},n[4]=d,n[5]=t):t=n[5],t}function s(){let e,t,n=(0,r.c)(4),{sendAnalyticsEvent:i}=c();n[0]!==i?(e=e=>{i("analytics.click",void 0,void 0===e?{}:e)},n[0]=i,n[1]=e):e=n[1];let a=e;return n[2]!==a?(t={sendClickAnalyticsEvent:a},n[2]=a,n[3]=t):t=n[3],t}},32448:(e,t,n)=>{var r=n(7123),i=n(95807);(0,r.k)("pull-requests-processing-indicator",{Component:i.i})},37285:(e,t,n)=>{n.d(t,{Av:()=>c,BM:()=>r,HX:()=>d,M_:()=>h,RD:()=>u,rb:()=>i});let r="GraphQLTraces",i="GraphQLTracingRefresh",a=o()?decodeURIComponent(new URLSearchParams(window.location.search).get("disable_clusters")||"").split(",").filter(e=>""!==e):[];function o(){return"u">typeof window}function c(e){if(!o()||!s()||!e)return;let t=window;t&&!t[r]&&(t[r]=[]),t&&e.__trace&&(t[r].push(e.__trace),"function"==typeof t[i]&&t[i]())}function s(){if(!o())return!1;let e=window;return"true"===new URLSearchParams(window.location.search).get("_tracing")||e&&void 0!==e[r]}function l(){return a.length>0}function u(e){if(!o()||!s()&&!l())return e;let t=new URL(e,window.location.origin);return s()&&t.searchParams.set("_tracing","true"),l()&&t.searchParams.set("disable_clusters",a.join(",")),t.pathname+t.search}function d(e){return a.indexOf(e)>-1}function h(e){if(!o())return;let t=a.indexOf(e);t>-1?a.splice(t,1):a.push(e);let n=new URLSearchParams(window.location.search);n.set("disable_clusters",a.join(",")),window.location.search=n.toString()}},51987:(e,t,n)=>{n.d(t,{jC:()=>c,kt:()=>a,tV:()=>o});var r=n(87057),i=n(13523);function a(e){let t={"X-Requested-With":"XMLHttpRequest",...(0,i.wE)(e)};return{...t,[r.S]:(0,r.O)()}}function o(e,t){for(let[n,r]of Object.entries(a(t)))e.set(n,r)}function c(e){return{"X-GitHub-App-Type":e}}},53419:(e,t,n)=>{let r;n.d(t,{BI:()=>w,Ti:()=>g,lA:()=>f,sX:()=>m});var i=n(70837),a=n(18679),o=n(82075),c=n(56038),s=n(82518);let{getItem:l}=(0,o.A)("localStorage"),u="dimension_",d=["utm_source","utm_medium","utm_campaign","utm_term","utm_content","scid"];try{let e=(0,i.O)("octolytics");delete e.baseContext,r=new a.s(e)}catch{}function h(e){let t=(0,i.O)("octolytics").baseContext||{};if(t)for(let[e,n]of(delete t.app_id,delete t.event_url,delete t.host,Object.entries(t)))e.startsWith(u)&&(t[e.replace(u,"")]=n,delete t[e]);let n=c.XC?.querySelector("meta[name=visitor-payload]");for(let[e,r]of(n&&Object.assign(t,JSON.parse(atob(n.content))),new URLSearchParams(window.location.search)))d.includes(e.toLowerCase())&&(t[e]=r);return t.staff=(0,s.Xl)().toString(),Object.assign(t,e)}function f(e){r?.sendPageView(h(e))}function m(){return c.XC?.head?.querySelector('meta[name="current-catalog-service"]')?.content}function w(e,t={}){let n=m(),i=n?{service:n}:{};for(let[e,n]of Object.entries(t))null!=n&&(i[e]=`${n}`);r&&(h(i),r.sendEvent(e||"unknown",h(i)))}function g(e){return Object.fromEntries(Object.entries(e).map(([e,t])=>[e,JSON.stringify(t)]))}},70263:(e,t,n)=>{n.d(t,{A:()=>a});var r=n(16522),i=n(96540);function a(){let e,t,n,a=(0,r.c)(3),o=(0,i.useRef)(!1);a[0]===Symbol.for("react.memo_cache_sentinel")?(e=()=>o.current,a[0]=e):e=a[0];let c=e;return a[1]===Symbol.for("react.memo_cache_sentinel")?(t=()=>(o.current=!0,()=>{o.current=!1}),n=[],a[1]=t,a[2]=n):(t=a[1],n=a[2]),(0,i.useLayoutEffect)(t,n),c}},70837:(e,t,n)=>{n.d(t,{O:()=>r});function r(e="ha"){let t,n={};for(let r of Array.from(document.head.querySelectorAll(`meta[name^="${e}-"]`))){let{name:i,content:a}=r,o=i.replace(`${e}-`,"").replace(/-/g,"_");"url"===o?t=a:n[o]=a}if(!t)throw Error(`AnalyticsClient ${e}-url meta tag not found`);return{collectorUrl:t,...Object.keys(n).length>0?{baseContext:n}:{}}}},87057:(e,t,n)=>{n.d(t,{O:()=>o,S:()=>a});var r=n(56038);let i=r.cg?.document?.head?.querySelector('meta[name="release"]')?.content||"",a="X-GitHub-Client-Version";function o(){return i}},95807:(e,t,n)=>{n.d(t,{i:()=>m});var r=n(74848),i=n(16522),a=n(96379),o=n(21373),c=n(69726),s=n(11196),l=n(96540),u=n(30459),d=n(57224),h=n(70263);let f={stale:!1,latest_unsynced_push_to_head_ref_at:null};function m({processingIndicatorUrl:e,repositoryId:t,pullRequestId:n}){let[i,o]=(0,l.useState)(f),c=(0,h.A)(),s=(0,l.useCallback)(async()=>{try{let t=await (0,a.lS)(e);if(t.ok){let e=await t.json();c()&&o(e)}}catch{c()&&o(f)}},[c,e]);(0,l.useEffect)(()=>{s()},[]);let{stale:u,latest_unsynced_push_to_head_ref_at:m}=i;return(0,r.jsx)("div",{className:"border-left pl-1",children:(0,r.jsx)(d.y,{appName:"pull-requests-processing-indicator",category:"render",metadata:{},children:(0,r.jsx)(w,{pullRequestId:n,repositoryId:t,stale:u,latest_unsynced_push_to_head_ref_at:m})})})}function w(e){let t,n,a=(0,i.c)(6),{pullRequestId:l,repositoryId:d,stale:h,latest_unsynced_push_to_head_ref_at:f}=e,{sendAnalyticsEvent:m}=(0,u.s)();if(!h||!f)return null;if(a[0]!==f||a[1]!==l||a[2]!==d||a[3]!==m){t=Symbol.for("react.early_return_sentinel");e:{let e=new Date,n=new Date(f),r=Math.round(e.getTime()-n.getTime())/1e3;if(r<20||r>=86400){t=null;break e}m("pull_requests.processing_indicator","",{repositoryId:d,pullRequestId:l,secondsSinceLastPush:r})}a[0]=f,a[1]=l,a[2]=d,a[3]=m,a[4]=t}else t=a[4];return t!==Symbol.for("react.early_return_sentinel")?t:(a[5]===Symbol.for("react.memo_cache_sentinel")?(n=(0,r.jsx)(s.m,{text:"Recent push is being processed and will appear soon",direction:"s",children:(0,r.jsx)(o.Q,{as:"a",href:"https://gh.io/pr-sync-in-progress",variant:"invisible",className:"PullRequestsProcessingIndicator-module__button--IKkby",children:(0,r.jsxs)("div",{className:"PullRequestsProcessingIndicator-module__indicator--iNiwb",children:[(0,r.jsx)(c.A,{size:"small"}),(0,r.jsx)("span",{className:"PullRequestsProcessingIndicator-module__text--JUMXg",children:"Processing updates"})]})})}),a[5]=n):n=a[5],n)}try{m.displayName||(m.displayName="PullRequestsProcessingIndicatorWithDataFetching")}catch{}try{w.displayName||(w.displayName="PullRequestsProcessingIndicator")}catch{}},96379:(e,t,n)=>{n.d(t,{DI:()=>o,QJ:()=>s,Sr:()=>l,lS:()=>c});var r=n(51987),i=n(88057),a=n(37285);async function o(e,t={}){let n,c,s,l;var u,d=e;if(new URL(d,window.location.origin).origin!==window.location.origin)throw Error("Can not make cross-origin requests from verifiedFetch");let{tracingEnabled:h,fetchPath:f}=(n=new URL(u=e,window.location.href),(s=(c=new URL(window.location.href,window.location.origin)).searchParams.get("_features"))&&!n.searchParams.has("_features")&&n.searchParams.set("_features",s),(l=c.searchParams.get("_tracing"))&&!n.searchParams.has("_tracing")&&n.searchParams.set("_tracing",l),{tracingEnabled:!!l,fetchPath:u.startsWith(window.location.origin)?n.href:`${n.pathname}${n.search}`}),m={...t.headers,"GitHub-Verified-Fetch":"true",...(0,r.kt)()},w=await fetch(f,{...t,headers:m}),g=w?.headers?.get("X-Github-Request-Id");if(g&&(0,i.Ex)(g),h&&w){let e=w.clone();try{let t=await e.text(),n=t&&JSON.parse(t);(0,a.Av)(n)}catch{}}return w}function c(e,t){let n={...t?.headers??{},Accept:"application/json","Content-Type":"application/json"},r=t?.body?JSON.stringify(t.body):void 0;return o(e,{...t,body:r,headers:n})}function s(e,t={}){let n={...t.headers,"GitHub-Is-React":"true"};return o(e,{...t,headers:n})}function l(e,t){let n={...t?.headers??{},"GitHub-Is-React":"true"};return c(e,{...t,headers:n})}}}]); +//# sourceMappingURL=32448-3f3affccb472.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/32816-c63bcd9e4a88.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/32816-c63bcd9e4a88.js" new file mode 100644 index 0000000..d09b1c8 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/32816-c63bcd9e4a88.js" @@ -0,0 +1,11 @@ +performance.mark("js-parse-end:32816-c63bcd9e4a88.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[32816],{4551:(e,t,n)=>{n.d(t,{n:()=>i,w:()=>r});var o=n(74848),a=n(5524);let i={SPAM:"Spam",ABUSE:"Abuse",OFF_TOPIC:"Off-topic",OUTDATED:"Outdated",DUPLICATE:"Duplicate",RESOLVED:"Resolved"},r=({setMenuOpen:e,onSelect:t})=>(0,o.jsx)(o.Fragment,{children:Object.keys(i).map(n=>(0,o.jsx)(a.l.Item,{"aria-label":`Hide comment as ${i[n]}`,onSelect:()=>{t(n),e?.(!1)},children:i[n]},n))});try{r.displayName||(r.displayName="HideCommentActionItems")}catch{}},13771:(e,t,n)=>{n.d(t,{A:()=>o});let o={avatarOuter:"Avatar-module__avatarOuter--waYVs",avatarInner:"Avatar-module__avatarInner--leXLe",avatarLink:"Avatar-module__avatarLink--leRdV",hiddenActivityAvatar:"Avatar-module__hiddenActivityAvatar--SrQQa",activityAvatar:"Avatar-module__activityAvatar--xUQh3",issueViewerAvatar:"Avatar-module__issueViewerAvatar--LY0E0",avatarWithDivider:"Avatar-module__avatarWithDivider--ge7w7",avatarWithoutDivider:"Avatar-module__avatarWithoutDivider--XoLX3",avatarWithoutLink:"Avatar-module__avatarWithoutLink--sASpy"}},14406:(e,t,n)=>{n.d(t,{o:()=>m});var o,a,i=n(74848),r=n(39414),s=n(96540),l=n(18312),d=n(69487);let c={fragment:{argumentDefinitions:o=[{defaultValue:null,kind:"LocalArgument",name:"input"}],kind:"Fragment",metadata:null,name:"unblockUserFromOrganizationMutation",selections:a=[{alias:null,args:[{kind:"Variable",name:"input",variableName:"input"}],concreteType:"UnblockUserFromOrganizationPayload",kind:"LinkedField",name:"unblockUserFromOrganization",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"clientMutationId",storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:o,kind:"Operation",name:"unblockUserFromOrganizationMutation",selections:a},params:{id:"3bb2b18124f6d9e474f1e4d67f4d648c",metadata:{},name:"unblockUserFromOrganizationMutation",operationKind:"mutation",text:null}};c.hash="05b84828fae0f7858c1ccd7347bfbb3e";let m=e=>e.onUnblock?(0,i.jsx)(h,{...e}):(0,i.jsx)(u,{...e}),u=({contentAuthor:e,organization:t,onClose:n,contentId:o})=>{let a=(0,l.useRelayEnvironment)(),m=(0,s.useCallback)(i=>{"confirm"===i&&function({environment:e,input:{organizationId:t,unblockedUserId:n},onError:o,onCompleted:a}){(0,l.commitMutation)(e,{mutation:c,variables:{input:{organizationId:t,unblockedUserId:n}},onError:e=>o&&o(e),onCompleted:()=>{a?.()}})}({environment:a,input:{unblockedUserId:e.id,organizationId:t.id},onCompleted:()=>(0,d.commitLocalUpdate)(a,e=>{let t=e.get(o);t?.setValue(!0,"pendingUnblock"),t?.setValue(!1,"pendingBlock")})}),n()},[n,a,e.id,t.id,o]);return(0,i.jsxs)(r.K,{title:`Unblock ${e.login} from ${t.login}`,confirmButtonContent:"Unblock user",confirmButtonType:"danger",onClose:m,children:["Are you sure you want to unblock ",(0,i.jsx)("strong",{children:e.login})," from ",(0,i.jsx)("strong",{children:t.login}),"?"]})},h=({contentAuthor:e,organization:t,onClose:n,onUnblock:o})=>{let a=(0,s.useCallback)(a=>{"confirm"===a&&o?.(t.login,e.login),n()},[n,o,t.login,e.login]);return(0,i.jsxs)(r.K,{title:`Unblock ${e.login} from ${t.login}`,confirmButtonContent:"Unblock user",confirmButtonType:"danger",onClose:a,children:["Are you sure you want to unblock ",(0,i.jsx)("strong",{children:e.login})," from ",(0,i.jsx)("strong",{children:t.login}),"?"]})};try{m.displayName||(m.displayName="UnblockUserFromOrgDialog")}catch{}try{u.displayName||(u.displayName="UnblockUserFromOrgDialogWithRelay")}catch{}try{h.displayName||(h.displayName="UnblockUserFromOrgDialogWithoutRelay")}catch{}},14969:(e,t,n)=>{n.d(t,{_:()=>A});var o,a,i=n(74848),r=n(43258),s=n(84268),l=n(94236),d=n(5524),c=n(21373),m=n(56149),u=n(15837),h=n(86877),p=n(33989),g=n(57387),y=n(96540),b=n(18312);let v={fragment:{argumentDefinitions:o=[{defaultValue:null,kind:"LocalArgument",name:"input"}],kind:"Fragment",metadata:null,name:"submitAbuseReportMutation",selections:a=[{alias:null,args:[{kind:"Variable",name:"input",variableName:"input"}],concreteType:"SubmitAbuseReportPayload",kind:"LinkedField",name:"submitAbuseReport",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"clientMutationId",storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:o,kind:"Operation",name:"submitAbuseReportMutation",selections:a},params:{id:"0603fe0f6dabc68adea31e484c57deb7",metadata:{},name:"submitAbuseReportMutation",operationKind:"mutation",text:null}};v.hash="8b252221b8eab001809aa2a2d583cb84";let x="ReportContentDialog-module__ReportContentContainer--N0pcI",C="ReportContentDialog-module__ReportContentHelpText--z0X7C",j="ReportContentDialog-module__ReportContentSubmitButton--r7_yG",A=({owner:e,ownerUrl:t,reportUrl:n,contentId:o,onClose:a,contentType:A="content"})=>{let f=(0,b.useRelayEnvironment)(),{addToast:k}=(0,r.Y6)(),[_,N]=(0,y.useState)("Choose a reason"),[w,S]=(0,y.useState)(!1),[I,R]=(0,y.useState)("admins"),B=(0,y.useCallback)(()=>{var e;S(!0),function({environment:e,input:{reportedContentId:t,reason:n},onError:o,onCompleted:a}){(0,b.commitMutation)(e,{mutation:v,variables:{input:{reportedContent:t,reason:n}},onError:e=>o&&o(e),onCompleted:()=>a&&a()})}({environment:f,input:{reportedContentId:o,reason:"Choose a reason"===(e=_)?"UNSPECIFIED":e},onError(e){k({type:"error",message:`Unable to submit report: ${e}`}),S(!1)},onCompleted(){k({type:"success",message:"Report submitted"}),S(!1),a()}})},[k,o,f,a,_]),U=(0,i.jsxs)("div",{className:x,children:[(0,i.jsxs)("div",{children:[(0,i.jsxs)("p",{children:[(0,i.jsxs)("span",{children:["This ",A," violates "]}),(0,i.jsx)(s.A,{inline:!0,href:t,children:`@${e}'s`}),(0,i.jsx)("span",{children:" Code of Conduct and should be submitted to the maintainers of this repository for review."})]}),(0,i.jsx)("p",{children:"This report, as well as your username as the reporter, will be viewable by all admins of this repository."}),(0,i.jsxs)("p",{children:["Choose a reason for reporting this ",A]})]}),(0,i.jsx)("div",{className:"ReportContentDialog-module__ReportContentSpacing--CM9Pl",children:(0,i.jsxs)(l.W,{children:[(0,i.jsx)(l.W.Button,{children:_}),(0,i.jsx)(l.W.Overlay,{children:(0,i.jsxs)(d.l,{children:[(0,i.jsx)(d.l.Item,{onSelect:()=>N("ABUSE"),children:"Abuse"}),(0,i.jsx)(d.l.Item,{onSelect:()=>N("SPAM"),children:"Spam"}),(0,i.jsx)(d.l.Item,{onSelect:()=>N("OFF_TOPIC"),children:"Off Topic"})]})})]})}),(0,i.jsxs)("div",{className:"ReportContentDialog-module__ReportContentTopMargin--f_wU_",children:[(0,i.jsxs)("div",{className:C,children:[(0,i.jsx)("span",{children:"Learn more about "}),(0,i.jsx)(s.A,{href:"https://docs.github.com/articles/reporting-abuse-or-spam",children:"requesting that maintainers moderate content."})]}),(0,i.jsx)(c.Q,{variant:"danger",onClick:()=>B(),disabled:w,className:j,children:"Report to repository admins"})]})]}),T=(0,i.jsxs)("div",{className:x,children:[(0,i.jsx)("span",{children:"Contact GitHub Support about this user's spammy or abusive behavior."}),(0,i.jsxs)("div",{className:"ReportContentDialog-module__ReportContentFooterSpacing--Eb8cV",children:[(0,i.jsxs)("div",{className:C,children:[(0,i.jsx)("span",{children:"Learn more about "}),(0,i.jsx)(s.A,{href:"https://docs.github.com/articles/reporting-abuse-or-spam",children:"reporting abuse to GitHub support"})]}),(0,i.jsx)(c.Q,{variant:"danger",as:"a",href:n,disabled:w,className:j,children:"Report abuse to GitHub support"})]})]});return(0,i.jsx)(m.ZL,{children:(0,i.jsx)(g.l,{title:`Report ${A}`,width:"xlarge",height:"auto",onClose:a,className:"ReportContentDialog-module__ReportContentDialog--WgQ4X",children:(0,i.jsxs)("div",{className:"ReportContentDialog-module__ReportContentRadioContainer--hWsdC",children:[(0,i.jsxs)(u.A,{name:"choiceGroup",onChange:e=>{R(e)},children:[(0,i.jsxs)(u.A.Label,{className:"ReportContentDialog-module__ReportContentRadioLabel--V9lmm",children:["Where would you like to report this ",A," to?"]}),(0,i.jsxs)(h.A,{children:[(0,i.jsx)(p.A,{value:"admins",defaultChecked:!0}),(0,i.jsx)(h.A.Label,{children:"To repository admins"})]}),(0,i.jsxs)(h.A,{children:[(0,i.jsx)(p.A,{value:"support"}),(0,i.jsx)(h.A.Label,{children:"To GitHub support"})]})]}),"admins"===I&&U,"support"===I&&T]})})})};try{A.displayName||(A.displayName="ReportContentDialog")}catch{}},20459:(e,t,n)=>{n.d(t,{E:()=>l,s:()=>i});var o=n(66661),a=n(96760);function i(e){if(!e)return e;let t=e.split(` +`),n="";for(let e of t)n=n.concat(`> ${e} +`);return n}let r=e=>"none"===e.style.display||"hidden"===e.style.visibility||"true"===e.ariaHidden,s=e=>{let t=document.createNodeIterator(e,NodeFilter.SHOW_ELEMENT,{acceptNode:()=>NodeFilter.FILTER_ACCEPT}),n=t.nextNode();for(;n;)n instanceof HTMLElement&&r(n)&&n.remove(),n=t.nextNode()};function l(e,t,n){if(!e)return;let i=e.querySelector((0,a.Sp)(a.mU.markdownBody)),r=new o.g("",s);t&&i.contains(t.anchorNode)&&i.contains(t.range.startContainer)&&i.contains(t.range.endContainer)&&!t.range.collapsed&&""!==t.range.toString().trim()?r.range=t.range:r.select(i),n&&(r.processSelectionTextFn=e=>{for(let t of n.matchAll(/(!\[[^[]+?\]\([^()]+\/)([\w\d-]+)(.+)/g)){let n=t[1],o=t[2],a=t[3];if(!n||!o||!a)continue;let i=`${n}${o}${a.split(")")[0]})`,r=e.split(o);if(r.length<2)continue;let s=r[0]?.match(/!\[[^[]+$/),l=r[1]?.split(")")[0],d=`${s}${o}${l})`;e=e.replaceAll(d,i)}return e});let l=(0,a.tD)();if(l){let e=l?.querySelector("textarea"),t=l?.querySelector("button");if(e)return r.insert(e),e.value;if(t)return r.quotedText}}},29554:(e,t,n)=>{n.d(t,{A:()=>o});let o={activityHeader:"ActivityHeader-module__activityHeader--WiwzD",footer:"ActivityHeader-module__footer--ssKOW",narrowViewportWrapper:"ActivityHeader-module__narrowViewportWrapper--k4ncm",edits:"ActivityHeader-module__edits--WkfqY",HeaderMutedText:"ActivityHeader-module__HeaderMutedText--aJAo0",HeaderLink:"ActivityHeader-module__HeaderLink--fStdK",HeaderMutedTextNoEllipsis:"ActivityHeader-module__HeaderMutedTextNoEllipsis--zWavP",ActivityHeaderContainer:"ActivityHeader-module__ActivityHeaderContainer--fKwFm",ActivityHeaderGridLayout:"ActivityHeader-module__ActivityHeaderGridLayout--Jwd78",AvatarContainer:"ActivityHeader-module__AvatarContainer--p2vAR",CommentHeaderContentContainer:"ActivityHeader-module__CommentHeaderContentContainer--OOrIN",TitleContainer:"ActivityHeader-module__TitleContainer--pa99A",AuthorName:"ActivityHeader-module__AuthorName--Im5nP",AuthorLink:"ActivityHeader-module__AuthorLink--D7Ojk",FooterContainer:"ActivityHeader-module__FooterContainer--FHEpM",ActionsContainer:"ActivityHeader-module__ActionsContainer--Ebsux",EditsContainer:"ActivityHeader-module__EditsContainer--aMWsI",BadgesContainer:"ActivityHeader-module__BadgesContainer--lAU4a",BadgesGroupContainer:"ActivityHeader-module__BadgesGroupContainer--thmDS",CommentHeaderBadge:"ActivityHeader-module__CommentHeaderBadge--ZOgwo",ActionsButtonsContainer:"ActivityHeader-module__ActionsButtonsContainer--L7GUK"}},33643:(e,t,n)=>{n.d(t,{C:()=>l});var o=n(96912),a=n(72471),i=n(26320),r=n(79639),s=n(9802);function l(e){if(!(0,o.f)(e))return"";let t=(0,a.GP)(e,"h:mm a");return(0,i.c)(e)?`${t} today`:(0,r.P)(e)?`${t} yesterday`:(0,s.e)(e)?`${t} on ${(0,a.GP)(e,"MMMM d")}`:`${t} on ${(0,a.GP)(e,"MMMM d, yyyy")}`}},40846:(e,t,n)=>{n.d(t,{C:()=>s});var o=n(74848),a=n(82550),i=n(12683),r=n(96540);let s=({label:e,ariaLabel:t,testId:n,viewerDidAuthor:s,variant:l,leadingElement:d,className:c})=>{let m=r.useRef(null),[u,h]=(0,a.B)({contentRef:m,"aria-label":t});return(0,o.jsxs)(i.JU,{variant:l||"secondary","data-testid":n,"aria-label":t,className:c,ref:m,sx:s?{borderColor:"accent.muted"}:{},...u,children:[d,e,h]})};try{s.displayName||(s.displayName="CommentHeaderBadge")}catch{}},41248:(e,t,n)=>{n.d(t,{m:()=>l});var o=n(74848),a=n(46173),i=n(40846);let r={MEMBER:"Member",OWNER:"Owner",MANNEQUIN:"Mannequin",COLLABORATOR:"Collaborator",CONTRIBUTOR:"Contributor",FIRST_TIME_CONTRIBUTOR:"First-time contributor",FIRST_TIMER:"First-time GitHub contributor",NONE:""},s={MEMBER:({viewerDidAuthor:e,org:t})=>`${e?"You are":"This user is"} a member of the ${t} organization.`,OWNER:({viewerDidAuthor:e,repo:t})=>`${e?"You are":"This user is"} the owner of the ${t} repository.`,MANNEQUIN:()=>"This is a mannequin user.",COLLABORATOR:({viewerDidAuthor:e,repo:t})=>`${e?"You have":"This user has"} been invited to collaborate on the ${t} repository.`,CONTRIBUTOR:({viewerDidAuthor:e,repo:t})=>`${e?"You have":"This user has"} previously committed to the ${t} repository.`,FIRST_TIME_CONTRIBUTOR:({viewerDidAuthor:e,repo:t})=>`${e?"You are":"This user is"} a first-time contributor to the ${t} repository.`,FIRST_TIMER:({viewerDidAuthor:e})=>`${e?"This is your":"This user's"} first pull request on GitHub.`,NONE:()=>""},l=({association:e,org:t,repo:n,viewerDidAuthor:l})=>{let d=r[e]?e:"NONE";if("NONE"===d)return null;let c=s[d]({viewerDidAuthor:l??!1,org:t,repo:n});return(0,o.jsx)(i.C,{label:r[d],ariaLabel:c,testId:a.Y.commentAuthorAssociation,viewerDidAuthor:l})};try{l.displayName||(l.displayName="CommentAuthorAssociation")}catch{}},46173:(e,t,n)=>{n.d(t,{Y:()=>o});let o={avatarLink:"avatar-link",avatarName:"avatar-name",commentAuthorAssociation:"comment-author-association",commentSubjectAuthor:"comment-subject-author",spammyLabel:"spammy-label",sponsorLabel:"sponsor-label",commentHeader:"comment-header",commentHeaderLeftSideItems:"comment-header-left-side-items",commentHeaderRightSideItems:"comment-header-right-side-items",commentHeaderHamburger:"comment-header-hamburger",commentHeaderHamburgerOpen:"comment-header-hamburger-open",commentMenuRefComment:"comment-menu-ref-comment",commentViewerOuterBox:e=>e?`comment-viewer-outer-box-${e}`:"comment-viewer-outer-box",commentComposer:"comment-composer",markdownBody:"markdown-body",commentBox:(e="")=>`markdown-editor-${e}`,readonlyCommentBox:(e="")=>`readonly-markdown-editor-${e}`,commentSkeleton:"comment-skeleton"}},53627:(e,t,n)=>{n.d(t,{C3:()=>l,JV:()=>i,K3:()=>u,MM:()=>d,OE:()=>h,Zu:()=>m,bj:()=>r,jc:()=>c,kd:()=>s});var o=n(56038);let a=null;function i(){return o.Kn?.state||{}}function r(e){p(i(),"",e)}function s(e){o.Kn?.pushState({appId:i().appId},"",e),g()}function l(e){let t={...i(),...e};a&&(a=t),p(t,"",location.href)}function d(e){r(`?${e.toString()}${o.fV.hash}`)}function c(){r(o.fV.pathname+o.fV.hash)}function m(e){r(e.startsWith("#")?e:`#${e}`),(a=i())&&requestIdleCallback(()=>{!history.state&&a&&(l(a),a=null)})}function u(){r(o.fV.pathname+o.fV.search)}function h(){o.Kn?.back()}function p(e,t,n){o.Kn?.replaceState(e,t,n),g()}function g(){o.cg?.dispatchEvent(new CustomEvent("statechange",{bubbles:!1,cancelable:!1}))}},57224:(e,t,n)=>{n.d(t,{y:()=>r});var o=n(74848),a=n(16522),i=n(49936);function r(e){let t,n,r=(0,a.c)(7),{children:s,appName:l,category:d,metadata:c}=e;r[0]!==l||r[1]!==d||r[2]!==c?(t={appName:l,category:d,metadata:c},r[0]=l,r[1]=d,r[2]=c,r[3]=t):t=r[3];let m=t;return r[4]!==s||r[5]!==m?(n=(0,o.jsx)(i.I,{value:m,children:s}),r[4]=s,r[5]=m,r[6]=n):n=r[6],n}try{r.displayName||(r.displayName="AnalyticsProvider")}catch{}},59123:(e,t,n)=>{n.d(t,{r5:()=>f});var o,a,i=n(74848),r=n(73189),s=n(56149),l=n(94236),d=n(5524),c=n(86877),m=n(46720),u=n(21373),h=n(57387),p=n(96540),g=n(18312),y=n(69487);let b={fragment:{argumentDefinitions:o=[{defaultValue:null,kind:"LocalArgument",name:"input"}],kind:"Fragment",metadata:null,name:"blockUserFromOrganizationMutation",selections:a=[{alias:null,args:[{kind:"Variable",name:"input",variableName:"input"}],concreteType:"BlockUserFromOrganizationPayload",kind:"LinkedField",name:"blockUserFromOrganization",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"clientMutationId",storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:o,kind:"Operation",name:"blockUserFromOrganizationMutation",selections:a},params:{id:"cc2dfdd4807633d71341d55e85bdcec5",metadata:{},name:"blockUserFromOrganizationMutation",operationKind:"mutation",text:null}};b.hash="1cc6b979024f82ac249a77676892c1f0";let v="BlockUserFromOrgDialog-module__BlockUserFormRow--kI5df",x="BlockUserFromOrgDialog-module__BlockUserHelpText--znGRy";var C=n(4551);let j={ONE_DAY:"For 1 day",THREE_DAYS:"For 3 days",SEVEN_DAYS:"For 7 days",THIRTY_DAYS:"For 30 days",INDEFINITE:"Until I unblock them"},A={ONE_DAY:"1",THREE_DAYS:"3",SEVEN_DAYS:"7",THIRTY_DAYS:"30",INDEFINITE:"0"},f=({onBlock:e,onClose:t,...n})=>{let[o,a]=(0,p.useState)("INDEFINITE"),[r,u]=(0,p.useState)(!0),[g,y]=(0,p.useState)(!1),[b,A]=(0,p.useState)(void 0),f=n.contentAuthor.login;return(0,i.jsx)(s.ZL,{children:(0,i.jsx)(h.l,{title:`Block ${n.contentAuthor.login} from ${n.organization.login}`,renderFooter:()=>e?(0,i.jsx)(N,{onBlock:e,onClose:t,...n,notifyBlockedUser:r,hideComment:g,duration:o,hiddenReason:b}):(0,i.jsx)(_,{onClose:t,...n,notifyBlockedUser:r,hideComment:g,duration:o,hiddenReason:b}),width:"xlarge",height:"auto",onClose:t,className:"BlockUserFromOrgDialog-module__BlockUserDialog--I4tCJ",children:(0,i.jsxs)("div",{className:"BlockUserFromOrgDialog-module__BlockUserContainer--EfgwE",children:[(0,i.jsx)("div",{className:v,children:(0,i.jsx)("div",{children:(0,i.jsxs)("span",{children:["Blocking a user prevents them from interacting with repositories of this organization, such as opening or commenting on pull requests or issues. Learn more about"," ",(0,i.jsx)("a",{href:"https://docs.github.com/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization",children:"blocking a user."})]})})}),(0,i.jsx)("div",{className:v,children:(0,i.jsxs)(l.W,{children:[(0,i.jsxs)(l.W.Button,{children:["Block a user: ",j[o]]}),(0,i.jsx)(l.W.Overlay,{children:(0,i.jsx)(d.l,{selectionVariant:"single",children:(0,i.jsxs)(d.l.Group,{children:[(0,i.jsx)(d.l.GroupHeading,{children:"Block options"}),Object.keys(j).map(e=>(0,i.jsx)(d.l.Item,{onSelect:()=>{a(e)},selected:e===o,children:j[e]},e))]})})})]})}),(0,i.jsx)(k,{}),(0,i.jsx)("h4",{children:"More options"}),(0,i.jsxs)(c.A,{className:"BlockUserFromOrgDialog-module__BlockUserFormControl--jMHp4",children:[(0,i.jsx)(m.A,{checked:r,onChange:()=>u(!r),"aria-checked":r}),(0,i.jsx)(c.A.Label,{children:"Send user a notification and show activity in timeline"}),(0,i.jsx)(c.A.Caption,{children:(0,i.jsxs)("span",{className:x,children:["You can notify ",(0,i.jsx)("b",{children:f})," as to why they're being blocked. A public timeline entry will show that this user was blocked. They will receive an email notification and a notice when they try to comment with the following message:",(0,i.jsx)("div",{className:"BlockUserFromOrgDialog-module__BlockUserIndentedContainer--lH9mJ",children:(0,i.jsxs)("blockquote",{children:["A maintainer of the @",n.organization.login," organization has blocked you because of"," ",(0,i.jsx)("a",{href:n.contentUrl,children:"this content"}),". For more information please see"," ",(0,i.jsx)("a",{href:"https://docs.github.com/site-policy/github-terms/github-community-guidelines",children:"the community guidelines"}),"."]})})]})})]}),(0,i.jsxs)(c.A,{children:[(0,i.jsx)(m.A,{checked:g,onChange:()=>y(!g),"aria-checked":g}),(0,i.jsx)(c.A.Label,{children:"Hide this user's comments"}),(0,i.jsx)(c.A.Caption,{children:(0,i.jsxs)("span",{className:x,children:["All of their comments in this organization"," ",(0,i.jsx)("a",{href:"https://docs.github.com/communities/moderating-comments-and-conversations/managing-disruptive-comments#hiding-a-comment",children:"will be hidden"})," ","to all users and will display a reason."]})})]}),(0,i.jsx)("div",{className:"BlockUserFromOrgDialog-module__BlockUserLeftPadding--XEifV",children:(0,i.jsxs)(l.W,{children:[(0,i.jsx)(l.W.Button,{children:(b&&C.n[b])??"Choose a reason"}),(0,i.jsx)(l.W.Overlay,{children:(0,i.jsx)(d.l,{selectionVariant:"single",children:(0,i.jsx)(C.w,{onSelect:A})})})]})})]})})})},k=()=>(0,i.jsx)("div",{className:"BlockUserFromOrgDialog-module__BlockUserDivider--xUkJ6"}),_=({organization:e,contentAuthor:t,contentId:n,notifyBlockedUser:o,hideComment:a,duration:s,hiddenReason:l,onClose:d})=>{let c=(0,g.useRelayEnvironment)(),m=(0,p.useCallback)(()=>{!function({environment:e,input:{organizationId:t,blockedUserId:n,duration:o,notifyBlockedUser:a,hiddenReason:i,contentId:r},onError:s,onCompleted:l}){let d={organizationId:t,blockedUserId:n,duration:o,notifyBlockedUser:a,contentId:r};i&&(d={...d,hiddenReason:i}),(0,g.commitMutation)(e,{mutation:b,variables:{input:d},onError:e=>s&&s(e),onCompleted:()=>{l?.()}})}({environment:c,input:{organizationId:e.id,contentId:n,blockedUserId:t.id,duration:s,hiddenReason:a&&l?l:void 0,notifyBlockedUser:o},onError:r.l,onCompleted:()=>(0,y.commitLocalUpdate)(c,e=>{let t=e.get(n);t?.setValue(!1,"pendingUnblock"),t?.setValue(!0,"pendingBlock"),l&&t?.setValue(l,"pendingMinimizeReason")})}),d()},[c,e.id,n,t.id,s,a,l,o,d]);return(0,i.jsx)(w,{hideComment:a,hiddenReason:l,onSubmit:m})},N=({contentAuthor:e,duration:t,hideComment:n,hiddenReason:o,onBlock:a,onClose:r,organization:s,notifyBlockedUser:l})=>(0,i.jsx)(w,{hideComment:n,hiddenReason:o,onSubmit:()=>{a?.(A[t]??"0",n,o,s.login,l,e.login),r()}}),w=({hideComment:e,hiddenReason:t,onSubmit:n})=>(0,i.jsx)(h.l.Footer,{children:(0,i.jsx)(u.Q,{variant:"danger",disabled:e&&!t,onClick:n,className:"BlockUserFromOrgDialog-module__Button--FFeVP",children:"Block user from organization"})});try{f.displayName||(f.displayName="BlockUserFromOrgDialog")}catch{}try{k.displayName||(k.displayName="DialogDivider")}catch{}try{_.displayName||(_.displayName="BlockUserFromOrgDialogFooterWithRelay")}catch{}try{N.displayName||(N.displayName="BlockUserFromOrgDialogFooterWithoutRelay")}catch{}try{w.displayName||(w.displayName="BlockUserFromOrgDialogFooterComponent")}catch{}},64016:(e,t,n)=>{n.d(t,{v:()=>N,S:()=>_});var o=n(74848),a=n(69599),i=n(77430),r=n(59672),s=n(26052),l=n(38621),d=n(84268),c=n(62935),m=n(26607),u=n(12683),h=n(34164),p=n(96540),g=n(96901),y=n(46173),b=n(29554),v=n(13771),x=n(41248),C=n(40846);let j=({viewerDidAuthor:e,subjectType:t})=>(0,o.jsx)(C.C,{viewerDidAuthor:e,ariaLabel:g.k.commentSubjectAuthor(e??!1,t??"comment"),label:g.k.commentAuthor,testId:y.Y.commentSubjectAuthor});try{j.displayName||(j.displayName="CommentSubjectAuthor")}catch{}function A({pinnedByLogin:e}){return(0,o.jsxs)("span",{className:"PinnedByBadge-module__PinnedByContainer--hu864",children:[" ","\xb7",(0,o.jsx)(l.PinIcon,{size:12,className:"PinnedByBadge-module__PinnedByIcon--dKT2_"})," Pinned by"," ",(0,o.jsx)(d.A,{href:`/${e}`,"data-hovercard-url":(0,r.dCN)({owner:e}),className:"PinnedByBadge-module__PinnedByLink--OVNOT",children:(0,o.jsx)(s.v,{login:e,isAgent:!1})})]})}try{A.displayName||(A.displayName="PinnedByBadge")}catch{}var f=n(85757);let k=({createdAt:e,owner:t,viewerDidAuthor:n})=>{let a=new Date(e),i=a.toLocaleString("default",{month:"long"}),r=g.k.sponsor(t,`${i} ${a.getFullYear()}`);return(0,o.jsx)(C.C,{label:g.k.sponsorBadge,ariaLabel:r,testId:y.Y.sponsorLabel,viewerDidAuthor:n})};try{k.displayName||(k.displayName="SponsorsBadge")}catch{}let _={Bot:"Bot",Mannequin:"Mannequin",User:"User"};function N({actions:e,badges:t,comment:n,commentAuthorType:i,commentAuthorSlug:N,commentAuthorLogin:S,commentAuthorProfileName:I,isMinimized:R=!1,avatarUrl:B,lastEditedByMessage:U,editHistoryComponent:T,additionalHeaderMessage:O,sx:D,viewerDidAuthor:$=!1,userAvatar:L,commentSubjectAuthorLogin:H,commentSubjectType:E,isReply:M=!1,headingProps:{as:F,...V}={as:"h3"},id:z,forceInlineAvatar:P,containerStyle:W,originalDiffPathUri:Y,isOutdated:G,hideProfileLink:K=!1,pinnedByLogin:q}){let Q,J=W||M?{}:{backgroundColor:$?"accent.subtle":"canvas.subtle",borderTopLeftRadius:"6px",borderTopRightRadius:"6px",borderBottom:"1px solid",borderColor:$?"accent.muted":"border.default",borderBottomWidth:+!R,py:P?[1,1,2,2]:1,pr:1,pl:3,...D},X=n.pendingMinimizeReason??n.minimizedReason,Z=!!X||n.isHidden,ee=new Date(n.createdAt),et=i===_.Bot,en=i===_.Mannequin,eo=et&&("Copilot"===S&&!!N||"copilot-swe-agent"===S),ea=en||K?void 0:`/${et?"apps/":""}${N??S}`,ei=eo?"Copilot":S;Q=eo?(0,r._nf)({bot_slug:N??S}):en?void 0:(0,r.dCN)({owner:S});let er=(0,a.G7)("issue_comment_pinning")&&q&&!Z,es=(0,o.jsxs)(o.Fragment,{children:[O&&(0,o.jsx)("span",{className:b.A.HeaderMutedText,children:O}),(0,o.jsxs)("span",{className:b.A.HeaderMutedText,children:[(0,o.jsx)(d.A,{href:G?function(e){if(!e)return;let t=new URL(e,window.location.origin);return t.searchParams.set("new_files_changed","true"),t.toString()}(Y):n.url,"data-turbo":G?"false":"true",className:b.A.HeaderLink,children:(0,o.jsxs)(c.A,{date:ee,children:["on ",ee.toLocaleDateString("en-US",{month:"short",day:"numeric",year:"numeric"})]})}),n.createdViaEmail&&(0,o.jsx)("span",{children:` ${g.k.sentViaEmail}`}),n.viaApp&&(0,o.jsxs)("span",{children:[" ","\u2013 with"," ",(0,o.jsx)(d.A,{inline:!0,href:n.viaApp.url,children:n.viaApp.name})]})]}),Z&&(0,o.jsxs)("span",{className:b.A.HeaderMutedTextNoEllipsis,children:[" ","\xb7"," ",X?(0,o.jsxs)("span",{children:[g.k.hiddenCommentWithReason," ",X.replace(/_/g,"-").toLowerCase()]}):(0,o.jsx)("span",{children:g.k.hiddenComment})]}),U&&!Z&&(0,o.jsx)(p.Suspense,{children:U}),er&&(0,o.jsx)(A,{pinnedByLogin:q})]});return(0,o.jsx)(u.az,{id:z,sx:{...J},"data-testid":y.Y.commentHeader,className:b.A.ActivityHeaderContainer,children:(0,o.jsxs)(u.az,{className:(0,h.$)(b.A.activityHeader,b.A.ActivityHeaderGridLayout),sx:{paddingBottom:U||P?0:"var(--base-size-6, 6px)"},children:[(0,o.jsx)(F,{...V,className:"sr-only",children:(0,o.jsxs)(o.Fragment,{children:[eo?"Copilot":S," ",M?"replied":"commented"," ",(0,o.jsxs)(c.A,{date:ee,children:["on ",ee.toLocaleDateString("en-US",{month:"short",day:"numeric",year:"numeric"})," "]})]})}),(0,o.jsx)(u.az,{className:(0,h.$)(P?"":v.A.avatarInner,b.A.AvatarContainer),sx:{display:P?"flex":["flex","flex","none","none"]},children:L??(0,o.jsx)(w,{avatarUrl:B,login:S,isCopilot:eo,isHidden:Z,hovercardUrl:Q,profileUrl:ea})}),(0,o.jsxs)("div",{className:(0,h.$)(b.A.narrowViewportWrapper,b.A.CommentHeaderContentContainer),"data-testid":y.Y.commentHeaderLeftSideItems,children:[(0,o.jsxs)("div",{className:b.A.TitleContainer,children:[ea?(0,o.jsx)(d.A,{href:ea,"data-testid":y.Y.avatarLink,"data-hovercard-url":Q,className:(0,h.$)(b.A.AuthorName,b.A.AuthorLink,Z?"color-fg-muted":"color-fg-default"),children:(0,o.jsx)(s.v,{login:ei,profileName:I,isAgent:eo})}):(0,o.jsx)("span",{"data-testid":y.Y.avatarName,"data-hovercard-url":Q,className:(0,h.$)(b.A.AuthorName,Z?"color-fg-muted":"color-fg-default"),children:(0,o.jsx)(s.v,{login:ei,profileName:I,isAgent:eo})}),(et||en)&&(0,o.jsx)(m.A,{variant:"secondary",className:"ml-1",children:g.k.authorLabel(et,eo)})]}),(0,o.jsx)("div",{className:(0,h.$)(b.A.footer,b.A.FooterContainer),children:es})]}),(0,o.jsxs)("div",{"data-testid":y.Y.commentHeaderRightSideItems,className:(0,h.$)(b.A.narrowViewportWrapper,b.A.ActionsContainer),children:[T&&(0,o.jsx)("div",{className:b.A.EditsContainer,children:T}),(0,o.jsxs)("div",{className:b.A.BadgesContainer,children:[(0,o.jsxs)("div",{className:b.A.BadgesGroupContainer,children:[n.state?.toUpperCase()==="PENDING"&&(0,o.jsx)(C.C,{leadingElement:(0,o.jsx)(l.DotFillIcon,{}),label:"Pending",ariaLabel:"This review comment is pending",testId:"pending-badge",variant:"attention",className:b.A.CommentHeaderBadge}),!Z&&!R&&n.authorToRepoOwnerSponsorship&&n.authorToRepoOwnerSponsorship.isActive&&(0,o.jsx)(k,{createdAt:n.authorToRepoOwnerSponsorship.createdAt,owner:n.repository.owner.login,viewerDidAuthor:$}),!Z&&!R&&n.showSpammyBadge&&(0,o.jsx)(f.b,{}),!n.repository.isPrivate&&!Z&&!R&&(0,o.jsx)(x.m,{association:n.authorAssociation,viewerDidAuthor:$,org:n.repository.owner.login,repo:n.repository.name}),S===H&&(0,o.jsx)(j,{viewerDidAuthor:$,subjectType:E}),t]}),(0,o.jsx)("div",{className:b.A.ActionsButtonsContainer,children:e})]})]})]})})}function w({avatarUrl:e,login:t,isHidden:n,isCopilot:a,hovercardUrl:r,profileUrl:s}){let l=(0,o.jsx)(i.r,{src:e,alt:a?"Copilot":`@${t}`,size:24,square:a,className:n?v.A.hiddenActivityAvatar:v.A.activityAvatar});return s?(0,o.jsx)(d.A,{href:s,className:v.A.avatarLink,"data-hovercard-url":r,"aria-label":a?"Copilot":`@${t}'s profile`,children:l}):(0,o.jsx)("div",{className:v.A.avatarWithoutLink,"data-hovercard-url":r,children:l})}try{N.displayName||(N.displayName="ActivityHeader")}catch{}try{w.displayName||(w.displayName="DefaultAvatar")}catch{}},74547:(e,t,n)=>{n.d(t,{t:()=>o});let o={react:"React",reactionsUnavailable:"Reactions are currently unavailable",copilotDisplayName:"Copilot"}},76143:(e,t,n)=>{n.d(t,{D:()=>i,Y:()=>r});var o=n(4559),a=n(56038);function i(e){if(!a.XC)return;let t=a.XC.querySelector("title"),n=a.XC.createElement("title");n.textContent=e,t?t.textContent!==e&&(t.replaceWith(n),(0,o.i)(e)):(a.XC.head.appendChild(n),(0,o.i)(e))}function r(e){return document.body.classList.contains("logged-out")?`${e} \xb7 GitHub`:e}},78809:(e,t,n)=>{n.d(t,{P:()=>x});var o=n(74848),a=n(16522),i=n(97068),r=n(45800),s=n(31604),l=n(5524),d=n(96540),c=n(11196),m=n(21373),u=n(34164),h=n(79866);function p(e){let t,n,i,r,s,l,p,y,b,v,x=(0,a.c)(39),{reactionGroup:C,disabled:j,onReact:A}=e,{content:f,viewerHasReacted:k}=C.reaction,{reactors:_,totalCount:N}=C,w=(0,d.useId)();if(0===N)return null;if(x[0]!==f||x[1]!==_||x[2]!==N||x[3]!==k){let e,o,a=_.flatMap(g);x[8]!==f||x[9]!==k?(e=(0,h.JQ)(f,k),x[8]=f,x[9]=k,x[10]=e):e=x[10],n=e,x[11]!==f||x[12]!==N?(o=(0,h.fj)(f,N),x[11]=f,x[12]=N,x[13]=o):o=x[13],i=o,t=c.m,r=(0,h.Js)(a,N),x[0]=f,x[1]=_,x[2]=N,x[3]=k,x[4]=t,x[5]=n,x[6]=i,x[7]=r}else t=x[4],n=x[5],i=x[6],r=x[7];x[14]!==f?(s=()=>(0,o.jsx)(o.Fragment,{children:h.qG[f]}),x[14]=f,x[15]=s):s=x[15],x[16]!==f||x[17]!==A||x[18]!==k?(l=()=>A(f,k),x[16]=f,x[17]=A,x[18]=k,x[19]=l):l=x[19];let S=k&&"ReactionButton-module__reactionToggleButtonReacted--TgLue";return x[20]!==S?(p=(0,u.$)("ReactionButton-module__reactionToggleButton--axnvQ",S),x[20]=S,x[21]=p):p=x[21],x[22]!==n||x[23]!==w?(y=(0,o.jsx)("span",{className:"sr-only",id:w,children:n}),x[22]=n,x[23]=w,x[24]=y):y=x[24],x[25]!==j||x[26]!==w||x[27]!==i||x[28]!==s||x[29]!==l||x[30]!==p||x[31]!==y||x[32]!==N||x[33]!==k?(b=(0,o.jsxs)(m.Q,{size:"small","aria-label":i,role:"switch","aria-checked":k,leadingVisual:s,onClick:l,inactive:j,className:p,"aria-describedby":w,children:[y,N]}),x[25]=j,x[26]=w,x[27]=i,x[28]=s,x[29]=l,x[30]=p,x[31]=y,x[32]=N,x[33]=k,x[34]=b):b=x[34],x[35]!==t||x[36]!==r||x[37]!==b?(v=(0,o.jsx)(t,{text:r,type:"description",direction:"ne",children:b}),x[35]=t,x[36]=r,x[37]=b,x[38]=v):v=x[38],v}function g(e){return"Other"!==e.typeName?[e.login]:[]}try{p.displayName||(p.displayName="ReactionButton")}catch{}var y=n(12683);function b(e){let t,n,i,r,s=(0,a.c)(13),{onReact:l,reaction:d}=e,{content:c,viewerHasReacted:m}=d;s[0]===Symbol.for("react.memo_cache_sentinel")?(t={backgroundColor:"accent.emphasis"},s[0]=t):t=s[0];let u=m?"accent.subtle":"transparent";s[1]!==u?(n={"&:hover":t,backgroundColor:u},s[1]=u,s[2]=n):n=s[2],s[3]!==c||s[4]!==l||s[5]!==m?(i=()=>l(c,m),s[3]=c,s[4]=l,s[5]=m,s[6]=i):i=s[6];let p=h.qG[c];return s[7]!==c||s[8]!==n||s[9]!==i||s[10]!==p||s[11]!==m?(r=(0,o.jsx)(y.lF.Item,{sx:n,role:"menuitemcheckbox","aria-checked":m,onSelect:i,className:"ReactionsMenuItem-module__ReactionsMenuOption--uvJoP",children:p},c),s[7]=c,s[8]=n,s[9]=i,s[10]=p,s[11]=m,s[12]=r):r=s[12],r}try{b.displayName||(b.displayName="ReactionsMenuItem")}catch{}var v=n(97911);let x=e=>{let t,n,c,m,u,h=(0,a.c)(22),{ref:g,reactionGroups:y,canReact:x,onReact:C}=e,j=void 0===x||x,[A,f]=(0,d.useState)(!1),k=y.length>0;h[0]===Symbol.for("react.memo_cache_sentinel")?(t={bindKeys:i.z0.HomeAndEnd|i.z0.ArrowHorizontal,focusOutBehavior:"wrap"},h[0]=t):t=h[0];let{containerRef:_}=(0,r.G)(t);if(h[1]!==j||h[2]!==_||h[3]!==A||h[4]!==C||h[5]!==y||h[6]!==k||h[7]!==g?(n=j&&(0,o.jsx)(s.T,{open:A,onOpen:()=>f(k),onClose:()=>f(!1),anchorRef:_,focusZoneSettings:{bindKeys:i.z0.ArrowAll|i.z0.HomeAndEnd,focusOutBehavior:"wrap"},renderAnchor:e=>(0,o.jsx)(v.N,{renderAnchorProps:e,reactionsAvailable:k,ref:g}),children:(0,o.jsx)(l.l,{className:"d-flex flex-row p-1 gap-1",role:"menu","aria-orientation":"horizontal",children:(y||[]).map((e,t)=>(0,o.jsx)(b,{reaction:e.reaction,onReact:(e,t)=>{C(e,t),f(!1)}},t))})}),h[1]=j,h[2]=_,h[3]=A,h[4]=C,h[5]=y,h[6]=k,h[7]=g,h[8]=n):n=h[8],h[9]!==y?(c=y||[],h[9]=y,h[10]=c):c=h[10],h[11]!==j||h[12]!==C||h[13]!==c){let e;h[15]!==j||h[16]!==C?(e=(e,t)=>(0,o.jsx)(p,{reactionGroup:e,disabled:!j,onReact:(e,t)=>C(e,t)},t),h[15]=j,h[16]=C,h[17]=e):e=h[17],m=c.map(e),h[11]=j,h[12]=C,h[13]=c,h[14]=m}else m=h[14];return h[18]!==_||h[19]!==n||h[20]!==m?(u=(0,o.jsxs)("div",{role:"toolbar","aria-label":"Reactions",ref:_,className:"d-flex gap-1 flex-wrap",children:[n,m]}),h[18]=_,h[19]=n,h[20]=m,h[21]=u):u=h[21],u};x.displayName="ReactionViewerBase"},79866:(e,t,n)=>{n.d(t,{JQ:()=>i,Js:()=>a,fj:()=>r,qG:()=>o});let o={CONFUSED:"\u{1F615}",EYES:"\u{1F440}",HEART:"\u2764\uFE0F",HOORAY:"\u{1F389}",LAUGH:"\u{1F604}",THUMBS_DOWN:"\u{1F44E}",THUMBS_UP:"\u{1F44D}",ROCKET:"\u{1F680}"};function a(e,t){if(0===e.length||0===t)return"";let n=e.slice(0);if(1===n.length)return n[0];if(2===n.length)return n.join(" and ");t>e.length&&n.push(`${t-e.length} more`);let o=n.pop();return n.push(`${n.pop()} and ${o}`),n.join(", ")}function i(e,t){return`${t?"Unreact":"React"} with ${o[e]}`}function r(e,t){return`${o[e]} ${t} reaction${1===t?"":"s"}`}},81156:(e,t,n)=>{n.d(t,{t:()=>o});let o={ghostUser:{displayName:"Ghost",login:"ghost",avatarUrl:"https://avatars.githubusercontent.com/ghost",path:"/ghost",url:"/ghost"},localStorageKeys:{issueComment:(e,t,n)=>`${e}-i${t}-c${n}.view-issue-comment`,issueNewComment:(e,t)=>`${e}-i${t}.view-issue-comment-new`}}},82550:(e,t,n)=>{n.d(t,{B:()=>s});var o=n(74848),a=n(16522),i=n(96540),r=n(25556);function s(e){let t,n,s,l,d,c,m,u,h,p=(0,a.c)(20);p[0]!==e?({includeAriaAttributes:n,...t}=e,p[0]=e,p[1]=t,p[2]=n):(t=p[1],n=p[2]);let g=void 0===n||n,y=(0,i.useId)(),[b,v]=(0,i.useState)(!1),x=t.open??b,C=t.id??y;p[3]!==C||p[4]!==g?(s=g?{"aria-describedby":C}:{},p[3]=C,p[4]=g,p[5]=s):s=p[5];let j=s;p[6]===Symbol.for("react.memo_cache_sentinel")?(l=()=>v(!0),p[6]=l):l=p[6];let A=l;p[7]===Symbol.for("react.memo_cache_sentinel")?(d=()=>v(!1),p[7]=d):d=p[7];let f=d;return p[8]!==j?(c={...j,onPointerEnter:A,onPointerLeave:f,onFocus:A,onBlur:f},p[8]=j,p[9]=c):c=p[9],p[10]!==C||p[11]!==x||p[12]!==t?(m=(0,o.jsx)(r.m,{...t,open:x,id:C},"portal-tooltip"),p[10]=C,p[11]=x,p[12]=t,p[13]=m):m=p[13],p[14]!==b?(u=()=>v(!b),p[14]=b,p[15]=u):u=p[15],p[16]!==c||p[17]!==m||p[18]!==u?(h=[c,m,u],p[16]=c,p[17]=m,p[18]=u,p[19]=h):h=p[19],h}},85757:(e,t,n)=>{n.d(t,{b:()=>s});var o=n(74848),a=n(96901),i=n(46173),r=n(40846);let s=()=>(0,o.jsx)(r.C,{variant:"danger",ariaLabel:a.k.spammyBadgeTooltip,label:a.k.spammyBadge,testId:i.Y.spammyLabel});try{s.displayName||(s.displayName="SpammyBadge")}catch{}},94420:(e,t,n)=>{n.d(t,{p:()=>_});var o=n(74848),a=n(33643),i=n(21067),r=n(40260),s=n(69599),l=n(59464),d=n(50167),c=n(56038),m=n(30459),u=n(38621),h=n(26108),p=n(94236),g=n(5524),y=n(96540),b=n(46173),v=n(25641),x=n(20459);let C="CommentActions-module__CommentActionsIconButton--EOXv7";var j=n(59123),A=n(4551),f=n(14969),k=n(14406);function _({comment:e,commentAuthorLogin:t,editComment:n,onReplySelect:_,isMinimized:N=!1,isReply:w=!1,navigate:S,onBlock:I,onUnblock:R,onMinimize:B,hideComment:U,unhideComment:T,deleteComment:O,onSuccessfulBlock:D,commentRef:$,isDisabled:L=!1,showCopilotMenuItem:H=!1,pinComment:E,unpinComment:M}){let[F,V]=(0,y.useState)(!1),[z,P]=(0,y.useState)(null),[W,Y]=(0,y.useState)(!1),[G,K]=(0,y.useState)(!1),[q,Q]=(0,y.useState)(!1),[J,X]=(0,y.useState)(!1),{updateIssueWithCopilot:Z}=function(){let{sendAnalyticsEvent:e}=(0,m.s)();return{updateIssueWithCopilot:(0,y.useCallback)(t=>{let n=t.url.match(/\/issues\/(\d+)/),o=n?n[1]:"";if(!o)return;e("analytics.click","COPILOT_COMMENT_UPDATE_ISSUE_BUTTON",{commentId:t.id,issueNumber:o,repoNWO:`${t.repository.owner.login}/${t.repository.name}`});let a=function({ownerLogin:e,repoName:t,issueNumber:n,commentBody:o}){let a=new URLSearchParams({prompt:`Using the following feedback, update the issue body in @${e}/${t}/issues/${n} and also make sure to include a diff of your changes in your response. + + +${o} +`});return`${v.Jz}?${a.toString()}`}({ownerLogin:t.repository.owner.login,repoName:t.repository.name,issueNumber:o,commentBody:t.body});window.open(a,"_blank")},[e])}}(),{sendAnalyticsEvent:ee}=(0,m.s)(),et=H&&e.viewerCanUpdate,en=(0,y.useCallback)(n=>`${n.replace(/^(?!>)/gm,"> ")} + + _Originally posted by @${t} in [${e.referenceText}](${e.url})_`,[e.referenceText,t,e.url]),eo=e=>{(0,r.D)(e)},ea=(0,y.useCallback)(()=>{Z(e)},[Z,e]),ei=!!e.pendingMinimizeReason||e.isHidden,er=(0,y.useMemo)(()=>ei&&!N&&e.viewerCanSeeMinimizeButton?(0,o.jsx)(h.K,{"aria-label":"hide comment",variant:"invisible",onClick:()=>B?.(!0),icon:u.FoldIcon,size:"small",className:C}):null,[ei,N,B,e.viewerCanSeeMinimizeButton]),es=(0,y.useMemo)(()=>ei&&N&&e.viewerCanSeeUnminimizeButton?(0,o.jsx)(h.K,{"aria-label":"show comment",variant:"invisible",onClick:()=>B?.(!1),icon:u.UnfoldIcon,size:"small",className:C}):null,[ei,N,B,e.viewerCanSeeUnminimizeButton]),el=(0,y.useMemo)(()=>{if(!e.author)return;let n=c.cg?.location.origin;if(!n)return;let o=`content_url=${encodeURIComponent(e.url)}&report=${t}+(user)`;return`${n}/contact/report-content?${o}`},[t,e.author,e.url]),ed=(e.viewerCanReport||e.viewerCanReportToMaintainer)&&e.author,ec=function(e){let{viewerCanBlockFromOrg:t,pendingBlock:n,hasAuthor:o,pendingUnblock:a}=e;return!!o&&!n&&(!!a||t)}({viewerCanBlockFromOrg:e.viewerCanBlockFromOrg,pendingBlock:!!e.pendingBlock,pendingUnblock:!!e.pendingUnblock,hasAuthor:!!e.author}),em=function(e){let{viewerCanUnblockFromOrg:t,pendingBlock:n,hasAuthor:o,pendingUnblock:a}=e;return!!o&&!a&&(!!n||t)}({viewerCanUnblockFromOrg:e.viewerCanUnblockFromOrg,pendingBlock:!!e.pendingBlock,pendingUnblock:!!e.pendingUnblock,hasAuthor:!!e.author}),eu="boolean"!=typeof e.viewerCanReferenceInIssue||e.viewerCanReferenceInIssue,eh="boolean"!=typeof e.viewerCanQuoteReply||e.viewerCanQuoteReply,ep=!!e.pinnedBy,eg=e.viewerCanPin&&!ep&&void 0!==E,ey=e.viewerCanUnpin&&ep&&void 0!==M,eb={isCreateDialogOpen:W,setIsCreateDialogOpen:Y,navigate:S,optionConfig:{storageKeyPrefix:e.id,defaultDisplayMode:d.q.IssueCreation,scopedOrganization:e.repository.owner.login,issueCreateArguments:{initialValues:{body:en(e.body)},repository:{name:e.repository.name,owner:e.repository.owner.login}}}},ev=(0,a.C)(new Date(e.createdAt)),ex=`Actions for ${t}'s ${w?"reply":"comment"}, ${ev}`;return(0,o.jsxs)(o.Fragment,{children:[W&&(0,o.jsx)(l.or,{...eb}),G&&(0,o.jsx)(f._,{owner:e.repository.owner.login,ownerUrl:e.repository.owner.url,reportUrl:el,contentId:e.id,onClose:()=>K(!1),contentType:"comment"}),q&&e.author&&(0,o.jsx)(j.r5,{onBlock:I,onClose:()=>{D?.(),Q(!1)},organization:e.repository.owner,contentId:e.id,contentAuthor:e.author,contentUrl:e.url}),J&&e.author&&(0,o.jsx)(k.o,{onClose:()=>X(!1),onUnblock:R,organization:e.repository.owner,contentAuthor:e.author,contentId:e.id}),er,es,(0,o.jsxs)(p.W,{open:F,onOpenChange:t=>{if(t){let t=window.getSelection();t&&t.anchorNode?P({anchorNode:t.anchorNode,range:t.getRangeAt(0)}):P(null),!F&&(0,s.G7)("copilot_comment_update_issue_body")&&et&&ee("analytics.click","COMMENT_ACTIONS_MENU_OPENED",{commentId:e.id})}V(t)},children:[(0,o.jsx)(p.W.Anchor,{"data-testid":b.Y.commentHeaderHamburger,children:(0,o.jsx)(h.K,{disabled:L,size:"small",icon:u.KebabHorizontalIcon,variant:"invisible","aria-label":ex,tooltipDirection:"n",description:"More actions",className:C})}),(0,o.jsx)(p.W.Overlay,{children:(0,o.jsxs)(g.l,{"data-testid":b.Y.commentHeaderHamburgerOpen,children:[(0,s.G7)("copilot_comment_update_issue_body")&&et&&(0,o.jsxs)(o.Fragment,{children:[(0,o.jsxs)(g.l.Item,{onSelect:ea,children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.CopilotIcon,{})}),"Update issue",(0,o.jsx)(g.l.TrailingVisual,{children:(0,o.jsx)(u.ArrowUpRightIcon,{})})]}),(0,o.jsx)(g.l.Divider,{})]}),(0,o.jsxs)(g.l.Item,{inactiveText:""===e.url?"Comment must have a URL to be copied":void 0,onSelect:()=>eo(e.url),children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.LinkIcon,{})}),"Copy link"]}),(0,s.G7)("comment_viewer_copy_raw_markdown")?(0,o.jsxs)(g.l.Item,{inactiveText:""===e.body?"Comment must have content to be copied":void 0,onSelect:()=>eo(e.bodyForClipboard||e.body),children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.MarkdownIcon,{})}),"Copy Markdown"]}):null,(0,i.M3)()&&(0,o.jsxs)(o.Fragment,{children:[eh&&(0,o.jsxs)(g.l.Item,{onSelect:()=>{_((0,x.E)($?.current,z,e.body))},children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.QuoteIcon,{})}),"Quote reply"]}),eu&&(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(g.l.Divider,{}),(0,o.jsxs)(g.l.Item,{"data-testid":b.Y.commentMenuRefComment,onSelect:()=>Y(!0),className:"CommentActions-module__CommentActionsListItem--rBMCI",children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.IssueOpenedIcon,{})}),"Reference in a new issue"]})]})]}),(e.viewerCanUpdate||e.viewerCanMinimize||e.viewerCanPin||e.viewerCanUnpin||e.viewerCanDelete)&&(0,o.jsx)(g.l.Divider,{}),e.viewerCanUpdate&&(0,o.jsxs)(g.l.Item,{onSelect:()=>n(),children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.PencilIcon,{})}),"Edit"]}),eg&&(0,o.jsxs)(g.l.Item,{onSelect:()=>{E?.(e.id)},children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.PinIcon,{})}),"Pin"]}),ey&&(0,o.jsxs)(g.l.Item,{onSelect:()=>{M?.(e.id)},children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.PinSlashIcon,{})}),"Unpin"]}),e.viewerCanMinimize&&!ei&&(0,o.jsxs)(p.W,{children:[(0,o.jsx)(p.W.Anchor,{children:(0,o.jsxs)(g.l.Item,{children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.EyeClosedIcon,{})}),"Hide"]})}),(0,o.jsx)(p.W.Overlay,{children:(0,o.jsx)(g.l,{children:(0,o.jsx)(A.w,{onSelect:U,setMenuOpen:V})})})]}),e.viewerCanUnminimize&&ei&&(0,o.jsxs)(g.l.Item,{onSelect:T,children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.EyeIcon,{})})," ","Unhide"]}),e.viewerCanDelete&&(0,o.jsxs)(g.l.Item,{variant:"danger",onSelect:O,children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.TrashIcon,{})}),"Delete"]}),ed&&(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(g.l.Divider,{}),e.viewerCanReportToMaintainer?(0,o.jsxs)(g.l.Item,{onSelect:()=>{K(!0)},children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.ReportIcon,{})}),"Report content"]}):(0,o.jsxs)(g.l.LinkItem,{href:el,target:"_blank",children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.ReportIcon,{})}),"Report content"]})]}),(ec||em)&&!ed&&(0,o.jsx)(g.l.Divider,{}),ec&&(0,o.jsxs)(g.l.Item,{onSelect:()=>Q(!0),children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.BlockedIcon,{})}),"Block user"]}),em&&(0,o.jsxs)(g.l.Item,{onSelect:()=>X(!0),children:[(0,o.jsx)(g.l.LeadingVisual,{children:(0,o.jsx)(u.BlockedIcon,{})}),"Unblock user"]})]})})]})]})}try{_.displayName||(_.displayName="CommentActions")}catch{}},96760:(e,t,n)=>{n.d(t,{Bq:()=>a,Sp:()=>r,mU:()=>o,tD:()=>i});let o={issueComment:"react-issue-comment",commentsContainer:"react-comments-container",markdownBody:"markdown-body",issueBody:"react-issue-body"},a={issueCommentComposer:"react-issue-comment-composer"};function i(){var e,t;let n=document.querySelector(`${r(o.commentsContainer)} ${(e=a.issueCommentComposer,`#${e}`)}[data-inside-side-panel=true]`);return n?n:document.querySelector((t=a.issueCommentComposer,`#${t}`))}function r(e){return`.${e}`}},96901:(e,t,n)=>{n.d(t,{k:()=>o});let o={canNotComment:e=>e?`You do not have permissions to comment on this ${e}.`:"You do not have permissions to comment.",confirmations:{deleteCommentTitle:"Delete comment",deleteCommentContent:"Are you sure you'd like to delete this comment?",deleteCommentConfirmButtonContent:"Delete"},lowQualityCommentWarning:{title:"Consider using reactions instead",message:"To help keep issues focused, consider reacting or adding more details to your comment.",likeAction:"Like issue instead \u{1F44D}",reactedTitle:"Success",reactedMessage:"Added a \u{1F44D} to this issue.",likedAndSubscribedMessage:"Added a \u{1F44D} to this issue and subscribed to updates.",subscribeAction:"Subscribe",subscribedTitle:"Subscribed",subscribedMessage:"Subscribed to updates.",unsubscribeAction:"Unsubscribe",unsubscribedTitle:"Unsubscribed",unsubscribedMessage:"Unsubscribed from updates.",noActionsMessage:"To help keep issues focused, consider adding more details to your comment."},hiddenComment:"Hidden comment",hiddenCommentWithReason:"Hidden as",issueLockedToCollaborators:"This conversation has been locked and limited to collaborators.",repoArchived:"This repository has been archived.",sentViaEmail:"via email",commentAuthor:"Author",spammyBadge:"Spammy",spammyBadgeTooltip:"This user is marked as spammy. Their comments will only show in staff mode.",sponsorBadge:"Sponsor",newComment:"new Comment",newCommentPlaceholder:"Use Markdown to format your comment",commentSubjectAuthor:(e,t)=>`${e?"You are the":"This user is the"} author${t?` of this ${t}`:""}`,sponsor:(e,t)=>`${e}'s sponsor since ${t}`,noDescriptionProvided:"No description provided.",staleCommentErrorPrefix:"GraphQL error: STALE_DATA",issueConvertedToDiscussion:"Commenting has been disabled because this issue was converted to a",authorLabel:(e,t)=>`${e?t?"AI":"bot":"mannequin"}`}},97911:(e,t,n)=>{n.d(t,{N:()=>l});var o=n(74848),a=n(16522),i=n(38621),r=n(26108);n(96540);var s=n(74547);let l=e=>{let t,n=(0,a.c)(5),{ref:l,renderAnchorProps:d,reactionsAvailable:c}=e,m=c?s.t.react:s.t.reactionsUnavailable,u=!c;return n[0]!==l||n[1]!==d||n[2]!==m||n[3]!==u?(t=(0,o.jsx)(r.K,{size:"small",icon:i.SmileyIcon,...d,"aria-label":m,inactive:u,"aria-labelledby":void 0,className:"ReactionViewerAnchor-module__ReactionViewerAnchorButton--kb52r",ref:l}),n[0]=l,n[1]=d,n[2]=m,n[3]=u,n[4]=t):t=n[4],t};l.displayName="ReactionViewerAnchor"}}]); +//# sourceMappingURL=32816-a8051e669033.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/33727-b2e842173a7f.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/33727-b2e842173a7f.js" new file mode 100644 index 0000000..246058b --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/33727-b2e842173a7f.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:33727-b2e842173a7f.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[33727],{18150:(t,e,o)=>{o.d(e,{_:()=>a});var n=o(53482);function a(t,e,o){(0,n._)(t,e),e.set(t,o)}},29304:(t,e,o)=>{o.d(e,{_:()=>n});function n(t,e,o){if(!e.has(t))throw TypeError("attempted to "+o+" private field on non-instance");return e.get(t)}},35750:(t,e,o)=>{o.d(e,{_:()=>r});var n=o(50894),a=o(29304);function r(t,e){var o=(0,a._)(t,e,"get");return(0,n._)(t,o)}},39595:(t,e,o)=>{let n;o.d(e,{CF:()=>g,p_:()=>x,FB:()=>u,Se:()=>k,aC:()=>_,zV:()=>L});let a=new WeakSet,r=new WeakMap;function i(t=document){if(r.has(t))return r.get(t);let e=!1,o=new MutationObserver(t=>{for(let e of t)if("attributes"===e.type&&e.target instanceof Element)d(e.target);else if("childList"===e.type&&e.addedNodes.length)for(let t of e.addedNodes)t instanceof Element&&s(t)});o.observe(t,{childList:!0,subtree:!0,attributeFilter:["data-action"]});let n={get closed(){return e},unsubscribe(){e=!0,r.delete(t),o.disconnect()}};return r.set(t,n),n}function s(t){for(let e of t.querySelectorAll("[data-action]"))d(e);t instanceof Element&&t.hasAttribute("data-action")&&d(t)}function l(t){let e=t.currentTarget;for(let o of c(e))if(t.type===o.type){let n=e.closest(o.tag);a.has(n)&&"function"==typeof n[o.method]&&n[o.method](t);let r=e.getRootNode();if(r instanceof ShadowRoot&&a.has(r.host)&&r.host.matches(o.tag)){let e=r.host;"function"==typeof e[o.method]&&e[o.method](t)}}}function*c(t){for(let e of(t.getAttribute("data-action")||"").trim().split(/\s+/)){let t=e.lastIndexOf(":"),o=Math.max(0,e.lastIndexOf("#"))||e.length;yield{type:e.slice(0,t),tag:e.slice(t+1,o),method:e.slice(o+1)||"handleEvent"}}}function d(t){for(let e of c(t))t.addEventListener(e.type,l)}function u(t,e){let o=t.tagName.toLowerCase();if(t.shadowRoot){for(let n of t.shadowRoot.querySelectorAll(`[data-target~="${o}.${e}"]`))if(!n.closest(o))return n}for(let n of t.querySelectorAll(`[data-target~="${o}.${e}"]`))if(n.closest(o)===t)return n}let f=t=>String("symbol"==typeof t?t.description:t).replace(/([A-Z]($|[a-z]))/g,"-$1").replace(/--/g,"-").replace(/^-|-$/,"").toLowerCase(),h=(t,e="property")=>{let o=f(t);if(!o.includes("-"))throw new DOMException(`${e}: ${String(t)} is not a valid ${e} name`,"SyntaxError");return o},b="attr";function g(t,e){O(t,b).add(e)}let p=new WeakSet;function m(t,e){if(p.has(t))return;p.add(t);let o=Object.getPrototypeOf(t),n=o?.constructor?.attrPrefix??"data-";for(let a of(e||(e=O(o,b)),e)){let e=t[a],o=h(`${n}${a}`),r={configurable:!0,get(){return this.getAttribute(o)||""},set(t){this.setAttribute(o,t||"")}};"number"==typeof e?r={configurable:!0,get(){return Number(this.getAttribute(o)||0)},set(t){this.setAttribute(o,t)}}:"boolean"==typeof e&&(r={configurable:!0,get(){return this.hasAttribute(o)},set(t){this.toggleAttribute(o,t)}}),Object.defineProperty(t,a,r),a in t&&!t.hasAttribute(o)&&r.set.call(t,e)}}let y=new Map,w=new Promise(t=>{"loading"!==document.readyState?t():document.addEventListener("readystatechange",()=>t(),{once:!0})}),v=new Promise(t=>{let e=new AbortController;e.signal.addEventListener("abort",()=>t());let o={once:!0,passive:!0,signal:e.signal},n=()=>e.abort();document.addEventListener("mousedown",n,o),document.addEventListener("touchstart",n,o),document.addEventListener("keydown",n,o),document.addEventListener("pointerdown",n,o)}),A={ready:()=>w,firstInteraction:()=>v,visible:t=>new Promise(e=>{let o=new IntersectionObserver(t=>{for(let n of t)if(n.isIntersecting){e(),o.disconnect();return}},{rootMargin:"0px 0px 256px 0px",threshold:.01});for(let e of document.querySelectorAll(t))o.observe(e)})},C=new WeakMap;function E(t){cancelAnimationFrame(C.get(t)||0),C.set(t,requestAnimationFrame(()=>{for(let e of y.keys()){let o=t instanceof Element&&t.matches(e)?t:t.querySelector(e);if(customElements.get(e)||o){let n=o?.getAttribute("data-load-on")||"ready",a=n in A?A[n]:A.ready;for(let t of y.get(e)||[])a(e).then(t);y.delete(e),C.delete(t)}}}))}function k(t,e){for(let[o,n]of("string"==typeof t&&e&&(t={[t]:e}),Object.entries(t)))y.has(o)||y.set(o,new Set),y.get(o).add(n);S(document)}function S(t){n||(n=new MutationObserver(t=>{if(y.size)for(let e of t)for(let t of e.addedNodes)t instanceof Element&&E(t)})),E(t),n.observe(t,{subtree:!0,childList:!0})}let $=Symbol.for("catalyst");let CatalystDelegate=class CatalystDelegate{constructor(t){const e=this,o=t.prototype.connectedCallback;t.prototype.connectedCallback=function(){e.connectedCallback(this,o)};const n=t.prototype.disconnectedCallback;t.prototype.disconnectedCallback=function(){e.disconnectedCallback(this,n)};const a=t.prototype.attributeChangedCallback;t.prototype.attributeChangedCallback=function(t,o,n){e.attributeChangedCallback(this,t,o,n,a)};let r=t.observedAttributes||[];Object.defineProperty(t,"observedAttributes",{configurable:!0,get(){return e.observedAttributes(this,r)},set(t){r=t}}),function(t){let e=t.observedAttributes||[],o=t.attrPrefix??"data-",n=t=>h(`${o}${t}`);Object.defineProperty(t,"observedAttributes",{configurable:!0,get:()=>[...O(t.prototype,b)].map(n).concat(e),set(t){e=t}})}(t),function(t){let e=f(t.name).replace(/-element$/,"");try{window.customElements.define(e,t),window[t.name]=customElements.get(e)}catch(t){if(!(t instanceof DOMException&&"NotSupportedError"===t.name))throw t}}(t)}observedAttributes(t,e){return e}connectedCallback(t,e){var o,n;for(let e of(t.toggleAttribute("data-catalyst",!0),customElements.upgrade(t),t.querySelectorAll("template[data-shadowroot]")))e.parentElement===t&&t.attachShadow({mode:"closed"===e.getAttribute("data-shadowroot")?"closed":"open"}).append(e.content.cloneNode(!0));(m(t),a.add(t),t.shadowRoot&&(s(n=t.shadowRoot),i(n)),s(t),i(t.ownerDocument),e?.call(t),t.shadowRoot)&&(s(o=t.shadowRoot),i(o),S(t.shadowRoot))}disconnectedCallback(t,e){e?.call(t)}attributeChangedCallback(t,e,o,n,a){m(t),"data-catalyst"!==e&&a&&a.call(t,e,o,n)}};function O(t,e){if(!Object.prototype.hasOwnProperty.call(t,$)){let e=t[$],o=t[$]=new Map;if(e)for(let[t,n]of e)o.set(t,new Set(n))}let o=t[$];return o.has(e)||o.set(e,new Set),o.get(e)}function _(t,e){O(t,"target").add(e),Object.defineProperty(t,e,{configurable:!0,get(){return u(this,e)}})}function L(t,e){O(t,"targets").add(e),Object.defineProperty(t,e,{configurable:!0,get(){let t=this.tagName.toLowerCase(),o=[];if(this.shadowRoot)for(let n of this.shadowRoot.querySelectorAll(`[data-targets~="${t}.${e}"]`))n.closest(t)||o.push(n);for(let n of this.querySelectorAll(`[data-targets~="${t}.${e}"]`))n.closest(t)===this&&o.push(n);return o}})}function x(t){new CatalystDelegate(t)}},50894:(t,e,o)=>{o.d(e,{_:()=>n});function n(t,e){return e.get?e.get.call(t):e.value}},53482:(t,e,o)=>{o.d(e,{_:()=>n});function n(t,e){if(e.has(t))throw TypeError("Cannot initialize the same private elements twice on an object")}}}]); +//# sourceMappingURL=33727-3013b3e74109.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/33915-2fcb1ef9118e.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/33915-2fcb1ef9118e.js" new file mode 100644 index 0000000..21676cc --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/33915-2fcb1ef9118e.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:33915-2fcb1ef9118e.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[33915],{4076:(t,e,r)=>{r.d(e,{A:()=>p});var o=r(87385),n=r(5254),i=r(53098),a={};a["[object Float32Array]"]=a["[object Float64Array]"]=a["[object Int8Array]"]=a["[object Int16Array]"]=a["[object Int32Array]"]=a["[object Uint8Array]"]=a["[object Uint8ClampedArray]"]=a["[object Uint16Array]"]=a["[object Uint32Array]"]=!0,a["[object Arguments]"]=a["[object Array]"]=a["[object ArrayBuffer]"]=a["[object Boolean]"]=a["[object DataView]"]=a["[object Date]"]=a["[object Error]"]=a["[object Function]"]=a["[object Map]"]=a["[object Number]"]=a["[object Object]"]=a["[object RegExp]"]=a["[object Set]"]=a["[object String]"]=a["[object WeakMap]"]=!1;var s=r(52789),u=r(64841),c=u.A&&u.A.isTypedArray;let p=c?(0,s.A)(c):function(t){return(0,i.A)(t)&&(0,n.A)(t.length)&&!!a[(0,o.A)(t)]}},17299:(t,e,r)=>{r.d(e,{A:()=>y});var o,n=r(89610),i=r(41917).A["__core-js_shared__"],a=(o=/[^.]+$/.exec(i&&i.keys&&i.keys.IE_PROTO||""))?"Symbol(src)_1."+o:"",s=r(23149),u=r(81121),c=/^\[object .+?Constructor\]$/,p=Object.prototype,_=Function.prototype.toString,l=p.hasOwnProperty,h=RegExp("^"+_.call(l).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");let f=function(t){return!!(0,s.A)(t)&&(!a||!(a in t))&&((0,n.A)(t)?h:c).test((0,u.A)(t))},y=function(t,e){var r=null==t?void 0:t[e];return f(r)?r:void 0}},21738:(t,e,r)=>{r.d(e,{A:()=>l});var o=(0,r(17299).A)(Object,"create"),n=Object.prototype.hasOwnProperty,i=Object.prototype.hasOwnProperty;function a(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e{r.d(e,{A:()=>c});var o=r(87385),n=r(53098);let i=function(t){return(0,n.A)(t)&&"[object Arguments]"==(0,o.A)(t)};var a=Object.prototype,s=a.hasOwnProperty,u=a.propertyIsEnumerable;let c=i(function(){return arguments}())?i:function(t){return(0,n.A)(t)&&s.call(t,"callee")&&!u.call(t,"callee")}},36497:(t,e,r)=>{r.d(e,{A:()=>s});var o=r(66984);let n=function(t,e){for(var r=t.length;r--;)if((0,o.A)(t[r][0],e))return r;return -1};var i=Array.prototype.splice;function a(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e-1},a.prototype.set=function(t,e){var r=this.__data__,o=n(r,t);return o<0?(++this.size,r.push([t,e])):r[o][1]=e,this};let s=a},40367:(t,e,r)=>{r.d(e,{A:()=>o});let o=function(t,e){return function(r){return t(e(r))}}},43988:(t,e,r)=>{r.d(e,{A:()=>o});let o=r(41917).A.Uint8Array},52789:(t,e,r)=>{r.d(e,{A:()=>o});let o=function(t){return function(e){return t(e)}}},61140:(t,e,r)=>{r.d(e,{A:()=>p});let o=function(t,e){for(var r=-1,o=Array(t);++r{r.d(e,{A:()=>s});var o=r(72136),n="object"==typeof exports&&exports&&!exports.nodeType&&exports,i=n&&"object"==typeof module&&module&&!module.nodeType&&module,a=i&&i.exports===n&&o.A.process;let s=function(){try{var t=i&&i.require&&i.require("util").types;if(t)return t;return a&&a.binding&&a.binding("util")}catch(t){}}()},68335:(t,e,r)=>{r.d(e,{A:()=>i});var o=r(17299),n=r(41917);let i=(0,o.A)(n.A,"Map")},81121:(t,e,r)=>{r.d(e,{A:()=>n});var o=Function.prototype.toString;let n=function(t){if(null!=t){try{return o.call(t)}catch(t){}try{return t+""}catch(t){}}return""}},92049:(t,e,r)=>{r.d(e,{A:()=>o});let o=Array.isArray},97250:(t,e,r)=>{r.d(e,{A:()=>s});var o=r(36497),n=r(68335),i=r(21738);function a(t){var e=this.__data__=new o.A(t);this.size=e.size}a.prototype.clear=function(){this.__data__=new o.A,this.size=0},a.prototype.delete=function(t){var e=this.__data__,r=e.delete(t);return this.size=e.size,r},a.prototype.get=function(t){return this.__data__.get(t)},a.prototype.has=function(t){return this.__data__.has(t)},a.prototype.set=function(t,e){var r=this.__data__;if(r instanceof o.A){var a=r.__data__;if(!n.A||a.length<199)return a.push([t,e]),this.size=++r.size,this;r=this.__data__=new i.A(a)}return r.set(t,e),this.size=r.size,this};let s=a},97271:(t,e,r)=>{r.d(e,{A:()=>n});var o=Object.prototype;let n=function(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||o)}},99856:(t,e,r)=>{r.d(e,{A:()=>s});var o=r(41917),n="object"==typeof exports&&exports&&!exports.nodeType&&exports,i=n&&"object"==typeof module&&module&&!module.nodeType&&module,a=i&&i.exports===n?o.A.Buffer:void 0;let s=(a?a.isBuffer:void 0)||function(){return!1}}}]); +//# sourceMappingURL=33915-1b65893f304c.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/34580.aaf3fc5176becb7d72db.module.css" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/34580.aaf3fc5176becb7d72db.module.css" new file mode 100644 index 0000000..127929d --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/34580.aaf3fc5176becb7d72db.module.css" @@ -0,0 +1,2 @@ +.AccountSwitchDialog-module__dialogHeader--HKRNl{display:inline-block;font-size:var(--text-body-size-medium,14px);font-weight:var(--base-text-weight-medium,500);margin:0;max-width:100%;overflow:hidden;padding:var(--base-size-16) var(--base-size-16) 0;text-overflow:ellipsis}.AccountSwitchDialog-module__accountName--WgvHa{font-weight:var(--base-text-weight-semibold,600);white-space:nowrap}.AccountSwitchDialog-module__divider--gTxQY{display:block}.AccountSwitchDialog-module__popover--BiaO6{margin:var(--base-size-4) 0 0 0;position:absolute;right:var(--base-size-16);top:var(--base-size-48)}.AccountSwitchDialog-module__popoverContent--phlfC{padding:0;width:256px}.AccountSwitchDialog-module__popoverContent--phlfC:after,.AccountSwitchDialog-module__popoverContent--phlfC:before{display:none} +/*# sourceMappingURL=34580-8f870af4027b.js.map*/ \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/36562-dc6a1a3a2af4.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/36562-dc6a1a3a2af4.js" new file mode 100644 index 0000000..a4fc27a --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/36562-dc6a1a3a2af4.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:36562-dc6a1a3a2af4.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[36562,91707],{27552:(t,e,n)=>{n.d(e,{A:()=>s});let i=new WeakMap;let RemoteInputElement=class RemoteInputElement extends HTMLElement{constructor(){super();const t=r.bind(null,this,!0),e={currentQuery:null,oninput:function(t){let e;return function(n){clearTimeout(e),e=setTimeout(()=>{clearTimeout(e),t(n)},300)}}(e=>t(e)),fetch:t,controller:null};i.set(this,e)}static get observedAttributes(){return["src"]}attributeChangedCallback(t,e){e&&"src"===t&&r(this,!1)}connectedCallback(){let t=this.input;if(!t)return;t.setAttribute("autocomplete","off"),t.setAttribute("spellcheck","false");let e=i.get(this);e&&(t.addEventListener("focus",e.fetch),t.addEventListener("change",e.fetch),t.addEventListener("input",e.oninput))}disconnectedCallback(){let t=this.input;if(!t)return;let e=i.get(this);e&&(t.removeEventListener("focus",e.fetch),t.removeEventListener("change",e.fetch),t.removeEventListener("input",e.oninput))}get input(){let t=this.querySelector("input, textarea");return t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement?t:null}get src(){return this.getAttribute("src")||""}set src(t){this.setAttribute("src",t)}};async function r(t,e,n){let r,s=t.input;if(!s)return;let o=i.get(t);if(!o)return;let l=s.value;if(e&&o.currentQuery===l)return;o.currentQuery=l;let u=t.src;if(!u)return;let c=document.getElementById(t.getAttribute("aria-owns")||"");if(!c)return;let d=new URL(u,window.location.href),h=new URLSearchParams(d.search);h.append(t.getAttribute("param")||"q",l),d.search=h.toString(),o.controller?o.controller.abort():(t.dispatchEvent(new CustomEvent("loadstart")),t.setAttribute("loading","")),o.controller="AbortController"in window?new AbortController:{signal:null,abort(){}};let m="";try{r=await a(t,d.toString(),{signal:o.controller.signal,credentials:"same-origin",headers:{accept:"text/fragment+html"}}),m=await r.text(),t.removeAttribute("loading"),o.controller=null}catch(e){e instanceof Error&&"AbortError"!==e.name&&(t.removeAttribute("loading"),o.controller=null);return}r&&r.ok?(c.innerHTML=m,t.dispatchEvent(new CustomEvent("remote-input-success",{bubbles:!0,detail:{eventType:n?n.type:void 0}}))):t.dispatchEvent(new CustomEvent("remote-input-error",{bubbles:!0}))}async function a(t,e,n){try{let i=await fetch(e,n);return t.dispatchEvent(new CustomEvent("load")),t.dispatchEvent(new CustomEvent("loadend")),i}catch(e){throw e instanceof Error&&(null==e?void 0:e.name)!=="AbortError"&&(t.dispatchEvent(new CustomEvent("error")),t.dispatchEvent(new CustomEvent("loadend"))),e}}let s=RemoteInputElement;window.customElements.get("remote-input")||(window.RemoteInputElement=RemoteInputElement,window.customElements.define("remote-input",RemoteInputElement))},35908:(t,e,n)=>{n.d(e,{A:()=>Combobox});let Combobox=class Combobox{constructor(t,e,{tabInsertsSuggestions:n,firstOptionSelectionMode:i,scrollIntoViewOptions:a}={}){this.input=t,this.list=e,this.tabInsertsSuggestions=null==n||n,this.firstOptionSelectionMode=null!=i?i:"none",this.scrollIntoViewOptions=null!=a?a:{block:"nearest",inline:"nearest"},this.isComposing=!1,e.id||(e.id=`combobox-${Math.random().toString().slice(2,6)}`),this.ctrlBindings=!!navigator.userAgent.match(/Macintosh/),this.keyboardEventHandler=t=>(function(t,e){if(!t.shiftKey&&!t.metaKey&&!t.altKey&&(e.ctrlBindings||!t.ctrlKey)&&!e.isComposing)switch(t.key){case"Enter":r(e.input,e.list)&&t.preventDefault();break;case"Tab":e.tabInsertsSuggestions&&r(e.input,e.list)&&t.preventDefault();break;case"Escape":e.clearSelection();break;case"ArrowDown":e.navigate(1),t.preventDefault();break;case"ArrowUp":e.navigate(-1),t.preventDefault();break;case"n":e.ctrlBindings&&t.ctrlKey&&(e.navigate(1),t.preventDefault());break;case"p":e.ctrlBindings&&t.ctrlKey&&(e.navigate(-1),t.preventDefault());break;default:if(t.ctrlKey)break;e.resetSelection()}})(t,this),this.compositionEventHandler=t=>{var e,n;return e=t,n=this,void(n.isComposing="compositionstart"===e.type,document.getElementById(n.input.getAttribute("aria-controls")||"")&&n.clearSelection())},this.inputHandler=this.clearSelection.bind(this),t.setAttribute("role","combobox"),t.setAttribute("aria-controls",e.id),t.setAttribute("aria-expanded","false"),t.setAttribute("aria-autocomplete","list"),t.setAttribute("aria-haspopup","listbox")}destroy(){this.clearSelection(),this.stop(),this.input.removeAttribute("role"),this.input.removeAttribute("aria-controls"),this.input.removeAttribute("aria-expanded"),this.input.removeAttribute("aria-autocomplete"),this.input.removeAttribute("aria-haspopup")}start(){this.input.setAttribute("aria-expanded","true"),this.input.addEventListener("compositionstart",this.compositionEventHandler),this.input.addEventListener("compositionend",this.compositionEventHandler),this.input.addEventListener("input",this.inputHandler),this.input.addEventListener("keydown",this.keyboardEventHandler),this.list.addEventListener("click",i),this.resetSelection()}stop(){this.clearSelection(),this.input.setAttribute("aria-expanded","false"),this.input.removeEventListener("compositionstart",this.compositionEventHandler),this.input.removeEventListener("compositionend",this.compositionEventHandler),this.input.removeEventListener("input",this.inputHandler),this.input.removeEventListener("keydown",this.keyboardEventHandler),this.list.removeEventListener("click",i)}indicateDefaultOption(){var t;"active"===this.firstOptionSelectionMode?null==(t=Array.from(this.list.querySelectorAll('[role="option"]:not([aria-disabled="true"])')).filter(a)[0])||t.setAttribute("data-combobox-option-default","true"):"selected"===this.firstOptionSelectionMode&&this.navigate(1)}navigate(t=1){let e=Array.from(this.list.querySelectorAll('[aria-selected="true"]')).filter(a)[0],n=Array.from(this.list.querySelectorAll('[role="option"]')).filter(a),i=n.indexOf(e);if(i===n.length-1&&1===t||0===i&&-1===t){this.clearSelection(),this.input.focus();return}let r=1===t?0:n.length-1;if(e&&i>=0){let e=i+t;e>=0&&e0||t.offsetHeight>0)}},62044:(t,e,n)=>{n.d(e,{A:()=>a});let FilterInputElement=class FilterInputElement extends HTMLElement{constructor(){super(),this.currentQuery=null,this.filter=null,this.debounceInputChange=function(t){let e;return function(){clearTimeout(e),e=setTimeout(()=>{clearTimeout(e),t()},300)}}(()=>i(this,!0)),this.boundFilterResults=()=>{i(this,!1)}}static get observedAttributes(){return["aria-owns"]}attributeChangedCallback(t,e){e&&"aria-owns"===t&&i(this,!1)}connectedCallback(){let t=this.input;t&&(t.setAttribute("autocomplete","off"),t.setAttribute("spellcheck","false"),t.addEventListener("focus",this.boundFilterResults),t.addEventListener("change",this.boundFilterResults),t.addEventListener("input",this.debounceInputChange))}disconnectedCallback(){let t=this.input;t&&(t.removeEventListener("focus",this.boundFilterResults),t.removeEventListener("change",this.boundFilterResults),t.removeEventListener("input",this.debounceInputChange))}get input(){let t=this.querySelector("input");return t instanceof HTMLInputElement?t:null}reset(){let t=this.input;t&&(t.value="",t.dispatchEvent(new Event("change",{bubbles:!0})))}};async function i(t,e=!1){var n,a,s,o,l;let u,c,d,h=t.input;if(!h)return;let m=h.value.trim(),f=t.getAttribute("aria-owns");if(!f)return;let p=document.getElementById(f);if(!p)return;let v=p.hasAttribute("data-filter-list")?p:p.querySelector("[data-filter-list]");if(!v||(t.dispatchEvent(new CustomEvent("filter-input-start",{bubbles:!0})),e&&t.currentQuery===m))return;t.currentQuery=m;let b=t.filter||r,g=v.childElementCount,E=0,A=!1;for(let t of Array.from(v.children)){if(!(t instanceof HTMLElement))continue;let e=(((n=t).querySelector("[data-filter-item-text]")||n).textContent||"").trim(),i=b(t,e,m);!0===i.hideNew&&(A=i.hideNew),t.hidden=!i.match,i.match&&E++}let w=p.querySelector("[data-filter-new-item]"),y=!!w&&m.length>0&&!A;w instanceof HTMLElement&&(w.hidden=!y,y&&(a=w,s=m,(u=a.querySelector("[data-filter-new-item-text]"))&&(u.textContent=s),((c=a.querySelector("[data-filter-new-item-value]"))instanceof HTMLInputElement||c instanceof HTMLButtonElement)&&(c.value=s))),o=p,l=E>0||y,(d=o.querySelector("[data-filter-empty-state]"))instanceof HTMLElement&&(d.hidden=l),t.dispatchEvent(new CustomEvent("filter-input-updated",{bubbles:!0,detail:{count:E,total:g}}))}function r(t,e,n){return{match:-1!==e.toLowerCase().indexOf(n.toLowerCase()),hideNew:e===n}}let a=FilterInputElement;window.customElements.get("filter-input")||(window.FilterInputElement=FilterInputElement,window.customElements.define("filter-input",FilterInputElement))},91385:(t,e,n)=>{n.d(e,{Xq:()=>o,ai:()=>r,fN:()=>s,qA:()=>l});var i=-1/0,r=1/0;function a(t,e,n,r){for(var a=t.length,s=e.length,o=t.toLowerCase(),l=e.toLowerCase(),u=function(t){for(var e=t.length,n=Array(e),i="/",r=0;r1024)return i;var o=Array(n),l=Array(n);return a(t,e,o,l),l[n-1][s-1]}function o(t,e){var n=t.length,r=e.length,s=Array(n);if(!n||!r)return s;if(n===r){for(var o=0;o1024)return s;var l=Array(n),u=Array(n);a(t,e,l,u);for(var c=!1,o=n-1,d=r-1;o>=0;o--)for(;d>=0;d--)if(l[o][d]!==i&&(c||l[o][d]===u[o][d])){c=o&&d&&u[o][d]===l[o-1][d-1]+1,s[o]=d--;break}return s}function l(t,e){t=t.toLowerCase(),e=e.toLowerCase();for(var n=t.length,i=0,r=0;i{n.r(e),n.d(e,{Attachment:()=>Attachment,default:()=>m});let Attachment=class Attachment{constructor(t,e){this.file=t,this.directory=e,this.state="pending",this.id=null,this.href=null,this.name=null,this.percent=0}static traverse(t,e){var n,a;return n=t,e&&(a=n).items&&Array.from(a.items).some(t=>{let e=t.webkitGetAsEntry&&t.webkitGetAsEntry();return e&&e.isDirectory})?r("",Array.from(n.items).map(t=>t.webkitGetAsEntry()).filter(t=>null!=t)):Promise.resolve(i(Array.from(n.files||[])).map(t=>new Attachment(t)))}static from(t){let e=[];for(let n of t)if(n instanceof File)e.push(new Attachment(n));else if(n instanceof Attachment)e.push(n);else throw Error("Unexpected type");return e}get fullPath(){return this.directory?`${this.directory}/${this.file.name}`:this.file.name}isImage(){return["image/gif","image/png","image/jpg","image/jpeg","image/svg+xml"].indexOf(this.file.type)>-1}isVideo(){return["video/mp4","video/quicktime"].indexOf(this.file.type)>-1}saving(t){if("pending"!==this.state&&"saving"!==this.state)throw Error(`Unexpected transition from ${this.state} to saving`);this.state="saving",this.percent=t}saved(t){var e,n,i;if("pending"!==this.state&&"saving"!==this.state)throw Error(`Unexpected transition from ${this.state} to saved`);this.state="saved",this.id=null!=(e=null==t?void 0:t.id)?e:null,this.href=null!=(n=null==t?void 0:t.href)?n:null,this.name=null!=(i=null==t?void 0:t.name)?i:null}isPending(){return"pending"===this.state}isSaving(){return"saving"===this.state}isSaved(){return"saved"===this.state}};function i(t){return Array.from(t).filter(t=>!t.name.startsWith("."))}async function r(t,e){let n=[];for(let a of i(e))if(a.isDirectory)n.push(...await r(a.fullPath,await function(t){return new Promise(function(e,n){let i=[],r=t.createReader(),a=()=>{r.readEntries(t=>{t.length>0?(i.push(...t),a()):e(i)},n)};a()})}(a)));else{let e=await function(t){return new Promise(function(e,n){t.file(e,n)})}(a);n.push(new Attachment(e,t))}return n}let FileAttachmentElement=class FileAttachmentElement extends HTMLElement{connectedCallback(){this.addEventListener("dragenter",o),this.addEventListener("dragover",o),this.addEventListener("dragleave",l),this.addEventListener("drop",u),this.addEventListener("paste",d),this.addEventListener("change",h)}disconnectedCallback(){this.removeEventListener("dragenter",o),this.removeEventListener("dragover",o),this.removeEventListener("dragleave",l),this.removeEventListener("drop",u),this.removeEventListener("paste",d),this.removeEventListener("change",h)}get directory(){return this.hasAttribute("directory")}set directory(t){t?this.setAttribute("directory",""):this.removeAttribute("directory")}async attach(t){let e=t instanceof DataTransfer?await Attachment.traverse(t,this.directory):Attachment.from(t);this.dispatchEvent(new CustomEvent("file-attachment-accept",{bubbles:!0,cancelable:!0,detail:{attachments:e}}))&&e.length&&this.dispatchEvent(new CustomEvent("file-attachment-accepted",{bubbles:!0,detail:{attachments:e}}))}};function a(t){return Array.from(t.types).indexOf("Files")>=0}let s=null;function o(t){let e=t.currentTarget;s&&clearTimeout(s),s=window.setTimeout(()=>e.removeAttribute("hover"),200);let n=t.dataTransfer;n&&a(n)&&(n.dropEffect="copy",e.setAttribute("hover",""),t.preventDefault())}function l(t){t.dataTransfer&&(t.dataTransfer.dropEffect="none"),t.currentTarget.removeAttribute("hover"),t.stopPropagation(),t.preventDefault()}function u(t){let e=t.currentTarget;if(!(e instanceof FileAttachmentElement))return;e.removeAttribute("hover");let n=t.dataTransfer;n&&a(n)&&(e.attach(n),t.stopPropagation(),t.preventDefault())}let c=/^image\/(gif|png|jpeg)$/;function d(t){if(!t.clipboardData||!t.clipboardData.items)return;let e=t.currentTarget;if(!(e instanceof FileAttachmentElement))return;let n=function(t){for(let e of t)if("file"===e.kind&&c.test(e.type))return e.getAsFile();return null}(t.clipboardData.items);n&&(e.attach([n]),t.preventDefault())}function h(t){let e=t.currentTarget;if(!(e instanceof FileAttachmentElement))return;let n=t.target;if(!(n instanceof HTMLInputElement))return;let i=e.getAttribute("input");if(i&&n.id!==i)return;let r=n.files;r&&0!==r.length&&(e.attach(r),n.value="")}window.customElements.get("file-attachment")||(window.FileAttachmentElement=FileAttachmentElement,window.customElements.define("file-attachment",FileAttachmentElement));let m=FileAttachmentElement}}]); +//# sourceMappingURL=36562-685af29b7c7f.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/37294-b151415d2fb0.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/37294-b151415d2fb0.js" new file mode 100644 index 0000000..c6bbb73 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/37294-b151415d2fb0.js" @@ -0,0 +1,7 @@ +performance.mark("js-parse-end:37294-b151415d2fb0.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[37294],{8891:(e,t,a)=>{a.d(t,{L:()=>BlackbirdPermissionCaches});var s=a(50467),i=a(21067),r=a(96379),o=a(51987);let BlackbirdPermissionCaches=class BlackbirdPermissionCaches{async setupWarmCachesLoop(){(0,i.M3)()&&(BlackbirdPermissionCaches.warmCachesLoopSetup?await BlackbirdPermissionCaches.warm:(BlackbirdPermissionCaches.warmCachesLoopSetup=!0,await this.warmCaches()))}async warmCaches(){let e=54e4;try{let t=await (0,r.lS)("/search/warm_blackbird_caches",{headers:{Accept:"application/json",...(0,o.kt)()}}),a=await t.json();e=new Date(a.userCacheExpiresAt).getTime()-Date.now()-3e4,(isNaN(e)||e<=5)&&(e=3e4)}catch{}BlackbirdPermissionCaches.warmResolve(),setTimeout(()=>{this.warmCaches()},e)}};(0,s._)(BlackbirdPermissionCaches,"warmCachesLoopSetup",!1),(0,s._)(BlackbirdPermissionCaches,"warmResolve",void 0),(0,s._)(BlackbirdPermissionCaches,"warm",new Promise(e=>{BlackbirdPermissionCaches.warmResolve=e}))},14095:(e,t,a)=>{a.d(t,{U1:()=>m,Z2:()=>d});var s=a(50467),i=a(53419),r=a(97665),o=a(97286),n=a(96379),l=a(96540),c=a(25641),u=a(51213),h=a(35247);function d(e,t,a){let s=(0,r.jE)(),d=(0,l.useCallback)(()=>s.invalidateQueries({queryKey:["copilot-chat","entitlement"]}),[s]),{data:m}=(0,o.I)({queryKey:["copilot-chat","entitlement"],queryFn:async()=>{let e=await (0,n.lS)("/github-copilot/chat/entitlement");if(!e.ok)throw Error(`Failed to retrieve Copilot chat entitlement (${e.status} on ${e.url})`);return await e.json()},enabled:e===u.mF.LicensedLimited||e===u.mF.LicensedFull&&h.W.premiumRequestQuotasEnabled,placeholderData:{licenseType:e,plan:t,quotas:a},staleTime:3e5}),p=m?.licenseType??e,y=m?.plan??t,f=m?.quotas??a,k=(0,l.useCallback)(t=>{(e===u.mF.LicensedLimited||e===u.mF.LicensedFull&&h.W.premiumRequestQuotasEnabled)&&(h.W.reduceChatQuotaChecks&&p===u.mF.LicensedLimited&&f?.remaining.chatPercentage!==void 0&&f.remaining.chatPercentage>c.fG||p===u.mF.LicensedFull&&f?.remaining.premiumInteractionsPercentage!==void 0&&f.remaining.premiumInteractionsPercentage>c.mF||(d(),(0,i.BI)("dotcom_chat.activate",{target:"ENTITLEMENTS_RELOAD",origin:t})))},[e,d,p,f?.remaining.chatPercentage,f?.remaining.premiumInteractionsPercentage]);return[new CopilotChatEntitlement(p,y,m?.quotas,m?.trial),k]}let CopilotChatEntitlement=class CopilotChatEntitlement{isLicensed(){return this.licenseType&&this.licenseType!==u.mF.Unlicensed}canPurchaseAdditionalQuota(){return this.licenseType!==u.mF.LicensedLimited&&h.W.premiumRequestQuotasEnabled&&(this.plan===u.UH.IndividualPro||this.plan===u.UH.IndividualProPlus)}canUpgradePlan(){return this.licenseType===u.mF.LicensedLimited||h.W.premiumRequestQuotasEnabled&&this.plan===u.UH.IndividualPro}chatQuotaRemaining(){return h.W.premiumRequestQuotasEnabled&&this.quotas?.remaining.chatPercentage!==void 0?this.quotas?.remaining.chatPercentage??0:this.quotas?.remaining.chat??0}premiumInteractionsQuotaRemaining(){return this.quotas?.remaining.premiumInteractionsPercentage??0}eligibleForTrial(){return this.trial?.eligible??!1}constructor(e,t,a,i){(0,s._)(this,"licenseType",void 0),(0,s._)(this,"plan",void 0),(0,s._)(this,"quotas",void 0),(0,s._)(this,"trial",void 0),this.licenseType=e,this.plan=t,this.quotas=a,this.trial=i}};function m(e){return!!(e&&e!==u.UH.IndividualFree)}},14457:(e,t,a)=>{a.d(t,{d:()=>ApiCache});var s=a(50467);let ApiCache=class ApiCache{async get(...e){let t=e.join(this.separator),a=this.cache.get(t);if(a)return a;{let a=this.fetchFn(...e);return this.cache.set(t,a),(await a).ok||this.cache.delete(t),a}}constructor(e){(0,s._)(this,"separator","-!-"),(0,s._)(this,"cache",new Map),(0,s._)(this,"fetchFn",void 0),this.fetchFn=e}}},20139:(e,t,a)=>{a.d(t,{k:()=>CopilotChatService});var s=a(50467),i=a(8891),r=a(65411),o=a(59672),n=a(96379),l=a(14457),c=a(25641),u=a(35247),h=a(79064),d=a(57872),m=a(44902),p=a(46062);let y=new Set(["snippet","file","symbol","repository"]);let CopilotChatService=class CopilotChatService{async fetchThreads(e={}){let t=new URLSearchParams;"string"==typeof e.name&&t.set("name",e.name);let a=`/threads?${t.toString()}`,s=await this.makeCAPIRequest(a,"GET");if(!s.ok)return s;let i=(await s.json()).threads||[];return{status:s.status,ok:!0,payload:i}}async fetchSharedThreads(){let e=await this.makeCAPIRequest("/threads?shared","GET");if(!e.ok)return e;let t=(await e.json()).threads||[];return{status:e.status,ok:!0,payload:t}}async fetchLatestThread(e){let t=new URLSearchParams;"string"==typeof e&&t.set("thread_id",e);let a=await this.makeCAPIRequest(`/threads/latest?${t.toString()}`,"GET");if(!a.ok)return a;let s=(await a.json()).thread;return{status:a.status,ok:!0,payload:s}}async createThread(e,t){let a={custom_copilot_id:e?.id,custom_copilot_owner:e?.owner,scope_id:t},s=await this.makeCAPIRequest("/threads","POST",a);if(!s.ok)return s;let i=(await s.json()).thread;return{status:s.status,ok:!0,payload:i}}async deleteThread(e){let t=await this.makeCAPIRequest(`/threads/${e}`,"DELETE");return t.ok?{status:t.status,ok:!0,payload:null}:t}async deleteAllThreads(e){let t=await this.makeCAPIRequest("/threads","DELETE",e);return t.ok?{status:t.status,ok:!0,payload:null}:t}async renameThread(e,t){let a=await this.makeCAPIRequest(`/threads/${e}/name`,"PATCH",{generate:!1,name:t});if(!a.ok)return a;let s=(await a.json()).name||"";return{status:a.status,ok:!0,payload:s}}async clearThread(e){let t=await this.makeCAPIRequest(`/threads/${e}/clear`,"PATCH");return t.ok?{status:t.status,ok:!0,payload:null}:t}async shareThread(e,t){let a=await this.makeCAPIRequest(`/threads/${e}/share`,"PATCH",{shared_message_id:t});if(!a.ok)return a;let s=(await a.json()).thread;return{status:a.status,ok:!0,payload:s}}async unshareThread(e){let t=await this.makeCAPIRequest(`/threads/${e}/unshare`,"PATCH");if(!t.ok)return t;let a=(await t.json()).thread;return{status:t.status,ok:!0,payload:a}}async unshareAllThreads(){let e=await this.makeCAPIRequest("/threads/unshare","POST");return e.ok?{status:e.status,ok:!0,payload:null}:e}async continueSharedThread(e){let t=await this.makeCAPIRequest(`/shared/${e}/duplicate`,"POST");return t.ok?{status:200,ok:!0,payload:await t.json()}:t}async generateThreadName(e){let t=await this.makeCAPIRequest(`/threads/${e}/name`,"PATCH",{generate:!0,name:""});if(!t.ok)return t;let a=(await t.json()).name||"";return{status:t.status,ok:!0,payload:a}}async getSystemPrompt(e){let t=await this.makeCAPIRequest(`/system_prompt/${e}`,"GET");if(!t.ok)return t;let a=await t.json();return{status:t.status,ok:!0,payload:a}}async listMessages(e){if(this.listMessagesCache?.thread.id===e)return{status:200,ok:!0,payload:this.listMessagesCache};let t=await this.makeCAPIRequest(`/threads/${e}/messages`,"GET");return this.handleListMessages(t,!0)}async listSharedThreadMessages(e){let t=await this.makeCAPIRequest(`/shared/${e}/messages`,"GET");return this.handleListMessages(t,!1)}async handleListMessages(e,t){if(!e.ok)if(!(404===e.status&&e.response?.headers.has("Content-Type"))||"application/json"!==e.response.headers.get("Content-Type"))return e;else{let t=await e.response.json();return{...e,payload:t}}let a=await e.json();return t&&(Array.isArray(a.messages)&&(a.messages=a.messages.map(e=>(e.references=(0,d.q)(e.references),e))),this.listMessagesCache=a),{status:e.status,ok:!0,payload:a}}async createMessage(e,t,a,s,i,r,o){this.listMessagesCache=void 0;let n=await this.makeCAPIRequest(`/threads/${e}/messages`,"POST",{content:t,mediaContent:a,intent:s,references:i,currentURL:window.location.href,customInstructions:r,model:o,settings:h.Jt.settings??void 0});if(!n.ok)return n;let l=(await n.json()).message;return{status:n.status,ok:!0,payload:l}}async createMessageStreaming({threadID:e,messageID:t,content:a,mediaContent:s,intent:i,mode:r,references:o,context:n,confirmations:l,customInstructions:c,model:d,customCopilotID:m,parentMessageID:p,signal:y,skillOptions:k}){this.listMessagesCache=void 0,m&&(r="custom-copilots");let g=u.W.domPageContext&&"immersive"!==r&&"custom-copilots"!==r?function(){let e=(document.querySelector("main")||document.body).cloneNode(!0);for(let t of["script","style","svg","iframe","textarea",".js-header-wrapper",".footer",".sr-only",".react-code-file-contents"])for(let a of e.querySelectorAll(t))a.remove();for(let t of e.querySelectorAll("*")){if(!t.textContent?.trim()){t.remove();continue}let e=window.getComputedStyle(t);("none"===e.display||"hidden"===e.visibility)&&t.remove()}let t=e.querySelectorAll("p, h1, h2, h3, h4, li, td, th, blockquote, pre, code:not(pre code)"),a=[];for(let e of t){let t=f(e);t&&a.push(t)}let s=a.join(` +`);return(s.length<=16e3?s:`${s.substring(0,16e3)} +Content was truncated. Use the API to get full content.`).replace(/\s{2,}/g," ").trim()}():void 0,w={responseMessageID:t,content:a,intent:i,references:o,context:n,currentURL:window.location.href,streaming:!0,confirmations:l,customInstructions:c,model:d,mode:r,settings:h.Jt.settings??void 0,customCopilotID:m?.id,customCopilotOwner:m?.owner,parentMessageID:p,mediaContent:s,skillOptions:k,pageContext:g,requestTrace:h.Jt.getTracingRequestedFlag()},T=this.processQueryParams(new URLSearchParams(window.location.search)),C=await this.makeCAPIRequest(`/threads/${e}/messages?${T.toString()}`,"POST",w,!0,void 0,y);return C.ok?{status:C.status,ok:!0,response:C}:C}processQueryParams(e){let t=["instruction_prompt"],a=new URLSearchParams;for(let[s,i]of e)t.includes(s)&&a.append(s,i);return a}async listModels(){let e=await this.makeCAPIRequest("/models","GET",void 0,!1,"");if(!e.ok)return e;let t=await e.json();return{status:e.status,ok:!0,payload:t.data}}async setModelPolicyState(e,t){let a=await this.makeCAPIRequest(`/models/${e}/policy`,"POST",{state:t},!1,"");if(!a.ok)return Promise.reject(Error(`Failed to update model policy state: ${a.status}`))}async getSimpleCompletion(e,t){let a=(0,p.wv)(),s=t??a.id,i=await this.makeCAPIRequest("/chat/completions","POST",{messages:[{role:"user",content:e}],selectedModel:s,stream:!1},!1,"");if(!i.ok)return i;let r=(await i.json()).choices[0]?.message?.content||"";return{status:i.status,ok:!0,payload:r}}async sendFeedback({feedback:e,feedbackChoice:t,messageId:a,threadId:s,textResponse:i}){let r=await this.makeDotcomRequest(`${this.urlPathPrefix}/feedback`,"POST",{feedback:e,feedback_choice:t,message_id:a,thread_id:s,text_response:i});return r.ok?{status:r.status,ok:!0,payload:null}:r}async listRepoFiles(e,t=!1){let a=(0,o.ClY)({repo:e,commitOid:e.commitOID,includeDirectories:t});return this.repoFilesCache.get(a)}async querySymbols(e,t){return await this.blackbirdCaches.setupWarmCachesLoop(),this.querySymbolsCache.get(e.ownerLogin,e.name,t)}async fetchImplicitContext(e,t,a){let s=await this.makeDotcomRequest(`${this.urlPathPrefix}/implicit-context/${t}/${a}/${encodeURIComponent(e)}`,"GET");return s.ok?{status:s.status,ok:s.ok,payload:await s.json()}:s}async fetchReferenceDetails(e,t,a,s){let i=await this.makeDotcomRequest(`/copilot/chat/reference/${e}/${t}/${a}/${s}`,"GET");return i.ok?{status:i.status,ok:i.ok,payload:await i.json()}:i}getCachedRepo(e){return this.repoDetailsCache.get(e)}async fetchRepo(e){let t;if(this.repoDetailsCache.has(e))t=this.repoDetailsCache.get(e);else{let a=await this.makeDotcomRequest(`${this.urlPathPrefix}/repositories/${e}`,"GET");if(!a.ok)return a;t=await a.json(),this.repoDetailsCache.set(e,t)}return{status:200,ok:!0,payload:t}}async fetchFileContents(e,t,a){let s=await this.makeDotcomRequest(`${this.urlPathPrefix}/file_contents/${e}/${t}/${a}`,"GET");return s.ok?{status:200,ok:!0,payload:await s.json()}:s}async fetchFileContentsNwo(e,t,a,s){let i;return(i=s?await this.makeDotcomRequest(`${this.urlPathPrefix}/file_contents_nwo/${e}/${t}/${s}/${a}`,"GET"):await this.makeDotcomRequest(`${this.urlPathPrefix}/file_contents_nwo/${e}/${t}/${a}`,"GET")).ok?{status:200,ok:!0,payload:await i.json()}:i}async listAgents(e){let t=await (0,n.lS)(e);if(!t.ok)return{status:t.status,ok:!1,error:c.nN[t.status]||c.DW};let a=await t.json();return{status:t.status,ok:t.ok,payload:a}}async listCustomCopilots(){let e=await (0,n.lS)(`${this.urlPathPrefix}/custom_copilots`);if(!e.ok)return{status:e.status,ok:!1,error:c.nN[e.status]||c.DW};let t=await e.json();return{status:e.status,ok:!0,payload:t}}async fetchCopilotSpace(e){let t,{owner:a,id:s}=e;t=a?`${this.urlPathPrefix}/custom_copilots/${a}/${s}`:`${this.urlPathPrefix}/custom_copilots/${s}`;let i=await (0,n.lS)(t);if(!i.ok)return{status:i.status,ok:!1,error:c.nN[i.status]||c.DW};let r=await i.json();return{status:i.status,ok:!0,payload:r}}async fetchCustomAgents(e,t){let a=await this.makeCAPIRequest(`/agents/swe/custom-agents/${e}/${t}`,"GET",void 0,void 0,"");if(!a.ok)return 404===a.status?{status:a.status,ok:!0,payload:[]}:{status:a.status,ok:!1,error:c.nN[a.status]||c.DW};let s=(await a.json()).agents;return{status:a.status,ok:!0,payload:s}}async hydrateReference(e){if(!y.has(e.type))return{status:204,ok:!0,payload:e};let t=await this.makeDotcomRequest(`${this.urlPathPrefix}/reference_details`,"POST",{reference:e});return t.ok?{status:t.status,ok:t.ok,payload:await t.json()}:t}async fetchLanguageForFileReference(e){let{repoOwner:t,repoName:a}=e,s=window.btoa(e.path),i=(0,o.RT3)({ownerLogin:t,name:a},s,!0),r=await this.makeDotcomRequest(i,"GET");return r.ok?{status:r.status,ok:r.ok,payload:await r.json()}:r}async fetchAutocompleteIssues(e,t){let a=await this.makeDotcomRequest(`/copilot/chat/autocomplete/issues?repo=${e}&q=${t}`,"GET");return a.ok?await a.json():[]}async fetchAutocompletePullRequests(e,t){let a=await this.makeDotcomRequest(`/copilot/chat/autocomplete/pulls?repo=${e}&q=${t}`,"GET");return a.ok?await a.json():[]}async fetchAutocompleteDiscussions(e,t){let a=await this.makeDotcomRequest(`/copilot/chat/autocomplete/discussions?repo=${e}&q=${t}`,"GET");return a.ok?await a.json():[]}async makeDotcomRequest(e,t,a){let s={};for(let e of(0,m.f)()){let t=e.split("="),a=t[0]?.replaceAll("_","-"),i="1";t.length>1&&(i=t[1]),s[`X-Experiment-${a}`]=i}let i=await this.copilotAuthTokenProvider.getAuthToken();s["X-Copilot-Api-Token"]=i.value;try{let i=await (0,n.lS)(e,{method:t,body:a,headers:s});if(i.ok)return i;return{status:i.status,ok:!1,error:c.nN[i.status]||c.DW}}catch{return{status:500,ok:!1,error:c.DW}}}get directConnectConfiguration(){return{integrationID:"copilot-chat"}}async makeCAPIRequest(e,t,a,s=!1,i="/github/chat",r){let o=this.apiURL,n=await this.copilotAuthTokenProvider.getAuthToken();return await (0,c.p)({basePath:o+i,path:e,method:t,body:a,streamingResponse:s,authToken:n,integrationId:this.directConnectConfiguration.integrationID,realIp:this.realIp,signal:r,apiVersion:this.apiVersion})}async fetchTracesByThreadID(e,t){let a=`/thread/${e}`;t&&(a+=`?sharedID=${encodeURIComponent(t)}`);let s=await this.makeCAPIRequest(a,"GET",void 0,!1,"/traces");if(!s.ok)return s;let i=await this.processTracesResponse(s);return{status:s.status,ok:!0,payload:i}}async fetchCoffeTrace(e){let t=await this.makeCAPIRequest(`/evaluation/thread/${e}`,"GET",void 0,!1,"/traces");if(!t.ok)return t;let a=await this.processTracesResponse(t);return{status:t.status,ok:!0,payload:a}}async processTracesResponse(e){let t=await e.json(),a=[];for(let e of t)e.spans&&Array.isArray(e.spans)&&e.id&&a.push({id:e.id,spans:e.spans});return a}async deleteTrace(e,t){let a=await this.makeCAPIRequest(`/thread/${e}/trace/${t}`,"DELETE",void 0,!1,"/traces");return a.ok?{status:a.status,ok:!0,payload:null}:a}async deleteTracesForThread(e){let t=await this.makeCAPIRequest(`/thread/${e}`,"DELETE",void 0,!1,"/traces");return t.ok?{status:t.status,ok:!0,payload:null}:t}constructor(e,t,a,o){(0,s._)(this,"apiURL",void 0),(0,s._)(this,"urlPathPrefix","/github-copilot/chat"),(0,s._)(this,"repoDetailsCache",new Map),(0,s._)(this,"listMessagesCache",void 0),(0,s._)(this,"copilotAuthTokenProvider",void 0),(0,s._)(this,"blackbirdCaches",new i.L),(0,s._)(this,"realIp",void 0),(0,s._)(this,"apiVersion",void 0),(0,s._)(this,"listRepoFilesImpl",async e=>{let t=await this.makeDotcomRequest(e,"GET");return t.ok?{status:200,ok:!0,payload:await t.json()}:t}),(0,s._)(this,"repoFilesCache",new l.d(this.listRepoFilesImpl)),(0,s._)(this,"querySymbolsImpl",async(e,t,a)=>{let s=await this.makeDotcomRequest(`/search/suggestions?query=repo:${e}/${t} ${a}`,"GET");return s.ok?{status:200,ok:!0,payload:(await s.json()).suggestions.filter(e=>"SUGGESTION_KIND_SYMBOL"===e.kind)}:s}),(0,s._)(this,"querySymbolsCache",new l.d(this.querySymbolsImpl)),this.apiURL=e,this.copilotAuthTokenProvider=new r.JR(t.map(e=>e.id)),this.realIp=a||"",this.apiVersion=o}};let f=e=>{let t=e.tagName.toLowerCase(),a=e.textContent;if(!a||!a.trim())return null;let s=a.trim();switch(t){case"h1":return`# ${s}`;case"h2":return`## ${s}`;case"h3":return`### ${s}`;case"h4":return`#### ${s}`;case"p":default:return s;case"li":return`\u{2022} ${s}`;case"code":return`\`${s}\``;case"pre":return`\`\`\` +${s} +\`\`\``;case"blockquote":return`> ${s}`}}},37294:(e,t,a)=>{a.d(t,{hh:()=>p,jR:()=>f,Kf:()=>y});var s=a(74848),i=a(16522),r=a(33535),o=a(96540),n=a(60803),l=a(60460);let c=new Map,u=new Set;function h(e,t){switch(t.type){case"SET_TRACE_INFO":{let{visible:a,spanNode:s,messageId:i,threadId:r,actualTraceId:o,traces:n}=t.traceInfo,l=e.traceInfo?.traces||c,h=e.traceInfo?.loadedThreadIds||u;if(n&&n.size>0){let e=new Map(l);for(let[t,a]of n)e.set(t,a);l=e}else if(s&&i&&r){let e=new Map(l),t=new Date(s.startTime).toISOString();e.set(i,{spanNode:s,threadId:r,actualTraceId:o||"",timestamp:t}),l=e}if(r&&!h.has(r)){let e=new Set(h);e.add(r),h=e}let d=void 0!==a?a:e.traceInfo?.visible||!1;return{...e,traceInfo:{visible:d,traces:l,loadedThreadIds:h}}}case"REMOVE_TRACE":{let a=new Map(e.traceInfo?.traces||[]);for(let[e,s]of a)if(s.actualTraceId===t.traceID){a.delete(e);break}return{...e,traceInfo:{visible:e.traceInfo?.visible||!1,traces:a,loadedThreadIds:e.traceInfo?.loadedThreadIds||new Set}}}case"REMOVE_TRACES_FOR_THREAD":{let a=new Map(e.traceInfo?.traces||[]);for(let[e,s]of a)s.threadId===t.threadID&&a.delete(e);return{...e,traceInfo:{visible:e.traceInfo?.visible||!1,traces:a,loadedThreadIds:e.traceInfo?.loadedThreadIds||new Set}}}}}let d=(0,o.createContext)(null),m=(0,o.createContext)(null);function p(e){let t,a,c,u,p,y,f=(0,i.c)(20),{apiURL:k,children:g,ssoOrgs:w,testReducerState:T}=e;f[0]!==T?(t=T||{},f[0]=T,f[1]=t):t=f[1];let C=t,[v,P]=(0,o.useReducer)(h,C),[I,_]=(0,r.XG)(v);return f[2]!==_||f[3]!==v||f[4]!==I.current.value?(a=()=>{v!==I.current.value&&_(v)},f[2]=_,f[3]=v,f[4]=I.current.value,f[5]=a):a=f[5],f[6]!==_||f[7]!==v||f[8]!==I?(c=[v,I,_],f[6]=_,f[7]=v,f[8]=I,f[9]=c):c=f[9],(0,o.useLayoutEffect)(a,c),f[10]!==k||f[11]!==g||f[12]!==w?(u=(0,s.jsx)(l.Q,{apiURL:k,dispatch:P,ssoOrgs:w,children:g}),f[10]=k,f[11]=g,f[12]=w,f[13]=u):u=f[13],f[14]!==I||f[15]!==u?(p=(0,s.jsx)(m,{value:P,children:(0,s.jsx)(n.n,{value:I,children:u})}),f[14]=I,f[15]=u,f[16]=p):p=f[16],f[17]!==v||f[18]!==p?(y=(0,s.jsx)(d,{value:v,children:p}),f[17]=v,f[18]=p,f[19]=y):y=f[19],y}function y(){let e=(0,o.use)(d);if(!e)throw Error("useTraceState must be used within a TraceContext");return e}function f(){return(0,o.use)(m)}try{d.displayName||(d.displayName="TraceStateContext")}catch{}try{m.displayName||(m.displayName="TraceDispatchContext")}catch{}try{p.displayName||(p.displayName="TraceProvider")}catch{}},46062:(e,t,a)=>{a.d(t,{GF:()=>u,QA:()=>l,ZL:()=>p,eW:()=>d,fZ:()=>h,wv:()=>c});var s=a(79184),i=a(51213),r=a(35247);let o="/images/modules/marketplace/models/families/openai-logo.svg",n=new Map([["Azure OpenAI",o],["OpenAI",o],["Anthropic","/images/modules/marketplace/models/families/anthropic.svg"],["Google","/images/modules/marketplace/models/families/gemini.svg"],["xAI","/images/modules/marketplace/models/families/xai.svg"]]),l="copilot-base";function c(){return{capabilities:{family:"gpt-4.1",limits:{max_prompt_tokens:128e3,vision:{supported_media_types:["image/jpeg","image/png","image/webp","image/gif"]}},supports:{parallel_tool_calls:!0,tool_calls:!0},tokenizer:"o200k_base",type:"chat"},id:"gpt-4.1",name:"GPT-4.1",displayName:"GPT-4.1",model_picker_enabled:!0,preview:!1,vendor:"OpenAI",logoURL:o,isThirdParty:!1,hasLimitedCapabilities:!1,version:"gpt-4.1-2025-04-14"}}function u(e){let{plan:t,premiumInteractionsQuotaExceeded:a,overagesEnabled:i}=(0,s.xR)();return h(e,t,a,i)}function h(e,t,a,s){var n,l;let u;return r.W.forceLegacyChatDefaultModel?{capabilities:{family:"gpt-4o",limits:{max_prompt_tokens:2e4,vision:{supported_media_types:["image/jpeg","image/png","image/webp","image/gif"]}},supports:{parallel_tool_calls:!0,tool_calls:!0},tokenizer:"o200k_base",type:"chat"},id:"gpt-4o",name:"GPT 4o",version:"gpt-4o-2024-05-13",displayName:"GPT 4o",vendor:"Azure OpenAI",logoURL:o,hasLimitedCapabilities:!1,preview:!1,isThirdParty:!1,model_picker_enabled:!0}:(n=!!a,l=!!s,(u=r.W.premiumRequestQuotasEnabled&&t!==i.UH.IndividualFree&&n&&!l?e?.find(e=>!0===e.is_chat_fallback):e?.find(e=>!0===e.is_chat_default))||c())}function d(e){return(e??[c()]).map(m).filter(e=>!!e).filter(e=>e.model_picker_enabled)}function m(e){var t,a,s;if("chat"!==e.capabilities.type||!((t=e).model_picker_enabled&&(!t.policy||"enabled"===t.policy.state||t.policy.terms)))return null;let i=n.get(e.vendor);return"xAI"===e.vendor&&null!==document.querySelector('[data-color-mode="dark"]')&&(i="/images/modules/marketplace/models/families/xai-dark.svg"),{...e,displayName:function(e){for(let t of y)if(e.name.endsWith(t))return e.name.replace(t,"").trim();return e.name}(e),hasLimitedCapabilities:(a=e,s=r.W.copilotChatO1Tools,"o1-ga"===a.capabilities.family?!s:"o3"===a.capabilities.family||!a.capabilities.supports.tool_calls),isThirdParty:"Azure OpenAI"!==e.vendor,logoURL:i}}function p(e){return null!=e.custom_model}let y=["(Beta)","(Preview)"]},57872:(e,t,a)=>{a.d(t,{q:()=>s});function s(e){return Array.isArray(e)?e.filter(e=>!("refOrigin"in e&&"custom_copilot"===e.refOrigin)&&!("type"in e&&"custom-instructions"===e.type)):e}},60460:(e,t,a)=>{a.d(t,{Q:()=>m,y:()=>p});var s=a(74848),i=a(16522),r=a(96540),o=a(60803),n=a(50467),l=a(82518),c=a(20139),u=a(35247),h=a(63828);let TraceManager=class TraceManager{async fetchAndLoadTraces(e,t){if(!u.W.requestTracing||!(0,l.Xl)())return;let a=this.getTraceState();if(!a.traceInfo?.loadedThreadIds?.has(e))try{let s=await this.service.fetchTracesByThreadID(e,t);s.ok&&s.payload.length>0?this.addTracesToState(a,s,e):this.dispatch({type:"SET_TRACE_INFO",traceInfo:{threadId:e}})}catch{}}addTracesToState(e,t,a){let s=new Map(e.traceInfo?.traces||[]);for(let e of t.payload)for(let[,t]of(0,h.r)(e.spans).entries()){let i=new Date(t.startTime).toISOString(),r=`${a}:${i}`;s.set(r,{spanNode:t,threadId:a,actualTraceId:e.id,timestamp:i})}this.dispatch({type:"SET_TRACE_INFO",traceInfo:{traces:s,threadId:a}})}async fetchCoffeTrace(e){if(!u.W.requestTracing||!(0,l.Xl)())return{ok:!1,status:403,error:"Tracing not available"};let t=this.getTraceState(),a=await this.service.fetchCoffeTrace(e);if(a.ok&&a.payload.length>0)return this.addTracesToState(t,a,e),a;throw Error(`Failed to load COFFE trace: ${a.status}`)}async deleteTraceSpansForGivenThread(e){let t=await this.service.deleteTracesForThread(e);return t.ok&&this.dispatch({type:"REMOVE_TRACES_FOR_THREAD",threadID:e}),t}async deleteTrace(e,t){let a=await this.service.deleteTrace(e,t);return a.ok&&this.dispatch({type:"REMOVE_TRACE",traceID:t}),a}constructor(e,t,a,s){(0,n._)(this,"dispatch",void 0),(0,n._)(this,"service",void 0),(0,n._)(this,"getTraceState",void 0),(0,n._)(this,"showTraceDisplay",async(e,t)=>{e&&t&&await this.fetchAndLoadTraces(t),this.dispatch({type:"SET_TRACE_INFO",traceInfo:{visible:e,threadId:t??void 0}})}),this.dispatch=e,this.service=new c.k(a,s),this.getTraceState=t}};let d=(0,r.createContext)(null);function m(e){let t,a,r=(0,i.c)(8),{apiURL:n,children:l,dispatch:c,ssoOrgs:u}=e,h=(0,o.c)();r[0]!==n||r[1]!==c||r[2]!==h||r[3]!==u?(t=new TraceManager(c,h,n,u),r[0]=n,r[1]=c,r[2]=h,r[3]=u,r[4]=t):t=r[4];let m=t;return r[5]!==l||r[6]!==m?(a=(0,s.jsx)(d,{value:m,children:l}),r[5]=l,r[6]=m,r[7]=a):a=r[7],a}function p(){let e=(0,r.use)(d);if(null===e)throw Error("useTraceManager must be used within a TraceManagerProvider");return e}try{d.displayName||(d.displayName="TraceManagerContext")}catch{}try{m.displayName||(m.displayName="TraceManagerProvider")}catch{}},60803:(e,t,a)=>{a.d(t,{c:()=>l,n:()=>n});var s=a(74848),i=a(16522),r=a(96540);let o=(0,r.createContext)(null);function n(e){let t,a=(0,i.c)(3),{children:r,value:n}=e;return a[0]!==r||a[1]!==n?(t=(0,s.jsx)(o,{value:n,children:r}),a[0]=r,a[1]=n,a[2]=t):t=a[2],t}function l(){let e=(0,r.use)(o);if(!e||!e.current)throw Error("useGetTraceState can only be used inside a TraceProvider");return(0,r.useCallback)(()=>e.current.value,[e])}try{o.displayName||(o.displayName="ObservableTraceStateContext")}catch{}try{n.displayName||(n.displayName="ObservableTraceStateProvider")}catch{}},63828:(e,t,a)=>{a.d(t,{r:()=>s});function s(e){let t=new Map,a=[];return e.map(e=>{let s={name:e.name,spanId:e.spanId,attributes:e.attributes,startTime:e.startTime,endTime:e.endTime,children:[],sessionId:e.sessionId,userId:e.userId,input:e.input,output:e.output,metadata:e.metadata};t.set(s.spanId,s);let i=e.parentId&&t.get(e.parentId);return i?i.children.push(s):a.push(s),s}),a}},79184:(e,t,a)=>{a.d(t,{$d:()=>h,xR:()=>d});var s=a(74848),i=a(16522),r=a(69599),o=a(96540),n=a(14095),l=a(51213),c=a(35247);let u=(0,o.createContext)(void 0);function h(e){let t,a,o,h,d,m,p,y,f,k=(0,i.c)(30),{children:g,initialLicenseType:w,initialPlan:T,initialQuotas:C}=e,[v,P]=(0,n.Z2)(w,T,C),I=v.licenseType,_=v.plan??null;k[0]!==v?(t=v.chatQuotaRemaining()??1/0,k[0]=v,k[1]=t):t=k[1];let R=t;k[2]!==v?(a=v.premiumInteractionsQuotaRemaining()??1/0,k[2]=v,k[3]=a):a=k[3];let b=a;k[4]!==v.quotas?(o=v.quotas?.resetDate?new Date(v.quotas.resetDate).toLocaleDateString("en-US",{year:"numeric",month:"long",day:"numeric"}):"",k[4]=v.quotas,k[5]=o):o=k[5];let q=o;k[6]===Symbol.for("react.memo_cache_sentinel")?(h=(0,r.G7)("copilot_simulate_quota_exceeded"),k[6]=h):h=k[6];let A=h,E=A||I===l.mF.LicensedLimited;k[7]!==v?(d=v.canPurchaseAdditionalQuota(),k[7]=v,k[8]=d):d=k[8];let S=d;k[9]!==v?(m=v.canUpgradePlan(),k[9]=v,k[10]=m):m=k[10];let $=m,L=A||E&&R<=0,D=c.W.premiumRequestQuotasEnabled&&!E&&b<=0,j=v.quotas?.overagesEnabled??!1;k[11]!==v?(p=v.eligibleForTrial(),k[11]=v,k[12]=p):p=k[12];let F=p;k[13]!==S||k[14]!==$||k[15]!==L||k[16]!==R||k[17]!==F||k[18]!==E||k[19]!==I||k[20]!==j||k[21]!==_||k[22]!==b||k[23]!==D||k[24]!==P||k[25]!==q?(y={licenseType:I,chatQuotaRemaining:R,premiumChatQuotaRemaining:b,resetDate:q,isLicensedLimited:E,chatQuotaExceeded:L,premiumInteractionsQuotaExceeded:D,reloadQuota:P,plan:_,canPurchaseAdditionalQuota:S,canUpgradePlan:$,overagesEnabled:j,eligibleForTrial:F},k[13]=S,k[14]=$,k[15]=L,k[16]=R,k[17]=F,k[18]=E,k[19]=I,k[20]=j,k[21]=_,k[22]=b,k[23]=D,k[24]=P,k[25]=q,k[26]=y):y=k[26];let x=y;return k[27]!==g||k[28]!==x?(f=(0,s.jsx)(u,{value:x,children:g}),k[27]=g,k[28]=x,k[29]=f):f=k[29],f}let d=()=>{let e=(0,o.use)(u);if(!e)throw Error("useEntitlement must be used within EntitlementProvider");return e};try{u.displayName||(u.displayName="EntitlementContext")}catch{}try{h.displayName||(h.displayName="EntitlementProvider")}catch{}}}]); +//# sourceMappingURL=37294-6138207e33b5.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/37911-925bc4afa4f7.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/37911-925bc4afa4f7.js" new file mode 100644 index 0000000..3887f71 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/37911-925bc4afa4f7.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:37911-925bc4afa4f7.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[2817,37911,57727,96315],{31635:(e,t,n)=>{n.d(t,{AQ:()=>a,Cg:()=>r,Me:()=>s,N3:()=>i,Tt:()=>o,xN:()=>c});function o(e,t){var n={};for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&0>t.indexOf(o)&&(n[o]=e[o]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var r=0,o=Object.getOwnPropertySymbols(e);rt.indexOf(o[r])&&Object.prototype.propertyIsEnumerable.call(e,o[r])&&(n[o[r]]=e[o[r]]);return n}function r(e,t,n,o){var r,i=arguments.length,a=i<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,n,o);else for(var s=e.length-1;s>=0;s--)(r=e[s])&&(a=(i<3?r(a):i>3?r(t,n,a):r(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a}function i(e){return this instanceof i?(this.v=e,this):new i(e)}function a(e,t,n){if(!Symbol.asyncIterator)throw TypeError("Symbol.asyncIterator is not defined.");var o,r=n.apply(e,t||[]),a=[];return o=Object.create(("function"==typeof AsyncIterator?AsyncIterator:Object).prototype),s("next"),s("throw"),s("return",function(e){return function(t){return Promise.resolve(t).then(e,u)}}),o[Symbol.asyncIterator]=function(){return this},o;function s(e,t){r[e]&&(o[e]=function(t){return new Promise(function(n,o){a.push([e,t,n,o])>1||c(e,t)})},t&&(o[e]=t(o[e])))}function c(e,t){try{var n;(n=r[e](t)).value instanceof i?Promise.resolve(n.value.v).then(l,u):f(a[0][2],n)}catch(e){f(a[0][3],e)}}function l(e){c("next",e)}function u(e){c("throw",e)}function f(e,t){e(t),a.shift(),a.length&&c(a[0][0],a[0][1])}}function s(e){var t,n;return t={},o("next"),o("throw",function(e){throw e}),o("return"),t[Symbol.iterator]=function(){return this},t;function o(o,r){t[o]=e[o]?function(t){return(n=!n)?{value:i(e[o](t)),done:!1}:r?r(t):t}:r}}function c(e){if(!Symbol.asyncIterator)throw TypeError("Symbol.asyncIterator is not defined.");var t,n=e[Symbol.asyncIterator];return n?n.call(e):(e=function(e){var t="function"==typeof Symbol&&Symbol.iterator,n=t&&e[t],o=0;if(n)return n.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&o>=e.length&&(e=void 0),{value:e&&e[o++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}(e),t={},o("next"),o("throw"),o("return"),t[Symbol.asyncIterator]=function(){return this},t);function o(n){t[n]=e[n]&&function(t){return new Promise(function(o,r){var i,a,s;i=o,a=r,s=(t=e[n](t)).done,Promise.resolve(t.value).then(function(e){i({value:e,done:s})},a)})}}}"function"==typeof SuppressedError&&SuppressedError},39595:(e,t,n)=>{let o;n.d(t,{CF:()=>b,p_:()=>I,FB:()=>f,Se:()=>A,aC:()=>C,zV:()=>j});let r=new WeakSet,i=new WeakMap;function a(e=document){if(i.has(e))return i.get(e);let t=!1,n=new MutationObserver(e=>{for(let t of e)if("attributes"===t.type&&t.target instanceof Element)u(t.target);else if("childList"===t.type&&t.addedNodes.length)for(let e of t.addedNodes)e instanceof Element&&s(e)});n.observe(e,{childList:!0,subtree:!0,attributeFilter:["data-action"]});let o={get closed(){return t},unsubscribe(){t=!0,i.delete(e),n.disconnect()}};return i.set(e,o),o}function s(e){for(let t of e.querySelectorAll("[data-action]"))u(t);e instanceof Element&&e.hasAttribute("data-action")&&u(e)}function c(e){let t=e.currentTarget;for(let n of l(t))if(e.type===n.type){let o=t.closest(n.tag);r.has(o)&&"function"==typeof o[n.method]&&o[n.method](e);let i=t.getRootNode();if(i instanceof ShadowRoot&&r.has(i.host)&&i.host.matches(n.tag)){let t=i.host;"function"==typeof t[n.method]&&t[n.method](e)}}}function*l(e){for(let t of(e.getAttribute("data-action")||"").trim().split(/\s+/)){let e=t.lastIndexOf(":"),n=Math.max(0,t.lastIndexOf("#"))||t.length;yield{type:t.slice(0,e),tag:t.slice(e+1,n),method:t.slice(n+1)||"handleEvent"}}}function u(e){for(let t of l(e))e.addEventListener(t.type,c)}function f(e,t){let n=e.tagName.toLowerCase();if(e.shadowRoot){for(let o of e.shadowRoot.querySelectorAll(`[data-target~="${n}.${t}"]`))if(!o.closest(n))return o}for(let o of e.querySelectorAll(`[data-target~="${n}.${t}"]`))if(o.closest(n)===e)return o}let d=e=>String("symbol"==typeof e?e.description:e).replace(/([A-Z]($|[a-z]))/g,"-$1").replace(/--/g,"-").replace(/^-|-$/,"").toLowerCase(),h=(e,t="property")=>{let n=d(e);if(!n.includes("-"))throw new DOMException(`${t}: ${String(e)} is not a valid ${t} name`,"SyntaxError");return n},p="attr";function b(e,t){P(e,p).add(t)}let y=new WeakSet;function g(e,t){if(y.has(e))return;y.add(e);let n=Object.getPrototypeOf(e),o=n?.constructor?.attrPrefix??"data-";for(let r of(t||(t=P(n,p)),t)){let t=e[r],n=h(`${o}${r}`),i={configurable:!0,get(){return this.getAttribute(n)||""},set(e){this.setAttribute(n,e||"")}};"number"==typeof t?i={configurable:!0,get(){return Number(this.getAttribute(n)||0)},set(e){this.setAttribute(n,e)}}:"boolean"==typeof t&&(i={configurable:!0,get(){return this.hasAttribute(n)},set(e){this.toggleAttribute(n,e)}}),Object.defineProperty(e,r,i),r in e&&!e.hasAttribute(n)&&i.set.call(e,t)}}let m=new Map,v=new Promise(e=>{"loading"!==document.readyState?e():document.addEventListener("readystatechange",()=>e(),{once:!0})}),w=new Promise(e=>{let t=new AbortController;t.signal.addEventListener("abort",()=>e());let n={once:!0,passive:!0,signal:t.signal},o=()=>t.abort();document.addEventListener("mousedown",o,n),document.addEventListener("touchstart",o,n),document.addEventListener("keydown",o,n),document.addEventListener("pointerdown",o,n)}),S={ready:()=>v,firstInteraction:()=>w,visible:e=>new Promise(t=>{let n=new IntersectionObserver(e=>{for(let o of e)if(o.isIntersecting){t(),n.disconnect();return}},{rootMargin:"0px 0px 256px 0px",threshold:.01});for(let t of document.querySelectorAll(e))n.observe(t)})},O=new WeakMap;function x(e){cancelAnimationFrame(O.get(e)||0),O.set(e,requestAnimationFrame(()=>{for(let t of m.keys()){let n=e instanceof Element&&e.matches(t)?e:e.querySelector(t);if(customElements.get(t)||n){let o=n?.getAttribute("data-load-on")||"ready",r=o in S?S[o]:S.ready;for(let e of m.get(t)||[])r(t).then(e);m.delete(t),O.delete(e)}}}))}function A(e,t){for(let[n,o]of("string"==typeof e&&t&&(e={[e]:t}),Object.entries(e)))m.has(n)||m.set(n,new Set),m.get(n).add(o);E(document)}function E(e){o||(o=new MutationObserver(e=>{if(m.size)for(let t of e)for(let e of t.addedNodes)e instanceof Element&&x(e)})),x(e),o.observe(e,{subtree:!0,childList:!0})}let k=Symbol.for("catalyst");let CatalystDelegate=class CatalystDelegate{constructor(e){const t=this,n=e.prototype.connectedCallback;e.prototype.connectedCallback=function(){t.connectedCallback(this,n)};const o=e.prototype.disconnectedCallback;e.prototype.disconnectedCallback=function(){t.disconnectedCallback(this,o)};const r=e.prototype.attributeChangedCallback;e.prototype.attributeChangedCallback=function(e,n,o){t.attributeChangedCallback(this,e,n,o,r)};let i=e.observedAttributes||[];Object.defineProperty(e,"observedAttributes",{configurable:!0,get(){return t.observedAttributes(this,i)},set(e){i=e}}),function(e){let t=e.observedAttributes||[],n=e.attrPrefix??"data-",o=e=>h(`${n}${e}`);Object.defineProperty(e,"observedAttributes",{configurable:!0,get:()=>[...P(e.prototype,p)].map(o).concat(t),set(e){t=e}})}(e),function(e){let t=d(e.name).replace(/-element$/,"");try{window.customElements.define(t,e),window[e.name]=customElements.get(t)}catch(e){if(!(e instanceof DOMException&&"NotSupportedError"===e.name))throw e}}(e)}observedAttributes(e,t){return t}connectedCallback(e,t){var n,o;for(let t of(e.toggleAttribute("data-catalyst",!0),customElements.upgrade(e),e.querySelectorAll("template[data-shadowroot]")))t.parentElement===e&&e.attachShadow({mode:"closed"===t.getAttribute("data-shadowroot")?"closed":"open"}).append(t.content.cloneNode(!0));(g(e),r.add(e),e.shadowRoot&&(s(o=e.shadowRoot),a(o)),s(e),a(e.ownerDocument),t?.call(e),e.shadowRoot)&&(s(n=e.shadowRoot),a(n),E(e.shadowRoot))}disconnectedCallback(e,t){t?.call(e)}attributeChangedCallback(e,t,n,o,r){g(e),"data-catalyst"!==t&&r&&r.call(e,t,n,o)}};function P(e,t){if(!Object.prototype.hasOwnProperty.call(e,k)){let t=e[k],n=e[k]=new Map;if(t)for(let[e,o]of t)n.set(e,new Set(o))}let n=e[k];return n.has(t)||n.set(t,new Set),n.get(t)}function C(e,t){P(e,"target").add(t),Object.defineProperty(e,t,{configurable:!0,get(){return f(this,t)}})}function j(e,t){P(e,"targets").add(t),Object.defineProperty(e,t,{configurable:!0,get(){let e=this.tagName.toLowerCase(),n=[];if(this.shadowRoot)for(let o of this.shadowRoot.querySelectorAll(`[data-targets~="${e}.${t}"]`))o.closest(e)||n.push(o);for(let o of this.querySelectorAll(`[data-targets~="${e}.${t}"]`))o.closest(e)===this&&n.push(o);return n}})}function I(e){new CatalystDelegate(e)}},50467:(e,t,n)=>{n.d(t,{_:()=>o});function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},97797:(e,t,n)=>{function o(){if(!(this instanceof o))return new o;this.size=0,this.uid=0,this.selectors=[],this.selectorObjects={},this.indexes=Object.create(this.indexes),this.activeIndexes=[]}n.d(t,{h:()=>k,on:()=>E});var r,i=window.document.documentElement,a=i.matches||i.webkitMatchesSelector||i.mozMatchesSelector||i.oMatchesSelector||i.msMatchesSelector;o.prototype.matchesSelector=function(e,t){return a.call(e,t)},o.prototype.querySelectorAll=function(e,t){return t.querySelectorAll(e)},o.prototype.indexes=[];var s=/^#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;o.prototype.indexes.push({name:"ID",selector:function(e){var t;if(t=e.match(s))return t[0].slice(1)},element:function(e){if(e.id)return[e.id]}});var c=/^\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;o.prototype.indexes.push({name:"CLASS",selector:function(e){var t;if(t=e.match(c))return t[0].slice(1)},element:function(e){var t=e.className;if(t){if("string"==typeof t)return t.split(/\s/);else if("object"==typeof t&&"baseVal"in t)return t.baseVal.split(/\s/)}}});var l=/^((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;o.prototype.indexes.push({name:"TAG",selector:function(e){var t;if(t=e.match(l))return t[0].toUpperCase()},element:function(e){return[e.nodeName.toUpperCase()]}}),o.prototype.indexes.default={name:"UNIVERSAL",selector:function(){return!0},element:function(){return[!0]}},r="function"==typeof window.Map?window.Map:function(){function e(){this.map={}}return e.prototype.get=function(e){return this.map[e+" "]},e.prototype.set=function(e,t){this.map[e+" "]=t},e}();var u=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g;function f(e,t){var n,o,r,i,a,s,c=(e=e.slice(0).concat(e.default)).length,l=t,f=[];do if(u.exec(""),(r=u.exec(l))&&(l=r[3],r[2]||!l)){for(n=0;n3&&void 0!==arguments[3]?arguments[3]:{},i=!!r.capture,a=i?p:h,s=a[e];s||(s=new o,a[e]=s,document.addEventListener(e,A,i)),s.add(t,n)}function k(e,t,n){return e.dispatchEvent(new CustomEvent(t,{bubbles:!0,cancelable:!0,detail:n}))}}}]); +//# sourceMappingURL=37911-443b4c92f560.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/39837-12c9db865192.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/39837-12c9db865192.js" new file mode 100644 index 0000000..f6d3449 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/39837-12c9db865192.js" @@ -0,0 +1,5 @@ +performance.mark("js-parse-end:39837-12c9db865192.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[39837],{39837:(e,t,s)=>{s.d(t,{A:()=>V});var i=s(74848),l=s(69726),n=s(96540),a=s(73017),r=s(40961),o=s(87670);let d="TaskListItems-module__task-list-item--wcmow";var m=s(46720),c=s(20263),u=s(80752);let h=e=>"string"==typeof e?.taskBox&&e?.text?.match(/[^\s\\]/)!==null,k=({container:e,nestedItems:t,globalIndex:s,markdownIndex:i,items:l,itemsData:n,nested:a=!1,lists:r,parentIsChecklist:o,hasDifferentListTypes:d})=>(l.map((l,m)=>{let c=Array.from(l.querySelectorAll(":scope > ul > li:not(.base-task-list-item), :scope > ol > li:not(.base-task-list-item)"))??[],u=Array.from(l.querySelectorAll(":scope > ul > li.task-list-item, :scope > ol > li.task-list-item"))??[],h=(Array.from(l.querySelectorAll("ul > li.task-list-item, ol > li.task-list-item, li.task-list-item"))??[]).length,g=[];h>0&&t.set(s.toString(),h);let p=l.classList.contains("task-list-item")?function(e,t){let s=t.parentElement?.closest(".contains-task-list");if(!s)throw Error("Could not find the item's parent list");let i=t?Array.from(s.children).indexOf(t):-1;return[e.indexOf(s),i]}(r,l):void 0,{title:f,content:x}=function(e){let t="",s="";for(let l of e.childNodes){var i;if("INPUT"===(i=l).nodeName||"UL"===i.nodeName||"OL"===i.nodeName||"#comment"===l.nodeName)continue;let e=l.textContent||"";if("#text"===l.nodeName){t+=e,s+=e;continue}if("CODE"===l.nodeName){t+=`\`${e}\``,s+=l.outerHTML;continue}t+=e,s+=l.outerHTML}return{title:t.trim(),content:s}}(l);n.push({id:s.toString(),index:m,title:f,content:x,checked:l.querySelector(".task-list-item-checkbox")?.checked===!0,position:p,container:l.parentElement,nested:a,children:g,markdownIndex:l.classList.contains("task-list-item")?i+=1:-1,isBullet:l.parentElement?.tagName==="UL"&&!l.classList.contains("task-list-item"),isNumbered:l.parentElement?.tagName==="OL"&&!l.classList.contains("task-list-item"),parentIsChecklist:o,hasNestedItems:h>0,hasDifferentListTypes:d});let I=c.length>0&&k({container:e,nestedItems:t,globalIndex:s+1,markdownIndex:i,items:c,itemsData:g,nested:!0,lists:r,parentIsChecklist:l.classList.contains("task-list-item"),hasDifferentListTypes:u.length>0&&c.length!==u.length});s=I?I.globalIndex:s+1,i=I?I.markdownIndex:i}),{globalIndex:s,markdownIndex:i}),g=async({markdownValue:e,markdownIndex:t,onChange:s})=>{let i=e.split(/\r?\n/),l=null,n=!1;for(let e=0,a=0;e({...e,taskBox:"[ ]"===e.taskBox?"[x]":"[ ]"}),f=e=>{let t=e.match(/^ {0,3}(`{3,}|~{3,})[^`]*$/);return t?t[1]:null},x=(e,t)=>RegExp(`^ {0,3}${t}${t[0]}* *$`).test(e);var I=s(94236),L=s(26108),y=s(5524),b=s(38621);let T=({totalItems:e,onConvertToIssue:t,onConvertToSubIssue:s,item:l,allowIssueConversion:a,allowSubIssueConversion:r,disabled:d,setIsConverting:m,allowReordering:c,...u})=>{let h,{title:k,index:g,id:p}=l,{moveToPosition:f}=(0,o.gY)(),[x,T]=(0,n.useState)(!1),v=(0,n.useMemo)(()=>`task-list-menu-item-${p}`,[p]),N=e=>{if(e){let e=Array.from(document.querySelectorAll('[id^="task-list-menu-item-"]'));if(e.length>0){let t=e[Math.min(g,e.length-1)];t?.focus()}}else{let e=document.getElementById(v);e&&e.focus()}},_=({moveAction:e,e:t})=>{switch(t.preventDefault(),t.stopPropagation(),T(!1),e){case"up":f(g,g-1,!0);break;case"down":f(g,g+1,!1)}},w=({e,move:i,convertToIssue:n,convertToSubIssue:a})=>{e.preventDefault(),e.stopPropagation(),"Enter"===e.code&&i&&_({moveAction:i,e}),"Enter"===e.code&&n&&(T(!1),t?.(l,m,()=>{N(!1)})),"Enter"===e.code&&a&&(T(!1),s?.(l,m,()=>{N(!0)})),"Escape"===e.code&&T(!1)};return(0,i.jsxs)(I.W,{open:x,onOpenChange:T,children:[(0,i.jsx)(I.W.Anchor,{id:v,children:(0,i.jsx)(L.K,{"data-testid":u["data-testid"],icon:b.KebabHorizontalIcon,variant:"invisible","aria-label":(h=k,`Open ${h} task options`),disabled:d,className:"TaskListMenu-module__TaskListMenuTriggerButton--Qskh6"})}),(0,i.jsx)(I.W.Overlay,{children:(0,i.jsxs)(y.l,{children:[c&&(0,i.jsxs)(i.Fragment,{children:[(0,i.jsxs)(y.l.Item,{onClick:e=>_({moveAction:"up",e}),onKeyDown:e=>w({e,move:"up"}),disabled:0===g,children:[(0,i.jsx)(y.l.LeadingVisual,{children:(0,i.jsx)(b.ChevronUpIcon,{})}),"Move up"]}),(0,i.jsxs)(y.l.Item,{onClick:e=>_({moveAction:"down",e}),onKeyDown:e=>w({e,move:"down"}),disabled:g===e-1,children:[(0,i.jsx)(y.l.LeadingVisual,{children:(0,i.jsx)(b.ChevronDownIcon,{})}),"Move down"]})]}),a&&t&&(0,i.jsxs)(y.l.Item,{onClick:()=>t?.(l,m),onKeyDown:e=>w({e,convertToIssue:!0}),"data-testid":u["data-testid"]&&`${u["data-testid"]}-convert`,children:[(0,i.jsx)(y.l.LeadingVisual,{children:(0,i.jsx)(b.IssueOpenedIcon,{})}),"Convert to issue"]}),r&&s&&(0,i.jsxs)(y.l.Item,{onClick:()=>s?.(l,m),onKeyDown:e=>w({e,convertToSubIssue:!0}),"data-testid":u["data-testid"]&&`${u["data-testid"]}-convert-sub-issue`,children:[(0,i.jsx)(y.l.LeadingVisual,{children:(0,i.jsx)(b.IssueTracksIcon,{})}),"Convert to sub-issue"]})]})})]})};try{T.displayName||(T.displayName="TaskListMenu")}catch{}let v={ADD_TAGS:["math-renderer"],ADD_ATTR:["style","data-run-id","data-catalyst","class"]},N=/\/issues\/\d*\d/,_=(e,t)=>{let s=document.createElement("div");s.innerHTML=e;let i=s.querySelectorAll("span.reference");if(0===i.length)return!0;if(t||i.length>1)return!1;let l=i[0];return l.remove(),""===s.innerHTML.trim()&&!!N.test(l.innerHTML)};function w({markdownValue:e,onChange:t,onConvertToIssue:s,onConvertToSubIssue:a,nested:r=!1,position:d=1,item:u,totalItems:h,disabled:k,hideActions:p,itemIdToFocus:f,setitemIdToFocus:x,toggledItem:I,setToggledItem:L}){let[y,b]=(0,n.useState)(u.checked),[N,w]=(0,n.useState)(!1),[j,C]=(0,n.useState)(!1);(0,n.useEffect)(()=>{if(f&&!k){let e;(e=document.getElementById(`task-list-menu-item-${f}`))&&e.focus(),x?.(null)}},[f,k,x]),(0,n.useEffect)(()=>{I&&!k&&L(null)},[I,k,L]);let S=(0,n.useCallback)(e=>{b(!u.checked),L(u.id),g({markdownValue:e,markdownIndex:u.markdownIndex,onChange:t})},[u,t,L]),$=!r&&!u.hasDifferentListTypes||r&&d<2&&!u.parentIsChecklist&&!u.hasDifferentListTypes,[A,D]=(0,n.useMemo)(()=>[_(u.content,!0),_(u.content,!1)],[u.content]),B=`tasklist-item-${d}-${u.markdownIndex}`,E=!r||s&&a?"TaskListItem-module__task-list-item--cjTUf":"TaskListItem-module__no-convert-task-list-item--LET1o";return E+=` ${r&&h>0?"contains-task-list":""}`,E+=k?" TaskListItem-module__disabled--OHcK5":"",(0,i.jsxs)("div",{className:E,onMouseEnter:()=>w(!0),onMouseLeave:()=>w(!1),"data-testid":B,children:[(0,i.jsxs)("div",{className:"TaskListItem-module__left-aligned-content--xZ735",children:[(0,i.jsx)("div",{className:"TaskListItem-module__drag-drop-container--oJzzq",children:$&&!k&&(0,i.jsx)(o.BS.DragTrigger,{className:`TaskListItem-module__drag-handle-icon--pdSL7 ${N?"TaskListItem-module__show-trigger--HU0ll":""}`,style:{width:"20px",height:"28px"}})}),(0,i.jsxs)("div",{className:"TaskListItem-module__checkbox-items--pIbRT",id:`checkbox-item-${u.id}`,children:[(0,i.jsx)(m.A,{autoFocus:u.id===I,checked:y,disabled:k,onChange:t=>{t.preventDefault(),t.stopPropagation(),S(e)},"aria-label":`${u.title} checklist item`,className:"TaskListItem-module__taskStatusCheckbox--FJC87"}),(0,i.jsx)(c.JU,{html:u.content,className:"TaskListItem-module__task-list-html--dnlap",domPurifyConfig:v})]})]}),(0,i.jsxs)("div",{className:"TaskListItem-module__TaskListItemActionsContainer--Bm18Z",children:[j&&(0,i.jsx)(l.A,{size:"small"}),!p&&$&&u.position&&!j&&(0,i.jsx)(T,{"data-testid":`${B}-menu`,onConvertToIssue:s,onConvertToSubIssue:a,totalItems:h,item:u,disabled:k,allowIssueConversion:A,allowSubIssueConversion:D,setIsConverting:C,allowReordering:$})]})]})}try{w.displayName||(w.displayName="TaskListItem")}catch{}function j({item:e,position:t}){let s=`tasklist-item-${t}-${e.markdownIndex}`;return(0,i.jsx)(c.Pk,{html:e.content,as:"div","data-testid":s,className:"ListItem-module__ListItemContent--QTxoX"})}try{j.displayName||(j.displayName="ListItem")}catch{}let C=(e,t)=>{let s,i=t.split(/\r?\n/),l=-1,n=-1,a=-1;for(let[t,r]of i.entries()){let i=(0,u.VB)(r),o=i?.leadingWhitespace.length;if(s&&(!r||void 0!==o&&o<=s.leadingWhitespace.length)){n=t>0?t-1:0;break}i&&h(i)&&++a===e&&(l=t,s=i)}return{startLineNumber:l,endLineNumber:n=-1===n?i.length-1:n}},S=({tasklists:e,markdownValue:t,externalOnChange:s,onConvertToIssue:l,onConvertToSubIssue:a,tasklistData:m,setTasklistData:c,disabled:u,viewerCanUpdate:h})=>{let[k,g]=(0,n.useState)(!1),[p,f]=(0,n.useState)(null),[x,I]=(0,n.useState)(null),L=(0,n.useCallback)(async({dragMetadata:e,dropMetadata:i,isBefore:l,items:n,container:a})=>{if(e.id===i?.id||u)return;g(!0);let r=n.find(t=>t.id===e.id)?.markdownIndex,o=n.find(e=>e.id===i.id)?.markdownIndex;if(void 0===r||void 0===o)return;let d=((e,t,s,i)=>{let{startLineNumber:l,endLineNumber:n}=C(s,e),{startLineNumber:a,endLineNumber:r}=C(i,e),o=e.split(/\r?\n/),d=n-l+1,m=[...o].splice(l,d);return t?(o.splice(l,d),o.splice(a,0,...m)):(o.splice(r+1,0,...m),o.splice(l,d)),o.join(` +`)})(t,l,r,o);c(((e,t,s,i,l,n)=>{let a=new Map(i),r=e.findIndex(e=>e.id===t),o=e[r];if(!o)return a;let d=[...e];d.splice(r,1);let m=d.findIndex(e=>e.id===s);d.splice(l?m:m+1,0,o);let c=i.get(n);if(!c)return a;if(c===e)a.set(n,d);else{let t=s=>{for(let i of s)i.children===e?i.children=d:i.children&&t(i.children)};t(c),a.set(n,c)}return a})(n,e.id,i.id,m,l,a)),s&&(await s(d),g(!1),f(i.id))},[u,t,m,c,s]),y=(0,n.useCallback)(async e=>{s&&(g(!0),await s(e),g(!1))},[s]);function b(e,s,r,m,c,g){let T=!e.isBullet&&!e.isNumbered,v="OL"===r.tagName?"ol":"UL"===r.tagName?"ul":"div";return(0,i.jsxs)(n.Fragment,{children:[T&&(0,i.jsx)(w,{toggledItem:x,setToggledItem:I,markdownValue:t,onChange:y,onConvertToIssue:l,onConvertToSubIssue:a,nested:c,position:s,item:e,totalItems:m,disabled:u||k,hideActions:!h&&!k,setitemIdToFocus:f,itemIdToFocus:p}),!T&&(0,i.jsx)(j,{item:e,position:s}),e.children.length>0&&(0,i.jsx)(o.BS,{items:e.children,onDrop:t=>L({...t,items:e.children,container:r}),renderOverlay:(t,l)=>(0,i.jsx)(o.BS.Item,{index:l,id:t.id,title:t.title,hideTrigger:!0,className:d,isDragOverlay:!0,style:{marginLeft:"-30px"},children:b(t,s+1,r,e.children.length,!0,!0)},t.id),as:"div",children:(0,i.jsx)(v,{className:"base-list-item",style:{listStyleType:"none",marginLeft:T?"12px":"-28px"},children:e.children.map((t,l)=>{let n=$({child:t,position:s}),a=A({child:t,isDragOverlay:g}),d=D({child:t,isDragOverlay:g});return(0,i.jsx)(o.BS.Item,{index:l,id:t.id,title:t.title,hideTrigger:!0,className:`${n} ${a} ${d}`,as:B(e)?"li":"div",children:b(t,s+1,r,e.children.length,!0,g)},t.id)})})})]},e.index)}return(0,n.useMemo)(()=>(0,i.jsx)(i.Fragment,{children:e.map((e,t)=>{let s=m.get(e)||[],l=s.filter(e=>!e.isBullet&&!e.isNumbered),n="OL"===e.tagName?"ol":"UL"!==e.tagName||e.classList.contains("contains-task-list")&&l.length===s.length?"div":"ul";return s.length>0?(0,r.createPortal)((0,i.jsx)("li",{className:"base-task-list-item",style:{listStyle:"none",marginLeft:"-28px"},children:(0,i.jsx)(o.BS,{items:s,onDrop:t=>L({...t,items:s,container:e}),style:{marginTop:"1px"},renderOverlay:(t,l)=>(0,i.jsx)(o.BS.Item,{index:l,id:t.id,title:t.title,hideTrigger:!0,isDragOverlay:!0,children:b(t,0,e,s.length,!1,!0)},t.id),as:"div",children:(0,i.jsx)(n,{className:"base-list-item",style:{marginLeft:l.length!==s.length&&l.length?"5px":"0px"},children:s.map((t,l)=>(0,i.jsx)(o.BS.Item,{index:l,id:t.id,title:t.title,hideTrigger:!0,className:t.isBullet?"TaskListItems-module__bullet-task-item--X_OYA":t.isNumbered?"TaskListItems-module__numbered-task-item--rZ83B":d,as:B(t)?"li":"div",style:{marginLeft:t.isBullet||t.isNumbered||!t.hasDifferentListTypes?"0px":"-28px",marginRight:"-8px"},children:b(t,0,e,s.length,!1,!1)},t.id))})})}),e,t.toString()):null})}),[t,m,u])},$=({child:e,position:t})=>e.isNumbered?t+1<2?"TaskListItems-module__numbered-task-list--qipBK":"TaskListItems-module__numbered-task-list-nested--sSUYp":e.isBullet?t+1<2?"TaskListItems-module__unordered-task-list--Sl3h1":"TaskListItems-module__unordered-task-list-nested--Eju8Y":d,A=({child:e,isDragOverlay:t})=>!e.isBullet&&!e.isNumbered&&(t?"TaskListItems-module__nested-overlay-list--A36Te":e.parentIsChecklist||e.hasDifferentListTypes?"":d),D=({child:e,isDragOverlay:t})=>(e.isBullet||e.isNumbered)&&(t?"TaskListItems-module__overlay-task-list-child--Phee9":""),B=e=>(e.isNumbered||e.isBullet)&&!e.hasDifferentListTypes||e.hasDifferentListTypes||e.children.length>0;try{S.displayName||(S.displayName="TaskListItems")}catch{}var E=s(34164);let M=[],O=function(e,t,s){let[i,l]=(0,n.useState)([]);return(0,n.useLayoutEffect)(()=>{let s=Array.from(e.current?.querySelectorAll(t)??M);l(e=>!function(e,t){if(e.length!==t.length)return!1;for(let s=0;s{let p=(0,n.useRef)(null),f=O(p,".contains-task-list:not(.contains-task-list .contains-task-list)",e),x=(0,n.useRef)(""),I=(0,n.useMemo)(()=>{var t,s,i;let l;return t=x.current,s=e,i=function(e){let t,s={};P.lastIndex=0;let i=0;for(;null!==(t=P.exec(e))&&!(++i>1e3);){let e=t[3],i=t[4],l=t[5],n=t[6];e&&l&&(s[`${e}${i}token=TOKEN_PLACEHOLDER${n}`]=l)}return s}(t),P.lastIndex=0,l=0,s.replace(P,(e,t,s,n,a,r,o)=>{if(++l>1e3)return e;let d=`${n}${a}token=TOKEN_PLACEHOLDER${o}`;return i.hasOwnProperty(d)?`${t}=${s}${n}${a}token=${i[d]}${o}${s}`:e})},[e]);x.current=I;let{tasklistData:L,nestedItems:y,setTasklistData:b}=((e,t)=>{let[s,i]=(0,n.useState)(()=>new Map),[l,a]=(0,n.useState)(()=>new Map);return(0,n.useLayoutEffect)(()=>{if(!e)return;let s=function({container:e,tasklists:t}){let s=new Map,i=new Map,l=function(e,t="ul:not(.base-list-item), ol:not(.base-list-item)"){return Array.from(e.querySelectorAll(t)).filter(e=>!e.closest("tracking-block"))}(e),n=0,a=-1;for(let r of t){let t=Array.from(r.querySelectorAll(":scope > li:not(.base-task-list-item)")),o=r.querySelectorAll(":scope > li.task-list-item"),d=[],{globalIndex:m,markdownIndex:c}=k({container:e,nestedItems:i,globalIndex:n,markdownIndex:a,items:t,itemsData:d,nested:!1,lists:l,parentIsChecklist:r.classList.contains("task-list-item"),hasDifferentListTypes:o.length>0&&o.length!==t.length});for(let e of(n=m,a=c,s.set(r,d),t))e.remove()}return{newData:s,nestedItems:i}}({container:e,tasklists:t});i(s.newData),a(s.nestedItems)},[e,t]),{tasklistData:s,nestedItems:l,setTasklistData:i,setNestedItems:a}})(p.current,f);(0,q.O)({htmlContainerRef:p,onLinkClick:d,openLinksInNewTab:m});let T=(0,n.useMemo)(()=>{let e=["markdown-body","NewMarkdownViewer-module__safe-html-box--dKCgP"];return g&&e.push(g),(0,i.jsx)(a.vb,{ref:p,className:(0,E.$)(e),html:I})},[g,I]);return c?(0,i.jsx)("div",{className:(0,E.$)("NewMarkdownViewer-module__spinner--yFr_i"),children:(0,i.jsx)(l.A,{"aria-label":"Loading markdown content..."})}):(0,i.jsxs)(i.Fragment,{children:[T,f.length>0&&(0,i.jsx)(S,{tasklists:f,markdownValue:t,externalOnChange:s,onConvertToIssue:r,onConvertToSubIssue:o,tasklistData:L,setTasklistData:b,nestedItems:y,disabled:u||!s,viewerCanUpdate:h})]})};try{V.displayName||(V.displayName="NewMarkdownViewer")}catch{}}}]); +//# sourceMappingURL=39837-716e162a9bcd.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40420-a9a51328f93d.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40420-a9a51328f93d.js" new file mode 100644 index 0000000..9f64e1d --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40420-a9a51328f93d.js" @@ -0,0 +1,15 @@ +performance.mark("js-parse-end:40420-a9a51328f93d.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[40420],{2611:(e,n,t)=>{t.d(n,{v:()=>l});let r=/[\0\t\n\r]/g;function l(){let e,n=1,t="",l=!0;return function(i,o,a){let u,s,c,f,p,d=[];for(i=t+("string"==typeof i?i.toString():new TextDecoder(o||void 0).decode(i)),c=0,t="",l&&(65279===i.charCodeAt(0)&&c++,l=void 0);c{t.d(n,{v:()=>o,y:()=>i});var r=t(82777);let l={}.hasOwnProperty;function i(e){let n={},t=-1;for(;++t{t.d(n,{G1:()=>o,PW:()=>l,Y:()=>r});let r=i("end"),l=i("start");function i(e){return function(n){let t=n&&n.position&&n.position[e]||{};if("number"==typeof t.line&&t.line>0&&"number"==typeof t.column&&t.column>0)return{line:t.line,column:t.column,offset:"number"==typeof t.offset&&t.offset>-1?t.offset:void 0}}}function o(e){let n=l(e),t=r(e);if(n&&t)return{start:n,end:t}}},7711:(e,n,t)=>{t.d(n,{T:()=>VFile});var r=t(15946);let l=function(e,n){let t;if(void 0!==n&&"string"!=typeof n)throw TypeError('"ext" argument must be a string');u(e);let r=0,l=-1,i=e.length;if(void 0===n||0===n.length||n.length>e.length){for(;i--;)if(47===e.codePointAt(i)){if(t){r=i+1;break}}else l<0&&(t=!0,l=i+1);return l<0?"":e.slice(r,l)}if(n===e)return"";let o=-1,a=n.length-1;for(;i--;)if(47===e.codePointAt(i)){if(t){r=i+1;break}}else o<0&&(t=!0,o=i+1),a>-1&&(e.codePointAt(i)===n.codePointAt(a--)?a<0&&(l=i):(a=-1,l=o));return r===l?l=o:l<0&&(l=e.length),e.slice(r,l)},i=function(e){let n;if(u(e),0===e.length)return".";let t=-1,r=e.length;for(;--r;)if(47===e.codePointAt(r)){if(n){t=r;break}}else n||(n=!0);return t<0?47===e.codePointAt(0)?"/":".":1===t&&47===e.codePointAt(0)?"//":e.slice(0,t)},o=function(e){let n;u(e);let t=e.length,r=-1,l=0,i=-1,o=0;for(;t--;){let a=e.codePointAt(t);if(47===a){if(n){l=t+1;break}continue}r<0&&(n=!0,r=t+1),46===a?i<0?i=t:1!==o&&(o=1):i>-1&&(o=-1)}return i<0||r<0||0===o||1===o&&i===r-1&&i===l+1?"":e.slice(i,r)},a=function(...e){var n;let t,r,l,i=-1;for(;++i2){if((r=l.lastIndexOf("/"))!==l.length-1){r<0?(l="",i=0):i=(l=l.slice(0,r)).length-1-l.lastIndexOf("/"),o=u,a=0;continue}}else if(l.length>0){l="",i=0,o=u,a=0;continue}}n&&(l=l.length>0?l+"/..":"..",i=2)}else l.length>0?l+="/"+e.slice(o+1,u):l=e.slice(o+1,u),i=u-o-1;o=u,a=0}else 46===t&&a>-1?a++:a=-1}return l}(n,!t)).length||t||(r="."),r.length>0&&47===n.codePointAt(n.length-1)&&(r+="/"),t?"/"+r:r)};function u(e){if("string"!=typeof e)throw TypeError("Path must be a string. Received "+JSON.stringify(e))}function s(e){return!!(null!==e&&"object"==typeof e&&"href"in e&&e.href&&"protocol"in e&&e.protocol&&void 0===e.auth)}let c=["history","path","basename","stem","extname","dirname"];let VFile=class VFile{constructor(e){let n,t;n=e?s(e)?{path:e}:"string"==typeof e||function(e){return!!(e&&"object"==typeof e&&"byteLength"in e&&"byteOffset"in e)}(e)?{value:e}:e:{},this.cwd="cwd"in n?"":"/",this.data={},this.history=[],this.messages=[],this.value,this.map,this.result,this.stored;let r=-1;for(;++r{t.d(n,{B:()=>i});var r=t(40433),l=t(40574);let i={partial:!0,tokenize:function(e,n,t){return function(n){return(0,l.On)(n)?(0,r.N)(e,i,"linePrefix")(n):i(n)};function i(e){return null===e||(0,l.HP)(e)?n(e):t(e)}}}},9638:(e,n,t)=>{t.d(n,{B:()=>r});function r(e){return e.replace(/[\t\n\r ]+/g," ").replace(/^ | $/g,"").toLowerCase().toUpperCase()}},10691:(e,n,t)=>{t.d(n,{S:()=>l});var r=t(40574);function l(e){return null===e||(0,r.Ee)(e)||(0,r.Ny)(e)?1:(0,r.es)(e)?2:void 0}},15946:(e,n,t)=>{t.d(n,{o:()=>VFileMessage});var r=t(47188);let VFileMessage=class VFileMessage extends Error{constructor(e,n,t){super(),"string"==typeof n&&(t=n,n=void 0);let l="",i={},o=!1;if(n&&(i="line"in n&&"column"in n||"start"in n&&"end"in n?{place:n}:"type"in n?{ancestors:[n],place:n.position}:{...n}),"string"==typeof e?l=e:!i.cause&&e&&(o=!0,l=e.message,i.cause=e),!i.ruleId&&!i.source&&"string"==typeof t){const e=t.indexOf(":");-1===e?i.ruleId=t:(i.source=t.slice(0,e),i.ruleId=t.slice(e+1))}if(!i.place&&i.ancestors&&i.ancestors){const e=i.ancestors[i.ancestors.length-1];e&&(i.place=e.position)}const a=i.place&&"start"in i.place?i.place.start:i.place;this.ancestors=i.ancestors||void 0,this.cause=i.cause||void 0,this.column=a?a.column:void 0,this.fatal=void 0,this.file,this.message=l,this.line=a?a.line:void 0,this.name=(0,r.L)(i.place)||"1:1",this.place=i.place||void 0,this.reason=this.message,this.ruleId=i.ruleId||void 0,this.source=i.source||void 0,this.stack=o&&i.cause&&"string"==typeof i.cause.stack?i.cause.stack:"",this.actual,this.expected,this.note,this.url}};VFileMessage.prototype.file="",VFileMessage.prototype.name="",VFileMessage.prototype.reason="",VFileMessage.prototype.message="",VFileMessage.prototype.stack="",VFileMessage.prototype.column=void 0,VFileMessage.prototype.line=void 0,VFileMessage.prototype.ancestors=void 0,VFileMessage.prototype.cause=void 0,VFileMessage.prototype.fatal=void 0,VFileMessage.prototype.place=void 0,VFileMessage.prototype.ruleId=void 0,VFileMessage.prototype.source=void 0},16143:(e,n,t)=>{t.d(n,{_:()=>x});var r=t(97471),l=t(70094),i=t(63215);function o(e,n){let t=[{type:"text",value:"\u21A9"}];return n>1&&t.push({type:"element",tagName:"sup",properties:{},children:[{type:"text",value:String(n)}]}),t}function a(e,n){return"Back to reference "+(e+1)+(n>1?"-"+n:"")}var u=t(47970),s=t(5824);function c(e,n){let t=n.referenceType,r="]";if("collapsed"===t?r+="[]":"full"===t&&(r+="["+(n.label||n.identifier)+"]"),"imageReference"===n.type)return[{type:"text",value:"!["+n.alt+r}];let l=e.all(n),i=l[0];i&&"text"===i.type?i.value="["+i.value:l.unshift({type:"text",value:"["});let o=l[l.length-1];return o&&"text"===o.type?o.value+=r:l.push({type:"text",value:r}),l}function f(e){let n=e.spread;return null==n?e.children.length>1:n}function p(e,n,t){let r=0,l=e.length;if(n){let n=e.codePointAt(r);for(;9===n||32===n;)r++,n=e.codePointAt(r)}if(t){let n=e.codePointAt(l-1);for(;9===n||32===n;)l--,n=e.codePointAt(l-1)}return l>r?e.slice(r,l):""}let d={blockquote:function(e,n){let t={type:"element",tagName:"blockquote",properties:{},children:e.wrap(e.all(n),!0)};return e.patch(n,t),e.applyData(n,t)},break:function(e,n){let t={type:"element",tagName:"br",properties:{},children:[]};return e.patch(n,t),[e.applyData(n,t),{type:"text",value:` +`}]},code:function(e,n){let t=n.value?n.value+` +`:"",r={},l=n.lang?n.lang.split(/\s+/):[];l.length>0&&(r.className=["language-"+l[0]]);let i={type:"element",tagName:"code",properties:r,children:[{type:"text",value:t}]};return n.meta&&(i.data={meta:n.meta}),e.patch(n,i),i={type:"element",tagName:"pre",properties:{},children:[i=e.applyData(n,i)]},e.patch(n,i),i},delete:function(e,n){let t={type:"element",tagName:"del",properties:{},children:e.all(n)};return e.patch(n,t),e.applyData(n,t)},emphasis:function(e,n){let t={type:"element",tagName:"em",properties:{},children:e.all(n)};return e.patch(n,t),e.applyData(n,t)},footnoteReference:function(e,n){let t,r="string"==typeof e.options.clobberPrefix?e.options.clobberPrefix:"user-content-",l=String(n.identifier).toUpperCase(),o=(0,i.e)(l.toLowerCase()),a=e.footnoteOrder.indexOf(l),u=e.footnoteCounts.get(l);void 0===u?(u=0,e.footnoteOrder.push(l),t=e.footnoteOrder.length):t=a+1,u+=1,e.footnoteCounts.set(l,u);let s={type:"element",tagName:"a",properties:{href:"#"+r+"fn-"+o,id:r+"fnref-"+o+(u>1?"-"+u:""),dataFootnoteRef:!0,ariaDescribedBy:["footnote-label"]},children:[{type:"text",value:String(t)}]};e.patch(n,s);let c={type:"element",tagName:"sup",properties:{},children:[s]};return e.patch(n,c),e.applyData(n,c)},heading:function(e,n){let t={type:"element",tagName:"h"+n.depth,properties:{},children:e.all(n)};return e.patch(n,t),e.applyData(n,t)},html:function(e,n){if(e.options.allowDangerousHtml){let t={type:"raw",value:n.value};return e.patch(n,t),e.applyData(n,t)}},imageReference:function(e,n){let t=String(n.identifier).toUpperCase(),r=e.definitionById.get(t);if(!r)return c(e,n);let l={src:(0,i.e)(r.url||""),alt:n.alt};null!==r.title&&void 0!==r.title&&(l.title=r.title);let o={type:"element",tagName:"img",properties:l,children:[]};return e.patch(n,o),e.applyData(n,o)},image:function(e,n){let t={src:(0,i.e)(n.url)};null!==n.alt&&void 0!==n.alt&&(t.alt=n.alt),null!==n.title&&void 0!==n.title&&(t.title=n.title);let r={type:"element",tagName:"img",properties:t,children:[]};return e.patch(n,r),e.applyData(n,r)},inlineCode:function(e,n){let t={type:"text",value:n.value.replace(/\r?\n|\r/g," ")};e.patch(n,t);let r={type:"element",tagName:"code",properties:{},children:[t]};return e.patch(n,r),e.applyData(n,r)},linkReference:function(e,n){let t=String(n.identifier).toUpperCase(),r=e.definitionById.get(t);if(!r)return c(e,n);let l={href:(0,i.e)(r.url||"")};null!==r.title&&void 0!==r.title&&(l.title=r.title);let o={type:"element",tagName:"a",properties:l,children:e.all(n)};return e.patch(n,o),e.applyData(n,o)},link:function(e,n){let t={href:(0,i.e)(n.url)};null!==n.title&&void 0!==n.title&&(t.title=n.title);let r={type:"element",tagName:"a",properties:t,children:e.all(n)};return e.patch(n,r),e.applyData(n,r)},listItem:function(e,n,t){let r=e.all(n),l=t?function(e){let n=!1;if("list"===e.type){n=e.spread||!1;let t=e.children,r=-1;for(;!n&&++r0&&e.children.unshift({type:"text",value:" "}),e.children.unshift({type:"element",tagName:"input",properties:{type:"checkbox",checked:n.checked,disabled:!0},children:[]}),i.className=["task-list-item"]}let a=-1;for(;++a0){let r={type:"element",tagName:"tbody",properties:{},children:e.wrap(t,!0)},i=(0,s.PW)(n.children[1]),o=(0,s.Y)(n.children[n.children.length-1]);i&&o&&(r.position={start:i,end:o}),l.push(r)}let i={type:"element",tagName:"table",properties:{},children:e.wrap(l,!0)};return e.patch(n,i),e.applyData(n,i)},tableCell:function(e,n){let t={type:"element",tagName:"td",properties:{},children:e.all(n)};return e.patch(n,t),e.applyData(n,t)},tableRow:function(e,n,t){let r=t?t.children:void 0,l=0===(r?r.indexOf(n):1)?"th":"td",i=t&&"table"===t.type?t.align:void 0,o=i?i.length:n.children.length,a=-1,u=[];for(;++a0,!0),r[0]),l=r.index+r[0].length,r=t.exec(n);return i.push(p(n.slice(l),l>0,!1)),i.join("")}(String(n.value))};return e.patch(n,t),e.applyData(n,t)},thematicBreak:function(e,n){let t={type:"element",tagName:"hr",properties:{},children:[]};return e.patch(n,t),e.applyData(n,t)},toml:h,yaml:h,definition:h,footnoteDefinition:h};function h(){}let m={}.hasOwnProperty,g={};function y(e,n){e.position&&(n.position=(0,s.G1)(e))}function k(e,n){let t=n;if(e&&e.data){let n=e.data.hName,r=e.data.hChildren,i=e.data.hProperties;"string"==typeof n&&("element"===t.type?t.tagName=n:t={type:"element",tagName:n,properties:{},children:"children"in t?t.children:[t]}),"element"===t.type&&i&&Object.assign(t.properties,(0,l.Ay)(i)),"children"in t&&t.children&&null!=r&&(t.children=r)}return t}function v(e,n){let t=[],r=-1;for(n&&t.push({type:"text",value:` +`});++r0&&t.push({type:"text",value:` +`}),t}function b(e){let n=0,t=e.charCodeAt(n);for(;9===t||32===t;)n++,t=e.charCodeAt(n);return e.slice(n)}function x(e,n){let t,s,c,f,p=(t=n||g,s=new Map,c=new Map,f={all:function(e){let n=[];if("children"in e){let t=e.children,r=-1;for(;++r0&&c.push({type:"text",value:" "});let e="string"==typeof t?t:t(p,s);"string"==typeof e&&(e={type:"text",value:e}),c.push({type:"element",tagName:"a",properties:{href:"#"+n+"fnref-"+u+(s>1?"-"+s:""),dataFootnoteBackref:"",ariaLabel:"string"==typeof r?r:r(p,s),className:["data-footnote-backref"]},children:Array.isArray(e)?e:[e]})}let h=o[o.length-1];if(h&&"element"===h.type&&"p"===h.tagName){let e=h.children[h.children.length-1];e&&"text"===e.type?e.value+=" ":h.children.push({type:"text",value:" "}),h.children.push(...c)}else o.push(...c);let m={type:"element",tagName:"li",properties:{id:n+"fn-"+u},children:e.wrap(o,!0)};e.patch(l,m),f.push(m)}if(0!==f.length)return{type:"element",tagName:"section",properties:{dataFootnotes:!0,className:["footnotes"]},children:[{type:"element",tagName:s,properties:{...(0,l.Ay)(c),id:"footnote-label"},children:[{type:"text",value:u}]},{type:"text",value:` +`},{type:"element",tagName:"ol",properties:{},children:e.wrap(f,!0)},{type:"text",value:` +`}]}}(p),S=Array.isArray(h)?{type:"root",children:h}:h||{type:"root",children:[]};return x&&((0,r.ok)("children"in S),S.children.push({type:"text",value:` +`},x)),S}},22177:(e,n,t)=>{t.d(n,{s:()=>o});var r=t(96206),l=t(43589);let i=/\\([!-/:-@[-`{-~])|&(#(?:\d{1,7}|x[\da-f]{1,6})|[\da-z]{1,31});/gi;function o(e){return e.replace(i,a)}function a(e,n,t){if(n)return n;if(35===t.charCodeAt(0)){let e=t.charCodeAt(1),n=120===e||88===e;return(0,l.C)(t.slice(n?2:1),n?16:10)}return(0,r.s)(t)||e}},22305:(e,n,t)=>{t.d(n,{w:()=>i});var r=t(82777);let SpliceBuffer=class SpliceBuffer{constructor(e){this.left=e?[...e]:[],this.right=[]}get(e){if(e<0||e>=this.left.length+this.right.length)throw RangeError("Cannot access index `"+e+"` in a splice buffer of size `"+(this.left.length+this.right.length)+"`");return ethis.left.length?this.right.slice(this.right.length-t+this.left.length,this.right.length-e+this.left.length).reverse():this.left.slice(e).concat(this.right.slice(this.right.length-t+this.left.length).reverse())}splice(e,n,t){this.setCursor(Math.trunc(e));let r=this.right.splice(this.right.length-(n||0),1/0);return t&&l(this.left,t),r.reverse()}pop(){return this.setCursor(1/0),this.left.pop()}push(e){this.setCursor(1/0),this.left.push(e)}pushMany(e){this.setCursor(1/0),l(this.left,e)}unshift(e){this.setCursor(0),this.right.push(e)}unshiftMany(e){this.setCursor(0),l(this.right,e.reverse())}setCursor(e){if(e!==this.left.length&&(!(e>this.left.length)||0!==this.right.length)&&(!(e<0)||0!==this.left.length))if(e{t.d(n,{N:()=>l});var r=t(40574);function l(e,n,t,l){let i=l?l-1:1/0,o=0;return function(l){return(0,r.On)(l)?(e.enter(t),function l(a){return(0,r.On)(a)&&o++{t.d(n,{BM:()=>a,CW:()=>r,Ee:()=>f,HP:()=>c,JQ:()=>o,Ny:()=>h,On:()=>p,cx:()=>i,es:()=>d,lV:()=>l,ok:()=>u,ol:()=>s});let r=m(/[A-Za-z]/),l=m(/[\dA-Za-z]/),i=m(/[#-'*+\--9=?A-Z^-~]/);function o(e){return null!==e&&(e<32||127===e)}let a=m(/\d/),u=m(/[\dA-Fa-f]/),s=m(/[!-/:-@[-`{-~]/);function c(e){return null!==e&&e<-2}function f(e){return null!==e&&(e<0||32===e)}function p(e){return -2===e||-1===e||32===e}let d=m(/\p{P}|\p{S}/u),h=m(/\s/);function m(e){return function(n){return null!==n&&n>-1&&e.test(String.fromCharCode(n))}}},43589:(e,n,t)=>{t.d(n,{C:()=>r});function r(e,n){let t=Number.parseInt(e,n);return t<9||11===t||t>13&&t<32||t>126&&t<160||t>55295&&t<57344||t>64975&&t<65008||(65535&t)==65535||(65535&t)==65534||t>1114111?"\uFFFD":String.fromCodePoint(t)}},43926:(e,n,t)=>{t.d(n,{_:()=>l});var r=t(22305);function l(e){for(;!(0,r.w)(e););return e}},45535:(e,n,t)=>{t.d(n,{W:()=>r});function r(e,n,t){let r=[],l=-1;for(;++l{function r(e){return e&&"object"==typeof e?"position"in e||"type"in e?i(e.position):"start"in e||"end"in e?i(e):"line"in e||"column"in e?l(e):"":""}function l(e){return o(e&&e.line)+":"+o(e&&e.column)}function i(e){return l(e&&e.start)+"-"+l(e&&e.end)}function o(e){return e&&"number"==typeof e?e:1}t.d(n,{L:()=>r})},47970:(e,n,t)=>{t.d(n,{YR:()=>l});var r=t(76814);function l(e,n,t,l){let i,o,a;"function"==typeof n&&"function"!=typeof t?(o=void 0,a=n,i=t):(o=n,a=t,i=l),(0,r.VG)(e,o,function(e,n){let t=n[n.length-1],r=t?t.children.indexOf(e):void 0;return a(e,r,t)},i)}},48627:(e,n,t)=>{t.d(n,{R:()=>Info});let Info=class Info{constructor(e,n){this.attribute=n,this.property=e}};Info.prototype.attribute="",Info.prototype.booleanish=!1,Info.prototype.boolean=!1,Info.prototype.commaOrSpaceSeparated=!1,Info.prototype.commaSeparated=!1,Info.prototype.defined=!1,Info.prototype.mustUseProperty=!1,Info.prototype.number=!1,Info.prototype.overloadedBoolean=!1,Info.prototype.property="",Info.prototype.spaceSeparated=!1,Info.prototype.space=void 0},55035:(e,n,t)=>{t.d(n,{qy:()=>g,JW:()=>y});let Schema=class Schema{constructor(e,n,t){this.normal=n,this.property=e,t&&(this.space=t)}};function r(e,n){let t={},r={};for(let n of e)Object.assign(t,n.property),Object.assign(r,n.normal);return new Schema(t,r,n)}Schema.prototype.normal={},Schema.prototype.property={},Schema.prototype.space=void 0;var l=t(77457),i=t(75147);function o(e){let n={},t={};for(let[r,o]of Object.entries(e.properties)){let a=new i.E(r,e.transform(e.attributes||{},r),o,e.space);e.mustUseProperty&&e.mustUseProperty.includes(r)&&(a.mustUseProperty=!0),n[r]=a,t[(0,l.S)(r)]=r,t[(0,l.S)(a.attribute)]=r}return new Schema(n,t,e.space)}var a=t(65018);let u=o({properties:{ariaActiveDescendant:null,ariaAtomic:a.booleanish,ariaAutoComplete:null,ariaBusy:a.booleanish,ariaChecked:a.booleanish,ariaColCount:a.number,ariaColIndex:a.number,ariaColSpan:a.number,ariaControls:a.spaceSeparated,ariaCurrent:null,ariaDescribedBy:a.spaceSeparated,ariaDetails:null,ariaDisabled:a.booleanish,ariaDropEffect:a.spaceSeparated,ariaErrorMessage:null,ariaExpanded:a.booleanish,ariaFlowTo:a.spaceSeparated,ariaGrabbed:a.booleanish,ariaHasPopup:null,ariaHidden:a.booleanish,ariaInvalid:null,ariaKeyShortcuts:null,ariaLabel:null,ariaLabelledBy:a.spaceSeparated,ariaLevel:a.number,ariaLive:null,ariaModal:a.booleanish,ariaMultiLine:a.booleanish,ariaMultiSelectable:a.booleanish,ariaOrientation:null,ariaOwns:a.spaceSeparated,ariaPlaceholder:null,ariaPosInSet:a.number,ariaPressed:a.booleanish,ariaReadOnly:a.booleanish,ariaRelevant:null,ariaRequired:a.booleanish,ariaRoleDescription:a.spaceSeparated,ariaRowCount:a.number,ariaRowIndex:a.number,ariaRowSpan:a.number,ariaSelected:a.booleanish,ariaSetSize:a.number,ariaSort:null,ariaValueMax:a.number,ariaValueMin:a.number,ariaValueNow:a.number,ariaValueText:null,role:null},transform:(e,n)=>"role"===n?n:"aria-"+n.slice(4).toLowerCase()});function s(e,n){return n in e?e[n]:n}function c(e,n){return s(e,n.toLowerCase())}let f=o({attributes:{acceptcharset:"accept-charset",classname:"class",htmlfor:"for",httpequiv:"http-equiv"},mustUseProperty:["checked","multiple","muted","selected"],properties:{abbr:null,accept:a.commaSeparated,acceptCharset:a.spaceSeparated,accessKey:a.spaceSeparated,action:null,allow:null,allowFullScreen:a.boolean,allowPaymentRequest:a.boolean,allowUserMedia:a.boolean,alt:null,as:null,async:a.boolean,autoCapitalize:null,autoComplete:a.spaceSeparated,autoFocus:a.boolean,autoPlay:a.boolean,blocking:a.spaceSeparated,capture:null,charSet:null,checked:a.boolean,cite:null,className:a.spaceSeparated,cols:a.number,colSpan:null,content:null,contentEditable:a.booleanish,controls:a.boolean,controlsList:a.spaceSeparated,coords:a.number|a.commaSeparated,crossOrigin:null,data:null,dateTime:null,decoding:null,default:a.boolean,defer:a.boolean,dir:null,dirName:null,disabled:a.boolean,download:a.overloadedBoolean,draggable:a.booleanish,encType:null,enterKeyHint:null,fetchPriority:null,form:null,formAction:null,formEncType:null,formMethod:null,formNoValidate:a.boolean,formTarget:null,headers:a.spaceSeparated,height:a.number,hidden:a.overloadedBoolean,high:a.number,href:null,hrefLang:null,htmlFor:a.spaceSeparated,httpEquiv:a.spaceSeparated,id:null,imageSizes:null,imageSrcSet:null,inert:a.boolean,inputMode:null,integrity:null,is:null,isMap:a.boolean,itemId:null,itemProp:a.spaceSeparated,itemRef:a.spaceSeparated,itemScope:a.boolean,itemType:a.spaceSeparated,kind:null,label:null,lang:null,language:null,list:null,loading:null,loop:a.boolean,low:a.number,manifest:null,max:null,maxLength:a.number,media:null,method:null,min:null,minLength:a.number,multiple:a.boolean,muted:a.boolean,name:null,nonce:null,noModule:a.boolean,noValidate:a.boolean,onAbort:null,onAfterPrint:null,onAuxClick:null,onBeforeMatch:null,onBeforePrint:null,onBeforeToggle:null,onBeforeUnload:null,onBlur:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onContextLost:null,onContextMenu:null,onContextRestored:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnded:null,onError:null,onFocus:null,onFormData:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLanguageChange:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadEnd:null,onLoadStart:null,onMessage:null,onMessageError:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRejectionHandled:null,onReset:null,onResize:null,onScroll:null,onScrollEnd:null,onSecurityPolicyViolation:null,onSeeked:null,onSeeking:null,onSelect:null,onSlotChange:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnhandledRejection:null,onUnload:null,onVolumeChange:null,onWaiting:null,onWheel:null,open:a.boolean,optimum:a.number,pattern:null,ping:a.spaceSeparated,placeholder:null,playsInline:a.boolean,popover:null,popoverTarget:null,popoverTargetAction:null,poster:null,preload:null,readOnly:a.boolean,referrerPolicy:null,rel:a.spaceSeparated,required:a.boolean,reversed:a.boolean,rows:a.number,rowSpan:a.number,sandbox:a.spaceSeparated,scope:null,scoped:a.boolean,seamless:a.boolean,selected:a.boolean,shadowRootClonable:a.boolean,shadowRootDelegatesFocus:a.boolean,shadowRootMode:null,shape:null,size:a.number,sizes:null,slot:null,span:a.number,spellCheck:a.booleanish,src:null,srcDoc:null,srcLang:null,srcSet:null,start:a.number,step:null,style:null,tabIndex:a.number,target:null,title:null,translate:null,type:null,typeMustMatch:a.boolean,useMap:null,value:a.booleanish,width:a.number,wrap:null,writingSuggestions:null,align:null,aLink:null,archive:a.spaceSeparated,axis:null,background:null,bgColor:null,border:a.number,borderColor:null,bottomMargin:a.number,cellPadding:null,cellSpacing:null,char:null,charOff:null,classId:null,clear:null,code:null,codeBase:null,codeType:null,color:null,compact:a.boolean,declare:a.boolean,event:null,face:null,frame:null,frameBorder:null,hSpace:a.number,leftMargin:a.number,link:null,longDesc:null,lowSrc:null,marginHeight:a.number,marginWidth:a.number,noResize:a.boolean,noHref:a.boolean,noShade:a.boolean,noWrap:a.boolean,object:null,profile:null,prompt:null,rev:null,rightMargin:a.number,rules:null,scheme:null,scrolling:a.booleanish,standby:null,summary:null,text:null,topMargin:a.number,valueType:null,version:null,vAlign:null,vLink:null,vSpace:a.number,allowTransparency:null,autoCorrect:null,autoSave:null,disablePictureInPicture:a.boolean,disableRemotePlayback:a.boolean,prefix:null,property:null,results:a.number,security:null,unselectable:null},space:"html",transform:c}),p=o({attributes:{accentHeight:"accent-height",alignmentBaseline:"alignment-baseline",arabicForm:"arabic-form",baselineShift:"baseline-shift",capHeight:"cap-height",className:"class",clipPath:"clip-path",clipRule:"clip-rule",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",crossOrigin:"crossorigin",dataType:"datatype",dominantBaseline:"dominant-baseline",enableBackground:"enable-background",fillOpacity:"fill-opacity",fillRule:"fill-rule",floodColor:"flood-color",floodOpacity:"flood-opacity",fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",hrefLang:"hreflang",horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",horizOriginY:"horiz-origin-y",imageRendering:"image-rendering",letterSpacing:"letter-spacing",lightingColor:"lighting-color",markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",navDown:"nav-down",navDownLeft:"nav-down-left",navDownRight:"nav-down-right",navLeft:"nav-left",navNext:"nav-next",navPrev:"nav-prev",navRight:"nav-right",navUp:"nav-up",navUpLeft:"nav-up-left",navUpRight:"nav-up-right",onAbort:"onabort",onActivate:"onactivate",onAfterPrint:"onafterprint",onBeforePrint:"onbeforeprint",onBegin:"onbegin",onCancel:"oncancel",onCanPlay:"oncanplay",onCanPlayThrough:"oncanplaythrough",onChange:"onchange",onClick:"onclick",onClose:"onclose",onCopy:"oncopy",onCueChange:"oncuechange",onCut:"oncut",onDblClick:"ondblclick",onDrag:"ondrag",onDragEnd:"ondragend",onDragEnter:"ondragenter",onDragExit:"ondragexit",onDragLeave:"ondragleave",onDragOver:"ondragover",onDragStart:"ondragstart",onDrop:"ondrop",onDurationChange:"ondurationchange",onEmptied:"onemptied",onEnd:"onend",onEnded:"onended",onError:"onerror",onFocus:"onfocus",onFocusIn:"onfocusin",onFocusOut:"onfocusout",onHashChange:"onhashchange",onInput:"oninput",onInvalid:"oninvalid",onKeyDown:"onkeydown",onKeyPress:"onkeypress",onKeyUp:"onkeyup",onLoad:"onload",onLoadedData:"onloadeddata",onLoadedMetadata:"onloadedmetadata",onLoadStart:"onloadstart",onMessage:"onmessage",onMouseDown:"onmousedown",onMouseEnter:"onmouseenter",onMouseLeave:"onmouseleave",onMouseMove:"onmousemove",onMouseOut:"onmouseout",onMouseOver:"onmouseover",onMouseUp:"onmouseup",onMouseWheel:"onmousewheel",onOffline:"onoffline",onOnline:"ononline",onPageHide:"onpagehide",onPageShow:"onpageshow",onPaste:"onpaste",onPause:"onpause",onPlay:"onplay",onPlaying:"onplaying",onPopState:"onpopstate",onProgress:"onprogress",onRateChange:"onratechange",onRepeat:"onrepeat",onReset:"onreset",onResize:"onresize",onScroll:"onscroll",onSeeked:"onseeked",onSeeking:"onseeking",onSelect:"onselect",onShow:"onshow",onStalled:"onstalled",onStorage:"onstorage",onSubmit:"onsubmit",onSuspend:"onsuspend",onTimeUpdate:"ontimeupdate",onToggle:"ontoggle",onUnload:"onunload",onVolumeChange:"onvolumechange",onWaiting:"onwaiting",onZoom:"onzoom",overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pointerEvents:"pointer-events",referrerPolicy:"referrerpolicy",renderingIntent:"rendering-intent",shapeRendering:"shape-rendering",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",strokeDashArray:"stroke-dasharray",strokeDashOffset:"stroke-dashoffset",strokeLineCap:"stroke-linecap",strokeLineJoin:"stroke-linejoin",strokeMiterLimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",tabIndex:"tabindex",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",transformOrigin:"transform-origin",typeOf:"typeof",underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",vectorEffect:"vector-effect",vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",wordSpacing:"word-spacing",writingMode:"writing-mode",xHeight:"x-height",playbackOrder:"playbackorder",timelineBegin:"timelinebegin"},properties:{about:a.commaOrSpaceSeparated,accentHeight:a.number,accumulate:null,additive:null,alignmentBaseline:null,alphabetic:a.number,amplitude:a.number,arabicForm:null,ascent:a.number,attributeName:null,attributeType:null,azimuth:a.number,bandwidth:null,baselineShift:null,baseFrequency:null,baseProfile:null,bbox:null,begin:null,bias:a.number,by:null,calcMode:null,capHeight:a.number,className:a.spaceSeparated,clip:null,clipPath:null,clipPathUnits:null,clipRule:null,color:null,colorInterpolation:null,colorInterpolationFilters:null,colorProfile:null,colorRendering:null,content:null,contentScriptType:null,contentStyleType:null,crossOrigin:null,cursor:null,cx:null,cy:null,d:null,dataType:null,defaultAction:null,descent:a.number,diffuseConstant:a.number,direction:null,display:null,dur:null,divisor:a.number,dominantBaseline:null,download:a.boolean,dx:null,dy:null,edgeMode:null,editable:null,elevation:a.number,enableBackground:null,end:null,event:null,exponent:a.number,externalResourcesRequired:null,fill:null,fillOpacity:a.number,fillRule:null,filter:null,filterRes:null,filterUnits:null,floodColor:null,floodOpacity:null,focusable:null,focusHighlight:null,fontFamily:null,fontSize:null,fontSizeAdjust:null,fontStretch:null,fontStyle:null,fontVariant:null,fontWeight:null,format:null,fr:null,from:null,fx:null,fy:null,g1:a.commaSeparated,g2:a.commaSeparated,glyphName:a.commaSeparated,glyphOrientationHorizontal:null,glyphOrientationVertical:null,glyphRef:null,gradientTransform:null,gradientUnits:null,handler:null,hanging:a.number,hatchContentUnits:null,hatchUnits:null,height:null,href:null,hrefLang:null,horizAdvX:a.number,horizOriginX:a.number,horizOriginY:a.number,id:null,ideographic:a.number,imageRendering:null,initialVisibility:null,in:null,in2:null,intercept:a.number,k:a.number,k1:a.number,k2:a.number,k3:a.number,k4:a.number,kernelMatrix:a.commaOrSpaceSeparated,kernelUnitLength:null,keyPoints:null,keySplines:null,keyTimes:null,kerning:null,lang:null,lengthAdjust:null,letterSpacing:null,lightingColor:null,limitingConeAngle:a.number,local:null,markerEnd:null,markerMid:null,markerStart:null,markerHeight:null,markerUnits:null,markerWidth:null,mask:null,maskContentUnits:null,maskUnits:null,mathematical:null,max:null,media:null,mediaCharacterEncoding:null,mediaContentEncodings:null,mediaSize:a.number,mediaTime:null,method:null,min:null,mode:null,name:null,navDown:null,navDownLeft:null,navDownRight:null,navLeft:null,navNext:null,navPrev:null,navRight:null,navUp:null,navUpLeft:null,navUpRight:null,numOctaves:null,observer:null,offset:null,onAbort:null,onActivate:null,onAfterPrint:null,onBeforePrint:null,onBegin:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnd:null,onEnded:null,onError:null,onFocus:null,onFocusIn:null,onFocusOut:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadStart:null,onMessage:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onMouseWheel:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRepeat:null,onReset:null,onResize:null,onScroll:null,onSeeked:null,onSeeking:null,onSelect:null,onShow:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnload:null,onVolumeChange:null,onWaiting:null,onZoom:null,opacity:null,operator:null,order:null,orient:null,orientation:null,origin:null,overflow:null,overlay:null,overlinePosition:a.number,overlineThickness:a.number,paintOrder:null,panose1:null,path:null,pathLength:a.number,patternContentUnits:null,patternTransform:null,patternUnits:null,phase:null,ping:a.spaceSeparated,pitch:null,playbackOrder:null,pointerEvents:null,points:null,pointsAtX:a.number,pointsAtY:a.number,pointsAtZ:a.number,preserveAlpha:null,preserveAspectRatio:null,primitiveUnits:null,propagate:null,property:a.commaOrSpaceSeparated,r:null,radius:null,referrerPolicy:null,refX:null,refY:null,rel:a.commaOrSpaceSeparated,rev:a.commaOrSpaceSeparated,renderingIntent:null,repeatCount:null,repeatDur:null,requiredExtensions:a.commaOrSpaceSeparated,requiredFeatures:a.commaOrSpaceSeparated,requiredFonts:a.commaOrSpaceSeparated,requiredFormats:a.commaOrSpaceSeparated,resource:null,restart:null,result:null,rotate:null,rx:null,ry:null,scale:null,seed:null,shapeRendering:null,side:null,slope:null,snapshotTime:null,specularConstant:a.number,specularExponent:a.number,spreadMethod:null,spacing:null,startOffset:null,stdDeviation:null,stemh:null,stemv:null,stitchTiles:null,stopColor:null,stopOpacity:null,strikethroughPosition:a.number,strikethroughThickness:a.number,string:null,stroke:null,strokeDashArray:a.commaOrSpaceSeparated,strokeDashOffset:null,strokeLineCap:null,strokeLineJoin:null,strokeMiterLimit:a.number,strokeOpacity:a.number,strokeWidth:null,style:null,surfaceScale:a.number,syncBehavior:null,syncBehaviorDefault:null,syncMaster:null,syncTolerance:null,syncToleranceDefault:null,systemLanguage:a.commaOrSpaceSeparated,tabIndex:a.number,tableValues:null,target:null,targetX:a.number,targetY:a.number,textAnchor:null,textDecoration:null,textRendering:null,textLength:null,timelineBegin:null,title:null,transformBehavior:null,type:null,typeOf:a.commaOrSpaceSeparated,to:null,transform:null,transformOrigin:null,u1:null,u2:null,underlinePosition:a.number,underlineThickness:a.number,unicode:null,unicodeBidi:null,unicodeRange:null,unitsPerEm:a.number,values:null,vAlphabetic:a.number,vMathematical:a.number,vectorEffect:null,vHanging:a.number,vIdeographic:a.number,version:null,vertAdvY:a.number,vertOriginX:a.number,vertOriginY:a.number,viewBox:null,viewTarget:null,visibility:null,width:null,widths:null,wordSpacing:null,writingMode:null,x:null,x1:null,x2:null,xChannelSelector:null,xHeight:a.number,y:null,y1:null,y2:null,yChannelSelector:null,z:null,zoomAndPan:null},space:"svg",transform:s}),d=o({properties:{xLinkActuate:null,xLinkArcRole:null,xLinkHref:null,xLinkRole:null,xLinkShow:null,xLinkTitle:null,xLinkType:null},space:"xlink",transform:(e,n)=>"xlink:"+n.slice(5).toLowerCase()}),h=o({attributes:{xmlnsxlink:"xmlns:xlink"},properties:{xmlnsXLink:null,xmlns:null},space:"xmlns",transform:c}),m=o({properties:{xmlBase:null,xmlLang:null,xmlSpace:null},space:"xml",transform:(e,n)=>"xml:"+n.slice(3).toLowerCase()}),g=r([u,f,d,h,m],"html"),y=r([u,p,d,h,m],"svg")},63215:(e,n,t)=>{t.d(n,{Q:()=>i,e:()=>o});var r=t(40574),l=t(75737);function i(e,n){let t=(0,l.l)(o(e||""));if(!n)return t;let r=t.indexOf(":"),i=t.indexOf("?"),a=t.indexOf("#"),u=t.indexOf("/");return r<0||u>-1&&r>u||i>-1&&r>i||a>-1&&r>a||n.test(t.slice(0,r))?t:""}function o(e){let n=[],t=-1,l=0,i=0;for(;++t55295&&o<57344){let n=e.charCodeAt(t+1);o<56320&&n>56319&&n<57344?(a=String.fromCharCode(o,n),i=1):a="\uFFFD"}else a=String.fromCharCode(o);a&&(n.push(e.slice(l,t),encodeURIComponent(a)),l=t+i+1,a=""),i&&(t+=i,i=0)}return n.join("")+e.slice(l)}},65018:(e,n,t)=>{t.r(n),t.d(n,{boolean:()=>l,booleanish:()=>i,commaOrSpaceSeparated:()=>c,commaSeparated:()=>s,number:()=>a,overloadedBoolean:()=>o,spaceSeparated:()=>u});let r=0,l=f(),i=f(),o=f(),a=f(),u=f(),s=f(),c=f();function f(){return 2**++r}},69143:(e,n,t)=>{t.d(n,{C:()=>r});let r=function(e){var n,t;if(null==e)return i;if("function"==typeof e)return l(e);if("object"==typeof e){return Array.isArray(e)?function(e){let n=[],t=-1;for(;++t{t.d(n,{Ay:()=>c});let r="object"==typeof self?self:globalThis,l=e=>{var n;let t,l;return(n=new Map,t=(e,t)=>(n.set(t,e),e),l=i=>{if(n.has(i))return n.get(i);let[o,a]=e[i];switch(o){case 0:case -1:return t(a,i);case 1:{let e=t([],i);for(let n of a)e.push(l(n));return e}case 2:{let e=t({},i);for(let[n,t]of a)e[l(n)]=l(t);return e}case 3:return t(new Date(a),i);case 4:{let{source:e,flags:n}=a;return t(new RegExp(e,n),i)}case 5:{let e=t(new Map,i);for(let[n,t]of a)e.set(l(n),l(t));return e}case 6:{let e=t(new Set,i);for(let n of a)e.add(l(n));return e}case 7:{let{name:e,message:n}=a;return t(new r[e](n),i)}case 8:return t(BigInt(a),i);case"BigInt":return t(Object(BigInt(a)),i);case"ArrayBuffer":return t(new Uint8Array(a).buffer,a);case"DataView":{let{buffer:e}=new Uint8Array(a);return t(new DataView(e),a)}}return t(new r[o](a),i)})(0)},{toString:i}={},{keys:o}=Object,a=e=>{let n=typeof e;if("object"!==n||!e)return[0,n];let t=i.call(e).slice(8,-1);switch(t){case"Array":return[1,""];case"Object":return[2,""];case"Date":return[3,""];case"RegExp":return[4,""];case"Map":return[5,""];case"Set":return[6,""];case"DataView":return[1,t]}return t.includes("Array")?[1,t]:t.includes("Error")?[7,t]:[2,t]},u=([e,n])=>0===e&&("function"===n||"symbol"===n),s=(e,{json:n,lossy:t}={})=>{var r,l,i;let s,c,f=[];return(r=!(n||t),l=!!n,i=new Map,s=(e,n)=>{let t=f.push(e)-1;return i.set(n,t),t},c=e=>{if(i.has(e))return i.get(e);let[n,t]=a(e);switch(n){case 0:{let l=e;switch(t){case"bigint":n=8,l=e.toString();break;case"function":case"symbol":if(r)throw TypeError("unable to serialize "+t);l=null;break;case"undefined":return s([-1],e)}return s([n,l],e)}case 1:{if(t){let n=e;return"DataView"===t?n=new Uint8Array(e.buffer):"ArrayBuffer"===t&&(n=new Uint8Array(e)),s([t,[...n]],e)}let r=[],l=s([n,r],e);for(let n of e)r.push(c(n));return l}case 2:{if(t)switch(t){case"BigInt":return s([t,e.toString()],e);case"Boolean":case"Number":case"String":return s([t,e.valueOf()],e)}if(l&&"toJSON"in e)return c(e.toJSON());let i=[],f=s([n,i],e);for(let n of o(e))(r||!u(a(e[n])))&&i.push([c(n),c(e[n])]);return f}case 3:return s([n,e.toISOString()],e);case 4:{let{source:t,flags:r}=e;return s([n,{source:t,flags:r}],e)}case 5:{let t=[],l=s([n,t],e);for(let[n,l]of e)(r||!(u(a(n))||u(a(l))))&&t.push([c(n),c(l)]);return l}case 6:{let t=[],l=s([n,t],e);for(let n of e)(r||!u(a(n)))&&t.push(c(n));return l}}let{message:f}=e;return s([n,{name:t,message:f}],e)})(e),f},c="function"==typeof structuredClone?(e,n)=>n&&("json"in n||"lossy"in n)?l(s(e,n)):structuredClone(e):(e,n)=>l(s(e,n))},72282:(e,n,t)=>{function r(e){let n=[],t=String(e||""),r=t.indexOf(","),l=0,i=!1;for(;!i;){-1===r&&(r=t.length,i=!0);let e=t.slice(l,r).trim();(e||!i)&&n.push(e),l=r+1,r=t.indexOf(",",l)}return n}function l(e,n){let t=n||{};return(""===e[e.length-1]?[...e,""]:e).join((t.padRight?" ":"")+","+(!1===t.padLeft?"":" ")).trim()}t.d(n,{A:()=>l,q:()=>r})},72485:(e,n,t)=>{function r(e){let n=String(e||"").trim();return n?n.split(/[ \t\n\r\f]+/g):[]}function l(e){return e.join(" ").trim()}t.d(n,{A:()=>l,q:()=>r})},72534:(e,n,t)=>{t.d(n,{d:()=>l});let r={};function l(e,n){let t=n||r;return i(e,"boolean"!=typeof t.includeImageAlt||t.includeImageAlt,"boolean"!=typeof t.includeHtml||t.includeHtml)}function i(e,n,t){var r;if((r=e)&&"object"==typeof r){if("value"in e)return"html"!==e.type||t?e.value:"";if(n&&"alt"in e&&e.alt)return e.alt;if("children"in e)return o(e.children,n,t)}return Array.isArray(e)?o(e,n,t):""}function o(e,n,t){let r=[],l=-1;for(;++l{t.d(n,{E:()=>DefinedInfo});var r=t(48627),l=t(65018);let i=Object.keys(l);let DefinedInfo=class DefinedInfo extends r.R{constructor(e,n,t,r){let o=-1;if(super(e,n),function(e,n,t){t&&(e[n]=t)}(this,"space",r),"number"==typeof t)for(;++o{t.d(n,{l:()=>l});let r={'"':"quot","&":"amp","<":"lt",">":"gt"};function l(e){return e.replace(/["&<>]/g,function(e){return"&"+r[e]+";"})}},76814:(e,n,t)=>{t.d(n,{dc:()=>i,_Z:()=>o,VG:()=>a});var r=t(69143);let l=[],i=!1,o="skip";function a(e,n,t,a){let u;"function"==typeof n&&"function"!=typeof t?(a=t,t=n):u=n;let s=(0,r.C)(u),c=a?-1:1;(function e(r,u,f){let p=r&&"object"==typeof r?r:{};if("string"==typeof p.type){let e="string"==typeof p.tagName?p.tagName:"string"==typeof p.name?p.name:void 0;Object.defineProperty(d,"name",{value:"node ("+r.type+(e?"<"+e+">":"")+")"})}return d;function d(){var p;let d,h,m,g=l;if((!n||s(r,u,f[f.length-1]||void 0))&&(g=Array.isArray(p=t(r,f))?p:"number"==typeof p?[!0,p]:null==p?l:[p])[0]===i)return g;if("children"in r&&r.children&&r.children&&g[0]!==o)for(h=(a?r.children.length:-1)+c,m=f.concat(r);h>-1&&h{t.d(n,{S:()=>r});function r(e){return e.toLowerCase()}},82777:(e,n,t)=>{function r(e,n,t,r){let l,i=e.length,o=0;if(n=n<0?-n>i?0:i+n:n>i?i:n,t=t>0?t:0,r.length<1e4)(l=Array.from(r)).unshift(n,t),e.splice(...l);else for(t&&e.splice(n,t);o0?(r(e,e.length,0,n),e):n}t.d(n,{V:()=>l,m:()=>r})},86350:(e,n,t)=>{t.d(n,{Y:()=>d});var r=t(72534),l=t(43926),i=t(87647),o=t(2611),a=t(43589),u=t(22177),s=t(9638),c=t(96206),f=t(47188);let p={}.hasOwnProperty;function d(e,n,t){return"string"!=typeof n&&(t=n,n=void 0),(function(e){let n={transforms:[],canContainEols:["emphasis","fragment","heading","paragraph","strong"],enter:{autolink:l(E),autolinkProtocol:k,autolinkEmail:k,atxHeading:l(w),blockQuote:l(function(){return{type:"blockquote",children:[]}}),characterEscape:k,characterReference:k,codeFenced:l(S),codeFencedFenceInfo:i,codeFencedFenceMeta:i,codeIndented:l(S,i),codeText:l(function(){return{type:"inlineCode",value:""}},i),codeTextData:k,data:k,codeFlowValue:k,definition:l(function(){return{type:"definition",identifier:"",label:null,title:null,url:""}}),definitionDestinationString:i,definitionLabelString:i,definitionTitleString:i,emphasis:l(function(){return{type:"emphasis",children:[]}}),hardBreakEscape:l(C),hardBreakTrailing:l(C),htmlFlow:l(P,i),htmlFlowData:k,htmlText:l(P,i),htmlTextData:k,image:l(function(){return{type:"image",title:null,url:"",alt:null}}),label:i,link:l(E),listItem:l(function(e){return{type:"listItem",spread:e._spread,checked:null,children:[]}}),listItemValue:function(e){this.data.expectingFirstListItemValue&&(this.stack[this.stack.length-2].start=Number.parseInt(this.sliceSerialize(e),10),this.data.expectingFirstListItemValue=void 0)},listOrdered:l(I,function(){this.data.expectingFirstListItemValue=!0}),listUnordered:l(I),paragraph:l(function(){return{type:"paragraph",children:[]}}),reference:function(){this.data.referenceType="collapsed"},referenceString:i,resourceDestinationString:i,resourceTitleString:i,setextHeading:l(w),strong:l(function(){return{type:"strong",children:[]}}),thematicBreak:l(function(){return{type:"thematicBreak"}})},exit:{atxHeading:d(),atxHeadingSequence:function(e){let n=this.stack[this.stack.length-1];n.depth||(n.depth=this.sliceSerialize(e).length)},autolink:d(),autolinkEmail:function(e){v.call(this,e),this.stack[this.stack.length-1].url="mailto:"+this.sliceSerialize(e)},autolinkProtocol:function(e){v.call(this,e),this.stack[this.stack.length-1].url=this.sliceSerialize(e)},blockQuote:d(),characterEscapeValue:v,characterReferenceMarkerHexadecimal:x,characterReferenceMarkerNumeric:x,characterReferenceValue:function(e){let n,t=this.sliceSerialize(e),r=this.data.characterReferenceType;r?(n=(0,a.C)(t,"characterReferenceMarkerNumeric"===r?10:16),this.data.characterReferenceType=void 0):n=(0,c.s)(t);let l=this.stack[this.stack.length-1];l.value+=n},characterReference:function(e){this.stack.pop().position.end=h(e.end)},codeFenced:d(function(){let e=this.resume();this.stack[this.stack.length-1].value=e.replace(/^(\r?\n|\r)|(\r?\n|\r)$/g,""),this.data.flowCodeInside=void 0}),codeFencedFence:function(){this.data.flowCodeInside||(this.buffer(),this.data.flowCodeInside=!0)},codeFencedFenceInfo:function(){let e=this.resume();this.stack[this.stack.length-1].lang=e},codeFencedFenceMeta:function(){let e=this.resume();this.stack[this.stack.length-1].meta=e},codeFlowValue:v,codeIndented:d(function(){let e=this.resume();this.stack[this.stack.length-1].value=e.replace(/(\r?\n|\r)$/g,"")}),codeText:d(function(){let e=this.resume();this.stack[this.stack.length-1].value=e}),codeTextData:v,data:v,definition:d(),definitionDestinationString:function(){let e=this.resume();this.stack[this.stack.length-1].url=e},definitionLabelString:function(e){let n=this.resume(),t=this.stack[this.stack.length-1];t.label=n,t.identifier=(0,s.B)(this.sliceSerialize(e)).toLowerCase()},definitionTitleString:function(){let e=this.resume();this.stack[this.stack.length-1].title=e},emphasis:d(),hardBreakEscape:d(b),hardBreakTrailing:d(b),htmlFlow:d(function(){let e=this.resume();this.stack[this.stack.length-1].value=e}),htmlFlowData:v,htmlText:d(function(){let e=this.resume();this.stack[this.stack.length-1].value=e}),htmlTextData:v,image:d(function(){let e=this.stack[this.stack.length-1];if(this.data.inReference){let n=this.data.referenceType||"shortcut";e.type+="Reference",e.referenceType=n,delete e.url,delete e.title}else delete e.identifier,delete e.label;this.data.referenceType=void 0}),label:function(){let e=this.stack[this.stack.length-1],n=this.resume(),t=this.stack[this.stack.length-1];this.data.inReference=!0,"link"===t.type?t.children=e.children:t.alt=n},labelText:function(e){let n=this.sliceSerialize(e),t=this.stack[this.stack.length-2];t.label=(0,u.s)(n),t.identifier=(0,s.B)(n).toLowerCase()},lineEnding:function(e){let t=this.stack[this.stack.length-1];if(this.data.atHardBreak){t.children[t.children.length-1].position.end=h(e.end),this.data.atHardBreak=void 0;return}!this.data.setextHeadingSlurpLineEnding&&n.canContainEols.includes(t.type)&&(k.call(this,e),v.call(this,e))},link:d(function(){let e=this.stack[this.stack.length-1];if(this.data.inReference){let n=this.data.referenceType||"shortcut";e.type+="Reference",e.referenceType=n,delete e.url,delete e.title}else delete e.identifier,delete e.label;this.data.referenceType=void 0}),listItem:d(),listOrdered:d(),listUnordered:d(),paragraph:d(),referenceString:function(e){let n=this.resume(),t=this.stack[this.stack.length-1];t.label=n,t.identifier=(0,s.B)(this.sliceSerialize(e)).toLowerCase(),this.data.referenceType="full"},resourceDestinationString:function(){let e=this.resume();this.stack[this.stack.length-1].url=e},resourceTitleString:function(){let e=this.resume();this.stack[this.stack.length-1].title=e},resource:function(){this.data.inReference=void 0},setextHeading:d(function(){this.data.setextHeadingSlurpLineEnding=void 0}),setextHeadingLineSequence:function(e){this.stack[this.stack.length-1].depth=61===this.sliceSerialize(e).codePointAt(0)?1:2},setextHeadingText:function(){this.data.setextHeadingSlurpLineEnding=!0},strong:d(),thematicBreak:d()}};!function e(n,t){let r=-1;for(;++r0){let e=l.tokenStack[l.tokenStack.length-1];(e[1]||m).call(l,void 0,e[0])}for(r.position={start:h(e.length>0?e[0][1].start:{line:1,column:1,offset:0}),end:h(e.length>0?e[e.length-2][1].end:{line:1,column:1,offset:0})},u=-1;++u{t.d(n,{q:()=>ef});var r={};t.r(r),t.d(r,{attentionMarkers:()=>es,contentInitial:()=>er,disable:()=>ec,document:()=>et,flow:()=>ei,flowInitial:()=>el,insideSpan:()=>eu,string:()=>eo,text:()=>ea});var l=t(5389),i=t(40433),o=t(40574);let a={tokenize:function(e){let n,t=e.attempt(this.parser.constructs.contentInitial,function(n){return null===n?void e.consume(n):(e.enter("lineEnding"),e.consume(n),e.exit("lineEnding"),(0,i.N)(e,t,"linePrefix"))},function(t){return e.enter("paragraph"),function t(r){let l=e.enter("chunkText",{contentType:"text",previous:n});return n&&(n.next=l),n=l,function n(r){if(null===r){e.exit("chunkText"),e.exit("paragraph"),e.consume(r);return}return(0,o.HP)(r)?(e.consume(r),e.exit("chunkText"),t):(e.consume(r),n)}(r)}(t)});return t}};var u=t(82777);let s={tokenize:function(e){let n,t,r,l=this,i=[],a=0;return s;function s(n){if(ar))return;let o=l.events.length,s=o;for(;s--;)if("exit"===l.events[s][0]&&"chunkFlow"===l.events[s][1].type){if(e){t=l.events[s][1].end;break}e=!0}for(v(a),i=o;in;){let n=i[t];l.containerState=n[1],n[0].exit.call(l,e)}i.length=n}function b(){n.write([null]),t=void 0,n=void 0,l.containerState._closeFlow=void 0}}},c={tokenize:function(e,n,t){return(0,i.N)(e,e.attempt(this.parser.constructs.document,n,t),"linePrefix",this.parser.constructs.disable.null.includes("codeIndented")?void 0:4)}};var f=t(9283),p=t(22305);let d={resolve:function(e){return(0,p.w)(e),e},tokenize:function(e,n){let t;return function(n){return e.enter("content"),t=e.enter("chunkContent",{contentType:"content"}),r(n)};function r(n){return null===n?l(n):(0,o.HP)(n)?e.check(h,i,l)(n):(e.consume(n),r)}function l(t){return e.exit("chunkContent"),e.exit("content"),n(t)}function i(n){return e.consume(n),e.exit("chunkContent"),t.next=e.enter("chunkContent",{contentType:"content",previous:t}),t=t.next,r}}},h={partial:!0,tokenize:function(e,n,t){let r=this;return function(n){return e.exit("chunkContent"),e.enter("lineEnding"),e.consume(n),e.exit("lineEnding"),(0,i.N)(e,l,"linePrefix")};function l(l){if(null===l||(0,o.HP)(l))return t(l);let i=r.events[r.events.length-1];return!r.parser.constructs.disable.null.includes("codeIndented")&&i&&"linePrefix"===i[1].type&&i[2].sliceSerialize(i[1],!0).length>=4?n(l):e.interrupt(r.parser.constructs.flow,t,n)(l)}}},m={tokenize:function(e){let n=this,t=e.attempt(f.B,function(r){return null===r?void e.consume(r):(e.enter("lineEndingBlank"),e.consume(r),e.exit("lineEndingBlank"),n.currentConstruct=void 0,t)},e.attempt(this.parser.constructs.flowInitial,r,(0,i.N)(e,e.attempt(this.parser.constructs.flow,r,e.attempt(d,r)),"linePrefix")));return t;function r(r){return null===r?void e.consume(r):(e.enter("lineEnding"),e.consume(r),e.exit("lineEnding"),n.currentConstruct=void 0,t)}}},g={resolveAll:b()},y=v("string"),k=v("text");function v(e){return{resolveAll:b("text"===e?x:void 0),tokenize:function(n){let t=this,r=this.parser.constructs[e],l=n.attempt(r,i,o);return i;function i(e){return u(e)?l(e):o(e)}function o(e){return null===e?void n.consume(e):(n.enter("data"),n.consume(e),a)}function a(e){return u(e)?(n.exit("data"),l(e)):(n.consume(e),a)}function u(e){if(null===e)return!0;let n=r[e],l=-1;if(n)for(;++l=3&&(null===u||(0,o.HP)(u))?(e.exit("thematicBreak"),n(u)):t(u)}(u)}}},w={continuation:{tokenize:function(e,n,t){let r=this;return r.containerState._closeFlow=void 0,e.check(f.B,function(t){return r.containerState.furtherBlankLines=r.containerState.furtherBlankLines||r.containerState.initialBlankLine,(0,i.N)(e,n,"listItemIndent",r.containerState.size+1)(t)},function(t){return r.containerState.furtherBlankLines||!(0,o.On)(t)?(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,l(t)):(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,e.attempt(P,n,l)(t))});function l(l){return r.containerState._closeFlow=!0,r.interrupt=void 0,(0,i.N)(e,e.attempt(w,n,t),"linePrefix",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(l)}}},exit:function(e){e.exit(this.containerState.type)},name:"list",tokenize:function(e,n,t){let r=this,l=r.events[r.events.length-1],i=l&&"linePrefix"===l[1].type?l[2].sliceSerialize(l[1],!0).length:0,a=0;return function(n){let l=r.containerState.type||(42===n||43===n||45===n?"listUnordered":"listOrdered");if("listUnordered"===l?!r.containerState.marker||n===r.containerState.marker:(0,o.BM)(n)){if(r.containerState.type||(r.containerState.type=l,e.enter(l,{_container:!0})),"listUnordered"===l)return e.enter("listItemPrefix"),42===n||45===n?e.check(S,t,u)(n):u(n);if(!r.interrupt||49===n)return e.enter("listItemPrefix"),e.enter("listItemValue"),function n(l){return(0,o.BM)(l)&&++a<10?(e.consume(l),n):(!r.interrupt||a<2)&&(r.containerState.marker?l===r.containerState.marker:41===l||46===l)?(e.exit("listItemValue"),u(l)):t(l)}(n)}return t(n)};function u(n){return e.enter("listItemMarker"),e.consume(n),e.exit("listItemMarker"),r.containerState.marker=r.containerState.marker||n,e.check(f.B,r.interrupt?t:s,e.attempt(C,p,c))}function s(e){return r.containerState.initialBlankLine=!0,i++,p(e)}function c(n){return(0,o.On)(n)?(e.enter("listItemPrefixWhitespace"),e.consume(n),e.exit("listItemPrefixWhitespace"),p):t(n)}function p(t){return r.containerState.size=i+r.sliceSerialize(e.exit("listItemPrefix"),!0).length,n(t)}}},C={partial:!0,tokenize:function(e,n,t){let r=this;return(0,i.N)(e,function(e){let l=r.events[r.events.length-1];return!(0,o.On)(e)&&l&&"listItemPrefixWhitespace"===l[1].type?n(e):t(e)},"listItemPrefixWhitespace",r.parser.constructs.disable.null.includes("codeIndented")?void 0:5)}},P={partial:!0,tokenize:function(e,n,t){let r=this;return(0,i.N)(e,function(e){let l=r.events[r.events.length-1];return l&&"listItemIndent"===l[1].type&&l[2].sliceSerialize(l[1],!0).length===r.containerState.size?n(e):t(e)},"listItemIndent",r.containerState.size+1)}},E={continuation:{tokenize:function(e,n,t){let r=this;return function(n){return(0,o.On)(n)?(0,i.N)(e,l,"linePrefix",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(n):l(n)};function l(r){return e.attempt(E,n,t)(r)}}},exit:function(e){e.exit("blockQuote")},name:"blockQuote",tokenize:function(e,n,t){let r=this;return function(n){if(62===n){let t=r.containerState;return t.open||(e.enter("blockQuote",{_container:!0}),t.open=!0),e.enter("blockQuotePrefix"),e.enter("blockQuoteMarker"),e.consume(n),e.exit("blockQuoteMarker"),l}return t(n)};function l(t){return(0,o.On)(t)?(e.enter("blockQuotePrefixWhitespace"),e.consume(t),e.exit("blockQuotePrefixWhitespace"),e.exit("blockQuotePrefix"),n):(e.exit("blockQuotePrefix"),n(t))}}};function I(e,n,t,r,l,i,a,u,s){let c=s||1/0,f=0;return function(n){return 60===n?(e.enter(r),e.enter(l),e.enter(i),e.consume(n),e.exit(i),p):null===n||32===n||41===n||(0,o.JQ)(n)?t(n):(e.enter(r),e.enter(a),e.enter(u),e.enter("chunkString",{contentType:"string"}),m(n))};function p(t){return 62===t?(e.enter(i),e.consume(t),e.exit(i),e.exit(l),e.exit(r),n):(e.enter(u),e.enter("chunkString",{contentType:"string"}),d(t))}function d(n){return 62===n?(e.exit("chunkString"),e.exit(u),p(n)):null===n||60===n||(0,o.HP)(n)?t(n):(e.consume(n),92===n?h:d)}function h(n){return 60===n||62===n||92===n?(e.consume(n),d):d(n)}function m(l){return!f&&(null===l||41===l||(0,o.Ee)(l))?(e.exit("chunkString"),e.exit(u),e.exit(a),e.exit(r),n(l)):f999||null===p||91===p||93===p&&!a||94===p&&!s&&"_hiddenFootnoteSupport"in u.parser.constructs?t(p):93===p?(e.exit(i),e.enter(l),e.consume(p),e.exit(l),e.exit(r),n):(0,o.HP)(p)?(e.enter("lineEnding"),e.consume(p),e.exit("lineEnding"),c):(e.enter("chunkString",{contentType:"string"}),f(p))}function f(n){return null===n||91===n||93===n||(0,o.HP)(n)||s++>999?(e.exit("chunkString"),c(n)):(e.consume(n),a||(a=!(0,o.On)(n)),92===n?p:f)}function p(n){return 91===n||92===n||93===n?(e.consume(n),s++,f):f(n)}}function T(e,n,t,r,l,a){let u;return function(n){return 34===n||39===n||40===n?(e.enter(r),e.enter(l),e.consume(n),e.exit(l),u=40===n?41:n,s):t(n)};function s(t){return t===u?(e.enter(l),e.consume(t),e.exit(l),e.exit(r),n):(e.enter(a),c(t))}function c(n){return n===u?(e.exit(a),s(u)):null===n?t(n):(0,o.HP)(n)?(e.enter("lineEnding"),e.consume(n),e.exit("lineEnding"),(0,i.N)(e,c,"linePrefix")):(e.enter("chunkString",{contentType:"string"}),f(n))}function f(n){return n===u||null===n||(0,o.HP)(n)?(e.exit("chunkString"),c(n)):(e.consume(n),92===n?p:f)}function p(n){return n===u||92===n?(e.consume(n),f):f(n)}}function A(e,n){let t;return function r(l){return(0,o.HP)(l)?(e.enter("lineEnding"),e.consume(l),e.exit("lineEnding"),t=!0,r):(0,o.On)(l)?(0,i.N)(e,r,t?"linePrefix":"lineSuffix")(l):n(l)}}var M=t(9638);let L={partial:!0,tokenize:function(e,n,t){return function(n){return(0,o.Ee)(n)?A(e,r)(n):t(n)};function r(n){return T(e,l,t,"definitionTitle","definitionTitleMarker","definitionTitleString")(n)}function l(n){return(0,o.On)(n)?(0,i.N)(e,a,"whitespace")(n):a(n)}function a(e){return null===e||(0,o.HP)(e)?n(e):t(e)}}},D={name:"codeIndented",tokenize:function(e,n,t){let r=this;return function(n){return e.enter("codeIndented"),(0,i.N)(e,l,"linePrefix",5)(n)};function l(n){let l=r.events[r.events.length-1];return l&&"linePrefix"===l[1].type&&l[2].sliceSerialize(l[1],!0).length>=4?function n(t){return null===t?a(t):(0,o.HP)(t)?e.attempt(F,n,a)(t):(e.enter("codeFlowValue"),function t(r){return null===r||(0,o.HP)(r)?(e.exit("codeFlowValue"),n(r)):(e.consume(r),t)}(t))}(n):t(n)}function a(t){return e.exit("codeIndented"),n(t)}}},F={partial:!0,tokenize:function(e,n,t){let r=this;return l;function l(n){return r.parser.lazy[r.now().line]?t(n):(0,o.HP)(n)?(e.enter("lineEnding"),e.consume(n),e.exit("lineEnding"),l):(0,i.N)(e,a,"linePrefix",5)(n)}function a(e){let i=r.events[r.events.length-1];return i&&"linePrefix"===i[1].type&&i[2].sliceSerialize(i[1],!0).length>=4?n(e):(0,o.HP)(e)?l(e):t(e)}}},z={name:"setextUnderline",resolveTo:function(e,n){let t,r,l,i=e.length;for(;i--;)if("enter"===e[i][0]){if("content"===e[i][1].type){t=i;break}"paragraph"===e[i][1].type&&(r=i)}else"content"===e[i][1].type&&e.splice(i,1),l||"definition"!==e[i][1].type||(l=i);let o={type:"setextHeading",start:{...e[r][1].start},end:{...e[e.length-1][1].end}};return e[r][1].type="setextHeadingText",l?(e.splice(r,0,["enter",o,n]),e.splice(l+1,0,["exit",e[t][1],n]),e[t][1].end={...e[l][1].end}):e[t][1]=o,e.push(["exit",o,n]),e},tokenize:function(e,n,t){let r,l=this;return function(n){var u;let s,c=l.events.length;for(;c--;)if("lineEnding"!==l.events[c][1].type&&"linePrefix"!==l.events[c][1].type&&"content"!==l.events[c][1].type){s="paragraph"===l.events[c][1].type;break}return!l.parser.lazy[l.now().line]&&(l.interrupt||s)?(e.enter("setextHeadingLine"),r=n,u=n,e.enter("setextHeadingLineSequence"),function n(t){return t===r?(e.consume(t),n):(e.exit("setextHeadingLineSequence"),(0,o.On)(t)?(0,i.N)(e,a,"lineSuffix")(t):a(t))}(u)):t(n)};function a(r){return null===r||(0,o.HP)(r)?(e.exit("setextHeadingLine"),n(r)):t(r)}}},R=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","search","section","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],H=["pre","script","style","textarea"],N={partial:!0,tokenize:function(e,n,t){return function(r){return e.enter("lineEnding"),e.consume(r),e.exit("lineEnding"),e.attempt(f.B,n,t)}}},B={partial:!0,tokenize:function(e,n,t){let r=this;return function(n){return(0,o.HP)(n)?(e.enter("lineEnding"),e.consume(n),e.exit("lineEnding"),l):t(n)};function l(e){return r.parser.lazy[r.now().line]?t(e):n(e)}}},_={partial:!0,tokenize:function(e,n,t){let r=this;return function(n){return null===n?t(n):(e.enter("lineEnding"),e.consume(n),e.exit("lineEnding"),l)};function l(e){return r.parser.lazy[r.now().line]?t(e):n(e)}}},V={concrete:!0,name:"codeFenced",tokenize:function(e,n,t){let r,l=this,a={partial:!0,tokenize:function(e,n,t){let a=0;return function(n){return e.enter("lineEnding"),e.consume(n),e.exit("lineEnding"),u};function u(n){return e.enter("codeFencedFence"),(0,o.On)(n)?(0,i.N)(e,c,"linePrefix",l.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(n):c(n)}function c(n){return n===r?(e.enter("codeFencedFenceSequence"),function n(l){return l===r?(a++,e.consume(l),n):a>=s?(e.exit("codeFencedFenceSequence"),(0,o.On)(l)?(0,i.N)(e,f,"whitespace")(l):f(l)):t(l)}(n)):t(n)}function f(r){return null===r||(0,o.HP)(r)?(e.exit("codeFencedFence"),n(r)):t(r)}}},u=0,s=0;return function(n){var a;let f;return a=n,u=(f=l.events[l.events.length-1])&&"linePrefix"===f[1].type?f[2].sliceSerialize(f[1],!0).length:0,r=a,e.enter("codeFenced"),e.enter("codeFencedFence"),e.enter("codeFencedFenceSequence"),function n(l){return l===r?(s++,e.consume(l),n):s<3?t(l):(e.exit("codeFencedFenceSequence"),(0,o.On)(l)?(0,i.N)(e,c,"whitespace")(l):c(l))}(a)};function c(a){return null===a||(0,o.HP)(a)?(e.exit("codeFencedFence"),l.interrupt?n(a):e.check(_,p,g)(a)):(e.enter("codeFencedFenceInfo"),e.enter("chunkString",{contentType:"string"}),function n(l){return null===l||(0,o.HP)(l)?(e.exit("chunkString"),e.exit("codeFencedFenceInfo"),c(l)):(0,o.On)(l)?(e.exit("chunkString"),e.exit("codeFencedFenceInfo"),(0,i.N)(e,f,"whitespace")(l)):96===l&&l===r?t(l):(e.consume(l),n)}(a))}function f(n){return null===n||(0,o.HP)(n)?c(n):(e.enter("codeFencedFenceMeta"),e.enter("chunkString",{contentType:"string"}),function n(l){return null===l||(0,o.HP)(l)?(e.exit("chunkString"),e.exit("codeFencedFenceMeta"),c(l)):96===l&&l===r?t(l):(e.consume(l),n)}(n))}function p(n){return e.attempt(a,g,d)(n)}function d(n){return e.enter("lineEnding"),e.consume(n),e.exit("lineEnding"),h}function h(n){return u>0&&(0,o.On)(n)?(0,i.N)(e,m,"linePrefix",u+1)(n):m(n)}function m(n){return null===n||(0,o.HP)(n)?e.check(_,p,g)(n):(e.enter("codeFlowValue"),function n(t){return null===t||(0,o.HP)(t)?(e.exit("codeFlowValue"),m(t)):(e.consume(t),n)}(n))}function g(t){return e.exit("codeFenced"),n(t)}}};var U=t(96206);let q={name:"characterReference",tokenize:function(e,n,t){let r,l,i=this,a=0;return function(n){return e.enter("characterReference"),e.enter("characterReferenceMarker"),e.consume(n),e.exit("characterReferenceMarker"),u};function u(n){return 35===n?(e.enter("characterReferenceMarkerNumeric"),e.consume(n),e.exit("characterReferenceMarkerNumeric"),s):(e.enter("characterReferenceValue"),r=31,l=o.lV,c(n))}function s(n){return 88===n||120===n?(e.enter("characterReferenceMarkerHexadecimal"),e.consume(n),e.exit("characterReferenceMarkerHexadecimal"),e.enter("characterReferenceValue"),r=6,l=o.ok,c):(e.enter("characterReferenceValue"),r=7,l=o.BM,c(n))}function c(u){if(59===u&&a){let r=e.exit("characterReferenceValue");return l!==o.lV||(0,U.s)(i.sliceSerialize(r))?(e.enter("characterReferenceMarker"),e.consume(u),e.exit("characterReferenceMarker"),e.exit("characterReference"),n):t(u)}return l(u)&&a++1&&e[f][1].end.offset-e[f][1].start.offset>1?2:1;let p={...e[t][1].end},d={...e[f][1].start};ee(p,-a),ee(d,a),i={type:a>1?"strongSequence":"emphasisSequence",start:p,end:{...e[t][1].end}},o={type:a>1?"strongSequence":"emphasisSequence",start:{...e[f][1].start},end:d},l={type:a>1?"strongText":"emphasisText",start:{...e[t][1].end},end:{...e[f][1].start}},r={type:a>1?"strong":"emphasis",start:{...i.start},end:{...o.end}},e[t][1].end={...i.start},e[f][1].start={...o.end},s=[],e[t][1].end.offset-e[t][1].start.offset&&(s=(0,u.V)(s,[["enter",e[t][1],n],["exit",e[t][1],n]])),s=(0,u.V)(s,[["enter",r,n],["enter",i,n],["exit",i,n],["enter",l,n]]),s=(0,u.V)(s,(0,Q.W)(n.parser.constructs.insideSpan.null,e.slice(t+1,f),n)),s=(0,u.V)(s,[["exit",l,n],["enter",o,n],["exit",o,n],["exit",r,n]]),e[f][1].end.offset-e[f][1].start.offset?(c=2,s=(0,u.V)(s,[["enter",e[f][1],n],["exit",e[f][1],n]])):c=0,(0,u.m)(e,t-1,f-t+3,s),f=t+s.length-c-2;break}}for(f=-1;++fi&&"whitespace"===e[l][1].type&&(l-=2),"atxHeadingSequence"===e[l][1].type&&(i===l-1||l-4>i&&"whitespace"===e[l-2][1].type)&&(l-=i+1===l?2:4),l>i&&(t={type:"atxHeadingText",start:e[i][1].start,end:e[l][1].end},r={type:"chunkText",start:e[i][1].start,end:e[l][1].end,contentType:"text"},(0,u.m)(e,i,l-i+1,[["enter",t,n],["enter",r,n],["exit",r,n],["exit",t,n]])),e},tokenize:function(e,n,t){let r=0;return function(l){var a;return e.enter("atxHeading"),a=l,e.enter("atxHeadingSequence"),function l(a){return 35===a&&r++<6?(e.consume(a),l):null===a||(0,o.Ee)(a)?(e.exit("atxHeadingSequence"),function t(r){return 35===r?(e.enter("atxHeadingSequence"),function n(r){return 35===r?(e.consume(r),n):(e.exit("atxHeadingSequence"),t(r))}(r)):null===r||(0,o.HP)(r)?(e.exit("atxHeading"),n(r)):(0,o.On)(r)?(0,i.N)(e,t,"whitespace")(r):(e.enter("atxHeadingText"),function n(r){return null===r||35===r||(0,o.Ee)(r)?(e.exit("atxHeadingText"),t(r)):(e.consume(r),n)}(r))}(a)):t(a)}(a)}}},42:S,45:[z,S],60:{concrete:!0,name:"htmlFlow",resolveTo:function(e){let n=e.length;for(;n--&&("enter"!==e[n][0]||"htmlFlow"!==e[n][1].type););return n>1&&"linePrefix"===e[n-2][1].type&&(e[n][1].start=e[n-2][1].start,e[n+1][1].start=e[n-2][1].start,e.splice(n-2,2)),e},tokenize:function(e,n,t){let r,l,i,a,u,s=this;return function(n){var t;return t=n,e.enter("htmlFlow"),e.enter("htmlFlowData"),e.consume(t),c};function c(a){return 33===a?(e.consume(a),f):47===a?(e.consume(a),l=!0,h):63===a?(e.consume(a),r=3,s.interrupt?n:D):(0,o.CW)(a)?(e.consume(a),i=String.fromCharCode(a),m):t(a)}function f(l){return 45===l?(e.consume(l),r=2,p):91===l?(e.consume(l),r=5,a=0,d):(0,o.CW)(l)?(e.consume(l),r=4,s.interrupt?n:D):t(l)}function p(r){return 45===r?(e.consume(r),s.interrupt?n:D):t(r)}function d(r){let l="CDATA[";return r===l.charCodeAt(a++)?(e.consume(r),a===l.length)?s.interrupt?n:P:d:t(r)}function h(n){return(0,o.CW)(n)?(e.consume(n),i=String.fromCharCode(n),m):t(n)}function m(a){if(null===a||47===a||62===a||(0,o.Ee)(a)){let u=47===a,c=i.toLowerCase();return!u&&!l&&H.includes(c)?(r=1,s.interrupt?n(a):P(a)):R.includes(i.toLowerCase())?(r=6,u)?(e.consume(a),g):s.interrupt?n(a):P(a):(r=7,s.interrupt&&!s.parser.lazy[s.now().line]?t(a):l?function n(t){return(0,o.On)(t)?(e.consume(t),n):w(t)}(a):y(a))}return 45===a||(0,o.lV)(a)?(e.consume(a),i+=String.fromCharCode(a),m):t(a)}function g(r){return 62===r?(e.consume(r),s.interrupt?n:P):t(r)}function y(n){return 47===n?(e.consume(n),w):58===n||95===n||(0,o.CW)(n)?(e.consume(n),k):(0,o.On)(n)?(e.consume(n),y):w(n)}function k(n){return 45===n||46===n||58===n||95===n||(0,o.lV)(n)?(e.consume(n),k):v(n)}function v(n){return 61===n?(e.consume(n),b):(0,o.On)(n)?(e.consume(n),v):y(n)}function b(n){return null===n||60===n||61===n||62===n||96===n?t(n):34===n||39===n?(e.consume(n),u=n,x):(0,o.On)(n)?(e.consume(n),b):function n(t){return null===t||34===t||39===t||47===t||60===t||61===t||62===t||96===t||(0,o.Ee)(t)?v(t):(e.consume(t),n)}(n)}function x(n){return n===u?(e.consume(n),u=null,S):null===n||(0,o.HP)(n)?t(n):(e.consume(n),x)}function S(e){return 47===e||62===e||(0,o.On)(e)?y(e):t(e)}function w(n){return 62===n?(e.consume(n),C):t(n)}function C(n){return null===n||(0,o.HP)(n)?P(n):(0,o.On)(n)?(e.consume(n),C):t(n)}function P(n){return 45===n&&2===r?(e.consume(n),T):60===n&&1===r?(e.consume(n),A):62===n&&4===r?(e.consume(n),F):63===n&&3===r?(e.consume(n),D):93===n&&5===r?(e.consume(n),L):(0,o.HP)(n)&&(6===r||7===r)?(e.exit("htmlFlowData"),e.check(N,z,E)(n)):null===n||(0,o.HP)(n)?(e.exit("htmlFlowData"),E(n)):(e.consume(n),P)}function E(n){return e.check(B,I,z)(n)}function I(n){return e.enter("lineEnding"),e.consume(n),e.exit("lineEnding"),O}function O(n){return null===n||(0,o.HP)(n)?E(n):(e.enter("htmlFlowData"),P(n))}function T(n){return 45===n?(e.consume(n),D):P(n)}function A(n){return 47===n?(e.consume(n),i="",M):P(n)}function M(n){if(62===n){let t=i.toLowerCase();return H.includes(t)?(e.consume(n),F):P(n)}return(0,o.CW)(n)&&i.length<8?(e.consume(n),i+=String.fromCharCode(n),M):P(n)}function L(n){return 93===n?(e.consume(n),D):P(n)}function D(n){return 62===n?(e.consume(n),F):45===n&&2===r?(e.consume(n),D):P(n)}function F(n){return null===n||(0,o.HP)(n)?(e.exit("htmlFlowData"),z(n)):(e.consume(n),F)}function z(t){return e.exit("htmlFlow"),n(t)}}},61:z,95:S,96:V,126:V},eo={38:q,92:j},ea={[-5]:W,[-4]:W,[-3]:W,33:Z,38:q,42:$,60:[{name:"autolink",tokenize:function(e,n,t){let r=0;return function(n){return e.enter("autolink"),e.enter("autolinkMarker"),e.consume(n),e.exit("autolinkMarker"),e.enter("autolinkProtocol"),l};function l(n){return(0,o.CW)(n)?(e.consume(n),i):64===n?t(n):u(n)}function i(n){return 43===n||45===n||46===n||(0,o.lV)(n)?(r=1,function n(t){return 58===t?(e.consume(t),r=0,a):(43===t||45===t||46===t||(0,o.lV)(t))&&r++<32?(e.consume(t),n):(r=0,u(t))}(n)):u(n)}function a(r){return 62===r?(e.exit("autolinkProtocol"),e.enter("autolinkMarker"),e.consume(r),e.exit("autolinkMarker"),e.exit("autolink"),n):null===r||32===r||60===r||(0,o.JQ)(r)?t(r):(e.consume(r),a)}function u(n){return 64===n?(e.consume(n),s):(0,o.cx)(n)?(e.consume(n),u):t(n)}function s(l){return(0,o.lV)(l)?function l(i){return 46===i?(e.consume(i),r=0,s):62===i?(e.exit("autolinkProtocol").type="autolinkEmail",e.enter("autolinkMarker"),e.consume(i),e.exit("autolinkMarker"),e.exit("autolink"),n):function n(i){if((45===i||(0,o.lV)(i))&&r++<63){let t=45===i?n:l;return e.consume(i),t}return t(i)}(i)}(l):t(l)}}},{name:"htmlText",tokenize:function(e,n,t){let r,l,a,u=this;return function(n){return e.enter("htmlText"),e.enter("htmlTextData"),e.consume(n),s};function s(n){return 33===n?(e.consume(n),c):47===n?(e.consume(n),S):63===n?(e.consume(n),b):(0,o.CW)(n)?(e.consume(n),C):t(n)}function c(n){return 45===n?(e.consume(n),f):91===n?(e.consume(n),l=0,m):(0,o.CW)(n)?(e.consume(n),v):t(n)}function f(n){return 45===n?(e.consume(n),h):t(n)}function p(n){return null===n?t(n):45===n?(e.consume(n),d):(0,o.HP)(n)?(a=p,L(n)):(e.consume(n),p)}function d(n){return 45===n?(e.consume(n),h):p(n)}function h(e){return 62===e?M(e):45===e?d(e):p(e)}function m(n){let r="CDATA[";return n===r.charCodeAt(l++)?(e.consume(n),l===r.length?g:m):t(n)}function g(n){return null===n?t(n):93===n?(e.consume(n),y):(0,o.HP)(n)?(a=g,L(n)):(e.consume(n),g)}function y(n){return 93===n?(e.consume(n),k):g(n)}function k(n){return 62===n?M(n):93===n?(e.consume(n),k):g(n)}function v(n){return null===n||62===n?M(n):(0,o.HP)(n)?(a=v,L(n)):(e.consume(n),v)}function b(n){return null===n?t(n):63===n?(e.consume(n),x):(0,o.HP)(n)?(a=b,L(n)):(e.consume(n),b)}function x(e){return 62===e?M(e):b(e)}function S(n){return(0,o.CW)(n)?(e.consume(n),w):t(n)}function w(n){return 45===n||(0,o.lV)(n)?(e.consume(n),w):function n(t){return(0,o.HP)(t)?(a=n,L(t)):(0,o.On)(t)?(e.consume(t),n):M(t)}(n)}function C(n){return 45===n||(0,o.lV)(n)?(e.consume(n),C):47===n||62===n||(0,o.Ee)(n)?P(n):t(n)}function P(n){return 47===n?(e.consume(n),M):58===n||95===n||(0,o.CW)(n)?(e.consume(n),E):(0,o.HP)(n)?(a=P,L(n)):(0,o.On)(n)?(e.consume(n),P):M(n)}function E(n){return 45===n||46===n||58===n||95===n||(0,o.lV)(n)?(e.consume(n),E):function n(t){return 61===t?(e.consume(t),I):(0,o.HP)(t)?(a=n,L(t)):(0,o.On)(t)?(e.consume(t),n):P(t)}(n)}function I(n){return null===n||60===n||61===n||62===n||96===n?t(n):34===n||39===n?(e.consume(n),r=n,O):(0,o.HP)(n)?(a=I,L(n)):(0,o.On)(n)?(e.consume(n),I):(e.consume(n),T)}function O(n){return n===r?(e.consume(n),r=void 0,A):null===n?t(n):(0,o.HP)(n)?(a=O,L(n)):(e.consume(n),O)}function T(n){return null===n||34===n||39===n||60===n||61===n||96===n?t(n):47===n||62===n||(0,o.Ee)(n)?P(n):(e.consume(n),T)}function A(e){return 47===e||62===e||(0,o.Ee)(e)?P(e):t(e)}function M(r){return 62===r?(e.consume(r),e.exit("htmlTextData"),e.exit("htmlText"),n):t(r)}function L(n){return e.exit("htmlTextData"),e.enter("lineEnding"),e.consume(n),e.exit("lineEnding"),D}function D(n){return(0,o.On)(n)?(0,i.N)(e,F,"linePrefix",u.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(n):F(n)}function F(n){return e.enter("htmlTextData"),a(n)}}}],91:en,92:[{name:"hardBreakEscape",tokenize:function(e,n,t){return function(n){return e.enter("hardBreakEscape"),e.consume(n),r};function r(r){return(0,o.HP)(r)?(e.exit("hardBreakEscape"),n(r)):t(r)}}},j],93:Y,95:$,96:{name:"codeText",previous:function(e){return 96!==e||"characterEscape"===this.events[this.events.length-1][1].type},resolve:function(e){let n,t,r=e.length-4,l=3;if(("lineEnding"===e[3][1].type||"space"===e[l][1].type)&&("lineEnding"===e[r][1].type||"space"===e[r][1].type)){for(n=l;++n-1){let e=t[0];"string"==typeof e?t[0]=e.slice(l):t.shift()}o>0&&t.push(e[i].slice(0,o))}return t}(a,e)}function h(){let{_bufferIndex:e,_index:n,line:t,column:l,offset:i}=r;return{_bufferIndex:e,_index:n,line:t,column:l,offset:i}}function m(e,n){n.restore()}function g(e,n){return function(t,l,i){var o;let a,u,p,d;return Array.isArray(t)?m(t):"tokenize"in t?m([t]):(o=t,function(e){let n=null!==e&&o[e],t=null!==e&&o.null;return m([...Array.isArray(n)?n:n?[n]:[],...Array.isArray(t)?t:t?[t]:[]])(e)});function m(e){return(a=e,u=0,0===e.length)?i:g(e[u])}function g(e){return function(t){let l,i,o,a,u;return(l=h(),i=f.previous,o=f.currentConstruct,a=f.events.length,u=Array.from(s),d={from:a,restore:function(){r=l,f.previous=i,f.currentConstruct=o,f.events.length=a,s=u,k()}},p=e,e.partial||(f.currentConstruct=e),e.name&&f.parser.constructs.disable.null.includes(e.name))?v(t):e.tokenize.call(n?Object.assign(Object.create(f),n):f,c,y,v)(t)}}function y(n){return e(p,d),l}function v(e){return(d.restore(),++u{t.d(n,{I:()=>s});var r=t(75147),l=t(48627),i=t(77457);let o=/[A-Z]/g,a=/-[a-z]/g,u=/^data[-\w.:]+$/i;function s(e,n){let t=(0,i.S)(n),s=n,p=l.R;if(t in e.normal)return e.property[e.normal[t]];if(t.length>4&&"data"===t.slice(0,4)&&u.test(n)){if("-"===n.charAt(4)){let e=n.slice(5).replace(a,f);s="data"+e.charAt(0).toUpperCase()+e.slice(1)}else{let e=n.slice(4);if(!a.test(e)){let t=e.replace(o,c);"-"!==t.charAt(0)&&(t="-"+t),n="data"+t}}p=r.E}return new p(s,n)}function c(e){return"-"+e.toLowerCase()}function f(e){return e.charAt(1).toUpperCase()}},96206:(e,n,t)=>{t.d(n,{s:()=>l});let r=document.createElement("i");function l(e){let n="&"+e+";";r.innerHTML=n;let t=r.textContent;return(59!==t.charCodeAt(t.length-1)||"semi"===e)&&t!==n&&t}},97471:(e,n,t)=>{function r(){}function l(){}t.d(n,{HB:()=>l,ok:()=>r})}}]); +//# sourceMappingURL=40420-df41d34047d4.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40656241.png" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40656241.png" new file mode 100644 index 0000000000000000000000000000000000000000..8f7104000ae3a2fd96e03ccd2c2d8ca7c67eb112 GIT binary patch literal 3653 zcmV-L4!ZG)P)pF%Xr%Mco}04V2$Db|6}|QOCk_KK}3NFC0`;X-}n$I5{eQ& zBuEj;w+MwuS)>RhN)RD{Ody012OJwO>27tl#{`t#S z@7>?SU>`ode(LEb?-cZt7k4JbG;j#P`{2Cy2sAgJE2;baNinIMWee!M2LOqP06>Vq z&XT*;j}fyhWm_#abta_}Ft%KqY46IFZ*Jew?at-%FK=DCJTAu5a^eFZ$wcD^Kk>=M z2mhZ;vKZ6)+Bj32xHBP9++GL*Mg|m8h7j<~o&{!P2KJ7eE4Z%fW}ZtWhJ&H69g(c6 z^3rRsy!6B8clY*4ibVMJb}NxQ_T^|=kESLBp9xrd^#6YJGr!lEpNE)4D2lQyZSWpg z3=SsNS!>vMa6T}z)D!@KfkP0Q$zvUu0tCnC0y#_8*=ujU`TcKwV{ovgiMoyXqOw1` zamRXpd}&?^kvMP3_eaCx+)IOg|8u|phjT|339;4IRpt76k|MtK9{a3c{-u4(CUF)7cacpCC$$GwdcjvVW zSGM|v(2cJ4GSmG*rIdQ)^mD)ag+Fd|a$`bO`kn3mWMpL~j;?n(h?ul7Aq4T|Fa1gE zpAZDH6riO@wMtW&NYQTQMKS&E*Z=vgH(xYWxxU=}>~p6+cKWe*Kk?Yf_2u_Iu=L!c zYe({I>)zg--61H^&C;Fyy}f%kt8sba)alCj>7<;LRRAtaTb8z%m}ya2XIrhN%n}qz zi_!`9L?no0hK7Un-XLDx-#LHg<-%CS{^aVy$%V8H4oxW;17kZ+KXU5WS~vUJ_g{Tu zw?B|_VSc_p7`*tsZ*DyC#M*nFttQqxMr30wgHVb9f{y(L1VEZ#A*XIrwj0#amg&F?m zxBr1^BS=aH5#qRd@2$1od*?hbkOvMB05~22W`6`sWC8Xke)H`MRaFt`co$L;3hRQY zD(|cdELd2tN#@;_{_s-|C5mhBrsX7nzqR@Hg`d8lNe~ERK@0+s#NlXh087Fnd7>Zy z4u2^g4*~~ki|PGa*N~t#wJD1x1!9m&>Aa(wokXVuL?ASCH%Xp)==c+>M*{m{G09Zo zjeXv`cKuE}O|;-Cs>!fwG@F|j&kpx*lXXDitBfemIbEPnXr`K`(=FRVOu{J3D4TDBqhVzT-AYl0+^Or>rl3OpKHIqR97 zBnlqT1qfaOGZ(c~f`~Zy?JJi790y?UwNkBC(y!CM`o_O)9~61kVF@MsqZ`LIZ@tkk z-CLVi9$sDF8`c`gfSXRI%_M!{2hX4W(aD<&&F0e&AMMVyg!dU`W~#TR zRcv6TC;hE!7cMM4_&5>>A!2anNdzHSBForJ5WI-JgUIo9kLBK|oD8fN=nP2GX{Ph` zD^R9O8`sH&U{@8ENCMiT@L?z^G$uP_o2%!PAlzW3wS9Cc{1c9mj!QR~g%gK$cx;H9KNTxndWF7cObD;)S%t|RD zG1}WgUo#5CAQY&eNY1K0_0U94M8ZTe5i0natg69QkxP{T>3Ff-K6QL?yuWMa=dc>t zx|);*RC?*`<^9pYQmd1v+B#nZFSO`ahAV~)BGa?4(OK{r5XZZfh=k}lkYwkRR55@@ zR5L^f1{I*zy0nG`k%GJZ-r3vfiQ~N!D+h!Au5+bM^Jc60k>{T2@Avlhd)D%}E|Nqf zK_3(o7rgKwrSzWDG$%TY7a0$JzEGx02nvZn4{xS#h}^ib<>g0`Kb$j=KBoI*uA=T}r#nt%u zEah14nFNbs@7~^&7E?xQq(~uHA1Y@9ie|H^(kw|D6D&idYCx$k-MFJ&b?nH>nvTr+ z$i_Ou`rUhXtu@|-VU7Rv+8aiyG*X?=NtVs6bQf2n>!0|Y&tt2_5P%^>-3uIr9s{tPYv*~Qn1Tzz1+N9Q0BVBThmU{q*IxY54~Q^L z)2gaC1Qo(V%X1gE56)b>xi_i033Fu( zW;1qp=N>$Q0Pg@vA-wzKiNE;Uzxl0S|4i@Z%{&nYrL_<`jpPB})&cvIVVGHlW|Fn@ zWM@2bL9RUT6}NB^ozk3AUHx65m4#5 z7!SYt)xWHV2i^I0rjwrWkO->7VyDs27|^DYT8%7Gsm`eOeWm34-~Y^KKl51v#Q_N^ z&ztN;;853faFG+0(#{1rtler5OvJzxkeCBF%kr&vZhYtY@1B48m8#cMo#m zT9I+aC#h^_sT7nXNki$WFj?S2r)ddG3{;EFWEa^j)VH*H7ll%YlVwAvp#Q*2&4Z^ezJo+xvSjyzt`l z&wp=sYnxrAg|yB~Ey{8lWf-uhP}a7nB5QZLorA%+85{==?1e~_!liC|v7Kxe!`^N$ zFm&3jbFaR1{>gxWj-u?aE)wT7VUQgwD zzqdcUez0}(`cs>ijy=??EPPqB){9S_ zVw0{dbf}vz9bqFC!77}CQ_6OT5Yje1C ztdXV?Y77+#H7Y7I=nE1X8yhdbbunU*5VNQ7a4Y8MjG0lgzjOVfbkz_gg}Syj!Z$PT z?CgXP@;uM7tgh>sW+RMNE8@A->Fuq9Zu8d4gU2$=9Hi6AX&_;Qb&L{QS*lQ5utG$M zF(ZHSGg6#kV{nKEy&XDy&wFQ#vDS`8qi6z}O{G*-Rfi`%?6_C}5lzPZUO#Iz?6m6l z`(;@=7fV`|m9^18EG>7X3WpiT{i.d(e,{BH:()=>m,Cp:()=>y,EN:()=>f,Eh:()=>h,F$:()=>p,GU:()=>R,MK:()=>l,S$:()=>n,ZM:()=>q,ZZ:()=>T,Zw:()=>a,d2:()=>c,f8:()=>b,gn:()=>o,hT:()=>j,j3:()=>u,lQ:()=>r,nJ:()=>d,ox:()=>E,pl:()=>P,rX:()=>O,y9:()=>F,yy:()=>C});var s=i(52775),n="u"=0&&t!==1/0}function u(t,e){return Math.max(t+(e||0)-Date.now(),0)}function c(t,e){return"function"==typeof t?t(e):t}function h(t,e){return"function"==typeof t?t(e):t}function l(t,e){let{type:i="all",exact:s,fetchStatus:n,predicate:r,queryKey:a,stale:o}=t;if(a){if(s){if(e.queryHash!==p(a,e.options))return!1}else if(!y(e.queryKey,a))return!1}if("all"!==i){let t=e.isActive();if("active"===i&&!t||"inactive"===i&&t)return!1}return("boolean"!=typeof o||e.isStale()===o)&&(!n||n===e.state.fetchStatus)&&(!r||!!r(e))}function d(t,e){let{exact:i,status:s,predicate:n,mutationKey:r}=t;if(r){if(!e.options.mutationKey)return!1;if(i){if(f(e.options.mutationKey)!==f(r))return!1}else if(!y(e.options.mutationKey,r))return!1}return(!s||e.state.status===s)&&(!n||!!n(e))}function p(t,e){return(e?.queryKeyHashFn||f)(t)}function f(t){return JSON.stringify(t,(t,e)=>w(e)?Object.keys(e).sort().reduce((t,i)=>(t[i]=e[i],t),{}):e)}function y(t,e){return t===e||typeof t==typeof e&&!!t&&!!e&&"object"==typeof t&&"object"==typeof e&&Object.keys(e).every(i=>y(t[i],e[i]))}var v=Object.prototype.hasOwnProperty;function m(t,e){if(t===e)return t;let i=g(t)&&g(e);if(!i&&!(w(t)&&w(e)))return e;let s=(i?t:Object.keys(t)).length,n=i?e:Object.keys(e),r=n.length,a=i?Array(r):{},o=0;for(let u=0;u{s.zs.setTimeout(e,t)})}function P(t,e,i){return"function"==typeof i.structuralSharing?i.structuralSharing(t,e):!1!==i.structuralSharing?m(t,e):e}function O(t){return t}function F(t,e,i=0){let s=[...t,e];return i&&s.length>i?s.slice(1):s}function T(t,e,i=0){let s=[e,...t];return i&&s.length>i?s.slice(0,-1):s}var j=Symbol();function q(t,e){return!t.queryFn&&e?.initialPromise?()=>e.initialPromise:t.queryFn&&t.queryFn!==j?t.queryFn:()=>Promise.reject(Error(`Missing queryFn: '${t.queryHash}'`))}function R(t,e){return"function"==typeof t?t(...e):!!t}function E(t,e,i){let s,n=!1;return Object.defineProperty(t,"signal",{enumerable:!0,get:()=>(s??=e(),n||(n=!0,s.aborted?i():s.addEventListener("abort",i,{once:!0})),s)}),t}},26261:(t,e,i)=>{let s,n,r,a,o,u;i.d(e,{jG:()=>h,x3:()=>c});var c=i(52775).Zq,h=(s=[],n=0,r=t=>{t()},a=t=>{t()},o=c,{batch:t=>{let e;n++;try{e=t()}finally{let t;--n||(t=s,s=[],t.length&&o(()=>{a(()=>{t.forEach(t=>{r(t)})})}))}return e},batchCalls:t=>(...e)=>{u(()=>{t(...e)})},schedule:u=t=>{n?s.push(t):o(()=>{r(t)})},setNotifyFunction:t=>{r=t},setBatchNotifyFunction:t=>{a=t},setScheduler:t=>{o=t}})},29658:(t,e,i)=>{i.d(e,{m:()=>r});var s=i(66500),n=i(24880),r=new class extends s.Q{#t;#e;#i;constructor(){super(),this.#i=t=>{if(!n.S$&&window.addEventListener){let e=()=>t();return window.addEventListener("visibilitychange",e,!1),()=>{window.removeEventListener("visibilitychange",e)}}}}onSubscribe(){this.#e||this.setEventListener(this.#i)}onUnsubscribe(){this.hasListeners()||(this.#e?.(),this.#e=void 0)}setEventListener(t){this.#i=t,this.#e?.(),this.#e=t(t=>{"boolean"==typeof t?this.setFocused(t):this.onFocus()})}setFocused(t){this.#t!==t&&(this.#t=t,this.onFocus())}onFocus(){let t=this.isFocused();this.listeners.forEach(e=>{e(t)})}isFocused(){return"boolean"==typeof this.#t?this.#t:globalThis.document?.visibilityState!=="hidden"}}},36158:(t,e,i)=>{i.d(e,{$:()=>o,s:()=>a});var s=i(26261),n=i(71692),r=i(58904),a=class extends n.k{#s;#n;#r;#a;constructor(t){super(),this.#s=t.client,this.mutationId=t.mutationId,this.#r=t.mutationCache,this.#n=[],this.state=t.state||o(),this.setOptions(t.options),this.scheduleGc()}setOptions(t){this.options=t,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(t){this.#n.includes(t)||(this.#n.push(t),this.clearGcTimeout(),this.#r.notify({type:"observerAdded",mutation:this,observer:t}))}removeObserver(t){this.#n=this.#n.filter(e=>e!==t),this.scheduleGc(),this.#r.notify({type:"observerRemoved",mutation:this,observer:t})}optionalRemove(){this.#n.length||("pending"===this.state.status?this.scheduleGc():this.#r.remove(this))}continue(){return this.#a?.continue()??this.execute(this.state.variables)}async execute(t){let e=()=>{this.#o({type:"continue"})},i={client:this.#s,meta:this.options.meta,mutationKey:this.options.mutationKey};this.#a=(0,r.II)({fn:()=>this.options.mutationFn?this.options.mutationFn(t,i):Promise.reject(Error("No mutationFn found")),onFail:(t,e)=>{this.#o({type:"failed",failureCount:t,error:e})},onPause:()=>{this.#o({type:"pause"})},onContinue:e,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>this.#r.canRun(this)});let s="pending"===this.state.status,n=!this.#a.canStart();try{if(s)e();else{this.#o({type:"pending",variables:t,isPaused:n}),await this.#r.config.onMutate?.(t,this,i);let e=await this.options.onMutate?.(t,i);e!==this.state.context&&this.#o({type:"pending",context:e,variables:t,isPaused:n})}let r=await this.#a.start();return await this.#r.config.onSuccess?.(r,t,this.state.context,this,i),await this.options.onSuccess?.(r,t,this.state.context,i),await this.#r.config.onSettled?.(r,null,this.state.variables,this.state.context,this,i),await this.options.onSettled?.(r,null,t,this.state.context,i),this.#o({type:"success",data:r}),r}catch(e){try{await this.#r.config.onError?.(e,t,this.state.context,this,i)}catch(t){Promise.reject(t)}try{await this.options.onError?.(e,t,this.state.context,i)}catch(t){Promise.reject(t)}try{await this.#r.config.onSettled?.(void 0,e,this.state.variables,this.state.context,this,i)}catch(t){Promise.reject(t)}try{await this.options.onSettled?.(void 0,e,t,this.state.context,i)}catch(t){Promise.reject(t)}throw this.#o({type:"error",error:e}),e}finally{this.#r.runNext(this)}}#o(t){this.state=(e=>{switch(t.type){case"failed":return{...e,failureCount:t.failureCount,failureReason:t.error};case"pause":return{...e,isPaused:!0};case"continue":return{...e,isPaused:!1};case"pending":return{...e,context:t.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:t.isPaused,status:"pending",variables:t.variables,submittedAt:Date.now()};case"success":return{...e,data:t.data,failureCount:0,failureReason:null,error:null,status:"success",isPaused:!1};case"error":return{...e,data:void 0,error:t.error,failureCount:e.failureCount+1,failureReason:t.error,isPaused:!1,status:"error"}}})(this.state),s.jG.batch(()=>{this.#n.forEach(e=>{e.onMutationUpdate(t)}),this.#r.notify({mutation:this,type:"updated",action:t})})}};function o(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:"idle",variables:void 0,submittedAt:0}}},52775:(t,e,i)=>{i.d(e,{Zq:()=>r,zs:()=>n});var s={setTimeout:(t,e)=>setTimeout(t,e),clearTimeout:t=>clearTimeout(t),setInterval:(t,e)=>setInterval(t,e),clearInterval:t=>clearInterval(t)},n=new class{#u=s;#c=!1;setTimeoutProvider(t){this.#u=t}setTimeout(t,e){return this.#u.setTimeout(t,e)}clearTimeout(t){this.#u.clearTimeout(t)}setInterval(t,e){return this.#u.setInterval(t,e)}clearInterval(t){this.#u.clearInterval(t)}};function r(t){setTimeout(t,0)}},58904:(t,e,i)=>{i.d(e,{II:()=>l,cc:()=>c,v_:()=>u,wm:()=>h});var s=i(29658),n=i(96035),r=i(94658),a=i(24880);function o(t){return Math.min(1e3*2**t,3e4)}function u(t){return(t??"online")!=="online"||n.t.isOnline()}var c=class extends Error{constructor(t){super("CancelledError"),this.revert=t?.revert,this.silent=t?.silent}};function h(t){return t instanceof c}function l(t){let e,i=!1,h=0,l=(0,r.T)(),d=()=>s.m.isFocused()&&("always"===t.networkMode||n.t.isOnline())&&t.canRun(),p=()=>u(t.networkMode)&&t.canRun(),f=t=>{"pending"===l.status&&(e?.(),l.resolve(t))},y=t=>{"pending"===l.status&&(e?.(),l.reject(t))},v=()=>new Promise(i=>{e=t=>{("pending"!==l.status||d())&&i(t)},t.onPause?.()}).then(()=>{e=void 0,"pending"===l.status&&t.onContinue?.()}),m=()=>{let e;if("pending"!==l.status)return;let s=0===h?t.initialPromise:void 0;try{e=s??t.fn()}catch(t){e=Promise.reject(t)}Promise.resolve(e).then(f).catch(e=>{if("pending"!==l.status)return;let s=t.retry??3*!a.S$,n=t.retryDelay??o,r="function"==typeof n?n(h,e):n,u=!0===s||"number"==typeof s&&hd()?void 0:v()).then(()=>{i?y(e):m()}))})};return{promise:l,status:()=>l.status,cancel:e=>{if("pending"===l.status){let i=new c(e);y(i),t.onCancel?.(i)}},continue:()=>(e?.(),l),cancelRetry:()=>{i=!0},continueRetry:()=>{i=!1},canStart:p,start:()=>(p()?m():v().then(m),l)}}},58959:(t,e,i)=>{i.d(e,{PL:()=>n,RQ:()=>u,rB:()=>o});var s=i(24880);function n(t){return{onFetch:(e,i)=>{let n=e.options,o=e.fetchOptions?.meta?.fetchMore?.direction,u=e.state.data?.pages||[],c=e.state.data?.pageParams||[],h={pages:[],pageParams:[]},l=0,d=async()=>{let i=!1,d=(0,s.ZM)(e.options,e.fetchOptions),p=async(t,n,r)=>{let a;if(i)return Promise.reject();if(null==n&&t.pages.length)return Promise.resolve(t);let o=(a={client:e.client,queryKey:e.queryKey,pageParam:n,direction:r?"backward":"forward",meta:e.options.meta},(0,s.ox)(a,()=>e.signal,()=>i=!0),a),u=await d(o),{maxPages:c}=e.options,h=r?s.ZZ:s.y9;return{pages:h(t.pages,u,c),pageParams:h(t.pageParams,n,c)}};if(o&&u.length){let t="backward"===o,e={pages:u,pageParams:c},i=(t?a:r)(n,e);h=await p(e,i,t)}else{let e=t??u.length;do{let t=0===l?c[0]??n.initialPageParam:r(n,h);if(l>0&&null==t)break;h=await p(h,t),l++}while(le.options.persister?.(d,{client:e.client,queryKey:e.queryKey,meta:e.options.meta,signal:e.signal},i):e.fetchFn=d}}}function r(t,{pages:e,pageParams:i}){let s=e.length-1;return e.length>0?t.getNextPageParam(e[s],e,i[s],i):void 0}function a(t,{pages:e,pageParams:i}){return e.length>0?t.getPreviousPageParam?.(e[0],e,i[0],i):void 0}function o(t,e){return!!e&&null!=r(t,e)}function u(t,e){return!!e&&!!t.getPreviousPageParam&&null!=a(t,e)}},66500:(t,e,i)=>{i.d(e,{Q:()=>s});var s=class{constructor(){this.listeners=new Set,this.subscribe=this.subscribe.bind(this)}subscribe(t){return this.listeners.add(t),this.onSubscribe(),()=>{this.listeners.delete(t),this.onUnsubscribe()}}hasListeners(){return this.listeners.size>0}onSubscribe(){}onUnsubscribe(){}}},71692:(t,e,i)=>{i.d(e,{k:()=>r});var s=i(52775),n=i(24880),r=class{#h;destroy(){this.clearGcTimeout()}scheduleGc(){this.clearGcTimeout(),(0,n.gn)(this.gcTime)&&(this.#h=s.zs.setTimeout(()=>{this.optionalRemove()},this.gcTime))}updateGcTime(t){this.gcTime=Math.max(this.gcTime||0,t??(n.S$?1/0:3e5))}clearGcTimeout(){this.#h&&(s.zs.clearTimeout(this.#h),this.#h=void 0)}}},79757:(t,e,i)=>{i.d(e,{X:()=>o,k:()=>u});var s=i(24880),n=i(26261),r=i(58904),a=i(71692),o=class extends a.k{#l;#d;#p;#s;#a;#f;#y;constructor(t){super(),this.#y=!1,this.#f=t.defaultOptions,this.setOptions(t.options),this.observers=[],this.#s=t.client,this.#p=this.#s.getQueryCache(),this.queryKey=t.queryKey,this.queryHash=t.queryHash,this.#l=h(this.options),this.state=t.state??this.#l,this.scheduleGc()}get meta(){return this.options.meta}get promise(){return this.#a?.promise}setOptions(t){if(this.options={...this.#f,...t},this.updateGcTime(this.options.gcTime),this.state&&void 0===this.state.data){let t=h(this.options);void 0!==t.data&&(this.setState(c(t.data,t.dataUpdatedAt)),this.#l=t)}}optionalRemove(){this.observers.length||"idle"!==this.state.fetchStatus||this.#p.remove(this)}setData(t,e){let i=(0,s.pl)(this.state.data,t,this.options);return this.#o({data:i,type:"success",dataUpdatedAt:e?.updatedAt,manual:e?.manual}),i}setState(t,e){this.#o({type:"setState",state:t,setStateOptions:e})}cancel(t){let e=this.#a?.promise;return this.#a?.cancel(t),e?e.then(s.lQ).catch(s.lQ):Promise.resolve()}destroy(){super.destroy(),this.cancel({silent:!0})}reset(){this.destroy(),this.setState(this.#l)}isActive(){return this.observers.some(t=>!1!==(0,s.Eh)(t.options.enabled,this))}isDisabled(){return this.getObserversCount()>0?!this.isActive():this.options.queryFn===s.hT||this.state.dataUpdateCount+this.state.errorUpdateCount===0}isStatic(){return this.getObserversCount()>0&&this.observers.some(t=>"static"===(0,s.d2)(t.options.staleTime,this))}isStale(){return this.getObserversCount()>0?this.observers.some(t=>t.getCurrentResult().isStale):void 0===this.state.data||this.state.isInvalidated}isStaleByTime(t=0){return void 0===this.state.data||"static"!==t&&(!!this.state.isInvalidated||!(0,s.j3)(this.state.dataUpdatedAt,t))}onFocus(){let t=this.observers.find(t=>t.shouldFetchOnWindowFocus());t?.refetch({cancelRefetch:!1}),this.#a?.continue()}onOnline(){let t=this.observers.find(t=>t.shouldFetchOnReconnect());t?.refetch({cancelRefetch:!1}),this.#a?.continue()}addObserver(t){this.observers.includes(t)||(this.observers.push(t),this.clearGcTimeout(),this.#p.notify({type:"observerAdded",query:this,observer:t}))}removeObserver(t){this.observers.includes(t)&&(this.observers=this.observers.filter(e=>e!==t),this.observers.length||(this.#a&&(this.#y?this.#a.cancel({revert:!0}):this.#a.cancelRetry()),this.scheduleGc()),this.#p.notify({type:"observerRemoved",query:this,observer:t}))}getObserversCount(){return this.observers.length}invalidate(){this.state.isInvalidated||this.#o({type:"invalidate"})}async fetch(t,e){let i;if("idle"!==this.state.fetchStatus&&this.#a?.status()!=="rejected"){if(void 0!==this.state.data&&e?.cancelRefetch)this.cancel({silent:!0});else if(this.#a)return this.#a.continueRetry(),this.#a.promise}if(t&&this.setOptions(t),!this.options.queryFn){let t=this.observers.find(t=>t.options.queryFn);t&&this.setOptions(t.options)}let n=new AbortController,a=t=>{Object.defineProperty(t,"signal",{enumerable:!0,get:()=>(this.#y=!0,n.signal)})},o=()=>{let t,i=(0,s.ZM)(this.options,e),n=(a(t={client:this.#s,queryKey:this.queryKey,meta:this.meta}),t);return(this.#y=!1,this.options.persister)?this.options.persister(i,n,this):i(n)},u=(a(i={fetchOptions:e,options:this.options,queryKey:this.queryKey,client:this.#s,state:this.state,fetchFn:o}),i);this.options.behavior?.onFetch(u,this),this.#d=this.state,("idle"===this.state.fetchStatus||this.state.fetchMeta!==u.fetchOptions?.meta)&&this.#o({type:"fetch",meta:u.fetchOptions?.meta}),this.#a=(0,r.II)({initialPromise:e?.initialPromise,fn:u.fetchFn,onCancel:t=>{t instanceof r.cc&&t.revert&&this.setState({...this.#d,fetchStatus:"idle"}),n.abort()},onFail:(t,e)=>{this.#o({type:"failed",failureCount:t,error:e})},onPause:()=>{this.#o({type:"pause"})},onContinue:()=>{this.#o({type:"continue"})},retry:u.options.retry,retryDelay:u.options.retryDelay,networkMode:u.options.networkMode,canRun:()=>!0});try{let t=await this.#a.start();if(void 0===t)throw Error(`${this.queryHash} data is undefined`);return this.setData(t),this.#p.config.onSuccess?.(t,this),this.#p.config.onSettled?.(t,this.state.error,this),t}catch(t){if(t instanceof r.cc){if(t.silent)return this.#a.promise;else if(t.revert){if(void 0===this.state.data)throw t;return this.state.data}}throw this.#o({type:"error",error:t}),this.#p.config.onError?.(t,this),this.#p.config.onSettled?.(this.state.data,t,this),t}finally{this.scheduleGc()}}#o(t){let e=e=>{switch(t.type){case"failed":return{...e,fetchFailureCount:t.failureCount,fetchFailureReason:t.error};case"pause":return{...e,fetchStatus:"paused"};case"continue":return{...e,fetchStatus:"fetching"};case"fetch":return{...e,...u(e.data,this.options),fetchMeta:t.meta??null};case"success":let i={...e,...c(t.data,t.dataUpdatedAt),dataUpdateCount:e.dataUpdateCount+1,...!t.manual&&{fetchStatus:"idle",fetchFailureCount:0,fetchFailureReason:null}};return this.#d=t.manual?i:void 0,i;case"error":let s=t.error;return{...e,error:s,errorUpdateCount:e.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:e.fetchFailureCount+1,fetchFailureReason:s,fetchStatus:"idle",status:"error",isInvalidated:!0};case"invalidate":return{...e,isInvalidated:!0};case"setState":return{...e,...t.state}}};this.state=e(this.state),n.jG.batch(()=>{this.observers.forEach(t=>{t.onQueryUpdate()}),this.#p.notify({query:this,type:"updated",action:t})})}};function u(t,e){return{fetchFailureCount:0,fetchFailureReason:null,fetchStatus:(0,r.v_)(e.networkMode)?"fetching":"paused",...void 0===t&&{error:null,status:"pending"}}}function c(t,e){return{data:t,dataUpdatedAt:e??Date.now(),error:null,isInvalidated:!1,status:"success"}}function h(t){let e="function"==typeof t.initialData?t.initialData():t.initialData,i=void 0!==e,s=i?"function"==typeof t.initialDataUpdatedAt?t.initialDataUpdatedAt():t.initialDataUpdatedAt:0;return{data:e,dataUpdateCount:0,dataUpdatedAt:i?s??Date.now():0,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null,isInvalidated:!1,status:i?"success":"pending",fetchStatus:"idle"}}},94658:(t,e,i)=>{i.d(e,{T:()=>n,b:()=>r});var s=i(24880);function n(){let t,e,i=new Promise((i,s)=>{t=i,e=s});function s(t){Object.assign(i,t),delete i.resolve,delete i.reject}return i.status="pending",i.catch(()=>{}),i.resolve=e=>{s({status:"fulfilled",value:e}),t(e)},i.reject=t=>{s({status:"rejected",reason:t}),e(t)},i}function r(t){let e;if(t.then(t=>(e=t,t),s.lQ)?.catch(s.lQ),void 0!==e)return{data:e}}},96035:(t,e,i)=>{i.d(e,{t:()=>r});var s=i(66500),n=i(24880),r=new class extends s.Q{#v=!0;#e;#i;constructor(){super(),this.#i=t=>{if(!n.S$&&window.addEventListener){let e=()=>t(!0),i=()=>t(!1);return window.addEventListener("online",e,!1),window.addEventListener("offline",i,!1),()=>{window.removeEventListener("online",e),window.removeEventListener("offline",i)}}}}onSubscribe(){this.#e||this.setEventListener(this.#i)}onUnsubscribe(){this.hasListeners()||(this.#e?.(),this.#e=void 0)}setEventListener(t){this.#i=t,this.#e?.(),this.#e=t(this.setOnline.bind(this))}setOnline(t){this.#v!==t&&(this.#v=t,this.listeners.forEach(e=>{e(t)}))}isOnline(){return this.#v}}}}]); +//# sourceMappingURL=40746-9d3435986a2e.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40771-27822f7b2932.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40771-27822f7b2932.js" new file mode 100644 index 0000000..eb360a5 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40771-27822f7b2932.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:40771-27822f7b2932.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[40771],{13523:(e,t,r)=>{r.d(t,{$r:()=>s,M1:()=>a,li:()=>i,pS:()=>u,wE:()=>c});var o=r(56038);let i="X-Fetch-Nonce",n=new Set;function s(e){n.add(e)}function a(){return n.values().next().value||""}function c(e){let t={};return void 0!==e&&(t["X-Fetch-Nonce-To-Validate"]=e),void 0===e?t[i]=a():n.has(e)?t[i]=e:t[i]=Array.from(n).join(","),t}function u(){let e=o.XC?.head?.querySelector('meta[name="fetch-nonce"]')?.content||"";e&&s(e)}},25641:(e,t,r)=>{let o;r.d(t,{CB:()=>S,DW:()=>v,F2:()=>Z,FF:()=>y,Ik:()=>N,JP:()=>T,Jz:()=>l,MB:()=>h,NJ:()=>W,OC:()=>E,Od:()=>L,Q7:()=>K,SI:()=>J,Th:()=>Q,VR:()=>p,Vb:()=>q,Vc:()=>j,XN:()=>D,Xo:()=>A,Xs:()=>x,Y6:()=>I,Ye:()=>ee,Z6:()=>F,Z8:()=>C,Zs:()=>d,aX:()=>_,fG:()=>m,hV:()=>eo,j$:()=>z,k4:()=>er,lG:()=>M,lj:()=>U,mF:()=>f,mx:()=>et,nN:()=>b,p:()=>G,pF:()=>g,qS:()=>H,rT:()=>P,vg:()=>R,x_:()=>V,yA:()=>B,yR:()=>X,yh:()=>Y,z$:()=>k});var i=r(53419),n=r(59672),s=r(35247),a=r(44902),c=r(79826),u=r(68637);let l="/copilot",p=`${l}/spaces`,d="https://github.com/features/copilot#pricing",g="https://github.com/settings/billing/budgets",h="https://github.com/settings/billing",m=50,f=20,_=5,w="For more on scraping GitHub and how it may affect your rights, please review our Terms of Service (https://docs.github.com/en/site-policy/github-terms/github-terms-of-service)",b={400:"This message could not be processed.",401:"You\u2019re not authorized to use Copilot.",403:`Access denied. You do not have permission to view this. ${w}`,404:"Resource not found. Please try again.",408:"Your network connection was interrupted. Please try again.",413:"Message too large. Please shorten it or remove some references and try again.",429:`GitHub API rate limit exceeded. Please wait and try again. ${w}`},y={extensionForbidden:"Copilot extensions can\u2019t be used in shared conversations. Please unshare the conversation and try again."},v="I'm sorry but there was an error. Please try again.";function $({status:e,path:t,method:r,error:o,requestId:n,responseBody:a}){if(s.W.capiErrorResponseTelemetry){let s={status:e,requestId:n||"",path:t,method:r,error:o};a&&(s.responseBody=a.substring(0,100)),(0,i.BI)("dotcom_chat.capi_request_error",s)}}async function G({authToken:e,basePath:t,body:r,integrationId:o,method:i,path:n,streamingResponse:s=!1,realIp:c,signal:u,apiVersion:l}){try{let p,d={Authorization:e.authorizationHeaderValue};for(let e of(o&&(d["copilot-integration-id"]=o),(0,a.f)())){let t=e.split("="),r=t[0]?.replaceAll("_","-"),o="1";t.length>1&&(o=t[1]),d[`X-Experiment-${r}`]=o}l&&(d["X-GitHub-Api-Version"]=l),s&&(d["Content-Type"]="text/event-stream"),c&&(d["X-Real-IP"]=c);let g=await fetch(t+n,{method:i,mode:"cors",cache:"no-cache",headers:d,body:JSON.stringify(r),signal:u});if(g.ok)return g;try{let e=g.clone();p=await e.text()}catch{p=void 0}return $({status:g.status,requestId:g.headers?.get("X-GitHub-Request-ID")||"",path:n,method:i,error:b[g.status]||v,responseBody:p}),{status:g.status,ok:!1,error:b[g.status]||v,response:g}}catch(e){return $({status:500,path:n,method:i,error:e instanceof Error?e.message:v}),{status:500,ok:!1,error:v}}}function I({role:e,content:t,mediaContent:r,error:o,references:i=[],thread:n,confirmationResponses:s,clientSkillConfirmations:a,parentMessageID:c,skillOptions:u}){return{id:crypto.randomUUID(),threadID:n?.id||"temp",role:e,content:t,mediaContent:r,createdAt:new Date().toISOString(),error:o,references:i,skillExecutions:[],clientConfirmations:s,confirmations:a,parentMessageID:c,clientSide:!0,skillOptions:u}}function S(e){return e?.name||"New chat"}function k(e){switch(e.type){case"figma":return e.title||e.url;case"file":case"folder":return O(e);case"file-diff":let t,r;return o=e,t=o.headFile?.path??o.baseFile?.path,r=t?.split("/").pop()??"",o.selectedRange&&o.selectedRange.start?o.selectedRange.end&&o.selectedRange.start!==o.selectedRange.end?`${r} ${o.selectedRange.start}-${o.selectedRange.end}`:`${r} ${o.selectedRange.start}`:r;case"snippet":var o,i,n,s,a,u=e;if(u.title)return u.title;let l=u.path.split("/").pop(),p=`${u.range.start}-${u.range.end}`;return`${l}:${p}`;case"repository":return i=e,`${i.ownerLogin}/${i.name}`;case"symbol":case"image":case"thread-scoped-file":case"thread-scoped-snippet":case"copilot-space":return e.name;case"commit":return e.message;case"pull-request":case"draft-issue":case"draft-update-issue":case"loop-node":case"web-search-result":case"loading":return e.title;case"tree-comparison":return n=e,`${n.baseRevision.substring(0,5)}..${n.headRevision.substring(0,5)}`;case"third-party":return e.displayName;case"workspace-terminal-log":return"terminal log";case"text":return e.name?e.name:"text reference";case"repo-instructions":return"copilot-instructions.md";case"issue":case"discussion":return e?.title||e.number.toString();case"org-instructions":return e?.owner;case"loop-execution":return e.loopTitle;case"job":return(s=e).jobName?`${s.jobName}`:s.repoOwner&&s.repoName?`${s.repoOwner}/${s.repoName} workflow run`:"Workflow run.";case"github-url":let d;return a=e,d=(0,c.T)(),d?.url.endsWith(a.url)?d?.title??"Previous page":"Previous page";case"pr-overview":return"Overview";case"pr-files-changed":return"Files changed";default:return"unrecognized reference"}}function q(e){switch(e.type){case"figma":case"web-search-result":case"github-url":return`${e.type}-${e.url}`;case"file":return`${e.type}-${e.repoOwner}/${e.repoName}@${e.commitOID}:${e.path}`;case"folder":return`${e.type}-${e.repoOwner}/${e.repoName}@${e.ref}:${e.path}`;case"file-changes":return`${e.type}-${e.repository.owner}/${e.repository.owner}@${e.ref}:${e.path}`;case"file-diff":return`${e.type}:${e.baseFile?.path}@${e.baseFile?.commitOID}-${e.headFile?.path}@${e.headFile?.commitOID}##${e.selectedRange?.start}-${e.selectedRange?.end}`;case"snippet":return`${e.type}-${e.repoOwner}/${e.repoName}@${e.commitOID}:${e.path}#${e.range.start}-${e.range.end}`;case"repository":return`${e.type}-${e.id}-${e.ownerLogin}/${e.name}`;case"symbol":return`${e.type}-${e.kind}-${e.name}`;case"commit":return`${e.type}-@${e.oid}-${e.repository.owner}/${e.repository.name}`;case"pull-request":return`${e.type}-${e.id}-${e.repository.ownerLogin}/${e.repository.name}`;case"web-search":return`${e.type}-${e.query}`;case"workspace-terminal-log":return`${e.type}-${e.repoOwner}/${e.repoName}@${e.pullRequestID}`;case"repo-instructions":return`${e.type}-.github/custom-instructions.md`;case"image":return`${e.type}-${e.id}/${e.name}`;case"issue":case"discussion":return`${e.repository.owner}/${e.repository.name}#${e.number}`;case"draft-issue":case"draft-update-issue":return`${e.type}-${e.tag}`;case"text":case"thread-scoped-file":return`${e.type}-${e.name}`;case"thread-scoped-snippet":return`${e.type}-${e.name}-${e.range.start}-${e.range.end}`;case"loop-node":case"loading":case"job":return`${e.type}-${e.id}`;case"loop-execution":return`${e.type}-${e.executionID}`;case"copilot-space":return`${e.type}`;default:return""}}let R=()=>o??(o=new Set(["commit","discussion","figma","file","file-v2","file-diff","folder","issue","job","draft-issue","draft-update-issue","pull-request","org-instructions","repo-instructions","snippet","symbol","third-party","web-search","web-search-result","image","thread-scoped-file","thread-scoped-snippet","loading","loop-node","repository","copilot-space","loop-execution","github-url"]));function P(e){let t=[];for(let r of e??[])if(R().has(r.type)){if("web-search"===r.type){for(let e of r.results){let r={...e,type:"web-search-result"};t.push(r)}continue}t.push(r)}return t}function T(e){switch(e.type){case"repository":return`/${e.ownerLogin}/${e.name}`;case"commit":return e.permalink;case"third-party":return e.displayUrl;case"snippet":if(("file"===e.type||"snippet"===e.type)&&e.languageName&&"markdown"===e.languageName.toLowerCase()){let t=new URL(e.url,window.location.origin);return t.search="plain=1",t.href}return e.url;case"job":var t;return((t=e).jobUrl?t.jobUrl:t.repoOwner&&t.repoName&&t.workflow?["",t.repoOwner,t.repoName,"actions","runs",t.workflow.id,"job",t.id].map(encodeURIComponent).join("/"):void 0)??"#";case"loop-node":return e.url??"#";case"loop-execution":return`/copilot/l/${e.loopID}?version=${e.version}`;case"issue":case"figma":case"file":case"file-diff":case"folder":case"pull-request":case"discussion":case"repo-instructions":case"org-instructions":case"web-search-result":case"github-url":return e.url;default:return"#"}}function x(e){return"#"!==e&&""!==e}function C(e){let t=e.path.split("/");return(t.pop(),0===t.length)?"/":t.join("/")}function A(e){return O(e)}function O(e){return e.path.split("/").pop()||e.path}function L(e,t,r,o){return{type:"file",url:new URL((0,n.IO9)({repo:t,commitish:r??t.refInfo.name,action:"blob",path:e}),window.location.origin).href,path:e,repoID:t.id,repoOwner:t.ownerLogin,repoName:t.name,ref:r??t.ref,commitOID:o??t.commitOID}}function D(e,t,r){return{...L(e,r),type:"snippet",range:{start:t.start,end:t.end}}}function j(e){return{id:crypto.randomUUID(),title:e,type:"loading",isClientOnly:!0}}function E(e,t){return{type:"folder",url:new URL((0,n.IO9)({repo:t,commitish:t.refInfo.name,action:"tree",path:e}),window.location.origin).href,path:e,repoID:t.id,repoOwner:t.ownerLogin,repoName:t.name,ref:t.ref}}function H(e){return{...e,type:"repository"}}function U(e){return{owner:`${e} Instructions`,type:"org-instructions",url:"https://docs.github.com/en/copilot/customizing-copilot/adding-organization-custom-instructions-for-github-copilot"}}function N(e,t,r){return{type:"loop-node",id:e,title:t,url:r}}function F(e){return!!e}function W(e){return e.reduce((e,t)=>("customInstructions"in t&&Array.isArray(t.customInstructions)&&e.push(...t.customInstructions),e),[])}function M(e,t){return W(t).length>0}function z(e){return W(e).map(e=>e.owner).join(",")}function V(e,t){return e===t||void 0!==e&&void 0!==t&&q(e)===q(t)}function X(e,t){if(void 0===e&&void 0===t)return!0;if(void 0===e||void 0===t||e.length!==t.length)return!1;for(let r=0;r"github.agent"===e.type);if(t)return{name:t.login,avatarURL:t.avatarURL,type:"agent"}}return{name:"Copilot",avatarURL:"",type:"copilot"}}function Y(e){return"agent"===e.type}function K(e){let t=e.map(e=>Q(e,"")).filter(e=>e?.type==="agent"),r=new Map;for(let e of t)r.set(e.name,e);return Array.from(r.values())}function Z(e){let t=new Date(e.updatedAt).getTime();return Date.now()-t>144e5}function ee(e){if(!e)return[];let t=new Set;return e.filter(e=>{let r=JSON.stringify(e.confirmation);return!t.has(r)&&(t.add(r),!0)})}function et(e){let t="type"in e&&"string"==typeof e.type?e.type:"repository",r=t?t.replace(/(\.api|-v2)$/,"").toLowerCase():"default";return{referenceType:t,suggestions:er(u.y$[r]||u.y$.default).slice(0,3)}}function er(e){let t=e.slice();for(let e=t.length-1;e>0;e--){let r=Math.floor(Math.random()*(e+1)),o=t[e];t[e]=t[r],t[r]=o}return t}function eo(e,t){let r=t.split(" "),o=`${e} said`;return"Timeline"===e&&(o="The following action was initiated"),`${o}: ${r.slice(0,r.length<7?r.length:7).join(" ")}`}},35247:(e,t,r)=>{r.d(t,{W:()=>i});var o=r(69599);let i=new class CopilotFeatureFlags{get immersiveFigmaIntegration(){return(0,o.G7)("copilot_immersive_figma_integration")}get focusTextAreaInsteadOfWorkbench(){return(0,o.G7)("copilot_focus_text_area_instead_of_workbench")}get forceLegacyChatDefaultModel(){return(0,o.G7)("copilot_api_force_legacy_base_chat_model")}get domPageContext(){return(0,o.G7)("copilot_use_dom_page_context")}get copilotChatInterviewSurvey(){return(0,o.G7)("copilot_chat_interview_survey")}get attachMultipleImages(){return(0,o.G7)("copilot_chat_attach_multiple_images")}get clearModelSelectionForDefaultChange(){return(0,o.G7)("copilot_chat_clear_model_selection_for_default_change")}get enableToolCallLogs(){return(0,o.G7)("copilot_chat_enable_tool_call_logs")}get selectionAttachments(){return(0,o.G7)("copilot_chat_selection_attachments")}get customCopilots(){return(0,o.G7)("copilot_custom_copilots")}get immersiveStructuredModelPicker(){return(0,o.G7)("copilot_immersive_structured_model_picker")}get customCopilotsFeaturePreview(){return(0,o.G7)("copilot_custom_copilots_feature_preview")}get loopsPlugin(){return(0,o.G7)("copilot_pipes")}get workbenchPlugin(){return(0,o.G7)("copilot_workbench")}get copilotChatOpeningThreadSwitch(){return(0,o.G7)("copilot_chat_opening_thread_switch")}get copilotDuplicateThread(){return(0,o.G7)("copilot_duplicate_thread")}get copilotShareActiveSubthread(){return(0,o.G7)("copilot_share_active_subthread")}get copilotChatO1Tools(){return(0,o.G7)("copilot_api_tools_for_non_streaming_models")}get showDeepCodeSearchButton(){return(0,o.G7)("copilot_show_deep_code_search_button")&&(0,o.G7)("copilot_api_search_agent_skill")}get deleteAllConversations(){return(0,o.G7)("copilot_delete_all_conversations")}get staffPromptDialog(){return(0,o.G7)("copilot_staff_prompt_dialog")}get staffToolsMenu(){return(0,o.G7)("copilot_staff_tools_menu")}get visionAllowedInClaude(){return(0,o.G7)("copilot_chat_vision_in_claude")}get premiumRequestQuotasEnabled(){return(0,o.G7)("copilot_premium_request_quotas")}get freeToPaidTelemetry(){return(0,o.G7)("copilot_free_to_paid_telem")}get freeToPaidSettingsUpgrade(){return(0,o.G7)("copilot_ftp_settings_upgrade")}get freeToPaidYourCopilotSettings(){return(0,o.G7)("copilot_ftp_your_copilot_settings")}get freeToPaidUpgradeToProFromModels(){return(0,o.G7)("copilot_ftp_upgrade_to_pro_from_models")}get spacesImagesEnabled(){return(0,o.G7)("copilot_custom_copilots_images")}get immersiveJobResultPreview(){return(0,o.G7)("copilot_immersive_job_result_preview")}get disableModelPickerWhileStreaming(){return(0,o.G7)("copilot_chat_disable_model_picker_while_streaming")}get freeToPaidHyperspaceUpgradePrompt(){return(0,o.G7)("copilot_ftp_hyperspace_upgrade_prompt")}get reduceChatQuotaChecks(){return(0,o.G7)("copilot_chat_reduce_quota_checks")}get requestTracing(){return(0,o.G7)("copilot_api_staff_only_tracing")}get coffeTraceViewer(){return(0,o.G7)("copilot_coffe_trace_view_enabled")}get copilotSpacesServerSideMenuActions(){return(0,o.G7)("copilot_spaces_server_side_menu_actions")}get capiErrorResponseTelemetry(){return(0,o.G7)("copilot_capi_error_response_telemetry")}get fileBlockRefMatching(){return(0,o.G7)("copilot_file_block_ref_matching")}get stableConversationView(){return(0,o.G7)("copilot_stable_conversation_view")}get copilotRedirectDiffViewToImmersive(){return(0,o.G7)("copilot_chat_diff_view_redirect")&&!(0,o.G7)("copilot_immersive_embedded")}get copilotRedirectFileViewToImmersive(){return(0,o.G7)("copilot_chat_file_redirect")&&!(0,o.G7)("copilot_immersive_embedded")}get copilotRedirectSnippetToImmersive(){return(0,o.G7)("copilot_chat_snippet_redirect")&&!(0,o.G7)("copilot_immersive_embedded")}get immersiveEmbedded(){return(0,o.G7)("copilot_immersive_embedded")}get copilotResourcePanel(){return(0,o.G7)("copilot_resource_panel")}get spacesIndividualPoliciesEnabled(){return(0,o.G7)("copilot_spaces_individual_policies_ga")}get loopExecutionReferences(){return(0,o.G7)("loops_execution_references")}get loopsAbusePrevention(){return(0,o.G7)("loops_abuse_prevention")}get copilotWorkbenchSlimLineTopTabs(){return(0,o.G7)("copilot_workbench_slim_line_top_tabs")}get sweAgentUseSubagents(){return(0,o.G7)("copilot_swe_agent_use_subagents")}get chatInputCommands(){return(0,o.G7)("copilot_chat_input_commands")}get agentTaskListV2(){return(0,o.G7)("copilot_agent_task_list_v2")}get removeAssistiveChatButton(){return(0,o.G7)("copilot_chat_remove_assistive_button")}get hideExtensionsInDotcomChat(){return(0,o.G7)("copilot_extensions_hide_in_dotcom_chat")}get copilotSearchBarRedirect(){return(0,o.G7)("copilot_chat_search_bar_redirect")}get askModeDropdown(){return(0,o.G7)("copilot_ask_mode_dropdown")}get taskWithinChatThread(){return(0,o.G7)("copilot_immersive_task_within_chat_thread")}get previewFeaturesVisionGate(){return(0,o.G7)("copilot_chat_vision_preview_gate")}get codingAgentModelSelection(){return(0,o.G7)("coding_agent_model_selection")}get codingAgentModelSelectionAllSkus(){return(0,o.G7)("coding_agent_model_selection_all_skus")}get codingAgentProposeTasks(){return(0,o.G7)("coding_agent_propose_tasks")}get codingAgentPullRequestToggle(){return(0,o.G7)("coding_agent_pull_request_toggle")}get defaultToTaskInput(){return(0,o.G7)("copilot_default_to_task_input")}get defaultToTaskControl(){return(0,o.G7)("copilot_default_to_task_input_control_group")}get copilotIcebreakersExperimentDashboard(){return(0,o.G7)("copilot_icebreakers_experiment_dashboard")}get copilotIcebreakersExperimentHyperspace(){return(0,o.G7)("copilot_icebreakers_experiment_hyperspace")}get copilotChatRepositoryPicker(){return this.askModeDropdown&&(0,o.G7)("copilot_chat_repository_picker")}get copilotSpacesPagination(){return(0,o.G7)("copilot_spaces_pagination")}get chatInputPerformanceOptimizations(){return(0,o.G7)("copilot_chat_input_performance_optimizations")}}},37285:(e,t,r)=>{r.d(t,{Av:()=>a,BM:()=>o,HX:()=>p,M_:()=>d,RD:()=>l,rb:()=>i});let o="GraphQLTraces",i="GraphQLTracingRefresh",n=s()?decodeURIComponent(new URLSearchParams(window.location.search).get("disable_clusters")||"").split(",").filter(e=>""!==e):[];function s(){return"u">typeof window}function a(e){if(!s()||!c()||!e)return;let t=window;t&&!t[o]&&(t[o]=[]),t&&e.__trace&&(t[o].push(e.__trace),"function"==typeof t[i]&&t[i]())}function c(){if(!s())return!1;let e=window;return"true"===new URLSearchParams(window.location.search).get("_tracing")||e&&void 0!==e[o]}function u(){return n.length>0}function l(e){if(!s()||!c()&&!u())return e;let t=new URL(e,window.location.origin);return c()&&t.searchParams.set("_tracing","true"),u()&&t.searchParams.set("disable_clusters",n.join(",")),t.pathname+t.search}function p(e){return n.indexOf(e)>-1}function d(e){if(!s())return;let t=n.indexOf(e);t>-1?n.splice(t,1):n.push(e);let r=new URLSearchParams(window.location.search);r.set("disable_clusters",n.join(",")),window.location.search=r.toString()}},44902:(e,t,r)=>{r.d(t,{R:()=>s,f:()=>n});var o=r(82075);let i="copilot_experiments";function n(){let e=(0,o.A)("localStorage").getItem(i);return e?e.split(","):[]}function s(e){(0,o.A)("localStorage").setItem(i,e.join(","))}},51213:(e,t,r)=>{r.d(t,{C6:()=>n,II:()=>o,UH:()=>u,Wp:()=>l,hs:()=>a,mF:()=>c,wh:()=>i,xP:()=>s});let o={Ask:"Ask",Task:"Task",CreateIssue:"Create issue",Loops:"Loops",Spark:"Spark"},i={explain:"explain",conversation:"conversation",suggest:"suggest",discussFileDiff:"discuss-file-diff",explainFileDiff:"explain-file-diff",reviewPr:"review-pull-request",actionsAgent:"actions-agent"},n=["exception","filtered","publicCode","contentTooLarge","rateLimit","agentUnauthorized","agentRequest","networkError","multipleAgentsAttempt"],s=["bing-search","codesearch","semantic-code-search","lexical-code-search","lexical-code-search-githubread","kb-search","getfile","getfilechanges","getdiscussion","get-actions-job-logs","getalert","planskill","get-github-data","support-search","get-figma","codesearchagentskill","github-draft-issue_draft-issue","github-draft-issue_existing-issue","github-draft-issue_repository-metadata","github-draft-issue_get-issues","github-coding-agent-","github-coding-agent","load_ability"],a={Experiments:"experiements",Prompt:"prompt",None:"none"},c={Unlicensed:"unlicensed",LicensedFull:"licensed_full",LicensedLimited:"licensed_limited"},u={IndividualFree:"free",IndividualPro:"pro",IndividualProPlus:"pro_plus",IndividualEducational:"educational",Business:"business",Enterprise:"enterprise"},l="NULL_MESSAGE"},51987:(e,t,r)=>{r.d(t,{jC:()=>a,kt:()=>n,tV:()=>s});var o=r(87057),i=r(13523);function n(e){let t={"X-Requested-With":"XMLHttpRequest",...(0,i.wE)(e)};return{...t,[o.S]:(0,o.O)()}}function s(e,t){for(let[r,o]of Object.entries(n(t)))e.set(r,o)}function a(e){return{"X-GitHub-App-Type":e}}},68637:(e,t,r)=>{r.d(t,{Pe:()=>c,UT:()=>s,XX:()=>n,oo:()=>i,vo:()=>a,y$:()=>u});var o=r(51213);function i(e,t=!1){let r=null!=e?`failing job ${e}`:"this failing job";return`Please find a solution for ${r}. ${t?"Use the provided reference to fetch the job logs. Use the logs, job definition, and any referenced files where the failure occurred.":"Use the logs, job definition, and any referenced files where the failure occurred."} Keep your response focused on the solution and include code suggestions when appropriate.`}function n(){return"Explain this snippet"}function s(){return"Suggest improvements to this code."}function a(){return"Explain this diff"}let c={"Languages & frameworks":["Show me Python beginner projects.","Explain Java's garbage collection.","Start me off with Node.js.","Introduce me to Django best practices."],"Tools & environments":["Set up a local development environment.","Demonstrate the basics of Docker.","Get me started with Git.","Recommend popular VS Code extensions."],"Open source & contribution":["Suggest 10 open source projects I can contribute to.","Walk me through the GitHub Pull Request flow.","How do I start my own open source project?","Guide me through contributing to React's codebase."],"Best practices & concepts":["Explain the SOLID principles of object-oriented design.","Introduce me to test-driven development.","Describe common design patterns.","Teach me about RESTful API design."],"Web development":["Guide me through creating a basic website.","Introduce HTML5 and CSS3 features.","Explain responsive web design.","Start me off with Tailwind CSS."],"Databases & data":["Get me started with SQL queries.","Recommend popular NoSQL databases.","How to back up a database?","Give a walkthrough on normalizing a database."],"Algorithms & data structures":["Teach me basic sorting algorithms.","Explain binary search trees.","Introduce me to graph algorithms.","What is a hash table?"],"Security & authentication":["Give a guide on basic web security.","Show me how to set up OAuth.","What's a JSON Web Token?","Describe common encryption techniques."],"Mobile development":["Kickstart my journey with Android development.","Introduce me to iOS app basics.","Recommend cross-platform mobile frameworks.","Give a guide to the app store submission process."],"Cloud & DevOps":["Start me off with AWS basics.","How do I deploy apps on Azure DevOps?","Introduce me to Kubernetes.","What are the basics of continuous integration/continuous deployment?"],"Frontend frameworks & libraries":["Get me started with React.","Walk me through Vue.js essentials.","What are some best practices in Angular development?","How do I use Svelte for web apps?"],"Performance & optimization":["Teach me about website performance optimization.","Explain database indexing benefits.","What are some tips to optimize JavaScript code?","Give a guide to efficient API caching."]},u={repository:[{question:"What questions can I ask?"},{question:"What does this repository do?"},{question:"How should I get started exploring this repo?"},{question:"Can you tell me about this repository?"}],issue:[{question:"Summarize this issue."},{question:"What are the main points being discussed here?"},{question:"Suggest next steps for this issue."}],alert:[{question:"Summarize this alert."}],file:[{question:"Explain this file."},{question:"Summarize this file for me."},{question:"How can I improve this file?"}],"pull-request":[{question:"Summarize this pull request."},{question:"What commits are included in this PR?"},{question:"Can you tell me about the changes in this PR?"}],discussion:[{question:"Summarize this discussion."},{question:"Summarize the comments made by user in a discussion."},{question:"What were some key decisions made in this discussion?"}],job:[{question:"Why did this job fail?",intent:o.wh.actionsAgent},{question:"How can I fix this build?",intent:o.wh.actionsAgent}],default:[{question:"What questions can I ask?"},{question:"What is the best way to get started with Copilot?"},{question:"How do I clone this repository?"},{question:"How do I revert a commit?"},{question:"How do I add myself as a reviewer?"},{question:"How do I create a repository?"}],issues:[{question:"How do I create an issue?"},{question:"How do I filter issues by label?"},{question:"What are the most recently updated issues?"}],"pull-requests":[{question:"How do I create a pull request?"},{question:"How do I filter pull requests by label?"},{question:"How do I reopen a closed pull request?"}],discussions:[{question:"How do I start a new discussion?"},{question:"How do I filter discussions by category or tag?"},{question:"How do I search for a specific discussion?"}]}},79826:(e,t,r)=>{r.d(t,{N:()=>a,T:()=>s});var o=r(82075);let i="COPILOT_PREVIOUS_PAGE_TITLE_KEY",n=(0,o.A)("localStorage",{throwQuotaErrorsOnSet:!1,ttl:18e5});function s(){let e=n.getItem(i);if(!e)return null;try{let t=JSON.parse(e);if("string"==typeof t.title&&"string"==typeof t.url)return t;return null}catch{return null}}function a(e){null===e?n.removeItem(i):n.setItem(i,JSON.stringify({title:e,url:document.location.href}))}},87057:(e,t,r)=>{r.d(t,{O:()=>s,S:()=>n});var o=r(56038);let i=o.cg?.document?.head?.querySelector('meta[name="release"]')?.content||"",n="X-GitHub-Client-Version";function s(){return i}},96379:(e,t,r)=>{r.d(t,{DI:()=>s,QJ:()=>c,Sr:()=>u,lS:()=>a});var o=r(51987),i=r(88057),n=r(37285);async function s(e,t={}){let r,a,c,u;var l,p=e;if(new URL(p,window.location.origin).origin!==window.location.origin)throw Error("Can not make cross-origin requests from verifiedFetch");let{tracingEnabled:d,fetchPath:g}=(r=new URL(l=e,window.location.href),(c=(a=new URL(window.location.href,window.location.origin)).searchParams.get("_features"))&&!r.searchParams.has("_features")&&r.searchParams.set("_features",c),(u=a.searchParams.get("_tracing"))&&!r.searchParams.has("_tracing")&&r.searchParams.set("_tracing",u),{tracingEnabled:!!u,fetchPath:l.startsWith(window.location.origin)?r.href:`${r.pathname}${r.search}`}),h={...t.headers,"GitHub-Verified-Fetch":"true",...(0,o.kt)()},m=await fetch(g,{...t,headers:h}),f=m?.headers?.get("X-Github-Request-Id");if(f&&(0,i.Ex)(f),d&&m){let e=m.clone();try{let t=await e.text(),r=t&&JSON.parse(t);(0,n.Av)(r)}catch{}}return m}function a(e,t){let r={...t?.headers??{},Accept:"application/json","Content-Type":"application/json"},o=t?.body?JSON.stringify(t.body):void 0;return s(e,{...t,body:o,headers:r})}function c(e,t={}){let r={...t.headers,"GitHub-Is-React":"true"};return s(e,{...t,headers:r})}function u(e,t){let r={...t?.headers??{},"GitHub-Is-React":"true"};return a(e,{...t,headers:r})}}}]); +//# sourceMappingURL=40771-a50bd7cfe604.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40799-9d163b66df02.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40799-9d163b66df02.js" new file mode 100644 index 0000000..129fb58 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/40799-9d163b66df02.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:40799-9d163b66df02.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[6951,29332,40799],{2471:(e,t,r)=>{r.d(t,{$:()=>a});var n=r(24880),i=r(79757),s=r(26261),u=r(66500),a=class extends u.Q{constructor(e={}){super(),this.config=e,this.#e=new Map}#e;build(e,t,r){let s=t.queryKey,u=t.queryHash??(0,n.F$)(s,t),a=this.get(u);return a||(a=new i.X({client:e,queryKey:s,queryHash:u,options:e.defaultQueryOptions(t),state:r,defaultOptions:e.getQueryDefaults(s)}),this.add(a)),a}add(e){this.#e.has(e.queryHash)||(this.#e.set(e.queryHash,e),this.notify({type:"added",query:e}))}remove(e){let t=this.#e.get(e.queryHash);t&&(e.destroy(),t===e&&this.#e.delete(e.queryHash),this.notify({type:"removed",query:e}))}clear(){s.jG.batch(()=>{this.getAll().forEach(e=>{this.remove(e)})})}get(e){return this.#e.get(e)}getAll(){return[...this.#e.values()]}find(e){let t={exact:!0,...e};return this.getAll().find(e=>(0,n.MK)(t,e))}findAll(e={}){let t=this.getAll();return Object.keys(e).length>0?t.filter(t=>(0,n.MK)(e,t)):t}notify(e){s.jG.batch(()=>{this.listeners.forEach(t=>{t(e)})})}onFocus(){s.jG.batch(()=>{this.getAll().forEach(e=>{e.onFocus()})})}onOnline(){s.jG.batch(()=>{this.getAll().forEach(e=>{e.onOnline()})})}}},5570:(e,t,r)=>{r.d(t,{_:()=>n});function n(e,t,r){if(t.set)t.set.call(e,r);else{if(!t.writable)throw TypeError("attempted to set read only private field");t.value=r}}},16213:(e,t,r)=>{r.d(t,{_:()=>i});var n=r(53482);function i(e,t){(0,n._)(e,t),t.add(e)}},18150:(e,t,r)=>{r.d(t,{_:()=>i});var n=r(53482);function i(e,t,r){(0,n._)(e,t),t.set(e,r)}},29304:(e,t,r)=>{r.d(t,{_:()=>n});function n(e,t,r){if(!t.has(e))throw TypeError("attempted to "+r+" private field on non-instance");return t.get(e)}},31635:(e,t,r)=>{r.d(t,{AQ:()=>u,Cg:()=>i,Me:()=>a,N3:()=>s,Tt:()=>n,xN:()=>o});function n(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&0>t.indexOf(n)&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,n=Object.getOwnPropertySymbols(e);it.indexOf(n[i])&&Object.prototype.propertyIsEnumerable.call(e,n[i])&&(r[n[i]]=e[n[i]]);return r}function i(e,t,r,n){var i,s=arguments.length,u=s<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)u=Reflect.decorate(e,t,r,n);else for(var a=e.length-1;a>=0;a--)(i=e[a])&&(u=(s<3?i(u):s>3?i(t,r,u):i(t,r))||u);return s>3&&u&&Object.defineProperty(t,r,u),u}function s(e){return this instanceof s?(this.v=e,this):new s(e)}function u(e,t,r){if(!Symbol.asyncIterator)throw TypeError("Symbol.asyncIterator is not defined.");var n,i=r.apply(e,t||[]),u=[];return n=Object.create(("function"==typeof AsyncIterator?AsyncIterator:Object).prototype),a("next"),a("throw"),a("return",function(e){return function(t){return Promise.resolve(t).then(e,h)}}),n[Symbol.asyncIterator]=function(){return this},n;function a(e,t){i[e]&&(n[e]=function(t){return new Promise(function(r,n){u.push([e,t,r,n])>1||o(e,t)})},t&&(n[e]=t(n[e])))}function o(e,t){try{var r;(r=i[e](t)).value instanceof s?Promise.resolve(r.value.v).then(l,h):c(u[0][2],r)}catch(e){c(u[0][3],e)}}function l(e){o("next",e)}function h(e){o("throw",e)}function c(e,t){e(t),u.shift(),u.length&&o(u[0][0],u[0][1])}}function a(e){var t,r;return t={},n("next"),n("throw",function(e){throw e}),n("return"),t[Symbol.iterator]=function(){return this},t;function n(n,i){t[n]=e[n]?function(t){return(r=!r)?{value:s(e[n](t)),done:!1}:i?i(t):t}:i}}function o(e){if(!Symbol.asyncIterator)throw TypeError("Symbol.asyncIterator is not defined.");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=function(e){var t="function"==typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}(e),t={},n("next"),n("throw"),n("return"),t[Symbol.asyncIterator]=function(){return this},t);function n(r){t[r]=e[r]&&function(t){return new Promise(function(n,i){var s,u,a;s=n,u=i,a=(t=e[r](t)).done,Promise.resolve(t.value).then(function(e){s({value:e,done:a})},u)})}}}"function"==typeof SuppressedError&&SuppressedError},34164:(e,t,r)=>{r.d(t,{$:()=>n});function n(){for(var e,t,r=0,n="",i=arguments.length;r{r.d(t,{_:()=>s});var n=r(50894),i=r(29304);function s(e,t){var r=(0,i._)(e,t,"get");return(0,n._)(e,r)}},50467:(e,t,r)=>{r.d(t,{_:()=>n});function n(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}},50894:(e,t,r)=>{r.d(t,{_:()=>n});function n(e,t){return t.get?t.get.call(e):t.value}},53482:(e,t,r)=>{r.d(t,{_:()=>n});function n(e,t){if(t.has(e))throw TypeError("Cannot initialize the same private elements twice on an object")}},57678:(e,t,r)=>{r.d(t,{q:()=>a});var n=r(26261),i=r(36158),s=r(24880),u=r(66500),a=class extends u.Q{constructor(e={}){super(),this.config=e,this.#t=new Set,this.#r=new Map,this.#n=0}#t;#r;#n;build(e,t,r){let n=new i.s({client:e,mutationCache:this,mutationId:++this.#n,options:e.defaultMutationOptions(t),state:r});return this.add(n),n}add(e){this.#t.add(e);let t=o(e);if("string"==typeof t){let r=this.#r.get(t);r?r.push(e):this.#r.set(t,[e])}this.notify({type:"added",mutation:e})}remove(e){if(this.#t.delete(e)){let t=o(e);if("string"==typeof t){let r=this.#r.get(t);if(r)if(r.length>1){let t=r.indexOf(e);-1!==t&&r.splice(t,1)}else r[0]===e&&this.#r.delete(t)}}this.notify({type:"removed",mutation:e})}canRun(e){let t=o(e);if("string"!=typeof t)return!0;{let r=this.#r.get(t),n=r?.find(e=>"pending"===e.state.status);return!n||n===e}}runNext(e){let t=o(e);if("string"!=typeof t)return Promise.resolve();{let r=this.#r.get(t)?.find(t=>t!==e&&t.state.isPaused);return r?.continue()??Promise.resolve()}}clear(){n.jG.batch(()=>{this.#t.forEach(e=>{this.notify({type:"removed",mutation:e})}),this.#t.clear(),this.#r.clear()})}getAll(){return Array.from(this.#t)}find(e){let t={exact:!0,...e};return this.getAll().find(e=>(0,s.nJ)(t,e))}findAll(e={}){return this.getAll().filter(t=>(0,s.nJ)(e,t))}notify(e){n.jG.batch(()=>{this.listeners.forEach(t=>{t(e)})})}resumePausedMutations(){let e=this.getAll().filter(e=>e.state.isPaused);return n.jG.batch(()=>Promise.all(e.map(e=>e.continue().catch(s.lQ))))}};function o(e){return e.options.scope?.id}},65490:(e,t,r)=>{r.d(t,{E:()=>h});var n=r(24880),i=r(2471),s=r(57678),u=r(29658),a=r(96035),o=r(26261),l=r(58959),h=class{#i;#s;#u;#a;#o;#l;#h;#c;constructor(e={}){this.#i=e.queryCache||new i.$,this.#s=e.mutationCache||new s.q,this.#u=e.defaultOptions||{},this.#a=new Map,this.#o=new Map,this.#l=0}mount(){this.#l++,1===this.#l&&(this.#h=u.m.subscribe(async e=>{e&&(await this.resumePausedMutations(),this.#i.onFocus())}),this.#c=a.t.subscribe(async e=>{e&&(await this.resumePausedMutations(),this.#i.onOnline())}))}unmount(){this.#l--,0===this.#l&&(this.#h?.(),this.#h=void 0,this.#c?.(),this.#c=void 0)}isFetching(e){return this.#i.findAll({...e,fetchStatus:"fetching"}).length}isMutating(e){return this.#s.findAll({...e,status:"pending"}).length}getQueryData(e){let t=this.defaultQueryOptions({queryKey:e});return this.#i.get(t.queryHash)?.state.data}ensureQueryData(e){let t=this.defaultQueryOptions(e),r=this.#i.build(this,t),i=r.state.data;return void 0===i?this.fetchQuery(e):(e.revalidateIfStale&&r.isStaleByTime((0,n.d2)(t.staleTime,r))&&this.prefetchQuery(t),Promise.resolve(i))}getQueriesData(e){return this.#i.findAll(e).map(({queryKey:e,state:t})=>[e,t.data])}setQueryData(e,t,r){let i=this.defaultQueryOptions({queryKey:e}),s=this.#i.get(i.queryHash),u=s?.state.data,a=(0,n.Zw)(t,u);if(void 0!==a)return this.#i.build(this,i).setData(a,{...r,manual:!0})}setQueriesData(e,t,r){return o.jG.batch(()=>this.#i.findAll(e).map(({queryKey:e})=>[e,this.setQueryData(e,t,r)]))}getQueryState(e){let t=this.defaultQueryOptions({queryKey:e});return this.#i.get(t.queryHash)?.state}removeQueries(e){let t=this.#i;o.jG.batch(()=>{t.findAll(e).forEach(e=>{t.remove(e)})})}resetQueries(e,t){let r=this.#i;return o.jG.batch(()=>(r.findAll(e).forEach(e=>{e.reset()}),this.refetchQueries({type:"active",...e},t)))}cancelQueries(e,t={}){let r={revert:!0,...t};return Promise.all(o.jG.batch(()=>this.#i.findAll(e).map(e=>e.cancel(r)))).then(n.lQ).catch(n.lQ)}invalidateQueries(e,t={}){return o.jG.batch(()=>(this.#i.findAll(e).forEach(e=>{e.invalidate()}),e?.refetchType==="none")?Promise.resolve():this.refetchQueries({...e,type:e?.refetchType??e?.type??"active"},t))}refetchQueries(e,t={}){let r={...t,cancelRefetch:t.cancelRefetch??!0};return Promise.all(o.jG.batch(()=>this.#i.findAll(e).filter(e=>!e.isDisabled()&&!e.isStatic()).map(e=>{let t=e.fetch(void 0,r);return r.throwOnError||(t=t.catch(n.lQ)),"paused"===e.state.fetchStatus?Promise.resolve():t}))).then(n.lQ)}fetchQuery(e){let t=this.defaultQueryOptions(e);void 0===t.retry&&(t.retry=!1);let r=this.#i.build(this,t);return r.isStaleByTime((0,n.d2)(t.staleTime,r))?r.fetch(t):Promise.resolve(r.state.data)}prefetchQuery(e){return this.fetchQuery(e).then(n.lQ).catch(n.lQ)}fetchInfiniteQuery(e){return e.behavior=(0,l.PL)(e.pages),this.fetchQuery(e)}prefetchInfiniteQuery(e){return this.fetchInfiniteQuery(e).then(n.lQ).catch(n.lQ)}ensureInfiniteQueryData(e){return e.behavior=(0,l.PL)(e.pages),this.ensureQueryData(e)}resumePausedMutations(){return a.t.isOnline()?this.#s.resumePausedMutations():Promise.resolve()}getQueryCache(){return this.#i}getMutationCache(){return this.#s}getDefaultOptions(){return this.#u}setDefaultOptions(e){this.#u=e}setQueryDefaults(e,t){this.#a.set((0,n.EN)(e),{queryKey:e,defaultOptions:t})}getQueryDefaults(e){let t=[...this.#a.values()],r={};return t.forEach(t=>{(0,n.Cp)(e,t.queryKey)&&Object.assign(r,t.defaultOptions)}),r}setMutationDefaults(e,t){this.#o.set((0,n.EN)(e),{mutationKey:e,defaultOptions:t})}getMutationDefaults(e){let t=[...this.#o.values()],r={};return t.forEach(t=>{(0,n.Cp)(e,t.mutationKey)&&Object.assign(r,t.defaultOptions)}),r}defaultQueryOptions(e){if(e._defaulted)return e;let t={...this.#u.queries,...this.getQueryDefaults(e.queryKey),...e,_defaulted:!0};return t.queryHash||(t.queryHash=(0,n.F$)(t.queryKey,t)),void 0===t.refetchOnReconnect&&(t.refetchOnReconnect="always"!==t.networkMode),void 0===t.throwOnError&&(t.throwOnError=!!t.suspense),!t.networkMode&&t.persister&&(t.networkMode="offlineFirst"),t.queryFn===n.hT&&(t.enabled=!1),t}defaultMutationOptions(e){return e?._defaulted?e:{...this.#u.mutations,...e?.mutationKey&&this.getMutationDefaults(e.mutationKey),...e,_defaulted:!0}}clear(){this.#i.clear(),this.#s.clear()}}},85242:(e,t,r)=>{r.d(t,{_:()=>s});var n=r(5570),i=r(29304);function s(e,t,r){var s=(0,i._)(e,t,"set");return(0,n._)(e,s,r),r}},88243:(e,t,r)=>{r.d(t,{_:()=>n});function n(e,t,r){if(!t.has(e))throw TypeError("attempted to get private field on non-instance");return r}},97665:(e,t,r)=>{r.d(t,{Ht:()=>a,jE:()=>u,v4:()=>s});var n=r(96540),i=r(74848),s=n.createContext(void 0),u=e=>{let t=n.useContext(s);if(e)return e;if(!t)throw Error("No QueryClient set, use QueryClientProvider to set one");return t},a=({client:e,children:t})=>(n.useEffect(()=>(e.mount(),()=>{e.unmount()}),[e]),(0,i.jsx)(s.Provider,{value:e,children:t}))}}]); +//# sourceMappingURL=40799-971149dec975.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/41461-97b9621fb8c4.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/41461-97b9621fb8c4.js" new file mode 100644 index 0000000..d1c0d4c --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/41461-97b9621fb8c4.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:41461-97b9621fb8c4.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[19976,41461],{13083:(e,t,i)=>{function l(e){return`line-${e}`}function r(e,t,i){return`${e}${"left"===t?"L":"R"}${i}`}function n(e){return"DELETION"===e?"left":"right"}function a(e,t=!1,i=!1){if(i)return"var(--bgColor-attention-muted, var(--color-attention-subtle))";switch(e){case"ADDITION":return t?"var(--diffBlob-additionNum-bgColor, var(--diffBlob-addition-bgColor-num))":"var(--diffBlob-additionLine-bgColor, var(--diffBlob-addition-bgColor-line))";case"DELETION":return t?"var(--diffBlob-deletionNum-bgColor, var(--diffBlob-deletion-bgColor-num))":"var(--diffBlob-deletionLine-bgColor, var(--diffBlob-deletion-bgColor-line))";case"HUNK":return t?"var(--diffBlob-hunkNum-bgColor, var(--diffBlob-hunk-bgColor-num))":"var(--diffBlob-hunkLine-bgColor, var(--bgColor-accent-muted))";case"EMPTY":return t?"var(--diffBlob-emptyNum-bgColor, var(--diffBlob-hunk-bgColor-num))":"var(--diffBlob-emptyLine-bgColor, var(--bgColor-accent-muted))";default:return}}function s(e){let t=0;if(e)for(let i of e)t=Math.max(t,i?.left??0,i?.right??0);return Math.max(8*t.toString().length+20,40).toString()}i.d(t,{IQ:()=>r,Sq:()=>l,XU:()=>n,c7:()=>s,gK:()=>a})},18799:(e,t,i)=>{i.d(t,{Ud:()=>r,sI:()=>l});let l={Visible:"visible",Collapsed:"collapsed"},r={Compact:"compact",Relaxed:"relaxed"}},19976:(e,t,i)=>{i.d(t,{Jg:()=>c,nq:()=>f,uP:()=>h.u,zl:()=>u.z,$e:()=>b,P3:()=>p,wj:()=>g,l4:()=>C,Qe:()=>y,Ah:()=>T});var l=i(74848),r=i(16522),n=i(34164),a=i(73017),s=i(13083);let o=e=>{let t,i,o,d,c,f,h,u,m,p,x=(0,r.c)(34),{dragging:b,isHighlighted:g,isLeftColumn:y,colSpan:_,line:v,lineAnchor:N}=e,j=v.html,C="";if(["ADDITION","DELETION"].includes(v.type)&&["+","-"].includes(j[0])){let e;C=j[0],x[0]!==j?(e=j.slice(1),x[0]=j,x[1]=e):e=x[1],j=e}let w=b&&g,I=y&&"HUNK"!==v.type;x[2]!==w||x[3]!==I?(t=(0,n.$)("diff-text-cell",{"border-left color-border-accent-emphasis":w,"border-right":I}),x[2]=w,x[3]=I,x[4]=t):t=x[4],x[5]!==N?(i=N?(0,s.Sq)(N):void 0,x[5]=N,x[6]=i):i=x[6],x[7]!==g||x[8]!==v.type?(o=(0,s.gK)(v.type,!1,g),x[7]=g,x[8]=v.type,x[9]=o):o=x[9],x[10]!==o?(d={backgroundColor:o},x[10]=o,x[11]=d):d=x[11];let T=C,S="ADDITION"===v.type,L="DELETION"===v.type;x[12]!==S||x[13]!==L?(c=(0,n.$)("diff-text syntax-highlighted-line",{addition:S,deletion:L}),x[12]=S,x[13]=L,x[14]=c):c=x[14];let k=e.lineChild,D="HUNK"===v.type;x[15]!==D?(f=(0,n.$)("diff-text-inner",{"color-fg-muted":D}),x[15]=D,x[16]=f):f=x[16];let O="CONTEXT"===v.type?"-7px":void 0;return x[17]!==O?(h={marginLeft:O},x[17]=O,x[18]=h):h=x[18],x[19]!==j||x[20]!==f||x[21]!==h?(u=(0,l.jsx)(a.$6,{className:f,html:j,style:h}),x[19]=j,x[20]=f,x[21]=h,x[22]=u):u=x[22],x[23]!==C||x[24]!==e.lineChild||x[25]!==u||x[26]!==c?(m=(0,l.jsxs)("code",{"data-code-marker":T,className:c,children:[k,u]}),x[23]=C,x[24]=e.lineChild,x[25]=u,x[26]=c,x[27]=m):m=x[27],x[28]!==_||x[29]!==m||x[30]!==t||x[31]!==i||x[32]!==d?(p=(0,l.jsx)("td",{className:t,colSpan:_,id:i,style:d,children:m}),x[28]=_,x[29]=m,x[30]=t,x[31]=i,x[32]=d,x[33]=p):p=x[33],p};try{o.displayName||(o.displayName="DiffText")}catch{}let d=e=>{let t,i,a,o,d,c,f,h,u,m,p,x,b,g=(0,r.c)(30);g[0]!==e?({ariaLabel:t,children:i,hasExpanderButton:o,lineType:f,colSpan:a,interactiveProps:d,isHighlighted:c,...h}=e,g[0]=e,g[1]=t,g[2]=i,g[3]=a,g[4]=o,g[5]=d,g[6]=c,g[7]=f,g[8]=h):(t=g[1],i=g[2],a=g[3],o=g[4],d=g[5],c=g[6],f=g[7],h=g[8]),g[9]!==i?(u=(0,l.jsx)("code",{className:"pr-2",children:i}),g[9]=i,g[10]=u):u=g[10];let y=u;if(d){let e;g[11]!==t||g[12]!==d||g[13]!==y?(e=(0,l.jsx)("button",{className:"diff-line-number-button",...d,"aria-label":t,children:y}),g[11]=t,g[12]=d,g[13]=y,g[14]=e):e=g[14],y=e}let _=d?void 0:t,v=!!d;g[15]!==o||g[16]!==v?(m=(0,n.$)("diff-line-number",{"has-expander":o,clickable:v}),g[15]=o,g[16]=v,g[17]=m):m=g[17];let N=a||1;return g[18]!==c||g[19]!==f?(p=(0,s.gK)(f,!0,c),g[18]=c,g[19]=f,g[20]=p):p=g[20],g[21]!==p?(x={backgroundColor:p},g[21]=p,g[22]=x):x=g[22],g[23]!==h||g[24]!==_||g[25]!==m||g[26]!==N||g[27]!==x||g[28]!==y?(b=(0,l.jsx)("td",{"aria-label":_,"data-line-number":!0,className:m,colSpan:N,style:x,...h,children:y}),g[23]=h,g[24]=_,g[25]=m,g[26]=N,g[27]=x,g[28]=y,g[29]=b):b=g[29],b};try{d.displayName||(d.displayName="LineNumber")}catch{}let c=e=>{let t,i,n,a,s=(0,r.c)(28),{dragging:c,isHighlighted:f,isLeftColumn:h,isSplit:u,lineAnchor:m,line:p,lineChild:x,onLineNumberClick:b}=e,g="CONTEXT"===p.type||"INJECTED_CONTEXT"===p.type,y="ADDITION"!==p.type,_=y||!u,v="DELETION"!==p.type,N=v&&!g||!u,j=u&&g?h?p.left:p.right:p.left;return s[0]!==j||s[1]!==f||s[2]!==p.left||s[3]!==p.right||s[4]!==p.type||s[5]!==b||s[6]!==y||s[7]!==_?(t=_&&(0,l.jsx)(d,{ariaLabel:`Line ${y?p.left?.toString():p.right?.toString()}`,lineType:p.type,interactiveProps:b?{onClick:b}:null,isHighlighted:f,children:y&&j}),s[0]=j,s[1]=f,s[2]=p.left,s[3]=p.right,s[4]=p.type,s[5]=b,s[6]=y,s[7]=_,s[8]=t):t=s[8],s[9]!==f||s[10]!==p.left||s[11]!==p.right||s[12]!==p.type||s[13]!==b||s[14]!==v||s[15]!==N?(i=N&&(0,l.jsx)(d,{ariaLabel:`Line ${v?p.right?.toString():p.left?.toString()}`,lineType:p.type,interactiveProps:b?{onClick:b}:null,isHighlighted:f,children:v&&p.right}),s[9]=f,s[10]=p.left,s[11]=p.right,s[12]=p.type,s[13]=b,s[14]=v,s[15]=N,s[16]=i):i=s[16],s[17]!==c||s[18]!==f||s[19]!==h||s[20]!==p||s[21]!==m||s[22]!==x?(n=(0,l.jsx)(o,{dragging:c,isHighlighted:f,isLeftColumn:h,line:p,lineAnchor:m,lineChild:x}),s[17]=c,s[18]=f,s[19]=h,s[20]=p,s[21]=m,s[22]=x,s[23]=n):n=s[23],s[24]!==t||s[25]!==i||s[26]!==n?(a=(0,l.jsxs)(l.Fragment,{children:[t,i,n]}),s[24]=t,s[25]=i,s[26]=n,s[27]=a):a=s[27],a};try{c.displayName||(c.displayName="DiffLinePart")}catch{}function f(){let e,t,i=(0,r.c)(2);return i[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,l.jsxs)("clipPath",{id:"diff-placeholder",children:[(0,l.jsx)("rect",{height:"11.9298746",rx:"2",width:"67.0175439",x:"0",y:"0"}),(0,l.jsx)("rect",{height:"11.9298746",rx:"2",width:"100.701754",x:"18.9473684",y:"47.7194983"}),(0,l.jsx)("rect",{height:"11.9298746",rx:"2",width:"37.8947368",x:"0",y:"71.930126"}),(0,l.jsx)("rect",{height:"11.9298746",rx:"2",width:"53.3333333",x:"127.017544",y:"48.0703769"}),(0,l.jsx)("rect",{height:"11.9298746",rx:"2",width:"72.9824561",x:"187.719298",y:"48.0703769"}),(0,l.jsx)("rect",{height:"11.9298746",rx:"2",width:"140.350877",x:"76.8421053",y:"0"}),(0,l.jsx)("rect",{height:"11.9298746",rx:"2",width:"140.350877",x:"17.8947368",y:"23.8597491"}),(0,l.jsx)("rect",{height:"11.9298746",rx:"2",width:"173.684211",x:"166.315789",y:"23.8597491"})]}),i[0]=e):e=i[0],i[1]===Symbol.for("react.memo_cache_sentinel")?(t=(0,l.jsx)("svg",{"aria-hidden":"true",version:"1.1",viewBox:"0 0 340 84",xmlns:"http://www.w3.org/2000/svg",className:"DiffPlaceholder-module__DiffPlaceholderSVG--zRrf1",children:(0,l.jsxs)("defs",{children:[e,(0,l.jsxs)("linearGradient",{id:"animated-diff-gradient",spreadMethod:"reflect",x1:"0",x2:"0",y1:"0",y2:"1",children:[(0,l.jsx)("stop",{offset:"0",stopColor:"#eee"}),(0,l.jsx)("stop",{offset:"0.2",stopColor:"#eee"}),(0,l.jsx)("stop",{offset:"0.5",stopColor:"#ddd"}),(0,l.jsx)("stop",{offset:"0.8",stopColor:"#eee"}),(0,l.jsx)("stop",{offset:"1",stopColor:"#eee"}),(0,l.jsx)("animateTransform",{attributeName:"y1",dur:"1s",repeatCount:"3",values:"0%; 100%; 0"}),(0,l.jsx)("animateTransform",{attributeName:"y2",dur:"1s",repeatCount:"3",values:"100%; 200%; 0"})]})]})}),i[1]=t):t=i[1],t}try{f.displayName||(f.displayName="DiffPlaceholder")}catch{}var h=i(88098),u=i(91618),m=i(38621);function p(e){let t,i,n,a=(0,r.c)(10),{currentLine:s,hunkButton:c,isLeftColumn:f,isSplit:h}=e;if(h&&!f)return null;a[0]!==s.type||a[1]!==c||a[2]!==h?(t=c?(0,l.jsx)(d,{colSpan:h?1:2,hasExpanderButton:!0,lineType:s.type,children:c}):(0,l.jsxs)(l.Fragment,{children:[(0,l.jsx)(d,{lineType:s.type,children:(0,l.jsx)(m.KebabHorizontalIcon,{})}),!h&&(0,l.jsx)(d,{lineType:s.type,children:(0,l.jsx)(m.KebabHorizontalIcon,{})})]}),a[0]=s.type,a[1]=c,a[2]=h,a[3]=t):t=a[3];let u=h?3:void 0;return a[4]!==s||a[5]!==u?(i=(0,l.jsx)(o,{isHighlighted:!1,isLeftColumn:!0,colSpan:u,line:s}),a[4]=s,a[5]=u,a[6]=i):i=a[6],a[7]!==t||a[8]!==i?(n=(0,l.jsxs)(l.Fragment,{children:[t,i]}),a[7]=t,a[8]=i,a[9]=n):n=a[9],n}try{p.displayName||(p.displayName="HunkHeaderDiffLine")}catch{}function x(){let e,t=(0,r.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,l.jsx)("div",{className:"hunk-kebab-icon pr-2 pb-1",children:(0,l.jsx)(m.KebabHorizontalIcon,{})}),t[0]=e):e=t[0],e}try{x.displayName||(x.displayName="HunkKebabIcon")}catch{}function b(e){let t,i,a,s=(0,r.c)(5),{isLeftColumn:o}=e;return s[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,l.jsx)(d,{lineType:"EMPTY"}),s[0]=t):t=s[0],s[1]!==o?(i=(0,n.$)("empty-diff-line",{"border-right":o}),s[1]=o,s[2]=i):i=s[2],s[3]!==i?(a=(0,l.jsxs)(l.Fragment,{children:[t,(0,l.jsx)("td",{className:i,colSpan:1})]}),s[3]=i,s[4]=a):a=s[4],a}try{b.displayName||(b.displayName="EmptyDiffLine")}catch{}function g(e){let t,i,n,a,s,o,d,c,f=(0,r.c)(15);return f[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,l.jsx)("thead",{className:"sr-only",children:(0,l.jsxs)("tr",{children:[(0,l.jsx)("th",{scope:"col",children:"Original file line number"}),(0,l.jsx)("th",{scope:"col",children:"Original file line"}),(0,l.jsx)("th",{scope:"col",children:"Diff line number"}),(0,l.jsx)("th",{scope:"col",children:"Diff line change"})]})}),f[0]=t):t=f[0],f[1]!==e.lineWidth?(i=(0,l.jsx)("col",{width:e.lineWidth}),f[1]=e.lineWidth,f[2]=i):i=f[2],f[3]===Symbol.for("react.memo_cache_sentinel")?(n=(0,l.jsx)("col",{}),f[3]=n):n=f[3],f[4]!==e.lineWidth?(a=(0,l.jsx)("col",{width:e.lineWidth}),f[4]=e.lineWidth,f[5]=a):a=f[5],f[6]===Symbol.for("react.memo_cache_sentinel")?(s=(0,l.jsx)("col",{}),f[6]=s):s=f[6],f[7]!==i||f[8]!==a?(o=(0,l.jsxs)("colgroup",{children:[i,n,a,s]}),f[7]=i,f[8]=a,f[9]=o):o=f[9],f[10]!==e.children?(d=(0,l.jsx)("tbody",{children:e.children}),f[10]=e.children,f[11]=d):d=f[11],f[12]!==o||f[13]!==d?(c=(0,l.jsxs)(l.Fragment,{children:[t,o,d]}),f[12]=o,f[13]=d,f[14]=c):c=f[14],c}try{g.displayName||(g.displayName="SplitDiffTable")}catch{}function y(e){let t,i,n,a,s,o,d,c,f,h,u=(0,r.c)(24),m=e.showLineNumbers??!0;return u[0]!==m?(t=m&&(0,l.jsx)("th",{scope:"col",children:"Original file line number"}),u[0]=m,u[1]=t):t=u[1],u[2]!==m?(i=m&&(0,l.jsx)("th",{scope:"col",children:"Diff line number"}),u[2]=m,u[3]=i):i=u[3],u[4]===Symbol.for("react.memo_cache_sentinel")?(n=(0,l.jsx)("th",{scope:"col",children:"Diff line change"}),u[4]=n):n=u[4],u[5]!==t||u[6]!==i?(a=(0,l.jsx)("thead",{className:"sr-only",children:(0,l.jsxs)("tr",{children:[t,i,n]})}),u[5]=t,u[6]=i,u[7]=a):a=u[7],u[8]!==e.lineWidth||u[9]!==m?(s=m&&(0,l.jsx)("col",{width:e.lineWidth}),u[8]=e.lineWidth,u[9]=m,u[10]=s):s=u[10],u[11]!==e.lineWidth||u[12]!==m?(o=m&&(0,l.jsx)("col",{width:e.lineWidth}),u[11]=e.lineWidth,u[12]=m,u[13]=o):o=u[13],u[14]===Symbol.for("react.memo_cache_sentinel")?(d=(0,l.jsx)("col",{width:"100%"}),u[14]=d):d=u[14],u[15]!==s||u[16]!==o?(c=(0,l.jsxs)("colgroup",{children:[s,o,d]}),u[15]=s,u[16]=o,u[17]=c):c=u[17],u[18]!==e.children?(f=(0,l.jsx)("tbody",{children:e.children}),u[18]=e.children,u[19]=f):f=u[19],u[20]!==a||u[21]!==c||u[22]!==f?(h=(0,l.jsxs)(l.Fragment,{children:[a,c,f]}),u[20]=a,u[21]=c,u[22]=f,u[23]=h):h=u[23],h}try{y.displayName||(y.displayName="UnifiedDiffTable")}catch{}let _="UnifiedDiffLines-module__diffTextInner--z42oB";function v(e){let t,i,n,a,o=(0,r.c)(9),{line:d,children:c}=e;return o[0]!==d.type?(t=(0,s.gK)(d.type,!0),o[0]=d.type,o[1]=t):t=o[1],o[2]!==t?(i={backgroundColor:t,textAlign:"center"},o[2]=t,o[3]=i):i=o[3],o[4]!==c?(n=(0,l.jsx)("code",{children:c}),o[4]=c,o[5]=n):n=o[5],o[6]!==i||o[7]!==n?(a=(0,l.jsx)("td",{className:"UnifiedDiffLines-module__diffLineNumber--Ls6hS",style:i,children:n}),o[6]=i,o[7]=n,o[8]=a):a=o[8],a}function N(e){let t,i,s,o,d=(0,r.c)(7),{line:c,showLineNumbers:f}=e,h=f?4:2;d[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,l.jsx)(x,{}),d[0]=t):t=d[0],d[1]===Symbol.for("react.memo_cache_sentinel")?(i=(0,n.$)(_,"color-fg-muted"),d[1]=i):i=d[1];let u=c.html;return d[2]!==u?(s=(0,l.jsxs)("div",{className:"d-flex flex-row",children:[t,(0,l.jsx)("code",{className:"UnifiedDiffLines-module__diffHunkText--nwvt0",children:(0,l.jsx)(a.$6,{className:i,html:u})})]}),d[2]=u,d[3]=s):s=d[3],d[4]!==h||d[5]!==s?(o=(0,l.jsx)("td",{colSpan:h,className:"UnifiedDiffLines-module__diffHunkCell--PwOTu",valign:"top",children:s}),d[4]=h,d[5]=s,d[6]=o):o=d[6],o}function j(e){let t,i,o,d=(0,r.c)(15),{line:c,showLineNumbers:f}=e,h="HUNK"===c.type,u="ADDITION"!==c.type,m="DELETION"!==c.type,p="ADDITION"===c.type?"+":"DELETION"===c.type?"-":void 0,x=!!p;return d[0]!==h||d[1]!==c||d[2]!==f?(t=h&&(0,l.jsx)(N,{line:c,showLineNumbers:f}),d[0]=h,d[1]=c,d[2]=f,d[3]=t):t=d[3],d[4]!==h||d[5]!==c||d[6]!==p||d[7]!==u||d[8]!==x||d[9]!==f||d[10]!==m?(i=!h&&(0,l.jsxs)(l.Fragment,{children:[f&&(0,l.jsx)(v,{line:c,children:u&&c.left}),f&&(0,l.jsx)(v,{line:c,children:m&&c.right}),(0,l.jsx)("td",{className:"UnifiedDiffLines-module__diffTextCell--y7sIw",style:{backgroundColor:(0,s.gK)(c.type,!1)},children:(0,l.jsxs)("code",{className:(0,n.$)("ADDITION"===c.type&&"UnifiedDiffLines-module__syntaxHighlightedAdditionLine--GBB6F","DELETION"===c.type&&"UnifiedDiffLines-module__syntaxHighlightedDeletionLine--mmCob"),children:[x&&(0,l.jsx)("span",{className:"UnifiedDiffLines-module__diffTextMarker--XE3qq",children:p}),(0,l.jsx)(a.$6,{className:_,html:c.html,style:{backgroundColor:(0,s.gK)(c.type,!1)}})]})})]}),d[4]=h,d[5]=c,d[6]=p,d[7]=u,d[8]=x,d[9]=f,d[10]=m,d[11]=i):i=d[11],d[12]!==t||d[13]!==i?(o=(0,l.jsxs)("tr",{children:[t,i]}),d[12]=t,d[13]=i,d[14]=o):o=d[14],o}function C(e){let t,i,a,s,o,d=(0,r.c)(19),{className:c,lines:f,lineWidth:h,tabSize:u}=e;d[0]!==f?(t=f.some(w),d[0]=f,d[1]=t):t=d[1];let m=t;if(d[2]!==m||d[3]!==f||d[4]!==u){let e;d[6]!==m||d[7]!==u?(e=(e,t)=>(0,l.jsx)(j,{line:e,tabSize:u,showLineNumbers:m},t),d[6]=m,d[7]=u,d[8]=e):e=d[8],i=f.map(e),d[2]=m,d[3]=f,d[4]=u,d[5]=i}else i=d[5];let p=i;return d[9]!==c?(a=(0,n.$)("UnifiedDiffLines-module__unifiedDiffLines--UDm5a",c,"tab-size"),d[9]=c,d[10]=a):a=d[10],d[11]!==p||d[12]!==m||d[13]!==h?(s=(0,l.jsx)(y,{lineWidth:h,showLineNumbers:m,children:p}),d[11]=p,d[12]=m,d[13]=h,d[14]=s):s=d[14],d[15]!==a||d[16]!==s||d[17]!==u?(o=(0,l.jsx)("table",{className:a,"data-tab-size":u,children:s}),d[15]=a,d[16]=s,d[17]=u,d[18]=o):o=d[18],o}function w(e){return null!==e.left||null!==e.right}try{v.displayName||(v.displayName="LineNumberCell")}catch{}try{N.displayName||(N.displayName="HunkCell")}catch{}try{j.displayName||(j.displayName="UnifiedDiffRow")}catch{}try{C.displayName||(C.displayName="UnifiedDiffLines")}catch{}function I(e){return"LEFT"===e?"-":"RIGHT"===e?"+":""}function T({startDiffSide:e,endDiffSide:t,originalStartLine:i,originalEndLine:l}){return e&&t&&"number"==typeof i&&"number"==typeof l?0===i&&1===l&&e===t?"-1 to +1":e===t&&i===l?`${I(e)}${i}`:`${I(e)}${i} to ${I(t)}${l}`:""}},20622:(e,t,i)=>{i.d(t,{uT:()=>n});let l={baseComparisonInfo:"base_comparison_info",changeGroups:"change_groups",codeButton:"code_button",codeowners:"codeowners",threadPreviewPositioning:"thread_preview_positioning",diffEntries:"diff_entries",diffstat:"diffstat",header:"header",mergeBox:"merge_box",mergeInstructions:"merge_instructions",pendingReview:"pending_review",statusChecks:"status_checks",tabCounts:"tab_counts",threadPreviews:"thread_previews",diffViewUserSettings:"user_diff_view_settings",diffContextLines:"diff_entry_lines",richDiff:"rich_diff",description:"description"},r={abandonReview:"abandon_review",addCommentReaction:"add_comment_reaction",changeBase:"change_base",cleanupCodespaces:"cleanup_codespaces",convertToDraft:"convert_to_draft",createReviewComment:"create_review_comment",deleteHeadRef:"delete_head_ref",dequeuePullRequest:"dequeue_pull_request",disableAutoMerge:"disable_auto_merge",dismissReview:"dismiss_review",enableAutoMerge:"enable_auto_merge",generateChangeGroups:"generate_change_groups",markReadyForReview:"mark_ready_for_review",merge:"merge",removeCommentReaction:"remove_comment_reaction",reRequestReviewFromUser:"re_request_review_from_user",resolveThread:"resolve_thread",runActionRequiredWorkflows:"run_action_required_workflows",submitCopilotGroupsFeedback:"submit_copilot_groups_feedback",submitReview:"submit_review",submitSuggestedChanges:"apply_suggestions",unresolveThread:"unresolve_thread",updateReviewComment:"update_review_comment",updatePullRequestBranch:"update_pull_request_branch",updateTitle:"update_title",updateShowChangeGroupsPreference:"update_show_change_groups_preference",updateMergeBoxUserPreference:"update_merge_box_user_preference",updateWhitespacePreference:"update_whitespace_preference",hideComment:"hide_comment",unhideComment:"unhide_comment"},n={...l,...r};Object.values(l),Object.values(r)},35311:(e,t,i)=>{i.d(t,{QC:()=>h,s2:()=>u,wH:()=>s,xY:()=>f});var l=i(35750),r=i(18150),n=i(50467),a=i(56051);function s(e,t){return e.startsWith(t)&&e!==t?-1:t.startsWith(e)&&e!==t?1:et)}function o(e,t){return s(e.name,t.name)}function d(e,t){return s(e.fileName,t.fileName)}let FileNode=class FileNode{constructor(e,t){(0,n._)(this,"diff",void 0),(0,n._)(this,"filePath",void 0),(0,n._)(this,"fileName",void 0),(0,n._)(this,"directoryParts",void 0),(0,n._)(this,"sortOrder",void 0),this.diff=e,this.filePath=e.path;const i=this.filePath.split("/");this.fileName=i[i.length-1],this.directoryParts=i.slice(0,i.length-1),this.sortOrder=t}};var c=new WeakMap;let DirectoryNode=class DirectoryNode{getOrCreateDirectory(e,t){let i=(0,l._)(this,c).get(e);if(!i){let r=this.path?`${this.path}/`:"";i=new DirectoryNode(e,`${r}${e}`,t),this.directories.push(i),(0,l._)(this,c).set(e,i)}return i}sort(){for(let e of(this.directories.sort(o),this.files.sort(d),this.directories))e.sort()}constructor(e,t,i){(0,n._)(this,"directories",[]),(0,n._)(this,"files",[]),(0,r._)(this,c,{writable:!0,value:new Map}),(0,n._)(this,"name",void 0),(0,n._)(this,"path",void 0),(0,n._)(this,"sortOrder",void 0),this.name=e,this.path=t,this.sortOrder=i}};function f(e){let t=new DirectoryNode("","",Number.MAX_SAFE_INTEGER);for(let i of e.map((e,t)=>new FileNode(e,t))){let e=t;for(let t of i.directoryParts)(e=e.getOrCreateDirectory(t,i.sortOrder)).sortOrder=Math.min(e.sortOrder,i.sortOrder);e.files.push(i)}return function e(t){for(let i of t.directories)e(i);let i=t.directories.map(e=>e.sortOrder),l=t.files.map(e=>e.sortOrder);t.sortOrder=Math.min(t.sortOrder,...i,...l)}(t),t.sort(),t}function h(e){let t;t="string"==typeof e?e:e?.newPath||e?.oldPath;let i=t?.lastIndexOf(".");return t?!i||i<0?a.F7:`.${t.substring(i+1)}`:""}function u(e){let t={};return e.map(e=>{let i=h(e.path);void 0!==t[i]?t[i]+=1:t[i]=1}),t}},40064:(e,t,i)=>{i.d(t,{V:()=>u});var l=i(74848),r=i(16522),n=i(96540),a=i(43258),s=i(38621),o=i(52870),d=i(56149);let c={info:"",success:"Toast--success",error:"Toast--error"},f={info:(0,l.jsx)(s.InfoIcon,{}),success:(0,l.jsx)(s.CheckIcon,{}),error:(0,l.jsx)(s.StopIcon,{})},h=e=>{let t,i,a,s,h,u=(0,r.c)(14),{message:m,timeToLive:p,icon:x,type:b,role:g}=e,y=void 0===b?"info":b,_=void 0===g?"log":g,[v,N]=n.useState(!0),{safeSetTimeout:j}=(0,o.A)();u[0]!==j||u[1]!==p?(t=()=>{p&&j(()=>N(!1),p-300)},i=[j,p],u[0]=j,u[1]=p,u[2]=t,u[3]=i):(t=u[2],i=u[3]),(0,n.useEffect)(t,i);let C=`Toast ${c[y]} ${v?"Toast--animateIn":"Toast--animateOut"}`,w=`ui-app-toast-${y}`,I=x||f[y];return u[4]!==I?(a=(0,l.jsx)("span",{className:"Toast-icon",children:I}),u[4]=I,u[5]=a):a=u[5],u[6]!==m?(s=(0,l.jsx)("span",{className:"Toast-content",children:m}),u[6]=m,u[7]=s):s=u[7],u[8]!==_||u[9]!==C||u[10]!==w||u[11]!==a||u[12]!==s?(h=(0,l.jsx)(d.ZL,{children:(0,l.jsx)("div",{className:"p-1 position-fixed bottom-0 left-0 mb-3 ml-3",children:(0,l.jsxs)("div",{className:C,id:"ui-app-toast","data-testid":w,role:_,children:[a,s]})})}),u[8]=_,u[9]=C,u[10]=w,u[11]=a,u[12]=s,u[13]=h):h=u[13],h};try{h.displayName||(h.displayName="Toast")}catch{}function u(){let e,t,i,s=(0,r.c)(7),{toasts:o,persistedToast:d}=(0,n.use)(a.T8);return s[0]!==o?(e=o.map(m),s[0]=o,s[1]=e):e=s[1],s[2]!==d?(t=d&&(0,l.jsx)(h,{message:d.message,icon:d.icon,type:d.type,role:d.role}),s[2]=d,s[3]=t):t=s[3],s[4]!==e||s[5]!==t?(i=(0,l.jsxs)(l.Fragment,{children:[e,t]}),s[4]=e,s[5]=t,s[6]=i):i=s[6],i}function m(e,t){return(0,l.jsx)(h,{message:e.message,icon:e.icon,timeToLive:a.Qn,type:e.type,role:e.role},t)}try{u.displayName||(u.displayName="Toasts")}catch{}},56051:(e,t,i)=>{i.d(t,{kF:()=>b,F7:()=>x});var l,r=i(74848),n=i(16522),a=i(38621),s=i(30093),o=i(94236),d=i(26108),c=i(69726),f=i(5524),h=i(57478),u=i(96540),m=i(34164);let p="FileFilter-module__filterLoadingHeight--sNCxc",x="No extension";function b({ref:e,filterSize:t="medium",filterText:i,onFilterTextChange:l,fileExtensions:n,unselectedFileExtensions:c,onFilterChange:p,onClearAllFilters:b,additionalFilterGroups:g,isFilteringActive:y}){n=n??{},c=c??new Set;let[_,v]=(0,u.useState)(i??""),N=(e,t)=>{p?.(e?"selectFileExtension":"unselectFileExtension",{extension:t})},j=Object.keys(n).filter(e=>e!==x).sort(),C=!!n[x];return(0,r.jsxs)("div",{id:"diff-file-tree-filter",className:"d-flex flex-nowrap gap-2",children:[(0,r.jsx)(s.A,{ref:e,block:!0,"aria-label":"Filter files\u2026",leadingVisual:a.SearchIcon,placeholder:"Filter files\u2026",size:t,className:(0,m.$)("small"===t&&"FileFilter-module__filterMaxHeight--Pjb6V"),value:_,onChange:e=>{v(e.target.value),l?.(e.target.value)}}),(0,r.jsxs)("div",{className:"position-relative",children:[(0,r.jsxs)(o.W,{children:[(0,r.jsx)(o.W.Anchor,{children:(0,r.jsx)(d.K,{"aria-label":"Filter options",icon:a.FilterIcon,className:"flex-shrink-0",size:t})}),(0,r.jsx)(o.W.Overlay,{children:(0,r.jsxs)(f.l,{children:[(0,r.jsxs)(f.l.Group,{selectionVariant:"multiple",children:[(0,r.jsx)(f.l.GroupHeading,{children:"File extensions"}),j.map(e=>{let t=!c.has(e);return(0,r.jsxs)(f.l.Item,{selected:t,onSelect:()=>N(!t,e),children:[e,(0,r.jsx)(f.l.TrailingVisual,{children:(0,r.jsx)(h.A,{children:n[e]})})]},e)}),C&&(0,r.jsxs)(f.l.Item,{selected:!c.has(x),onSelect:()=>N(!!c.has(x),x),children:[x,(0,r.jsx)(f.l.TrailingVisual,{children:(0,r.jsx)(h.A,{children:n[x]})})]},x)]}),g,y&&b&&(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(f.l.Divider,{}),(0,r.jsx)(f.l.Item,{onSelect:()=>{v(""),b?.()},children:(0,r.jsx)("span",{className:"FileFilter-module__clearFiltersText--zFlXb",children:"Clear filters"})})]})]})})]}),y&&(0,r.jsx)("span",{className:"FileFilter-module__filterIndicator--RhRsj"})]})]})}try{(l=function(e){let t,i,l,f,h,u=(0,n.c)(9),{filterText:x,onFilterTextChange:b}=e;return u[0]!==b?(t=e=>b?.(e.target.value),u[0]=b,u[1]=t):t=u[1],u[2]!==x||u[3]!==t?(i=(0,r.jsx)(s.A,{block:!0,"aria-label":"Filter files\u2026",leadingVisual:a.SearchIcon,placeholder:"Filter files\u2026",value:x,onChange:t}),u[2]=x,u[3]=t,u[4]=i):i=u[4],u[5]===Symbol.for("react.memo_cache_sentinel")?(l=(0,r.jsx)(o.W.Anchor,{children:(0,r.jsx)(d.K,{"aria-label":"Filter options",icon:a.FilterIcon,className:"flex-shrink-0"})}),u[5]=l):l=u[5],u[6]===Symbol.for("react.memo_cache_sentinel")?(f=(0,r.jsxs)(o.W,{children:[l,(0,r.jsx)(o.W.Overlay,{className:(0,m.$)(p),children:(0,r.jsx)("div",{className:(0,m.$)("d-flex","flex-column","flex-justify-center","flex-items-center",p),children:(0,r.jsx)(c.A,{size:"medium"})})})]}),u[6]=f):f=u[6],u[7]!==i?(h=(0,r.jsxs)("div",{className:"d-flex flex-nowrap gap-2",children:[i,f]}),u[7]=i,u[8]=h):h=u[8],h}).displayName||(l.displayName="FileFilterLoading")}catch{}try{b.displayName||(b.displayName="FileFilterShared")}catch{}},61583:(e,t,i)=>{i.d(t,{EW:()=>n,Gl:()=>p,ZD:()=>c,e3:()=>x,i8:()=>f,j$:()=>h,jU:()=>d,o9:()=>m,pd:()=>s,pk:()=>u,yI:()=>o});var l=i(53627),r=i(56038);function n(e){let t=e.match(/^#?(diff-[a-f0-9]+)(L|R)(\d+)(?:-(L|R)(\d+))?$/i);if(null!=t&&6===t.length)return t;let i=e.match(/^#?(discussion-diff-[0-9]+)(L|R)(\d+)(?:-(L|R)(\d+))?$/i);return null!=i&&6===i.length?i:null}function a(e,t){return`${"left"===t?"L":"R"}${e}`}function s(e){let t=e.match(/^#?(diff-[a-f0-9]+)/);return t?.[1]}function o(e){return!!(n(e)||n(`diff-${e}`))&&(e.includes("R")||e.includes("L"))}function d(e){if(!(s(e)||s(`diff-${e}`)))return;let t=e.replace("#","").replace("diff-","");return t.includes("-")&&(t=t.split("-")[0]??""),t.includes("L")&&(t=t.split("L")[0]??""),t.includes("R")&&(t=t.split("R")[0]??""),t}function c(e){let t=n(e);if(t){let e=t[1],i=t[2]?"L"===t[2]?"left":"right":void 0,l=t[3]?parseInt(t[3]):void 0;if(!e||!i||void 0===l)return;return{diffAnchor:e,startOrientation:i,startLineNumber:l,endOrientation:(t[4]?"L"===t[4]?"left":"right":void 0)??i,endLineNumber:(t[5]?parseInt(t[5]):void 0)??l,firstSelectedLineNumber:l,firstSelectedOrientation:i}}}function f(e){let t=h(e);(0,l.Zu)(t),(0,l.kd)(window.location.href)}function h(e){let t=a(e.startLineNumber,e.startOrientation),i=`${e.diffAnchor}${t}`;if(e.endLineNumber!==e.startLineNumber||e.endOrientation!==e.startOrientation){let t=a(e.endLineNumber,e.endOrientation);i+=`-${t}`}return i}function u(e){let t=`#${e}`;if(t===window.location.hash)return;let i=window.location.href;(0,l.Zu)(t),window.dispatchEvent(new HashChangeEvent("hashchange",{newURL:window.location.href,oldURL:i}))}function m(){let e=n(r.fV.hash??"")??"";return(""===e?s(r.fV.hash??"")??"":e?.[0]??"").replace("#","").replace("diff-","")}function p(){let e,t;return e=(r.fV.hash??"").match(/^#?(r\d+)/),(t=e?.[1])?parseInt(t.slice(1)):void 0}function x(){let e,t;return e=(r.fV.hash??"").match(/^#annotation_(\d+)/),(t=e?.[1])?parseInt(t):void 0}},63352:(e,t,i)=>{i.d(t,{Z:()=>N});var l=i(74848),r=i(16522),n=i(75202),a=i(56038),s=i(96540),o=i(38621),d=i(26108),c=i(57387),f=i(64451),h=i(86877),u=i(46720),m=i(10576),p=i(21373);let x=[{label:"Comment is harmful or unsafe",value:"OFFENSIVE_OR_DISCRIMINATORY"},{label:"Comment is poorly formatted",value:"POORLY_FORMATTED"},{label:"Comment is not true",value:"INCORRECT"},{label:"Comment is not helpful",value:"UNHELPFUL"},{label:"Comment is attached to the wrong line(s)",value:"INCORRECT_LINE"},{label:"Comment is a duplicate of another comment",value:"DUPLICATE"},{label:"Code suggestion is harmful or unsafe",value:"SUGGESTION_OFFENSIVE_OR_DISCRIMINATORY"},{label:"Code suggestion is poorly formatted",value:"SUGGESTION_POORLY_FORMATTED"},{label:"Code suggestion does not solve the problem in the comment",value:"SUGGESTION_UNHELPFUL"},{label:"Code suggestion is invalid",value:"SUGGESTION_INVALID"}],b=e=>{let t,i,n,a,o=(0,r.c)(16),{commentId:d,onClose:b,onSubmit:g,feedbackOptions:y,returnFocusRef:_}=e,v=void 0===y?x:y,[N,j]=(0,s.useState)(!1);o[0]===Symbol.for("react.memo_cache_sentinel")?(t=[],o[0]=t):t=o[0];let[C,w]=(0,s.useState)(t),[I,T]=(0,s.useState)("");o[1]!==d||o[2]!==C||o[3]!==g||o[4]!==I?(i=e=>{e.preventDefault(),j(!0),C.length&&g({commentId:d,type:"NEGATIVE",feedbackChoice:C,textResponse:I})},o[1]=d,o[2]=C,o[3]=g,o[4]=I,o[5]=i):i=o[5];let S=i,L=(0,s.useId)(),k=N&&0===C.length;return o[6]!==v||o[7]!==S||o[8]!==k||o[9]!==I||o[10]!==L?(n=()=>(0,l.jsxs)("form",{onSubmit:S,children:[(0,l.jsxs)(c.l.Body,{children:[(0,l.jsx)("div",{className:"mb-3",children:(0,l.jsxs)(f.A,{onChange:w,required:!0,children:[(0,l.jsx)(f.A.Label,{children:"Category"}),v.map(e=>(0,l.jsxs)(h.A,{id:`feedback_choice_${e.value}`,children:[(0,l.jsx)(u.A,{value:e.value,"aria-describedby":k?L:void 0}),(0,l.jsx)(h.A.Label,{children:e.label})]},e.value)),k&&(0,l.jsx)(f.A.Validation,{variant:"error",children:"Please select a feedback category"})]})}),(0,l.jsxs)(h.A,{id:"text_response",children:[(0,l.jsx)(h.A.Label,{children:"How should we improve this response?"}),(0,l.jsx)(m.Ay,{block:!0,rows:2,wrap:"wrap",name:"text_response",value:I,resize:"vertical",onChange:e=>T(e.currentTarget.value)})]})]}),(0,l.jsx)(c.l.Footer,{children:(0,l.jsx)(p.Q,{type:"submit",disabled:k,children:"Submit"})})]}),o[6]=v,o[7]=S,o[8]=k,o[9]=I,o[10]=L,o[11]=n):n=o[11],o[12]!==b||o[13]!==_||o[14]!==n?(a=(0,l.jsx)(c.l,{onClose:b,title:"Provide additional feedback",subtitle:"Please help us improve GitHub Copilot by sharing more details about this comment.",returnFocusRef:_,renderBody:n}),o[12]=b,o[13]=_,o[14]=n,o[15]=a):a=o[15],a};try{b.displayName||(b.displayName="NegativeFeedbackForm")}catch{}let g=e=>{let t,i,n=(0,r.c)(6),{onClick:a,commentId:s,disabled:c}=e;return n[0]!==s||n[1]!==a?(t=()=>a({type:"POSITIVE",commentId:s}),n[0]=s,n[1]=a,n[2]=t):t=n[2],n[3]!==c||n[4]!==t?(i=(0,l.jsx)(d.K,{size:"small",variant:"invisible",disabled:c,icon:o.ThumbsupIcon,title:"Positive Feedback","aria-label":"Positive Feedback",onClick:t}),n[3]=c,n[4]=t,n[5]=i):i=n[5],i},y=e=>{let t,i,n,a,c,f=(0,r.c)(18),{onClick:h,commentId:u,disabled:m,feedbackOptions:p,showNegativeFeedbackModal:x}=e,g=void 0===x||x,[y,_]=(0,s.useState)(!1),v=(0,s.useRef)(null);f[0]!==h?(t=e=>{h(e),_(!1)},f[0]=h,f[1]=t):t=f[1];let N=t;f[2]!==u||f[3]!==h||f[4]!==g?(i=()=>{g?_(!0):h({type:"NEGATIVE",commentId:u})},f[2]=u,f[3]=h,f[4]=g,f[5]=i):i=f[5];let j=i;return f[6]!==u||f[7]!==y||f[8]!==p||f[9]!==N||f[10]!==g?(n=y&&g&&(0,l.jsx)(b,{onClose:()=>_(!1),onSubmit:N,commentId:u,feedbackOptions:p,returnFocusRef:v}),f[6]=u,f[7]=y,f[8]=p,f[9]=N,f[10]=g,f[11]=n):n=f[11],f[12]!==m||f[13]!==j?(a=(0,l.jsx)(d.K,{ref:v,size:"small",variant:"invisible",disabled:m,icon:o.ThumbsdownIcon,title:"Negative Feedback","aria-label":"Negative Feedback",onClick:j}),f[12]=m,f[13]=j,f[14]=a):a=f[14],f[15]!==n||f[16]!==a?(c=(0,l.jsxs)(l.Fragment,{children:[n,a]}),f[15]=n,f[16]=a,f[17]=c):c=f[17],c};try{g.displayName||(g.displayName="PositiveFeedbackButton")}catch{}try{y.displayName||(y.displayName="NegativeFeedbackButton")}catch{}var _=i(96379);let v=e=>{let t,i,n,o,d,c,f=(0,r.c)(21),{commentId:h,commentUrl:u,feedbackPath:m,feedbackOptions:p,additionalParameters:x,showNegativeFeedbackModal:b}=e,v=void 0===b||b,[N,j]=(0,s.useState)();e:{if(m){t=m;break e}if(u){let e;f[0]!==u?((e=new URL(u,a.fV.origin)).hash="",f[0]=u,f[1]=e):e=f[1],t=`${e}/code_review_feedback`;break e}throw Error("missing feedbackPath and commentUrl")}let C=t;f[2]!==x||f[3]!==C?(i={path:C,additionalParameters:x},f[2]=x,f[3]=C,f[4]=i):i=f[4];let w=(({path:e,additionalParameters:t})=>(0,s.useCallback)(({type:i,commentId:l,feedbackChoice:r,textResponse:n})=>{try{let a=new FormData;if(a.set("comment_id",l),a.set("feedback",i),t)for(let[e,i]of Object.entries(t))a.set(e,i);for(let e of r??[])a.append("feedback_choice[]",e);n&&a.set("text_response",n),(0,_.DI)(e,{method:"POST",body:a})}catch{}},[e,t]))(i);f[5]!==w?(n=e=>{j(e.type),w(e)},f[5]=w,f[6]=n):n=f[6];let I=n,T=`copilot-code-review-feedback-${h}`;return f[7]!==h||f[8]!==I||f[9]!==N?(o="NEGATIVE"!==N&&(0,l.jsx)(g,{disabled:!!N,commentId:h,onClick:I}),f[7]=h,f[8]=I,f[9]=N,f[10]=o):o=f[10],f[11]!==h||f[12]!==p||f[13]!==I||f[14]!==v||f[15]!==N?(d="POSITIVE"!==N&&(0,l.jsx)(y,{disabled:!!N,onClick:I,commentId:h,feedbackOptions:p,showNegativeFeedbackModal:v}),f[11]=h,f[12]=p,f[13]=I,f[14]=v,f[15]=N,f[16]=d):d=f[16],f[17]!==T||f[18]!==o||f[19]!==d?(c=(0,l.jsxs)("div",{"data-testid":T,className:"d-flex gap-1",children:[o,d]}),f[17]=T,f[18]=o,f[19]=d,f[20]=c):c=f[20],c},N=e=>{let t,i=(0,r.c)(2);return i[0]!==e?(t=(0,l.jsx)(n.t,{boundaryName:"CopilotCodeReviewFeedback",fallback:null,children:(0,l.jsx)(v,{...e})}),i[0]=e,i[1]=t):t=i[1],t};try{v.displayName||(v.displayName="Feedback")}catch{}try{N.displayName||(N.displayName="CopilotCodeReviewFeedback")}catch{}},79472:(e,t,i)=>{i.d(t,{C0:()=>h,ID:()=>c,Qn:()=>u,aX:()=>o,bJ:()=>f,w$:()=>d});var l=i(16522),r=i(20622),n=i(97286),a=i(96459),s=i(53627);let o={splitPreference:"split",lineSpacing:"relaxed",commentsPreference:i(18799).sI.Visible};function d(){return[r.uT.diffViewUserSettings]}function c(e){let t,i,r,a=(0,l.c)(6);a[0]===Symbol.for("react.memo_cache_sentinel")?(t=d(),a[0]=t):t=a[0];let s=t;return a[1]!==e?(i=async()=>e||o,a[1]=e,a[2]=i):i=a[2],a[3]!==e||a[4]!==i?(r={queryKey:s,queryFn:i,initialData:e,staleTime:1/0},a[3]=e,a[4]=i,a[5]=r):r=a[5],(0,n.I)(r)}function f(e,t){let i=new URL(window.location.href,window.location.origin);if(t){let l=encodeURIComponent(t);i.searchParams.set(e,l)}else i.searchParams.delete(e);(0,s.bj)(i.toString())}function h(e){let t,i=(0,l.c)(2),r=e,[n]=(0,a.o)();i[0]!==n?(t=n.get("diff"),i[0]=n,i[1]=t):t=i[1];let s=t;return("split"===s||"unified"===s)&&(r=s),r}function u(e){let t=e,[i]=(0,a.o)(),l=i.get("w");return"1"===l?t=!0:"0"===l&&(t=!1),t}},88098:(e,t,i)=>{i.d(t,{u:()=>s});var l=i(74848),r=i(16522),n=i(34164);let a={diffSquare:"DiffSquares-module__diffSquare--KZMTU",addition:"DiffSquares-module__addition--kxGde",deletion:"DiffSquares-module__deletion--vyEtU",neutral:"DiffSquares-module__neutral--_tGgY"};function s(e){let t,i,n=(0,r.c)(4),{squares:a}=e;return n[0]!==a?(t=a.map(o),n[0]=a,n[1]=t):t=n[1],n[2]!==t?(i=(0,l.jsx)("div",{className:"d-flex",children:t}),n[2]=t,n[3]=i):i=n[3],i}function o(e,t){return(0,l.jsx)("div",{"data-testid":`${e} diffstat`,className:(0,n.$)(a.diffSquare,a[e])},t)}try{s.displayName||(s.displayName="DiffSquares")}catch{}},91618:(e,t,i)=>{i.d(t,{z:()=>a});var l=i(74848),r=i(16522),n=i(88098);function a(e){let t,i,a,s,o,d,c,f=(0,r.c)(21),{linesAdded:h,linesDeleted:u,linesChanged:m,hideSquares:p}=e,x=void 0===h?0:h,b=void 0===u?0:u,g=void 0===m?0:m,y=void 0!==p&&p;if(!x&&!b&&!g||0===g)return null;if(f[0]!==x||f[1]!==g||f[2]!==b){var _,v,N;let e,i,l,{greenSquares:r,redSquares:n,graySquares:a}=(_=x,v=b,i=Math.floor(_*(e=(N=g)>5?5/N:1)),{greenSquares:i,redSquares:l=Math.floor(v*e),graySquares:5-i-l});t=[...Array(r).fill("addition"),...Array(n).fill("deletion"),...Array(a).fill("neutral")],f[0]=x,f[1]=g,f[2]=b,f[3]=t}else t=f[3];let j=t;return f[4]!==x?(i=x>0&&(0,l.jsxs)("span",{"aria-hidden":"true",className:"f6 text-bold fgColor-success",children:["+",x.toLocaleString()]}),f[4]=x,f[5]=i):i=f[5],f[6]!==b?(a=b>0&&(0,l.jsxs)("span",{"aria-hidden":"true",className:"f6 text-bold fgColor-danger",children:["-",b.toLocaleString()]}),f[6]=b,f[7]=a):a=f[7],f[8]!==x||f[9]!==b?(s=function({linesAdded:e,linesDeleted:t}){let i="Lines changed: ";return i+`${e} ${1===e?"addition":"additions"} & ${t} ${1===t?"deletion":"deletions"}`}({linesAdded:x,linesDeleted:b}),f[8]=x,f[9]=b,f[10]=s):s=f[10],f[11]!==s?(o=(0,l.jsx)("span",{className:"sr-only",children:s}),f[11]=s,f[12]=o):o=f[12],f[13]!==y||f[14]!==j?(d=!y&&(0,l.jsx)(n.u,{squares:j}),f[13]=y,f[14]=j,f[15]=d):d=f[15],f[16]!==d||f[17]!==i||f[18]!==a||f[19]!==o?(c=(0,l.jsxs)("div",{className:"d-flex flex-items-center gap-1 pl-1",children:[i,a,o,d]}),f[16]=d,f[17]=i,f[18]=a,f[19]=o,f[20]=c):c=f[20],c}try{a.displayName||(a.displayName="DiffStats")}catch{}}}]); +//# sourceMappingURL=41461-96471d9a7f6b.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/42804-6a3ac24a88d4.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/42804-6a3ac24a88d4.js" new file mode 100644 index 0000000..a6dfd2d --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/42804-6a3ac24a88d4.js" @@ -0,0 +1,1524 @@ +performance.mark("js-parse-end:42804-6a3ac24a88d4.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[42804],{977:(e,a,l)=>{l.d(a,{Z:()=>G});var n,t=l(74848);let c={kind:"InlineDataFragment",name:"IssueFormElements_templateElements"};c.hash="8c027995abd00c22fac1d025a14e2a8d";var i=l(40104),s=l(96540),r=l(18312);let o={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"CheckboxesElement_input",selections:[{alias:"itemId",args:null,kind:"ScalarField",name:"id",storageKey:null},n={alias:null,args:null,kind:"ScalarField",name:"label",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"descriptionHTML",storageKey:null},{alias:"checkboxOptions",args:null,concreteType:"IssueFormElementCheckboxOption",kind:"LinkedField",name:"options",plural:!0,selections:[n,{alias:null,args:null,kind:"ScalarField",name:"labelHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"required",storageKey:null}],storageKey:null},{kind:"ClientExtension",selections:[{alias:null,args:null,kind:"ScalarField",name:"__id",storageKey:null}]}],type:"IssueFormElementCheckboxes",abstractKey:null};o.hash="66c71c2357977009e7b34571e8a11e21";var d=l(62559),u=l(73017),m=l(64451),p=l(86877),g=l(46720),y=l(10286);let h="_No response_";function f(e,a){return(0===a.length&&(a=h),e)?`### ${e} + +${a}`:a}let k=(e,a,l,n)=>{if("markdown"===a)return"";let t=""===a?l:`${a}-${l}`;return`${e}-${t}-${n}`};function b({itemId:e,indexOfFormElement:a,defaultValuesById:l,checkboxCount:n}){if(!e)return Array(n).fill(!1);let t=(0,y.k)({id:e,value:"",indexOfFormElement:a,defaultValuesById:l}).split(",").map(e=>"true"===e.trim());return t.length===n?t:Array(n).fill(!1)}let z=({ref:e,elementRef:a,index:l,sessionStorageKey:n,defaultValuesById:c,onFieldChange:i})=>{let s=(0,r.useFragment)(o,a);if(!s.checkboxOptions)return null;let d=k(n,"",s.label,s.__id);return(0,t.jsx)(F,{...s,type:"checkboxes",index:l,ref:e,sessionStorageKey:d,defaultValuesById:c,onFieldChange:i})},F=({ref:e,itemId:a,index:l,sessionStorageKey:n,label:c,descriptionHTML:r,checkboxOptions:o,defaultValuesById:y,onFieldChange:h})=>{let k=(0,s.useRef)(null),z=(0,s.useMemo)(()=>b({itemId:a,indexOfFormElement:l,defaultValuesById:y,checkboxCount:o.length}),[o.length,y,l,a]),[F,I]=(0,i.Fo)(n,z),S=(0,s.useRef)(F);(0,s.useEffect)(()=>{S.current=F},[F]),(0,s.useEffect)(()=>{let e=y&&Object.keys(y).length>0;if(h&&e){let e=b({itemId:a,indexOfFormElement:l,defaultValuesById:y,checkboxCount:o.length});I(e),S.current=e}},[y,l,a,o.length,I,h]),(0,s.useEffect)(()=>{if(h){let e=S.current,n=b({itemId:a,indexOfFormElement:l,defaultValuesById:y,checkboxCount:o.length});e.length===n.length&&e.every((e,a)=>e===n[a])||h(a,l,e.map(e=>e.toString()).join(","))}},[F,a,l,h,y,o.length]);let[C,v]=(0,s.useState)(void 0);return(0,s.useImperativeHandle)(e,()=>({focus:()=>k.current?.focus(),markdown:()=>f(c,o.map((e,a)=>{var l,n;return l=e.label,n=F[a],`- [${n?"x":" "}] ${l}`}).join(` +`)),validate:()=>{for(let[e,a]of o.entries())if(a.required&&!F[e])return v(d.wY.checkboxInAGroupMustBeSelected),!1;return!0},reset:()=>{I(z),v(void 0)},hasChanges:()=>!z.every((e,a)=>e===F[a]),getSessionStorageKey:()=>n,type:"checkboxes"}),[o,z,c,F,n,I]),(0,s.useEffect)(()=>{C&&o.every((e,a)=>!e.required||F[a])&&v(void 0)},[o,F,C]),(0,t.jsxs)(m.A,{className:"CheckboxesElement-module__CheckboxesElementGroup--cz_dJ",children:[(0,t.jsx)(m.A.Label,{className:"CheckboxesElement-module__CheckboxesElementGroupLabel--wixq_",children:c}),r&&(0,t.jsx)(m.A.Caption,{className:"CheckboxesElement-module__CheckboxesElementGroupDescription--DoWqf",children:(0,t.jsx)(u.vb,{html:r,className:"markdown-body note text-small mb-2"})}),o.map((e,a)=>(0,t.jsxs)(p.A,{required:e.required??!1,children:[(0,t.jsx)(g.A,{ref:0===a?k:void 0,checked:F[a],onChange:()=>{I(F.map((e,l)=>l===a?!e:e))}}),(0,t.jsx)(p.A.Label,{className:"CheckboxesElement-module__checkboxOptionLabel--kENEm",children:(0,t.jsx)(u.JR,{html:e.labelHTML})})]},a)),C&&(0,t.jsx)(m.A.Validation,{variant:"error",children:C})]})};z.displayName="CheckboxesElement",F.displayName="CheckboxesElementInternal";let I={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"DropdownElement_input",selections:[{alias:"itemId",args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"label",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"descriptionHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"options",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"required",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"multiple",storageKey:null},{alias:"defaultOptionIndex",args:null,kind:"ScalarField",name:"default",storageKey:null},{kind:"ClientExtension",selections:[{alias:null,args:null,kind:"ScalarField",name:"__id",storageKey:null}]}],type:"IssueFormElementDropdown",abstractKey:null};I.hash="c5f5c78821adbd1825aa041b7a1063bf";var S=l(94236),C=l(11196),v=l(5524);let x="DropdownElement-module__dropdownElementButtonText--NRhbg";var j=l(34164);function M({children:e,label:a,required:l,description:n,validationResult:c,className:i}){let r=(0,s.useId)(),o=(0,s.useId)(),d=(0,s.useId)();return(0,t.jsxs)("div",{className:(0,j.$)("ElementWrapper-module__elementWrapperContainer--Zviz8",i),children:[(0,t.jsxs)(p.A,{required:l??!1,children:[(0,t.jsx)(p.A.Label,{id:r,className:(0,j.$)("ElementWrapper-module__elementLabel--qX9VS",n&&"ElementWrapper-module__elementLabelWithDescription--c2FAt"),children:a}),n&&(0,t.jsx)(p.A.Caption,{id:o,className:"ElementWrapper-module__elementDescription--EA7D6",children:(0,t.jsx)(u.vb,{html:n,className:"markdown-body note text-small mb-2"})})]}),e({labelId:r,descriptionIds:`${o} ${d}`}),c&&(0,t.jsx)(p.A.Validation,{id:d,variant:"error",className:"ElementWrapper-module__validationMessage--P3NuI",children:c})]})}try{M.displayName||(M.displayName="ElementWrapper")}catch{}function T({itemId:e,indexOfFormElement:a,defaultValuesById:l,optionChoices:n}){if(!e)return[];let t=new Set(function(e){if(!e.trim())return[];try{let a=`[${e}]`;return JSON.parse(a)}catch{return[]}}((0,y.k)({id:e,indexOfFormElement:a,value:"",defaultValuesById:l})));return n.filter(e=>t.has(e))}let _=({ref:e,elementRef:a,index:l,sessionStorageKey:n,defaultValuesById:c,onFieldChange:i})=>{let s=(0,r.useFragment)(I,a);if(!s.options)return null;let o=k(n,"",s.label,s.__id);return(0,t.jsx)(N,{...s,index:l,ref:e,type:"dropdown",sessionStorageKey:o,defaultValuesById:c,onFieldChange:i})},N=({ref:e,itemId:a,index:l,sessionStorageKey:n,label:c,options:r,descriptionHTML:o,required:u,multiple:m,defaultOptionIndex:p,defaultValuesById:g,onFieldChange:y})=>{let h=(0,s.useRef)(null),k=(0,s.useRef)(null),b=null!=p,z=(0,s.useMemo)(()=>m||u||b?r:["None",...r],[b,m,r,u]),F=(0,s.useMemo)(()=>{let e=T({itemId:a,indexOfFormElement:l,defaultValuesById:g,optionChoices:z});return 0===e.length&&b&&p>=0&&p0&&!m&&(e=[z[0]]),e)},[p,g,b,l,a,m,z]),[I,j]=(0,i.Fo)(n,F),_=(0,s.useRef)(I);(0,s.useEffect)(()=>{_.current=I},[I]),(0,s.useEffect)(()=>{let e=g&&Object.keys(g).length>0;if(y&&e){let e=T({itemId:a,indexOfFormElement:l,defaultValuesById:g,optionChoices:z});j(e),_.current=e}},[g,l,a,z,j,y]),(0,s.useEffect)(()=>{if(y){let e=_.current,n=T({itemId:a,indexOfFormElement:l,defaultValuesById:g,optionChoices:z}),t=new Set(e),c=new Set(n);t.size===c.size&&[...t].every(e=>c.has(e))||y(a,l,e.map(e=>`"${e.replace(/\\/g,"\\\\").replace(/"/g,'\\"')}"`).join(", "))}},[I,a,l,y,g,z]);let[N,K]=(0,s.useState)(void 0),L=(0,s.useCallback)(e=>()=>{I.includes(e)?m&&j(I.filter(a=>a!==e)):m?j([...I,e]):j([e])},[m,I,j]);(0,s.useImperativeHandle)(e,()=>({focus:()=>h.current?.focus(),markdown:()=>f(c,I.join(", ")),validate:()=>!u||0!==I.length||(K(d.wY.missingDropdownSelection),!1),reset:()=>{j(F),K(void 0)},hasChanges:()=>{if(I.length!==F.length)return!0;for(let e of I)if(!F.includes(e))return!0;return!1},getSessionStorageKey:()=>n,type:"dropdown"}),[F,c,u,I,n,j]),(0,s.useEffect)(()=>{I.length>0&&K(void 0)},[I]);let[w,P]=(0,s.useState)(!1),A=0===I.length?"None":I.join(", ");return(0,s.useEffect)(()=>{k.current&&P(k.current.scrollWidth>k.current.clientWidth)},[k,P]),(0,t.jsx)(M,{label:c,description:o,required:u,validationResult:N,className:"DropdownElement-module__dropdownElementContainer--ME35C",children:({labelId:e,descriptionIds:a})=>(0,t.jsxs)(S.W,{anchorRef:h,children:[w?(0,t.jsx)(C.m,{text:A,children:(0,t.jsx)(S.W.Button,{"aria-labelledby":e,"aria-describedby":a,children:(0,t.jsx)("span",{ref:k,className:x,children:A})})}):(0,t.jsxs)(S.W.Button,{"aria-labelledby":e,"aria-describedby":a,children:[" ",(0,t.jsx)("span",{ref:k,className:x,children:A})]}),(0,t.jsx)(S.W.Overlay,{width:"medium",side:"outside-top",maxHeight:"medium",className:"DropdownElement-module__dropdownMenuOverlay--qDXwf",children:(0,t.jsx)(v.l,{selectionVariant:m?"multiple":"single",children:z.map((e,a)=>(0,t.jsx)(v.l.Item,{selected:I.includes(e),onSelect:L(e),children:e},a))})})]})})};_.displayName="DropdownElement",N.displayName="DropdownElementInternal";let K={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"MarkdownElement_input",selections:[{alias:null,args:null,kind:"ScalarField",name:"contentHTML",storageKey:null}],type:"IssueFormElementMarkdown",abstractKey:null};K.hash="bcf5223d492443ecf5db4594632948d9";var L=l(26076),w=l(41057);let P=()=>(0,t.jsx)("div",{className:"FormElementLoading-module__loadingSkeletonContainer--QboQa",children:(0,t.jsx)(w.Q,{borderRadius:"pill",height:"lg",width:"400px"})});try{P.displayName||(P.displayName="FormElementLoading")}catch{}let A=({elementRef:e})=>{let a=(0,r.useFragment)(K,e);return(0,t.jsx)(E,{verifiedHTML:a.contentHTML,type:"markdown"})},E=({verifiedHTML:e})=>(0,t.jsx)(s.Suspense,{fallback:(0,t.jsx)(P,{}),children:(0,t.jsx)(L.G,{verifiedHTML:e})});try{A.displayName||(A.displayName="MarkdownElement")}catch{}try{E.displayName||(E.displayName="MarkdownElementInternal")}catch{}let V={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"TextAreaElement_input",selections:[{alias:"itemId",args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"label",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"descriptionHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"placeholder",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"value",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"required",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"render",storageKey:null},{kind:"ClientExtension",selections:[{alias:null,args:null,kind:"ScalarField",name:"__id",storageKey:null}]}],type:"IssueFormElementTextarea",abstractKey:null};V.hash="77263c4a3e8e6f76c8ddc25b88931e27";var R=l(42118),D=l(10576);let O=({ref:e,elementRef:a,index:l,sessionStorageKey:n,...c})=>{let i=(0,r.useFragment)(V,a),s=k(n,"",i.label,i.__id);return(0,t.jsx)(B,{...i,...c,index:l,ref:e,type:"textarea",sessionStorageKey:s})},B=({ref:e,itemId:a,sessionStorageKey:l,index:n,label:c,descriptionHTML:r,placeholder:o,required:u,value:m,render:p,subject:g,defaultValuesById:k,onSave:b,setIsFileUploading:z,onFieldChange:F})=>{let I=(0,s.useMemo)(()=>(0,y.k)({id:a,indexOfFormElement:n,value:m,defaultValuesById:k}),[a,n,m,k]),[S,C]=(0,i.Fo)(l,I),[v,x]=(0,s.useState)(!1),j=(0,s.useRef)(null);(0,s.useEffect)(()=>{let e=k&&Object.keys(k).length>0;if(F&&e&&!v){let e=(0,y.k)({id:a,indexOfFormElement:n,value:m,defaultValuesById:k});e!==S&&e!==m&&C(e)}},[k,n,a,C,m,v,S,F]);let T=e=>{x(!0),C(e),F&&F(a,n,e),j.current&&clearTimeout(j.current),j.current=setTimeout(()=>{x(!1),j.current=null},500)},_=(0,s.useRef)(null),[N,K]=(0,s.useState)(void 0);return(0,s.useImperativeHandle)(e,()=>({focus:()=>_.current?.focus(),markdown:()=>f(c,p&&S!==h?`\`\`\`${p} +${S.replace(/(```)(\w+)/g,"").replace(/(```)/g,"").trim()} +\`\`\``:S),validate:()=>{let e=(0,d.sT)(S,u??!1);return K(e.errorMessage),e.isValid},reset:()=>{C(I),K(void 0)},hasChanges:()=>S!==I,getSessionStorageKey:()=>l,type:"textarea"}),[I,c,p,u,l,C,S]),(0,s.useEffect)(()=>{N&&(0,d.sT)(S,u??!1).isValid&&K(void 0)},[u,S,N]),(0,t.jsx)(M,{label:c,required:u,description:r,validationResult:N,className:"TextAreaElement-module__TextAreaElementContainer--efGjO",children:({labelId:e,descriptionIds:a})=>p?(0,t.jsx)(D.Ay,{"aria-labelledby":e,"aria-describedby":a,ref:_,placeholder:o??void 0,value:S,className:"TextAreaElement-module__codeViewTextArea--uyz8K",onChange:e=>{T(e.target.value)}}):(0,t.jsx)(R.hF,{labelledBy:e,"aria-describedby":a,ref:_,placeholder:o??void 0,value:S,onChange:e=>{T(e)},onSave:b,saveButtonTrailingIcon:!1,subject:g,setIsFileUploading:z})})};O.displayName="TextAreaElement",B.displayName="TextAreaElementInternal";let $={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"TextInputElement_input",selections:[{alias:"itemId",args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"label",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"descriptionHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"placeholder",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"value",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"required",storageKey:null},{kind:"ClientExtension",selections:[{alias:null,args:null,kind:"ScalarField",name:"__id",storageKey:null}]}],type:"IssueFormElementInput",abstractKey:null};$.hash="20ef068a2834313afaaf43e8b01d0d49";var U=l(30093);let q=({ref:e,elementRef:a,sessionStorageKey:l,...n})=>{let c=(0,r.useFragment)($,a),i=k(l,"",c.label,c.__id);return(0,t.jsx)(H,{...c,...n,type:"input",sessionStorageKey:i,ref:e})},H=({ref:e,sessionStorageKey:a,itemId:l,index:n,label:c,descriptionHTML:r,placeholder:o,required:u,value:m,defaultValuesById:p,onFieldChange:g})=>{let h=(0,s.useMemo)(()=>(0,y.k)({id:l,indexOfFormElement:n,value:m,defaultValuesById:p}),[l,n,m,p]),[k,b]=(0,i.Fo)(a,h),[z,F]=(0,s.useState)(!1),I=(0,s.useRef)(null);(0,s.useEffect)(()=>{let e=p&&Object.keys(p).length>0;if(g&&e&&!z){let e=(0,y.k)({id:l,indexOfFormElement:n,value:m,defaultValuesById:p});e!==k&&e!==m&&b(e)}},[p,n,z,l,g,b,m,k]);let S=(0,s.useRef)(null),[C,v]=(0,s.useState)(void 0);return(0,s.useImperativeHandle)(e,()=>({focus:()=>S.current?.focus(),markdown:()=>f(c,k),validate:()=>{let e=(0,d.sT)(k,u??!1);return v(e.errorMessage),e.isValid},reset:()=>{b(h),v(void 0)},hasChanges:()=>k!==h,getSessionStorageKey:()=>a,type:"input"}),[h,c,u,a,b,k]),(0,s.useEffect)(()=>{C&&(0,d.sT)(k,u??!1).isValid&&v(void 0)},[u,k,C]),(0,t.jsx)(M,{label:c,description:r,required:u,validationResult:C,children:({labelId:e,descriptionIds:a})=>(0,t.jsx)(U.A,{ref:S,"aria-labelledby":e,"aria-describedby":a,placeholder:o??void 0,value:k,className:"TextInputElement-module__issueFormTextField--dG9jp",onChange:e=>{var a;a=e.target.value,F(!0),b(a),g&&g(l,n,a),I.current&&clearTimeout(I.current),I.current=setTimeout(()=>{F(!1),I.current=null},500)}})})};q.displayName="TextInputElement",H.displayName="TextInputElementInternal";let W="IssueFormElements-module__formElementsContainer--v0fMt",G=e=>"elements"in e?(0,t.jsx)(Q,{...e}):(0,t.jsx)(Y,{...e}),Q=({elements:e,outputRef:a,sessionStorageKey:l,...n})=>{let c=X(e.length,a);return(0,t.jsx)("div",{className:W,children:e.map((e,a)=>{let i="markdown"===e.type?"":k(l,e.type,e.label,a);switch(e.type){case"markdown":return(0,t.jsx)(E,{...e},a);case"textarea":return(0,t.jsx)(B,{index:a,...e,ref:c[a],sessionStorageKey:i,...n},a);case"input":return(0,t.jsx)(H,{index:a,...e,ref:c[a],sessionStorageKey:i,...n},a);case"dropdown":return(0,t.jsx)(N,{index:a,...e,ref:c[a],sessionStorageKey:i},a);case"checkboxes":return(0,t.jsx)(F,{index:a,...e,ref:c[a],sessionStorageKey:i},a)}})})},Y=({issueFormRef:e,outputRef:a,...l})=>{let n=(0,r.readInlineData)(c,e),i=X(n.elements.length,a);return(0,t.jsx)("div",{className:W,children:n.elements.map((e,a)=>{switch(e.__typename){case"IssueFormElementMarkdown":return(0,t.jsx)("div",{className:"IssueFormElements-module__markdownElementWrapper--sr15G",children:(0,t.jsx)(A,{elementRef:e})},a);case"IssueFormElementInput":return(0,t.jsx)(q,{index:a,elementRef:e,ref:i[a],...l},a);case"IssueFormElementDropdown":return(0,t.jsx)(_,{index:a,elementRef:e,ref:i[a],...l},a);case"IssueFormElementTextarea":return(0,t.jsx)(O,{index:a,elementRef:e,ref:i[a],...l},a);case"IssueFormElementCheckboxes":return(0,t.jsx)(z,{index:a,elementRef:e,ref:i[a],...l},a);default:return null}})})},X=(e,a)=>{let l=(0,s.useMemo)(()=>Array.from({length:e},()=>(0,s.createRef)()),[e]);return(0,s.useImperativeHandle)(a,()=>({markdown:()=>l.map(e=>e.current?.markdown()??"").filter(e=>e.length>0).join(` + +`),getInvalidInputs:()=>l.map(e=>e.current).filter(e=>null!==e&&!e.validate()),validateInputs:()=>!l.map(e=>e.current?.validate()??!0).some(e=>!e),resetInputs:(e={})=>{let{textOnly:n=!1}=e;for(let e of l){if(!n){e.current?.reset();continue}(e.current?.type==="input"||e.current?.type==="textarea"||e.current?.type==="markdown")&&e.current?.reset()}a.current?.clearSessionStorage()},hasChanges:()=>l.some(e=>e.current?.hasChanges()??!1),clearSessionStorage:()=>{let e=l.map(e=>e.current?.getSessionStorageKey()).filter(e=>null!==e);(0,i.D6)(e)}}),[l,a]),l};try{G.displayName||(G.displayName="IssueFormElements")}catch{}try{Q.displayName||(Q.displayName="IssueFormElementsViaPayload")}catch{}try{Y.displayName||(Y.displayName="IssueFormElementsViaQuery")}catch{}},1293:(e,a,l)=>{l.d(a,{pf:()=>x,S7:()=>T,PT:()=>M,Dd:()=>j});var n,t,c,i,s=l(74848);let r=(c=[n={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},t={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"dataType",storageKey:null}],{argumentDefinitions:[],kind:"Fragment",metadata:null,name:"TypesSectionTypeFragment",selections:[{alias:null,args:null,concreteType:"IssueType",kind:"LinkedField",name:"issueType",plural:!1,selections:[n,t,{alias:null,args:null,kind:"ScalarField",name:"isEnabled",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"pinnedFields",plural:!0,selections:[{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},{kind:"InlineFragment",selections:c,type:"IssueFieldText",abstractKey:null},{kind:"InlineFragment",selections:c,type:"IssueFieldSingleSelect",abstractKey:null},{kind:"InlineFragment",selections:c,type:"IssueFieldDate",abstractKey:null},{kind:"InlineFragment",selections:c,type:"IssueFieldNumber",abstractKey:null}],storageKey:null}],storageKey:null}],type:"Issue",abstractKey:null});r.hash="5de1a91f4e1d4ecaa3f0a9efbb82f741";let o={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"TypesSectionFragment",selections:[{alias:null,args:null,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"nameWithOwner",storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"owner",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null}],storageKey:null},{alias:null,args:[{kind:"Literal",name:"first",value:100}],concreteType:"IssueTypeConnection",kind:"LinkedField",name:"issueTypes",plural:!1,selections:[{alias:null,args:null,concreteType:"IssueTypeEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:"IssueType",kind:"LinkedField",name:"node",plural:!1,selections:[i={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null}],storageKey:null}],storageKey:null}],storageKey:"issueTypes(first:100)"}],storageKey:null},i,{args:null,kind:"FragmentSpread",name:"TypesSectionTypeFragment"},{alias:null,args:null,kind:"ScalarField",name:"viewerCanType",storageKey:null}],type:"Issue",abstractKey:null};o.hash="ed89df93a2fdaab7d32e7dfddf950293";var d=l(37630),u=l(67126),m=l(85346),p=l(43258),g=l(30459),y=l(96540),h=l(18312),f=l(93513),k=l(2495),b=l(16810),z=l(21798),F=l(25983),I=l(20177);function S({type:e,anchorProps:a,repoNameWithOwner:l}){return(0,s.jsx)(s.Fragment,{children:e?(0,s.jsx)("div",{"data-testid":I.Y.typeContainer,className:"IssueType-module__IssueTypeToken--hdXht",children:(0,s.jsx)(F.n,{name:e.name,color:e.color,href:`/${l}/issues?q=type:"${e.name}"`,getTooltipText:a=>a?e.name:void 0})}):(0,s.jsx)("div",{className:"IssueType-module__hiddenPlaceholder--nnfV9",...a})})}try{S.displayName||(S.displayName="IssueType")}catch{}let C=()=>(0,s.jsx)(k.h,{title:f.k.sectionTitles.types}),v=({sectionHeader:e,type:a,repoNameWithOwner:l,sx:n})=>(0,s.jsx)(b.w,{id:"sidebar-types-section",sx:n,sectionHeader:e,emptyText:a?void 0:f.k.emptySections.types,children:(0,s.jsx)("div",{className:"TypesSection-module__typeContainer--YI5mY",children:(0,s.jsx)(S,{type:a,repoNameWithOwner:l})})});function x({type:e,onSelectionChange:a,viewerCanType:l,sx:n,...t}){let{sendAnalyticsEvent:c}=(0,g.s)(),{repo:i,owner:r}=t;return(0,s.jsx)(v,{sx:n,sectionHeader:l?(0,s.jsx)(m.u,{onSelectionChange:e=>{let l=e?.[0]||null;c("issue_create.update_issue_type","ISSUE_CREATE_UPDATE_ISSUE_TYPE_DIALOG",{issueTypeId:l?.id??""}),a(l)},readonly:l,activeIssueType:e,anchorElement:(e,a)=>(0,s.jsx)(z.X,{title:f.k.sectionTitles.types,buttonProps:e,ref:a}),...t,width:"medium"}):(0,s.jsx)(C,{}),type:e,repoNameWithOwner:`${r}/${i}`})}let j=r,M=o;function T({issue:e,onIssueUpdate:a,insideSidePanel:l,readonly:n}){let t=(0,h.useFragment)(M,e),{repository:{name:c,owner:{login:i},nameWithOwner:r,issueTypes:o},id:k,viewerCanType:b}=t,F=o?.edges?.map(e=>e?.node?.id)||[],{issueType:I}=(0,h.useFragment)(j,t),S=I||null,{sendAnalyticsEvent:x}=(0,g.s)(),{addToast:T}=(0,p.Y6)(),_=(0,h.useRelayEnvironment)(),N=(0,y.useCallback)(e=>{let l=e.length>0?e[0]:null,n=l?.id??null;x("issue_viewer.update_issue_type","ISSUE_VIEWER_UPDATE_ISSUE_TYPE_DIALOG",{initialIssueTypeId:S?.id??"",issueTypeId:n??""});let t=l?{id:l.id,name:l.name,description:l.description,color:l.color,isEnabled:l.isEnabled,pinnedFields:l.pinnedFields}:null;(0,d._)({environment:_,input:{issueId:k,issueTypeId:n},optimisticIssueType:t,onError:()=>T({type:"error",message:u.S.couldNotUpdateType}),onCompleted:a})},[S?.id,T,_,k,a,x]),K=(0,y.useMemo)(()=>{let e=n||!b;return e?(0,s.jsx)(C,{}):(0,s.jsx)(m.u,{owner:i,repo:c,onSelectionChange:N,anchorElement:(e,a)=>(0,s.jsx)(z.X,{title:f.k.sectionTitles.types,buttonProps:e,ref:a}),readonly:e,activeIssueType:S??null,insidePortal:l,width:"medium"})},[n,b,i,c,N,S,l]);return b||0!==F.length?(0,s.jsx)(v,{sectionHeader:K,type:S??null,repoNameWithOwner:r}):null}try{C.displayName||(C.displayName="ReadonlyTypesSectionHeader")}catch{}try{v.displayName||(v.displayName="TypesSection")}catch{}try{x.displayName||(x.displayName="CreateIssueIssueTypesSection")}catch{}try{T.displayName||(T.displayName="EditIssueIssueTypeSection")}catch{}},2320:(e,a,l)=>{l.d(a,{t:()=>E});var n=l(74848),t=l(19918),c=l(49275),i=l(81289),s=l(81709),r=l(69599),o=l(84363),d=l(67126),u=l(38143),m=l(86391),p=l(73017),g=l(56038),y=l(43258),h=l(46747),f=l(38621),k=l(5839),b=l(96540);let z=[],F={groupId:"labels",header:{title:"Selected labels",variant:"filled"}},I={groupId:"favorite",header:{title:"Favorite",variant:"filled"}},S={groupId:"suggestions",header:{title:"Suggestions",variant:"filled"}},C={groupId:"copilot",header:{title:"Copilot suggestions",variant:"filled"}};function v({labels:e,suggestions:a=z,totalNumberOfLabels:l,copilotSuggestedLabels:i,favoriteLabelIds:s,searchLabels:v,onSelectionChange:j,insidePortal:M,anchorElement:T,nested:_=!1,triggerOpen:N=!0,initialFilter:K,owner:L,repo:w,showEditLabelsButton:P=!0,noLabelOption:A,title:E,showNoMatchItem:V=!1,canCreateLabel:R,repositoryId:D,isLoading:O=!1,setIsLoading:B,onCreate:$}){let U=(0,r.G7)("issues_react_remove_labels_loading"),q=(0,r.G7)("issues_react_select_panel_fullscreen_on_narrow"),[H,W]=(0,b.useState)(""),G=(0,b.useDeferredValue)(H),Q=(0,b.useRef)(new Set),[Y,X]=(0,b.useState)(!1),[Z,J]=(0,b.useState)(a),{addToast:ee}=(0,y.Y6)(),ea=`${L}/${w}`;(0,b.useEffect)(()=>{J(a)},[a]);let el=v&&l>a.length,en=(0,b.useMemo)(()=>e.slice().sort((e,a)=>e.name.localeCompare(a.name)),[e]),et=(0,b.useCallback)(e=>e.name,[]),ec=(0,b.useCallback)(e=>`${e.name} ${e.description??""}`,[]),ei=(0,b.useMemo)(()=>{if(!G){let l=U?Z:a,n=[...en],t=(i??[]).filter(a=>!e.find(e=>e.id===a.id)),c=l.filter(a=>!e.find(e=>e.id===a.id)&&!t.find(e=>e.id===a.id));return n.push(...t,...c),n.slice(0,u.t.labelsInitialLoadCount)}let l=new Map;for(let e of Z)l.set(e.id,e);for(let e of i??[])l.has(e.id)||l.set(e.id,e);let n=Array.from(l.values());return(0,o.t)({items:n,filter:G,key:et,secondaryKey:ec}).slice(0,30)},[G,Z,U,a,en,i,e,et,ec]),es=(0,b.useCallback)(async e=>{if(!U&&""===e){J(a),X(!1);return}if(U&&Q.current.has(e))return void X(!1);if(v){X(!0);try{J(U?x([...Z,...await v(e)]):await v(e))}catch{ee({type:"error",message:d.S.couldNotSearchLabels})}finally{X(!1),U&&Q.current.add(e)}}},[U,v,a,Z,ee]),er=(0,h.d)(e=>es(e),u.t.pickerDebounceTime),eo=(0,b.useCallback)(e=>{let l=e.trim();if(H!==l&&el){X(!0),er(l),W(e);return}0!==a.length&&W(e)},[er,H,el,a.length]),ed=(0,b.useCallback)(e=>e.id,[]),eu=(0,b.useCallback)((e,a,l)=>{l.preventDefault(),l.stopPropagation(),D&&$&&B&&(B(!0),$({repositoryId:D,color:a.color,name:a.name},{onError:()=>{ee({type:"error",message:d.S.couldNotCreateLabel}),B(!1)},onSuccess:e=>{e&&J([{...e,__isNew__:!0},...Z]),B(!1)}}))},[ee,Z,$,D,B]),em=(0,b.useCallback)(a=>{let l;if(A&&a.id===c.v.noLabelsData.id){let e={...A};return e.groupId=e.selected?F.groupId:S.groupId,e}if(a.id===H)return{id:a.id,description:a.description||void 0,descriptionVariant:"block",source:a,text:`Create new label: "${a.name}"`,trailingVisual:f.PlusIcon,className:"LabelPickerBase-module__labelPickerItem--gTZua",onAction:(e,l)=>eu(e,a,l)};let t=(i??[]).some(e=>e.id===a.id),r=(s??[]).some(e=>e===a.id);return l=e.find(e=>e.id===a.id)?F.groupId:r?I.groupId:t?C.groupId:S.groupId,{id:a.id,description:a.description??void 0,descriptionVariant:"block",children:(0,n.jsx)(p.JR,{html:a.nameHTML,className:"LabelPickerBase-module__labelNameText--wVmPP"}),source:a,groupId:l,leadingVisual:()=>(0,n.jsx)("div",{style:{background:`#${a.color}`,borderColor:`#${a.color}`},className:"LabelPickerBase-module__labelColorBox--PSuNK"})}},[A,H,i,s,e,eu]),ep=(0,b.useMemo)(()=>{let a=[];return e.length>0&&a.push(F),(s??[]).some(a=>!e.some(e=>e.id===a))&&a.push(I),(i??[]).some(a=>!e.some(e=>e.id===a.id)&&s?.indexOf(a.id)===-1)&&a.push(C),ei.length>0&&ei.length-e.length>0&&a.push(S),a},[e,s,i,ei.length]),eg=(0,b.useMemo)(()=>{if(!ea||!g.XC?.location)return;let e=g.XC.location.origin;return`${e}/${ea}/issues/labels`},[ea]),ey=(0,b.useCallback)(e=>{g.XC?.location?.href&&P&&eg&&1!==e.button&&(e.metaKey||e.ctrlKey||e.shiftKey||e.altKey||(e.preventDefault(),g.XC.location.href=eg))},[eg,P]),eh=(0,b.useRef)(null),ef=(0,b.useMemo)(()=>{let e=!Y&&!H&&0===ei.length,a=!(V&&R&&!Y)&&!!H&&0===ei.length;return e||a},[Y,H,ei.length,V,R]);return(0,n.jsx)("div",{className:"LabelPickerBase-module__labelPickerContainer--cqqGL",children:(0,n.jsx)(m.O,{loading:U?O:O||Y,items:ei,initialSelectedItems:e,title:E||t.k.labelsHeader,filterItems:eo,getItemKey:ed,convertToItemProps:em,placeholderText:"Filter labels",selectionVariant:0===ei.length?"single":"multiple",onSelectionChange:j,renderAnchor:e=>T(e,eh),groups:H?void 0:ep,insidePortal:M,height:"large",width:"medium",nested:_,resultListAriaLabel:"Label results",triggerOpen:N,initialFilter:K,selectPanelRef:eh,keybindingCommandId:"item-pickers:open-labels",eventsTag:"label",customNoMatchItem:R&&V&&H&&!Y?{id:H,color:"aaaaaa",name:H,nameHTML:H,description:void 0,url:""}:void 0,suppressNoMatchItem:!0,improvedNoMatchAccessibility:ef,noMatchMessage:ef?{title:"No labels were found",body:"Try searching with a different query for results.",variant:"empty"}:void 0,secondaryAction:P?(0,n.jsx)(k.X.SecondaryActionLink,{onClick:ey,href:eg,size:"small",children:t.k.editLabels}):void 0,responsiveOnNarrow:q,focusPrependedElements:!0})})}let x=e=>e.filter((e,a,l)=>l.findIndex(a=>a.id===e.id)===a);try{v.displayName||(v.displayName="LabelPickerBase")}catch{}var j=l(97665),M=l(96379),T=l(47544);async function _({owner:e,repo:a,query:l,count:n,labelNames:t}){let c={owner:e,repo:a};l&&(c.query=l),n&&(c.count=n),t&&t.length>0&&(c.labelNames=t.join(","));let i=(0,T.JF)("labels",c),s=await (0,M.lS)(i);return await s.json()}function N(e,a){let l=e.map(e=>e.replace(/^"/,"").replace(/"$/,""));return a.filter(e=>l.includes(e.name))}var K=l(73049),L=l(94747);async function w(e){let a=(0,T.kP)("labels");return(await (0,M.lS)(a,{method:"POST",body:e})).json()}async function P(e,{owner:a,repo:l,query:n,count:t,labelNames:c}){return await e.fetchQuery({queryKey:["item_picker","labels",{owner:a,repo:l,query:n,count:t,labelNames:c}],queryFn:async()=>{var e;let i,s=await _({owner:a,repo:l,query:n,count:t,labelNames:c});return e=(0,K.A)(s).data,i=e.repository.labelsByNames?.nodes,c&&c.length>0&&i&&(i=N(c,i)),{labels:e.repository.labels.nodes,repositoryId:e.repository.id,totalCount:e.repository.labels.totalCount,labelsByNames:i}}})}function A({repo:e,owner:a,labels:l,labelNames:i,preloadedLabels:r,noLabelOption:o,...d}){let u=r&&!!r.labels?.length,[m,p]=(0,b.useState)(!u),[g,y]=(0,b.useState)(0),[h,f]=(0,b.useState)(!1),[k,z]=(0,b.useState)(()=>{if(u){let e=i?N(i,r.labels):void 0;return{repositoryId:r.repositoryId,labels:i?e||[]:r.labels,totalCount:r.totalCount,labelsByNames:e}}return null}),[F,I]=(0,b.useState)(()=>u&&i?N(i,r.labels):l),S=(0,j.jE)(),{mutate:C}=(0,L.n)({mutationFn:async e=>{let a=await w(e);return(0,K.A)(a).data.createLabel.label}});(0,b.useEffect)(()=>{u||(async()=>{try{let l=await P(S,{owner:a,repo:e,query:"",labelNames:i});z(l),i&&i.length>0&&I(l.labelsByNames||[]),p(!1),f(!1)}catch{f(!0),p(!1)}})()},[g,a,S,e,i,u]);let x=(0,b.useRef)(null),{createFallbackComponent:M}=(0,s.j)({errorMessage:t.k.cantEditItems("labels"),anchorElement:e=>d.anchorElement(e,x),open:!0}),T=(0,b.useCallback)(async l=>(await P(S,{owner:a,repo:e,query:l})).labels,[S,a,e]),_=(0,b.useCallback)((e,{onSuccess:a,onError:l})=>{C(e,{onSuccess:a,onError:l})},[C]),A=(0,b.useMemo)(()=>{let e=k?.labels??[];return o?[c.v.noLabelsData,...e]:e},[k?.labels,o]),E=(0,b.useMemo)(()=>{let e=i?F:l;return o?.selected&&!e.find(e=>e.id===c.v.noLabelsData.id)?[c.v.noLabelsData,...e]:e},[F,i,l,o?.selected]);return h?M(()=>y(e=>e+1)):(0,n.jsx)(v,{repo:e,owner:a,repositoryId:k?.repositoryId??"",labels:E,suggestions:A,totalNumberOfLabels:k?.totalCount??0,isLoading:m,setIsLoading:p,searchLabels:T,onCreate:_,noLabelOption:o,...d})}function E({repo:e,owner:a,anchorElement:l,readonly:t,labels:c,labelNames:s,noLabelOption:r,...o}){return(0,n.jsx)(i.y,{keybindingCommandId:"item-pickers:open-labels",anchorElement:(e,a)=>l(e,a),createChild:()=>(0,n.jsx)(A,{repo:e,owner:a,readonly:t,initialFilter:"",labels:c,labelNames:s,triggerOpen:!0,anchorElement:l,noLabelOption:r,...o}),insidePortal:o.insidePortal})}try{A.displayName||(A.displayName="ItemPickerFetcher")}catch{}try{E.displayName||(E.displayName="LabelPicker")}catch{}},2495:(e,a,l)=>{l.d(a,{h:()=>c});var n=l(74848),t=l(21798);function c({title:e,headingProps:{...a}={},...l}){return(0,n.jsx)(t.X,{title:e,headingProps:a,...l,readonly:!0})}try{c.displayName||(c.displayName="ReadonlySectionHeader")}catch{}},2892:(e,a,l)=>{l.d(a,{a:()=>F});var n=l(74848),t=l(12683),c=l(26108),i=l(38621),s=l(47990),r=l(96540),o=l(38267);let d="16px",u="20px",m="24px",p="32px",g="medium",y=({as:e="span",onClick:a,onFocus:l,tabIndex:n=-1,interactive:t})=>t??!!(l||a||n>-1||["a","button"].includes(e)),h={fontSize:1,height:p,lineHeight:p,px:3,py:0},f={small:{fontSize:0,height:d,lineHeight:d,px:1,py:0},medium:{fontSize:0,height:u,lineHeight:u,px:2,py:0},large:{fontSize:0,height:m,lineHeight:m,px:2,py:0},extralarge:h,xlarge:h},k=o.Ay.span.withConfig({displayName:"TokenBase__StyledTokenBase",componentId:"sc-3268ba02-0"})(["align-items:center;border-radius:999px;cursor:",";display:inline-flex;font-weight:",";font-family:inherit;text-decoration:none;max-width:100%;position:relative;white-space:nowrap;",""],e=>y(e)?"pointer":"auto",(0,t.yB)("fontWeights.bold"),t.sx);function b({ref:e,text:a,onRemove:l,id:t,as:c="span",sx:i,size:s=g,...r}){return(0,n.jsx)(k,{"aria-label":l?`${a}, press backspace or delete to remove`:void 0,id:t?.toString(),as:c,sx:{...f[s],...i},...r,ref:e})}try{b.displayName||(b.displayName="TokenBase")}catch{}let z=(0,o.Ay)("span").withConfig({displayName:"TokenTextContainer",componentId:"sc-64a94069-0"})(["flex-grow:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;background:transparent;border:0;font:inherit;margin:0;padding:0;width:auto;-webkit-font-smoothing:inherit;-moz-osx-font-smoothing:inherit;color:currentColor;text-decoration:none;&:is(a,button,[tabIndex='0']){cursor:pointer;&::after{content:'';position:absolute;left:0;top:0;right:0;bottom:0;}}"]);try{z.displayName||(z.displayName="TokenTextContainer")}catch{}let F=({ref:e,as:a,fontWeight:l,fillColor:o="#999",onRemove:d,id:u,isSelected:m,text:p,size:h=g,hideRemoveButton:f,href:k,onDelete:F,...I})=>{let{colorScheme:S}=(0,t.DP)(),C=(0,r.useMemo)(()=>S?.includes("high_contrast"),[S]),v=(0,r.useMemo)(()=>({"--lightness-threshold":"0.453","--border-threshold":"0.96","--background-alpha":"0.20","--border-alpha":"max(0, min(calc((var(--perceived-lightness) - var(--border-threshold)) * 100), 1))",background:"rgb(var(--label-r), var(--label-g), var(--label-b))",color:"hsl(0deg, 0%, calc(var(--lightness-switch) * 100%))",borderWidth:1,borderStyle:"solid",borderColor:"hsla(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) - 25) * 1%), var(--border-alpha))"}),[]),x=(0,r.useMemo)(()=>({"--lightness-threshold":"0.6","--background-alpha":"0.18","--border-alpha":C?"0.9":"0.3","--lighten-by":"calc(((var(--lightness-threshold) - var(--perceived-lightness)) * 100) * var(--lightness-switch))",borderWidth:1,borderStyle:"solid",background:"rgba(var(--label-r), var(--label-g), var(--label-b), var(--background-alpha))",color:"hsl(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) + var(--lighten-by)) * 1%))",borderColor:"hsla(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) + var(--lighten-by)) * 1%), var(--border-alpha))"}),[C]),j={as:a,href:k},M=y(I)&&!!d&&!f,T=(0,r.useMemo)(()=>{let[e,a,n]=(0,s.Du)(o),[t,c,i]=(0,s.BT)(o);return{"--label-r":String(e),"--label-g":String(a),"--label-b":String(n),"--label-h":String(Math.round(t)),"--label-s":String(Math.round(100*c)),"--label-l":String(Math.round(100*i)),"--perceived-lightness":"calc(((var(--label-r) * 0.2126) + (var(--label-g) * 0.7152) + (var(--label-b) * 0.0722)) / 255)","--lightness-switch":"max(0, min(calc((var(--perceived-lightness) - var(--lightness-threshold)) * -1000), 1))","--border-color":"var(--borderColor-muted, var(--color-border-subtle))",paddingRight:f||!d?void 0:0,position:"relative",minWidth:0,overflow:"hidden",...S?.includes("light")?v:x,...l?{fontWeight:l}:{},...m?{background:"light"===S?"hsl(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) - 5) * 1%))":x.background,":focus":{outline:"none"},":after":{content:'""',position:"absolute",zIndex:1,top:"-2px",right:"-2px",bottom:"-2px",left:"-2px",display:"block",pointerEvents:"none",boxShadow:`0 0 0 2px ${"light"===S?"rgb(var(--label-r), var(--label-g), var(--label-b))":"hsl(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) + var(--lighten-by)) * 1%))"}`,borderRadius:"999px"}}:{}}},[o,f,d,l,S,v,x,m]);return(0,n.jsxs)(b,{onRemove:d,id:u?.toString(),isSelected:m,text:p,size:h,sx:T,...!M?j:{},...I,ref:e,className:F?"LabelToken-module__labelTokenBase--v0rBi":void 0,children:[(0,n.jsx)(z,{...M?j:{},children:p}),F&&(0,n.jsx)(c.K,{onClick:e=>{e.stopPropagation(),e.preventDefault(),F()},variant:"invisible",icon:i.XIcon,size:"small","aria-label":"Remove label",className:"LabelToken-module__labelTokenDeleteButton--VLMDp"})]})};F.displayName="IssueLabelToken"},3047:(e,a,l)=>{l.d(a,{IE:()=>o,Y0:()=>r,kO:()=>i,nB:()=>u,uV:()=>s,vl:()=>d,zo:()=>c});var n=l(98646),t=l(8816);function c(e,a){if(e?.field?.id!==a?.field?.id||!e?.field||!a?.field)return!1;let l=e.field;return"TEXT"===l.dataType||"DATE"===l.dataType?e?.value===a?.value:"NUMBER"===l.dataType?e?.numberValue===a?.numberValue:"SINGLE_SELECT"!==l.dataType||e?.name===a?.name}function i(e,a){let l=a.filter(a=>!e.some(e=>e?.field?.id===a?.field?.id));return{addedFields:l,updatedFields:a.filter(a=>e.some(e=>e?.field?.id===a?.field?.id&&!c(e,a))),removedFields:e.filter(e=>!a.some(a=>a?.field?.id===e?.field?.id))}}function s(e){return e&&e.field?r(e.field,null):e}function r(e,a){let l=(0,n.YQ)(e);switch(l.dataType){case"text":return{field:{...l,dataType:"TEXT"},value:a||""};case"single_select":return{field:{...l,dataType:"SINGLE_SELECT"},value:a};case"date":return{field:{...l,dataType:"DATE"},value:a};case"number":return{field:{...l,dataType:"NUMBER"},value:a}}}function o(e,a,l){let t=(0,n.YQ)(e);switch(t.dataType){case"text":return{field:{...t,dataType:"TEXT"},value:a,readonly:l};case"single_select":return{field:{...t,dataType:"SINGLE_SELECT"},value:a,readonly:l};case"date":return{field:{...t,dataType:"DATE"},value:a,readonly:l};case"number":{if(null===a||""===a)return{field:{...t,dataType:"NUMBER"},value:null,readonly:l};let e=Number(a);return{field:{...t,dataType:"NUMBER"},value:isNaN(e)?0:e,readonly:l}}}}function d(e,a){switch(e){case"text":return a;case"single_select":return a&&a.id?String(a.id):void 0;case"date":return m(a)||void 0;case"number":return a?.toString()}}function u(e,a){if("single_select"===e)return a&&a.name?String(a.name):void 0;if("date"===e){let e=m(a),l=e?(0,t.o)(e):null;return l?(0,t.b)(l):void 0}return d(e,a)}function m(e){return e?e.toISOString():null}},3155:(e,a,l)=>{l.d(a,{g:()=>o});var n=l(74848),t=l(11196),c=l(12683),i=l(34164),s=l(96540),r=l(92233);let o=({name:e,color:a,getTooltipText:l,size:o,sx:u,containerClassName:m})=>{let p=(0,s.useRef)(null),[g,y]=(0,s.useState)(!1);(0,s.useEffect)(()=>y(d(p.current)),[y,p]);let h=l(g),f=(0,n.jsx)(c.ou,{className:r.A.token,"data-color":a,ref:p,sx:u,text:(0,n.jsx)("span",{className:r.A.tokenText,children:e}),as:h?"button":"span",...h&&{type:"button","aria-label":`${e} token`}});return(0,n.jsx)("div",{className:(0,i.$)(r.A.container,m),"data-size":o,children:h?(0,n.jsx)(t.m,{text:h,children:f}):f})},d=e=>!!e&&!!e.firstElementChild&&e.firstElementChild.scrollWidth>e.firstElementChild.clientWidth;try{o.displayName||(o.displayName="IssueFieldSingleSelectValueToken")}catch{}},3872:(e,a,l)=>{l.d(a,{Z:()=>o});var n=l(82075),t=l(40104),c=l(39414),i=l(96540),s=l(98338),r=l(79403);let o=({storageKeyPrefix:e,issueFormRef:a,onCancel:l})=>{let o=(0,c.S)(),d=(0,n.A)("sessionStorage"),u=(0,i.useMemo)(()=>JSON.stringify(""),[]),m=(0,i.useCallback)(async()=>await o({title:s.k.discardConfirmation.title,content:s.k.discardConfirmation.content,confirmButtonContent:s.k.discardConfirmation.confirm,confirmButtonType:"danger",cancelButtonContent:s.k.discardConfirmation.cancel}),[o]);return{onSafeClose:(0,i.useCallback)(async()=>{(!((0,r.m5)(e).some(e=>null!==d.getItem(e)&&d.getItem(e)!==u)||a?.current?.hasChanges())||await m())&&((0,t.D6)((0,r.wK)(e)),a?.current?.clearSessionStorage(),l())},[e,m,d,u,a,l])}}},4559:(e,a,l)=>{l.d(a,{C:()=>i,i:()=>s});var n=l(56038),t=l(69599),c=l(46493);function i(e,a){(0,t.G7)("arianotify_comprehensive_migration")?s(r(e),{...a,element:a?.element??e}):(0,t.G7)("primer_live_region_element")&&a?.element===void 0?(0,c.Cj)(e,{politeness:a?.assertive?"assertive":"polite"}):s(r(e),a)}function s(e,a){let{assertive:l,element:i}=a??{};if((0,t.G7)("arianotify_comprehensive_migration"))try{(i?.isConnected?i:n.XC).ariaNotify(e,{priority:l?"high":"normal"})}catch(e){console.error("Error calling ariaNotify:",e)}else{var s,r;let a;(0,t.G7)("primer_live_region_element")&&void 0===i?(0,c.iP)(e,{politeness:l?"assertive":"polite"}):(s=e,r=l,(a=i??n.XC?.querySelector(r?"#js-global-screen-reader-notice-assertive":"#js-global-screen-reader-notice"))&&(a.textContent===s?a.textContent=`${s}\u00A0`:a.textContent=s))}}function r(e){return(e.getAttribute("aria-label")||e.innerText||"").trim()}l(89272)},5643:(e,a,l)=>{l.d(a,{C:()=>b,$:()=>k});var n=l(74848),t=l(69599),c=l(74563),i=l(19918),s=l(86391),r=l(46377),o=l(83494),d=l(38621),u=l(5839),m=l(50279),p=l(96540),g=l(57387);let y=({onClose:e,returnFocusRef:a})=>(0,n.jsx)(g.l,{"aria-label":i.k.projectItemsLimitReachedDialogLabel,title:i.k.projectItemsLimitReachedDialogTitle,onClose:e,returnFocusRef:a,width:"large",footerButtons:[{content:i.k.closeButton,onClick:e,buttonType:"primary"}],children:(0,n.jsx)("div",{children:i.k.projectItemsLimitReachedDialogMessage})});try{y.displayName||(y.displayName="ProjectItemsLimitReachedDialog")}catch{}let h=[],f=[];function k({items:e=h,groups:a=f,selectedProjects:l,isDialogOpen:r,handleDialogClose:d,filterValue:g,onCancel:k,onOpenChange:b,onFilterChange:z,anchorElement:F,onSelectionChange:I,insidePortal:S,isLoading:C,title:v,triggerOpen:x}){let j=(0,p.useCallback)(()=>{x||b(!0,"anchor-key-press")},[x,b]),M=(0,p.useRef)(null),T=e.length<=2?"auto":"large",_=(0,t.G7)("issues_react_select_panel_fullscreen_on_narrow"),N=(0,p.useMemo)(()=>(0,s.D)(S,M,T,_,x),[S,T,_,x]),K=(0,p.useMemo)(()=>0===e.length,[e.length]),L=(0,p.useMemo)(()=>{let n={renderAnchor:e=>F(e),anchorRef:M,placeholderText:i.k.filterProjects,items:e,selected:l,open:x||!1,onOpenChange:b,onCancel:k,onSelectedChange:I,filterValue:g,onFilterChange:z,showItemDividers:!0,overlayProps:{width:"medium",...N},loading:C,title:v??i.k.selectProjects,message:K?{title:"No projects were found",variant:"empty",body:"Please try a different search query."}:void 0};return a?.length>0&&e.length>0&&(n.groupMetadata=a),n},[N,F,g,e,a,C,k,z,b,I,x,l,K,v]);return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(o.ak,{commands:{"item-pickers:open-projects":j}}),(0,n.jsx)(m.g,{flags:{primer_react_select_panel_fullscreen_on_narrow:_},children:(0,n.jsx)(u.X,{"aria-label":"Project results","data-id":c.B.itemPickerRootId,"data-testid":c.B.itemPickerTestId,...L})}),r&&(0,n.jsx)(y,{onClose:d,returnFocusRef:M})]})}function b({firstSelectedProjectTitle:e,readonly:a,nested:l,anchorProps:t}){return(0,n.jsx)(r._,{anchorText:i.k.noProjects,sharedPickerMainValue:e,anchorProps:a?void 0:t,ariaLabel:i.k.selectProjects,readonly:a,nested:l,leadingIcon:d.TableIcon,hotKey:void 0})}try{k.displayName||(k.displayName="ProjectPickerBase")}catch{}try{b.displayName||(b.displayName="DefaultProjectPickerAnchor")}catch{}},8645:(e,a,l)=>{l.d(a,{cE:()=>r,Y9:()=>s,ml:()=>c,o2:()=>i});var n=l(99418);let t={FORBID_TAGS:["style"],ALLOW_DATA_ATTR:!1,ALLOWED_TAGS:["h1","h2","h3","h4","h5","h6","h7","h8","br","b","i","strong","em","a","pre","code","img","tt","div","span","ins","del","sup","sub","p","ol","ul","table","thead","tbody","tfoot","blockquote","dl","dt","dd","kbd","q","samp","var","hr","ruby","rt","rp","li","tr","td","th","s","strike","summary","details","picture","source"]};function c(e){return(e?.startsWith("www.")?"https://":"")+e}let i=e=>n.default.sanitize(e,t),s=e=>{if(!e||!function(e){try{return new window.URL(e),!0}catch{return!1}}(e))return!1;try{let a=new URL(e,window.location.origin);return["http:","https:"].includes(a.protocol)}catch{return!1}},r=e=>i(e)===e},8816:(e,a,l)=>{l.d(a,{b:()=>t,o:()=>c});let n={year:"numeric",month:"short",day:"numeric",timeZone:"UTC"};function t(e,a={}){return e.toLocaleDateString("en-us",{...n,...a})}function c(e){if(!e)return null;let a=e.match(/^(?\d{4})-(?\d{2})-(?\d{2})/);if(!a?.groups)return null;let{year:l,month:n,day:t}=a.groups;if(!l||!n||!t)return null;let c=parseInt(l,10),i=parseInt(n,10),s=parseInt(t,10);if(isNaN(c)||isNaN(i)||isNaN(s)||i<1||i>12||s<1||s>31)return null;let r=new Date(Date.UTC(c,i-1,s,12,0,0,0));return isNaN(r.getTime())?null:r}},10231:(e,a,l)=>{l.d(a,{DD:()=>n,DJ:()=>t,Pu:()=>i,d6:()=>c});let n={COMPLETED:"COMPLETED",NOT_PLANNED:"NOT_PLANNED",DUPLICATE:"DUPLICATE",REOPENED:"REOPENED"},t={OPEN:"OPEN",CLOSED:"CLOSED"},c={COMPLETED:"completed",NOT_PLANNED:"not planned",DUPLICATE:"duplicate",REOPENED:"reopened"},i={COMPLETED:"is:issue state:closed archived:false reason:completed",NOT_PLANNED:"is:issue state:closed archived:false reason:not-planned",DUPLICATE:"is:issue state:closed archived:false reason:duplicate",REOPENED:""}},10286:(e,a,l)=>{l.d(a,{k:()=>t,y:()=>n});let n="template-field",t=({id:e,indexOfFormElement:a,value:l,defaultValuesById:t})=>{let c=t&&e?t[e]:void 0;return void 0===c&&t&&void 0!==a&&(c=t[`${n}-${a}`]),c??l??""}},10991:(e,a,l)=>{function n(e){let a=document.getElementById("issues-repo-tab-count");if(null===a)return!1;let l=Number(a.title.replace(/\D/g,"")),n=Math.max(l+e,0);return 0===l&&n>0?a.removeAttribute("hidden"):0===n&&a.setAttribute("hidden","true"),a.title=n.toLocaleString(),/^\d*$/.test(a.textContent||"")&&n<=999&&(a.textContent=n.toString()),!0}function t(){n(1)}function c(){n(-1)}l.d(a,{T:()=>c,f:()=>t})},11770:(e,a,l)=>{l.d(a,{M:()=>n,i:()=>t});let n=({includeAssignableBots:e,includeAuthorableBots:a})=>{let l=[];return e&&l.push("CAN_BE_ASSIGNED"),a&&l.push("CAN_BE_AUTHOR"),l},t=e=>e.isCopilot?"@copilot":"Bot"===e.__typename?`app/${e.login}`:e.login},12360:(e,a,l)=>{l.d(a,{C:()=>d});var n=l(74848),t=l(16522),c=l(74807),i=l(38621),s=l(34164);let r={copilotAvatar:"CopilotAvatar-module__copilotAvatar--VK2n9",small:"CopilotAvatar-module__small--OG22P",medium:"CopilotAvatar-module__medium--onZfu",large:"CopilotAvatar-module__large--KgXbi",defaultStyle:"CopilotAvatar-module__defaultStyle--T4PhU"},o={small:{default:12,minimal:16},medium:{default:16,minimal:20},large:{default:24,minimal:32}};function d(e){let a,l,d,u=(0,t.c)(10),{size:m,minimal:p,className:g}=e,y=void 0===m?"small":m,h=void 0!==p&&p,f=void 0===g?"":g,k=h?o[y].minimal:o[y].default,b=r[y],z=!h&&r.defaultStyle;return u[0]!==f||u[1]!==b||u[2]!==z?(a=(0,s.$)(r.copilotAvatar,b,z,f),u[0]=f,u[1]=b,u[2]=z,u[3]=a):a=u[3],u[4]!==k||u[5]!==y?(l="large"===y?(0,n.jsx)(c.N,{animationType:"static",loopAnimation:!0,size:k}):(0,n.jsx)(i.CopilotIcon,{size:k}),u[4]=k,u[5]=y,u[6]=l):l=u[6],u[7]!==a||u[8]!==l?(d=(0,n.jsx)("span",{className:a,"data-testid":"copilot-avatar",role:"img","aria-label":"Copilot avatar",children:l}),u[7]=a,u[8]=l,u[9]=d):d=u[9],d}try{d.displayName||(d.displayName="CopilotAvatar")}catch{}},14128:(e,a,l)=>{l.d(a,{PH:()=>a6,le:()=>a8,ym:()=>a5,nf:()=>a7});var n,t,c,i,s,r,o,d,u,m,p,g,y,h,f,k,b,z,F,I,S,C,v,x,j,M,T,_,N,K,L,w,P,A,E,V,R,D,O,B,$,U,q,H,W,G,Q,Y,X,Z,J,ee,ea,el,en,et,ec,ei,es,er,eo,ed,eu,em,ep,eg,ey,eh,ef,ek,eb,ez,eF,eI,eS,eC,ev,ex,ej,eM,eT,e_,eN,eK=l(74848);let eL=(n={count:null,cursor:null,direction:"forward",path:["projectItems"]},c={alias:null,args:null,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"owner",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isArchived",storageKey:null}],storageKey:null},r={alias:"projectItems",args:[{kind:"Literal",name:"allowSameEnterprise",value:!0},{kind:"Variable",name:"allowedOwner",variableName:"allowedOwner"}],concreteType:"ProjectV2ItemConnection",kind:"LinkedField",name:"__ProjectSection_projectItems_connection",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2ItemEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:"ProjectV2Item",kind:"LinkedField",name:"node",plural:!1,selections:[i={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{args:null,kind:"FragmentSpread",name:"ProjectItemSection"},{alias:null,args:null,concreteType:"ProjectV2",kind:"LinkedField",name:"project",plural:!1,selections:[i,{alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"closed",storageKey:null},t={alias:null,args:null,kind:"ScalarField",name:"number",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},s={alias:null,args:null,kind:"ScalarField",name:"viewerCanUpdate",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasReachedItemsLimit",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"cursor",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"PageInfo",kind:"LinkedField",name:"pageInfo",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"endCursor",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasNextPage",storageKey:null}],storageKey:null}],storageKey:null},{argumentDefinitions:[{defaultValue:null,kind:"LocalArgument",name:"allowedOwner"}],kind:"Fragment",metadata:{connection:[n,n]},name:"ProjectsSectionFragment",selections:[{kind:"InlineFragment",selections:[t,c,i,r,{alias:null,args:null,kind:"ScalarField",name:"viewerCanUpdateMetadata",storageKey:null}],type:"Issue",abstractKey:null},{kind:"InlineFragment",selections:[t,c,i,r,s],type:"PullRequest",abstractKey:null}],type:"IssueOrPullRequest",abstractKey:"__isIssueOrPullRequest"});eL.hash="b7c4b61f49cb224f47a2a8d004d6e604";var ew=l(81688),eP=l(25820),eA=l(75202),eE=l(43258),eV=l(38621),eR=l(5524),eD=l(21373),eO=l(96540),eB=l(18312),e$=l(69487),eU=l(93513);let eq={fragment:{argumentDefinitions:o=[{defaultValue:null,kind:"LocalArgument",name:"connections"},{defaultValue:null,kind:"LocalArgument",name:"input"}],kind:"Fragment",metadata:null,name:"deleteIssueProjectsMutation",selections:[{alias:null,args:d=[{kind:"Variable",name:"input",variableName:"input"}],concreteType:"DeleteProjectV2ItemPayload",kind:"LinkedField",name:"deleteProjectV2Item",plural:!1,selections:[u={alias:null,args:null,kind:"ScalarField",name:"deletedItemId",storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:o,kind:"Operation",name:"deleteIssueProjectsMutation",selections:[{alias:null,args:d,concreteType:"DeleteProjectV2ItemPayload",kind:"LinkedField",name:"deleteProjectV2Item",plural:!1,selections:[u,{alias:null,args:null,filters:null,handle:"deleteEdge",key:"",kind:"ScalarHandle",name:"deletedItemId",handleArgs:[{kind:"Variable",name:"connections",variableName:"connections"}]}],storageKey:null}]},params:{id:"cdc2c4b69492faa142269c6a6a60df92",metadata:{},name:"deleteIssueProjectsMutation",operationKind:"mutation",text:null}};eq.hash="b546b455603fb197fd8347b4cec2351a";var eH=l(2495),eW=l(16810),eG=l(21798);let eQ={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"ProjectItemSection",selections:[m={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isArchived",storageKey:null},{alias:null,args:null,concreteType:"ProjectV2",kind:"LinkedField",name:"project",plural:!1,selections:[m],storageKey:null},{args:null,kind:"FragmentSpread",name:"ProjectItemSectionView"}],type:"ProjectV2Item",abstractKey:null};eQ.hash="d514f44f54887c87d0f242aa077953b2";let eY=(p=[{defaultValue:null,kind:"LocalArgument",name:"id"}],g=[{kind:"Variable",name:"id",variableName:"id"}],y={alias:null,args:null,kind:"ScalarField",name:"viewerCanUpdate",storageKey:null},h={alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},k={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},z=[{kind:"Literal",name:"first",value:50},{kind:"Literal",name:"orderBy",value:{direction:"ASC",field:"POSITION"}}],F={alias:null,args:null,kind:"ScalarField",name:"dataType",storageKey:null},I={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},S={alias:null,args:null,kind:"ScalarField",name:"isIssueField",storageKey:null},M={alias:null,args:null,concreteType:"ProjectV2IterationFieldConfiguration",kind:"LinkedField",name:"configuration",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2IterationFieldIteration",kind:"LinkedField",name:"iterations",plural:!0,selections:j=[f={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},b={alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},C={alias:null,args:null,kind:"ScalarField",name:"titleHTML",storageKey:null},v={alias:null,args:null,kind:"ScalarField",name:"startDate",storageKey:null},x={alias:null,args:null,kind:"ScalarField",name:"duration",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"ProjectV2IterationFieldIteration",kind:"LinkedField",name:"completedIterations",plural:!0,selections:j,storageKey:null}],storageKey:null},T={alias:null,args:null,kind:"ScalarField",name:"optionId",storageKey:null},_={alias:null,args:null,kind:"ScalarField",name:"nameHTML",storageKey:null},N={alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null},L={kind:"InlineFragment",selections:K=[f],type:"Node",abstractKey:"__isNode"},w={alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[k,{kind:"InlineFragment",selections:[f,I],type:"ProjectV2Field",abstractKey:null},L],storageKey:null},{fragment:{argumentDefinitions:p,kind:"Fragment",metadata:null,name:"ProjectItemSectionFieldListQuery",selections:[{alias:null,args:g,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[{kind:"InlineFragment",selections:[{alias:null,args:null,concreteType:"ProjectV2",kind:"LinkedField",name:"project",plural:!1,selections:[y,h,f],storageKey:null},{args:null,kind:"FragmentSpread",name:"ProjectItemSectionFields"}],type:"ProjectV2Item",abstractKey:null}],storageKey:null}],type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:p,kind:"Operation",name:"ProjectItemSectionFieldListQuery",selections:[{alias:null,args:g,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[k,f,{kind:"InlineFragment",selections:[{alias:null,args:null,concreteType:"ProjectV2",kind:"LinkedField",name:"project",plural:!1,selections:[y,h,f,b,{alias:null,args:z,concreteType:"ProjectV2FieldConfigurationConnection",kind:"LinkedField",name:"fields",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2FieldConfigurationEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[k,{kind:"InlineFragment",selections:[f,F,I,S],type:"ProjectV2Field",abstractKey:null},{kind:"InlineFragment",selections:[f,F,I,S,M],type:"ProjectV2IterationField",abstractKey:null},{kind:"InlineFragment",selections:[f,F,I,S,{alias:null,args:null,concreteType:"ProjectV2SingleSelectFieldOption",kind:"LinkedField",name:"options",plural:!0,selections:[f,T,I,_,N,{alias:null,args:null,kind:"ScalarField",name:"descriptionHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null}],storageKey:null}],type:"ProjectV2SingleSelectField",abstractKey:null},L],storageKey:null}],storageKey:null}],storageKey:'fields(first:50,orderBy:{"direction":"ASC","field":"POSITION"})'}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isArchived",storageKey:null},{alias:null,args:z,concreteType:"ProjectV2ItemFieldValueConnection",kind:"LinkedField",name:"fieldValues",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2ItemFieldValueEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[k,{kind:"InlineFragment",selections:[f,w,{alias:null,args:null,kind:"ScalarField",name:"text",storageKey:null}],type:"ProjectV2ItemFieldTextValue",abstractKey:null},{kind:"InlineFragment",selections:[f,w,{alias:null,args:null,kind:"ScalarField",name:"number",storageKey:null}],type:"ProjectV2ItemFieldNumberValue",abstractKey:null},{kind:"InlineFragment",selections:[f,w,{alias:null,args:null,kind:"ScalarField",name:"date",storageKey:null}],type:"ProjectV2ItemFieldDateValue",abstractKey:null},{kind:"InlineFragment",selections:[f,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[k,{kind:"InlineFragment",selections:K,type:"ProjectV2SingleSelectField",abstractKey:null},L],storageKey:null},T,I,_,N],type:"ProjectV2ItemFieldSingleSelectValue",abstractKey:null},{kind:"InlineFragment",selections:[f,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[k,{kind:"InlineFragment",selections:[f,I,M],type:"ProjectV2IterationField",abstractKey:null},L],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"iterationId",storageKey:null},b,C,v,x],type:"ProjectV2ItemFieldIterationValue",abstractKey:null},L],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"cursor",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"PageInfo",kind:"LinkedField",name:"pageInfo",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"endCursor",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasNextPage",storageKey:null}],storageKey:null}],storageKey:'fieldValues(first:50,orderBy:{"direction":"ASC","field":"POSITION"})'},{alias:null,args:z,filters:["orderBy"],handle:"connection",key:"ProjectItemSection_fieldValues",kind:"LinkedHandle",name:"fieldValues"}],type:"ProjectV2Item",abstractKey:null}],storageKey:null}]},params:{id:"241d243a15a751aa4668f46296a39636",metadata:{},name:"ProjectItemSectionFieldListQuery",operationKind:"query",text:null}});eY.hash="b0347ba7355910f2a5163bb08004baef";var eX=l(84268);let eZ={fragment:{argumentDefinitions:P=[{defaultValue:null,kind:"LocalArgument",name:"input"}],kind:"Fragment",metadata:null,name:"unarchiveProjectItemMutation",selections:[{alias:null,args:A=[{kind:"Variable",name:"input",variableName:"input"}],concreteType:"UnarchiveProjectV2ItemPayload",kind:"LinkedField",name:"unarchiveProjectV2Item",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2Item",kind:"LinkedField",name:"item",plural:!1,selections:[E={alias:null,args:null,kind:"ScalarField",name:"isArchived",storageKey:null}],storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:P,kind:"Operation",name:"unarchiveProjectItemMutation",selections:[{alias:null,args:A,concreteType:"UnarchiveProjectV2ItemPayload",kind:"LinkedField",name:"unarchiveProjectV2Item",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2Item",kind:"LinkedField",name:"item",plural:!1,selections:[E,{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null}],storageKey:null}],storageKey:null}]},params:{id:"1d1e59700f5c9977430696b2338a0674",metadata:{},name:"unarchiveProjectItemMutation",operationKind:"mutation",text:null}};eZ.hash="774df17c4810f952c016355065fbcd6c";let eJ={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"ProjectItemSectionFields",selections:[V={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isArchived",storageKey:null},{alias:null,args:null,concreteType:"ProjectV2",kind:"LinkedField",name:"project",plural:!1,selections:[V,{alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"viewerCanUpdate",storageKey:null},{alias:null,args:[{kind:"Literal",name:"first",value:50},{kind:"Literal",name:"orderBy",value:{direction:"ASC",field:"POSITION"}}],concreteType:"ProjectV2FieldConfigurationConnection",kind:"LinkedField",name:"fields",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2FieldConfigurationEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[{kind:"InlineFragment",selections:[V,R={alias:null,args:null,kind:"ScalarField",name:"dataType",storageKey:null},D={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},O={alias:null,args:null,kind:"ScalarField",name:"isIssueField",storageKey:null},{args:null,kind:"FragmentSpread",name:"TextFieldConfigFragment"},{args:null,kind:"FragmentSpread",name:"DateFieldConfigFragment"},{args:null,kind:"FragmentSpread",name:"NumberFieldConfigFragment"}],type:"ProjectV2Field",abstractKey:null},{kind:"InlineFragment",selections:[V,R,D,O,{args:null,kind:"FragmentSpread",name:"IterationFieldConfigFragment"}],type:"ProjectV2IterationField",abstractKey:null},{kind:"InlineFragment",selections:[V,R,D,O,{args:null,kind:"FragmentSpread",name:"SingleSelectFieldConfigFragment"}],type:"ProjectV2SingleSelectField",abstractKey:null}],storageKey:null}],storageKey:null}],storageKey:'fields(first:50,orderBy:{"direction":"ASC","field":"POSITION"})'}],storageKey:null},{args:null,kind:"FragmentSpread",name:"ProjectItemSectionFieldsValues"}],type:"ProjectV2Item",abstractKey:null};eJ.hash="9e108cec835ef8bbd41e623d8601e11b";let e1=($=[B={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null}],{argumentDefinitions:[],kind:"Fragment",metadata:{connection:[{count:null,cursor:null,direction:"forward",path:["fieldValues"]}]},name:"ProjectItemSectionFieldsValues",selections:[{alias:"fieldValues",args:[{kind:"Literal",name:"orderBy",value:{direction:"ASC",field:"POSITION"}}],concreteType:"ProjectV2ItemFieldValueConnection",kind:"LinkedField",name:"__ProjectItemSection_fieldValues_connection",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2ItemFieldValueEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[{kind:"InlineFragment",selections:U=[B,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[{kind:"InlineFragment",selections:$,type:"ProjectV2Field",abstractKey:null}],storageKey:null}],type:"ProjectV2ItemFieldTextValue",abstractKey:null},{args:null,kind:"FragmentSpread",name:"TextFieldFragment"},{kind:"InlineFragment",selections:U,type:"ProjectV2ItemFieldNumberValue",abstractKey:null},{args:null,kind:"FragmentSpread",name:"NumberFieldFragment"},{kind:"InlineFragment",selections:U,type:"ProjectV2ItemFieldDateValue",abstractKey:null},{args:null,kind:"FragmentSpread",name:"DateFieldFragment"},{kind:"InlineFragment",selections:[B,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[{kind:"InlineFragment",selections:$,type:"ProjectV2SingleSelectField",abstractKey:null}],storageKey:null}],type:"ProjectV2ItemFieldSingleSelectValue",abstractKey:null},{args:null,kind:"FragmentSpread",name:"SingleSelectFieldFragment"},{kind:"InlineFragment",selections:[B,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[{kind:"InlineFragment",selections:$,type:"ProjectV2IterationField",abstractKey:null}],storageKey:null}],type:"ProjectV2ItemFieldIterationValue",abstractKey:null},{args:null,kind:"FragmentSpread",name:"IterationFieldFragment"},{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"cursor",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"PageInfo",kind:"LinkedField",name:"pageInfo",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"endCursor",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasNextPage",storageKey:null}],storageKey:null}],storageKey:'__ProjectItemSection_fieldValues_connection(orderBy:{"direction":"ASC","field":"POSITION"})'}],type:"ProjectV2Item",abstractKey:null});e1.hash="6064e6f5025ede2958816599a371f827";var e0=l(34164);let e2={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"DateFieldFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"date",storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[{args:null,kind:"FragmentSpread",name:"DateFieldConfigFragment"}],storageKey:null}],type:"ProjectV2ItemFieldDateValue",abstractKey:null};e2.hash="77aee2b1b5d211b322b848ac87e2ca19";let e3={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"DateFieldConfigFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null}],type:"ProjectV2Field",abstractKey:null};e3.hash="137f1e064b5aa98d4b4aa184ee4db814";var e4=l(36683);let e5=(q=[{defaultValue:null,kind:"LocalArgument",name:"input"}],H=[{kind:"Variable",name:"input",variableName:"input"}],G={alias:null,args:null,kind:"ScalarField",name:"type",storageKey:null},Y={alias:null,args:null,concreteType:"ProjectV2",kind:"LinkedField",name:"project",plural:!1,selections:Q=[W={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null}],storageKey:null},X=[{kind:"Literal",name:"name",value:"Status"}],J={kind:"InlineFragment",selections:[Z={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null}],type:"ProjectV2ItemFieldSingleSelectValue",abstractKey:null},ee=[{kind:"Literal",name:"first",value:50},{kind:"Literal",name:"orderBy",value:{direction:"ASC",field:"POSITION"}}],en={alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[ea={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},{kind:"InlineFragment",selections:[W,Z],type:"ProjectV2Field",abstractKey:null},el={kind:"InlineFragment",selections:Q,type:"Node",abstractKey:"__isNode"}],storageKey:null},er=[W,et={alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},ec={alias:null,args:null,kind:"ScalarField",name:"titleHTML",storageKey:null},ei={alias:null,args:null,kind:"ScalarField",name:"startDate",storageKey:null},es={alias:null,args:null,kind:"ScalarField",name:"duration",storageKey:null}],{fragment:{argumentDefinitions:q,kind:"Fragment",metadata:null,name:"clearProjectItemFieldValueMutation",selections:[{alias:null,args:H,concreteType:"ClearProjectV2ItemFieldValuePayload",kind:"LinkedField",name:"clearProjectV2ItemFieldValue",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2Item",kind:"LinkedField",name:"projectV2Item",plural:!1,selections:[W,G,Y,{args:null,kind:"FragmentSpread",name:"ProjectItemSectionFieldsValues"},{alias:null,args:X,concreteType:null,kind:"LinkedField",name:"fieldValueByName",plural:!1,selections:[J],storageKey:'fieldValueByName(name:"Status")'}],storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:q,kind:"Operation",name:"clearProjectItemFieldValueMutation",selections:[{alias:null,args:H,concreteType:"ClearProjectV2ItemFieldValuePayload",kind:"LinkedField",name:"clearProjectV2ItemFieldValue",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2Item",kind:"LinkedField",name:"projectV2Item",plural:!1,selections:[W,G,Y,{alias:null,args:ee,concreteType:"ProjectV2ItemFieldValueConnection",kind:"LinkedField",name:"fieldValues",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2ItemFieldValueEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[ea,{kind:"InlineFragment",selections:[W,en,{alias:null,args:null,kind:"ScalarField",name:"text",storageKey:null}],type:"ProjectV2ItemFieldTextValue",abstractKey:null},{kind:"InlineFragment",selections:[W,en,{alias:null,args:null,kind:"ScalarField",name:"number",storageKey:null}],type:"ProjectV2ItemFieldNumberValue",abstractKey:null},{kind:"InlineFragment",selections:[W,en,{alias:null,args:null,kind:"ScalarField",name:"date",storageKey:null}],type:"ProjectV2ItemFieldDateValue",abstractKey:null},{kind:"InlineFragment",selections:[W,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[ea,{kind:"InlineFragment",selections:Q,type:"ProjectV2SingleSelectField",abstractKey:null},el],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"optionId",storageKey:null},Z,{alias:null,args:null,kind:"ScalarField",name:"nameHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null}],type:"ProjectV2ItemFieldSingleSelectValue",abstractKey:null},{kind:"InlineFragment",selections:[W,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[ea,{kind:"InlineFragment",selections:[W,Z,{alias:null,args:null,concreteType:"ProjectV2IterationFieldConfiguration",kind:"LinkedField",name:"configuration",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2IterationFieldIteration",kind:"LinkedField",name:"iterations",plural:!0,selections:er,storageKey:null},{alias:null,args:null,concreteType:"ProjectV2IterationFieldIteration",kind:"LinkedField",name:"completedIterations",plural:!0,selections:er,storageKey:null}],storageKey:null}],type:"ProjectV2IterationField",abstractKey:null},el],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"iterationId",storageKey:null},et,ec,ei,es],type:"ProjectV2ItemFieldIterationValue",abstractKey:null},el],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"cursor",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"PageInfo",kind:"LinkedField",name:"pageInfo",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"endCursor",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasNextPage",storageKey:null}],storageKey:null}],storageKey:'fieldValues(first:50,orderBy:{"direction":"ASC","field":"POSITION"})'},{alias:null,args:ee,filters:["orderBy"],handle:"connection",key:"ProjectItemSection_fieldValues",kind:"LinkedHandle",name:"fieldValues"},{alias:null,args:X,concreteType:null,kind:"LinkedField",name:"fieldValueByName",plural:!1,selections:[ea,J,el],storageKey:'fieldValueByName(name:"Status")'}],storageKey:null}],storageKey:null}]},params:{id:"d132dec069be1a67131a5e271bc909a6",metadata:{},name:"clearProjectItemFieldValueMutation",operationKind:"mutation",text:null}});function e6({environment:e,input:a,onError:l,onCompleted:n}){return(0,eB.commitMutation)(e,{mutation:e5,variables:{input:a},optimisticUpdater:e=>{let l,n;return l=`${eB.ConnectionHandler.getConnectionID(a.itemId,"ProjectItemSection_fieldValues")}(orderBy:{"direction":"ASC","field":"POSITION"})`,void((n=e.get(l))&&n.getLinkedRecords("edges")?.map((e,l)=>{if(e?.getLinkedRecord("node")?.getLinkedRecord("field")?.getDataID()===a.fieldId){let e=n.getLinkedRecords("edges")||[];e.splice(l,1),n.setLinkedRecords(e,"edges")}}))},onError:e=>l&&l(e),onCompleted:e=>n&&n(e)})}e5.hash="1cc97421540c4997953175725e1f92c9";let e7=(eo=[{defaultValue:null,kind:"LocalArgument",name:"input"}],ed=[{kind:"Variable",name:"input",variableName:"input"}],eu=[{kind:"Literal",name:"name",value:"Status"}],ep={kind:"InlineFragment",selections:[em={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null}],type:"ProjectV2ItemFieldSingleSelectValue",abstractKey:null},eg=[{kind:"Literal",name:"first",value:50},{kind:"Literal",name:"orderBy",value:{direction:"ASC",field:"POSITION"}}],ey={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},ek={kind:"InlineFragment",selections:ef=[eh={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null}],type:"Node",abstractKey:"__isNode"},eb={alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[ey,{kind:"InlineFragment",selections:[eh,em],type:"ProjectV2Field",abstractKey:null},ek],storageKey:null},eC=[eh,ez={alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},eF={alias:null,args:null,kind:"ScalarField",name:"titleHTML",storageKey:null},eI={alias:null,args:null,kind:"ScalarField",name:"startDate",storageKey:null},eS={alias:null,args:null,kind:"ScalarField",name:"duration",storageKey:null}],{fragment:{argumentDefinitions:eo,kind:"Fragment",metadata:null,name:"updateProjectItemFieldValueMutation",selections:[{alias:null,args:ed,concreteType:"UpdateProjectV2ItemFieldValuePayload",kind:"LinkedField",name:"updateProjectV2ItemFieldValue",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2Item",kind:"LinkedField",name:"projectV2Item",plural:!1,selections:[{args:null,kind:"FragmentSpread",name:"ProjectItemSectionFieldsValues"},{alias:null,args:eu,concreteType:null,kind:"LinkedField",name:"fieldValueByName",plural:!1,selections:[ep],storageKey:'fieldValueByName(name:"Status")'}],storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:eo,kind:"Operation",name:"updateProjectItemFieldValueMutation",selections:[{alias:null,args:ed,concreteType:"UpdateProjectV2ItemFieldValuePayload",kind:"LinkedField",name:"updateProjectV2ItemFieldValue",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2Item",kind:"LinkedField",name:"projectV2Item",plural:!1,selections:[{alias:null,args:eg,concreteType:"ProjectV2ItemFieldValueConnection",kind:"LinkedField",name:"fieldValues",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2ItemFieldValueEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[ey,{kind:"InlineFragment",selections:[eh,eb,{alias:null,args:null,kind:"ScalarField",name:"text",storageKey:null}],type:"ProjectV2ItemFieldTextValue",abstractKey:null},{kind:"InlineFragment",selections:[eh,eb,{alias:null,args:null,kind:"ScalarField",name:"number",storageKey:null}],type:"ProjectV2ItemFieldNumberValue",abstractKey:null},{kind:"InlineFragment",selections:[eh,eb,{alias:null,args:null,kind:"ScalarField",name:"date",storageKey:null}],type:"ProjectV2ItemFieldDateValue",abstractKey:null},{kind:"InlineFragment",selections:[eh,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[ey,{kind:"InlineFragment",selections:ef,type:"ProjectV2SingleSelectField",abstractKey:null},ek],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"optionId",storageKey:null},em,{alias:null,args:null,kind:"ScalarField",name:"nameHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null}],type:"ProjectV2ItemFieldSingleSelectValue",abstractKey:null},{kind:"InlineFragment",selections:[eh,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[ey,{kind:"InlineFragment",selections:[eh,em,{alias:null,args:null,concreteType:"ProjectV2IterationFieldConfiguration",kind:"LinkedField",name:"configuration",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2IterationFieldIteration",kind:"LinkedField",name:"iterations",plural:!0,selections:eC,storageKey:null},{alias:null,args:null,concreteType:"ProjectV2IterationFieldIteration",kind:"LinkedField",name:"completedIterations",plural:!0,selections:eC,storageKey:null}],storageKey:null}],type:"ProjectV2IterationField",abstractKey:null},ek],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"iterationId",storageKey:null},ez,eF,eI,eS],type:"ProjectV2ItemFieldIterationValue",abstractKey:null},ek],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"cursor",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"PageInfo",kind:"LinkedField",name:"pageInfo",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"endCursor",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasNextPage",storageKey:null}],storageKey:null}],storageKey:'fieldValues(first:50,orderBy:{"direction":"ASC","field":"POSITION"})'},{alias:null,args:eg,filters:["orderBy"],handle:"connection",key:"ProjectItemSection_fieldValues",kind:"LinkedHandle",name:"fieldValues"},{alias:null,args:eu,concreteType:null,kind:"LinkedField",name:"fieldValueByName",plural:!1,selections:[ey,ep,ek],storageKey:'fieldValueByName(name:"Status")'},eh],storageKey:null}],storageKey:null}]},params:{id:"8b296fae9f2499af49f72d6df68d6b5c",metadata:{},name:"updateProjectItemFieldValueMutation",operationKind:"mutation",text:null}});function e8({environment:e,input:a,onError:l,onCompleted:n}){return(0,eB.commitMutation)(e,{mutation:e7,variables:{input:a},optimisticUpdater:e=>(function(e,a){let l=`${eB.ConnectionHandler.getConnectionID(a.itemId,"ProjectItemSection_fieldValues")}(orderBy:{"direction":"ASC","field":"POSITION"})`,n=e.get(l);if(!n)return;let t=(n.getLinkedRecords("edges")?.map(e=>e.getLinkedRecord("node"))||[]).find(e=>{if(!e)return!1;let l=e.getLinkedRecord("field");return!!l&&l.getDataID()===a.fieldId});if(t)switch(t.getType()){case"ProjectV2ItemFieldTextValue":t.setValue(a.value.text,"text");break;case"ProjectV2ItemFieldNumberValue":t.setValue(a.value.number,"number");break;case"ProjectV2ItemFieldDateValue":t.setValue(a.value.date,"date");break;case"ProjectV2ItemFieldSingleSelectValue":{if(!a.value.singleSelectOptionId)return;let l=e.get(a.value.singleSelectOptionId);if(!l)return;for(let e of(t.setValue(a.value.singleSelectOptionId,"optionId"),["color","name","nameHTML"]))t.setValue(l.getValue(e),e);break}case"ProjectV2ItemFieldIterationValue":{if(!a.value.iterationId)return;let l=e.get(a.value.iterationId);if(!l)return;for(let e of(t.setValue(a.value.iterationId,"iterationId"),["duration","startDate","title","titleHTML"]))t.setValue(l.getValue(e),e)}}})(e,a),onError:e=>l&&l(e),onCompleted:e=>n&&n(e)})}e7.hash="de3a39d4584b64ead2a58f140d26d900";var e9=l(8816),ae=l(73189),aa=l(86877),al=l(26108),an=l(68384);let at="ProjectsSections-module__FieldListLi--wheLp",ac="ProjectsSections-module__FieldListUl--nweud",ai="ProjectsSections-module__ListFieldWrapperText--cXqRk",as="ProjectsSections-module__FieldBasisAuto--kiwmO";function ar({children:e,isStatusField:a,name:l}){return(0,eK.jsx)(eK.Fragment,{children:a?(0,eK.jsx)("div",{className:"FieldWrapper-module__fieldContentContainer--UA6kk",children:e}):(0,eK.jsxs)(eK.Fragment,{children:[(0,eK.jsx)("span",{className:an.A.issueFieldLabel,children:l}),(0,eK.jsx)(eK.Fragment,{children:e})]})})}function ao({children:e,onClick:a,anchorProps:l,readOnly:n,isStatusField:t=!1,isEditing:c=!1,placeholder:i,name:s,ref:r}){let o=t?"FieldWrapper-module__metadataFieldButton--qr7tn":(0,e0.$)("ProjectsSections-module__projectFieldMetadataContainer--ZxkoF",an.A.issueFieldFormWrapper,!n&&an.A.issueFieldFormWrapperClickable,c&&an.A.isEditing);return n?(0,eK.jsx)("div",{className:o,children:(0,eK.jsx)(ar,{isStatusField:t,name:s,children:e})}):(0,eK.jsx)("button",{ref:r,type:"button","aria-label":i,onClick:n?ae.l:a,className:o,...l,children:(0,eK.jsx)(ar,{isStatusField:t,name:s,children:e})})}function ad({ref:e,name:a,placeholder:l,value:n,input:t,anchorProps:c,showInput:i,setShowInput:s,canUpdate:r=!0,isStatusField:o=!1,onCommit:d=ae.l,validationMessage:u,preventSubmit:m,isClean:p,setIsClean:g,shouldRestoreRowFocus:y=!1,setShouldRestoreRowFocus:h}){let f=(0,eO.useRef)(null),k=(0,eO.useId)(),b=(0,eO.useRef)(null),z=(0,eO.useCallback)(e=>{!c&&r?s(!0):c?.onClick&&c.onClick(e)},[c,r,s]),F=(0,eO.useCallback)(e=>{!e.currentTarget.contains(e.relatedTarget)&&p&&s(!1)},[p,s]);return(0,eO.useLayoutEffect)(()=>{!i&&y&&(b.current?.focus(),h?.(!1))},[h,y,i]),(0,eK.jsx)("span",{ref:e||f,className:(0,e0.$)(o&&"ProjectsSections-module__ListFieldWrapper--XmHs2"),children:i&&r?(0,eK.jsx)("div",{onBlur:F,children:(0,eK.jsxs)(aa.A,{className:(0,e0.$)(an.A.issueFieldFormWrapper,an.A.issueFieldFormWrapperClickable,an.A.isEditing),children:[(0,eK.jsx)(aa.A.Label,{id:k,className:"ProjectsSections-module__FieldWrapperLabel--EzGZt",children:(0,eK.jsx)("span",{className:o?(0,e0.$)(ai,as):(0,e0.$)(an.A.issueFieldLabel),children:a})}),t,(0,eK.jsx)(al.K,{"aria-label":eU.k.textEditorUpdateButton,size:"small",icon:eV.CheckIcon,onClick:m?void 0:()=>{d(),s(!1),g?.(!0),h?.(!0)},inactive:m,"aria-disabled":m,className:an.A.issueFieldActionButton}),u&&(0,eK.jsx)(aa.A.Validation,{variant:"error",className:"FieldWrapper-module__fieldItemError--Rexqj",children:u})]})}):(0,eK.jsxs)(eK.Fragment,{children:[o?(0,eK.jsx)("p",{className:o?(0,e0.$)(ai,as):(0,e0.$)(an.A.issueFieldLabel),children:a}):null,(0,eK.jsx)(ao,{ref:b,isStatusField:o,anchorProps:{...c,"aria-describedby":k},onClick:z,readOnly:!r,name:a,isEditing:i,children:(0,eK.jsx)("span",{className:n?o?"FieldWrapper-module__fieldValueText--CgERg":(0,e0.$)(an.A.issueFieldValueText,an.A.hasValue):o?"FieldWrapper-module__fieldPlaceholderText--qU9l7":an.A.issueFieldValueText,children:n||l})})]})})}try{ar.displayName||(ar.displayName="ProjectFieldDisplayContent")}catch{}try{ao.displayName||(ao.displayName="ProjectFieldDisplay")}catch{}try{ad.displayName||(ad.displayName="FieldWrapper")}catch{}function au({viewerCanUpdate:e,itemId:a,projectId:l,field:n,value:t,onIssueUpdate:c}){let i=(0,eB.useRelayEnvironment)(),s=(0,eB.useFragment)(e3,n),r=(0,eB.useFragment)(e2,t),o=s.id,d=s.name,u=r?new Date(r.date):null,m=u?(0,e9.b)(u):"No date",[p,g]=(0,eO.useState)(u),[y,h]=(0,eO.useState)(!1),f=(0,eO.useCallback)(e=>{g(e),e?e8({environment:i,input:{fieldId:o,itemId:a,projectId:l,value:{date:new Date(e.getTime()-6e4*e.getTimezoneOffset()).toISOString().slice(0,10)}},onCompleted:c}):e6({environment:i,input:{fieldId:o,itemId:a,projectId:l},onCompleted:c})},[i,o,a,c,l]),k=(0,eO.useCallback)(e=>(0,eK.jsx)(ad,{showInput:y,setShowInput:h,anchorProps:e,placeholder:eU.k.emptySections.datePlaceholder,value:m||eU.k.emptySections.noValue(d),name:d}),[m,d,y]);return e?(0,eK.jsx)(e4.DatePicker,{variant:"single",showClearButton:!0,value:p,onChange:f,anchor:k}):(0,eK.jsx)(ad,{showInput:y,setShowInput:h,placeholder:eU.k.emptySections.noValue(d),canUpdate:!1,name:d,value:m})}try{au.displayName||(au.displayName="DateField")}catch{}let am={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"IterationFieldFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"iterationId",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"titleHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"startDate",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"duration",storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[{args:null,kind:"FragmentSpread",name:"IterationFieldConfigFragment"}],storageKey:null}],type:"ProjectV2ItemFieldIterationValue",abstractKey:null};am.hash="57212d5c33092763cd6c9ea8afef0615";let ap=(ex=[{kind:"InlineDataFragmentSpread",name:"IterationFieldIterationFragment",selections:[ev={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"titleHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"startDate",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"duration",storageKey:null}],args:null,argumentDefinitions:[]}],{argumentDefinitions:[],kind:"Fragment",metadata:null,name:"IterationFieldConfigFragment",selections:[ev,{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,concreteType:"ProjectV2IterationFieldConfiguration",kind:"LinkedField",name:"configuration",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2IterationFieldIteration",kind:"LinkedField",name:"iterations",plural:!0,selections:ex,storageKey:null},{alias:null,args:null,concreteType:"ProjectV2IterationFieldIteration",kind:"LinkedField",name:"completedIterations",plural:!0,selections:ex,storageKey:null}],storageKey:null}],type:"ProjectV2IterationField",abstractKey:null});ap.hash="1820eb43fb63bb62abf4c8f24979732c";let ag={kind:"InlineDataFragment",name:"IterationFieldIterationFragment"};ag.hash="28591c2749a30e9b111acd7e77a057f9";var ay=l(86391),ah=l(73017),af=l(84929);function ak({startDate:e,durationInDays:a,titleHTML:l}){var n,t;let c=new Date,i=(0,af.H)(e),s=(n=i,t=a,new Date(n.getTime()+(t-1)*864e5)),r=i<=c&&c<=s,o=e=>e.toLocaleDateString("en-US",{month:"short",day:"numeric"});return(0,eK.jsxs)("div",{className:"IterationItem-module__IterationItemContainer--DDoTl",children:[(0,eK.jsx)("div",{className:"IterationItem-module__iterationTitleContainer--Dlq2Q",children:(0,eK.jsx)(ah.JR,{html:l})}),(0,eK.jsx)(eK.Fragment,{children:"\u2022 "}),(0,eK.jsxs)("span",{className:"IterationItem-module__iterationDateRange--V5IVr",children:[`${o(i)} - ${o(s)}`," ",r&&(0,eK.jsx)(eK.Fragment,{children:"\u2022 "})]}),r&&(0,eK.jsx)("span",{className:"IterationItem-module__currentIndicator--vXDTT",children:"Current"})]})}try{ak.displayName||(ak.displayName="IterationItem")}catch{}let ab={groupId:"completed",header:{title:"Completed",variant:"filled"}},az={groupId:"active",header:{title:"Active",variant:"filled"}};function aF({viewerCanUpdate:e,itemId:a,projectId:l,field:n,value:t,onIssueUpdate:c}){let[i,s]=(0,eO.useState)(!1),r=(0,eB.useRelayEnvironment)(),o=(0,eB.useFragment)(ap,n),d=(0,eB.useFragment)(am,t),u=o.id,m=o.name,[p,g]=(0,eO.useState)(""),y=(0,eO.useCallback)(e=>{1===e.length?e8({environment:r,input:{fieldId:u,itemId:a,projectId:l,value:{iterationId:e[0].id}},onCompleted:c}):0===e.length&&e6({environment:r,input:{fieldId:u,itemId:a,projectId:l},onCompleted:c}),s(!1)},[r,u,a,l,c]),h=(0,eO.useCallback)(e=>{g(e)},[]),f=(0,eO.useMemo)(()=>{let e=(o.configuration?.iterations||[]).concat(o.configuration?.completedIterations||[]).map(e=>(0,eB.readInlineData)(ag,e));return p?e.filter(e=>e.title.toLowerCase().indexOf(p.toLowerCase())>=0):e},[o.configuration?.completedIterations,o.configuration?.iterations,p]),k=(0,eO.useMemo)(()=>new Set((o.configuration?.completedIterations||[]).map(e=>(0,eB.readInlineData)(ag,e).id)),[o.configuration?.completedIterations]),b=(0,eO.useMemo)(()=>{let e=o.configuration?.iterations||[],a=o.configuration?.completedIterations||[];return e.concat(a).map(e=>(0,eB.readInlineData)(ag,e)).filter(e=>e.id===d?.iterationId)},[o.configuration?.completedIterations,o.configuration?.iterations,d?.iterationId]),z=(0,eO.useCallback)(e=>({id:e.id,children:(0,eK.jsx)(ak,{startDate:e.startDate,durationInDays:e.duration,titleHTML:e.titleHTML}),source:e,groupId:k.has(e.id)?ab.groupId:az.groupId}),[k]),F=(0,eO.useCallback)(e=>(0,eK.jsx)(ad,{showInput:i,setShowInput:s,anchorProps:e,placeholder:eU.k.emptySections.iterationPlaceholder,value:d?(0,eK.jsx)(ak,{startDate:d.startDate,durationInDays:d.duration,titleHTML:d.titleHTML}):null,name:m}),[m,i,d]),I=(0,eO.useMemo)(()=>k.size>0?[az,ab]:[az],[k.size]);return e?(0,eK.jsx)(ay.O,{items:f,groups:I,initialSelectedItems:b,filterItems:h,getItemKey:e=>e.id,convertToItemProps:z,placeholderText:eU.k.emptySections.iterationFilterPlaceholder,selectionVariant:"single",onSelectionChange:y,renderAnchor:F,height:"large"}):(0,eK.jsx)(ad,{showInput:i,setShowInput:s,value:d?(0,eK.jsx)(ak,{startDate:d.startDate,durationInDays:d.duration,titleHTML:d.titleHTML}):null,placeholder:eU.k.emptySections.noValue(m),canUpdate:!1,name:m})}try{aF.displayName||(aF.displayName="IterationField")}catch{}let aI={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"NumberFieldFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"number",storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[{args:null,kind:"FragmentSpread",name:"NumberFieldConfigFragment"}],storageKey:null}],type:"ProjectV2ItemFieldNumberValue",abstractKey:null};aI.hash="ac86c256f18719392417c8d6f6be4c01";let aS={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"NumberFieldConfigFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null}],type:"ProjectV2Field",abstractKey:null};aS.hash="aa7c72083a9ec843850d1089ba1ddda3";var aC=l(66718),av=l(30093),ax=l(29455);function aj({viewerCanUpdate:e,itemId:a,projectId:l,field:n,value:t,onIssueUpdate:c}){let[i,s]=(0,eO.useState)(!1),r=(0,eO.useRef)(null),[o,d]=(0,eO.useState)(!0),u=(0,eB.useRelayEnvironment)(),m=(0,eB.useFragment)(aS,n),p=(0,eB.useFragment)(aI,t),g=m.id,y=m.name,h=p?.number?.toString()??"",[f,k]=(0,eO.useState)(h),[b,z]=(0,eO.useState)(void 0),[F,I]=(0,eO.useState)(!1),S=(0,eO.useCallback)(()=>{b?(k(h),z(void 0)):e8({environment:u,input:{fieldId:g,itemId:a,projectId:l,value:{number:""===f?null:(0,aC.$J)(f)}},onCompleted:c})},[f,u,g,b,a,c,h,l]),C=(0,eO.useCallback)(e=>{let a=e.target.value;z((0,aC.Ge)(a)),k(a),a===h?d(!0):d(!1)},[h]),v=(0,eO.useCallback)(()=>{S(),s(!1),d(!0),I(!0)},[S]),x=(0,eO.useCallback)(()=>{r.current&&(k(h),r.current.blur(),s(!1),d(!0),I(!0))},[h]),j=(0,eO.useCallback)(e=>{"Enter"===e.key&&(e.preventDefault(),v()),"Escape"===e.key&&(e.stopPropagation(),x())},[x,v]),M=(0,eO.useMemo)(()=>!!b,[b]);return e?(0,eK.jsx)(ad,{showInput:i,setShowInput:s,value:f,name:y,placeholder:eU.k.emptySections.numberPlaceholder,onCommit:S,validationMessage:b,preventSubmit:M,isClean:o,setIsClean:d,shouldRestoreRowFocus:F,setShouldRestoreRowFocus:I,input:(0,eK.jsx)(av.A,{"data-testid":"number-field-input",placeholder:eU.k.emptySections.numberPlaceholder,ref:r,size:"small",onChange:C,onKeyDown:j,value:f,className:ax.A.issueFieldTextInput,onFocus:e=>e.target.setSelectionRange(e.target.value.length,e.target.value.length),inputMode:"numeric",autoFocus:!0})}):(0,eK.jsx)(ad,{showInput:i,setShowInput:s,placeholder:eU.k.emptySections.noValue(y),canUpdate:!1,value:f,name:y})}try{aj.displayName||(aj.displayName="NumberField")}catch{}let aM={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"SingleSelectFieldFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"optionId",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"nameHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null}],type:"ProjectV2ItemFieldSingleSelectValue",abstractKey:null};aM.hash="46251798d3a30836a6711ecaa3cc54e8";let aT={kind:"InlineDataFragment",name:"SingleSelectFieldOptionFragment"};aT.hash="be640a30fa15271b4fa34e75d3ddb9b1";let a_={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"SingleSelectFieldConfigFragment",selections:[ej={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},eM={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,concreteType:"ProjectV2SingleSelectFieldOption",kind:"LinkedField",name:"options",plural:!0,selections:[{kind:"InlineDataFragmentSpread",name:"SingleSelectFieldOptionFragment",selections:[ej,{alias:null,args:null,kind:"ScalarField",name:"optionId",storageKey:null},eM,{alias:null,args:null,kind:"ScalarField",name:"nameHTML",storageKey:null},eT={alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"descriptionHTML",storageKey:null}],args:null,argumentDefinitions:[]},ej,eM,{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null},eT],storageKey:null}],type:"ProjectV2SingleSelectField",abstractKey:null};a_.hash="7609e6b1ac2a8d003401b9f85fcd3e61";var aN=l(12683);let aK={overflow:"hidden",cursor:"inherit","> span":{overflow:"hidden",textOverflow:"ellipsis"}},aL={overflow:"hidden",textOverflow:"ellipsis",display:"inline-flex",cursor:"inherit","> span":{verticalAlign:"text-top"}};var aw=l(14307);let aP=({inputName:e,inputColor:a})=>{let l=(0,aw.Wk)(a);return(0,eK.jsx)(aN.ou,{sx:{bg:l.bg,color:l.fg,borderColor:l.border,":hover":{bg:l.bg,color:l.fg,borderColor:l.border},...aL},size:"medium",text:e,className:"SingleSelectToken-module__Token--FOSN8"})},aA=({inputColor:e})=>{let{bg:a,accent:l}=(0,aw.Wk)(e);return(0,eK.jsx)(aN.az,{sx:{bg:a,borderColor:l},className:"SingleSelectToken-module__colorIndicator--mFcTC"})};try{aP.displayName||(aP.displayName="SingleSelectToken")}catch{}try{aA.displayName||(aA.displayName="SingleSelectLeadingVisual")}catch{}function aE({viewerCanUpdate:e,itemId:a,projectId:l,field:n,value:t,onIssueUpdate:c,isStatusField:i}){let[s,r]=(0,eO.useState)(!1),o=(0,eB.useRelayEnvironment)(),d=(0,eB.useFragment)(a_,n),u=(0,eB.useFragment)(aM,t),m=d.id,p=d.name,[g,y]=(0,eO.useState)(""),h=(0,eO.useCallback)(e=>{1===e.length?e8({environment:o,input:{fieldId:m,itemId:a,projectId:l,value:{singleSelectOptionId:e[0].optionId}},onCompleted:c}):0===e.length&&e6({environment:o,input:{fieldId:m,itemId:a,projectId:l},onCompleted:c}),r(!1)},[o,m,a,c,l]),f=(0,eO.useCallback)(e=>{y(e)},[]),k=(0,eO.useMemo)(()=>{let e=(d.options||[]).map(e=>(0,eB.readInlineData)(aT,e));return g?e.filter(e=>e.name.toLowerCase().indexOf(g.toLowerCase())>=0):e},[d.options,g]),b=(0,eO.useMemo)(()=>(d.options||[]).map(e=>(0,eB.readInlineData)(aT,e)).filter(e=>e.optionId===u?.optionId),[d.options,u?.optionId]),z=(0,eO.useCallback)(e=>({id:e.optionId,children:(0,eK.jsxs)("div",{className:"SingleSelectField-module__optionContent--xJjmm",children:[(0,eK.jsx)(ah.JR,{html:e.nameHTML}),(0,eK.jsx)(ah.JR,{html:e.descriptionHTML,className:"SingleSelectField-module__VerifiedHTMLText--zOUZc"})]}),source:e,leadingVisual:()=>(0,eK.jsx)(aA,{inputColor:e.color})}),[]),F=(0,eO.useCallback)(e=>(0,eK.jsx)(ad,{showInput:s,setShowInput:r,name:p,isStatusField:i,placeholder:i?(0,eK.jsxs)("div",{className:"SingleSelectField-module__statusPlaceholder--VhnZp",children:[eU.k.emptySections.status,(0,eK.jsx)(eV.TriangleDownIcon,{})]}):(0,eK.jsx)(eK.Fragment,{children:eU.k.emptySections.singleSelectFilterPlaceholder}),value:u?.name&&u?.color?(0,eK.jsxs)("div",{className:"SingleSelectField-module__selectedValueContainer--kmRuq",children:[(0,eK.jsx)(aP,{inputName:u.name,inputColor:u.color}),i&&(0,eK.jsx)(eV.TriangleDownIcon,{})]}):null,anchorProps:e}),[p,i,s,u?.color,u?.name]);if(!e)return(0,eK.jsx)(ad,{showInput:s,setShowInput:r,canUpdate:!1,name:p,placeholder:eU.k.emptySections.noValue(p),value:u?.name?(0,eK.jsx)(aN.ou,{sx:(u.name,aL),size:"medium",text:u.name}):null,isStatusField:i});return(0,eK.jsx)(ay.O,{items:k,initialSelectedItems:b,filterItems:f,getItemKey:e=>e.optionId,convertToItemProps:z,placeholderText:eU.k.emptySections.singleSelectFilterPlaceholder,selectionVariant:"single",onSelectionChange:h,renderAnchor:F,height:"large"})}try{aE.displayName||(aE.displayName="SingleSelectField")}catch{}let aV={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"TextFieldFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"text",storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[{args:null,kind:"FragmentSpread",name:"TextFieldConfigFragment"}],storageKey:null}],type:"ProjectV2ItemFieldTextValue",abstractKey:null};aV.hash="69f479d8a39d90ca27cb126efa7b738b";let aR={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"TextFieldConfigFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null}],type:"ProjectV2Field",abstractKey:null};aR.hash="7fbd4e4b2889e3438c0acaa4655bcc8d";var aD=l(56038),aO=l(94236),aB=l(10576),a$=l(8645);function aU({viewerCanUpdate:e,itemId:a,projectId:l,field:n,value:t,onIssueUpdate:c}){let i=(0,eB.useRelayEnvironment)(),s=(0,eO.useRef)(null),r=(0,eB.useFragment)(aR,n),o=(0,eB.useFragment)(aV,t),d=r.id,u=r.name,[m,p]=(0,eO.useState)(!1),g=o?.text??"",[y,h]=(0,eO.useState)(g),[f,k]=(0,eO.useState)(!0),[b,z]=(0,eO.useState)(!1),F=(0,eO.useCallback)(()=>{e8({environment:i,input:{fieldId:d,itemId:a,projectId:l,value:{text:y}},onCompleted:c})},[i,d,a,l,y,c]),I=(0,eO.useCallback)(e=>{let a=e.target.value;h(a),a===g?k(!0):k(!1)},[g]),S=(0,eO.useCallback)(()=>{F(),p(!1),k(!0),z(!0)},[F]),C=(0,eO.useCallback)(()=>{s.current&&(h(o?.text??""),s.current.blur(),p(!1),k(!0),z(!0))},[o?.text]),v=(0,eO.useCallback)(e=>{"Enter"===e.key&&(e.preventDefault(),S()),"Escape"===e.key&&(e.stopPropagation(),C())},[S,C]),[x,j]=(0,eO.useState)(!1),M=(0,eO.useRef)(null),T=(0,eO.useCallback)(e=>()=>aD.cg?.open((0,a$.ml)(e),"_blank","noreferrer"),[]),_=(0,eO.useCallback)(()=>p(!0),[p]),N=(0,eO.useCallback)(()=>j(!0),[j]),K=(0,eO.useCallback)(e=>{"Enter"===e.key&&(e.preventDefault(),N())},[N]),L=(0,eO.useCallback)(a=>e&&a.preventDefault(),[e]),w=(0,eO.useMemo)(()=>y.split(/(\s+)/),[y]),[P,A,E]=(0,eO.useMemo)(()=>{let e=[],a=!1;return[w.map((l,n)=>{let t=(0,a$.o2)(l),c=(0,a$.ml)(t);return(0,a$.Y9)(c)&&(0,a$.cE)(c)?(a=!0,e.push(l),(0,eK.jsx)(eX.A,{tabIndex:0,href:(0,a$.ml)(l),onKeyDown:K,onClick:L,target:"_blank",children:l},`text-field-link-${n}`)):l}),a,e]},[w,L,K]),V=A?{onClick:N}:void 0,R=(0,eK.jsx)(aO.W,{open:x,onOpenChange:e=>j(e),anchorRef:M,children:(0,eK.jsx)(aO.W.Overlay,{width:"small",children:(0,eK.jsx)(eR.l,{children:(0,eK.jsxs)(eR.l.Group,{children:[E?.map((e,a)=>(0,eK.jsxs)(eR.l.Item,{onSelect:T(e),role:"button",children:[(0,eK.jsx)(eR.l.LeadingVisual,{children:(0,eK.jsx)(eV.LinkIcon,{})}),e]},a)),e&&(0,eK.jsxs)(eR.l.Item,{onSelect:_,role:"button",children:[(0,eK.jsx)(eR.l.LeadingVisual,{children:(0,eK.jsx)(eV.PencilIcon,{})}),"Edit"]})]})})})});return e?(0,eK.jsxs)(eK.Fragment,{children:[(0,eK.jsx)(ad,{ref:M,value:y?P:void 0,anchorProps:V,name:u,placeholder:"Enter text\u2026",showInput:m,setShowInput:p,onCommit:F,isClean:f,setIsClean:k,shouldRestoreRowFocus:b,setShouldRestoreRowFocus:z,input:(0,eK.jsx)(aB.Ay,{"data-testid":"text-field-input",placeholder:"Enter text\u2026",ref:s,resize:"none",onChange:I,onKeyDown:v,value:y,className:(0,e0.$)(ax.A.issueFieldTextInput,ax.A.issueFieldTextTextarea),onFocus:e=>e.target.setSelectionRange(e.target.value.length,e.target.value.length),autoFocus:!0})}),R]}):(0,eK.jsx)(ad,{showInput:m,setShowInput:p,placeholder:`No ${u}`,canUpdate:!1,value:y?P:void 0,name:u})}try{aU.displayName||(aU.displayName="TextField")}catch{}function aq({projectItem:e,onIssueUpdate:a}){let l=(0,eB.useFragment)(eJ,e),{fieldValues:n}=(0,eB.useFragment)(e1,l),t=(0,eO.useMemo)(()=>(l?.project.fields?.edges||[]).map(e=>{if(!e?.node||e.node.isIssueField||"Status"===e.node.name)return;let t=e.node,c=t.dataType,i=t.id,s=(n?.edges||[]).flatMap(e=>e?.node?[e.node]:[]).find(e=>e?.field?.id===i)||null,r={key:i,viewerCanUpdate:!l.isArchived&&l.project.viewerCanUpdate,itemId:l.id,projectId:l.project.id,field:t,value:s,onIssueUpdate:a};switch(c){case"SINGLE_SELECT":return(0,eO.createElement)(aE,{...r,key:r.key});case"TEXT":return(0,eO.createElement)(aU,{...r,key:r.key});case"DATE":return(0,eO.createElement)(au,{...r,key:r.key});case"NUMBER":return(0,eO.createElement)(aj,{...r,key:r.key});case"ITERATION":return(0,eO.createElement)(aF,{...r,key:r.key})}}).filter(e=>void 0!==e),[l.project.fields?.edges,l.project.viewerCanUpdate,l.project.id,l.isArchived,l.id,n?.edges,a]);return 0===t.length?(0,eK.jsx)(eK.Fragment,{children:" "}):(0,eK.jsx)("ul",{className:(0,e0.$)(ac,"ProjectsSections-module__FieldListInternal--NLirt"),children:t.map((e,a)=>(0,eK.jsx)("li",{className:at,children:e},`project-field-${a}`))})}try{aq.displayName||(aq.displayName="ProjectItemSectionFields")}catch{}var aH=l(41057);function aW(){return(0,eK.jsx)("ul",{className:ac,children:(0,eK.jsxs)("li",{className:(0,e0.$)(at,"ProjectsSections-module__loading--VJV2C"),children:[(0,eK.jsx)(aG,{}),(0,eK.jsx)(aG,{}),(0,eK.jsx)(aG,{})]})})}function aG(){return(0,eK.jsxs)("span",{style:{display:"flex",flexDirection:"row",alignItems:"center",gap:8,width:"100%",marginTop:2},children:[(0,eK.jsx)(aH.Q,{height:"md",width:"40%"}),(0,eK.jsx)(aH.Q,{height:"md",width:"60%"})]})}try{aW.displayName||(aW.displayName="ProjectItemSectionFieldsLoading")}catch{}try{aG.displayName||(aG.displayName="ProjectFieldLoading")}catch{}function aQ(e){return(0,eK.jsx)(eO.Suspense,{fallback:(0,eK.jsx)(aW,{}),children:(0,eK.jsx)(aY,{...e})})}function aY({isArchived:e,projectItemId:a,projectId:l,onIssueUpdate:n}){let t=(0,eB.useRelayEnvironment)(),{addToast:c}=(0,eE.Y6)(),{node:i}=(0,eB.useLazyLoadQuery)(eY,{id:a}),s=(0,eO.useCallback)(()=>{!function({environment:e,input:a,onError:l,onCompleted:n}){(0,eB.commitMutation)(e,{mutation:eZ,variables:{input:a},onError:e=>l&&l(e),onCompleted:e=>n&&n(e)})}({environment:t,input:{projectId:l,itemId:a},onCompleted:()=>{c({type:"success",message:eU.k.archivedSuccess})},onError:()=>{c({type:"error",message:eU.k.archivedError})}})},[t,l,a,c]);if(!i||!i.project)return null;let r=e&&i.project.viewerCanUpdate;return(0,eK.jsxs)(eK.Fragment,{children:[r&&(0,eK.jsx)("ul",{className:ac,children:(0,eK.jsx)("li",{className:"ProjectsSections-module__ArchivedLi--ELvR5",children:(0,eK.jsxs)("span",{className:"ProjectsSections-module__FieldListLiText--zEDBh",children:[eU.k.archivedDescription,"\xa0",(0,eK.jsx)(eX.A,{onClick:s,className:"ProjectItemSectionFieldList-module__restoreLink--npi95",children:"Restore"})]})})}),(0,eK.jsx)(aq,{onIssueUpdate:n,projectItem:i})]})}try{aQ.displayName||(aQ.displayName="ProjectItemSectionFieldList")}catch{}try{aY.displayName||(aY.displayName="ProjectItemSectionFieldListInternal")}catch{}let aX={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"ProjectItemSectionView",selections:[e_={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isArchived",storageKey:null},{alias:null,args:null,concreteType:"ProjectV2",kind:"LinkedField",name:"project",plural:!1,selections:[e_,{alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"template",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"viewerCanUpdate",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},{alias:null,args:eN=[{kind:"Literal",name:"name",value:"Status"}],concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[{args:null,kind:"FragmentSpread",name:"SingleSelectFieldConfigFragment"}],storageKey:'field(name:"Status")'}],storageKey:null},{alias:null,args:eN,concreteType:null,kind:"LinkedField",name:"fieldValueByName",plural:!1,selections:[{args:null,kind:"FragmentSpread",name:"SingleSelectFieldFragment"}],storageKey:'fieldValueByName(name:"Status")'}],type:"ProjectV2Item",abstractKey:null};aX.hash="7d5cd0d9d7271a8e8f19cce6e01dac52";var aZ=l(51802),aJ=l(69497);function a1({projectItem:e,setOpen:a,open:l,onIssueUpdate:n,isProjectOpen:t}){let{id:c,project:i,fieldValueByName:s,isArchived:r}=(0,eB.useFragment)(aX,e);return(0,eK.jsxs)("div",{className:"ProjectItemSectionView-module__ProjectItemSectionViewContainer--Pjx02",children:[t?(0,eK.jsxs)("span",{className:"ProjectItemSectionView-module__projectTitleText--AeMlK",children:[i.template?(0,eK.jsx)(eV.ProjectTemplateIcon,{className:"fgColor-muted","aria-hidden":"true"}):(0,eK.jsx)(eV.TableIcon,{className:"fgColor-muted","aria-hidden":"true"}),(0,eK.jsx)("span",{className:"ProjectItemSectionView-module__truncatedProjectTitle--rFO6B",children:i.title})]}):(0,eK.jsx)("div",{className:"ProjectItemSectionView-module__projectLinkContainer--aLELu",children:(0,eK.jsxs)(eX.A,{href:i.url,hoverColor:"accent.fg",tabIndex:0,className:"ProjectItemSectionView-module__projectLink--su_OB",children:[i.template?(0,eK.jsx)(eV.ProjectTemplateIcon,{className:"fgColor-muted","aria-hidden":"true"}):(0,eK.jsx)(eV.TableIcon,{className:"fgColor-muted","aria-hidden":"true"}),(0,eK.jsx)(aJ.A,{title:i.title,"data-testid":aZ.Y.projectTitle,className:"ProjectItemSectionView-module__Truncate--CxV2L",children:i.title})]})}),(0,eK.jsxs)("div",{className:"ProjectItemSectionView-module__statusFieldContainer--yap_1",children:[i.field&&void 0!==s&&(0,eK.jsx)(aE,{viewerCanUpdate:i.viewerCanUpdate&&!r,itemId:c,projectId:i.id,field:i.field,value:s,onIssueUpdate:n,isStatusField:!0}),(0,eK.jsx)(al.K,{variant:"invisible",onClick:()=>{a(!l)},size:"small",icon:l?eV.ChevronUpIcon:eV.ChevronDownIcon,"aria-label":l?eU.k.hideMoreProjectFields:eU.k.showMoreProjectFields,"aria-expanded":l})]})]})}try{a1.displayName||(a1.displayName="ProjectItemSectionView")}catch{}function a0({projectItem:e,onIssueUpdate:a,isOpen:l=!1}){let[n,t]=(0,eO.useState)(l),c=(0,eB.useFragment)(eQ,e);return(0,eK.jsxs)("div",{className:"ProjectItemSection-module__ProjectItemSectionContainer--BQnwM",children:[(0,eK.jsx)(a1,{projectItem:c,open:n,setOpen:t,onIssueUpdate:a,isProjectOpen:l}),n&&(0,eK.jsx)(aQ,{projectItemId:c.id,projectId:c.project.id,isArchived:c.isArchived,onIssueUpdate:a})]})}try{a0.displayName||(a0.displayName="ProjectItemSection")}catch{}let a2=()=>(0,eK.jsx)(eH.h,{title:eU.k.sectionTitles.projects}),a3=({ref:e,...a})=>(0,eK.jsx)(eG.X,{ref:e,id:a.id,title:eU.k.sectionTitles.projects,buttonProps:a});a3.displayName="ProjectsSectionHeader";let a4=({sectionHeader:e,hasItems:a,children:l})=>(0,eK.jsx)(eW.w,{id:"sidebar-projects-section",sectionHeader:e,emptyText:a?void 0:eU.k.emptySections.projects,children:l}),a5=()=>(0,eK.jsx)(eW.w,{id:"projects-section-fallback",sectionHeader:(0,eK.jsx)(eH.h,{title:"Projects are currently unavailable"}),emptyText:"Please try again later"}),a6=({owner:e,repo:a,projects:l,readonly:n,onSelectionChange:t,...c})=>{let i="create-issue-sidebar-projects-section-heading",s=n?(0,eK.jsx)(a2,{}):(0,eK.jsx)(eP.w,{pickerId:"create-issue-projects-picker",owner:e,repo:a,selectedProjects:l,readonly:n,onSave:t,anchorElement:e=>(0,eK.jsx)(a3,{...e,id:i}),...c});return(0,eK.jsx)(eA.t,{fallback:(0,eK.jsx)(a5,{}),children:(0,eK.jsx)(a4,{sectionHeader:s,hasItems:l.length>0,children:l.length>0&&(0,eK.jsx)(eR.l,{"aria-labelledby":i,variant:"full",className:"ProjectsSection-module__projectActionList--VG9Tr",children:l.map(e=>(0,eK.jsx)(eR.l.LinkItem,{href:e.url,className:"ProjectsSection-module__ActionList_LinkItem--fZc7M",children:e.title},e.id))})})})},a7=eL;function a8(e){let a=(0,eB.useFragment)(a7,e.issueOrPullRequest);return a.projectItems?(0,eK.jsx)(a9,{projectsSectionData:a,...e}):(0,eK.jsx)(a5,{})}let a9=({projectsSectionData:e,allowedProjectOwner:a,onIssueUpdate:l,onRemovedFromProject:n,insideSidePanel:t,selectedProjectId:c,readonly:i})=>{let{addToast:s}=(0,eE.Y6)(),r=(e.projectItems?.edges??[]).flatMap(e=>e?.node?e?.node:[]).filter(e=>!0!==e.project.closed),o=(e.projectItems?.edges??[]).flatMap(e=>e?.node?e?.node:[]).filter(e=>!0===e.project.closed),[d,u]=(0,eO.useState)(!1),{viewerCanUpdateMetadata:m,viewerCanUpdate:p,repository:g}=e,y=i||!(m||p)||g?.isArchived,h=e.id||"",f=r.length>0||o.length>0,k=e$.ConnectionHandler.getConnectionID(h,"ProjectSection_projectItems",{allowedOwner:a,allowSameEnterprise:!0}),b=(0,eB.useRelayEnvironment)(),z=(0,eO.useCallback)(e=>{let a=e.filter(e=>!r.some(a=>a.project.id===e.id)),t=r.filter(a=>!e.some(e=>e.id===a.project.id)),i=!1;for(let e of a)(0,ew.Z)({environment:b,connectionId:k,projectId:e.id,issueId:h,onError:()=>i=!0,onCompleted:l});for(let e of t)!function({environment:e,connectionId:a,projectId:l,itemId:n,onError:t,onCompleted:c}){(0,eB.commitMutation)(e,{mutation:eq,variables:{input:{itemId:n,projectId:l},connections:[a]},onError:e=>t&&t(e),onCompleted:e=>c&&c(e)})}({environment:b,connectionId:k,projectId:e.project.id,itemId:e.id,onError:()=>i=!0,onCompleted:()=>{e.project.id===c&&n()}});i&&s({type:"error",message:"Could not update projects"})},[s,k,b,h,l,n,r,c]),F=(0,eO.useMemo)(()=>r.map(e=>e.project),[r]),I=o.length,S=(0,eO.useMemo)(()=>!e.repository||y?(0,eK.jsx)(a2,{}):(0,eK.jsx)(eP.w,{pickerId:`edit-issue-projects-picker-${h}`,repo:e.repository.name,owner:e.repository.owner.login,selectedProjects:F,readonly:y,onSave:z,anchorElement:e=>(0,eK.jsx)(a3,{...e}),insidePortal:t}),[h,e.repository,y,z,F,t]);return e.repository&&e.number?(0,eK.jsx)(a4,{sectionHeader:S,hasItems:f,children:(0,eK.jsxs)("div",{className:"ProjectsSection-module__projectItemsContainer--XwAWz",children:[r.map(e=>(0,eK.jsx)(a0,{onIssueUpdate:l,projectItem:e,isOpen:c===e.project.id},e.id)),I>0&&(0,eK.jsxs)(eK.Fragment,{children:[(0,eK.jsx)(eD.Q,{variant:"invisible",trailingVisual:d?eV.ChevronUpIcon:eV.ChevronDownIcon,onClick:()=>u(!d),"aria-label":eU.k.showClosedProjects,className:"ProjectsSection-module__toggleClosedProjectsButton--E9nMY",children:`${I} closed project${I>1?"s":""}`}),d&&o.map(e=>(0,eK.jsx)(a0,{onIssueUpdate:l,projectItem:e,isOpen:c===e.project.id},e.id))]})]})}):null};try{a2.displayName||(a2.displayName="ReadonlyProjectsSectionHeader")}catch{}try{a4.displayName||(a4.displayName="ProjectsSection")}catch{}try{a5.displayName||(a5.displayName="ProjectsSectionFallback")}catch{}try{a6.displayName||(a6.displayName="CreateIssueProjectsSection")}catch{}try{a8.displayName||(a8.displayName="EditIssueProjectsSection")}catch{}try{a9.displayName||(a9.displayName="EditIssueProjectsSectionInternal")}catch{}},14307:(e,a,l)=>{l.d(a,{M3:()=>r,Nh:()=>o,Wk:()=>s,i4:()=>c});var n=l(16522),t=l(12683);let c=["GRAY","BLUE","GREEN","YELLOW","ORANGE","RED","PINK","PURPLE"],i={BLUE:"accent",GREEN:"success",YELLOW:"attention",ORANGE:"severe",RED:"danger",PINK:"sponsors",PURPLE:"done"},s=e=>{let a,l=(0,n.c)(3),t=void 0===e?"GRAY":e,{getPresentationalColor:c}=r();return l[0]!==c||l[1]!==t?(a=c(t),l[0]=c,l[1]=t,l[2]=a):a=l[2],a},r=()=>{let e,a,l=(0,n.c)(5),{theme:c,resolvedColorScheme:s}=(0,t.DP)(),r=void 0===s?"light":s;l[0]!==r||l[1]!==c?.colorSchemes?(e=e=>{let a=void 0===e?"GRAY":e,l=d(r),n=c?.colorSchemes?.[l]?.colors;if("GRAY"===a)return{bg:n?.canvas?.subtle,fg:n?.fg?.muted,border:n?.border?.default,accent:n?.fg?.subtle};{let e=n?.[i[a]];return{bg:e?.subtle,fg:e?.fg,border:e?.muted,accent:e?.emphasis}}},l[0]=r,l[1]=c?.colorSchemes,l[2]=e):e=l[2];let o=e;return l[3]!==o?(a={getPresentationalColor:o},l[3]=o,l[4]=a):a=l[4],a},o=e=>c.includes(e),d=e=>"light_colorblind"===e||"light_tritanopia"===e?"light":"dark_colorblind"===e||"dark_tritanopia"===e?"dark":e},14709:(e,a,l)=>{l.d(a,{N:()=>r,z:()=>o});var n,t=l(74848),c=l(14307),i=l(38621),s=l(12683);function r(e){return"TEXT"===e?i.TypographyIcon:"SINGLE_SELECT"===e?i.SingleSelectIcon:"DATE"===e?i.CalendarIcon:"NUMBER"===e?i.NumberIcon:void 0}let o=e=>function(){let a=c.i4.find(a=>a===e),{bg:l,accent:n}=(0,c.Wk)(a);return(0,t.jsx)(s.az,{sx:{bg:l,borderColor:n,borderWidth:2,borderStyle:"solid",width:12,height:12,borderRadius:8,flexShrink:0}})};try{(n=IssueSingleSelectFieldPickerItemLeadingVisual).displayName||(n.displayName="IssueSingleSelectFieldPickerItemLeadingVisual")}catch{}},16642:(e,a,l)=>{l.d(a,{S:()=>n});let n={createIssueError:"Unable to create issue.",unableToLoadSelectedTemplate:"Unable to selected template"}},16810:(e,a,l)=>{l.d(a,{w:()=>i});var n=l(74848),t=l(12683),c=l(34164);function i({children:e,emptyText:a,sectionHeader:l,sectionFooter:i,hideDivider:s,id:r,sx:o,className:d}){return(0,n.jsxs)(t.az,{"data-testid":r??"sidebar-section",sx:{marginBottom:2*!s,":after":s?void 0:{content:'""',position:"absolute",height:"1px",bottom:"-8px",left:"8px",right:"8px",bg:"border.muted"},...o},className:(0,c.$)("Section-module__SectionContainer--bIlEv",d),children:[(0,n.jsxs)("div",{className:"Section-module__headerContentWrapper--OIm9m",children:[l,a&&(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)("span",{className:"Section-module__emptyText--qZ0Bc",children:a}),(0,n.jsx)("div",{className:"Section-module__hiddenChildrenContainer--X126P",children:e})]})]}),!a&&(0,n.jsx)("div",{className:"Section-module__childrenContainer--bY_oH",children:e}),i]})}try{i.displayName||(i.displayName="Section")}catch{}},17831:(e,a,l)=>{l.d(a,{s:()=>m,u:()=>p});var n=l(74848),t=l(17855),c=l(56038),i=l(40104),s=l(96540),r=l(79403);function o(e,a,l,n){if(!e)return{projectsToSet:[],milestoneToSet:null};let t=n?.repository?.owner.login===n?.selectedRepository?.owner.login,c=t&&n?.repository?.name===n?.selectedRepository?.name;return{projectsToSet:t&&a.length>0?a:[],milestoneToSet:c&&l?l:null}}var d=l(81724);let u=(0,s.createContext)(null);function m({optionConfig:e,preselectedData:a,children:l}){let{storageKeyPrefix:m,issueCreateArguments:p}=e,{issueTitle:g,issueBody:y}=r.tT.localTitleAndBodyStorageKeys,{issueLabels:h,issueAssignees:f,issueProjects:k,issueMilestone:b,issueIssueType:z,issueIssueFields:F}=r.tT.localStorageMetadataKeys,[I,S]=(0,s.useState)(a?.repository),[C,v]=(0,s.useState)(a?.template),[x,j]=(0,s.useState)(`${m}.${C?.fileName||d.$K}`),M="";if(p?.initialValues?.discussion)M=p?.initialValues?.discussion.title;else if(p?.initialValues?.title)M=p?.initialValues?.title;else if(C){let e,a=(e="",C?.data&&(e=C?.data.title||""),e),l="";p?.initialValues?.appendTitleToTemplate&&(l=` ${p?.initialValues?.appendTitleToTemplate}`),M=[a,l].join("").trimStart()}else p?.initialValues?.appendTitleToTemplate&&(M=p?.initialValues?.appendTitleToTemplate);let[T,_,N]=(0,i.Fo)(g(x),M),K="";if(p?.initialValues?.discussion)K=p?.initialValues?.discussion.formattedBody;else if(p?.initialValues?.body)K=p?.initialValues?.body;else{let e;C&&(e="",C?.data&&(0,d.Al)(C?.data)&&(e=C?.data.body||""),K=e)}let[L,w,P]=(0,i.Fo)(y(x),K),A=[];if(p?.initialValues?.discussion)A=p?.initialValues?.discussion?.labels||[];else if(p?.initialValues?.labels)A=p?.initialValues?.labels;else{let e;C&&(e=[],C?.data&&(e=C?.data.labels?.edges?.flatMap(e=>e?.node?[e?.node]:[])||[]),A=e)}let[E,V,R]=(0,i.Fo)(h(x),A),D=[];if(p?.initialValues?.assignees)D=p?.initialValues?.assignees;else{let e;C&&(e=[],C?.data&&(e=C?.data.assignees?.edges?.flatMap(e=>e?.node?[e?.node]:[])||[]),D=e)}let[O,B,$]=(0,i.Fo)(f(x),D),U=(0,s.useMemo)(()=>p?.initialValues?.projects??[],[p?.initialValues?.projects]),q=function(e){let a,{template:l,projects:n=[],isParentInheritance:t=!1}=e;if(!t&&n.length>0)return n;let c=l?(a=[],l?.data&&(0,d.GQ)(l?.data)&&(a=l.data.projects?.edges?.flatMap(e=>e?.node?[e.node]:[])||[]),a):[];return c.length>0?c:n}({template:C,projects:p?.initialValues?.projects??[],isParentInheritance:!!p?.parentIssue}),[H,W,G]=(0,i.Fo)(k(x),q),Q=(0,s.useMemo)(()=>p?.initialValues?.milestone??null,[p?.initialValues?.milestone]),Y=(0,s.useMemo)(()=>Q&&a?.parentIssue?o(!0,[],Q,{repository:a?.repository,selectedRepository:I}).milestoneToSet:Q,[Q,a?.parentIssue,a?.repository,I]),[X,Z,J]=(0,i.Fo)(b(x),Y),ee=null;if(p?.initialValues?.type)ee=p?.initialValues?.type;else{let e;C&&(e=null,C?.data&&((0,d.GQ)(C?.data)||(0,d.Al)(C?.data))&&(e=C?.data.type||null),ee=e)}let[ea,el,en]=(0,i.Fo)(z(x),ee),[et,ec]=(0,i.Fo)(F(x),[]),[ei,es]=(0,s.useState)(!1),[er,eo]=(0,s.useState)(null),[ed,eu]=(0,s.useState)(T),[em,ep]=(0,s.useState)(L),eg=(0,s.useRef)(O);(0,s.useEffect)(()=>{eg.current=O},[O]);let ey=(0,s.useCallback)(e=>{_(e),eu(e)},[_,eu]),eh=(0,s.useCallback)(e=>{w(e),ep(e)},[w,ep]),ef=(0,s.useCallback)(a=>{let l=eg.current.some(e=>(0,t.v)(e.login)),n=a.some(e=>(0,t.v)(e.login));B(a),e.disableCopilotAssignmentModal||l||!n||es(!0)},[B,e.disableCopilotAssignmentModal]),ek=(0,s.useCallback)(e=>{ef([]),V([]),ec([]);let l=o(!!a?.parentIssue,U,Q,e);W(l.projectsToSet),Z(l.milestoneToSet)},[ef,V,ec,a?.parentIssue,Q,U,W,Z]),eb=(0,s.useCallback)(()=>{(0,i.D6)((0,r.wK)(x))},[x]),ez=(0,s.useCallback)(()=>{(0,i.D6)((0,r.Zf)(x))},[x]),eF=(0,s.useCallback)(()=>{(0,i.D6)((0,r.bV)(x))},[x]),eI=(0,s.useCallback)(()=>{(0,i.D6)([`config.${r.tT.localStorageKeys.issueCreateMore(m)}`])},[m]),eS=(0,s.useCallback)(()=>{_(""),w(""),eu(""),ep("")},[_,w,eu,ep]),eC=c.fV?.origin??"",ev=I?.nameWithOwner??"",ex=(0,s.useMemo)(()=>`${eC}/${ev}`,[eC,ev]),ej=a?.parentIssue,[eM,eT]=(0,s.useState)(ej&&"title"in ej?ej:null),e_=eM??a?.parentIssue??null,eN=e_?.id??null,[eK,eL]=(0,s.useState)([]),ew=(0,s.useMemo)(()=>eK.map(e=>e.id),[eK]),[eP,eA]=(0,s.useState)([]),eE=(0,s.useMemo)(()=>eP.map(e=>e.id),[eP]),eV=(0,s.useCallback)(e=>{v(e),j(`${m}.${e?.fileName||d.$K}`)},[m]),eR=(0,s.useMemo)(()=>({reinitTitle:N,reinitBody:P,reinitAssignees:$,reinitLabels:R,reinitProjects:G,reinitMilestone:J,reinitIssueType:en,usedStorageKeyPrefix:x,clearSessionData:eb,clearSessionMetadata:ez,clearSessionTitleAndBody:eF,clearSessionCreateMore:eI,resetMetadata:ek,clearTitleAndBody:eS,setNewTitle:ey,setNewBody:eh,originalTitle:ed,setOriginalTitle:eu,originalBody:em,setOriginalBody:ep,title:T,setTitle:_,body:L,setBody:w,repository:I,setRepository:S,repositoryAbsolutePath:ex,template:C,setTemplate:eV,preselectedRepository:a?.repository,preselectedTemplate:a?.template,labels:E,setLabels:V,assignees:O,setAssignees:ef,projects:H,setProjects:W,milestone:X,setMilestone:Z,issueType:ea,setIssueType:el,issueFields:et,setIssueFields:ec,parentIssue:eM,setParentIssue:eT,parentIssueId:eN,blockedByIssues:eK,setBlockedByIssues:eL,blockedByIssueIds:ew,blockingIssues:eP,setBlockingIssues:eA,blockingIssueIds:eE,isCopilotAssignmentDialogOpen:ei,setIsCopilotAssignmentDialogOpen:es,copilotAssignmentAttributes:er,setCopilotAssignmentAttributes:eo}),[N,P,$,R,G,J,en,x,eb,ez,eF,eI,ek,eS,ey,eh,ed,em,T,_,L,w,I,ex,C,eV,a?.repository,a?.template,E,V,O,ef,H,W,X,Z,ea,el,et,ec,eM,eN,eK,ew,eP,eE,ei,er]);return(0,n.jsx)(u,{value:eR,children:l})}let p=()=>{let e=(0,s.use)(u);if(!e)throw Error("useIssueCreateDataContext must be used within a IssueCreateDataContextProvider.");return e};try{u.displayName||(u.displayName="IssueCreateDataContext")}catch{}try{m.displayName||(m.displayName="IssueCreateDataContextProvider")}catch{}},17855:(e,a,l)=>{l.d(a,{v:()=>n});function n(e){let a=e.toLocaleLowerCase();return"copilot-swe-agent"===a||"copilot"===a}},18815:(e,a,l)=>{l.d(a,{AE:()=>t,En:()=>n,ek:()=>r,gO:()=>s,jX:()=>c,u4:()=>i});let n=25,t=50,c=64,i=256,s=["issue","pr","pull-request","pull request"],r=10},20177:(e,a,l)=>{l.d(a,{Y:()=>n});let n={assignees:"issue-assignees",issueLabels:"issue-labels",milestoneContainer:"issue-milestone-container",milestoneProgressIcon:"issue-milestone-progress-bar",typeContainer:"issue-type-container"}},20403:(e,a,l)=>{l.d(a,{S:()=>t});var n=l(59672);function t(e,{isCopilot:a=!1,tracking:l=!0,isAgent:i=!1}={}){return a||i?function(e,{tracking:a=!0}={}){let l={"data-hovercard-url":(0,n._nf)({bot_slug:e}),"data-hovercard-type":"copilot"};return a?c(l):l}(e,{tracking:l}):function(e,{tracking:a=!0}={}){let l={"data-hovercard-url":(0,n.dCN)({owner:e}),"data-hovercard-type":"user"};return a?c(l):l}(e,{tracking:l})}function c(e){return{...e,"octo-click":"hovercard-link-click","octo-dimensions":"link_type:self"}}},20538:(e,a,l)=>{l.d(a,{B:()=>q});var n=l(74848),t=l(16522),c=l(66990),i=l(23568),s=l(86877),r=l(10576),o=l(26108),d=l(11680),u=l(21373),m=l(79431),p=l(96540),g=l(38621),y=l(63422),h=l(79184),f=l(51213),k=l(47723),b=l(97286),z=l(96379),F=l(59672);async function I(e){try{let[a,l]=e.split("/");if(!a||!l)return null;let n=(0,F.SHX)({owner:a,repo:l}),t=await (0,z.lS)(n);if(t.ok){let e=await t.json();if(!e.payload)return null;if("codeViewTreeWithPathRoute"in e.payload)return e.payload.codeViewTreeWithPathRoute.repo.defaultBranch||null;if("codeViewTreeRoute"in e.payload)return e.payload.codeViewTreeRoute.repo.defaultBranch||null;return e?.payload.repo.defaultBranch||null}return null}catch{return null}}var S=l(92352);let C="CopilotAssignmentForm-module__formControl--Y9Z73";var v=l(83494),x=l(14496),j=l(69599),M=l(73678),T=l(35247),_=l(78223),N=l(86101),K=l(25811);function L(e){var a;let l,z,F,L,w,P,A,E,V,R,D,O,B,$,U,q,H,W,G,Q,Y,X,Z,J,ee,ea,el,en,et=(0,t.c)(88),{ref:ec,initialRepo:ei,onSubmit:es,onCancel:er,isSubmitting:eo,isQuotaExhausted:ed,textareaRef:eu,textareaAriaDescribedBy:em,promptPlaceholder:ep,promptLabelHidden:eg,promptRequired:ey}=e,eh=void 0!==eo&&eo,ef=void 0!==eg&&eg,ek=void 0!==ey&&ey,{plan:eb}=(0,h.xR)(),[ez,eF]=(0,p.useState)(""),[eI,eS]=(0,p.useState)(void 0),[eC,ev]=(0,p.useState)(void 0),[ex,ej]=(0,p.useState)(void 0),[eM,eT]=(0,K.s)(),{data:e_}=(0,N.B)(eM.topLevelAgentId?Number(eM.topLevelAgentId):null),eN=`copilot-assignment-ref-selector-${(0,p.useId)()}`,eK=(0,p.useRef)(null),eL=eu||eK,ew=`${ei.owner.login}/${ei.name}`,eP=(a=ei.owner.login,(en=(0,t.c)(3))[0]!==a||en[1]!==ew?(el=e=>(0,S.P)(e,a,ew),en[0]=a,en[1]=ew,en[2]=el):el=en[2],el),{selectedRepo:eA,selectedBranch:eE,setSelectedBranch:eV,isLoadingBranch:eR,initialRepoApiMetadata:eD,handleRepoSelect:eO,handleReposLoaded:eB}=function(e){let a,l,n,c,i,s,r,o,d,u,m,g,y,h,f,k,z=(0,t.c)(32);z[0]!==e.owner.login?(a={login:e.owner.login},z[0]=e.owner.login,z[1]=a):a=z[1],z[2]!==e.defaultBranch||z[3]!==e.name||z[4]!==a?(l={name:e.name,defaultBranch:e.defaultBranch,owner:a},z[2]=e.defaultBranch,z[3]=e.name,z[4]=a,z[5]=l):l=z[5];let F=l,[S,C]=(0,p.useState)(null),[v,x]=(0,p.useState)(""),[j,M]=(0,p.useState)(!1),[T,_]=(0,p.useState)(null);z[6]!==T||z[7]!==F.name||z[8]!==F.owner.login?(n=e=>{if(T)return;let a=`${F.owner.login}/${F.name}`,l=e.find(e=>e.nameWithOwner===a);if(!l)return;let n={private:l.private,isEmpty:l.isEmpty,graphQLId:l.graphQLId};_(n),C(e=>e?.nameWithOwner===a?{...e,...n}:e)},z[6]=T,z[7]=F.name,z[8]=F.owner.login,z[9]=n):n=z[9];let N=n,K=`${F.owner.login}/${F.name}`,L=!F.defaultBranch,{data:w,isLoading:P}=(f=(0,t.c)(7),k=void 0===L||L,f[0]!==K?(g=["repository-default-branch",K],y=()=>I(K??""),f[0]=K,f[1]=g,f[2]=y):(g=f[1],y=f[2]),f[3]!==k||f[4]!==g||f[5]!==y?(h={queryKey:g,queryFn:y,enabled:k,staleTime:3e5,gcTime:6e5,retry:1},f[3]=k,f[4]=g,f[5]=y,f[6]=h):h=f[6],(0,b.I)(h));z[10]!==S||z[11]!==F.defaultBranch||z[12]!==F.name||z[13]!==F.owner.login?(c=()=>{if(S)return;let e=`${F.owner.login}/${F.name}`;C({owner:F.owner.login,name:e,nameOnly:F.name,nameWithOwner:e,enabled:!0,defaultBranch:F.defaultBranch||"",private:!1,graphQLId:"",isEmpty:!1}),F.defaultBranch&&x(F.defaultBranch)},z[10]=S,z[11]=F.defaultBranch,z[12]=F.name,z[13]=F.owner.login,z[14]=c):c=z[14],z[15]!==S||z[16]!==F?(i=[F,S],z[15]=S,z[16]=F,z[17]=i):i=z[17],(0,p.useEffect)(c,i),z[18]!==P?(s=()=>{M(P)},r=[P],z[18]=P,z[19]=s,z[20]=r):(s=z[19],r=z[20]),(0,p.useEffect)(s,r),z[21]!==w||z[22]!==F.defaultBranch?(o=()=>{w&&!F.defaultBranch&&(x(w),C(e=>e?{...e,defaultBranch:w}:e))},d=[w,F.defaultBranch],z[21]=w,z[22]=F.defaultBranch,z[23]=o,z[24]=d):(o=z[23],d=z[24]),(0,p.useEffect)(o,d),z[25]===Symbol.for("react.memo_cache_sentinel")?(u=e=>{e&&(M(!1),C(e),x(e.defaultBranch))},z[25]=u):u=z[25];let A=u;return z[26]!==N||z[27]!==T||z[28]!==j||z[29]!==v||z[30]!==S?(m={selectedRepo:S,selectedBranch:v,isLoadingBranch:j,initialRepoApiMetadata:T,setSelectedBranch:x,handleRepoSelect:A,handleReposLoaded:N},z[26]=N,z[27]=T,z[28]=j,z[29]=v,z[30]=S,z[31]=m):m=z[31],m}(ei);et[0]===Symbol.for("react.memo_cache_sentinel")?(l=(0,j.G7)("copilot_swe_agent_use_subagents"),et[0]=l):l=et[0];let e$=l;e:{if(!eA){z=null;break e}let e=!eA.private,a=ei.owner.login!==eA.owner;if(eA.isEmpty){z="The selected repo has no commits or branches so there's no valid base branch to create a PR against.";break e}if(a){z="You're assigning Copilot coding agent to open a pull request in a different organization. The issue description will be visible to users outside this repository.";break e}if(eD?.private&&e){z="You're assigning Copilot coding agent to open a pull request in a public repository. The issue description will be visible to users outside this repository.";break e}z=null}let eU=z;et[1]!==eO||et[2]!==eh?(F=e=>{e&&!eh&&(eO(e),ev(void 0))},et[1]=eO,et[2]=eh,et[3]=F):F=et[3];let eq=F;et[4]!==ez||et[5]!==eh||et[6]!==es||et[7]!==ek||et[8]!==eM||et[9]!==eE||et[10]!==ex||et[11]!==eA?(L=async()=>{if(!eh){if(eS(void 0),ev(void 0),ek&&!ez.trim())return void eS("Please provide a prompt.");if(ez.length>k.R2)return void eS(`Instructions must be ${k.R2.toLocaleString()} characters or fewer. Current length: ${ez.length.toLocaleString()} characters.`);if(!eA||!eE)return void ev("Please select a repository and branch.");if(eA.isEmpty)return void ev("Please select a valid base branch.");await es(ez,eA,eE,eM,ex)}},et[4]=ez,et[5]=eh,et[6]=es,et[7]=ek,et[8]=eM,et[9]=eE,et[10]=ex,et[11]=eA,et[12]=L):L=et[12];let eH=L;et[13]!==eH?(P=()=>({submit:eH}),w=[eH],et[13]=eH,et[14]=w,et[15]=P):(w=et[14],P=et[15]),(0,p.useImperativeHandle)(ec,P,w);let eW=void 0!==ed&&ed||eA?.isEmpty||eh||!eA||!eE,eG=eh||eR||!eA?.defaultBranch||eA?.isEmpty;et[16]!==ef?(A=(0,n.jsx)(s.A.Label,{visuallyHidden:ef,children:k.nX}),et[16]=ef,et[17]=A):A=et[17];let eQ=ep??k.qB;et[18]===Symbol.for("react.memo_cache_sentinel")?(E=e=>eF(e.target.value),et[18]=E):E=et[18],et[19]!==ez||et[20]!==eL||et[21]!==eQ||et[22]!==em?(V=(0,n.jsx)(r.Ay,{ref:eL,className:"CopilotAssignmentForm-module__textarea--wCaxl",placeholder:eQ,value:ez,onChange:E,rows:2,resize:"vertical","aria-describedby":em,maxLength:k.R2}),et[19]=ez,et[20]=eL,et[21]=eQ,et[22]=em,et[23]=V):V=et[23],et[24]!==eI?(R=eI&&(0,n.jsx)(s.A.Validation,{variant:"error",children:eI}),et[24]=eI,et[25]=R):R=et[25],et[26]!==eh||et[27]!==A||et[28]!==V||et[29]!==R?(D=(0,n.jsx)("div",{className:"CopilotAssignmentForm-module__textareaContainer--Vki_J",children:(0,n.jsxs)(s.A,{disabled:eh,children:[A,V,R]})}),et[26]=eh,et[27]=A,et[28]=V,et[29]=R,et[30]=D):D=et[30],et[31]===Symbol.for("react.memo_cache_sentinel")?(O=(0,n.jsx)(s.A.Label,{visuallyHidden:!0,children:k.De}),et[31]=O):O=et[31];let eY=eA||void 0,eX=eA?.nameWithOwner||"Select repository",eZ=`Repository: ${eA?.nameWithOwner||"Select repository"}`;return et[32]!==eh||et[33]!==eZ?(B={"aria-label":eZ,disabled:eh},et[32]=eh,et[33]=eZ,et[34]=B):B=et[34],et[35]!==eP||et[36]!==eq||et[37]!==eB||et[38]!==eY||et[39]!==eX||et[40]!==B?($=(0,n.jsxs)(s.A,{className:C,children:[O,(0,n.jsx)(i.P,{repositoryLoader:eP,selectionVariant:"single",selectAllOption:!1,onSelect:eq,onLoad:eB,currentSelection:eY,buttonText:eX,width:"large",truncateMaxWidth:250,additionalButtonProps:B})]}),et[35]=eP,et[36]=eq,et[37]=eB,et[38]=eY,et[39]=eX,et[40]=B,et[41]=$):$=et[41],et[42]===Symbol.for("react.memo_cache_sentinel")?(U=(0,n.jsx)(s.A.Label,{visuallyHidden:!0,children:k.T6}),et[42]=U):U=et[42],et[43]!==eN||et[44]!==eR||et[45]!==eh||et[46]!==eG||et[47]!==eE||et[48]!==eA||et[49]!==eV?(q=(0,n.jsxs)(s.A,{className:C,children:[U,eA||eE?(0,n.jsx)(c.PI,{useFocusZone:!0,cacheKey:eN,canCreate:!1,currentCommitish:eE||eA?.defaultBranch||"",defaultBranch:eA?.defaultBranch??eE,owner:eA?.owner||"",repo:eA?.nameOnly||"",types:["branch"],selectedRefType:"branch",closeOnSelect:!0,hideShowAll:!0,disabled:eG,actionListHeadingText:k.in,actionListDescription:k.vA,onSelectItem:e=>{eh||eV(e)},renderAnchor:e=>(0,n.jsx)(y.L,{...e,icon:g.GitBranchIcon,selectedIcon:g.GitBranchCheckIcon,selected:eE!==eA?.defaultBranch,"aria-label":eA?.isEmpty?"Branch: None available":`Branch: ${eR?"Loading branch...":eE||"Select branch"}`,"aria-labelledby":void 0}),anchoredOverlayProps:{variant:{regular:"anchored",narrow:"fullscreen"},height:"small"}}):(0,n.jsx)(o.K,{icon:g.GitBranchIcon,"aria-label":"Loading branches\u2026",disabled:!0})]}),et[43]=eN,et[44]=eR,et[45]=eh,et[46]=eG,et[47]=eE,et[48]=eA,et[49]=eV,et[50]=q):q=et[50],et[51]!==eh||et[52]!==eM||et[53]!==eE||et[54]!==eA||et[55]!==eT?(H=e$&&eA&&(0,n.jsxs)(s.A,{className:C,children:[(0,n.jsx)(s.A.Label,{visuallyHidden:!0,children:k.SF}),(0,n.jsx)(x.b,{repo:eA,branch:eE||eA.defaultBranch,selectedAgent:eM,onSelectAgent:e=>eT(e),iconOnly:!0,disabled:eh})]}),et[51]=eh,et[52]=eM,et[53]=eE,et[54]=eA,et[55]=eT,et[56]=H):H=et[56],et[57]!==e_?.slug||et[58]!==eb||et[59]!==eM||et[60]!==ex?(W=T.W.codingAgentModelSelection&&(T.W.codingAgentModelSelectionAllSkus||eb===f.UH.IndividualPro||eb===f.UH.IndividualProPlus)&&(0,_.CF)(eM,e_?.slug)&&(0,n.jsx)("div",{className:"CopilotAssignmentForm-module__modelPickerContainer--z4faA",children:(0,n.jsxs)(s.A,{children:[(0,n.jsx)(s.A.Label,{visuallyHidden:!0,children:"Model"}),(0,n.jsx)(M.Y,{onUpdateModel:ej,selectedModelId:ex})]})}),et[57]=e_?.slug,et[58]=eb,et[59]=eM,et[60]=ex,et[61]=W):W=et[61],et[62]!==$||et[63]!==q||et[64]!==H||et[65]!==W?(G=(0,n.jsxs)("div",{className:"CopilotAssignmentForm-module__selectorsRow--LskTl",children:[$,q,H,W]}),et[62]=$,et[63]=q,et[64]=H,et[65]=W,et[66]=G):G=et[66],et[67]!==eU?(Q=eU&&(0,n.jsx)(d.l,{variant:"warning",title:"Warning",hideTitle:!0,className:"CopilotAssignmentForm-module__warningBanner--xcQ1g",children:eU}),et[67]=eU,et[68]=Q):Q=et[68],et[69]!==G||et[70]!==Q?(Y=(0,n.jsxs)("div",{className:"CopilotAssignmentForm-module__selectorsContainer--QsXMe",children:[G,Q]}),et[69]=G,et[70]=Q,et[71]=Y):Y=et[71],et[72]!==eC?(X=eC&&(0,n.jsx)(m.v,{variant:"critical",className:"CopilotAssignmentForm-module__branchValidation--GLQgi",children:eC}),et[72]=eC,et[73]=X):X=et[73],et[74]!==eh||et[75]!==er?(Z=er&&(0,n.jsx)(u.Q,{variant:"invisible",onClick:er,disabled:eh,children:"Cancel"}),et[74]=eh,et[75]=er,et[76]=Z):Z=et[76],et[77]!==eh||et[78]!==eW?(J=(0,n.jsx)(v.cQ,{commandId:"github:submit-form",showKeybindingHint:!0,variant:"primary",inactive:eW,loading:eh,className:"CopilotAssignmentForm-module__assignButton--CzEjI",children:"Assign"}),et[77]=eh,et[78]=eW,et[79]=J):J=et[79],et[80]!==Z||et[81]!==J?(ee=(0,n.jsx)("div",{className:"CopilotAssignmentForm-module__buttonsContainer--ZpsdN",children:(0,n.jsxs)("div",{className:"CopilotAssignmentForm-module__buttonsRow--TlL8P",children:[Z,J]})}),et[80]=Z,et[81]=J,et[82]=ee):ee=et[82],et[83]!==D||et[84]!==Y||et[85]!==X||et[86]!==ee?(ea=(0,n.jsxs)("div",{className:"CopilotAssignmentForm-module__formContainer--ncBDe",children:[D,Y,X,ee]}),et[83]=D,et[84]=Y,et[85]=X,et[86]=ee,et[87]=ea):ea=et[87],ea}try{L.displayName||(L.displayName="CopilotAssignmentForm")}catch{}var w=l(57387),P=l(26607),A=l(84268),E=l(61491),V=l(75908),R=l(82518),D=l(97189),O=l(4817),B=l(79634);async function $(){let e=await (0,z.lS)("/github-copilot/chat/entitlement");if(!e.ok)throw Error(`Failed to retrieve Copilot chat entitlement (${e.status} on ${e.url})`);return await e.json()}var U=l(75553);function q({isOpen:e,onClose:a,repository:l,issueNumbers:c,onAssignmentComplete:i,returnFocusRef:s,onSubmit:r,title:o,description:u}){let[m,g]=(0,p.useState)(!1),[y,k]=(0,p.useState)(null),z=(0,p.useRef)(null),F=(0,p.useRef)(null),I=function(){let e,a,l,n=(0,t.c)(4),c=(0,B.X)(),i=c?.licenseType;n[0]===Symbol.for("react.memo_cache_sentinel")?(e=["copilot-chat","entitlement"],n[0]=e):e=n[0];let s=void 0===i;n[1]===Symbol.for("react.memo_cache_sentinel")?(a={licenseType:f.mF.Unlicensed},n[1]=a):a=n[1],n[2]!==s?(l={queryKey:e,queryFn:$,enabled:s,placeholderData:a,staleTime:3e5},n[2]=s,n[3]=l):l=n[3];let{data:r}=(0,b.I)(l);return i??r?.licenseType??f.mF.Unlicensed}(),[S,C]=(0,p.useState)(()=>c?.length??0),x=(0,p.useRef)(e);(0,p.useEffect)(()=>{e&&!x.current&&C(c?.length??0),x.current=e},[e,c]);let j=()=>{k(null),g(!1),a()},M=l.owner.login,T=l.name,_=S>1,N=(0,p.useCallback)(async(e,l,n,t,s)=>{if(!l)return;if(r&&l.graphQLId){g(!0);try{await r(l.graphQLId,n,e,t,s,l.nameWithOwner,l.id)}finally{g(!1)}return}if(!c||0===c.length)return;let o=[...c];g(!0),k(null);try{let c=await (0,E.J)(M,T,o,{instructions:e,targetRepo:l.nameWithOwner,targetBranch:n,customAgent:t?.subAgentSlug||void 0,agentId:t?.topLevelAgentId||void 0,model:s});if(c.ok)await i?.(c.data?.copilot),a();else{let e=_?(0,V.Ah)(o,c.jobs):"Assignment failed",a=(0,V.v0)(c,e);k(a)}}catch(e){k((0,V.VJ)(e,"Assignment"))}finally{g(!1)}},[c,M,T,i,a,_,r]),K=(0,p.useMemo)(()=>l?{name:l.name,defaultBranch:void 0,owner:{login:l.owner.login}}:null,[l]),L=(0,p.useCallback)(async()=>{!m&&F.current&&await F.current.submit()},[m]);if(!e)return null;let U=_?`Assign ${S} issues to Copilot`:"Assign Copilot to issue",q=o??U,W=(0,R.Xl)()?"https://gh.io/copilot-issues-cross-repo-assign-staff-feedback":"https://gh.io/copilot-issues-cross-repo-assign-feedback";return(0,n.jsxs)(w.l,{onClose:j,width:"xlarge",returnFocusRef:s,renderHeader:({dialogLabelId:e})=>(0,n.jsxs)(w.l.Header,{id:e,className:"CopilotAssignmentModal-module__header--sMKO8",children:[(0,n.jsx)(w.l.Title,{children:q}),(0,n.jsxs)("div",{className:"CopilotAssignmentModal-module__rightSection--R7yuX",children:[(0,n.jsx)(P.A,{variant:"success",className:"CopilotAssignmentModal-module__previewBadge--Gu2_W",children:"Preview"}),(0,n.jsx)(A.A,{href:W,target:"_blank",rel:"noopener noreferrer",className:"CopilotAssignmentModal-module__feedbackLink--bcJD_",children:"Feedback"}),(0,n.jsx)(w.l.CloseButton,{onClose:j})]})]}),children:[y&&(0,n.jsx)("div",{className:"CopilotAssignmentModal-module__errorContainer--xYkaJ",children:(0,n.jsx)(d.l,{variant:"critical",title:"Assignment Failed",hideTitle:!0,description:(0,n.jsx)("div",{"data-testid":"copilot-markdown",children:(0,n.jsx)(O.To,{markdown:y,className:"CopilotAssignmentModal-module__errorMarkdown--pw_FR"})}),secondaryAction:(0,n.jsx)(d.l.SecondaryAction,{onClick:()=>k(null),children:"Dismiss"})})}),K&&(0,n.jsx)(v.tL,{commands:{"github:submit-form":L},children:(0,n.jsx)(D.Fn,{children:(0,n.jsx)(h.$d,{initialLicenseType:I,children:(0,n.jsx)(H,{formRef:F,initialRepo:K,onSubmit:N,onCancel:j,isSubmitting:m,textareaRef:z,description:u??"Copilot will open a pull request using the issue's description, comments, and the additional prompt if you provide one. Choose a custom agent to tailor Copilot for specific tasks."})})})})]})}function H(e){let a,l,c,i,s=(0,t.c)(14),{formRef:r,initialRepo:o,onSubmit:d,onCancel:u,isSubmitting:m,textareaRef:g,description:y}=e,[h,f]=(0,p.useState)(!1);return s[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)(U.A,{onQuotaExhaustedChange:f,entrypointLocation:"ASSIGNMENT_MODAL"}),s[0]=a):a=s[0],s[1]!==y?(l=(0,n.jsx)("p",{className:"CopilotAssignmentModal-module__description--L15j_",children:y}),s[1]=y,s[2]=l):l=s[2],s[3]!==r||s[4]!==o||s[5]!==h||s[6]!==m||s[7]!==u||s[8]!==d||s[9]!==g?(c=(0,n.jsx)(L,{ref:r,initialRepo:o,onSubmit:d,onCancel:u,isSubmitting:m,isQuotaExhausted:h,textareaRef:g,textareaAriaDescribedBy:"copilot-assignment-description"}),s[3]=r,s[4]=o,s[5]=h,s[6]=m,s[7]=u,s[8]=d,s[9]=g,s[10]=c):c=s[10],s[11]!==l||s[12]!==c?(i=(0,n.jsxs)(n.Fragment,{children:[a,l,c]}),s[11]=l,s[12]=c,s[13]=i):i=s[13],i}try{q.displayName||(q.displayName="CopilotAssignmentModal")}catch{}try{H.displayName||(H.displayName="CopilotAssignmentModalContent")}catch{}},21327:(e,a,l)=>{l.d(a,{O:()=>P});var n=l(74848),t=l(21067),c=l(74807),i=l(65411),s=l(45244),r=l(53419),o=l(94747),d=l(82518),u=l(30459),m=l(45007),p=l(38621),g=l(39414),y=l(26607),h=l(26108),f=l(72511),k=l(21373),b=l(10576),z=l(34164),F=l(96540);let I="Failed to generate content with Copilot. Please try again.",S="Discard changes?",C="You have made edits to the generated content. Discarding will lose your changes.",v="Discard",x="Cancel",j="Try again?",M="You have made edits to the generated content. Trying again will replace your changes with new generated content.",T="Try again",_="Cancel",N="CopilotGenerateDescriptionPanel-module__actionButton--sLfTR",K=`- Provide a clear, comprehensive issue body in markdown format that explains the problem, context, and any relevant details. Keep it clear and concise. +- If there is an existing body that has a structure (template), work with the template. DO NOT change the template unless instructed. +- Return the body in a markdown format, unwrapped by \`\`\`markdown tags. +- Only work with information you have. The length of the issue should be proportional to the information provided. +- Try to focus updates on the portions of the body that are relevant to the user's request. +- When the user should be directed to edit portions of the returned body, explicitly put areas to edit [inside brackets with instructions]. Do not add meta instructions outside the main body content.`,L=`You are a helpful assistant that helps users create and refine GitHub issue titles and descriptions. +Your task is to take the user's input and the current issue title and body, and create or improve them. + +For the issue body: + +${K} + +For the issue title: +- Only update the title if it reflects incorrect or incomplete information based on the user's request. + +Return your response as a JSON object with "title" and "body" fields.`,w=`You are a helpful assistant that helps users refine GitHub issue descriptions. +Your task is to take the user's input and the current issue body, and improve it. + +For the issue body: + +${K} + +Return your response as a JSON object with "title" and "body" fields. The "title" field should be the same as the current title provided in the context.`;function P({isOpen:e,onClose:a,onGenerate:l,repoOwner:r,repoName:K,title:P,body:V,className:R,onPendingChange:D,onStateChange:O,anchorPosition:B="top",onHeightChange:$,editorRef:U,generateTitle:q=!0}){let[H,W]=(0,F.useState)(""),[G,Q]=(0,F.useState)("initial"),[Y,X]=(0,F.useState)(""),Z=(0,F.useRef)(P),J=(0,F.useRef)(V),ee=(0,F.useRef)(e),ea=(0,F.useRef)(P),el=(0,F.useRef)(V),en=(0,F.useRef)(null),et=(0,F.useRef)(null),ec=(0,F.useRef)(new i.JR([])),ei=(0,g.S)(),es=(0,F.useRef)(null),{sendAnalyticsEvent:er}=(0,u.s)(),eo=(0,F.useRef)(null),ed=(0,F.useRef)(null),eu=(0,F.useMemo)(()=>(0,d.Xl)(),[]),em=(0,m.S)({minHeightLines:1,maxHeightLines:10,elementRef:eo,value:H}),[ep,eg]=(0,F.useState)(void 0);(0,F.useLayoutEffect)(()=>{if(!e)return;let a=U?.current?.inputRef.current;if(!a)return;let l=()=>{let e=ed.current?.offsetParent;if(!e)return;let l=a.getBoundingClientRect(),n=e.getBoundingClientRect();if("top"===B)eg(l.top-n.top);else{let e=parseFloat(getComputedStyle(a).paddingBottom)||0;eg(l.bottom-n.top-e-16)}};l();let n=new ResizeObserver(()=>{l()});return a.parentElement&&n.observe(a.parentElement),ed.current&&n.observe(ed.current),()=>{n.disconnect()}},[B,U,e]),(0,F.useEffect)(()=>{e&&!ee.current&&(Z.current=P,J.current=V),ee.current=e},[e,P,V]),(0,F.useEffect)(()=>{O?.(G)},[G,O]);let ey=(0,F.useMemo)(()=>{switch(G){case"initial":return"How can I help you write your issue?";case"suggested":return"I've updated the issue title and description above.";case"error":return I;default:return""}},[G]),{mutate:eh,isPending:ef}=(0,o.n)({mutationFn:async e=>{es.current=new AbortController;let a=`${(0,t._$)().copilotApiOverrideUrl||"https://api.githubcopilot.com"}/chat/completions`,l={Authorization:(await ec.current.getAuthToken()).authorizationHeaderValue,"copilot-integration-id":"copilot-embedded-experience","Content-Type":"application/json"},n=`Current title: ${P||"(empty)"} +Current body: ${V||"(empty)"} + +User's request: ${e}`;if(n.length>5e4)throw Error("Input is too large. Please reduce the length of your title, description, or request.");let c={messages:[{role:"system",content:q?L:w},{role:"user",content:n}],model:"gpt-4o-mini",stream:!1,temperature:.3,response_format:{type:"json_schema",json_schema:{name:"issue_content",strict:!0,schema:{type:"object",properties:{title:{type:"string",description:"The improved or generated issue title"},body:{type:"string",description:"The improved or generated issue body/description"}},required:["title","body"],additionalProperties:!1}}}},i=await fetch(a,{method:"POST",headers:l,body:JSON.stringify(c),signal:es.current.signal});if(!i.ok)throw Error(`API request failed with status ${i.status}`);let s=await i.json(),r=s.choices?.[0]?.message?.content;if(!r)throw Error("No content in response");let o=JSON.parse(r);if(!o.body)throw Error("Invalid response structure");return o},onSuccess:(e,a)=>{Q("suggested"),en.current=e.title,et.current=e.body,l(e.title,e.body),W(""),er("analytics.click","ISSUE_CREATE_GENERATE_DESCRIPTION_WITH_COPILOT_PANEL",{repoNWO:`${r}/${K}`,hasTitle:!!P,hasExistingDescription:!!V,success:!0}),E()},onError:(e,a)=>{"AbortError"===e.name?Q("initial"):(Q("error"),er("analytics.click","ISSUE_CREATE_GENERATE_DESCRIPTION_WITH_COPILOT_PANEL",{repoNWO:`${r}/${K}`,hasTitle:!!P,hasExistingDescription:!!V,success:!1,error:e.message}),E(e.message))}}),ek=(0,F.useCallback)(e=>{"accepted"===e?A("accepted"):"discarded"===e?A("discarded"):null!==en.current||null!==et.current?A("closed_with_changes"):A("closed_without_changes"),W(""),Q("initial"),X(""),ea.current=P,el.current=V,en.current=null,et.current=null,a()},[a,P,V]),eb=(0,F.useCallback)(()=>{es.current?.abort()},[]),ez=(0,F.useCallback)(()=>{H.trim()&&!ef&&(ea.current=P,el.current=V,X(H),Q("loading"),eh(H))},[H,ef,eh,P,V]),eF=(0,F.useCallback)(async()=>{(null===en.current||null===et.current||P===en.current&&V===et.current||await ei({title:S,content:C,confirmButtonContent:v,confirmButtonType:"danger",cancelButtonContent:x}))&&(l(Z.current,J.current),ek("discarded"))},[l,ek,P,V,ei]),eI=(0,F.useCallback)(async()=>{!Y||(null===en.current||null===et.current||P===en.current&&V===et.current||await ei({title:j,content:M,confirmButtonContent:T,confirmButtonType:"danger",cancelButtonContent:_}))&&(A("retried"),l(ea.current,el.current),Q("loading"),eh(Y))},[Y,eh,l,P,V,ei]),eS=(0,F.useCallback)(e=>{"Enter"!==e.key||e.shiftKey||(e.preventDefault(),ez())},[ez]);return((0,F.useEffect)(()=>{e&&eo.current&&eo.current.focus()},[e]),(0,F.useEffect)(()=>{D?.(ef)},[ef,D]),(0,F.useEffect)(()=>()=>{D?.(!1)},[]),(0,F.useEffect)(()=>()=>{es.current?.abort()},[]),(0,F.useLayoutEffect)(()=>{if(!e||!ed.current||!$)return;$(ed.current.getBoundingClientRect().height+16);let a=new ResizeObserver(e=>{for(let a of e)$((a.borderBoxSize?.[0]?.blockSize??a.target.getBoundingClientRect().height)+16)});return a.observe(ed.current),()=>{a.disconnect(),$(0)}},[e,$]),e)?(0,n.jsxs)("div",{ref:ed,className:(0,z.$)("CopilotGenerateDescriptionPanel-module__container--tWHzB","top"===B?"CopilotGenerateDescriptionPanel-module__anchorTop--XfL7h":"bottom"===B?"CopilotGenerateDescriptionPanel-module__anchorBottom--ILivq":void 0,R),style:void 0!==ep?{top:`${ep}px`}:void 0,role:"region","aria-label":"Generate with Copilot",children:[!ef&&(0,n.jsxs)("div",{className:"CopilotGenerateDescriptionPanel-module__closeButtonContainer--cec3_",children:[eu&&(0,n.jsx)("a",{href:"https://gh.io/write-with-copilot-feedback",target:"_blank",rel:"noopener noreferrer",className:"CopilotGenerateDescriptionPanel-module__staffPillLink--gI3FO",children:(0,n.jsx)(y.A,{variant:"accent",children:"Staff"})}),(0,n.jsx)(h.K,{"aria-label":"Close",icon:p.XIcon,variant:"invisible",onClick:()=>ek()})]}),ey&&(0,n.jsxs)("div",{className:"CopilotGenerateDescriptionPanel-module__messageRow--XBPqn",children:[(0,n.jsx)("div",{className:"CopilotGenerateDescriptionPanel-module__iconContainer--pE4pC",children:(0,n.jsx)(p.CopilotIcon,{size:16})}),(0,n.jsxs)("div",{className:"CopilotGenerateDescriptionPanel-module__messageContent--dahCt",children:[(0,n.jsx)("div",{className:"CopilotGenerateDescriptionPanel-module__messageLabel--s2lbO",children:(0,n.jsx)("span",{children:"Copilot"})}),ey===I?(0,n.jsx)("div",{className:"CopilotGenerateDescriptionPanel-module__errorContainer--mKmhx",children:(0,n.jsxs)(f.A,{variant:"danger",children:[(0,n.jsx)(p.AlertIcon,{}),ey]})}):(0,n.jsx)("div",{className:"CopilotGenerateDescriptionPanel-module__messageText--UcJIt",children:(0,n.jsx)("span",{children:ey})})]})]}),ef&&(0,n.jsxs)("div",{className:"CopilotGenerateDescriptionPanel-module__loadingContainer--BVnDm","aria-live":"polite","aria-atomic":"true",role:"status",children:[(0,n.jsx)(c.N,{animationType:c.L.Thinking,loopAnimation:!0,size:20}),(0,n.jsx)("span",{className:"CopilotGenerateDescriptionPanel-module__loadingLabel--OwYkS",children:"Copilot"}),(0,n.jsx)(s.b,{className:"CopilotGenerateDescriptionPanel-module__loadingText--TR8JO",children:"Writing\u2026"}),(0,n.jsx)(h.K,{"aria-label":"Stop generation",icon:p.SquareFillIcon,size:"small",onClick:eb})]}),"suggested"===G&&!ef&&(0,n.jsxs)("div",{className:"CopilotGenerateDescriptionPanel-module__actionButtons--I4mzB",children:[(0,n.jsx)(k.Q,{size:"small",variant:"invisible",className:N,leadingVisual:p.CheckIcon,onClick:()=>ek("accepted"),children:"Accept"}),(0,n.jsx)(k.Q,{size:"small",variant:"invisible",className:N,leadingVisual:p.XIcon,onClick:eF,children:"Discard"}),(0,n.jsx)(k.Q,{size:"small",variant:"invisible",className:N,leadingVisual:p.SyncIcon,onClick:eI,children:"Try again"})]}),!ef&&(0,n.jsxs)("div",{className:"CopilotGenerateDescriptionPanel-module__inputArea--vB1dh",children:[(0,n.jsx)(b.Ay,{ref:eo,value:H,onChange:e=>W(e.target.value),onKeyPress:eS,placeholder:"Type your message here...",rows:1,resize:"none",block:!0,className:"CopilotGenerateDescriptionPanel-module__textarea--F0EiG",style:em}),(0,n.jsx)(h.K,{className:"CopilotGenerateDescriptionPanel-module__sendButton--O_2SQ","aria-label":"Send",icon:p.PaperAirplaneIcon,variant:"invisible",onClick:ez,disabled:""===H.trim()})]})]}):null}function A(e){(0,r.BI)("copilot.create_issue_description_panel",{action:e})}function E(e){(0,r.BI)("copilot.create_issue_description_panel",{error:e})}try{P.displayName||(P.displayName="CopilotGenerateDescriptionPanel")}catch{}},21725:(e,a,l)=>{l.d(a,{u:()=>eR,E:()=>eD});var n,t,c,i,s,r,o,d,u,m,p,g,y,h,f,k,b,z,F,I,S,C,v,x,j,M,T,_,N,K,L=l(74848);let w=(i=[{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},{kind:"InlineFragment",selections:c=[n={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},t={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"dataType",storageKey:null}],type:"IssueFieldText",abstractKey:null},{kind:"InlineFragment",selections:c,type:"IssueFieldSingleSelect",abstractKey:null},{kind:"InlineFragment",selections:c,type:"IssueFieldDate",abstractKey:null},{kind:"InlineFragment",selections:c,type:"IssueFieldNumber",abstractKey:null}],{argumentDefinitions:[],kind:"Fragment",metadata:null,name:"FieldsSectionFragment",selections:[n,{alias:null,args:null,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"isPrivate",storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"owner",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"databaseId",storageKey:null},{kind:"InlineFragment",selections:[{alias:"issueFieldsEnabled",args:[{kind:"Literal",name:"name",value:"issue_fields"}],kind:"ScalarField",name:"isFeatureEnabled",storageKey:'isFeatureEnabled(name:"issue_fields")'},{alias:null,args:[{kind:"Literal",name:"first",value:100}],concreteType:"IssueFieldsConnection",kind:"LinkedField",name:"pinnedIssueFields",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"nodes",plural:!0,selections:i,storageKey:null}],storageKey:"pinnedIssueFields(first:100)"}],type:"Organization",abstractKey:null}],storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"viewerCanSetFields",storageKey:null},{args:null,kind:"FragmentSpread",name:"FieldsSectionFieldValues"},{alias:null,args:null,concreteType:"IssueType",kind:"LinkedField",name:"issueType",plural:!1,selections:[n,t,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"pinnedFields",plural:!0,selections:i,storageKey:null}],storageKey:null}],type:"Issue",abstractKey:null});w.hash="7eff93ed6fefa678f233d8ef70650b04";let P=(o=[s={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},r={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"dataType",storageKey:null}],{argumentDefinitions:[],kind:"Fragment",metadata:null,name:"FieldsSectionFieldValues",selections:[s,{alias:null,args:[{kind:"Literal",name:"first",value:25}],concreteType:"IssueFieldValueConnection",kind:"LinkedField",name:"issueFieldValues",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"nodes",plural:!0,selections:[{kind:"InlineFragment",selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[{kind:"InlineFragment",selections:o,type:"IssueFieldText",abstractKey:null}],storageKey:null},d={alias:null,args:null,kind:"ScalarField",name:"value",storageKey:null}],type:"IssueFieldTextValue",abstractKey:null},{kind:"InlineFragment",selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[{kind:"InlineFragment",selections:o,type:"IssueFieldSingleSelect",abstractKey:null}],storageKey:null},r,{alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null}],type:"IssueFieldSingleSelectValue",abstractKey:null},{kind:"InlineFragment",selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[{kind:"InlineFragment",selections:o,type:"IssueFieldDate",abstractKey:null}],storageKey:null},d],type:"IssueFieldDateValue",abstractKey:null},{kind:"InlineFragment",selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[{kind:"InlineFragment",selections:o,type:"IssueFieldNumber",abstractKey:null}],storageKey:null},{alias:"numberValue",args:null,kind:"ScalarField",name:"value",storageKey:null}],type:"IssueFieldNumberValue",abstractKey:null}],storageKey:null}],storageKey:"issueFieldValues(first:25)"},{alias:null,args:null,kind:"ScalarField",name:"viewerCanSetFields",storageKey:null},{alias:null,args:null,concreteType:"IssueType",kind:"LinkedField",name:"issueType",plural:!1,selections:[s,r],storageKey:null}],type:"Issue",abstractKey:null});P.hash="461a0c55032c3a4bf8d10a5a74a2fd22";var A=l(69599),E=l(98646),V=l(44251),R=l(41057),D=l(73189),O=l(75202),B=l(81960),$=l(11196),U=l(96540),q=l(18312);l(69487);var H=l(3047),W=l(16810),G=l(38621),Q=l(21373);let Y=({ref:e,...a})=>{let{anchorProps:l,inactive:n=!1,disabled:t=!1,onClick:c}=a;return(0,L.jsx)("div",{className:"AddIssueFieldButton-module__container--vCxXw",children:(0,L.jsx)(Q.Q,{leadingVisual:n?G.AlertIcon:void 0,trailingVisual:n?void 0:G.PlusIcon,size:"small",ref:e,...l,className:"AddIssueFieldButton-module__button--GCUMC",inactive:n||t,onClick:e=>{t||(c(),l?.onClick?.(e))},children:"Add field"})})};Y.displayName="AddIssueFieldButton";var X=l(41848),Z=l(23490);function J({owner:e,fieldsSet:a,onIssueFieldSelected:l,markInteractionStart:n,inactive:t=!1,disabled:c=!1,onButtonElementReceived:i,hideAddFieldButton:s=!1}){let r=(0,U.useMemo)(()=>(e,a)=>(a?.current&&i?.(a.current),(0,L.jsx)(Y,{anchorProps:e,ref:a,onClick:n,inactive:t,disabled:c})),[n,t,c,i]),o=(0,U.useCallback)(e=>{let a=e[0];a&&l((0,E.YQ)(a))},[l]);return s?null:(0,L.jsx)(Z.iF,{owner:e,fieldsSet:a,onSelectionChange:o,anchorElement:r,insidePortal:!1})}try{J.displayName||(J.displayName="FieldsSelector")}catch{}let ee="FieldsSection-module__pinnedField--xRXo6",ea="FieldsSection-module__compactSectionHeader--Hk_Dl",el="FieldsSection-module__compactSectionEmptyText--De4w6";function en(e){let a=(0,U.useRef)(null),l=(0,U.useRef)(e),n=(0,U.useCallback)(e=>{a.current=e},[]);return(0,U.useEffect)(()=>{null!==l.current&&null===e&&a.current?.focus(),l.current=e},[e]),{setAddFieldButtonElement:n}}function et(e){let[a,l]=(0,U.useState)(!1),n=(0,U.useRef)(null),t=(0,U.useRef)(!1),c=(0,U.useRef)(null);return(0,U.useEffect)(()=>{if(t.current&&e!==c.current&&null!==e){l(!1),c.current=e;let a=setTimeout(()=>{l(!0)},0),n=setTimeout(()=>{l(!1)},2e3);return()=>{clearTimeout(a),clearTimeout(n)}}t.current||(c.current=e),n.current=e,t.current=!0},[e]),{animatePinned:a}}let ec={only:"FieldsSection-module__animationOnly--wLfWL",first:"FieldsSection-module__animationFirst--sLTV_",middle:"FieldsSection-module__animationMiddle--a9BOk",last:"FieldsSection-module__animationLast--uzto7"};function ei(e,a,l=null){if(e&&a){let e=l?ec[l]:"";return`${ee} FieldsSection-module__animationClass--ZaRW4 ${e}`.trim()}if(e)return ee}function es(e,a,l){if(!a.has(e))return null;let n=l.filter(e=>a.has(e)),t=n.indexOf(e);return 1===n.length?"only":0===t?"first":t===n.length-1?"last":"middle"}function er({mutationFn:e,input:a,environment:l,action:n,fieldId:t,fieldType:c,inProjectsPage:i,ownerId:s,reportUsage:r,onError:o,onCompleted:d}){let u=Date.now();e({environment:l,input:a,onCompleted:()=>{r({page:i?"memex#show":"issue#show",action:n,fieldId:t,fieldType:c,status:"success",duration:Date.now()-u,orgId:s?.toString()}),d?.()},onError:e=>{let a=Date.now()-u;r({page:i?"memex#show":"issue#show",action:n,fieldId:t,fieldType:c,status:"error",errorDetails:e instanceof Error?e.message:String(e),duration:a,orgId:s?.toString()}),o?.(e)}})}var eo=l(39414),ed=l(8816),eu=l(36683),em=l(34164),ep=l(21798);let eg="FieldEditors-module__dateAnchorContainer--I3CxZ";var ey=l(68384);let eh=({formattedDate:e})=>e?(0,L.jsx)("span",{className:"FieldEditors-module__dateText--SPr35",children:e}):(0,L.jsx)("span",{className:"FieldEditors-module__noValueContainer--jjEy0",children:X.k.setValue}),ef=({fieldId:e,fieldName:a,value:l,onCommit:n,shouldOpen:t=!1,isDraft:c=!1,readonly:i,className:s})=>{let[r,o]=(0,U.useState)(t),d=(0,U.useMemo)(()=>l?(0,ed.b)(l):"",[l]),u=(0,U.useMemo)(()=>l?new Date(l.getUTCFullYear(),l.getUTCMonth(),l.getUTCDate()):null,[l]),m=(0,U.useCallback)(()=>{c&&n(e,null),o(!1)},[c,e,n]),p=(0,U.useCallback)(a=>{let l=null;a&&(l=new Date(Date.UTC(a.getFullYear(),a.getMonth(),a.getDate(),12,0,0,0))),n(e,l),o(!1)},[e,n]),g=d||X.k.setValue;return i?(0,L.jsxs)("div",{className:(0,em.$)(ey.A.issueFieldFormWrapper,s),children:[(0,L.jsx)("p",{className:ey.A.issueFieldLabel,children:a}),(0,L.jsx)("div",{className:(0,em.$)(ey.A.issueFieldValueText,d&&ey.A.hasValue),children:g})]}):(0,L.jsx)(eu.DatePicker,{variant:"single",showClearButton:!0,value:u,onChange:p,open:r,onOpen:()=>o(!0),onClose:m,anchor:e=>(0,L.jsxs)("button",{...e,className:(0,em.$)(ey.A.issueFieldFormWrapper,ey.A.issueFieldFormWrapperClickable,r&&ey.A.isEditing,s),"aria-label":l?`Edit ${a}`:`Set ${a}`,children:[(0,L.jsx)("span",{className:ey.A.issueFieldLabel,children:a}),(0,L.jsx)("span",{className:(0,em.$)(ey.A.issueFieldValueText,d&&ey.A.hasValue),children:g})]})})},ek=({fieldId:e,fieldName:a,value:l,readonly:n,onCommit:t,shouldOpen:c=!1,isDraft:i=!1,errorPresent:s=!1,className:r})=>{let o=(0,A.G7)("issue_fields_compact_view"),d=(0,U.useMemo)(()=>l?(0,ed.b)(l):"",[l]),u=(0,U.useMemo)(()=>l?new Date(l.getUTCFullYear(),l.getUTCMonth(),l.getUTCDate()):null,[l]),[m,p]=(0,U.useState)(c),g=(0,U.useCallback)(()=>{i&&t(e,null),p(!1)},[i,t,e]);return o?(0,L.jsx)(ef,{fieldId:e,fieldName:a,value:l,onCommit:t,shouldOpen:c,isDraft:i,readonly:n,className:r}):(0,L.jsx)(W.w,{sectionHeader:(0,L.jsx)(ep.X,{title:a,readonly:n,buttonProps:n?void 0:{onClick:()=>p(!0)},errorPresent:s}),className:r,children:n?(0,L.jsx)("div",{className:eg,children:(0,L.jsx)(eh,{formattedDate:d})}):(0,L.jsx)(eu.DatePicker,{anchor:e=>(0,L.jsx)("div",{...e,className:`${eg} FieldEditors-module__dateAnchorContainerInteractive--EFP_p`,children:(0,L.jsx)(eh,{formattedDate:d})}),showClearButton:!0,showTodayButton:!0,variant:"single",dateFormat:"long",onChange:a=>{let l=null;a&&(l=new Date(Date.UTC(a.getFullYear(),a.getMonth(),a.getDate(),12,0,0,0))),t(e,l),p(!1)},value:u,placeholder:"Set date",open:m,onOpen:()=>p(!0),onClose:g},a)})};try{eh.displayName||(eh.displayName="DateDisplay")}catch{}try{ef.displayName||(ef.displayName="IssueFieldCompactDateEditorInternal")}catch{}try{ek.displayName||(ek.displayName="IssueFieldDateEditor")}catch{}var eb=l(43570),ez=l(72690),eF=l(3155),eI=l(92233);let eS=({fieldId:e,fieldName:a,initialValue:l,onCommit:n,shouldOpen:t=!1,isDraft:c=!1,readonly:i,className:s})=>{let r=(0,U.useCallback)(a=>{n(e,a)},[e,n]),o=(0,U.useCallback)(()=>{c&&n(e,null)},[e,c,n]),d=!l||""===l.name&&""===l.color,u=d?X.k.setValue:(0,L.jsx)(eF.g,{name:l.name,color:l.color,getTooltipText:()=>void 0,size:"small",containerClassName:eI.A.compactContainer}),m=d?`Set ${a}`:`Edit ${a}`;return i?(0,L.jsxs)("div",{className:(0,em.$)(ey.A.issueFieldFormWrapper,s),children:[(0,L.jsx)("p",{className:ey.A.issueFieldLabel,children:a}),(0,L.jsx)("div",{className:(0,em.$)(ey.A.issueFieldValueText,!d&&ey.A.hasValue,eI.A.compactValueContainer),children:u})]}):(0,L.jsx)(ez.CZ,{fieldId:e,fieldName:a,selectedOption:l?l.name:null,onSelectionChange:r,anchorElement:(e,l)=>(0,L.jsxs)("button",{ref:l,className:(0,em.$)(ey.A.issueFieldFormWrapper,ey.A.issueFieldFormWrapperClickable,s),"aria-label":m,...e,children:[(0,L.jsx)("span",{className:ey.A.issueFieldLabel,children:a}),(0,L.jsx)("span",{className:(0,em.$)(ey.A.issueFieldValueText,!d&&ey.A.hasValue,eI.A.compactValueContainer),children:u})]}),readonly:!1,isLazy:!0,onClose:o,shouldOpen:t})},eC=({fieldId:e,fieldName:a,readonly:l,initialValue:n,onCommit:t,shouldOpen:c=!1,isDraft:i=!1,className:s})=>{let r=(0,A.G7)("issue_fields_compact_view"),o=(0,U.useCallback)(a=>{t(e,a)},[e,t]),d=(0,U.useCallback)(()=>{i&&t(e,null)},[e,i,t]),u=(0,U.useMemo)(()=>(0,L.jsx)(ez.CZ,{fieldId:e,fieldName:a,selectedOption:n?n.name:null,onSelectionChange:o,anchorElement:(e,n)=>(0,L.jsx)(ep.X,{title:a||"",buttonProps:e,ref:n,readonly:l}),readonly:!1,isLazy:!0,onClose:d,shouldOpen:c}),[e,a,n,d,o,l,c]);if(r)return(0,L.jsx)(eS,{fieldId:e,fieldName:a,initialValue:n,onCommit:t,shouldOpen:c,isDraft:i,readonly:l,className:s});let m=n?.name===""&&n?.color===""&&n?.description==="";return(0,L.jsx)(W.w,{sectionHeader:u,className:s,children:(0,L.jsx)("div",{className:eI.A.fieldEditorContainer,children:m?(0,L.jsx)("div",{className:eI.A.noValueContainer,children:X.k.setValue}):(0,L.jsx)(eF.g,{name:n?.name||"",color:n?.color||"",getTooltipText:e=>e?n?.description??"":void 0})})})};try{eS.displayName||(eS.displayName="IssueFieldCompactSingleSelectEditorInternal")}catch{}try{eC.displayName||(eC.displayName="IssueFieldSingleSelectEditor")}catch{}var ev=l(68065);function ex({fieldValue:e,readonly:a,onCommit:l,className:n},t){let c=""===e.value;switch(e.field.dataType){case"TEXT":return(0,L.jsx)(ev.eH,{fieldId:e.field.id,fieldName:e.field.name||"",initialValue:e.value||"",readonly:a,onCommit:(e,a)=>l(e,a),errorPresent:t,className:n},e.field.name);case"SINGLE_SELECT":return(0,L.jsx)(eC,{fieldId:e.field.id,fieldName:e.field.name||"",initialValue:{name:c||!e?.name?"":e.name,color:c||!e?.color?"":e.color,description:c||!e?.description?"":e.description},readonly:a,onCommit:(e,a)=>l(e,a),className:n},e.field.name);case"DATE":{let c=null,i=e.value;return i&&(i instanceof Date?c=i:"string"==typeof i&&(c=(0,ed.o)(i))),(0,L.jsx)(ek,{fieldId:e.field.id,fieldName:e.field.name||"",value:c,readonly:a,onCommit:(e,a)=>l(e,a),errorPresent:t,className:n},e.field.name)}case"NUMBER":{let c=void 0!==e.numberValue&&null!==e.numberValue,i=void 0!==e.value&&null!==e.value&&""!==e.value,s=c?e.numberValue.toString():i?String(e.value):"";return(0,L.jsx)(eb.k,{fieldId:e.field.id,fieldName:e.field.name||"",initialValue:s,readonly:a,onCommit:(e,a)=>{""===a?l(e,a):l(e,Number(a))},errorPresent:t,className:n},e.field.name)}default:throw Error(`Unsupported field type: ${e.field.dataType}`)}}function ej({fieldSelection:e,onCommit:a,className:l}){switch(e.dataType){case"text":return(0,L.jsx)(ev.eH,{fieldId:e.id||"",fieldName:e.name||"",initialValue:"",readonly:!1,onCommit:(e,l)=>a(e,l),shouldOpen:!0,isDraft:!0,className:l},e.id);case"single_select":return(0,L.jsx)(eC,{fieldId:e.id,fieldName:e.name||"",initialValue:{name:"",color:"",description:""},readonly:!1,onCommit:(e,l)=>a(e,l),shouldOpen:!0,isDraft:!0,className:l},e.name);case"date":return(0,L.jsx)(ek,{fieldId:e.id,fieldName:e.name||"",value:null,readonly:!1,onCommit:(e,l)=>a(e,l),shouldOpen:!0,isDraft:!0,className:l},e.name);case"number":return(0,L.jsx)(eb.k,{fieldId:e.id||"",fieldName:e.name||"",initialValue:"",readonly:!1,onCommit:(e,l)=>a(e,l),shouldOpen:!0,isDraft:!0,className:l},e.id);default:throw Error(`Unsupported field type: ${e.dataType}`)}}function eM({onClose:e,message:a}){return(0,L.jsx)(eo.K,{title:"Error",confirmButtonContent:"OK",confirmButtonType:"primary",onClose:e,children:a})}try{eM.displayName||(eM.displayName="ErrorDialog")}catch{}let eT={fragment:{argumentDefinitions:u=[{defaultValue:null,kind:"LocalArgument",name:"input"}],kind:"Fragment",metadata:null,name:"createIssueFieldValueMutation",selections:[{alias:null,args:m=[{kind:"Variable",name:"input",variableName:"input"}],concreteType:"CreateIssueFieldValuePayload",kind:"LinkedField",name:"createIssueFieldValue",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"issueFieldValue",plural:!1,selections:[y={kind:"InlineFragment",selections:g=[p={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"value",storageKey:null}],type:"IssueFieldTextValue",abstractKey:null},h={kind:"InlineFragment",selections:[p,{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null}],type:"IssueFieldSingleSelectValue",abstractKey:null},f={kind:"InlineFragment",selections:g,type:"IssueFieldDateValue",abstractKey:null},k={kind:"InlineFragment",selections:[p,{alias:"numberValue",args:null,kind:"ScalarField",name:"value",storageKey:null}],type:"IssueFieldNumberValue",abstractKey:null}],storageKey:null},z={alias:null,args:null,concreteType:"Issue",kind:"LinkedField",name:"issue",plural:!1,selections:b=[p],storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:u,kind:"Operation",name:"createIssueFieldValueMutation",selections:[{alias:null,args:m,concreteType:"CreateIssueFieldValuePayload",kind:"LinkedField",name:"createIssueFieldValue",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"issueFieldValue",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},y,h,f,k,{kind:"InlineFragment",selections:b,type:"Node",abstractKey:"__isNode"}],storageKey:null},z],storageKey:null}]},params:{id:"7d34c7a47ddc5e24a7fe4d1980651c76",metadata:{},name:"createIssueFieldValueMutation",operationKind:"mutation",text:null}};eT.hash="efaa5ef3592a90da63e7e17d2645f75c";let e_=e=>void 0!==e.singleSelectOptionId?E.KO:void 0!==e.dateValue?E.fk:void 0!==e.numberValue?E.qg:E.qH,eN=(e,a,l)=>{if(a){if(void 0!==l.textValue&&a.setValue(l.textValue,"value"),void 0!==l.singleSelectOptionId&&null!==l.singleSelectOptionId){let n=(e.get(l.fieldId)?.getLinkedRecords("options")||[]).find(e=>e.getDataID()===l.singleSelectOptionId);a.setValue(n?.getValue("name")??null,"name"),a.setValue(n?.getValue("color")??null,"color"),a.setValue(n?.getValue("description")??null,"description")}void 0!==l.dateValue&&a.setValue(l.dateValue,"value"),void 0!==l.numberValue&&a.setValue(l.numberValue,"value")}},eK=(e,a,l)=>{if(!e||!l)return;let n=(e.getLinkedRecords("nodes")||[]).filter(e=>e?.getLinkedRecord("field")?.getDataID()!==a);n.push(l),e.setLinkedRecords(n,"nodes")};function eL({environment:e,input:a,onCompleted:l,onError:n}){return(0,q.commitMutation)(e,{mutation:eT,variables:{input:a},onCompleted:()=>{l?.()},onError:e=>n?.(e),optimisticUpdater:e=>{let l=e.get(a.issueId);if(!l)return;let n=a.issueField,t=l.getLinkedRecord("issueFieldValues",{first:25}),c=t?.getLinkedRecords("nodes")||[],i=e_(n),s=e.create(`client:newFieldValue:${n.fieldId}`,i);s.setValue(`client:newFieldValue:${n.fieldId}`,"id");let r=e.get(n.fieldId);r&&s.setLinkedRecord(r,"field"),eN(e,s,n),c.push(s),t&&t.setLinkedRecords(c,"nodes")},updater:e=>{let l=e.get(a.issueId),n=l?.getLinkedRecord("issueFieldValues",{first:25}),t=e.getRootField("createIssueFieldValue"),c=t?.getLinkedRecord("issueFieldValue");if(!l||!c||!n)return;let i=a.issueField;if(!c.getLinkedRecord("field")){let a=e.get(i.fieldId);a&&c.setLinkedRecord(a,"field")}eK(n,i.fieldId,c)}})}let ew={fragment:{argumentDefinitions:F=[{defaultValue:null,kind:"LocalArgument",name:"input"}],kind:"Fragment",metadata:null,name:"deleteIssueFieldValueMutation",selections:I=[{alias:null,args:[{kind:"Variable",name:"input",variableName:"input"}],concreteType:"DeleteIssueFieldValuePayload",kind:"LinkedField",name:"deleteIssueFieldValue",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"success",storageKey:null},{alias:null,args:null,concreteType:"Issue",kind:"LinkedField",name:"issue",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null}],storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:F,kind:"Operation",name:"deleteIssueFieldValueMutation",selections:I},params:{id:"07154732cd6de9c83b93caf7e4fdb17b",metadata:{},name:"deleteIssueFieldValueMutation",operationKind:"mutation",text:null}};function eP({environment:e,input:a,onCompleted:l,onError:n}){return(0,q.commitMutation)(e,{mutation:ew,variables:{input:a},onCompleted:()=>{l?.()},onError:e=>n?.(e),optimisticUpdater:e=>{let l=e.get(a.issueId);l&&eA(l,a.fieldId)},updater:e=>{let l=e.get(a.issueId);l&&eA(l,a.fieldId)}})}ew.hash="ade9c121a42280fa29046520cd641e3c";let eA=(e,a)=>{if(!e)return;let l=e.getLinkedRecord("issueFieldValues",{first:25});if(!l)return;let n=(l.getLinkedRecords("nodes")||[]).find(e=>e?.getLinkedRecord("field")?.getDataID()===a);if(!n)return;let t=n.getType();(0,E.fy)(n,t)},eE={fragment:{argumentDefinitions:S=[{defaultValue:null,kind:"LocalArgument",name:"input"}],kind:"Fragment",metadata:null,name:"updateIssueFieldValueMutation",selections:[{alias:null,args:C=[{kind:"Variable",name:"input",variableName:"input"}],concreteType:"UpdateIssueFieldValuePayload",kind:"LinkedField",name:"updateIssueFieldValue",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"issueFieldValue",plural:!1,selections:[j={kind:"InlineFragment",selections:x=[v={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"value",storageKey:null}],type:"IssueFieldTextValue",abstractKey:null},M={kind:"InlineFragment",selections:[v,{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null}],type:"IssueFieldSingleSelectValue",abstractKey:null},T={kind:"InlineFragment",selections:x,type:"IssueFieldDateValue",abstractKey:null},_={kind:"InlineFragment",selections:[v,{alias:"numberValue",args:null,kind:"ScalarField",name:"value",storageKey:null}],type:"IssueFieldNumberValue",abstractKey:null}],storageKey:null},K={alias:null,args:null,concreteType:"Issue",kind:"LinkedField",name:"issue",plural:!1,selections:N=[v],storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:S,kind:"Operation",name:"updateIssueFieldValueMutation",selections:[{alias:null,args:C,concreteType:"UpdateIssueFieldValuePayload",kind:"LinkedField",name:"updateIssueFieldValue",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"issueFieldValue",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},j,M,T,_,{kind:"InlineFragment",selections:N,type:"Node",abstractKey:"__isNode"}],storageKey:null},K],storageKey:null}]},params:{id:"c9b8f156814615ff82eb2393351e0719",metadata:{},name:"updateIssueFieldValueMutation",operationKind:"mutation",text:null}};function eV({environment:e,input:a,onCompleted:l,onError:n}){return(0,q.commitMutation)(e,{mutation:eE,variables:{input:a},onCompleted:()=>{l?.()},onError:e=>n?.(e),optimisticUpdater:e=>{let l=e.get(a.issueId),n=l?.getLinkedRecord("issueFieldValues",{first:25}),t=n?.getLinkedRecords("nodes")||[],c=a.issueField,i=e_(c),s=t.find(e=>e.getLinkedRecord("field")?.getDataID()===c.fieldId);if(!s){s=e.create(`client:updateFieldValue:${c.fieldId}`,i);let a=e.get(c.fieldId);a&&s.setLinkedRecord(a,"field")}eN(e,s,c),eK(n,c.fieldId,s)},updater:e=>{let l=e.get(a.issueId),n=l?.getLinkedRecord("issueFieldValues",{first:25}),t=e.getRootField("updateIssueFieldValue"),c=t?.getLinkedRecord("issueFieldValue"),i=a.issueField;if(c){if(!c.getLinkedRecord("field")){let a=e.get(i.fieldId);a&&c.setLinkedRecord(a,"field")}eK(n,i.fieldId,c)}}})}function eR({owner:e,ownerId:a,onSelectionChange:l,issueType:n,orgPinnedFields:t,isPinnedFieldsLoading:c}){let i,s,r,[o,d]=(0,U.useState)([]),[u,m]=(0,U.useState)([]),[p,g]=(0,U.useState)(null),{animatePinned:y}=et(n?.name||null),{markInteractionStart:h,reportUsage:f}=(0,V.k)(),{setAddFieldButtonElement:k}=en(p),b=(0,U.useMemo)(()=>(0,E.IR)(n?.pinnedFields?.filter(e=>e?.__typename!=="%other")??[])??t??[],[n,t]),{pinnedFieldIds:z}=function({pinnedFields:e,setFields:a,setFieldsSet:l}){let n=(0,U.useMemo)(()=>(e||[]).map(e=>(0,H.Y0)((0,E.YQ)(e),null)),[e]),t=(0,U.useMemo)(()=>new Set(n.map(e=>e.field.id)),[n]);return(0,U.useEffect)(()=>{n.length>0?(a(e=>[...n.map(a=>{let l=e.find(e=>e.field.id===a.field.id);return l&&l.value?l:a}),...e.filter(e=>!t.has(e.field.id)&&e.value)]),l(n.map(e=>e.field.name))):(a(e=>e.filter(e=>!t.has(e.field.id)&&e.value)),l(e=>e.filter(e=>!n.map(e=>e.field.name).includes(e))))},[e,t,n,a,l]),{pinnedFieldIds:t}}({pinnedFields:b,setFields:d,setFieldsSet:m}),F=!(0,A.G7)("issue_metadata_add_field_button");(0,U.useEffect)(()=>{l(o.filter(e=>e.value))},[o,l]),(0,U.useEffect)(()=>{let e=[...new Set([...o.map(e=>e.field.name).filter(e=>!!e),...u])];e.length===u.length&&e.every(e=>u.includes(e))||m(e)},[o,u]);let I=(0,U.useCallback)(e=>{h(),e.id&&(g(e),e.name&&m(a=>[...a,e.name]))},[h]),S=(0,U.useCallback)((e,l)=>{d(n=>{let t,c=n.map(a=>a.field.id===e?t=(0,H.IE)(a.field,l):a).filter(e=>void 0!==e.value||e.field.id&&z.has(e.field.id));return t&&!t.value&&(t.field.id&&z.has(t.field.id)||m(e=>e.filter(e=>e!==t?.field.name))),t&&t.field.dataType&&f({page:"issue#new",action:"create",fieldId:e,fieldType:(0,E.HZ)(t.field.dataType),status:"success",orgId:a?.toString()}),c})},[a,z,f]),C=(0,U.useCallback)((e,a)=>{if(!p||p.id!==e)return;g(null);let l=(0,E.HZ)(p.dataType),n=(0,H.vl)(l,a),t="string"==typeof n?!n.trim():!n;p.name&&t?m(e=>e.filter(e=>e!==p.name)):!t&&(d(e=>{let l=[...e];return p.name&&!l.some(e=>e.field.name===p.name)&&l.push((0,H.Y0)(p,a)),l}),p.name&&m(e=>e.includes(p.name)?e:[...e,p.name]))},[p]),v=(0,A.G7)("issue_fields_compact_view"),x=o.map(e=>e.field.id).filter(e=>!!e),j=o.map(e=>e.field.id?ex({fieldValue:"object"==typeof e.value&&null!==e.value?{...e,...e.value}:e,readonly:!1,onCommit:S,className:ei(z.has(e.field.id),y,es(e.field.id,z,x))}):null),M=p?(i=z.has(p.id),s=p.id?[...x,p.id]:x,r=p.id?es(p.id,z,s):null,ej({fieldSelection:p,readonly:!1,onCommit:C,className:ei(i,y,r)})):null,T=(0,L.jsx)(J,{owner:e,fieldsSet:u,onIssueFieldSelected:I,markInteractionStart:h,disabled:null!==p,onButtonElementReceived:k,hideAddFieldButton:F}),_=j.filter(Boolean),N=b.length>0&&0===_.length;return v?(0,L.jsxs)(L.Fragment,{children:[(0,L.jsx)(W.w,{sectionHeader:(0,L.jsx)(B.A,{as:"h3",className:ea,children:"Fields"}),children:_.length>0?(0,L.jsx)(L.Fragment,{children:_}):c||N?(0,L.jsx)(L.Fragment,{children:(0,L.jsxs)("span",{className:"FieldsSection-module__loadingRow--wqlHp",children:[(0,L.jsx)(R.Q,{height:"md",width:"40%"}),(0,L.jsx)(R.Q,{height:"md",width:"60%"})]})}):(0,L.jsx)("span",{className:el,children:X.k.noPinnedFieldsMessage(n?.name)})}),M,T]}):(0,L.jsxs)(L.Fragment,{children:[j,M,T]})}function eD({issue:e,onUpdate:a,inProjectsPage:l,readonly:n}){let t,[c,i]=(0,U.useState)([]),[s,r]=(0,U.useState)(!1),[o,d]=(0,U.useState)(!1),[u,m]=(0,U.useState)(null),p=(0,q.useRelayEnvironment)(),{markInteractionStart:g,reportUsage:y}=(0,V.k)(),{setAddFieldButtonElement:h}=en(u),f=!(0,A.G7)("issue_metadata_add_field_button"),k=(0,q.useFragment)(w,e),{repository:{isPrivate:b,owner:{login:z}},viewerCanSetFields:F,issueType:I}=k,S=k.repository.owner.issueFieldsEnabled??!1,C=(0,U.useMemo)(()=>(0,E.IR)(k.repository.owner.pinnedIssueFields?.nodes?.filter(e=>e?.__typename!=="%other")??[]),[k.repository.owner.pinnedIssueFields]),v=(0,U.useMemo)(()=>(0,E.IR)(I?.pinnedFields?.filter(e=>e?.__typename!=="%other"))??C??[],[I,C]),x=(0,U.useMemo)(()=>v.map(e=>(0,H.Y0)((0,E.YQ)(e),null)),[v]),j=(0,U.useCallback)(()=>{r(!0)},[]),M=(0,U.useCallback)((e,a)=>{if(!u||u.id!==e)return;m(null);let n=(0,H.vl)(u.dataType,a||""),t="string"==typeof n?!n.trim():!n;u.name&&t?i(e=>e.filter(e=>e!==u.name)):t||er({mutationFn:eL,input:{issueId:k.id,issueField:{fieldId:e,...(0,E.Ft)(u.dataType,n)}},environment:p,action:"create",fieldId:e,fieldType:(0,E.HZ)(u.dataType),inProjectsPage:l,ownerId:k.repository?.owner?.databaseId,reportUsage:y,onError:j})},[u,k.id,k.repository.owner.databaseId,p,l,y,j]);return b&&S?(0,L.jsxs)(L.Fragment,{children:[(0,L.jsxs)(O.t,{fallback:(0,L.jsxs)("div",{children:[(0,L.jsx)($.m,{text:X.k.loadingFieldsTooltipMessage,children:(0,L.jsx)("span",{children:(0,L.jsx)(Y,{inactive:!0,anchorProps:{onClick:()=>d(!0)},onClick:D.l})})}),o&&(0,L.jsx)(eM,{onClose:()=>d(!1),message:X.k.loadingFieldsErrorMessage})]}),children:[(0,L.jsx)(eO,{issue:k,fieldsSet:c,setFieldsSet:i,inProjectsPage:l,pinnedFields:x,readonly:n,onUpdate:a}),u&&(t=x.some(e=>e.field.id===u.id),ej({fieldSelection:u,readonly:!1,onCommit:M,className:t?ee:void 0})),!n&&F&&(0,L.jsx)(J,{owner:z,fieldsSet:c,onIssueFieldSelected:e=>{e.id&&(m(e),e.name&&i(a=>[...a,e.name]))},markInteractionStart:g,disabled:null!==u,onButtonElementReceived:h,hideAddFieldButton:f})]}),s&&(0,L.jsx)(eM,{onClose:()=>r(!1),message:X.k.mutationErrorMessage})]}):null}function eO({issue:e,fieldsSet:a,setFieldsSet:l,inProjectsPage:n,onUpdate:t,pinnedFields:c,readonly:i}){let s=(0,q.useRelayEnvironment)(),[r,o]=(0,U.useState)({}),{reportUsage:d}=(0,V.k)();(0,U.useEffect)(()=>{let e=Object.values(r).some(e=>e),a=a=>{if(e)return a.preventDefault(),a.returnValue=X.k.reloadWarningMessage,a.returnValue};return window.addEventListener("beforeunload",a),()=>{window.removeEventListener("beforeunload",a)}},[r]);let u=(0,q.useFragment)(P,e),{animatePinned:m}=et(u.issueType?.id||null),p=(u.issueFieldValues?.nodes||[]).map(e=>e),[g,y]=(0,U.useState)(p.filter(e=>e?.field!=null));(0,U.useEffect)(()=>{y((u.issueFieldValues?.nodes||[]).map(e=>e).filter(e=>e?.field!=null))},[u.id]);let h=(0,U.useCallback)(e=>{o(a=>({...a,[e]:!0}))},[]),f=(0,U.useCallback)((e,a,l)=>{let c=(0,E.HZ)(a),i=(0,H.vl)(c,l);""===l||null===l?er({mutationFn:eP,input:{issueId:u.id,fieldId:e},environment:s,action:"delete",fieldId:e,fieldType:c,inProjectsPage:n,reportUsage:d,onCompleted:()=>{o(a=>({...a,[e]:!1})),t()},onError:()=>h(e)}):er({mutationFn:eV,input:{issueId:u.id,issueField:{fieldId:e,...(0,E.Ft)(c,i)}},environment:s,action:"update",fieldId:e,fieldType:c,inProjectsPage:n,reportUsage:d,onCompleted:()=>{o(a=>({...a,[e]:!1})),t()},onError:()=>h(e)})},[u.id,s,h,n,d,t]);(0,U.useMemo)(()=>{let{addedFields:e,updatedFields:a,removedFields:l}=(0,H.kO)(g,p);if(0===e.length&&0===a.length&&0===l.length)return;let n=e.length>0,t=g.map(e=>{let t=a.find(a=>a?.field?.id===e?.field?.id);if(t)return(0,H.zo)(t,e)||(n=!0),t;if(l.some(a=>a?.field?.id===e?.field?.id)){let a=(0,H.uV)(e);return(0,H.zo)(a,e)||(n=!0),a}return e}).filter(e=>null!=e);n&&y([...t,...e])},[p,g]);let k=(0,U.useMemo)(()=>{if(!c||0===c.length)return g;let e=c.map(e=>g.find(a=>a.field.id===e.field.id)||e),a=e.map(e=>e.field.id);return[...e,...g.filter(e=>!a.includes(e.field.id))]},[c,g]);(0,U.useEffect)(()=>{let e=k.map(e=>e?.field?.name||"").filter(e=>e);a.length===e.length&&a.every((a,l)=>a===e[l])||l(e)},[a,k,l]);let b=k.map(e=>e?.field?.id).filter(e=>!!e),z=new Set(c?.map(e=>e.field.id).filter(e=>!!e)??[]),F=k.map(e=>{if(!e||!e.field||!e.field.id||void 0===e.field||void 0===e.field.dataType)return null;let a=c?.some(a=>a.field.id===e.field.id)||!1,l=i||!u.viewerCanSetFields,n=es(e.field.id,z,b);return function({errorPresent:e,setErrorPresent:a,fieldValue:l,...n}){if(!l.field)return null;let t=l.field.id,c="SINGLE_SELECT"===l.field.dataType,i=ex({fieldValue:l,...n},e[t]);return(0,L.jsxs)(U.Fragment,{children:[i,c&&e[t]&&(0,L.jsx)(eM,{onClose:()=>a(t,!1),message:X.k.mutationErrorMessage})]},l.field.name)}({errorPresent:r,setErrorPresent:(e,a)=>o(l=>({...l,[e]:a})),fieldValue:e,readonly:l,onCommit:(a,l)=>f(a,e.field.dataType,l),className:ei(a,m,n)})}).filter(Boolean);return(0,A.G7)("issue_fields_compact_view")?(0,L.jsx)(W.w,{sectionHeader:(0,L.jsx)(B.A,{as:"h3",className:ea,children:"Fields"}),children:F.length>0?(0,L.jsx)(L.Fragment,{children:F}):(0,L.jsx)("span",{className:el,children:X.k.noPinnedFieldsMessage(u.issueType?.name)})}):(0,L.jsx)(L.Fragment,{children:F})}eE.hash="42fa492eab38e97eb091a4309e4f4202";try{eR.displayName||(eR.displayName="CreateIssueFieldsSection")}catch{}try{eD.displayName||(eD.displayName="EditIssueFieldsSection")}catch{}try{eO.displayName||(eO.displayName="IssueFields")}catch{}},21798:(e,a,l)=>{l.d(a,{X:()=>d});var n=l(74848),t=l(38621),c=l(21373),i=l(11196),s=l(12683),r=l(34164),o=l(41848);let d=({ref:e,id:a,title:l,buttonProps:d,headingProps:{as:u="h3",...m}={},readonly:p,errorPresent:g,...y})=>{let h=p?{display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center",width:"100%",pb:"8px",...y.sx}:{width:"100%",position:"relative",display:"flex",alignItems:"center",...y.sx},f=(0,n.jsxs)(s.az,{sx:h,children:[(0,n.jsx)(s.DZ,{id:a,as:u,sx:{position:p?"relative":"absolute",...m},className:"SectionHeader-module__SectionHeaderTitle--TxSJL",children:l}),!p&&(0,n.jsxs)(c.Q,{ref:e,...d,variant:"invisible",size:"small",trailingAction:()=>g?(0,n.jsx)(t.AlertIcon,{className:"fgColor-danger"}):(0,n.jsx)(t.GearIcon,{}),block:!0,className:"SectionHeader-module__editButton--pMar1","aria-describedby":g?`error-message-${a}`:void 0,children:[(0,n.jsx)("span",{className:(0,r.$)("sr-only","SectionHeader-module__screenReaderText--O1ZJ0"),children:o.k.editFieldValueLabel(l)}),g&&(0,n.jsx)("span",{id:`error-message-${a}`,className:"sr-only",children:o.k.errorUpdatingIssueField})]})]});return g&&!p?(0,n.jsx)(i.m,{text:o.k.errorUpdatingIssueField,children:f}):f};d.displayName="SectionHeader"},22829:(e,a,l)=>{l.d(a,{f:()=>m,i:()=>d});var n=l(74848),t=l(69599),c=l(86391),i=l(96540),s=l(19918),r=l(66793),o=l(49275);let d="UNSET",u=[];function m({activeIssueType:e,issueTypes:a=u,issueTypeToken:l,noTypeItem:m,showUnset:p=!1,anchorElement:g,insidePortal:y,isLoading:h,nested:f,onSelectionChange:k,title:b=s.k.typesHeader,triggerOpen:z=!0,width:F="large",onOpen:I}){let[S,C]=(0,i.useState)(""),v=(0,i.useMemo)(()=>{let e=l&&'"'===l[0]&&'"'===l[l.length-1]?l.slice(1,-1):l;return a.find(a=>a.name===e)},[a,l]),x=(0,i.useMemo)(()=>{let e=a.slice().sort((e,a)=>e.name.localeCompare(a.name));return(m?e.unshift(o.v.noTypeData):p&&e.unshift({id:d,name:"No issue type",isEnabled:!0,description:"",color:"GRAY"}),S)?e.filter(e=>e.name.toLowerCase().indexOf(S.toLowerCase())>=0):e},[a,S,p,m]),j=(0,i.useCallback)(e=>{C(e)},[]),M=(0,i.useCallback)(e=>e.id,[]),T=(0,i.useCallback)(e=>({id:e.id,text:e.name,description:e.description??"",descriptionVariant:"block",leadingVisual:(0,r.d)(e.color),source:e}),[]),_=(0,i.useMemo)(()=>m?.selected?[o.v.noTypeData]:e?[e]:v?[v]:[],[e,v,m]),N=(0,i.useRef)(null),K=(0,i.useMemo)(()=>0===x.length,[x.length]),L=(0,t.G7)("issues_react_select_panel_fullscreen_on_narrow");return(0,n.jsx)(c.O,{loading:h,items:x,initialSelectedItems:_,filterItems:j,title:b,getItemKey:M,convertToItemProps:T,placeholderText:"Filter types",selectionVariant:"single",onSelectionChange:k,onOpen:I,renderAnchor:e=>g(e),insidePortal:y,height:"large",width:F,nested:f,resultListAriaLabel:"Issue Type results",triggerOpen:z,keybindingCommandId:"item-pickers:open-issue-type",selectPanelRef:N,improvedNoMatchAccessibility:K,noMatchMessage:K?{title:"No issue types were found",variant:"empty",body:"Try searching with a different query for results."}:void 0,responsiveOnNarrow:L})}try{m.displayName||(m.displayName="IssueTypePickerBase")}catch{}},23490:(e,a,l)=>{l.d(a,{iF:()=>M});var n,t,c,i,s,r,o,d=l(74848);let u={kind:"InlineDataFragment",name:"IssueFieldPickerIssueField"};u.hash="31d854fea63dea594c796cfb9821b91c";let m={argumentDefinitions:[{defaultValue:null,kind:"LocalArgument",name:"issueFieldsPageSize"}],kind:"Fragment",metadata:{connection:[{count:"issueFieldsPageSize",cursor:null,direction:"forward",path:["issueFields"]}]},name:"IssueFieldPickerPaginated",selections:[{alias:"issueFields",args:null,concreteType:"IssueFieldsConnection",kind:"LinkedField",name:"__Organization_issueFields_connection",plural:!1,selections:[{alias:null,args:null,concreteType:"IssueFieldsEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[{kind:"InlineDataFragmentSpread",name:"IssueFieldPickerIssueField",selections:[{kind:"InlineFragment",selections:n=[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"databaseId",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"dataType",storageKey:null}],type:"IssueFieldText",abstractKey:null},{kind:"InlineFragment",selections:n,type:"IssueFieldSingleSelect",abstractKey:null},{kind:"InlineFragment",selections:n,type:"IssueFieldDate",abstractKey:null},{kind:"InlineFragment",selections:n,type:"IssueFieldNumber",abstractKey:null}],args:null,argumentDefinitions:[]},{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"cursor",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"PageInfo",kind:"LinkedField",name:"pageInfo",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"endCursor",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasNextPage",storageKey:null}],storageKey:null}],storageKey:null}],type:"Organization",abstractKey:null};m.hash="8a6dd6e5fd4fe5d70ead8019af2bbe61";let p={fragment:{argumentDefinitions:[t={defaultValue:null,kind:"LocalArgument",name:"issueFieldsPageSize"},c={defaultValue:null,kind:"LocalArgument",name:"name"}],kind:"Fragment",metadata:null,name:"IssueFieldPickerQuery",selections:[{alias:null,args:i=[{kind:"Variable",name:"login",variableName:"name"}],concreteType:"Organization",kind:"LinkedField",name:"organization",plural:!1,selections:[{args:[{kind:"Variable",name:"issueFieldsPageSize",variableName:"issueFieldsPageSize"}],kind:"FragmentSpread",name:"IssueFieldPickerPaginated"}],storageKey:null}],type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:[c,t],kind:"Operation",name:"IssueFieldPickerQuery",selections:[{alias:null,args:i,concreteType:"Organization",kind:"LinkedField",name:"organization",plural:!1,selections:[{alias:null,args:s=[{kind:"Variable",name:"first",variableName:"issueFieldsPageSize"}],concreteType:"IssueFieldsConnection",kind:"LinkedField",name:"issueFields",plural:!1,selections:[{alias:null,args:null,concreteType:"IssueFieldsEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},{kind:"TypeDiscriminator",abstractKey:"__isIssueFields"},{kind:"InlineFragment",selections:o=[r={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"databaseId",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"dataType",storageKey:null}],type:"IssueFieldText",abstractKey:null},{kind:"InlineFragment",selections:o,type:"IssueFieldSingleSelect",abstractKey:null},{kind:"InlineFragment",selections:o,type:"IssueFieldDate",abstractKey:null},{kind:"InlineFragment",selections:o,type:"IssueFieldNumber",abstractKey:null},{kind:"InlineFragment",selections:[r],type:"Node",abstractKey:"__isNode"}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"cursor",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"PageInfo",kind:"LinkedField",name:"pageInfo",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"endCursor",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasNextPage",storageKey:null}],storageKey:null}],storageKey:null},{alias:null,args:s,filters:null,handle:"connection",key:"Organization_issueFields",kind:"LinkedHandle",name:"issueFields"},r],storageKey:null}]},params:{id:"dadedc2e94c39085c4fdd2fe515621a9",metadata:{},name:"IssueFieldPickerQuery",operationKind:"query",text:null}};p.hash="9a4fe5cc933711b34b06c8deb4838e9d";var g=l(18815),y=l(19918),h=l(86391),f=l(81289),k=l(81709),b=l(30721),z=l(82518),F=l(26607),I=l(84268),S=l(96540),C=l(18312),v=l(14709);let x=(0,z.Xl)(),j=(0,d.jsxs)("div",{className:"IssueFieldPicker-module__footer--mYJzU",children:[(0,d.jsx)(F.A,{variant:"success",children:"Preview"}),(0,d.jsx)(I.A,{href:x?"https://github-grid.enterprise.slack.com/archives/C0969KWTU01":"https://github.com/orgs/community/discussions/175366",children:"Share feedback"})]});function M({anchorElement:e,...a}){return(0,d.jsx)(f.y,{anchorElement:a=>e(a),createChild:()=>(0,d.jsx)(T,{anchorElement:(a,l)=>e(a,l),...a}),insidePortal:a.insidePortal,keybindingCommandId:"item-pickers:open-fields"})}function T({owner:e,anchorElement:a,...l}){let n=(0,C.useRelayEnvironment)(),[t,c]=(0,S.useState)(!0),[i,s]=(0,S.useState)(0),[r,o]=(0,S.useState)(!1),[u,m]=(0,S.useState)(null);(0,S.useEffect)(()=>{(0,b.SD)({environment:n,query:p,variables:{name:e,issueFieldsPageSize:g.AE}}).subscribe({next:e=>{m(e.organization??null),c(!1),o(!1)},error:()=>{o(!0),c(!1)}})},[n,i,e]);let{createFallbackComponent:h}=(0,k.j)({errorMessage:y.k.cantEditItems("fields"),anchorElement:a,open:!0});return r?h(()=>s(e=>e+1)):(0,d.jsx)(_,{owner:e,fields:u,isLoading:t,anchorElement:a,...l})}function _({title:e=y.k.fieldsHeader,width:a="medium",fields:l,fieldsSet:n,onSelectionChange:t,insidePortal:c,anchorElement:i,isLoading:s,nested:r,notice:o}){let[p,g]=(0,S.useState)(""),f=(0,C.useFragment)(m,l),k=(0,S.useMemo)(()=>(f?.issueFields?.edges?.flatMap(e=>e?.node?[(0,C.readInlineData)(u,e.node)]:[])||[]).filter(e=>!!e&&(!(n.length>0)||!e.name||-1===n.indexOf(e.name))),[f,n]),b=(0,S.useMemo)(()=>p?k.filter(e=>e.name&&e.name.toLowerCase().indexOf(p.toLowerCase())>=0):k,[k,p]),z=(0,S.useCallback)(e=>{g(e)},[]),F=(0,S.useCallback)(e=>e.id||"",[]),I=(0,S.useId)(),x=(0,S.useCallback)(e=>({id:e.id||I,text:e.name,description:e.description||"",descriptionVariant:"block",leadingVisual:(0,v.N)(e.dataType||"TEXT"),source:e}),[I]),M=(0,S.useRef)(null),T=(0,S.useMemo)(()=>0===b.length,[b.length]);return(0,d.jsx)(h.O,{loading:s,items:b,initialSelectedItems:[],filterItems:z,title:e,getItemKey:F,convertToItemProps:x,placeholderText:"Filter fields",selectionVariant:"single",onSelectionChange:t,renderAnchor:e=>i(e,M),insidePortal:c,height:"large",width:a,nested:r,resultListAriaLabel:"Issue Fields results",triggerOpen:!0,secondaryAction:j,notice:o,selectPanelRef:M,keybindingCommandId:"item-pickers:open-fields",improvedNoMatchAccessibility:T,noMatchMessage:T?{title:"No issue fields were found",variant:"empty",body:"Try searching with a different query for results."}:void 0})}try{j.displayName||(j.displayName="SECONDARY_ACTION")}catch{}try{M.displayName||(M.displayName="IssueFieldPicker")}catch{}try{T.displayName||(T.displayName="IssueFieldPickerFetcher")}catch{}try{_.displayName||(_.displayName="ItemPickerWrapper")}catch{}},24453:(e,a,l)=>{l.d(a,{O:()=>t});var n=l(59403);let t=(e,a)=>(0,n.dt)(e,a)>n.IP},24550:(e,a,l)=>{l.d(a,{t:()=>u});var n=l(74848),t=l(38621),c=l(84268),i=l(12683),s=l(10095),r=l(96540),o=l(99223),d=l(34164);function u(e){let{contributingFileUrl:a,securityPolicyUrl:l,codeOfConductFileUrl:t,supportFileUrl:c}=e;return!(0,o.k)()&&(a||l||t||c)?(0,n.jsx)(m,{...e}):null}function m({contributingFileUrl:e,securityPolicyUrl:a,codeOfConductFileUrl:l,supportFileUrl:o,sx:u,className:m}){let p=(0,r.useMemo)(()=>{let t=[];if(e&&t.push((0,n.jsx)(c.A,{inline:!0,href:e,children:"contributing guidelines"})),a&&t.push((0,n.jsx)(c.A,{inline:!0,href:a,children:"security policy"})),l&&t.push((0,n.jsx)(c.A,{inline:!0,href:l,children:"code of conduct"})),o&&t.push((0,n.jsx)(c.A,{inline:!0,href:o,children:"Support"})),1===t.length)return(0,n.jsx)(n.Fragment,{children:t[0]});let i=t.slice(0,-1),s=t[t.length-1];return(0,n.jsxs)(n.Fragment,{children:[i.map((e,a)=>(0,n.jsxs)(r.Fragment,{children:[e,(0,n.jsx)("span",{children:a!==i.length-1?", ":" "})]},a)),(0,n.jsxs)("span",{children:["and ",s]})]})},[e,a,l,o]);return(0,n.jsxs)(i.az,{"data-testid":"contributor-footer",sx:u,className:(0,d.$)("ContributorFooter-module__ContributorFooterContainer--lDUwn",m),children:[(0,n.jsx)(s.A,{icon:t.InfoIcon}),(0,n.jsxs)("div",{"data-testid":"contributor-footer-text",children:[(0,n.jsx)("span",{children:"Remember, contributions to this repository should follow its "}),(0,n.jsx)("span",{children:p}),(0,n.jsx)("span",{children:"."})]})]})}try{u.displayName||(u.displayName="ContributorFooter")}catch{}try{m.displayName||(m.displayName="ContributorFooterContent")}catch{}},25820:(e,a,l)=>{l.d(a,{w:()=>K,D:()=>M});var n=l(74848),t=l(67126),c=l(74563),i=l(19918),s=l(76027),r=l(38143),o=l(81709),d=l(5643),u=l(31993),m=l(97665),p=l(96540),g=l(96379),y=l(47544);async function h({owner:e,repo:a,query:l,count:n}){let t={owner:e,repo:a};l&&(t.query=l),n&&(t.count=n);let c=(0,y.JF)("projects",t),i=await (0,g.lS)(c);return await i.json()}var f=l(73049),k=l(43258),b=l(46747),z=l(38621),F=l(34267),I=l(83494),S=l(57019);let C={groupId:"recent",header:{title:"Recent",variant:"filled"}},v={groupId:"repository",header:{title:"Repository",variant:"filled"}},x={groupId:"organization",header:{title:"Organization",variant:"filled"}},j={groupId:"selected"};function M({owner:e,repo:a,query:l,count:n}){return(0,u.j)({queryKey:["item_picker","projects",{owner:e,repo:a,query:l,count:n}],queryFn:async()=>{var t;let c=await h({owner:e,repo:a,query:l,count:n});return{repositoryId:(t=(0,f.A)(c).data).repository.id,repositoryProjects:t.repository.projectsV2.nodes,recentRepositoryProjects:t.repository.recentProjects.edges.map(e=>e.node),ownerProjects:t.repository.owner.projectsV2.edges.map(e=>e.node),recentOwnerProjects:t.repository.owner.recentProjects.edges.map(e=>e.node)}}})}let T=[];function _({projectsData:e,selectedProjects:a=T,onSave:l,anchorElement:o,insidePortal:u,owner:g,repo:y,isLoading:h=!1,triggerOpen:f=!1,readonly:I,title:_,getSelectedProjects:N,pickerId:K}){let[L,w]=(0,p.useState)(e),[P,A]=(0,p.useState)(!1),[E,V]=(0,p.useState)(!1),R=(0,m.jE)(),{addToast:D}=(0,k.Y6)(),[O,B]=(0,p.useState)(""),[$,U]=(0,p.useState)(f),q=(0,p.useCallback)(async e=>{A(!0);try{let a=await R.fetchQuery(M({repo:y,owner:g,query:e}));w(a),A(!1)}catch{A(!1),D({type:"error",message:t.S.couldNotSearchProjects})}},[g,R,y]),H=(0,b.d)(e=>q(e),r.t.pickerDebounceTime);(0,p.useEffect)(()=>(0===O.length?w(e):H(O),()=>{A(!1)}),[H,O,e]);let W=(0,p.useMemo)(()=>(L?.recentOwnerProjects||[]).filter(e=>!1===e.closed),[L]),G=(0,p.useMemo)(()=>(L?.repositoryProjects||[]).filter(e=>!1===e.closed),[L]),Q=(0,p.useMemo)(()=>(L?.ownerProjects||[]).filter(e=>!1===e.closed),[L]),Y=(0,p.useMemo)(()=>N?N([...W,...G,...Q]):a,[N,a,Q,W,G]),[X,Z]=(0,p.useState)(()=>Y.map(e=>e.id));(0,p.useEffect)(()=>{Z(Y.map(e=>e.id))},[Y]);let J=(0,p.useCallback)((e,a)=>{let{title:l,id:n}=a,t=a.hasReachedItemsLimit&&!Y.some(e=>e.id===n)?"danger":"default",c=a.hasReachedItemsLimit?"block":"inline";return{text:l,description:a.hasReachedItemsLimit?`${i.k.projectItemsLimitReached}`:void 0,descriptionVariant:c,id:n,groupId:e,selected:X.includes(n),disabled:I||!a.viewerCanUpdate,leadingVisual:z.TableIcon,variant:t}},[Y,X,I]),ee=(0,p.useMemo)(()=>{let e=Y.map(e=>e.id);return{selected:Y,recent:W.filter(a=>!e.includes(a.id)),repository:G.filter(a=>!e.includes(a.id)),organization:Q.filter(a=>!e.includes(a.id))}},[Y,W,G,Q]),ea=(0,p.useMemo)(()=>Object.keys(ee).flatMap(e=>{let a=ee[e];return a?a.map(a=>J(e,a)):[]}),[ee,J]),el=(0,p.useMemo)(()=>ea.filter(e=>e.id&&X.includes(e.id.toString())),[X,ea]),en=(0,p.useMemo)(()=>{if(ea.length<1)return[];if(""===O)return ea;let e=ea.filter(e=>(e.text||"").toLowerCase().indexOf(O.trim().toLowerCase())>=0);return e.length<1?[]:e},[O,ea]),et=(0,p.useMemo)(()=>[Y.length>0?j:null,W.length>0?C:null,G.length>0?v:null,Q.length>0?x:null].filter(e=>null!==e),[Y.length,W.length,G.length,Q.length]),ec=(0,p.useCallback)(e=>{let a=el.filter(a=>!e.includes(a)).map(e=>e.id),l=X;l=[...l,...e.filter(e=>void 0!==e.id).map(e=>e.id)],a.length>0&&(l=l.filter(e=>!a.includes(e))),Z([...new Set(l)])},[Z,el,X]),ei=(0,p.useCallback)(()=>{U(!1),B(""),(X.length!==a.length||X.some(e=>!a.some(a=>e===a.id)))&&Z(a.map(e=>e.id?e.id.toString():""))},[a,X]),{updateOpenState:es}=(0,F.t)(),er=(0,p.useCallback)((e,a)=>{if(!e&&document.activeElement instanceof HTMLElement&&document.activeElement?.blur(),"cancel"!==a&&(U(e),es(K,e),!e)){B(""),el.filter(e=>"danger"===e.variant).length>0&&V(!0);let e=el.filter(e=>"danger"!==e.variant).map(e=>e.id).filter(e=>void 0!==e);Z(e);let a=Object.keys(ee).flatMap(e=>ee[e]||[]),n=new Map;for(let e of a)n.set(e.id,e);let t=[...new Set(e)].map(e=>n.get(e)).filter(e=>void 0!==e);l&&l(t)}},[es,K,el,l,ee]),eo=(0,p.useCallback)(()=>{V(!1)},[V]);return(0,S._)([" "],e=>{if($){let a=document.querySelector(s.Z.activePickerOption(c.B.itemPickerRootId));if(a){let l=a.getAttribute("data-id"),n=[...en.values()].find(e=>e.id===l);if(n&&n.id){if(n.disabled)return;e.preventDefault(),e.stopPropagation();let a=n.id.toString();Z(e=>{let l=[...e],n=l.indexOf(a);return n>-1?l.splice(n,1):l.push(a),l})}}}},{triggerWhenInputElementHasFocus:!0,triggerWhenPortalIsActive:!0}),(0,n.jsx)(d.$,{anchorElement:o,title:_,items:en,selectedProjects:el,groups:et,onOpenChange:er,isDialogOpen:E,handleDialogClose:eo,insidePortal:u,onCancel:ei,onSelectionChange:ec,triggerOpen:$,isLoading:h||P,onFilterChange:B,filterValue:O})}function N({repo:e,owner:a,...l}){let[t,c]=(0,p.useState)(!0),[s,r]=(0,p.useState)(0),[d,u]=(0,p.useState)(!1),[g,y]=(0,p.useState)(null),h=(0,m.jE)();(0,p.useEffect)(()=>{(async()=>{try{let l=await h.fetchQuery(M({owner:a,repo:e,query:""}));y(l),c(!1),u(!1)}catch{u(!0),c(!1)}})()},[s,a,h,e]);let f=(0,p.useRef)(null),{createFallbackComponent:k}=(0,o.j)({errorMessage:i.k.cantEditItems("projects"),anchorElement:e=>l.anchorElement(e,f),open:!0});return d?k(()=>r(e=>e+1)):(0,n.jsx)(_,{projectsData:g,owner:a,repo:e,isLoading:t,...l})}function K({anchorElement:e,triggerOpen:a,...l}){let[t,c]=(0,p.useState)(a),i=(0,p.useCallback)(()=>{t||c(!0)},[t]);return t?(0,n.jsx)(N,{triggerOpen:!0,anchorElement:a=>e(a),...l,pickerId:"list-header-projects-picker"}):(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(I.ak,{commands:{"item-pickers:open-projects":i}}),e({onClick:()=>{c(!0)},onKeyPress:e=>{("Enter"===e.key||" "===e.key)&&(e.preventDefault(),c(!0))}})]})}try{_.displayName||(_.displayName="SelectPanelWrapper")}catch{}try{N.displayName||(N.displayName="ItemPickerFetcher")}catch{}try{K.displayName||(K.displayName="ProjectPicker")}catch{}},25983:(e,a,l)=>{l.d(a,{n:()=>d});var n=l(74848),t=l(16522),c=l(84268),i=l(12683),s=l(96540),r=l(11196),o=l(34164);let d=e=>{let a,l,d,m,p,g,y,h,f,k=(0,t.c)(23),{name:b,color:z,href:F,getTooltipText:I,size:S,sx:C,className:v}=e,x=(0,s.useRef)(null),[j,M]=(0,s.useState)(!1);k[0]===Symbol.for("react.memo_cache_sentinel")?(a=()=>M(u(x.current)),l=[M,x],k[0]=a,k[1]=l):(a=k[0],l=k[1]),(0,s.useEffect)(a,l),k[2]!==v?(d=(0,o.$)("IssueTypeToken-module__token--QZUId",v),k[2]=v,k[3]=d):d=k[3],k[4]!==b?(m=(0,n.jsx)("span",{className:"IssueTypeToken-module__tokenText--jTqtr",children:b}),k[4]=b,k[5]=m):m=k[5],k[6]!==z||k[7]!==C||k[8]!==d||k[9]!==m?(p=(0,n.jsx)(i.ou,{className:d,"data-color":z,ref:x,sx:C,text:m}),k[6]=z,k[7]=C,k[8]=d,k[9]=m,k[10]=p):p=k[10],k[11]!==F||k[12]!==p?(g=(0,n.jsx)(c.A,{href:F,children:p}),k[11]=F,k[12]=p,k[13]=g):g=k[13];let T=g;k[14]!==I||k[15]!==j?(y=I(j),k[14]=I,k[15]=j,k[16]=y):y=k[16];let _=y;return k[17]!==T||k[18]!==_?(h=_?(0,n.jsx)(r.m,{text:_,children:T}):T,k[17]=T,k[18]=_,k[19]=h):h=k[19],k[20]!==S||k[21]!==h?(f=(0,n.jsx)("div",{className:"IssueTypeToken-module__issueTypeTokenContainer--u7mnl","data-size":S,children:h}),k[20]=S,k[21]=h,k[22]=f):f=k[22],f},u=e=>!!e&&!!e.firstElementChild&&e.firstElementChild.scrollWidth>e.firstElementChild.clientWidth;try{d.displayName||(d.displayName="IssueTypeToken")}catch{}},26052:(e,a,l)=>{l.d(a,{v:()=>s});var n=l(74848),t=l(16522),c=l(96540),i=l(68245);function s(e){let a,l=(0,t.c)(7),{login:s,profileName:r,isAgent:o}=e,d=(0,c.use)(i._);if(o){let e;return l[0]!==s?(e=(0,n.jsx)(n.Fragment,{children:s}),l[0]=s,l[1]=e):e=l[1],e}if("name_handle"===d&&r?.trim()){let e;return l[2]!==s||l[3]!==r?(e=(0,n.jsxs)(n.Fragment,{children:[r," (",s,")"]}),l[2]=s,l[3]=r,l[4]=e):e=l[4],e}return l[5]!==s?(a=(0,n.jsx)(n.Fragment,{children:s}),l[5]=s,l[6]=a):a=l[6],a}try{s.displayName||(s.displayName="ProfileReference")}catch{}},29455:(e,a,l)=>{l.d(a,{A:()=>n});let n={issueFieldTextInput:"IssueFieldTextToken-module__issueFieldTextInput--_YT6n",issueFieldTextTextarea:"IssueFieldTextToken-module__issueFieldTextTextarea--zoeSa",issuesFieldTextInputContainer:"IssueFieldTextToken-module__issuesFieldTextInputContainer--BYChH",issuesFieldTextError:"IssueFieldTextToken-module__issuesFieldTextError--AZz7r",issuesFieldToolbar:"IssueFieldTextToken-module__issuesFieldToolbar--gb7A0",issuesFieldToolbarActions:"IssueFieldTextToken-module__issuesFieldToolbarActions--gYxXu",actionButton:"IssueFieldTextToken-module__actionButton--YsG8y",issuesFieldText:"IssueFieldTextToken-module__issuesFieldText--WUTvu",noValueContainer:"IssueFieldTextToken-module__noValueContainer--GU_ur"}},31877:(e,a,l)=>{l.d(a,{Ir:()=>S,_g:()=>C,nH:()=>b});var n=l(74848),t=l(84363),c=l(24453),i=l(91253),s=l(19918),r=l(49275),o=l(38143),d=l(81289),u=l(81709),m=l(97665),p=l(96540),g=l(96379),y=l(47544);async function h({owner:e,repo:a,query:l,first:n,number:t,loginNames:c,capabilities:i}){let s={owner:e,repo:a};l&&(s.query=l),void 0!==n&&(s.first=n),void 0!==t&&(s.number=t),c&&(s.loginNames=c),i&&i.length>0&&(s.capabilities=i.join(","));let r=(0,y.JF)("assignees",s),o=await (0,g.lS)(r);return await o.json()}var f=l(73049),k=l(11770);async function b(e,{owner:a,repo:l,query:n,first:t,number:c,loginNames:i,capabilities:s}){let r;r=void 0!==t?t:void 0!==i?i.length:void 0;let o=void 0!==i?i.join(","):void 0;return await e.fetchQuery({queryKey:["item_picker","assignees",{owner:a,repo:l,query:n,first:r,number:c,loginNames:o,capabilities:s}],queryFn:async()=>{var e;let t,i,d=await h({owner:a,repo:l,query:n,first:r,number:c,loginNames:o,capabilities:s});return e=(0,f.A)(d).data,i=[],e.repository.suggestedActors?(i=e.repository.suggestedActors.nodes,t=e.repository.suggestedActors.totalCount):e.repository.assignableUsers?(i=e.repository.assignableUsers.nodes,t=e.repository.assignableUsers.totalCount):e.repository.issueOrPullRequest?.suggestedActors&&(i=e.repository.issueOrPullRequest.suggestedActors.nodes),{assignees:i,repositoryId:e.repository.id,totalCount:t}}})}function z({repo:e,owner:a,number:l,assignees:t,suggestions:c,viewer:r,...o}){let[d,g]=(0,p.useState)(!c||0===c.length),[y,h]=(0,p.useState)(0),[f,k]=(0,p.useState)(!1),[z,F]=(0,p.useState)(null),I=(0,m.jE)(),S=(c?.length||0)>0;(0,p.useEffect)(()=>{S||(async()=>{try{let n=await b(I,{owner:a,repo:e,query:"",number:l,first:10});F(n),g(!1),k(!1)}catch{k(!0),g(!1)}})()},[y,a,I,e,l,S]);let C=(0,p.useRef)(null),{createFallbackComponent:v}=(0,u.j)({errorMessage:s.k.cantEditItems("assignees"),anchorElement:e=>o.anchorElement(e,C),open:!0}),x=(0,p.useCallback)(async n=>{try{g(!0);let t=await b(I,{owner:a,repo:e,query:n,number:l,first:10});return g(!1),k(!1),t.assignees}catch{return g(!1),k(!0),[]}},[I,a,e,l]),j=c||z?.assignees||[];return f?v(()=>h(e=>e+1)):(0,n.jsx)(i.l,{...o,assignees:t,suggestions:j,isLoading:d,searchAssignees:x,viewer:r})}function F({repo:e,owner:a,assignees:l,assigneeTokens:d,suggestions:g,includeAssignableBots:y,includeAuthorableBots:h,maximumAssignees:f,viewer:z,...F}){let[I,S]=(0,p.useState)(!1),[C,v]=(0,p.useState)(!1),[x,j]=(0,p.useState)(0),[M,T]=(0,p.useState)(null),[_,N]=(0,p.useState)(null),[K,L]=(0,p.useState)(null),w=(0,m.jE)(),P=(0,p.useMemo)(()=>(0,k.M)({includeAssignableBots:y,includeAuthorableBots:h}),[y,h]),A=d.length>0;(0,p.useEffect)(()=>{A&&(async()=>{try{S(!0);let l=await b(w,{owner:a,repo:e,query:"",loginNames:d,capabilities:P});T(l),S(!1),v(!1)}catch{S(!1),v(!0)}})()},[x,a,e,d,P,w,A]);let E=(0,p.useCallback)(async l=>{if(K&&K<=o.t.maximumSuggestedUsers&&_)return S(!1),(0,t.t)({items:[..._,...F.noAssigneeOption?[r.v.noAssigneeData]:[]],filter:l,key:e=>e.isAgent&&e.displayName||e.login||(F.noAssigneeOption?.source?.login??""),secondaryKey:e=>`${e.name}`});try{S(!0);let n=await b(w,{owner:a,repo:e,query:l,first:o.t.maximumSuggestedUsers,capabilities:P}),t=n.assignees;return n.totalCount&&""===l.trim()&&L(n.totalCount),F.noAssigneeOption&&(0,c.O)(l,F.noAssigneeOption?.source?.login??"")&&t.unshift({...r.v.noAssigneeData}),S(!1),v(!1),t}catch{return S(!1),v(!0),[]}},[K,_,F.noAssigneeOption,w,a,e,P]),V=(0,p.useMemo)(()=>{let e=[];return l&&l.length>0?e=l:d.length>0&&(e=M?.assignees||[]),F.noAssigneeOption?.selected&&e.unshift(r.v.noAssigneeData),e},[d.length,l,M?.assignees,F.noAssigneeOption?.selected]);(0,p.useEffect)(()=>{(async()=>{N(await E("")),S(!1)})()},[]);let R=(0,p.useMemo)(()=>{let e=(_||[]).find(e=>e.isCopilot),a=[...g||_||[]];return e&&!a.find(e=>e.isCopilot)&&a.unshift(e),a},[_,g]),D=(0,p.useRef)(null),{createFallbackComponent:O}=(0,u.j)({errorMessage:s.k.cantEditItems("assignees"),anchorElement:e=>F.anchorElement(e,D),open:!0});return C?O(()=>j(e=>e+1)):(0,n.jsx)(i.l,{...F,assignees:V,suggestions:R,isLoading:I,searchAssignees:E,maximumAssignees:f,viewer:z})}let I=e=>"author"===e?"item-pickers:open-author":"item-pickers:open-assignees";function S({repo:e,owner:a,number:l,anchorElement:t,readonly:c,assignees:i,suggestions:s,viewer:r,...o}){return(0,n.jsx)(d.y,{keybindingCommandId:I(o.name),anchorElement:(e,a)=>t(e,a),createChild:()=>(0,n.jsx)(z,{repo:e,owner:a,number:l,readonly:c,assignees:i,suggestions:s,viewer:r,triggerOpen:!0,anchorElement:t,...o}),insidePortal:o.insidePortal})}function C({anchorElement:e,...a}){return(0,n.jsx)(d.y,{anchorElement:(a,l)=>e(a,l),keybindingCommandId:I(a.name),createChild:()=>(0,n.jsx)(F,{anchorElement:e,triggerOpen:!0,...a}),insidePortal:a.insidePortal})}try{z.displayName||(z.displayName="ItemPickerFetcherForIssue")}catch{}try{F.displayName||(F.displayName="ItemPickerFetcherForRepository")}catch{}try{S.displayName||(S.displayName="AssigneePicker")}catch{}try{C.displayName||(C.displayName="AssigneeRepositoryPicker")}catch{}},35669:(e,a,l)=>{l.d(a,{H_:()=>s,mZ:()=>r});var n=l(56038),t=l(74731),c=l(81724),i=l(94007);function s({includeRepository:e,repository:a,templateFileName:l,title:c,body:s,assignees:r,labels:o,projects:d,milestone:u,type:m}){let p=new URLSearchParams(n.cg?.location?.search||"");return e&&a&&(p.set(t.t.queryParams.org,a.owner.login),p.set(t.t.queryParams.repo,a.name)),l&&p.set(t.t.queryParams.template,l),(0,i.E2)(p,t.t.queryParams.title,c,t.t.maxQueryLengthLimits.title),(0,i.E2)(p,t.t.queryParams.body,s,t.t.maxQueryLengthLimits.body),r&&(0,i.Hx)(p,t.t.queryParams.assignees,r?r.map(e=>e.login):void 0,t.t.maxQueryLengthLimits.assignees),o&&(0,i.Hx)(p,t.t.queryParams.labels,o.map(e=>e.name),t.t.maxQueryLengthLimits.assignees),d&&a?.owner&&(0,i.Hx)(p,t.t.queryParams.projects,d.map(e=>`${a.owner.login}/${e.number}`),t.t.maxQueryLengthLimits.assignees),u&&p.set(t.t.queryParams.milestone,u.title),m&&p.set(t.t.queryParams.type,m.name),p.toString()}function r(e,a,l){let n=e.get(t.t.queryParams.org)||l?.owner||null,s=e.get(t.t.queryParams.repo)||l?.repository||null,r=e.get(t.t.queryParams.template)||l?.template||null,o={...null!==n&&null!==s&&{repository:{owner:n,name:s}},...null!==r&&{templateFileName:r}},d=(0,i.Qg)(e,t.t.queryParams.title,t.t.maxQueryLengthLimits.title)||l?.title,u=(0,i.Qg)(e,t.t.queryParams.permalink,t.t.maxQueryLengthLimits.body);u=void 0===u?(0,i.Qg)(e,t.t.queryParams.body,t.t.maxQueryLengthLimits.body)||l?.body:decodeURIComponent(u);let m={...void 0!==d&&{title:d},...void 0!==u&&{body:u},...a};if(0===Object.keys(o).length)if(!(Object.keys(m).length>0))return;else o={templateFileName:c.rp};return{...o,...Object.keys(m).length>0&&{initialValues:m}}}},36285:(e,a,l)=>{l.d(a,{N:()=>d});let n={fragment:{argumentDefinitions:t=[{defaultValue:null,kind:"LocalArgument",name:"input"}],kind:"Fragment",metadata:null,name:"setLabelsForLabelableRelayMutation",selections:[{alias:null,args:c=[{kind:"Variable",name:"input",variableName:"input"}],concreteType:"SetLabelsForLabelablePayload",kind:"LinkedField",name:"setLabelsForLabelable",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"labelableRecord",plural:!1,selections:[{args:null,kind:"FragmentSpread",name:"LabelsSectionAssignedLabels"}],storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:t,kind:"Operation",name:"setLabelsForLabelableRelayMutation",selections:[{alias:null,args:c,concreteType:"SetLabelsForLabelablePayload",kind:"LinkedField",name:"setLabelsForLabelable",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"labelableRecord",plural:!1,selections:[i={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},{kind:"TypeDiscriminator",abstractKey:"__isLabelable"},{alias:null,args:s=[{kind:"Literal",name:"first",value:100},{kind:"Literal",name:"orderBy",value:{direction:"ASC",field:"NAME"}}],concreteType:"LabelConnection",kind:"LinkedField",name:"labels",plural:!1,selections:[{alias:null,args:null,concreteType:"LabelEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:"Label",kind:"LinkedField",name:"node",plural:!1,selections:[r={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"nameHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},i],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"cursor",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"PageInfo",kind:"LinkedField",name:"pageInfo",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"endCursor",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasNextPage",storageKey:null}],storageKey:null}],storageKey:'labels(first:100,orderBy:{"direction":"ASC","field":"NAME"})'},{alias:null,args:s,filters:["orderBy"],handle:"connection",key:"MetadataSectionAssignedLabels_labels",kind:"LinkedHandle",name:"labels"},{kind:"InlineFragment",selections:[r],type:"Node",abstractKey:"__isNode"}],storageKey:null}],storageKey:null}]},params:{id:"ce4e6c29b102596a5c1e65c7da660aef",metadata:{},name:"setLabelsForLabelableRelayMutation",operationKind:"mutation",text:null}};n.hash="f0eeb3a48d277042e107513ab4ed8f62";var t,c,i,s,r,o=l(18312);function d({environment:e,input:{labelableId:a,labels:l,labelableTypeName:t},clientMutationId:c,onError:i,onCompleted:s}){return(0,o.commitMutation)(e,{mutation:n,variables:{input:{labelableId:a,labelIds:l.map(e=>e.id),clientMutationId:c}},optimisticResponse:{setLabelsForLabelable:{labelableRecord:{__typename:t,__isNode:"true",__isLabelable:"true",id:a,labels:{pageInfo:{hasNextPage:!1,endCursor:null},edges:l.map(e=>({cursor:e.id,node:{__typename:"Label",id:e.id,name:e.name,nameHTML:e.nameHTML,color:e.color,url:e.url,description:e.description}}))}}}},onError:e=>i&&i(e),onCompleted:e=>s&&s(e)})}},37630:(e,a,l)=>{l.d(a,{_:()=>k});let n=(t=[{defaultValue:null,kind:"LocalArgument",name:"input"}],c=[{kind:"Variable",name:"input",variableName:"input"}],r={alias:null,args:null,kind:"ScalarField",name:"isEnabled",storageKey:null},o={alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null},d={alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null},u={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},p={kind:"InlineFragment",selections:m=[i={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},s={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"dataType",storageKey:null}],type:"IssueFieldText",abstractKey:null},{fragment:{argumentDefinitions:t,kind:"Fragment",metadata:null,name:"updateIssueIssueTypeSharedMutation",selections:[{alias:null,args:c,concreteType:"UpdateIssueIssueTypePayload",kind:"LinkedField",name:"updateIssueIssueType",plural:!1,selections:[{alias:null,args:null,concreteType:"Issue",kind:"LinkedField",name:"issue",plural:!1,selections:[{alias:null,args:null,concreteType:"IssueType",kind:"LinkedField",name:"issueType",plural:!1,selections:[i,s,r,o,d,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"pinnedFields",plural:!0,selections:[u,p,g={kind:"InlineFragment",selections:m,type:"IssueFieldSingleSelect",abstractKey:null},y={kind:"InlineFragment",selections:m,type:"IssueFieldDate",abstractKey:null},h={kind:"InlineFragment",selections:m,type:"IssueFieldNumber",abstractKey:null}],storageKey:null}],storageKey:null}],storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:t,kind:"Operation",name:"updateIssueIssueTypeSharedMutation",selections:[{alias:null,args:c,concreteType:"UpdateIssueIssueTypePayload",kind:"LinkedField",name:"updateIssueIssueType",plural:!1,selections:[{alias:null,args:null,concreteType:"Issue",kind:"LinkedField",name:"issue",plural:!1,selections:[{alias:null,args:null,concreteType:"IssueType",kind:"LinkedField",name:"issueType",plural:!1,selections:[i,s,r,o,d,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"pinnedFields",plural:!0,selections:[u,p,g,y,h,{kind:"InlineFragment",selections:[i],type:"Node",abstractKey:"__isNode"}],storageKey:null}],storageKey:null},i],storageKey:null}],storageKey:null}]},params:{id:"627a164ed640a00cd8e7321559a066d7",metadata:{},name:"updateIssueIssueTypeSharedMutation",operationKind:"mutation",text:null}});n.hash="76d56c8a5faaf2f8168ab652ced0278b";var t,c,i,s,r,o,d,u,m,p,g,y,h,f=l(18312);function k({environment:e,input:a,optimisticIssueType:l,onError:t,onCompleted:c}){return(0,f.commitMutation)(e,{mutation:n,variables:{input:a},optimisticResponse:void 0!==l?{updateIssueIssueType:{issue:{id:a.issueId,issueType:l?{id:l.id,name:l.name,description:l.description??null,color:l.color,isEnabled:l.isEnabled??!0,pinnedFields:(l.pinnedFields??[]).map(e=>"%other"===e.__typename?{__typename:"%other",__isNode:"%other",id:""}:{__typename:e.__typename,__isNode:e.__typename,id:e.id,name:e.name,dataType:e.dataType})}:null}}}:void 0,onError:e=>t&&t(e),onCompleted:e=>c&&c(e)})}},38102:(e,a,l)=>{let n;l.d(a,{AW:()=>k,fE:()=>f,ff:()=>S,N7:()=>b});var t=l(36301),c=l(77065),i=l(24212);function s(e){return(0,i.q)(e.stack||"").map(e=>({filename:e.file||"",function:String(e.methodName),lineno:(e.lineNumber||0).toString(),colno:(e.column||0).toString()}))}function r(e){let a=document.querySelectorAll(e);if(a.length>0)return a[a.length-1]}var o=l(99223),d=l(56038),u=l(94416),m=l(69599),p=l(88057);let g=!1,y=0,h=Date.now(),f=new Set(["AbortError","AuthSessionExpiredError","TypeError","RateLimitError","NotAcceptableError","SecFetchHeaderError","FetchNetworkError","NoiseError","ServiceUnavailableError"]),k=new Set(["Failed to fetch","NetworkError when attempting to fetch resource.","Unable to perform this operation. Please try again later."]);function b(e,a={}){if(!(e instanceof Error||"object"==typeof e&&null!==e&&"name"in e&&"string"==typeof e.name&&"message"in e&&"string"==typeof e.message)){if(function(e){if(!e||"boolean"==typeof e||"number"==typeof e)return!0;if("string"==typeof e){if(v.some(a=>e.includes(a)))return!0}else if("object"==typeof e&&"string"==typeof e.message&&"number"==typeof e.code)return!0;return!1}(e))return;let l=Error(),n=function(e){try{return JSON.stringify(e)}catch{return"Unserializable"}}(e);z(F({type:"UnknownError",value:`Unable to report error, due to a thrown non-Error type: ${typeof e}, with value ${n}`,stacktrace:s(l),catalogService:document.head?.querySelector('meta[name="current-catalog-service"]')?.content,catalogServiceHash:document.head?.querySelector('meta[name="current-catalog-service-hash"]')?.content},a));return}e.name&&("AbortError"===e.name||"RateLimitError"===e.name||"NotAcceptableError"===e.name||"SecFetchHeaderError"===e.name||"FetchNetworkError"===e.name||"NoiseError"===e.name||"ServiceUnavailableError"===e.name&&S()||f.has(e.name)&&k.has(e.message)||e.name.startsWith("ApiError")&&k.has(e.message))||z(F({type:e.name,value:e.message,stacktrace:s(e),catalogService:e.catalogService||document.head?.querySelector('meta[name="current-catalog-service"]')?.content,catalogServiceHash:e.catalogServiceHash||document.head?.querySelector('meta[name="current-catalog-service-hash"]')?.content},a))}async function z(e){if(!(!C&&!g&&y<10&&(n??(n=(0,c.TT)()&&function(){let e=d.cg?.history,a=d.cg?.location;if(!e||!a)return!1;try{return e.replaceState(e.state,document.title,a.href),!0}catch{return!1}}()))))return;let a=document.head?.querySelector('meta[name="browser-errors-url"]')?.content;if(a){if(e.error.stacktrace.some(e=>I.test(e.filename)||I.test(e.function))){g=!0;return}y++;try{await fetch(a,{method:"post",body:JSON.stringify({context:e,target:document.head?.querySelector('meta[name="ui-target"]')?.content||"full"})})}catch{}}}function F(e,a={}){let l,n={...a};return(0,m.G7)("failbot_report_error_react_apps_on_page")&&!n.reactAppName&&(n.reactAppName=function(e){let a=function(){let e=new Set;for(let[a,l]of x)for(let n of document.querySelectorAll(a))if(n instanceof HTMLElement){let a=n.getAttribute(l);a&&e.add(a)}return Array.from(e)}();if(!a||!a.length||!e||!e.length)return;let l=new Set;for(let n of e){if(!n||!n.filename)continue;let e=n.filename.split(/[\\/]/).pop();if(!e||l.has(e))continue;l.add(e);let t=a.find(a=>e.toLowerCase().includes(a.toLowerCase()));if(t)return t}}(e.stacktrace)),Object.assign({error:e,sanitizedUrl:`${window.location.protocol}//${window.location.host}${((l=r("meta[name=analytics-location]"))?l.content:window.location.pathname)+function(){let e=r("meta[name=analytics-location-query-strip]"),a="";e||(a=window.location.search);let l=r("meta[name=analytics-location-params]");for(let e of(l&&(a+=(a?"&":"?")+l.content),document.querySelectorAll("meta[name=analytics-param-rename]"))){let l=e.content.split(":",2);a=a.replace(RegExp(`(^|[?&])${l[0]}($|=)`,"g"),`$1${l[1]}$2`)}return a}()}`||window.location.href,readyState:document.readyState,referrer:(0,u.dR)(),timeSinceLoad:Math.round(Date.now()-h),user:function(){let e=document.head?.querySelector('meta[name="user-login"]')?.content;if(e)return e;let a=(0,t.y)();return`anonymous-${a}`}()||void 0,actorId:document.head?.querySelector('meta[name="octolytics-actor-id"]')?.content,bundler:o.v,ui:"vite-tss"===o.v,release:document.head?.querySelector('meta[name="release"]')?.content,pastRequestIds:(0,p.xA)()},n)}let I=/(chrome|moz|safari)-extension:\/\//;function S(){return!document.head?.querySelector('meta[name="user-login"]')?.content}let C=!1;d.cg?.addEventListener("pageshow",()=>C=!1),d.cg?.addEventListener("pagehide",()=>C=!0),"function"==typeof BroadcastChannel&&new BroadcastChannel("shared-worker-error").addEventListener("message",e=>{b(e.data.error)});let v=["Object Not Found Matching Id","Not implemented on this platform","provider because it's not your default extension"],x=[["react-app","app-name"],["react-partial","partial-name"]]},38759:(e,a,l)=>{l.d(a,{EV:()=>m,wT:()=>p});let n={kind:"InlineDataFragment",name:"useHandleTemplateChangeIssueTemplate"};n.hash="f40f14b9fc5e68c991814566f1700581";let t={kind:"InlineDataFragment",name:"useHandleTemplateChangeIssueForm"};t.hash="2b91a8d5f416e7948a2fa0b96775011d";let c={kind:"InlineDataFragment",name:"useHandleTemplateChange"};c.hash="a08364bb21fe7bb90b32c5dd4a84a3c6";var i=l(96540),s=l(69487),r=l(17831),o=l(50167),d=l(81724),u=l(94007);let m=e=>{let a,l=(0,s.readInlineData)(c,e);if(l.issueTemplate){let e=(0,s.readInlineData)(n,l.issueTemplate);a={name:e.name,fileName:e.filename,kind:d.t7.IssueTemplate,data:e}}else if(l.issueForm){let e=(0,s.readInlineData)(t,l.issueForm);a={name:e.name,fileName:e.filename,kind:d.t7.IssueForm,data:e}}return a},p=({optionConfig:e,repository:a,navigate:l,setDisplayMode:n})=>{let{setTemplate:t,reinitTitle:c,reinitBody:s,reinitAssignees:m,reinitLabels:p,reinitProjects:g,reinitMilestone:y,reinitIssueType:h}=(0,r.u)();return(0,i.useCallback)((i,r,f=!1)=>{t(i);let k="";if(r?.discussion)k=r.discussion.title;else if(r?.title)k=r.title||"";else{let e=i?.data.title||"",a="";r?.appendTitleToTemplate&&(a=` ${r.appendTitleToTemplate}`),k=[e,a].join("").trimStart()}c(k);let b="";r?.discussion?b=r.discussion.formattedBody||"":r?.body?b=r.body||"":i&&((0,d.Al)(i.data)||(0,d.yJ)(i.data))&&(b=i.data.body||""),s(b);p(r?.discussion?r.discussion?.labels||[]:r?.labels?r.labels:i?.data.labels?.edges?.flatMap(e=>e?.node?[e?.node]:[])||[]),m(r?.assignees??((i?.data.assignees?.edges||[]).flatMap(e=>e?.node?[e?.node]:[])||[])),r?.projects?g(r.projects):i&&(0,d.GQ)(i?.data)&&g(i.data.projects?.edges?.flatMap(e=>e?.node?[e.node]:[])||[]),r?.milestone&&y(r?.milestone);let z=r?.type??null;i&&!z&&((0,d.GQ)(i.data)||(0,d.Al)(i.data))&&void 0!==i.data.type&&(z=i.data.type||null),h(z??null),(!r||f)&&(e.navigateToFullScreenOnTemplateChoice&&a&&i?l((0,u.Qy)(a.nameWithOwner,i.fileName)):n(o.q.IssueCreation))},[t,c,s,p,m,h,g,y,e.navigateToFullScreenOnTemplateChoice,a,l,n])}},41057:(e,a,l)=>{l.d(a,{Q:()=>r});var n=l(74848),t=l(82156),c=l(96540);let i={sm:16,md:20,lg:24,xl:32},s={rounded:"3px",pill:"100px",elliptical:"50%"},r=({height:e,width:a,borderRadius:l="rounded"})=>{let[r,o]=(0,c.useState)("100%");(0,c.useEffect)(()=>{"random"===a&&o(`${Math.floor(40*Math.random()+40)}%`)},[a]);let d="string"==typeof e&&e in i?`${i[e]}px`:e,u="random"===a?r:"string"==typeof a&&a in i?`${i[a]}px`:a,m="string"==typeof l&&l in s?s[l]:l;return(0,n.jsx)(t.f,{"data-testid":"issues-loading-skeleton",className:"IssuesLoadingSkeleton-module__container--Z01Fm",style:{width:u,height:d,borderRadius:m}})};try{r.displayName||(r.displayName="IssuesLoadingSkeleton")}catch{}},41305:(e,a,l)=>{l.d(a,{w:()=>u});var n=l(74848),t=l(2892),c=l(73017),i=l(84268),s=l(12683),r=l(30459),o=l(96540),d=l(69599);function u({labels:e,testId:a,onDelete:l,emptyText:u="No labels"}){let{sendAnalyticsEvent:m}=(0,r.s)(),p=(0,d.G7)("issues_report_sidebar_interactions"),g=(0,o.useMemo)(()=>0!==e.length&&e[0]?`${e[0].url.slice(0,e[0].url.lastIndexOf("/labels/"))}/issues`:"",[e]),y=(0,o.useCallback)(e=>`${g}?q=${encodeURIComponent(`state:open label:"${e.name}"`)}`,[g]);return(0,n.jsx)("div",{tabIndex:-1,"data-testid":a,className:"LabelsList-module__labelsListContainer--bS7BO",children:e.length>0?e.sort((e,a)=>e.name===a.name?0:e.name>a.name?1:-1).map(e=>(0,n.jsx)(s.m_,{text:e.description??"",type:"description","aria-label":e.description??"",sx:{visibility:e.description?"visible":"hidden"},className:"LabelsList-module__labelDescriptionTooltip--LvHc0",children:(0,n.jsxs)(i.A,{href:y(e),muted:!0,"aria-describedby":`${e.id}-tooltip`,className:"LabelsList-module__labelLink--hHZBM",onClick:()=>{p&&m("analytics.click","ISSUE_SIDEBAR_LABEL_CLICK")},onContextMenu:()=>{p&&m("analytics.click","ISSUE_SIDEBAR_LABEL_RIGHT_CLICK")},children:[(0,n.jsx)(t.a,{text:(0,n.jsx)(c.JR,{html:e.nameHTML}),onDelete:l?()=>l(e.id):void 0,fillColor:`#${e.color}`,style:{overflow:"hidden",textOverflow:"ellipsis",cursor:"pointer",maxWidth:"100%"}},e.id),(0,n.jsx)("span",{className:"sr-only",id:`${e.id}-tooltip`,children:e.description??""})]},e.id)},e.id)):u})}try{u.displayName||(u.displayName="LabelsList")}catch{}},41848:(e,a,l)=>{l.d(a,{k:()=>n});let n={mutationErrorMessage:"Something went wrong while setting the field value. Please try again.",loadingFieldsTooltipMessage:"Couldn't load issue fields",loadingFieldsErrorMessage:"We couldn't load the issue fields. Please try again later or if the problem persists contact support",setValue:"None yet",reloadWarningMessage:"Reload site? Changes you made might not be saved.",textValidationMaxLength:(e,a)=>`Value cannot be more than ${a} characters (${e})`,textValidationEmpty:"Text cannot be empty.",textEditorLabel:e=>`The value for the ${e} field`,textEditorToolbarLabel:e=>`Toolbar for ${e} field`,textEditorPlaceholder:"Type text\u2026",numberEditorPlaceholder:"Type number\u2026",numberValidation:{errorMessage:"Must contain only numbers, decimals, and optional negative sign",max:e=>`Cannot be greater than ${e}`,min:e=>`Cannot be less than ${e}`},textEditorUpdateButton:"Update",textEditorRemoveFieldButtonLabel:e=>`Remove field ${e}`,textEditorUpdateButtonAriaLabel:e=>`Update field ${e} (press enter to submit)`,textEditorCancelButton:"Cancel",errorUpdatingIssueField:"There was an error updating this value. Please try again.",editFieldValueLabel:e=>`Edit ${e}`,noPinnedFieldsMessage:e=>e?`${e} has no fields pinned.`:"No pinned fields."}},42118:(e,a,l)=>{l.d(a,{hF:()=>U,xR:()=>O,s_:()=>$});var n=l(74848),t=l(69599),c=l(27408),i=l(73189),s=l(82075),r=l(54571),o=l(71651),d=l(21513),u=l(72511),m=l(96540),p=l(88316),g=l(38621),y=l(40961);let h="```suggestion";function f({onChange:e,inputValue:a,sourceContentFromDiffLines:l,onInsertSuggestedChange:t,shouldInsertSuggestionOnRender:i,editorRef:s}){let r=`${h} +${l??""} +\`\`\``,o=()=>{t(),s.current?.focus();let l=""===a?r:`${a} +${r}`;(0,y.flushSync)(()=>{e(l)});let n=document.activeElement;if(!n||!(n instanceof HTMLTextAreaElement))return;let c=l.length-3;n.selectionStart=c-1,n.selectionEnd=c-1};return(0,m.useEffect)(()=>{if(i){let e=window.setTimeout(()=>o());return()=>{window.clearTimeout(e)}}},[]),(0,n.jsx)(c.n.ToolbarButton,{icon:g.FileDiffIcon,"aria-label":"Add a suggestion",onClick:o})}function k(e){let{sourceContentFromDiffLines:a}=e;return(0,n.jsx)(p.f.ToolbarButton,{telemetryId:"add_suggestion",icon:g.FileDiffIcon,"aria-label":"Add a suggestion",onClick:e=>{let l=`${h} +${a??""} +\`\`\``,n=0===e.state.doc.length?l:` +${l}`;return e.dispatch({changes:[{from:e.state.doc.length,insert:n}],selection:{anchor:e.state.doc.length+n.length-3-1}}),!0}})}try{f.displayName||(f.displayName="AddSuggestionButton")}catch{}try{k.displayName||(k.displayName="HybridAddSuggestionButton")}catch{}var b=l(16049),z=l(62173),F=l(55255),I=l(91835);function S({onSave:e,validationResult:a,children:l,trailingIcon:t,disabled:c,size:i}){let s=(0,n.jsx)(I.x,{variant:"primary",size:i,onClick:e,disabled:c||!a.isValid,trailingVisual:t&&c?g.AlertFillIcon:null,children:l});return a.isValid?s:(0,n.jsx)(F.A,{text:a.errorMessage,direction:"w","data-testid":"save-button-tooltip",children:s})}try{S.displayName||(S.displayName="SaveButton")}catch{}var C=l(12683),v=l(34164);let x=(0,m.createContext)(null),j=({children:e,subject:a,onInsertText:l,onSave:t})=>{let c,i=(0,m.useRef)(null),s=(0,m.useRef)(null),[{top:r,left:o},d]=(0,m.useState)({top:0,left:0});(0,m.useEffect)(()=>{let e=i.current;if(!e)return;let a=e?.querySelector("textarea"),l={top:0,left:0};for(;a!==e;){if(null===a)return;l.top+=a.offsetTop,l.left+=a.offsetLeft,a=a.offsetParent instanceof HTMLElement?a.offsetParent:null}d(l)},[]),(0,m.useEffect)(()=>{let e=s.current;if(!e)return;i.current?.querySelector("textarea")&&e.reconnect?.();let a=()=>{e.querySelector(".js-slash-command-menu:not(.d-none)")||e.reconnect?.()},l=i.current?.querySelector("textarea");return l?.addEventListener("focus",a),()=>{l?.removeEventListener("focus",a)}},[]),(0,m.useEffect)(()=>{let e=s.current;if(!e)return;let a=i.current?.querySelector("textarea")||null,l=new MutationObserver(()=>{let l=i.current?.querySelector("textarea");l&&l!==a&&(a=l,e.querySelector(".js-slash-command-menu:not(.d-none)")||e.reconnect?.())});return i.current&&l.observe(i.current,{childList:!0,subtree:!0}),()=>{l.disconnect()}},[]),(0,m.useEffect)(()=>{if(!t)return;let e=s.current;if(e)return e.addEventListener("request-submit",t),()=>{e.removeEventListener("request-submit",t)}},[t]);let u=(0,m.useMemo)(()=>({onInsertText:l}),[l]);return(0,n.jsx)(C.az,{ref:i,sx:{"& .js-slash-command-menu":{mt:`${r}px`,ml:`${o}px`}},className:(0,v.$)("js-slash-command-surface","SlashCommandsProvider-module__slashCommandContainer--ZPT3l"),children:(0,n.jsx)("slash-command-expander",{ref:s,keys:"/","data-slash-command-url":(c=`/${a.repository.nwo}/slash_apps?surface=${function(e){switch(e){case"issue_comment":return"issue_comment";case"issue":return"issue_body";case"pull_request":return"pull_request";case"commit":return"commit"}}(a.type)}`,a.id&&(c+=`&subject_gid=${a.id.id}`),c),children:(0,n.jsx)(x,{value:u,children:e})})})},M=()=>{let e=(0,m.use)(x);return e?(0,n.jsx)(c.n.ToolbarButton,{icon:g.DiffIgnoredIcon,"aria-label":"Slash commands",onClick:()=>e.onInsertText("/")}):null};try{x.displayName||(x.displayName="SlashCommandButtonContext")}catch{}try{j.displayName||(j.displayName="SlashCommandsProvider")}catch{}try{M.displayName||(M.displayName="SlashCommandsButton")}catch{}let T=//;var _=l(67702),N=l(70263),K=l(96379);function L(e){let a=(0,m.useRef)(void 0);return(0,m.useEffect)(()=>{a.current&&(a.current=void 0)},[e]),(0,m.useCallback)(()=>(a.current||(a.current=e()),a.current),[e])}async function w(e){try{let a=await (0,K.lS)(`/settings/replies${e?`?context=${e}`:""}`);return(await a.json()).map(e=>({name:e.title,content:e.body}))}catch{return[]}}async function P({subjectId:e,subjectType:a,subjectRepoId:l}){let n=e?`/${e}`:"",t="?mention_suggester=1&user_avatar=1";t=l?`${t}&repository_id=${l}`:t;let c=`/suggestions/${a}${n}${t}`,i=await (0,K.lS)(c,{method:"GET"});return await i.json()}async function A(e){try{return(await P(e)).map(e=>"login"in e?{description:e.name,identifier:e.login,avatarUrl:e.avatarUrl,participant:e.participant}:{description:e.description,identifier:e.name,avatarUrl:e.avatarUrl,participant:e.participant})}catch{return[]}}async function E({subjectId:e,subjectType:a,subjectRepoId:l}){let n=e?`/${e}`:"",t=await (0,K.lS)(`/suggestions/${a}${n}?issue_suggester=1&repository_id=${l}`,{method:"GET"});return await t.json()}async function V(e){try{let a=await E(e),l=a.icons;return a.suggestions.map(e=>({id:e.number.toString(),titleText:e.title,titleHtml:e.title,iconHtml:l[e.type]}))}catch{return[]}}let R={mentions:"loading",references:"loading",savedReplies:[]},D=[],O=c.n.ActionButton,B="comment_box_last_view_mode",$=()=>{let e=(0,s.A)("localStorage");return(0,t.G7)("markdown_experience_hybrid_editor")?e.getItem(B)??"hybrid":"edit"},U=({ref:e,"aria-describedby":a,"data-testid":l,label:p,labelledBy:g,showLabel:y,disabled:h=!1,subject:F,viewMode:I,onChangeViewMode:C,value:v,placeholder:x,onChange:K,onSave:P,onCancel:E,validationResult:O,saveButtonText:U="Save",saveButtonTrailingIcon:q=!0,actions:H,footerButtons:W,toolbarButtons:G,contentIsStale:Q,fileUploadsEnabled:Y=!0,minHeightLines:X,maxHeightLines:Z,className:J,onPrimaryAction:ee,buttonSize:ea,suggestedChangesConfig:el,markdownErrorMessage:en,infoBanner:et,teamHovercardsEnabled:ec,setIsFileUploading:ei,markdownSuggestionsFetchMethod:es="lazy",lineNumber:er,filePath:eo,startLineNumber:ed,onInputFocus:eu,generatingText:em})=>{let ep,eg=(ep=F)?"project"===ep.type?{subjectId:ep.id?.databaseId?.toString(),subjectType:ep.type}:{subjectId:ep.id?.databaseId?.toString()??ep.id?.id,subjectRepoId:ep.repository.databaseId,subjectType:"issue_comment"===ep.type?"issue":ep.type}:{},ey=F?.type==="project"?F?.id?.databaseId.toString():void 0,[eh,ef]=(0,m.useState)("eager"===es),{mentions:ek,references:eb,emojis:ez,savedReplies:eF}=function(e={},a){let l=(0,N.A)(),n=function({subjectId:e,subjectType:a,subjectRepoId:l}){return L((0,m.useCallback)(()=>a&&("project"===a||l)?A({subjectId:e,subjectType:a,subjectRepoId:l}):Promise.resolve([]),[a,l,e]))}(e),t=function({subjectId:e,subjectType:a,subjectRepoId:l}){return L((0,m.useCallback)(async()=>a&&l?V({subjectId:e,subjectType:a,subjectRepoId:l}):Promise.resolve([]),[e,a,l]))}(e),c=function({subjectType:e}){return L((0,m.useCallback)(()=>w("issue"===e||"pull_request"===e?e:void 0),[e]))}(e),[i,s]=(0,m.useState)(R);(0,m.useEffect)(()=>{let e=async()=>{let[e,a,i]=await Promise.all([n(),t(),c()]);l()&&(e.length||a.length||i.length)&&s({mentions:e,references:a,savedReplies:i})};a&&e()},[n,t,c,l,a]);let r=(0,_.P)(a);return{...i,emojis:r.isPending?"loading":r.data??D}}(eg,eh),eI=(0,z.y)({...eg,path:eo,lineNumber:er,startCommitOid:F?.type==="project"?"":F?.comparison?.startCommitOid,startLineNumber:ed,endCommitOid:F?.type==="project"?"":F?.comparison?.endCommitOid,baseCommitOid:F?.type==="project"?"":F?.comparison?.startCommitOid,subject:F?.type==="project"?void 0:F?.pullRequestNumber}),eS=(0,b.fU)(eg.subjectRepoId?.toString(),ey),eC=(0,s.A)("localStorage"),[ev]=(0,r.I)(()=>$(),"edit"),[ex,ej]=(0,m.useState)(I??ev),[eM,eT]=(0,m.useState)(!1),e_=(0,m.useRef)(null);(0,d.T)(e??null,e_);let eN=(0,m.useRef)(null),eK=void 0!==F&&"repository"in F&&void 0!==F.repository,eL=eK&&F.repository.slashCommandsEnabled,[ew,eP]=(0,m.useState)(el?.shouldInsertSuggestedChange??!1);(0,m.useEffect)(()=>(eT(Q??!1),()=>{eT(!1)}),[Q]);let eA=(0,m.useMemo)(()=>eM?i.l:()=>{P?.(),ej(ev)},[P,eM,ev]);(0,m.useEffect)(()=>{ej(ev)},[eg.subjectRepoId,eg.subjectId,ev]),(0,m.useEffect)(()=>{I&&ej(I)},[I]);let eE=(0,m.useCallback)(e=>{ej(e),(0,t.G7)("markdown_experience_hybrid_editor")&&eC.setItem(B,"preview"===e?"edit":e),C?.(e)},[C,eC]),eV=(0,m.useCallback)(e=>{e_.current?.focus();try{document.execCommand("insertText",!1,e)}catch{}},[e_]),eR=(0,m.useCallback)(()=>{"lazy"!==es||eh||ef(!0),eu?.()},[eh,es,eu]);eM&&null!==eN.current&&window.scrollY>173&&eN.current.scrollIntoView();let eD=(0,m.useMemo)(()=>T.test(v),[v]);(0,m.useEffect)(()=>{ei&&ei(eD)},[eD,ei]);let eO=(0,m.useMemo)(()=>e=>(0,m.isValidElement)(e)&&"object"==typeof e&&"symbol"==typeof e.type&&"Symbol(react.fragment)"===String(e.type)?m.Children.toArray(e.props.children):m.Children.toArray(e),[]),eB=(0,m.useMemo)(()=>e=>eO(e).map((e,a)=>(0,m.isValidElement)(e)?(0,m.cloneElement)(e,{key:a,disabled:h||eD}):e),[eO,h,eD]),e$=(0,o.z)(!1),eU=(0,n.jsxs)(n.Fragment,{children:[eM&&(0,n.jsx)(u.A,{ref:eN,variant:"danger",className:"CommentBox-module__staleContentWarning--i6nrw",children:"The content you are editing has changed. Please copy your edits and exit the editor."}),(0,n.jsxs)(c.n,{"aria-describedby":a,labelledBy:g,disabled:h,value:v,placeholder:void 0!==x?x:"Leave a comment",emojiSuggestions:ez,emojiTone:e$.settings.emojiTone,mentionSuggestions:ek,referenceSuggestions:eb,viewMode:ex,onChangeViewMode:eE,onChange:K,onInputFocus:eR,onRenderPreview:eI,onUploadFile:Y?eS:void 0,acceptedFileTypes:Y?(0,b.jw)(eK):void 0,onPrimaryAction:()=>{eA(),ee?.()},ref:e_,pasteUrlsAsPlainText:e$.settings.pasteUrlsAsPlainText,savedReplies:eF,monospace:e$.settings.useMonospaceFont,minHeightLines:X,maxHeightLines:Z,className:J,teamHovercardsEnabled:ec,onSavedRepliesOpen:eR,banner:en?(0,n.jsx)(c.n.ErrorBanner,{children:en}):et,generatingText:em,hybridEditorProps:el?.showSuggestChangesButton||G?{customToolbarButtons:(0,n.jsxs)(n.Fragment,{children:[G,el?.showSuggestChangesButton&&(0,n.jsx)(k,{sourceContentFromDiffLines:el?.sourceContentFromDiffLines})]})}:void 0,children:[(0,n.jsx)(c.n.Label,{visuallyHidden:!y,children:p??"Markdown Editor"}),(0,n.jsxs)(c.n.Actions,{children:[eB(H),E&&(0,n.jsx)(c.n.ActionButton,{variant:"default",size:ea,onClick:E,value:"Cancel",children:"Cancel"}),eA&&O&&(0,n.jsx)(S,{onSave:eA,validationResult:O,trailingIcon:q,disabled:h||eD,size:ea,children:U})]}),(0,n.jsxs)(c.n.Toolbar,{children:[el?.showSuggestChangesButton&&(0,n.jsx)(f,{shouldInsertSuggestionOnRender:ew,inputValue:v,onChange:K,sourceContentFromDiffLines:el?.sourceContentFromDiffLines,editorRef:e_,onInsertSuggestedChange:()=>{el?.onInsertSuggestedChange(),eP(!1)}}),G,(0,n.jsx)(c.n.DefaultToolbarButtons,{}),(0,n.jsx)(M,{})]}),W&&(0,n.jsx)(c.n.Footer,{children:W})]})]});return(0,n.jsx)("div",{"data-testid":l,className:"CommentBox-module__commentBoxContainer--yrAth",children:eL?(0,n.jsx)(j,{subject:F,onInsertText:eV,onSave:eA,children:eU}):eU})};U.displayName="CommentBox"},43258:(e,a,l)=>{l.d(a,{Qn:()=>r,T8:()=>d,Y6:()=>m,k6:()=>u});var n=l(74848),t=l(16522),c=l(52870),i=l(96540),s=l(73189);let r=5e3,o=(0,i.createContext)({addToast:s.l,addPersistedToast:s.l,clearPersistedToast:s.l}),d=(0,i.createContext)({toasts:[],persistedToast:null});function u(e){let a,l,s,u,m,p,g,y,h=(0,t.c)(17),{children:f}=e;h[0]===Symbol.for("react.memo_cache_sentinel")?(a=[],h[0]=a):a=h[0];let[k,b]=(0,i.useState)(a),[z,F]=(0,i.useState)(null),{safeSetTimeout:I}=(0,c.A)();h[1]!==I||h[2]!==k?(l=function(e){b([...k,e]),I(()=>b(k.slice(1)),r)},h[1]=I,h[2]=k,h[3]=l):l=h[3];let S=l;h[4]===Symbol.for("react.memo_cache_sentinel")?(s=function(e){F(e)},h[4]=s):s=h[4];let C=s;h[5]===Symbol.for("react.memo_cache_sentinel")?(u=function(){F(null)},h[5]=u):u=h[5];let v=u;h[6]!==S?(m={addToast:S,addPersistedToast:C,clearPersistedToast:v},h[6]=S,h[7]=m):m=h[7];let x=m;h[8]!==z||h[9]!==k?(p={toasts:k,persistedToast:z},h[8]=z,h[9]=k,h[10]=p):p=h[10];let j=p;return h[11]!==f||h[12]!==j?(g=(0,n.jsx)(d,{value:j,children:f}),h[11]=f,h[12]=j,h[13]=g):g=h[13],h[14]!==x||h[15]!==g?(y=(0,n.jsx)(o,{value:x,children:g}),h[14]=x,h[15]=g,h[16]=y):y=h[16],y}function m(){return(0,i.use)(o)}try{o.displayName||(o.displayName="ToastContext")}catch{}try{d.displayName||(d.displayName="InternalToastsContext")}catch{}try{u.displayName||(u.displayName="ToastContextProvider")}catch{}},43570:(e,a,l)=>{l.d(a,{H:()=>s,k:()=>r});var n=l(74848),t=l(41848),c=l(68065);let i=/^-?\d+(\.\d+)?$/,s=e=>{if(""===e)return null;if(!i.test(e))return t.k.numberValidation.errorMessage;let a=parseFloat(e);return a>0x7fffffff?t.k.numberValidation.max(0x7fffffff):a<-0x80000000?t.k.numberValidation.min(-0x80000000):null},r=e=>(0,n.jsx)(c.eH,{...e,inputProps:{placeholder:t.k.numberEditorPlaceholder,inputMode:"numeric"},validate:s,isNumber:!0,className:e.className});try{i.displayName||(i.displayName="NUMBER_PATTERN")}catch{}try{r.displayName||(r.displayName="IssueFieldNumberEditor")}catch{}},43755:(e,a,l)=>{l.d(a,{J:()=>t});var n=l(79634);let t=()=>{let e=(0,n.X)();return{currentUser:e&&e.current_user?e.current_user:null}}},43952:(e,a,l)=>{l.d(a,{C5:()=>C,eJ:()=>j,Bk:()=>x,zD:()=>v});var n=l(74848);let t={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"MilestonesSectionMilestone",selections:[{alias:null,args:null,concreteType:"Milestone",kind:"LinkedField",name:"milestone",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"closed",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"dueOn",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"progressPercentage",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"closedAt",storageKey:null}],storageKey:null}],type:"Issue",abstractKey:null};t.hash="76d2f86529ad47c916131104f23ee735";let c={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"MilestonesSectionFragment",selections:[{alias:null,args:null,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"owner",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null}],storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{args:null,kind:"FragmentSpread",name:"MilestonesSectionMilestone"},{alias:null,args:null,kind:"ScalarField",name:"viewerCanSetMilestone",storageKey:null}],type:"Issue",abstractKey:null};c.hash="72b43b6f8433e4a47b0321cf2aa3c5ea";var i=l(52590),s=l(67126),r=l(90921),o=l(43258),d=l(5524),u=l(96540),m=l(18312),p=l(93513),g=l(2495),y=l(16810),h=l(21798),f=l(73867),k=l(73189),b=l(20177);let z=({progress:e})=>(0,n.jsxs)("svg",{role:"presentation",width:"16",height:"16","data-target":"tracked-issues-progress.progress","data-circumference":"38",style:{transform:"rotate(-90deg)"},"data-testid":b.Y.milestoneProgressIcon,children:[e<1?null:(0,n.jsx)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.0206 11.1074C9.68518 11.3949 9.18014 11.3561 8.8926 11.0206L5.8926 7.52061C5.62055 7.20322 5.63873 6.72989 5.93432 6.4343L7.43432 4.9343C7.74674 4.62188 8.25327 4.62188 8.56569 4.9343C8.87811 5.24672 8.87811 5.75325 8.56569 6.06567L7.58953 7.04182L10.1074 9.97935C10.3949 10.3148 10.3561 10.8198 10.0206 11.1074Z",fill:"var(--fgColor-done, var(--color-done-fg))"}),(0,n.jsx)("circle",{stroke:"var(--borderColor-default, var(--color-border-default))",strokeWidth:"2",fill:"transparent",cx:"50%",cy:"50%",r:"6"}),(0,n.jsx)("circle",{style:{transition:"stroke-dashoffset 0.35s"},stroke:"var(--fgColor-done, var(--color-done-fg))",strokeWidth:"2",strokeDasharray:38,strokeDashoffset:38-38*e,strokeLinecap:"round",fill:"transparent",cx:"50%",cy:"50%",r:"6"})]});try{z.displayName||(z.displayName="ProgressIcon")}catch{}function F({milestone:e,anchorProps:a}){return(0,n.jsx)(n.Fragment,{children:e?(0,n.jsxs)(d.l.LinkItem,{href:e.url||"#",target:"_blank","data-testid":b.Y.milestoneContainer,...a,onClick:k.l,children:[(0,n.jsx)(d.l.LeadingVisual,{children:(0,n.jsx)(z,{progress:e.progressPercentage/100})}),e.title,(0,n.jsx)(d.l.Description,{variant:"block",children:(0,n.jsx)(f.R,{closed:e.closed,closedAt:e.closedAt,progressPercentage:e.progressPercentage,dueOn:e.dueOn,showProgressPercentage:!0})})]},e.id):(0,n.jsx)("div",{className:"Milestone-module__hiddenPlaceholder--b_yit",...a})})}try{F.displayName||(F.displayName="Milestone")}catch{}let I=()=>(0,n.jsx)(g.h,{title:p.k.sectionTitles.milestones}),S=({sectionHeader:e,milestone:a,sx:l,className:t})=>(0,n.jsx)(y.w,{id:"sidebar-milestones-section",sx:l,className:t,sectionHeader:e,emptyText:a?void 0:p.k.emptySections.milestones,children:(0,n.jsx)(d.l,{variant:"full",children:(0,n.jsx)(F,{milestone:a})})});function C({milestone:e,onSelectionChange:a,viewerCanSetMilestone:l,className:t,sx:c,...i}){let s=l?(0,n.jsx)(r.D,{onSelectionChange:e=>{a(e?.[0]||null)},readonly:l,canCreateMilestone:l,activeMilestone:e,anchorElement:(e,a)=>(0,n.jsx)(h.X,{title:p.k.sectionTitles.milestones,buttonProps:e,ref:a}),showMilestoneDescription:!0,...i}):(0,n.jsx)(I,{});return(0,n.jsx)(S,{sx:c,className:t,sectionHeader:s,milestone:e})}let v=t,x=c;function j({issue:e,onIssueUpdate:a,insideSidePanel:l,readonly:t}){let c=(0,m.useFragment)(x,e),{repository:{owner:{login:d},name:g},id:y,viewerCanSetMilestone:f}=c,{milestone:k}=(0,m.useFragment)(v,c),{addToast:b}=(0,o.Y6)(),z=(0,m.useRelayEnvironment)(),F=(0,u.useCallback)(e=>{(0,i.v)({environment:z,input:{issueId:y,milestone:e.length>0?e.at(-1):null},onError:()=>b({type:"error",message:s.S.couldNotUpdateMilestone}),onCompleted:a})},[b,z,y,a]),C=(0,u.useMemo)(()=>{let e=t||!f;return e?(0,n.jsx)(I,{}):(0,n.jsx)(r.D,{repo:g,owner:d,onSelectionChange:F,anchorElement:(e,a)=>(0,n.jsx)(h.X,{title:p.k.sectionTitles.milestones,buttonProps:e,ref:a}),readonly:e,canCreateMilestone:f,activeMilestone:k??null,insidePortal:l,showMilestoneDescription:!0,showNoMatchItem:!0})},[t,f,g,d,F,k,l]);return(0,n.jsx)(S,{sectionHeader:C,milestone:k??null})}try{I.displayName||(I.displayName="ReadonlyMilestonesSectionHeader")}catch{}try{S.displayName||(S.displayName="MilestonesSection")}catch{}try{C.displayName||(C.displayName="CreateIssueMilestonesSection")}catch{}try{j.displayName||(j.displayName="EditIssueMilestonesSection")}catch{}},44251:(e,a,l)=>{l.d(a,{k:()=>s});var n=l(16522),t=l(96540),c=l(69599),i=l(53419);function s(){let e,a,l,s,r=(0,n.c)(4);r[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,c.G7)("issue_fields_report_usage"),r[0]=e):e=r[0];let o=e,d=(0,t.useRef)(null);r[1]===Symbol.for("react.memo_cache_sentinel")?(a=()=>{d.current=Date.now()},r[1]=a):a=r[1];let u=a;r[2]===Symbol.for("react.memo_cache_sentinel")?(l=e=>{if(!o)return;let a=d.current?Date.now()-d.current:void 0;d.current=null;var l={...e,interactionDuration:a};let n={};for(let[e,a]of Object.entries(l))if(void 0!==a){let l=e.replace(/([a-z])([A-Z])/g,"$1_$2").toLowerCase();Array.isArray(a)?n[l]=a.join(","):n[l]=a}(0,i.BI)("issue_fields_usage",{...n,version:"1.0.1"})},r[2]=l):l=r[2];let m=l;return r[3]===Symbol.for("react.memo_cache_sentinel")?(s={markInteractionStart:u,reportUsage:m},r[3]=s):s=r[3],s}},44871:(e,a,l)=>{l.d(a,{H:()=>r});var n,t=l(74848),c=l(78211),i=l(5524),s=l(96540);function r({issue:e,onLinkClick:a}){let l=(0,s.useCallback)(()=>{a?.(e.url)},[e.url,a]),{sourceIcon:n}=(0,c.e)({state:e.state,stateReason:e.stateReason}),r=n("Issue");return(0,t.jsxs)(i.l.LinkItem,{href:e.url,target:"_blank",onClick:l,children:[(0,t.jsx)(i.l.LeadingVisual,{children:(0,t.jsx)(r,{})}),(0,t.jsx)("span",{className:"markdown-title",children:e.title}),(0,t.jsxs)(i.l.Description,{variant:"block",children:[e.repository.nameWithOwner,"#",e.number]})]})}try{r.displayName||(r.displayName="IssueItem")}catch{}try{(n=IconComponent).displayName||(n.displayName="IconComponent")}catch{}},45244:(e,a,l)=>{l.d(a,{b:()=>i});var n=l(74848),t=l(16522),c=l(34164);let i=e=>{let a,l,i,s,r=(0,t.c)(10),{children:o,className:d,innerClassName:u}=e;return r[0]!==d?(a=(0,c.$)("WithShimmerEffect-module__fadeIn--UnU0Y",d),r[0]=d,r[1]=a):a=r[1],r[2]!==u?(l=(0,c.$)("WithShimmerEffect-module__shimmerText--Rzh6H",u),r[2]=u,r[3]=l):l=r[3],r[4]!==o||r[5]!==l?(i=(0,n.jsx)("div",{className:l,children:o}),r[4]=o,r[5]=l,r[6]=i):i=r[6],r[7]!==a||r[8]!==i?(s=(0,n.jsx)("div",{className:a,children:i}),r[7]=a,r[8]=i,r[9]=s):s=r[9],s};try{i.displayName||(i.displayName="WithShimmerEffect")}catch{}},45750:(e,a,l)=>{l.d(a,{I:()=>i,_:()=>s});var n=l(74848),t=l(31877),c=l(72274);function i(e){let a=(0,c.u)();return(0,n.jsx)(t.Ir,{...e,viewer:a})}function s(e){let a=(0,c.u)();return(0,n.jsx)(t._g,{...e,viewer:a})}try{i.displayName||(i.displayName="AssigneePicker")}catch{}try{s.displayName||(s.displayName="AssigneeRepositoryPicker")}catch{}},46377:(e,a,l)=>{l.d(a,{_:()=>d});var n=l(74848),t=l(5524),c=l(21373),i=l(69497),s=l(12683),r=l(96540);let o="SharedPicker-module__dashedPickerButton--VyqkO",d=({ref:e,leadingIconElement:a,anchorText:l,anchorProps:d,sharedPickerMainValue:u,ariaLabel:m,readonly:p,size:g,nested:y=!1,leadingIcon:h,hotKey:f,ariaLabelledBy:k,compressedTitle:b,className:z})=>{let F={"aria-labelledby":k,"aria-label":k?void 0:m,"aria-description":r.useMemo(()=>{let e;if(u)return e="string"==typeof u?u:b||"",`Currently selected: ${e}`},[u,b]),"aria-disabled":y?p:void 0,disabled:p};if(y){let e=u?a:h&&(0,n.jsx)(h,{});return(0,n.jsxs)(t.l.Item,{...d,...F,role:"menuitem",children:[e?(0,n.jsx)(t.l.LeadingVisual,{children:e}):null,l]})}return u?(0,n.jsx)(c.Q,{ref:e,size:g||"small",...d,...F,className:z,children:(0,n.jsxs)("div",{className:"SharedPicker-module__pickerContentContainer--Rgp_C",children:[(0,n.jsx)("div",{className:"SharedPicker-module__pickerLabelText--JSlao",children:l}),(0,n.jsx)(s.az,{sx:{display:a?"flex":"none","> *:not(:last-child)":{}},className:"SharedPicker-module__leadingIconContainer--LQhJ_",children:a}),(0,n.jsx)("div",{className:"SharedPicker-module__title--CNycE",children:(0,n.jsx)(i.A,{title:b??u.toString()??"",children:u})})]})}):(0,n.jsx)(c.Q,{ref:e,size:"small",leadingVisual:h,trailingVisual:f?()=>(0,n.jsx)("div",{className:"SharedPicker-module__hotkeyBadge--nXrIA",children:f}):void 0,className:z?`${o} ${z}`:o,...F,...d,children:l})};d.displayName="SharedPicker"},47544:(e,a,l)=>{l.d(a,{JF:()=>c,R1:()=>i,kP:()=>t});let n="/_ghui/item-pickers";function t(e){return`${n}/${e}`}function c(e,a={}){let l=new URLSearchParams(a).toString();return`${t(e)}${l&&`?${l}`}`}function i(){return`${n}/bulk_actions`}},47685:(e,a,l)=>{l.d(a,{e:()=>R,N:()=>V});var n,t,c,i,s,r,o,d,u=l(74848);let m={fragment:{argumentDefinitions:n=[{defaultValue:null,kind:"LocalArgument",name:"id"}],kind:"Fragment",metadata:null,name:"TemplateListPaneQuery",selections:[{alias:null,args:t=[{kind:"Variable",name:"id",variableName:"id"}],concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[{kind:"InlineFragment",selections:[{args:null,kind:"FragmentSpread",name:"TemplateListPane"}],type:"Repository",abstractKey:null}],storageKey:null}],type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:n,kind:"Operation",name:"TemplateListPaneQuery",selections:[{alias:null,args:t,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[c={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{kind:"InlineFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"hasIssuesEnabled",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"nameWithOwner",storageKey:null},{alias:null,args:null,concreteType:"IssueForm",kind:"LinkedField",name:"issueForms",plural:!0,selections:[c,i={alias:null,args:null,kind:"ScalarField",name:"filename",storageKey:null},s={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"IssueTemplate",kind:"LinkedField",name:"issueTemplates",plural:!0,selections:[c,i,s,r={alias:null,args:null,kind:"ScalarField",name:"about",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isBlankIssuesEnabled",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isSecurityPolicyEnabled",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"securityPolicyUrl",storageKey:null},{alias:null,args:null,concreteType:"RepositoryContactLink",kind:"LinkedField",name:"contactLinks",plural:!0,selections:[s,r,{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasAnyTemplates",storageKey:null}],type:"Repository",abstractKey:null}],storageKey:null}]},params:{id:"616cce00c4f4fa38692beac78606b059",metadata:{},name:"TemplateListPaneQuery",operationKind:"query",text:null}};m.hash="48fd58d3a414612124beb28d391e3930";let p={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"TemplateListPane",selections:[{alias:null,args:null,kind:"ScalarField",name:"hasIssuesEnabled",storageKey:null},{args:null,kind:"FragmentSpread",name:"TemplateList"}],type:"Repository",abstractKey:null};p.hash="881cdbdb34820ab9cdf5b5c8e6409bb0";var g=l(38621),y=l(18312),h=l(98338),f=l(96480);let k={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"TemplateList",selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"nameWithOwner",storageKey:null},{alias:null,args:null,concreteType:"IssueForm",kind:"LinkedField",name:"issueForms",plural:!0,selections:[o={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},d={alias:null,args:null,kind:"ScalarField",name:"filename",storageKey:null},{args:null,kind:"FragmentSpread",name:"IssueFormRow"}],storageKey:null},{alias:null,args:null,concreteType:"IssueTemplate",kind:"LinkedField",name:"issueTemplates",plural:!0,selections:[o,d,{args:null,kind:"FragmentSpread",name:"IssueTemplateRow"}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isBlankIssuesEnabled",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isSecurityPolicyEnabled",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"securityPolicyUrl",storageKey:null},{alias:null,args:null,concreteType:"RepositoryContactLink",kind:"LinkedField",name:"contactLinks",plural:!0,selections:[{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{args:null,kind:"FragmentSpread",name:"ExternalLinkTemplateRow"}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasAnyTemplates",storageKey:null}],type:"Repository",abstractKey:null};k.hash="9273ddd168cea9d6445f53cc752642e5";var b=l(56038),z=l(5524);l(69487);var F=l(66108);let I=({filename:e,onTemplateSelected:a,name:l,about:n,link:t,externalLink:c,trailingIcon:i})=>(0,u.jsxs)(z.l.LinkItem,{as:F.N,to:t??"#",target:c?"_blank":void 0,onClick:l=>{l.altKey||l.ctrlKey||l.metaKey||l.shiftKey||(c||t||(l.preventDefault(),l.stopPropagation()),a(e))},className:"IssueTemplateItem-module__templateItemContainer--LLWZY",children:[(0,u.jsx)("span",{className:"IssueTemplateItem-module__actionListTitle--wBUhO",children:l}),(0,u.jsx)(z.l.Description,{variant:"block",children:n}),(0,u.jsx)(z.l.TrailingVisual,{children:i??(0,u.jsx)(g.ArrowRightIcon,{})})]},e);try{I.displayName||(I.displayName="IssueTemplateItem")}catch{}var S=l(81724),C=l(94007);let v=({nameWithOwner:e,onTemplateSelected:a})=>(0,u.jsx)(I,{filename:S.$K,onTemplateSelected:()=>a?.(S.$K,S.t7.BlankIssue),name:h.k.blankIssueName,about:h.k.blankIssueDescription,link:a?void 0:(0,C.Qy)(e,S.$K)});try{v.displayName||(v.displayName="BlankIssueItem")}catch{}var x=l(92858);let j={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"ExternalLinkTemplateRow",selections:[{alias:null,args:null,kind:"ScalarField",name:"about",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null}],type:"RepositoryContactLink",abstractKey:null};j.hash="89d8106fd30fe009b4d13c1f4908f32e";var M=l(73189);let T=({repositoryContactLink:e})=>{let a=(0,y.useFragment)(j,e);return(0,u.jsx)(I,{filename:a.name,onTemplateSelected:M.l,name:a.name,link:a.url,about:a.about,externalLink:!0,trailingIcon:(0,u.jsx)(g.LinkExternalIcon,{})})};try{T.displayName||(T.displayName="ExternalLinkTemplateRow")}catch{}let _={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"IssueFormRow",selections:[{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"filename",storageKey:null}],type:"IssueForm",abstractKey:null};_.hash="4707734c7aff8e836f17a948f0fc6e8d";let N=({nameWithOwner:e,form:a,onTemplateSelected:l})=>{let n=(0,y.useFragment)(_,a);return(0,u.jsx)(I,{filename:n.filename,onTemplateSelected:e=>l?.(e,S.t7.IssueForm),name:n.name,about:n.description,link:l?void 0:(0,C.Qy)(e,n.filename)})};try{N.displayName||(N.displayName="IssueFormRow")}catch{}let K={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"IssueTemplateRow",selections:[{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"about",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"filename",storageKey:null}],type:"IssueTemplate",abstractKey:null};K.hash="2047157ce521e245c1030871b4d976b7";let L=({nameWithOwner:e,template:a,onTemplateSelected:l})=>{let n=(0,y.useFragment)(K,a);return(0,u.jsx)(I,{filename:n.filename,onTemplateSelected:e=>l?.(e,S.t7.IssueTemplate),name:n.name,about:n.about,link:l?void 0:(0,C.Qy)(e,n.filename)})};try{L.displayName||(L.displayName="IssueTemplateRow")}catch{}let w=({link:e})=>(0,u.jsx)(I,{filename:"default-security-policy",link:e,externalLink:!0,onTemplateSelected:M.l,name:h.k.securityPolicyName,about:h.k.securityPolicyDescription,trailingIcon:(0,u.jsx)(g.ShieldIcon,{})});try{w.displayName||(w.displayName="SecurityPolicyRow")}catch{}var P=l(89946),A=l(50167);function E({repository:e,onTemplateSelected:a,className:l,setIsNavigatingToNew:n}){let{optionConfig:t,displayMode:c}=(0,f.a)(),i=(0,y.useFragment)(k,e);if(!i.hasAnyTemplates&&!i.isBlankIssuesEnabled&&!i.isSecurityPolicyEnabled)return(0,u.jsx)("span",{children:h.k.noTemplates});if(t.canBypassTemplateSelection){let e=function(e){if(e.contactLinks&&e.contactLinks.length>0||e.isSecurityPolicyEnabled&&e.securityPolicyUrl||e.isBlankIssuesEnabled)return null;let a=null;if(e.issueForms){if(1===e.issueForms.length)a=e.issueForms[0].filename;else if(e.issueForms.length>1)return null}if(e.issueTemplates)if(a){if(e.issueTemplates.length>0)return null}else 1===e.issueTemplates.length&&(a=e.issueTemplates[0].filename);if(!a)return null;let l=b.fV?.origin??"",n=`${l}/${e.nameWithOwner}`;return(0,C.RG)({repositoryAbsolutePath:n,fileName:a})}(i);if(e)return n?.(!0),t.navigate?.(e),null;n?.(!1)}let s=[...i.issueForms||[],...i.issueTemplates||[]].sort((e,a)=>e.filename.localeCompare(a.filename)).map(e=>"IssueForm"===e.__typename?(0,u.jsx)(N,{onTemplateSelected:a,form:e,nameWithOwner:i.nameWithOwner},e.filename):(0,u.jsx)(L,{onTemplateSelected:a,template:e,nameWithOwner:i.nameWithOwner},e.filename)),r=(0,u.jsxs)(u.Fragment,{children:[s,i.isBlankIssuesEnabled&&(0,u.jsx)(v,{onTemplateSelected:a,nameWithOwner:i.nameWithOwner},S.$K),i.isSecurityPolicyEnabled&&(0,u.jsx)(w,{link:i.securityPolicyUrl},"security_policy"),i.contactLinks&&i.contactLinks.map(e=>(0,u.jsx)(T,{repositoryContactLink:e},`contact_links.${e.name}`))]});return(0,u.jsx)(u.Fragment,{children:(0,u.jsx)(z.l,{className:l,"data-testid":x.Y.templateList,showDividers:!0,variant:"inset",children:t.showRepositoryPicker&&c===A.q.TemplatePicker?(0,u.jsxs)(z.l.Group,{children:[(0,u.jsx)(z.l.GroupHeading,{as:"h2",variant:"filled",className:`position-sticky top-0 x ${!t.insidePortal&&"border-top-0"} ${P.A.templateHeader}`,children:h.k.templatesFormsTitle}),r]}):r})})}try{E.displayName||(E.displayName="TemplateList")}catch{}function V({repositoryId:e,...a}){let l=(0,y.useLazyLoadQuery)(m,{id:e});return l.node?(0,u.jsx)(R,{repository:l.node,...a}):null}function R({repository:e,descriptionId:a,...l}){let{optionConfig:n}=(0,f.a)(),{insidePortal:t}=n,c=(0,y.useFragment)(p,e);return(0,u.jsx)("div",{children:c.hasIssuesEnabled?(0,u.jsx)(E,{repository:c,...l,className:`${!t?`border borderColor-muted rounded-2 overflow-hidden + ${n.showRepositoryPicker?"pt-0 mt-0":"py-2 mt-2"}`:""}`}):(0,u.jsxs)("div",{className:"TemplateListPane-module__disabledStateGap--AF9Nn d-flex flex-row flex-items-center m-3",children:[(0,u.jsx)(g.InfoIcon,{}),(0,u.jsx)("span",{id:a,children:h.k.issuesDisabledForRepo})]})})}try{V.displayName||(V.displayName="TemplateListPaneFromRepo")}catch{}try{R.displayName||(R.displayName="TemplateListInternal")}catch{}},49246:(e,a,l)=>{l.d(a,{S:()=>i});var n=l(74848),t=l(96480),c=l(17831);function i({children:e,...a}){return(0,n.jsx)(t.o,{...a,children:(0,n.jsx)(c.s,{...a,children:e})})}try{i.displayName||(i.displayName="IssueCreateContextProvider")}catch{}},49275:(e,a,l)=>{l.d(a,{v:()=>n});let n={noMilestoneData:{id:"no-milestone",title:"No milestone",closed:!1},noLabelsData:{id:"no-labels",name:"No labels",color:"ededed",description:"Issues with no labels"},noAssigneeData:{id:"no-assignee",login:"No assignees",avatarUrl:""},noMatchData:{id:"no-match-item",avatarUrl:"",description:"Filter by user"},noTypeData:{id:"no-type",name:"No type",color:"ededed",description:"Issues with no type"}}},49669:(e,a,l)=>{l.d(a,{t:()=>p});var n,t,c,i=l(74848),s=l(16522),r=l(2320);let o={fragment:{argumentDefinitions:n=[{defaultValue:null,kind:"LocalArgument",name:"owner"},{defaultValue:null,kind:"LocalArgument",name:"repo"}],kind:"Fragment",metadata:null,name:"usePreloadedLabelsQuery",selections:c=[{alias:null,args:[{kind:"Variable",name:"name",variableName:"repo"},{kind:"Variable",name:"owner",variableName:"owner"}],concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[t={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,concreteType:"LabelConnection",kind:"LinkedField",name:"labels",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"totalCount",storageKey:null},{alias:null,args:null,concreteType:"Label",kind:"LinkedField",name:"nodes",plural:!0,selections:[t,{alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"nameHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null}],storageKey:null}],storageKey:null}],storageKey:null}],type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:n,kind:"Operation",name:"usePreloadedLabelsQuery",selections:c},params:{id:"3e32908c91bf1665aa4acc9da94bd619",metadata:{},name:"usePreloadedLabelsQuery",operationKind:"query",text:null}};o.hash="29b91e6e7012c171094bcd0c3cf2f71f";var d=l(96540),u=l(18312);function m(e){var a,l;let n,t,c=(0,s.c)(3),m=(a=e.owner,l=e.repo,t=(0,u.useClientQuery)(o,{owner:a,repo:l}),(0,d.useMemo)(()=>{if(!t?.repository?.labels?.nodes?.length||!t?.repository?.id)return;let e=(t.repository.labels.nodes||[]).flatMap(e=>e?[e]:[]);return{repositoryId:t.repository.id,labels:e,totalCount:t.repository.labels.totalCount||0}},[t]));return c[0]!==m||c[1]!==e?(n=(0,i.jsx)(r.t,{...e,preloadedLabels:m}),c[0]=m,c[1]=e,c[2]=n):n=c[2],n}try{m.displayName||(m.displayName="LabelPickerTsqWithRelayWrapper")}catch{}function p(e){let a,l=(0,s.c)(2);return l[0]!==e?(a=(0,i.jsx)(m,{...e}),l[0]=e,l[1]=a):a=l[1],a}try{p.displayName||(p.displayName="LabelPicker")}catch{}},50167:(e,a,l)=>{l.d(a,{q:()=>n});let n={TemplatePicker:"TemplatePicker",IssueCreation:"IssueCreation",IssueDuplication:"IssueDuplication"}},51802:(e,a,l)=>{l.d(a,{Y:()=>n});let n={issueBody:"issue-body",bodyLoading:"body-loading",commentBox:(e="")=>`markdown-editor-${e}`,projectTitle:"project-title"}},52590:(e,a,l)=>{l.d(a,{v:()=>r});let n={fragment:{argumentDefinitions:t=[{defaultValue:null,kind:"LocalArgument",name:"input"}],kind:"Fragment",metadata:null,name:"updateIssueMilestoneRelayMutation",selections:i=[{alias:null,args:[{kind:"Variable",name:"input",variableName:"input"}],concreteType:"UpdateIssuePayload",kind:"LinkedField",name:"updateIssue",plural:!1,selections:[{alias:null,args:null,concreteType:"Issue",kind:"LinkedField",name:"issue",plural:!1,selections:[c={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,concreteType:"Milestone",kind:"LinkedField",name:"milestone",plural:!1,selections:[c,{alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"closed",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"dueOn",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"progressPercentage",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"closedAt",storageKey:null}],storageKey:null}],storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:t,kind:"Operation",name:"updateIssueMilestoneRelayMutation",selections:i},params:{id:"15f7936034547bc129d53f9c6b14fba9",metadata:{},name:"updateIssueMilestoneRelayMutation",operationKind:"mutation",text:null}};n.hash="253dc6aa9f06016bb138f16bb1697b39";var t,c,i,s=l(18312);function r({environment:e,input:{issueId:a,milestone:l,clientMutationId:t},onError:c,onCompleted:i}){return(0,s.commitMutation)(e,{mutation:n,variables:{input:{id:a,milestoneId:l?l.id:null,clientMutationId:t}},optimisticResponse:{updateIssue:{issue:{id:a,milestone:l?{id:l.id,title:l.title,closed:l.closed,dueOn:l.dueOn,progressPercentage:l.progressPercentage,url:l.url,closedAt:l.closedAt}:null}}},onError:e=>c&&c(e),onCompleted:e=>i&&i(e)})}},53331:(e,a,l)=>{l.d(a,{A:()=>i,K:()=>t});var n=l(50467);function t(e){let a=[...e.querySelectorAll("meta[name=html-safe-nonce]")].map(e=>e.content);if(a.length<1)throw Error("could not find html-safe-nonce on document");return a}let c=class ResponseError extends Error{constructor(e,a){super(`${e} for HTTP ${a.status}`),(0,n._)(this,"response",void 0),this.response=a,this.name="ResponseError"}};function i(e,a,l=!1){let n=a.headers.get("content-type")||"";if(!l&&!n.startsWith("text/html"))throw new c(`expected response with text/html, but was ${n}`,a);if(l&&!(n.startsWith("text/html")||n.startsWith("application/json")))throw new c(`expected response with text/html or application/json, but was ${n}`,a);let t=a.headers.get("x-html-safe");if(t){if(!e.includes(t))throw new c("response X-HTML-Safe nonce did not match",a)}else throw new c("missing X-HTML-Safe nonce",a)}},58335:(e,a,l)=>{l.d(a,{l:()=>b});var n=l(74848),t=l(59672),c=l(83494),i=l(38621),s=l(86877),r=l(46720),o=l(84268),d=l(21373),u=l(10095),m=l(12683),p=l(34164),g=l(96540),y=l(89064),h=l(98338),f=l(92858),k=l(96480);let b=({className:e,sx:a,hideCreateMore:l=!1,onClose:b})=>{let{createMore:z,setCreateMore:F,createMoreCreatedPath:I,onCreateAction:S,isSubmitting:C,isFileUploading:v,isSubIssue:x,optionConfig:{insidePortal:j}}=(0,k.a)(),[M,T]=(0,g.useState)(!1),_=(0,g.useRef)(null),N=()=>!C&&(!v||(T(!0),!1)),K=async()=>{N()&&S?.current?.onCreate(C,z)};(0,g.useEffect)(()=>{_.current&&!v&&!C&&M&&(T(!1),_.current.dispatchEvent(new MouseEvent("click",{bubbles:!0,cancelable:!0})))},[v,C,M]);let L={"github:submit-form":K};return l||(L["issue-create:submit-and-create-more"]=()=>{F(!0),N()&&S?.current?.onCreate(C,!0)}),(0,n.jsxs)("div",{className:(0,p.$)("CreateIssueFooter-module__container--C49xM",e,"CreateIssueFooter-module__CreateIssueFooterContainer--iM6Iv"),children:[(0,n.jsx)(c.ak,{commands:L}),M&&(0,n.jsxs)("div",{className:"CreateIssueFooter-module__fileUploadWarningSection--M7r9j",children:[(0,n.jsx)(u.A,{icon:i.InfoIcon,size:16}),(0,n.jsx)("span",{className:"CreateIssueFooter-module__warningMessageText--fKwCF",children:h.k.fileUploadWarning})]}),(0,n.jsxs)(m.az,{sx:{...a},className:"CreateIssueFooter-module__mainContentWrapper--cs_cN",children:[!l&&(0,n.jsxs)(m.az,{sx:{ml:2*!j},className:"CreateIssueFooter-module__checkboxAndLinksSection--TMq5G",children:[(0,n.jsxs)(s.A,{className:"CreateIssueFooter-module__FormControl--g1A8W",children:[(0,n.jsx)(r.A,{"data-testid":f.Y.createMoreIssuesCheckbox,checked:z,onChange:()=>{F(!z)},className:"CreateIssueFooter-module__Checkbox--RNE52"}),(0,n.jsx)(s.A.Label,{children:x?y.l.createMoreSubIssues:y.l.createMore})]}),(0,n.jsx)("div",{"data-testid":f.Y.issueCreatedAnnouncement,className:"sr-only","aria-live":"polite","aria-atomic":"true",role:"status",children:I.number?h.k.lastIssueCreated(I.number):null}),I.number?(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)("span",{className:"CreateIssueFooter-module__separatorDot--HAWps",children:"\xb7"}),(0,n.jsx)(o.A,{href:(0,t.dRG)({owner:I.owner,repo:I.repo,issueNumber:I.number}),"data-testid":f.Y.issueCreatedLink,children:h.k.lastIssueCreated(I.number)})]}):null]}),(0,n.jsxs)("div",{className:"CreateIssueFooter-module__actionButtonsContainer--UzT1K",children:[b&&(0,n.jsx)(d.Q,{onClick:()=>b(),children:y.l.cancel}),(0,n.jsx)(c.cQ,{commandId:"github:submit-form",variant:"primary",inactive:C||v,"data-testid":f.Y.createIssueButton,ref:_,showKeybindingHint:!0,children:y.l.create})]})]})]})};try{b.displayName||(b.displayName="CreateIssueFooter")}catch{}},59464:(e,a,l)=>{l.d(a,{or:()=>eo,vN:()=>ed});var n,t,c,i,s,r,o,d,u,m,p,g,y,h,f,k,b,z,F,I,S,C,v,x,j,M,T,_=l(74848);let N={fragment:{argumentDefinitions:[n={defaultValue:!1,kind:"LocalArgument",name:"includeTemplates"},t={defaultValue:null,kind:"LocalArgument",name:"name"},c={defaultValue:null,kind:"LocalArgument",name:"owner"}],kind:"Fragment",metadata:null,name:"CreateIssueDialogEntryQuery",selections:[{alias:null,args:i=[{kind:"Variable",name:"name",variableName:"name"},{kind:"Variable",name:"owner",variableName:"owner"}],concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[s={alias:null,args:null,kind:"ScalarField",name:"hasAnyTemplates",storageKey:null},r={alias:null,args:null,kind:"ScalarField",name:"isBlankIssuesEnabled",storageKey:null},o={alias:null,args:null,kind:"ScalarField",name:"hasIssuesEnabled",storageKey:null},{kind:"InlineDataFragmentSpread",name:"RepositoryPickerRepository",selections:[d={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},u={alias:null,args:null,kind:"ScalarField",name:"databaseId",storageKey:null},m={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},p={alias:null,args:null,kind:"ScalarField",name:"nameWithOwner",storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"owner",plural:!1,selections:[u,g={alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null},y={alias:null,args:[{kind:"Literal",name:"size",value:64}],kind:"ScalarField",name:"avatarUrl",storageKey:"avatarUrl(size:64)"},h={alias:null,args:null,kind:"ScalarField",name:"issueTypesEnabled",storageKey:null}],storageKey:null},f={alias:null,args:null,kind:"ScalarField",name:"isLocked",storageKey:null},k={alias:null,args:null,kind:"ScalarField",name:"isPrivate",storageKey:null},b={alias:null,args:null,kind:"ScalarField",name:"visibility",storageKey:null},z={alias:null,args:null,kind:"ScalarField",name:"isArchived",storageKey:null},F={alias:null,args:null,kind:"ScalarField",name:"isInOrganization",storageKey:null},o,s,I={alias:null,args:null,kind:"ScalarField",name:"slashCommandsEnabled",storageKey:null},S={alias:null,args:null,kind:"ScalarField",name:"viewerCanPush",storageKey:null},r,C={alias:null,args:[{kind:"Literal",name:"action",value:"create an issue"}],kind:"ScalarField",name:"viewerInteractionLimitReasonHTML",storageKey:'viewerInteractionLimitReasonHTML(action:"create an issue")'},v={alias:null,args:null,concreteType:"IssueCreationPermissions",kind:"LinkedField",name:"viewerIssueCreationPermissions",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"labelable",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"milestoneable",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"assignable",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"triageable",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"typeable",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"canSetIssueFields",storageKey:null}],storageKey:null},x={alias:null,args:null,kind:"ScalarField",name:"shortDescriptionHTML",storageKey:null}],args:null,argumentDefinitions:[]},{args:[{kind:"Variable",name:"includeTemplates",variableName:"includeTemplates"}],kind:"FragmentSpread",name:"CreateIssueDialog"}],storageKey:null}],type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:[c,t,n],kind:"Operation",name:"CreateIssueDialogEntryQuery",selections:[{alias:null,args:i,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[s,r,o,d,u,m,p,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"owner",plural:!1,selections:[j={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},u,g,y,h,d],storageKey:null},f,k,b,z,F,I,S,C,v,x,{condition:"includeTemplates",kind:"Condition",passingValue:!0,selections:[{alias:null,args:null,concreteType:"IssueForm",kind:"LinkedField",name:"issueForms",plural:!0,selections:[j,M={alias:null,args:null,kind:"ScalarField",name:"filename",storageKey:null},m,{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"IssueTemplate",kind:"LinkedField",name:"issueTemplates",plural:!0,selections:[j,M,m,T={alias:null,args:null,kind:"ScalarField",name:"about",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isSecurityPolicyEnabled",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"securityPolicyUrl",storageKey:null},{alias:null,args:null,concreteType:"RepositoryContactLink",kind:"LinkedField",name:"contactLinks",plural:!0,selections:[m,T,{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null}],storageKey:null}]}],storageKey:null}]},params:{id:"050c2ef0f45554f8ab51c2e2c48bc886",metadata:{},name:"CreateIssueDialogEntryQuery",operationKind:"query",text:null}};N.hash="3637b8207b4416b73b8db4727054b1cd";var K=l(81171),L=l(73189),w=l(59672),P=l(96540),A=l(18312),E=l(79403),V=l(49246),R=l(50167),D=l(90651),O=l(35669);let B={argumentDefinitions:[{defaultValue:!1,kind:"LocalArgument",name:"includeTemplates"}],kind:"Fragment",metadata:null,name:"CreateIssueDialog",selections:[{args:[{kind:"Variable",name:"includeTemplates",variableName:"includeTemplates"}],kind:"FragmentSpread",name:"CreateIssue"}],type:"Repository",abstractKey:null};B.hash="2462dd98bf9bee7cbb97c2e845715e7c";var $=l(56149),U=l(98107);l(69487);var q=l(96480),H=l(17831),W=l(62670),G=l(58335),Q=l(3872),Y=l(98755),X=l(69599),Z=l(83494),J=l(38621),ee=l(26108),ea=l(57387),el=l(89064),en=l(98338),et=l(81724),ec=l(94007);let ei="CreateIssueDialogHeader-module__CopyToClipboardButton--P4HRy",es=({navigate:e,dialogLabelId:a,onClose:l})=>{let{displayMode:n,setDisplayMode:t,optionConfig:c,isSubIssue:i}=(0,q.a)(),{repository:s,repositoryAbsolutePath:r,template:o,resetMetadata:d,setTemplate:u}=(0,H.u)(),m=(0,X.G7)("memex_default_issue_create_repository"),p=(0,P.useCallback)(()=>{l("close-button")},[l]),g=(0,P.useMemo)(()=>(0,ec.jk)(r),[r]),y=n===R.q.TemplatePicker&&void 0!==s,h=n===R.q.IssueCreation&&c.showFullScreenButton&&e!==L.l&&void 0!==s,f=(0,P.useCallback)(()=>{d({repository:s,selectedRepository:s}),u(void 0),t(R.q.TemplatePicker)},[d,u,t,s]),k=(0,P.useMemo)(()=>{let e=i?"sub-issue":"issue";if(n===R.q.TemplatePicker||!s?.nameWithOwner){let a=c.issueCreateArguments?.initialValues?.title;return en.k.issueCreateDialogTitleTemplatePane(e)+(a?` - "${a}"`:"")}let a=o&&o.kind!==et.t7.BlankIssue?o.name:void 0;return n===R.q.IssueDuplication?en.k.issueCreateDialogTitleDuplicationPane(s.nameWithOwner,e):en.k.issueCreateDialogTitleCreationPane(s.nameWithOwner,a,e)},[n,i,s?.nameWithOwner,o,c]);return(0,_.jsxs)(ea.l.Header,{children:[(0,_.jsx)(Z.ak,{commands:{"issue-create:open-fullscreen":()=>{if(!h)return;let a=`/${s.nameWithOwner}/issues/new`,l=o&&o.kind!==et.t7.BlankIssue?o.fileName:void 0;e(l?`${a}?template=${encodeURIComponent(l)}`:a)}}}),(0,_.jsxs)("div",{className:"CreateIssueDialogHeader-module__CreateIssueDialogHeaderContainer--_BhIA",children:[m&&n===R.q.IssueCreation&&(0,_.jsx)(ee.K,{icon:J.ArrowLeftIcon,"aria-label":"Back to templates",variant:"invisible",onClick:f,className:ei}),(0,_.jsx)("div",{className:"CreateIssueDialogHeader-module__dialogTitleSection--M7S4F",children:(0,_.jsx)(ea.l.Title,{id:a,children:k})}),y&&(0,_.jsx)(Y.T,{textToCopy:g,ariaLabel:el.l.copyUrl,icon:J.CopyIcon,tooltipProps:{direction:"n"},className:ei}),h&&(0,_.jsx)(Z.N5,{variant:"invisible",commandId:"issue-create:open-fullscreen",icon:J.ScreenFullIcon,className:ei}),(0,_.jsx)(ea.l.CloseButton,{onClose:p})]})]})};try{es.displayName||(es.displayName="CreateIssueDialogHeader")}catch{}let er=({onCreateSuccess:e,onCancel:a,navigate:l,currentRepository:n,isNavigatingToNew:t,returnFocusRef:c,...i})=>{let{optionConfig:s,initialDefaultDisplayMode:r,setDisplayMode:o,displayMode:d,setCreateMore:u}=(0,q.a)(),{usedStorageKeyPrefix:m}=(0,H.u)(),p=(0,A.useFragment)(B,n),g=(0,P.useCallback)(()=>{u(!1),o(r),a()},[r,a,u,o]),{onSafeClose:y}=(0,Q.Z)({storageKeyPrefix:m,issueFormRef:i.issueFormRef,onCancel:g}),h=(0,P.useCallback)(({issue:a,createMore:l})=>{e({issue:a,createMore:l}),l||o(r)},[r,e,o]),f={...i,onCancel:y},k=(0,P.useMemo)(()=>!t||!s.canBypassTemplateSelection,[t,s.canBypassTemplateSelection]);return(0,_.jsx)($.ZL,{children:(0,_.jsx)(U.lG,{returnFocusRef:c,renderHeader:e=>(0,_.jsx)(es,{navigate:l,...e}),renderFooter:()=>d===R.q.IssueCreation||d===R.q.IssueDuplication?(0,_.jsx)(U.lG.Footer,{children:(0,_.jsx)(G.l,{onClose:()=>y(),...i})}):null,renderBody:()=>(0,_.jsx)("div",{className:`${d===R.q.IssueCreation||d===R.q.IssueDuplication?"p-3":"p-0"}`,children:(0,_.jsx)(W.E,{onCreateSuccess:h,navigate:l,currentRepository:p,...f})}),onClose:y,width:"xlarge",height:"auto",sx:{visibility:k?"visible":"hidden"},className:"CreateIssueDialog-module__CreateIssueDialogContainer--paAFp"})})};try{er.displayName||(er.displayName="CreateIssueDialog")}catch{}let eo=({...e})=>(0,_.jsx)(P.Suspense,{children:(0,_.jsx)(ed,{...e})}),ed=({navigate:e,isCreateDialogOpen:a,setIsCreateDialogOpen:l,onCancel:n,onCreateSuccess:t,onCreateError:c,optionConfig:i,isNavigatingToNew:s,setIsNavigatingToNew:r,returnFocusRef:o})=>{let d=(0,A.useRelayEnvironment)(),[u,m]=(0,P.useState)(null),[p,g,y]=(0,A.useQueryLoader)(N),h=(0,D.S)(i),f=h.showRepositoryPicker;(0,P.useEffect)(()=>{let e=async()=>{m(await (0,K.St)(d,{first:E.tT.repositoriesPreloadCount,hasIssuesEnabled:!0}))};f&&e()},[]);let k=(0,P.useMemo)(()=>h.issueCreateArguments?.repository?{owner:h.issueCreateArguments.repository.owner,name:h.issueCreateArguments.repository.name}:null,[h.issueCreateArguments?.repository]);(0,P.useEffect)(()=>(k&&g({...k,includeTemplates:!0},{fetchPolicy:"store-or-network"}),()=>y()),[y,k,g]);let b=()=>{n?.(),l(!1)};return a&&(!f||u)&&(p||!k)?(0,_.jsx)(eu,{createIssueProps:{topRepositories:u,onCreateSuccess:({issue:a,createMore:l})=>{t?t({issue:a,createMore:l}):l||(b(),e((0,w.dRG)({owner:a.repository.owner.login,repo:a.repository.name,issueNumber:a.number})))},onCreateError:e=>c?.(e),onCancel:b,navigate:e,isNavigatingToNew:s,setIsNavigatingToNew:r},config:h,currentRepoQueryRef:p??null,returnFocusRef:o}):null},eu=({currentRepoQueryRef:e,...a})=>e?(0,_.jsx)(em,{currentRepoQueryRef:e,...a}):(0,_.jsx)(ep,{currentRepoData:null,...a}),em=({currentRepoQueryRef:e,...a})=>{let l=(0,A.usePreloadedQuery)(N,e);return(0,_.jsx)(ep,{currentRepoData:l,...a})},ep=({createIssueProps:e,config:a,currentRepoData:l,returnFocusRef:n})=>{let t=e.navigate??L.l,c=l&&l.repository?(0,K.Jo)(l.repository):null,i=(0,P.useRef)(null),s={repository:c??void 0,template:void 0,parentIssue:a.issueCreateArguments?.parentIssue},r={...e,issueFormRef:i,hideCreateMore:a.hideCreateMore},o=l?.repository,d=!1;return(o?.hasIssuesEnabled&&a.defaultDisplayMode!==R.q.IssueDuplication&&(d=t!==L.l&&!!c&&!!o&&!o.hasAnyTemplates&&o.isBlankIssuesEnabled),(0,P.useEffect)(()=>{if(d&&c){let e=(0,O.H_)({includeRepository:!1,repository:c,templateFileName:void 0,...a.issueCreateArguments?.initialValues});t(`/${c.nameWithOwner}/issues/new${e?`?${e}`:""}`)}},[t,d,c,a.issueCreateArguments?.initialValues]),d)?null:(0,_.jsx)(V.S,{optionConfig:a,overrideFallbackDisplaymode:R.q.TemplatePicker,preselectedData:s,children:(0,_.jsx)(er,{currentRepository:l?.repository,...r,returnFocusRef:n})})};try{eo.displayName||(eo.displayName="CreateIssueDialogEntry")}catch{}try{ed.displayName||(ed.displayName="CreateIssueDialogEntryInternal")}catch{}try{eu.displayName||(eu.displayName="CreateIssueEntry")}catch{}try{em.displayName||(em.displayName="CreateIssueEntryWithRepo")}catch{}try{ep.displayName||(ep.displayName="CreateIssueEntryInternal")}catch{}},61491:(e,a,l)=>{l.d(a,{J:()=>c});var n=l(96379),t=l(47723);async function c(e,a,l,c){try{let i=await (0,n.lS)(`/${e}/${a}${t.Ct}`,{method:"POST",body:{issue_ids:l,repo_name_with_owner:c.targetRepo,base_ref:c.targetBranch,custom_instructions:c.instructions,custom_agent:c.customAgent,agent_id:c.agentId,model:c.model}});if(i.ok){let e=await i.json();return{ok:!0,status:i.status,data:e}}{let e;try{let a=await i.json();return e=a.error||`Request failed with status ${i.status}`,{ok:!1,status:i.status,errorMessage:e,jobs:a.jobs||[]}}catch{return e=`Request failed with status ${i.status}`,{ok:!1,status:i.status,errorMessage:e}}}}catch(e){return{ok:!1,status:0,errorMessage:e instanceof Error?e.message:"An unexpected error occurred"}}}},62180:(e,a,l)=>{l.d(a,{x:()=>o});var n=l(74848),t=l(51112),c=l(65826),i=l(96540),s=l(67702);let r=[];function o({tone:e,...a}){let[l,o]=(0,i.useState)(),d=(0,s.P)(void 0!==l),{calculateSuggestions:u,trigger:m}=(0,c.xf)(d.isPending?"loading":d.data??r,{tone:e}),p=(0,i.useMemo)(()=>void 0!==l?u(l):null,[l,u]);return(0,n.jsx)(t.a,{triggers:[m],suggestions:p,onShowSuggestions:({query:e})=>o(e),onHideSuggestions:()=>o(void 0),...a})}try{o.displayName||(o.displayName="EmojiAutocomplete")}catch{}},62559:(e,a,l)=>{l.d(a,{KG:()=>o,O_:()=>c,QK:()=>r,iy:()=>s,sT:()=>i,wY:()=>t});let n={maxBodyLength:65536,maxIssueTitleLength:256,maxViewTitleLength:1024},t={...n,titleCanNotBeEmpty:"Title can not be empty",fieldCanNotBeEmpty:"Field can not be empty",issueTitleExceedsMaxLength:`Title can not be longer than ${n.maxIssueTitleLength} characters`,viewTitleExceedsMaxLength:`Title can not be longer than ${n.maxViewTitleLength} characters`,issueBodyExceedsMaxLength:`Body can not be longer than ${n.maxBodyLength} characters`,fieldExceedsMaxLength:`Field can not be longer than ${n.maxBodyLength} characters`,commentBodyEmpty:"Comment can not be empty",checkboxInAGroupMustBeSelected:"A required checkbox is missing",missingDropdownSelection:"An option must be selected",noChangesToSave:"No changes to save"};function c(e){return 0===e.trim().length?{isValid:!1,errorMessage:t.titleCanNotBeEmpty}:e.length>t.maxIssueTitleLength?{isValid:!1,errorMessage:t.issueTitleExceedsMaxLength}:{isValid:!0}}function i(e,a){return 0===e.trim().length&&a?{isValid:!1,errorMessage:t.fieldCanNotBeEmpty}:e.length>t.maxBodyLength?{isValid:!1,errorMessage:t.fieldExceedsMaxLength}:{isValid:!0}}function s(e){return 0===e.trim().length?{isValid:!1,errorMessage:t.titleCanNotBeEmpty}:e.length>t.maxViewTitleLength?{isValid:!1,errorMessage:t.viewTitleExceedsMaxLength}:{isValid:!0}}function r(e){return e.length>t.maxBodyLength?{isValid:!1,errorMessage:t.issueBodyExceedsMaxLength}:{isValid:!0}}function o(e){return 0===e.length?{isValid:!1,errorMessage:t.commentBodyEmpty}:{isValid:!0}}},62670:(e,a,l)=>{l.d(a,{E:()=>ek,d:()=>ef});var n,t,c,i,s,r,o,d,u,m,p,g,y,h,f,k,b,z,F,I,S,C,v,x,j,M,T,_,N,K,L,w,P,A,E,V,R,D=l(74848);let O=(n={defaultValue:null,kind:"LocalArgument",name:"filename"},t={defaultValue:null,kind:"LocalArgument",name:"repoId"},c=[{kind:"Variable",name:"id",variableName:"repoId"}],i=[{kind:"Variable",name:"filename",variableName:"filename"}],s={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},o={alias:null,args:null,kind:"ScalarField",name:"filename",storageKey:null},d={alias:null,args:null,kind:"ScalarField",name:"body",storageKey:null},u={alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},f={alias:null,args:[m={kind:"Literal",name:"first",value:20},{kind:"Literal",name:"orderBy",value:{direction:"ASC",field:"NAME"}}],concreteType:"LabelConnection",kind:"LinkedField",name:"labels",plural:!1,selections:[{alias:null,args:null,concreteType:"LabelEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:"Label",kind:"LinkedField",name:"node",plural:!1,selections:[p={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},g={alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null},r={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"nameHTML",storageKey:null},y={alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null},h={alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null}],storageKey:null}],storageKey:null}],storageKey:'labels(first:20,orderBy:{"direction":"ASC","field":"NAME"})'},I={alias:null,args:k=[{kind:"Literal",name:"first",value:10}],concreteType:"UserConnection",kind:"LinkedField",name:"assignees",plural:!1,selections:[{alias:null,args:null,concreteType:"UserEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:"User",kind:"LinkedField",name:"node",plural:!1,selections:[{kind:"InlineFragment",selections:[s,p,b={alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null},r,z={alias:null,args:null,kind:"ScalarField",name:"profileResourcePath",storageKey:null},F={alias:null,args:[{kind:"Literal",name:"size",value:64}],kind:"ScalarField",name:"avatarUrl",storageKey:"avatarUrl(size:64)"}],type:"Actor",abstractKey:"__isActor"}],storageKey:null}],storageKey:null}],storageKey:"assignees(first:10)"},S={alias:null,args:null,kind:"ScalarField",name:"isEnabled",storageKey:null},v={kind:"InlineFragment",selections:C=[p,r,{alias:null,args:null,kind:"ScalarField",name:"dataType",storageKey:null}],type:"IssueFieldText",abstractKey:null},T={alias:null,args:null,concreteType:"IssueType",kind:"LinkedField",name:"type",plural:!1,selections:[p,r,S,y,g,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"pinnedFields",plural:!0,selections:[s,v,x={kind:"InlineFragment",selections:C,type:"IssueFieldSingleSelect",abstractKey:null},j={kind:"InlineFragment",selections:C,type:"IssueFieldDate",abstractKey:null},M={kind:"InlineFragment",selections:C,type:"IssueFieldNumber",abstractKey:null}],storageKey:null}],storageKey:null},_={kind:"ClientExtension",selections:[{alias:null,args:null,kind:"ScalarField",name:"__id",storageKey:null}]},N={alias:null,args:[m],concreteType:"ProjectV2Connection",kind:"LinkedField",name:"projects",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2Edge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:"ProjectV2",kind:"LinkedField",name:"node",plural:!1,selections:[p,u,{alias:null,args:null,kind:"ScalarField",name:"closed",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"number",storageKey:null},h,{alias:null,args:null,kind:"ScalarField",name:"viewerCanUpdate",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasReachedItemsLimit",storageKey:null},s],storageKey:null}],storageKey:null}],storageKey:"projects(first:20)"},K={alias:null,args:k,concreteType:"UserConnection",kind:"LinkedField",name:"assignees",plural:!1,selections:[{alias:null,args:null,concreteType:"UserEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:"User",kind:"LinkedField",name:"node",plural:!1,selections:[p,{kind:"InlineFragment",selections:[s,b,r,z,F],type:"Actor",abstractKey:"__isActor"}],storageKey:null}],storageKey:null}],storageKey:"assignees(first:10)"},L={alias:null,args:null,concreteType:"IssueType",kind:"LinkedField",name:"type",plural:!1,selections:[p,r,S,y,g,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"pinnedFields",plural:!0,selections:[s,v,x,j,M,{kind:"InlineFragment",selections:[p],type:"Node",abstractKey:"__isNode"}],storageKey:null}],storageKey:null},{fragment:{argumentDefinitions:[n,t],kind:"Fragment",metadata:null,name:"CreateIssueQuery",selections:[{alias:null,args:c,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[{kind:"InlineFragment",selections:[{kind:"InlineDataFragmentSpread",name:"useHandleTemplateChange",selections:[{alias:null,args:i,concreteType:"IssueTemplate",kind:"LinkedField",name:"issueTemplate",plural:!1,selections:[{kind:"InlineDataFragmentSpread",name:"useHandleTemplateChangeIssueTemplate",selections:[s,r,o,d,u,f,I,T,_],args:null,argumentDefinitions:[]}],storageKey:null},{alias:null,args:i,concreteType:"IssueForm",kind:"LinkedField",name:"issueForm",plural:!1,selections:[{kind:"InlineDataFragmentSpread",name:"useHandleTemplateChangeIssueForm",selections:[s,r,o,u,{kind:"InlineDataFragmentSpread",name:"IssueFormElements_templateElements",selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"elements",plural:!0,selections:[s,{kind:"InlineFragment",selections:[{args:null,kind:"FragmentSpread",name:"TextInputElement_input"}],type:"IssueFormElementInput",abstractKey:null},{kind:"InlineFragment",selections:[{args:null,kind:"FragmentSpread",name:"TextAreaElement_input"}],type:"IssueFormElementTextarea",abstractKey:null},{kind:"InlineFragment",selections:[{args:null,kind:"FragmentSpread",name:"MarkdownElement_input"}],type:"IssueFormElementMarkdown",abstractKey:null},{kind:"InlineFragment",selections:[{args:null,kind:"FragmentSpread",name:"DropdownElement_input"}],type:"IssueFormElementDropdown",abstractKey:null},{kind:"InlineFragment",selections:[{args:null,kind:"FragmentSpread",name:"CheckboxesElement_input"}],type:"IssueFormElementCheckboxes",abstractKey:null}],storageKey:null}],args:null,argumentDefinitions:[]},f,I,N,T,_],args:null,argumentDefinitions:[]}],storageKey:null}],args:i,argumentDefinitions:[{defaultValue:"",kind:"LocalArgument",name:"filename"}]}],type:"Repository",abstractKey:null}],storageKey:null}],type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:[t,n],kind:"Operation",name:"CreateIssueQuery",selections:[{alias:null,args:c,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[s,p,{kind:"InlineFragment",selections:[{alias:null,args:i,concreteType:"IssueTemplate",kind:"LinkedField",name:"issueTemplate",plural:!1,selections:[s,r,o,d,u,f,K,L,_],storageKey:null},{alias:null,args:i,concreteType:"IssueForm",kind:"LinkedField",name:"issueForm",plural:!1,selections:[s,r,o,u,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"elements",plural:!0,selections:[s,{kind:"InlineFragment",selections:[w={alias:"itemId",args:null,kind:"ScalarField",name:"id",storageKey:null},P={alias:null,args:null,kind:"ScalarField",name:"label",storageKey:null},A={alias:null,args:null,kind:"ScalarField",name:"descriptionHTML",storageKey:null},E={alias:null,args:null,kind:"ScalarField",name:"placeholder",storageKey:null},V={alias:null,args:null,kind:"ScalarField",name:"value",storageKey:null},R={alias:null,args:null,kind:"ScalarField",name:"required",storageKey:null},_],type:"IssueFormElementInput",abstractKey:null},{kind:"InlineFragment",selections:[w,P,A,E,V,R,{alias:null,args:null,kind:"ScalarField",name:"render",storageKey:null},_],type:"IssueFormElementTextarea",abstractKey:null},{kind:"InlineFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"contentHTML",storageKey:null}],type:"IssueFormElementMarkdown",abstractKey:null},{kind:"InlineFragment",selections:[w,P,A,{alias:null,args:null,kind:"ScalarField",name:"options",storageKey:null},R,{alias:null,args:null,kind:"ScalarField",name:"multiple",storageKey:null},{alias:"defaultOptionIndex",args:null,kind:"ScalarField",name:"default",storageKey:null},_],type:"IssueFormElementDropdown",abstractKey:null},{kind:"InlineFragment",selections:[w,P,A,{alias:"checkboxOptions",args:null,concreteType:"IssueFormElementCheckboxOption",kind:"LinkedField",name:"options",plural:!0,selections:[P,{alias:null,args:null,kind:"ScalarField",name:"labelHTML",storageKey:null},R],storageKey:null},_],type:"IssueFormElementCheckboxes",abstractKey:null}],storageKey:null},f,K,N,L,_],storageKey:null}],type:"Repository",abstractKey:null}],storageKey:null}]},params:{id:"9e2b24072388cd7bd7820cba1fdd5d49",metadata:{},name:"CreateIssueQuery",operationKind:"query",text:null}});O.hash="a07055edea10e255144aa55d8c188972";let B={argumentDefinitions:[{defaultValue:!1,kind:"LocalArgument",name:"includeTemplates"}],kind:"Fragment",metadata:null,name:"CreateIssue",selections:[{condition:"includeTemplates",kind:"Condition",passingValue:!0,selections:[{args:null,kind:"FragmentSpread",name:"TemplatePickerButton"},{args:null,kind:"FragmentSpread",name:"TemplateListPane"}]}],type:"Repository",abstractKey:null};B.hash="8a3f411e97612f6b11008dffb70a56f0";var $=l(69599),U=l(43258),q=l(96540),H=l(18312),W=l(16642),G=l(96480),Q=l(17831),Y=l(81171),X=l(88743),Z=l(98338);let J=Z.k.crossRepoIssueDuplicationDefaultWarning;function ee({onCreateSuccess:e,topRepositories:a,issueFormRef:l,...n}){let{title:t,body:c,setBody:i,repository:s,setNewTitle:r,clearSessionData:o}=(0,Q.u)(),{onRepositoryChange:d,notice:u,sourceRepository:m}=(()=>{let{repository:e,setRepository:a,assignees:l,setAssignees:n,issueType:t,setIssueType:c,issueFields:i,setIssueFields:s,milestone:r,setMilestone:o,labels:d,setLabels:u}=(0,Q.u)(),[m,p]=(0,q.useState)({repository:e,assignees:l,issueType:t,issueFields:i,milestone:r,labels:d}),[g,y]=(0,q.useState)(J),h=(0,q.useCallback)(e=>{if(!e)return;let l=[],t=e.id===m.repository?.id,i=e.owner?.databaseId===m.repository?.owner?.databaseId;t?(n?.(m.assignees),s?.(m.issueFields),c?.(m.issueType),o?.(m.milestone),u?.(m.labels)):(o?.(null),l.push("Milestone","Labels"),i?(n?.(m.assignees),s?.(m.issueFields),c?.(m.issueType)):(n?.([]),s?.([]),c?.(null),l.push("Assignees"),m.repository?.owner?.issueTypesEnabled&&l.push("Type"))),y(l.length>0?Z.k.crossRepoIssueDuplicationWarning(l):J),a(e)},[m,n,s,c,u,o,a]);return(0,q.useEffect)(()=>{e?.databaseId===m.repository?.databaseId&&p({repository:e,assignees:l,issueType:t,issueFields:i,milestone:r,labels:d})},[e,l,t,i,r,d,m.repository?.databaseId]),{onRepositoryChange:h,notice:g,sourceRepository:m.repository}})(),p=(0,$.G7)("issues_react_select_panel_fullscreen_on_narrow"),g=(0,q.useCallback)(e=>e.id===m?.id?e.viewerIssueCreationPermissions.triageable:e.viewerIssueCreationPermissions.triageable&&e.isBlankIssuesEnabled,[m?.id]);return(0,D.jsx)(D.Fragment,{children:a&&s&&(0,D.jsxs)(D.Fragment,{children:[(0,D.jsx)(Y.f0,{"aria-describedby":"Choose repository to duplicate issue in",initialRepository:s,topRepositories:a,onSelect:d,focusRepositoryPicker:!0,enforceAtleastOneSelected:!0,options:{hasIssuesEnabled:!0},notice:{text:u,variant:"warning"},repositoryFilter:g,responsiveOnNarrow:p}),(0,D.jsx)(X.e,{...n,showSimilarIssues:!1,issueFormRef:l,onCreateSuccess:e,repository:s,title:t,setTitle:r,body:c,setBody:i,clearOnCreate:o,focusTitleInput:!1})]})})}try{ee.displayName||(ee.displayName="CreateDuplicateIssueForm")}catch{}var ea=l(94252),el=l(92858),en=l(41057),et=l(89946);let ec=["220px","250px","290px","210px"].map((e,a)=>({id:`skeleton-${a}`,width:e}));function ei(){let{optionConfig:e}=(0,G.a)();return(0,D.jsx)("div",{className:`${et.A.skeletonContainer} ${e.insidePortal&&"ml-3"}`,children:ec.map(({id:e,width:a})=>(0,D.jsx)(en.Q,{height:"xl",width:a},e))})}try{ei.displayName||(ei.displayName="TemplateListLoading")}catch{}var es=l(47685);function er({repository:e,topRepositories:a,organization:l,onRepositorySelected:n,onTemplateSelected:t}){let{optionConfig:c}=(0,G.a)(),i=(0,q.useId)(),s=c.insidePortal?"ml-3":"ml-0";return(0,D.jsxs)("div",{className:c.insidePortal?"pt-2":"","data-testid":el.Y.repositoryAndTemplateDialog,children:[(0,D.jsx)(eo,{className:s,name:"Repository"}),(0,D.jsx)("div",{className:`${c.insidePortal?"mb-2":"mb-3"} ${s}`,children:(0,D.jsx)(Y.f0,{"aria-describedby":i,initialRepository:e,onSelect:n,organization:l,topRepositories:a,focusRepositoryPicker:!0,enforceAtleastOneSelected:!0,options:{hasIssuesEnabled:!0,includeForks:!0}})}),(0,D.jsx)(q.Suspense,{fallback:(0,D.jsx)(ei,{}),children:e&&(0,D.jsx)(es.N,{repositoryId:e.id,onTemplateSelected:t,descriptionId:i})})]})}function eo({name:e,className:a}){return(0,D.jsxs)("div",{className:`pt-1 pb-1 ${a}`,children:[(0,D.jsx)("span",{className:"text-bold",children:e}),(0,D.jsx)("span",{className:"ml-1 mb-1 fgColor-danger",children:"*"})]})}try{er.displayName||(er.displayName="RepositoryAndTemplatePicker")}catch{}try{eo.displayName||(eo.displayName="Field")}catch{}let ed={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"TemplatePickerButton",selections:[{alias:null,args:null,kind:"ScalarField",name:"nameWithOwner",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasAnyTemplates",storageKey:null}],type:"Repository",abstractKey:null};ed.hash="fc9ace64aa764ca00db0ea2f61b67a2b";var eu=l(38621),em=l(21373);l(69487);var ep=l(50167);function eg({repository:e,template:a}){let l=(0,H.useFragment)(ed,e),{setDisplayMode:n}=(0,G.a)(),t=a?a.name:Z.k.blankIssueName,c=(0,q.useRef)(null);return((0,q.useEffect)(()=>{c.current?.focus()},[]),l.hasAnyTemplates)?(0,D.jsx)("div",{"data-testid":"template-picker-button",className:"TemplatePickerButton-module__TemplatePickerButtonContainer--sNawE",children:(0,D.jsxs)(em.Q,{"data-testid":"template-picker-button-el",onClick:()=>n(ep.q.TemplatePicker),leadingVisual:eu.RepoIcon,trailingVisual:eu.PencilIcon,ref:c,children:[l&&(0,D.jsxs)("span",{children:[t," ",(0,D.jsx)("span",{className:"TemplatePickerButton-module__repositoryConnectorText--CKviI",children:"in"})," ",l.nameWithOwner]}),!e&&(0,D.jsx)(D.Fragment,{children:"Select a repository"})]})}):null}try{eg.displayName||(eg.displayName="TemplatePickerButton")}catch{}var ey=l(38759),eh=l(81724);let ef=O,ek=({topRepositories:e,navigate:a,currentRepository:l,onCreateSuccess:n,issueFormRef:t,...c})=>{let i=(0,H.useFragment)(B,l),{addToast:s}=(0,U.Y6)(),r=(0,H.useRelayEnvironment)(),{title:o,body:d,setBody:u,repository:m,setRepository:p,template:g,setNewTitle:y,resetMetadata:h,clearSessionData:f}=(0,Q.u)(),{optionConfig:k,displayMode:b,initialDefaultDisplayMode:z,setDisplayMode:F,setCreateMoreCreatedPath:I}=(0,G.a)(),S=(0,$.G7)("memex_default_issue_create_repository"),C=(0,q.useRef)({defaultIssueCreateRepoEnabled:S,isInitialRender:!0,values:{resetMetadata:h,initialDefaultDisplayMode:z,repository:m,setDisplayMode:F}});(0,q.useEffect)(()=>{if(C.current.isInitialRender){if(C.current.isInitialRender=!1,!C.current.defaultIssueCreateRepoEnabled)return;let{resetMetadata:e,initialDefaultDisplayMode:a,repository:l,setDisplayMode:n}=C.current.values;if(a!==ep.q.IssueDuplication){if(e(),l?.hasAnyTemplates)return void n(ep.q.TemplatePicker);if(!l?.hasAnyTemplates&&l?.isBlankIssuesEnabled)return void n(ep.q.IssueCreation);n(a)}}},[]);let v=(0,q.useCallback)(e=>{e&&(m?.id!==e.id&&(h({repository:C.current.values.repository,selectedRepository:e}),S&&(e.hasAnyTemplates?F(ep.q.TemplatePicker):!e.hasAnyTemplates&&e.isBlankIssuesEnabled&&F(ep.q.IssueCreation))),p(e),I({owner:e.owner.login,repo:e.name,number:void 0}))},[h,m,I,p,F,S]),x=(0,ey.wT)({optionConfig:k,repository:m,navigate:a,setDisplayMode:F}),j=(0,q.useCallback)((e,l)=>{let n;if(m){if(m?.viewerInteractionLimitReasonHTML&&m.viewerInteractionLimitReasonHTML.length>0)return void a(`/${m.owner.login}/${m.name}/issues/new`);if(l!==eh.t7.ContactLink){if(k.issueCreateArguments?.initialValues?.appendTitleToTemplate&&(n={appendTitleToTemplate:k.issueCreateArguments.initialValues.appendTitleToTemplate}),l===eh.t7.BlankIssue)return void x((0,eh.AI)(),n,!0);(0,H.fetchQuery)(r,ef,{repoId:m.id,filename:e}).subscribe({next:e=>{if(!e.node)return;let a=(0,ey.EV)(e.node);a&&x(a,n,!0)},error:()=>{reportError(Error(W.S.unableToLoadSelectedTemplate)),s({type:"error",message:W.S.unableToLoadSelectedTemplate})}})}}},[m,r,k.issueCreateArguments?.initialValues?.appendTitleToTemplate,x,s,a]),M=(0,ea.K)({issueFormRef:t,handleTemplateChange:x,template:g,callback:n});(0,q.useEffect)(()=>{m&&I({owner:m.owner?.login||"",repo:m.name||"",number:void 0})},[m,I]);let T=z===ep.q.IssueCreation;return(0,D.jsxs)("div",{tabIndex:-1,className:"CreateIssue-module__CreateIssueContainer--Laikr",children:[b===ep.q.IssueCreation&&(0,D.jsxs)(D.Fragment,{children:[T&&i&&(0,D.jsx)(eg,{repository:i,template:g}),m&&(0,D.jsx)(X.e,{...c,issueFormRef:t,onCreateSuccess:M,selectedTemplate:g,repository:m,title:o,setTitle:y,body:d,setBody:u,clearOnCreate:f,focusTitleInput:!T,footer:void 0})]}),b===ep.q.IssueDuplication&&(0,D.jsx)(ee,{navigate:a,onCreateSuccess:M,topRepositories:e,issueFormRef:t,...c}),b===ep.q.TemplatePicker&&k.showRepositoryPicker&&e&&(0,D.jsx)(er,{repository:m,onRepositorySelected:v,topRepositories:e,organization:k.scopedOrganization,onTemplateSelected:j}),b===ep.q.TemplatePicker&&!i&&!m&&(0,D.jsx)(er,{repository:m,onRepositorySelected:v,topRepositories:e,organization:k.scopedOrganization,onTemplateSelected:j}),b===ep.q.TemplatePicker&&!k.showRepositoryPicker&&i&&(0,D.jsx)("div",{"data-hpc":!0,children:(0,D.jsx)(es.e,{repository:i,onTemplateSelected:j,...c})})]})};try{ek.displayName||(ek.displayName="CreateIssue")}catch{}},63487:(e,a,l)=>{l.d(a,{qn:()=>E,ku:()=>D,Wj:()=>R,Pv:()=>V});var n,t,c,i,s,r,o,d,u,m=l(74848);let p={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"LabelsSectionFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"body",storageKey:null},{alias:null,args:null,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"owner",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isArchived",storageKey:null}],storageKey:null},{args:null,kind:"FragmentSpread",name:"LabelsSectionAssignedLabels"},{alias:null,args:null,kind:"ScalarField",name:"viewerCanLabel",storageKey:null}],type:"Issue",abstractKey:null};p.hash="89d173296b36dd6c47d64eaffcd8fa74";let g={fragment:{argumentDefinitions:n=[{defaultValue:100,kind:"LocalArgument",name:"assignedLabelPageSize"},{defaultValue:null,kind:"LocalArgument",name:"cursor"},{defaultValue:null,kind:"LocalArgument",name:"id"}],kind:"Fragment",metadata:null,name:"LabelsSectionAssignedLabelsQuery",selections:[{alias:null,args:t=[{kind:"Variable",name:"id",variableName:"id"}],concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[{args:[{kind:"Variable",name:"assignedLabelPageSize",variableName:"assignedLabelPageSize"},{kind:"Variable",name:"cursor",variableName:"cursor"}],kind:"FragmentSpread",name:"LabelsSectionAssignedLabels"}],storageKey:null}],type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:n,kind:"Operation",name:"LabelsSectionAssignedLabelsQuery",selections:[{alias:null,args:t,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[c={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},i={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{kind:"InlineFragment",selections:[{alias:null,args:s=[{kind:"Variable",name:"after",variableName:"cursor"},{kind:"Variable",name:"first",variableName:"assignedLabelPageSize"},{kind:"Literal",name:"orderBy",value:{direction:"ASC",field:"NAME"}}],concreteType:"LabelConnection",kind:"LinkedField",name:"labels",plural:!1,selections:[{alias:null,args:null,concreteType:"LabelEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:"Label",kind:"LinkedField",name:"node",plural:!1,selections:[i,{alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"nameHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},c],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"cursor",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"PageInfo",kind:"LinkedField",name:"pageInfo",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"endCursor",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasNextPage",storageKey:null}],storageKey:null}],storageKey:null},{alias:null,args:s,filters:["orderBy"],handle:"connection",key:"MetadataSectionAssignedLabels_labels",kind:"LinkedHandle",name:"labels"},{kind:"TypeDiscriminator",abstractKey:"__isNode"}],type:"Labelable",abstractKey:"__isLabelable"}],storageKey:null}]},params:{id:"d103ad1af39cfc73beab26bc9a07c330",metadata:{},name:"LabelsSectionAssignedLabelsQuery",operationKind:"query",text:null}};g.hash="20f7e48e94311f48bdecc097fbeb646a";let y={argumentDefinitions:[{defaultValue:100,kind:"LocalArgument",name:"assignedLabelPageSize"},{defaultValue:null,kind:"LocalArgument",name:"cursor"}],kind:"Fragment",metadata:{connection:[{count:"assignedLabelPageSize",cursor:"cursor",direction:"forward",path:r=["labels"]}],refetch:{connection:{forward:{count:"assignedLabelPageSize",cursor:"cursor"},backward:null,path:r},fragmentPathInResult:["node"],operation:g,identifierInfo:{identifierField:"id",identifierQueryVariableName:"id"}}},name:"LabelsSectionAssignedLabels",selections:[{alias:"labels",args:[{kind:"Literal",name:"orderBy",value:{direction:"ASC",field:"NAME"}}],concreteType:"LabelConnection",kind:"LinkedField",name:"__MetadataSectionAssignedLabels_labels_connection",plural:!1,selections:[{alias:null,args:null,concreteType:"LabelEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:"Label",kind:"LinkedField",name:"node",plural:!1,selections:[o={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"nameHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"cursor",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"PageInfo",kind:"LinkedField",name:"pageInfo",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"endCursor",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"hasNextPage",storageKey:null}],storageKey:null}],storageKey:'__MetadataSectionAssignedLabels_labels_connection(orderBy:{"direction":"ASC","field":"NAME"})'},{kind:"InlineFragment",selections:[o],type:"Node",abstractKey:"__isNode"}],type:"Labelable",abstractKey:"__isLabelable"};y.hash="20f7e48e94311f48bdecc097fbeb646a";var h=l(69599),f=l(36285),k=l(67126),b=l(49669),z=l(41305),F=l(43258),I=l(30459),S=l(96540),C=l(34784),v=l(93513),x=l(20177);let j={fragment:{argumentDefinitions:d=[{defaultValue:null,kind:"LocalArgument",name:"input"}],kind:"Fragment",metadata:null,name:"removeLabelsFromLabelableMutation",selections:u=[{alias:null,args:[{kind:"Variable",name:"input",variableName:"input"}],concreteType:"RemoveLabelsFromLabelablePayload",kind:"LinkedField",name:"removeLabelsFromLabelable",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"clientMutationId",storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:d,kind:"Operation",name:"removeLabelsFromLabelableMutation",selections:u},params:{id:"cce4e0522a0bbf89aa28f9e4da5d7beb",metadata:{},name:"removeLabelsFromLabelableMutation",operationKind:"mutation",text:null}};j.hash="9f3ee532d3745a09f037181e4a226f48";var M=l(18312);let T=(0,l(82075).A)("localStorage",{throwQuotaErrorsOnSet:!1,ttl:2592e6});function _(e){return`favorite-labels:${e}`}function N(e){let a=_(e),l=T.getItem(a);if(!l)return{labels:{}};try{return JSON.parse(l)}catch{return{labels:{}}}}var K=l(2495),L=l(16810),w=l(21798);let P=()=>(0,m.jsx)(K.h,{title:v.k.sectionTitles.labels}),A=({sectionHeader:e,onDelete:a,labels:l})=>(0,m.jsx)(L.w,{id:"sidebar-labels-section",sectionHeader:e,emptyText:l.length>0?void 0:v.k.emptySections.labels,children:(0,m.jsx)(z.w,{labels:l,onDelete:a,testId:x.Y.issueLabels})}),E=({repo:e,owner:a,readonly:l,labels:n,onSelectionChange:t,...c})=>{let i=l?(0,m.jsx)(P,{}):(0,m.jsx)(b.t,{repo:e,owner:a,readonly:l,canCreateLabel:!l,labels:n,onSelectionChange:t,showNoMatchItem:!0,anchorElement:(e,a)=>(0,m.jsx)(w.X,{title:v.k.sectionTitles.labels,buttonProps:e,ref:a}),...c});return(0,m.jsx)(A,{sectionHeader:i,labels:n})},V=p,R=y;function D({issue:e,onIssueUpdate:a,insideSidePanel:l,readonly:n}){let{sendAnalyticsEvent:t}=(0,I.s)(),c=(0,C.useFragment)(V,e),{repository:{owner:{login:i},name:s,isArchived:r}}=c,{data:o}=(0,C.usePaginationFragment)(R,c),{id:d,viewerCanLabel:u}=c,p=(0,S.useMemo)(()=>o.labels?.edges?.flatMap(e=>e?.node?[e?.node]:[])||[],[o]),g=(0,C.useRelayEnvironment)(),y=(0,h.G7)("issues_report_sidebar_interactions"),z=(0,h.G7)("issues_react_favorite_labels"),x=n||!u||r,{addToast:K}=(0,F.Y6)(),L=(0,S.useCallback)(e=>{(0,f.N)({environment:g,input:{labelableId:d,labels:e,labelableTypeName:"Issue"},onError:()=>K({type:"error",message:k.S.couldNotUpdateLabels}),onCompleted:()=>{z&&e.length>0&&function(e,a){if(0===a.length)return;let l=N(e),n=Date.now();for(let e of a){let a=l.labels[e];l.labels[e]={labelId:e,count:a?a.count+1:1,lastUsed:n}}let t=_(e);try{T.setItem(t,JSON.stringify(l))}catch{}}(`${i}/${s}`,e.map(e=>e.id)),a?.()}})},[K,g,d,a,i,s,z]),E=(0,h.G7)("issues_react_remove_labels_oneclick"),D=(0,S.useCallback)(e=>{!function({environment:e,input:a,onError:l,onCompleted:n}){let t=e=>{let l=M.ConnectionHandler.getConnectionID(a.labelableId,"MetadataSectionAssignedLabels_labels"),n=e.get(`${l}(orderBy:{"direction":"ASC","field":"NAME"})`);n&&a.labelIds[0]&&M.ConnectionHandler.deleteNode(n,a.labelIds[0])};(0,M.commitMutation)(e,{mutation:j,variables:{input:a},onError:e=>l&&l(e),onCompleted:e=>n&&n(e),updater:t,optimisticUpdater:t})}({environment:g,input:{labelableId:d,labelIds:[e]}})},[g,d]),O=(0,S.useMemo)(()=>{if(x)return(0,m.jsx)(P,{});let e=z?(function(e,a=10,l=4){let n=N(e),t=Date.now()-24*a*36e5;return Object.values(n.labels).filter(e=>e.lastUsed>=t).sort((e,a)=>e.count!==a.count?a.count-e.count:a.lastUsed-e.lastUsed).slice(0,l)})(`${i}/${s}`).map(e=>e.labelId):[];return(0,m.jsx)(b.t,{repo:s,owner:i,readonly:x,labels:p,canCreateLabel:!x,favoriteLabelIds:e,onSelectionChange:L,anchorElement:(e,a)=>(0,m.jsx)(w.X,{title:v.k.sectionTitles.labels,buttonProps:{...e,onClick:a=>{y&&t("analytics.click","ISSUE_SIDEBAR_LABELS_SECTION_EDIT_CLICK"),e.onClick?.(a)}},ref:a}),insidePortal:l,showNoMatchItem:!0})},[x,z,i,s,p,L,l,y,t]);return(0,m.jsx)(A,{sectionHeader:O,onDelete:E&&!x?D:void 0,labels:p})}try{P.displayName||(P.displayName="ReadonlyLabelsSectionHeader")}catch{}try{A.displayName||(A.displayName="LabelsSection")}catch{}try{E.displayName||(E.displayName="CreateIssueLabelsSection")}catch{}try{D.displayName||(D.displayName="EditIssueLabelsSection")}catch{}},65249:(e,a,l)=>{l.d(a,{E:()=>c});var n=l(2635),t=l(79634);function c({additionalConditions:e=[],repositoryVisibility:a,userCanPushToRepo:l}){let c=(0,n.mo)(),i=(0,t.X)();return c?.mode!=="immersive"&&!!i?.current_user_settings?.copilot_show_functionality&&("PUBLIC"!==a||!!l)&&e.every(e=>e)}},66718:(e,a,l)=>{l.d(a,{Ge:()=>n,UI:()=>t,$J:()=>c});function n(e){let a=c(e);if(Number.isNaN(a))return"This field must be a number";if(a<-0x7fffffff||a>0x7fffffff)return"This value must be between -2147483647 and 2147483647";let l=e.split(".")[1];if(l&&l.length>15)return"This floating point value is too precise"}function t(e){return new Blob([e]).size>1024?"This value is too long":void 0}function c(e){return Number(e.replace(/,/g,""))}},66793:(e,a,l)=>{l.d(a,{d:()=>i});var n,t=l(74848),c=l(14307);let i=e=>function(){let a=c.i4.find(a=>a===e),{bg:l,accent:n}=(0,c.Wk)(a);return(0,t.jsx)("div",{style:{"--bg":`${l}`,"--accent":`${n}`},className:"IssueTypePickerItemLeadingVisual-module__issueTypeColorIndicator--ivyh6"})};try{(n=IssueTypePickerItemLeadingVisual).displayName||(n.displayName="IssueTypePickerItemLeadingVisual")}catch{}},67702:(e,a,l)=>{l.d(a,{P:()=>c});var n=l(34418),t=l(97286);function c(e){return(0,t.I)({queryKey:["autocomplete-emojis-for-editor"],enabled:e,queryFn:async()=>Object.entries(await (0,n.X)({queryDeps:{pathname:"/autocomplete/emojis_for_editor"}})).map(([e,[a,l]])=>({name:e,character:l,url:a})),staleTime:1/0})}},68065:(e,a,l)=>{l.d(a,{eH:()=>v,lT:()=>j});var n=l(74848),t=l(69599),c=l(83494),i=l(38621),s=l(86877),r=l(30093),o=l(10576),d=l(26108),u=l(31604),m=l(21373),p=l(34164),g=l(96540),y=l(16810),h=l(21798),f=l(41848),k=l(68384),b=l(29455),z=l(84268),F=l(8645);let I=/^([(['"]{0,3})(.{1,1000}?)([.,:;!?\])"']{0,10})$/;function S(e){if(!e)return null;let a=e.split(/(\s+)/);return(0,n.jsx)(n.Fragment,{children:a.map((e,a)=>{let l=`${e}-${a}`;if(!e.trim())return(0,n.jsx)(g.Fragment,{children:e},l);let{cleanText:t,prefix:c,suffix:i}=function(e){let a=e.match(I);if(!a)return{cleanText:e,prefix:"",suffix:""};let[l,n="",t="",c=""]=a;return{cleanText:t,prefix:n,suffix:c}}(e);if(!t)return(0,n.jsx)(g.Fragment,{children:e},l);let s=(0,F.o2)(t),r=(0,F.ml)(s);return(0,F.Y9)(r)&&(0,F.cE)(r)?(0,n.jsxs)(g.Fragment,{children:[c,(0,n.jsx)(z.A,{href:r,rel:"noopener noreferrer",children:s}),i]},l):(0,n.jsx)(g.Fragment,{children:e},l)})})}try{I.displayName||(I.displayName="PUNCTUATION_REGEX")}catch{}let C=e=>(e=>{let{length:a}=e;return a>255?f.k.textValidationMaxLength(a,255):null})(e),v=({initialValue:e,validate:a=C,className:l,errorPresent:c=!1,readonly:i,...s})=>{let r=(0,t.G7)("issue_fields_compact_view"),o=(0,n.jsx)(j,{initialValue:e,validate:a,renderAnchor:(e,a,l)=>(0,n.jsx)(h.X,{ref:a,title:l,readonly:i,buttonProps:e,errorPresent:c}),...s});return r?(0,n.jsx)(x,{initialValue:e,validate:a,readonly:i,className:l,...s}):(0,n.jsx)(y.w,{sectionHeader:o,className:l,children:e?(0,n.jsx)("span",{className:b.A.issuesFieldText,children:S(e)}):(0,n.jsx)("span",{className:b.A.noValueContainer,children:f.k.setValue})})},x=({fieldId:e,fieldName:a,initialValue:l,onCommit:t,shouldOpen:c=!1,validate:u=C,inputProps:m,readonly:y,className:h,isNumber:z=!1})=>{let[F,I]=(0,g.useState)(!0),[v,x]=(0,g.useState)(!1),j=(0,g.useRef)(null),M=(0,g.useRef)(!1);(0,g.useEffect)(()=>{let e=e=>{v&&(e.preventDefault(),e.returnValue="")};return window.addEventListener("beforeunload",e),()=>{window.removeEventListener("beforeunload",e)}},[v]);let[T,_]=(0,g.useState)(l),N=e=>{let{value:a}=e.target;_(a),a===l?I(!0):I(!1)},K=(0,g.useMemo)(()=>F?null:u(T),[F,T,u]),L=(0,g.useMemo)(()=>!!K,[K]),[w,P]=(0,g.useState)(c),A=(0,g.useCallback)(()=>{F&&_(l),P(!0)},[l,F]),E=(0,g.useCallback)(()=>{_(l),M.current=!0,P(!1),I(!0),x(!1)},[l]),V=(0,g.useCallback)(()=>{P(!1),I(!0),x(!1),t(e,T),M.current=!0},[e,t,T]);(0,g.useLayoutEffect)(()=>{!w&&M.current&&(M.current=!1,j.current?.focus())},[w]);let R=(0,g.useCallback)(e=>{e.stopPropagation(),"Enter"===e.key?(e.preventDefault(),V()):"Escape"===e.key&&E()},[V,E]),D=(0,g.useCallback)(e=>{!e.currentTarget.contains(e.relatedTarget)&&F&&P(!1)},[F]);return(0,n.jsx)(n.Fragment,{children:w&&!y?(0,n.jsx)("div",{onBlur:D,children:(0,n.jsxs)(s.A,{className:(0,p.$)(k.A.issueFieldFormWrapper,k.A.issueFieldFormWrapperClickable,k.A.isEditing,h),children:[(0,n.jsx)(s.A.Label,{className:k.A.issueFieldLabel,children:a}),z?(0,n.jsx)(r.A,{value:T,placeholder:f.k.textEditorPlaceholder,onChange:N,size:"small",onKeyDown:R,className:b.A.issueFieldTextInput,autoFocus:!0,onFocus:e=>e.target.setSelectionRange(e.target.value.length,e.target.value.length),...m}):(0,n.jsx)(o.Ay,{value:T,resize:"none",placeholder:f.k.textEditorPlaceholder,onChange:N,onKeyDown:R,className:(0,p.$)(b.A.issueFieldTextInput,b.A.issueFieldTextTextarea),autoFocus:!0,onFocus:e=>e.target.setSelectionRange(e.target.value.length,e.target.value.length)}),(0,n.jsx)(d.K,{icon:i.CheckIcon,onClick:L?void 0:V,size:"small","aria-disabled":L,inactive:L,"aria-label":f.k.textEditorUpdateButton,className:k.A.issueFieldActionButton}),K&&(0,n.jsx)(s.A.Validation,{variant:"error",className:b.A.issuesFieldTextError,children:K})]})}):y?(0,n.jsxs)("div",{className:(0,p.$)(k.A.issueFieldFormWrapper,h),children:[(0,n.jsx)("p",{className:k.A.issueFieldLabel,children:a}),(0,n.jsx)("div",{className:(0,p.$)(k.A.issueFieldValueText,l&&k.A.hasValue),children:l?S(l):f.k.setValue})]}):(0,n.jsxs)("button",{ref:j,type:"button",className:(0,p.$)(k.A.issueFieldFormWrapper,k.A.issueFieldFormWrapperClickable,h),onClick:A,"aria-label":l?`Edit ${a}`:`Set ${a}`,children:[(0,n.jsx)("span",{className:k.A.issueFieldLabel,children:a}),(0,n.jsx)("span",{className:(0,p.$)(k.A.issueFieldValueText,l&&k.A.hasValue),children:l?S(l):f.k.setValue})]})})},j=({fieldId:e,fieldName:a,initialValue:l,onCommit:t,shouldOpen:i=!1,validate:o=C,inputProps:d,isDraft:p=!1,isNumber:y=!1,renderAnchor:h,overrideWidth:k,onClose:z})=>{let[F,I]=(0,g.useState)(!0),[S,v]=(0,g.useState)(!1);(0,g.useEffect)(()=>{let e=e=>{S&&(e.preventDefault(),e.returnValue="")};return window.addEventListener("beforeunload",e),()=>{window.removeEventListener("beforeunload",e)}},[S]);let[x,j]=(0,g.useState)(l),M=(0,g.useMemo)(()=>F?null:o(x),[F,x,o]),T=(0,g.useMemo)(()=>F||!!M,[F,M]),[_,N]=(0,g.useState)(i),K=(0,g.useCallback)(()=>{t(e,y?null:""),v(!1)},[e,y,t]),L=(0,g.useCallback)(()=>{p?K():(j(l),N(!1),I(!0),v(!1))},[l,p,K]),w=(0,g.useCallback)(()=>{t(e,x),N(!1),I(!0),v(!1)},[e,t,x]),P=(0,g.useCallback)(()=>{F&&j(l),N(!0)},[l,F]),A=(0,g.useCallback)(()=>{(z?.(),p)?K():(F||v(!0),N(!1))},[F,p,z,K]),E=(0,g.useMemo)(()=>({commands:{"github:cancel":L,"github:submit-form":T?void 0:w},keys:{"github:cancel":["Escape"],"github:submit-form":["Enter"]}}),[T,L,w]),V=(0,g.useRef)(null),[R,D]=(0,g.useState)("256px");(0,g.useEffect)(()=>{if(_&&V.current){let e=V.current.getBoundingClientRect().width;e>0&&D(`${e}px`)}},[_]);let O=(0,g.useMemo)(()=>S?`${a} (edited)`:a,[a,S]);return(0,n.jsx)(u.T,{open:_,anchorRef:V,renderAnchor:e=>h(e,V,O),onClose:A,onOpen:P,overlayProps:{style:{width:k??R}},children:(0,n.jsxs)(c.tL,{...E,children:[(0,n.jsx)("div",{className:b.A.issuesFieldTextInputContainer,children:(0,n.jsxs)(s.A,{children:[(0,n.jsx)(s.A.Label,{visuallyHidden:!0,children:f.k.textEditorLabel(a)}),(0,n.jsx)(r.A,{block:!0,value:x,placeholder:f.k.textEditorPlaceholder,onChange:e=>{let{value:a}=e.target;j(a),a===l?I(!0):I(!1)},...d}),M&&(0,n.jsx)(s.A.Validation,{variant:"error",className:b.A.issuesFieldTextError,children:M})]})}),(0,n.jsx)("div",{className:b.A.issuesFieldToolbar,role:"toolbar","aria-label":f.k.textEditorToolbarLabel(a),children:(0,n.jsxs)("div",{className:b.A.issuesFieldToolbarActions,children:[(0,n.jsx)(m.Q,{size:"small",onClick:L,className:b.A.actionButton,trailingVisual:(0,n.jsx)(c.hh,{commandId:"github:cancel"}),children:f.k.textEditorCancelButton}),(0,n.jsx)(m.Q,{size:"small",variant:"primary",onClick:T?void 0:w,"aria-disabled":T,inactive:T,"aria-label":f.k.textEditorUpdateButtonAriaLabel(a),className:b.A.actionButton,trailingVisual:(0,n.jsx)(c.hh,{commandId:"github:submit-form"}),children:f.k.textEditorUpdateButton})]})})]})})};try{v.displayName||(v.displayName="IssueFieldTextEditor")}catch{}try{x.displayName||(x.displayName="IssueFieldCompactTextEditor")}catch{}try{j.displayName||(j.displayName="IssueFieldTextEditorInternal")}catch{}},68245:(e,a,l)=>{l.d(a,{_:()=>c,z:()=>s});var n=l(74848),t=l(16522);let c=(0,l(96540).createContext)("handle"),i={NAME_HANDLE:"name_handle",NAME_AND_HANDLE:"name_handle",HANDLE:"handle"};function s(e){let a,l=(0,t.c)(3),{value:s,children:r}=e,o=s&&i[s.toUpperCase()]||"handle";return l[0]!==r||l[1]!==o?(a=(0,n.jsx)(c,{value:o,children:r}),l[0]=r,l[1]=o,l[2]=a):a=l[2],a}try{c.displayName||(c.displayName="UserNameDisplayContext")}catch{}try{s.displayName||(s.displayName="UserNameDisplayContextProvider")}catch{}},68384:(e,a,l)=>{l.d(a,{A:()=>n});let n={issueFieldFormWrapper:"IssueFieldItem-module__issueFieldFormWrapper--QtLp9",issueFieldFormWrapperClickable:"IssueFieldItem-module__issueFieldFormWrapperClickable--bQOwj",small:"IssueFieldItem-module__small--SjeF0",issueFieldLabel:"IssueFieldItem-module__issueFieldLabel--YZrxM",issueFieldValueText:"IssueFieldItem-module__issueFieldValueText--yu8Lt",isEditing:"IssueFieldItem-module__isEditing--ji_R9",hasValue:"IssueFieldItem-module__hasValue--SfUhj",issueFieldValueBtn:"IssueFieldItem-module__issueFieldValueBtn--ccXFK",issueFieldActionButton:"IssueFieldItem-module__issueFieldActionButton--OTZnS",issueFieldTextError:"IssueFieldItem-module__issueFieldTextError--R_Rhj"}},71651:(e,a,l)=>{l.d(a,{z:()=>d});var n=l(58615),t=l(96379),c=l(96540);let i={emojiTone:0,pasteUrlsAsPlainText:!1,useMonospaceFont:!1},s=new Map,r="/settings/appearance/viewer-settings";async function o(){try{let e=await (0,t.Sr)(r);if(!e.ok)throw Error(`HTTP ${e.status}`);let a=await e.json(),l=function(e){if(!e||"object"!=typeof e)return null;let a="number"==typeof e.emojiTone?e.emojiTone:i.emojiTone,l="boolean"==typeof e.pasteUrlsAsPlainText?e.pasteUrlsAsPlainText:i.pasteUrlsAsPlainText,n="boolean"==typeof e.useMonospaceFont?e.useMonospaceFont:i.useMonospaceFont;return void 0!==e.emojiTone||void 0!==e.pasteUrlsAsPlainText||void 0!==e.useMonospaceFont?{emojiTone:a,pasteUrlsAsPlainText:l,useMonospaceFont:n}:null}(a);if(!l)throw Error("Invalid response payload");return l}catch(e){throw e}}function d(e=!1){let[a,l]=(0,n.M)("user.preferences.viewer-settings",null),[t,u]=(0,c.useState)(!0),[m,p]=(0,c.useState)(!1),g=(0,c.useRef)(!1);e&&(s.clear(),g.current=!1);let y=(0,c.useCallback)(async()=>{let e=s.get(r);try{e||(e=o(),s.set(r,e));let a=await e;l(a),p(!1)}catch{p(!0)}finally{u(!1)}},[l]);return(0,c.useEffect)(()=>{g.current?u(!1):(g.current=!0,y())},[y]),{settings:a||i,loading:t,error:m&&!a}}},72274:(e,a,l)=>{l.d(a,{u:()=>d});let n={fragment:{argumentDefinitions:[],kind:"Fragment",metadata:null,name:"useViewerSafeViewerSharedQuery",selections:t=[{alias:null,args:null,concreteType:"User",kind:"LinkedField",name:"safeViewer",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"profileResourcePath",storageKey:null},{alias:null,args:[{kind:"Literal",name:"size",value:64}],kind:"ScalarField",name:"avatarUrl",storageKey:"avatarUrl(size:64)"}],storageKey:null}],type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:[],kind:"Operation",name:"useViewerSafeViewerSharedQuery",selections:t},params:{id:"e04bcb743a2af95309967488bc0303c0",metadata:{},name:"useViewerSafeViewerSharedQuery",operationKind:"query",text:null}};n.hash="ec14349f609753fe2f861f8c75dc87f5";var t,c=l(30721),i=l(6923),s=l(43755),r=l(96540),o=l(18312);function d(){let e=(0,o.useRelayEnvironment)(),{currentUser:a}=(0,s.J)(),[l,t]=(0,r.useState)(a);return i.X3||l||(0,c.SD)({environment:e,query:n,variables:{}}).subscribe({next:e=>{e.safeViewer&&t(e.safeViewer)}}),l}l(69487)},72690:(e,a,l)=>{l.d(a,{CZ:()=>b});var n,t,c,i,s=l(74848);let r={kind:"InlineDataFragment",name:"IssueSingleSelectFieldPickerOption"};r.hash="d8bcb73a6758269a0f127f7a03e396bc";let o={fragment:{argumentDefinitions:n=[{defaultValue:null,kind:"LocalArgument",name:"id"}],kind:"Fragment",metadata:null,name:"IssueSingleSelectFieldPickerFieldQuery",selections:[{alias:null,args:t=[{kind:"Variable",name:"id",variableName:"id"}],concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[{kind:"InlineFragment",selections:[{alias:null,args:null,concreteType:"IssueFieldSingleSelectOption",kind:"LinkedField",name:"options",plural:!0,selections:[{kind:"InlineDataFragmentSpread",name:"IssueSingleSelectFieldPickerOption",selections:i=[c={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null}],args:null,argumentDefinitions:[]}],storageKey:null}],type:"IssueFieldSingleSelect",abstractKey:null}],storageKey:null}],type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:n,kind:"Operation",name:"IssueSingleSelectFieldPickerFieldQuery",selections:[{alias:null,args:t,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},{kind:"InlineFragment",selections:[{alias:null,args:null,concreteType:"IssueFieldSingleSelectOption",kind:"LinkedField",name:"options",plural:!0,selections:i,storageKey:null}],type:"IssueFieldSingleSelect",abstractKey:null},c],storageKey:null}]},params:{id:"c64e6ba36203e1baee1d8517134d7d4c",metadata:{},name:"IssueSingleSelectFieldPickerFieldQuery",operationKind:"query",text:null}};o.hash="0979e35fc8348ec832d8c8f2a2b59fec";var d=l(69599),u=l(19918),m=l(86391),p=l(81289),g=l(81709),y=l(30721),h=l(96540),f=l(18312),k=l(14709);function b({anchorElement:e,isLazy:a,shouldOpen:l=!1,...n}){return a&&!l?(0,s.jsx)(p.y,{anchorElement:(a,l)=>e(a,l),createChild:()=>(0,s.jsx)(z,{anchorElement:(a,l)=>e(a,l),...n})}):(0,s.jsx)(z,{anchorElement:(a,l)=>e(a,l),...n})}function z({fieldId:e,anchorElement:a,...l}){let n=(0,f.useRelayEnvironment)(),[t,c]=(0,h.useState)(!0),[i,r]=(0,h.useState)(0),[d,m]=(0,h.useState)(!1),[p,k]=(0,h.useState)([]);(0,h.useEffect)(()=>{(0,y.SD)({environment:n,query:o,variables:{id:e}}).subscribe({next:e=>{k(e.node?.options??[]),c(!1),m(!1)},error:()=>{m(!0),c(!1)}})},[n,i,e]);let{createFallbackComponent:b}=(0,g.j)({errorMessage:u.k.cantEditItems("fields"),anchorElement:a,open:!0});return d?b(()=>r(e=>e+1)):(0,s.jsx)(F,{fieldId:e,values:p,isLoading:t,anchorElement:a,...l})}function F({title:e=u.k.fieldSingleSelectHeader,width:a="medium",values:l,fieldName:n,selectedOption:t,onSelectionChange:c,onOpen:i,onClose:o,insidePortal:p,anchorElement:g,isLoading:y}){let[b,z]=(0,h.useState)(""),F=n?u.k.fieldSingleSelectHeaderWithName(n):e,I=l.flatMap(e=>e?[(0,f.readInlineData)(r,e)]:[]),S=(0,h.useMemo)(()=>b?I.filter(e=>e.name&&e.name.toLowerCase().indexOf(b.toLowerCase())>=0):I,[I,b]),C=(0,h.useCallback)(e=>{z(e)},[]),v=(0,h.useCallback)(e=>e.id||"",[]),x=(0,h.useCallback)(e=>({id:e.id,text:e.name,description:e.description||"",descriptionVariant:"block",leadingVisual:(0,k.z)(e.color),source:e}),[]),j=(0,h.useMemo)(()=>{if(t){let e=I.find(e=>e.name===t);if(e)return[e]}return[]},[I,t]),M=(0,h.useRef)(null),T=(0,h.useMemo)(()=>0===S.length,[S]),_=(0,d.G7)("issues_react_select_panel_fullscreen_on_narrow");return(0,s.jsx)(m.O,{loading:y,items:S,initialSelectedItems:j,filterItems:C,title:F,getItemKey:v,convertToItemProps:x,placeholderText:"Filter option",selectionVariant:"single",onSelectionChange:e=>c(e&&e.length>0&&e[0]?e[0]:null),onOpen:i,onClose:o,renderAnchor:e=>g(e,M),insidePortal:p,height:"large",width:a,resultListAriaLabel:"Issue field option results",triggerOpen:!0,selectPanelRef:M,improvedNoMatchAccessibility:T,noMatchMessage:T?{title:"No option found",variant:"empty",body:"Try searching with a different query for results."}:void 0,responsiveOnNarrow:_})}try{b.displayName||(b.displayName="IssueSingleSelectFieldPicker")}catch{}try{z.displayName||(z.displayName="IssueSingleSelectFieldPickerFetcher")}catch{}try{F.displayName||(F.displayName="ItemPickerWrapper")}catch{}},73049:(e,a,l)=>{l.d(a,{A:()=>n});function n(e){if("data"in e)return e;if("errors"in e&&Array.isArray(e.errors)&&e.errors.length>0&&e.errors[0]?.message)throw Error(e.errors[0].message);throw Error("Error in request")}},73454:(e,a,l)=>{l.d(a,{h:()=>u});var n=l(74848),t=l(16522),c=l(38621),i=l(84268),s=l(12683),r=l(10095);let o="ErrorWithRetry-module__retryActionLink--Xys2Y";var d=l(34164);function u(e){let a,l,u,m,p,g=(0,t.c)(10),{message:y,retry:h,sx:f}=e;return g[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)(r.A,{icon:c.AlertFillIcon,className:(0,d.$)("mr-1","ErrorWithRetry-module__errorAlertIcon--Iiexz")}),g[0]=a):a=g[0],g[1]!==y?(l=(0,n.jsxs)("div",{children:[a,(0,n.jsx)("span",{className:"ErrorWithRetry-module__errorMessage--DNJUZ",children:y})]}),g[1]=y,g[2]=l):l=g[2],g[3]===Symbol.for("react.memo_cache_sentinel")?(u=(0,n.jsx)("span",{className:o,children:"Try again"}),g[3]=u):u=g[3],g[4]!==h?(m=(0,n.jsx)(i.A,{as:"button",inline:!0,onClick:h,className:o,children:u}),g[4]=h,g[5]=m):m=g[5],g[6]!==f||g[7]!==l||g[8]!==m?(p=(0,n.jsxs)(s.az,{sx:f,className:"ErrorWithRetry-module__ErrorWithRetryContainer--eDhIy",children:[l,m]}),g[6]=f,g[7]=l,g[8]=m,g[9]=p):p=g[9],p}try{u.displayName||(u.displayName="ErrorWithRetry")}catch{}},73867:(e,a,l)=>{l.d(a,{R:()=>u});var n=l(74848),t=l(19918),c=l(81945),i=l(11529),s=l(62935);let r=({closed:e,givenDate:a,currentDate:l})=>{let c=e?"short":"long",i=e&&!o(a,l)?void 0:"numeric",r=e&&d(l,a)?"auto":"past",u=e?"auto":"elapsed",m=e?"second":d(a,l)?"month":"day";return(0,n.jsx)(s.A,{date:a,day:"numeric",month:c,tense:o(a,l)?void 0:r,year:i,format:u,precision:m,"data-testid":t.k.testIds.relativeTimeDescription})},o=(e,a)=>{let l=a.getFullYear();return e.getFullYear()12*(e.getFullYear()-a.getFullYear())+(e.getMonth()-a.getMonth())>=1;try{r.displayName||(r.displayName="RelativeTimeDescription")}catch{}let u=({closed:e,closedAt:a,dueOn:l,progressPercentage:s,showProgressPercentage:o=!1})=>{let d=e?a:l,{isBrowser:u}=(0,i.V)();if(!d||!g(d))return t.k.milestones.noDueDate;let h=new Date(d),f=new Date,k=!!l&&new Date(d)a?t.k.milestones.milestoneClosed:e?t.k.milestones.pastDue:t.k.milestones.milestoneDue,p=e=>new Date(e).toLocaleDateString("en-us",{month:"long",year:"numeric",day:"numeric"}),g=e=>!isNaN(new Date(e).getTime()),y=(e,a)=>e.getFullYear()===a.getFullYear()&&e.getMonth()===a.getMonth()&&e.getUTCDate()===a.getUTCDate();try{u.displayName||(u.displayName="MilestoneDescription")}catch{}},74731:(e,a,l)=>{l.d(a,{d:()=>t,t:()=>n});let n={queryParams:{org:"org",repo:"repo",template:"template",title:"title",body:"body",assignees:"assignees",labels:"labels",milestone:"milestone",projects:"projects",type:"type",discussion:"discussion",permalink:"permalink"},maxQueryLengthLimits:{title:256,body:65536,assignees:10,labels:20,projects:20}},t=Object.values(n.queryParams)},74807:(e,a,l)=>{l.d(a,{N:()=>j,L:()=>v});var n=l(74848),t=l(16522),c=l(29731),i=l(31223),s=l(34164),r=l(96540);let o="CopilotAnimation-module__activate--dz7l9";function d(e){let a,l,c,i=(0,t.c)(6),{scale:s,state:r}=e,o=void 0===s?1:s,d=32*o,u=1088*o;return i[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)("path",{d:"M5.38 395a3.56 3.56 0 0 1-.42-2.5 7.21 7.21 0 0 1 4.87-5.67c.39-.12.74-.05 1 .29.04.05.1.08.15.13.25 0 .43-.14.57-.33.46-.61 1.1-.95 1.84-1.1 1.69-.36 4.55-.45 5.84.86.36.35.78.64 1.2.9a8.77 8.77 0 0 1 3.4 3.72c.08.17.2.27.37.31.8.22 1.4.83 1.98 1.38.76.7 1.08 1.62 1.14 2.62-.02 1.35-1.04 2.95-2.06 3.8-.21.17-.4.33-.4.65 0 .14-.14.31-.25.42-.23.21-.46.43-.73.58a21.16 21.16 0 0 1-4.44 1.98c-1.1.3-2.19.67-3.28 1-.93.27-1.86.46-2.83.46-.2 0-.41.04-.62.06-1.84.2-3.73.08-5.48-.55a9.84 9.84 0 0 1-1.6-.86c-.25-.16-.42-.4-.57-.65-.44-.77-.83-2.06-.58-2.93.17-.54.34-1.07.55-1.6.1-.25.16-.5.13-.78-.03-.33-.02-.67-.03-1-.01-.42.07-.83.25-1.2zm1.79-3.58-.1.07.08-.09c.02-.03.06-.06.07-.09l-.04-.08c-.06.08-.05.1-.01.19zm.28-.52-.02-.04-.02.04h.04zM25.65 362.01l.66 2.54c.06.2.14.4.22.59.2.53.27 1.09.2 1.66-.02.26-.02.53-.02.8 0 .36 0 .71.02 1.06.1 1.2-1.27 1.95-2.24 2.29l-1.02.29c-.22.06-.43.12-.62.28-.12.1-.29.15-.44.2-1.64.54-3.3.87-5.03.9-1.35-.01-2.7.27-4.04.06-1.19-.2-2.4-.25-3.6-.43-.37-.05-.68-.18-.8-.59-.05-.17-.2-.24-.34-.33-2.07-1-3.34-2.77-2.8-5.13.05-.22.1-.45.2-.65.2-.4.25-.82.23-1.27a8.44 8.44 0 0 1 .93-4.16c.1-.18.17-.38.25-.57 1.04-2.51 4.72-4.37 7.32-4.57.73 0 1.46.01 2.18.03.4 0 .78.12 1.15.27.23.1.45.22.74.21.27-.42.38-.82.96-.84.96-.04 1.9.3 2.7.83a8.68 8.68 0 0 1 2.35 2.3c.66.96 2.45 3.43.84 4.23zm-3.89-4.75c.1.25.26.41.42.57l1.48 1.4c.04.05.1.15.2.02a7.44 7.44 0 0 0-1.35-1.67c-.2-.18-.42-.32-.75-.32zM7.65 436.26l-.75-1.5.22-.45c-.47-1.1-.92-2.2-1.05-3.38-.09-.88-.11-1.79-.11-2.66-.2-.19-.42-.1-.62-.12-.47-.03-.57-.12-.58-.61a4.4 4.4 0 0 1 .24-1.66c.27-.74.45-1.51.66-2.28.08-.3 0-.63.11-.91.12-.28.35-.52.47-.8a7.74 7.74 0 0 1 3.24-3.61c.72-.43 1.52-.35 2.3-.2.36.06.4.23.79.1a9.7 9.7 0 0 1 9.3 1.31 8.86 8.86 0 0 1 3.49 6.33c.04.39.07.77-.08 1.17-.1.3-.09.65-.14.98-.3 2.17-1.43 3.85-2.96 5.36-.3.28-.62.58-.98.77-.92.48-1.85.95-2.85 1.25a20.2 20.2 0 0 1-6.28.92c-1.48-.05-2.93.05-4.42-.01zm-1.2-12.73c.12.01.18-.04.17-.16.31-.31.43-.7.44-1.11-.19.35-.42.7-.42 1.12l-.2.16c0 .04.02.08.01.12v-.13zm.89 3.4c-.28.41-.53.77-.76 1.13a.63.63 0 0 0-.07.3c-.07 1.4 0 2.79.48 4.12.17.5.38.97.57 1.45.06.13.15.27.04.4-.06.1-.06.17.03.2.04.03.12.01.17-.01.22-.1.32-.26.29-.5-.05-.41-.12-.82-.15-1.24a26.4 26.4 0 0 1 .02-4.54c0-.18 0-.38-.06-.54-.12-.29-.3-.55-.56-.77zM27.14 335.47l-.86.14c-.02 1.2-.09 2.33-.35 3.48a17.76 17.76 0 0 1-1.11 3.33l.09.21c.14.25.12.47-.03.7l-.8 1.3c-.56 0-1.06-.16-1.6-.26-.8-.1-1.57-.22-2.35-.36-1.98-.36-3.99-.62-5.95-1.12-.46-.12-.89-.32-1.3-.57-.5-.3-1.04-.55-1.59-.74-2.83-.99-4.24-4.45-4.3-7.25 0-.16.03-.35-.03-.49-.14-.33-.07-.65-.01-.98a8.96 8.96 0 0 1 5.39-6.93 9.42 9.42 0 0 1 8.96.68c.7.65 1.19-.31 2.12.12.02 0 .05.02.06.01.5-.08.75.26 1.02.57.8.93 1.46 1.93 1.86 3.08.06.19.17.33.3.47.15.2.28.4.14.69-.04.1-.02.24 0 .36.2 1 .44 2 .5 3.01 0 .12-.03.25-.06.37 0 .06-.05.1-.1.18zm-3.2 7.38a13.1 13.1 0 0 0 1.44-3.77c.04-.2.04-.39-.16-.5-.18-.1-.31.04-.45.12-.15.09-.21.3-.43.32-.03-.35.09-.6.28-.83.33-.4.45-.44.96-.22.06-.52.13-1.03.14-1.55 0-.24.06-.5-.09-.76h-.74a2.89 2.89 0 0 1-2.64-1.48l-.29-.42c-.42.11-.82.19-1.2.48-.06 1.83.02 3.69-.24 5.52-.04.3-.03.62-.06.93a.5.5 0 0 0 .22.48c.11.1.22.2.35.26.6.34 1.19.7 1.8 1 .33.17.7.27 1.1.42zm1.91-9.58c-.05-.23-.1-.54-.2-.84-.3-.86-.6-1.72-.93-2.57a3.58 3.58 0 0 0-.48-.8c-.27-.39-.65-.47-1.1-.32-.75.26-.84.39-.57 1.13.38 1.04.83 2.04 1.36 3.01.11.2.23.4.37.58.16.19.35.36.53.52.23.19.46.15.7 0 .23-.14.3-.37.32-.7zM5.95 459.12l-1.16-.17a3.1 3.1 0 0 1 .12-1.67c.36-.89.73-1.77 1.11-2.65l1.37-2.94c.38-.49.79-.96 1.23-1.33.32 0 .43.25.71.35.43-.18.96-.4 1.44-.25.33.09.6-.02.9-.16 1.17-.6 2.42-.97 3.74-1.1a9.68 9.68 0 0 1 7.3 2.64 9.1 9.1 0 0 1 2.73 5.94c.03.22.06.43-.1.65-.1.11-.08.31-.1.48a10.83 10.83 0 0 1-2.05 5.35c-.25.38-.53.75-.77 1.13-.13.2-.3.33-.53.41-.89.3-1.79.57-2.65.93-1.28.54-2.65.7-4 .88-1.98.26-3.97.5-5.95.75-.29.03-.58.03-.87.05-.45.02-.76-.2-.96-.57-.23-.42-.44-.85-.63-1.3a.9.9 0 0 1-.07-.54c.1-.33 0-.6-.1-.9-.68-1.94-.9-3.92-.71-5.98zm7.3 5.96c.02-.1.04-.15.04-.22v-1.55c-.03-1.33.03-2.66.1-4 0-.32.04-.65-.06-1-.42-.23-.86-.4-1.37-.5a3.42 3.42 0 0 1-2.41 1.6 7.6 7.6 0 0 1-1.56.03c-.5-.04-.95-.24-1.43-.46-.36 2.3.03 4.55.89 6.7l.3.81c.91.58 4.62-.78 5.5-1.4zm-4.68-7.12c.64-.16.98-.33 1.38-.87a13 13 0 0 0 1.75-3.37c.13-.37.08-.52-.25-.74a3.73 3.73 0 0 0-1.63-.59c-.68-.07-1.22.61-1.46 1.18-.34.83-.68 1.65-1 2.48-.09.23-.15.48-.18.73-.13.91.7 1.01 1.39 1.18zM7.6 238.4c.2-.56.46-1.15.75-1.68.36-.64.9-1.09 1.6-1.31.31-.1.57-.25.81-.45.48-.42 1.02-.72 1.57-1.02.2-.11.39-.25.56-.4.17-.15.36-.26.6-.32 1.29-.34 2.6-.5 3.94-.4 2.22.17 4.06 1.16 5.73 2.54.08.06.19.15.2.23.01.3.22.48.39.69a9.03 9.03 0 0 1 2.05 5.9c0 .11 0 .24.02.4.19.1.38.23.58.35.38.22.7.52.9.93l.7 1.46c.1.21.12.43.09.67-.16.97-.37 1.92-.67 2.85-.1.32-.27.54-.56.72-.73.44-1.48.85-2.32 1.05-.31.07-.49.25-.64.53-.48.93-.5.92-1.44 1.34-2.66 1.16-5.6 1.9-8.5 1.47-3.54-.51-6.4-3.04-8.2-6a1.46 1.46 0 0 1-.25-.88c.02-.3.01-.59.05-.87a.87.87 0 0 0-.24-.8c-.42-.44-.69-.99-1-1.5-.15-.27-.2-.55-.16-.85.11-.87.31-1.71.64-2.53.12-.3.3-.55.56-.74.78-.63 1.26-1.13 2.23-1.38zm.03 4.55-.08.04a11.24 11.24 0 0 0-.66 3.6c0 .58.1 1.12.48 1.58a10.5 10.5 0 0 0 7.61 4.25c2.08.14 4.18-.2 6.08-1.07.42-.19.72-.46.84-.93.12-.5.3-1 .42-1.5.23-1.04.4-2.09.47-3.15 0-.11.06-.25-.1-.36a3.86 3.86 0 0 1-2.88 1.36 6.28 6.28 0 0 1-4.27-1.27 2.08 2.08 0 0 1-.83-1.28l-.12-.4-.13.08c-.47.62-1.13.88-1.88.99-1.77.23-3.7-.3-4.8-1.8l-.15-.14zm11.75 2.19c.93.05 1.6-.33 2.05-1.15.46-.85.7-1.76.85-2.72a.98.98 0 0 0-.44-1.02c-.26-.17-.52-.37-.8-.48-.68-.25-1.37-.47-2.06-.7-.83-.2-1.56.04-1.95.81a2 2 0 0 0-.15.41l-.6 2.23c-.2.92-.12 1.74.87 2.12.71.3 1.47.43 2.23.5zm-10.41-4.36c0 .2.01.42.03.62.11 1.46 1.95 1.87 3.15 1.97.39.03.7-.14.9-.46.15-.24.29-.5.36-.78.25-.92.47-1.85.7-2.78.03-.12.03-.25.05-.37.13-1.43-1.7-1.36-2.68-1.54-.4-.07-.8 0-1.18.08a.94.94 0 0 0-.76.66c-.3.84-.55 1.7-.57 2.6zM25.46 209.36c.16.07.32.17.49.24.96.34 1.21 1.02 1.75 1.79.35.47.48 1 .42 1.58l-.28 2.3c-.05.41-.27.71-.6.97-.65.5-1.3.97-2.08 1.25-.31.12-.54.3-.63.63-.04.12-.12.22-.17.34-.1.26-.29.44-.53.6a18.96 18.96 0 0 1-6.28 2.51c-4.49.98-8.76-1.2-11.5-4.72a.9.9 0 0 1-.21-.5l-.1-1.12a.81.81 0 0 0-.23-.55c-.39-.43-.75-.89-1.13-1.33a1.47 1.47 0 0 1-.35-.98c0-.8.15-2.54.66-3.13.6-.67 1.17-1.36 2.03-1.75.4-1.69.77-3.43 2.66-3.96.26-.08.49-.2.7-.38.33-.29.68-.54 1.02-.82.12-.09.26-.16.33-.28.2-.3.5-.43.8-.56a9.88 9.88 0 0 1 9.74 1.02c.09.05.21.12.23.2.05.33.31.48.51.68a9.23 9.23 0 0 1 2.75 5.97zM22.62 212l-.18.21c-1.07 1.5-3.07 1.75-4.76 1.48-1.18-.22-2.85-.76-3.2-2.04l-.16-.34c-.34.65-.85 1-1.49 1.22-.74.24-1.5.38-2.27.31a4.46 4.46 0 0 1-2.94-1.21c-.05-.06-.12-.1-.2-.15-.04.07-.1.12-.1.18-.28 1.23-.6 4.12.31 5.09 1.65 1.94 4.08 2.93 6.55 3.28 2.62.3 5.33-.37 7.6-1.7.33-.2.55-.43.6-.82.32-1.84.54-3.61.24-5.51zm-3.82.16v-.03c1.11.08 2-.34 2.38-1.41.37-.88.46-1.81.54-2.75a.88.88 0 0 0-.43-.85 8.03 8.03 0 0 0-3.39-.97c-.18-.02-.37.02-.55.05-.44.1-.75.37-.95.76-.07.14-.13.3-.15.47-.13.78-.26 1.56-.37 2.34-.03.27-.02.54-.01.81.07 1.47 1.85 1.42 2.93 1.58zm-7.6-6.67h-.62c-.4 0-.78.11-1.16.24a.96.96 0 0 0-.69.73 8.55 8.55 0 0 0-.24 2.97c.1.82.54 1.34 1.32 1.57a6.2 6.2 0 0 0 1.79.24c.57 0 .95-.27 1.16-.77.12-.27.2-.56.24-.84.13-.87.24-1.73.35-2.6.08-.61-.03-1.17-.67-1.38a3.88 3.88 0 0 0-1.48-.16zM5.98 277.45c-.09-.1-.16-.21-.25-.3a8.24 8.24 0 0 1-1.35-2.01.92.92 0 0 1-.08-.78c.34-.98.66-1.97.98-2.96a1 1 0 0 1 .43-.58c.83-.5 1.55-1.2 2.59-1.1h.42c1.3-2.05 2.71-3.48 5.03-4.34.14-.05.32-.07.4-.17.23-.3.56-.31.89-.37a11.2 11.2 0 0 1 4.52.22c1.7.54 3.21 1.51 4.45 2.79.18.18.33.35.38.62.04.2.17.38.28.55 1.26 1.86 1.6 4.05 1.54 6.26.11.09.2.17.31.23.84.5 1.04 1.47 1.4 2.3.12.3.13.61.06.92-.23.93-.5 1.85-.84 2.74-.12.32-.32.52-.62.67-.68.35-1.37.7-2.13.85l-.21.07-.46.93c-.12.28-.32.46-.6.6-3.01 1.36-6.52 2-9.72.99-3.23-1.08-5.74-3.65-7.5-6.5a.85.85 0 0 1-.12-.65l.2-.98zm3.06-3.72-.24.4c-.27.68-.57 1.34-.8 2.03a9.36 9.36 0 0 0-.5 2.31c-.02.28.03.54.2.77 2.76 4.4 8.62 6.47 13.5 4.52a2.26 2.26 0 0 0 1.32-1.22c.56-1.2.97-2.43 1.22-3.72l-.02-.23-.1.01c-.74.41-1.52.67-2.38.57a5.77 5.77 0 0 1-3.78-1.56 2.24 2.24 0 0 1-.74-1.95c-.23 0-.24.19-.32.3-.35.45-.8.73-1.35.82-1.5.25-3-.11-4.29-.93a4.32 4.32 0 0 1-1.72-2.12zm3.9-4.54c-.64.06-1.18 0-1.46.7-.25.65-.47 1.3-.6 1.97-.19 1.14-.12 2.12 1 2.7.6.33 1.25.57 1.93.68.96.17 1.43-.1 1.82-1 .3-.89.59-1.78.84-2.68.22-.88-.14-1.52-.97-1.84a9.11 9.11 0 0 0-2.56-.53zm8.39 8.34c1.86.18 2.52-2.37 2.84-3.8.11-.5-.26-.84-.62-1.13a7.48 7.48 0 0 0-2.59-1.19c-.84-.21-1.5.23-1.72.94l-.8 2.5c-.22.82-.27 1.57.57 2.01.72.4 1.5.6 2.32.67zM8.33 301.9a9.2 9.2 0 0 1 3.82-4.58c.14-.08.27-.19.39-.3 1.36-1.2 4.74-1.22 6.45-.89 2.08.58 3.9 1.69 5.33 3.32.18.2.36.33.6.41 1.42.45 2.44 1.31 2.78 2.78.36 1.5.43 3 .08 4.52-.11.5-.26 1-.59 1.43a.57.57 0 0 0-.11.47c.1.83-.17 1.96-.8 2.54-.25.23-.4.51-.53.82-.14.33-.31.64-.45.96-1.1 2.5-3.92 3.84-6.57 3.67a9.82 9.82 0 0 1-3.57-1.03c-1.77-.8-3.26-2.09-4.78-3.27-1.04-.83-2.05-1.7-3.08-2.54a7.62 7.62 0 0 1-2.32-3.05 3.58 3.58 0 0 1 .79-3.49c.7-.8 1.44-1.59 2.56-1.76zm4.7 3a42.43 42.43 0 0 0-1.84 5.79c-.06.24-.03.44.17.62 2.35 2.39 6.57 4.74 10 3.93a4.37 4.37 0 0 0 2.93-2.03 10.05 10.05 0 0 0 1.28-3.36c.02-.12 0-.24 0-.37-1.41-.09-3.21-.74-3.9-2.04-.02-.03-.07-.04-.13-.07-.39.3-.84.51-1.34.58-.9.1-1.79.13-2.66-.15-1.45-.44-2.9-1.18-3.44-2.7l-.14-.28c-.31-.08-.6 0-.93.08zm8-1.9v-.68c.02-.87-.68-1.44-1.49-1.57-.68-.07-1.36-.16-2.04-.19-.37-.01-.74.09-1.1.17-.36.07-.58.31-.65.68a8.05 8.05 0 0 0-.13 2.78c.21 1.82 2.18 2.14 3.69 2.26.54 0 1.13-.18 1.32-.74.32-.85.3-1.85.4-2.72zm3.16-1.12c-.24.37-.28.74-.32 1.11l-.22 2.05c-.05.39-.12.78-.12 1.18.03 1.19.84 1.64 1.86 1.62.6 0 .88-.5 1.05-1 .32-.99.4-2 .43-3.02.01-.36-.13-.65-.38-.9a4.47 4.47 0 0 0-1.9-1.03c-.1-.04-.24-.01-.4-.01zM5.84 183.05c-.57-.4-1-.96-1.46-1.5-.25-.3-.36-.64-.37-1.03-.02-.84.08-1.66.26-2.48.07-.33.22-.63.46-.87.6-.66 1.16-1.39 2.08-1.66.3-1.93.64-4 2.8-4.58.74-.2 1.3-.6 1.78-1.17.1-.13.25-.22.4-.29 3.26-1.53 7-1.3 9.99.71.08.06.2.12.22.2.07.33.33.47.54.67a9.39 9.39 0 0 1 2.89 5.88c.6.26 1.15.43 1.55.99.33.45.64.92.96 1.39.12.17.17.37.17.59 0 1.04-.1 2.08-.25 3.1a.84.84 0 0 1-.29.54c-.65.56-1.3 1.12-2.1 1.44-.41.16-.72.4-.86.83-.07.24-.24.42-.47.56a18.37 18.37 0 0 1-6.94 2.66c-4.12.7-8.08-1.15-10.86-4.13a1.5 1.5 0 0 1-.43-.94l-.07-.9zm17.03-3.93c-.1.1-.16.14-.2.2a4.03 4.03 0 0 1-3.04 1.4 6.48 6.48 0 0 1-3.61-.76 2.18 2.18 0 0 1-1.2-1.36c-.02-.08-.07-.15-.1-.23-.05.03-.09.06-.1.09-.33.72-.95 1.08-1.68 1.27-1.7.48-3.78.44-5.13-.84-.04-.04-.1-.05-.2-.1-.04.1-.09.19-.1.28-.34 1.51-.4 3.07-.14 4.6.05.23.14.42.3.6.4.47.88.88 1.4 1.24 3.77 2.52 8.92 2.48 12.82.24.64-.36.71-.46.84-1.2a23.01 23.01 0 0 0 .25-5.04c0-.12-.06-.23-.1-.39zm-.97-3.61c.07-.98.03-1.14-.96-1.64a9.06 9.06 0 0 0-2.97-.66c-.76.03-1.32.45-1.44 1.21-.16.9-.26 1.81-.33 2.72-.07.88.16 1.54 1.4 1.8.56.12 1.15.18 1.72.19 1.2.02 1.78-.41 2.2-1.55.25-.67.34-1.36.38-2.07zm-10.08-2.79c-.81.09-1.48.1-2.21.38-.43.14-.7.43-.76.9-.07.53-.17 1.07-.21 1.6-.06 1.15.1 2.36 1.39 2.66.59.15 1.2.18 1.8.15 1.16-.04 1.42-1.02 1.54-2 .11-.89.23-1.78.25-2.67.02-.23-.09-.4-.23-.56a.98.98 0 0 0-.59-.34l-.98-.12zM5.63 491.16c-.5-.05-1 0-1.17-.56a2.57 2.57 0 0 1-.12-.79c.02-.9.3-1.76.53-2.62a9.47 9.47 0 0 1 2.49-3.98c.28-.3.65-.52 1-.74.16-.11.37-.17.57-.22.26-.07.5 0 .69.19l.41.38c.83-.81 1.57-1.2 2.73-1.3.26-.03.53-.08.79-.15.5-.14 1.02-.2 1.54-.23 2.35-.11 5.39.5 6.99 2.36.17.2.34.41.53.6a8.38 8.38 0 0 1 2.1 3.92c.08.32.23.55.45.79a5.25 5.25 0 0 1 1.3 2.45c.31 1.54-.49 3.16-1.63 4.17l-.42.38c-.07.07-.18.15-.18.23-.04.37-.32.47-.59.58-1.12.48-2.27.93-3.38 1.45-.67.32-1.36.49-2.1.56-.11 0-.26.01-.35.08-.28.22-.62.23-.94.28-.27.04-.54.09-.81.1-1.07.02-2.1.3-3.14.47-1.49.21-3.04.6-4.52.18a2.74 2.74 0 0 1-1.93-1.87 18.7 18.7 0 0 1-.8-6.47l-.04-.24zm.71.04c-.5 1.9-.2 3.92.47 5.76.15.46.5.75.95.91 2.86.9 7.12-.95 9.7-2.26.27-.14.55-.3.75-.54.02-1.27-.17-2.53-.23-3.8l-.1-2.06c0-.16-.04-.32-.06-.46a4.4 4.4 0 0 0-1.55-.46 4.87 4.87 0 0 1-2.93 1.71 6.1 6.1 0 0 1-4.25-.58c-.75.9-1.55 1.63-2.75 1.78zm6.7-7.85v.03h-.57a1.87 1.87 0 0 0-1.86 1.45l-.52 2.19c-.18.72.02 1.4.86 1.46 1.47.1 3.25-.1 4-1.57.43-.76.7-1.6.78-2.47a.58.58 0 0 0-.38-.65c-.73-.34-1.53-.35-2.31-.44zm-4.93 1.03c-.1.01-.16 0-.21.03-.47.27-.91.58-1.28.98-.22.23-.4.49-.49.8-.24.83-.48 1.67-.54 2.55 0 .14-.02.29 0 .43 0 .12 0 .25.17.34a2.41 2.41 0 0 0 1.75-2.02c.17-.96.3-1.92.6-2.86v-.25zM6.48 648.95c.14-.59.15-1.12.44-1.58.26-.42.54-.83.83-1.27-.72-2.31.5-3.76 2.54-4.72a8.47 8.47 0 0 1 4.4-.94c.4.04.75.23.97.6.1.17.19.26.39.21.05 0 .1-.07.13-.12.58-.99 1.86-.75 2.8-.6 1.55.34 3.1.94 4.3 2a3.09 3.09 0 0 1 1.01 2.82c0 .09-.01.17-.04.25-.07.24-.02.44.14.64.51.72 1.1 1.45 1.14 2.38 0 .1.04.2.06.32.06.05.11.12.19.14.88.35 1.39 1.17 1.96 1.87.15.19.24.4.24.63l.01 3.19c0 .22-.08.39-.24.55a8.17 8.17 0 0 1-2.71 1.95c-.1.04-.2.08-.28.15-.72.58-1.61.76-2.48.94-.98.2-1.97.33-2.96.5-1.49.1-2.99.18-4.49.09-.88-.08-1.8.03-2.67-.2-.6-.19-1.22-.24-1.83-.36-.59-.12-1.18-.25-1.76-.4-.44-.13-.86-.31-1.23-.6-.14-.12-.32-.2-.49-.27a8.55 8.55 0 0 1-2.56-1.96.64.64 0 0 1-.19-.45l-.02-.43.04-2.69c0-.3.1-.56.3-.8.6-.71 1.12-1.54 2.06-1.84zm2.72-1.44c-.66.37-.8.51-.93 1.12a12.54 12.54 0 0 0-.13 4.71c.11.73.14.75.87.94a19 19 0 0 0 3.2.57c3.53.31 7.14.34 10.62-.47.26-.06.5-.16.77-.25.06-.27.14-.51.16-.76a15.3 15.3 0 0 0-.1-4.72c-.06-.3-.19-.55-.43-.73-.18-.14-.34-.31-.58-.37a3.1 3.1 0 0 1-1.44.36 8.5 8.5 0 0 1-4.23-.9c-.46-.24-.8-.59-.95-1.1l-.11-.25-.15.36c-.13.4-.4.68-.76.87a8.4 8.4 0 0 1-4.33 1 3.21 3.21 0 0 1-1.1-.22l-.38-.16zm8.14-4.32h-.05c.03.37.04.75.08 1.12.04.42.25.75.6.96.23.15.48.27.73.34.58.15 1.17.28 1.76.39.35.06.7.1 1.05.09.65-.03.73-.04.92-.7.17-.57.13-1.16.03-1.73-.08-.39-.47-.64-.8-.8-.98-.49-2.02-.76-3.09-.95-.21-.04-.45 0-.67.05-.64.2-.55.67-.56 1.23zm-2.79.2-.01-.63c-.02-.44-.23-.71-.67-.76a3.1 3.1 0 0 0-.93.04 9.77 9.77 0 0 0-3.1 1.1c-.16.1-.29.24-.33.43-.15.68-.2 1.36.05 2.03.1.26.25.4.55.42a9.16 9.16 0 0 0 3.36-.55c1.06-.42 1.05-1.08 1.08-2.09zM6.64 680.72a6.05 6.05 0 0 1 1.44-2.69c-.6-2.72 1.18-4.13 3.56-4.9 1.13-.37 4-1.1 4.66.26.14.27.35.3.54.05.37-.48.87-.62 1.44-.6a9.2 9.2 0 0 1 4.64 1.65c1.6 1.13 2.15 2.22 1.63 4.16.58.98 1.25 1.9 1.2 3.1.07.05.1.1.16.13a3.5 3.5 0 0 1 1.46 1.32c.8 1.2.69.7.65 2.12-.03.91-.1 1.82-.15 2.71a8.17 8.17 0 0 1-2.96 2c-.11.05-.24.08-.34.15-.8.56-1.74.67-2.66.8-1.49.2-2.97.41-4.48.34-.97-.05-1.95 0-2.92-.16-.51-.08-1.04-.1-1.55-.15a6.38 6.38 0 0 1-1.64-.37c-.45-.17-.92-.25-1.38-.39-.58-.16-1.16-.33-1.73-.51a3.4 3.4 0 0 1-1.1-.6 3.61 3.61 0 0 0-.52-.34 8.16 8.16 0 0 1-2.35-2.02.85.85 0 0 1-.21-.57c0-.14-.02-.3 0-.44l.22-2.6c.02-.29.13-.53.32-.73.61-.66 1.19-1.44 2.07-1.72zm1.51 5.2c.32.25.68.35 1.03.46 1.38.44 2.8.68 4.22.86 1 .13 2.02.28 3.04.27 2.14 0 4.3.08 6.4-.39.4-.08.71-.24.74-.7 0-.11.04-.21.06-.31.3-1.44.32-2.9.24-4.35-.05-.77-.3-1.11-.98-1.48-.74.38-1.52.4-2.32.28a7.99 7.99 0 0 1-3.36-1.08 1.7 1.7 0 0 1-.9-1.14c-.01-.08-.06-.15-.12-.28l-.11.25c-.24.67-.88.99-1.51 1.2-1.55.52-3.6.81-5.1.01-.04-.02-.08 0-.12 0-.68.35-.7.45-.9 1.1-.32 1.08-.49 2.2-.48 3.33 0 .64-.04 1.29.17 1.97zm14.82-9.04c.02-.52 0-.9-.5-1.18-.2-.12-.38-.25-.59-.35-.83-.39-1.7-.69-2.58-.91a2.16 2.16 0 0 0-.68-.05c-.4.03-.67.26-.76.64a6.24 6.24 0 0 0-.12 1.92c.03.3.17.56.4.75.18.14.37.29.57.38 1.08.45 2.22.74 3.4.72.73.03.86-1.38.86-1.92zm-11.9 1.25c.87-.02 1.6-.12 2.3-.28.2-.04.4-.12.6-.2.5-.2.82-.56.9-1.1.08-.53.13-1.07.16-1.6.02-.37-.14-.6-.5-.7a1.95 1.95 0 0 0-.8-.06c-.79.14-1.58.31-2.37.5-.3.08-.58.23-.86.36-.3.14-.5.37-.54.71-.05.4-.13.78-.14 1.17-.01.27.07.53.13.8.04.2.2.32.4.34l.72.06zM6.29 617.58c-.09-1.15.48-2.01.98-2.93l-.12-.4c-.3-.97-.23-2.1.41-2.92 1.26-1.54 3.4-2.43 5.32-2.77.67-.09 1.44-.09 1.9.5l.08.1c.15.12.4.12.49-.06.7-1.48 3.6-.7 4.8-.32 2 .63 3.82 1.9 3.6 4.22l-.02.31.01.1.99 1.25c.34.44.41.99.57 1.53l.32.16c.76.28 1.23.98 1.8 1.52.23.23.36.5.4.82.15.97.22 1.94.25 2.92 0 .31-.1.55-.3.8-.7.84-1.5 1.55-2.48 2.06-.07.04-.15.08-.2.13-.74.64-1.65.87-2.55 1.14-1.14.3-2.28.67-3.44.87-1.04.13-2.07.26-3.1.35a342 342 0 0 1-2.62.06c-.42 0-.83-.03-1.24-.13a7.01 7.01 0 0 0-1.11-.14c-.98-.08-1.96-.18-2.88-.51l-2.02-.98c-.64-.32-1.16-.82-1.7-1.27a.52.52 0 0 1-.18-.38l-.23-3.3a.85.85 0 0 1 .17-.6c.58-.83 1.04-1.73 2.1-2.13zm2.55-1.5c-.55.25-.78.7-.82 1.29-.06.85-.12 1.7-.04 2.55.08.75.2 1.49.37 2.22.12.56.49.69 1 .75 4.02.71 10.43.33 14.21-1.23a.46.46 0 0 0 .3-.44l.05-1.3c0-1.28-.2-2.53-.51-3.77-.15-.57-.52-.86-1.02-1.08-.09.04-.17.06-.24.1-.5.3-1.03.42-1.6.44a8.3 8.3 0 0 1-3.85-.62c-.47-.18-.81-.5-1.03-.95-.04-.08-.02-.22-.2-.18a1.8 1.8 0 0 1-.94 1.31c-.97.56-1.99.97-3.1 1.09-1.36.15-1.36.14-2.58-.18zm11.73-2.33.68-.03c.35-.03.54-.23.63-.57.15-.55.07-1.08 0-1.61a1.25 1.25 0 0 0-.85-1.06c-1.01-.4-2.06-.64-3.15-.74-.2-.02-.42 0-.62.04-.41.1-.64.39-.62.8.03.48.08.96.15 1.44.1.73.53 1.2 1.24 1.4.83.23 1.57.31 2.54.33zM14 612.17c-.03-.48-.06-.8-.14-1.25-.09-.7-.74-.84-1.34-.71a9.95 9.95 0 0 0-3.33 1.36.83.83 0 0 0-.38.68c-.03.52 0 1.04.16 1.54.05.16.12.31.19.46.08.2.24.28.44.29 1.2.01 2.36-.3 3.44-.78.76-.38.95-.78.96-1.6zM6.52 944.51c.14-.78.48-1.52.5-2.36A3.42 3.42 0 0 1 9.07 939c.44-.21.86-.42 1.03-.93.04-.1.18-.16.29-.23a9.9 9.9 0 0 1 9.88-.63c.17.08.35.14.4.36.38.28.75.58 1.15.83.36.21.72.42 1.02.71.28.26.52.55.64.91.2.58.5 1.1.76 1.64.25.55.48 1.1.72 1.69l.46.14c.43.11.81.32 1.12.64.35.36.68.73 1.02 1.1.16.16.23.35.24.56l.23 3.24c.02.22-.06.4-.21.56-.55.6-1.08 1.22-1.79 1.64-.28.17-.43.38-.41.7.02.22-.1.36-.25.48-3.63 3.16-8.73 4.9-13.44 3.36a16.99 16.99 0 0 1-4.53-2.07c-.3-.2-.56-.41-.58-.82 0-.2-.14-.33-.33-.41-.71-.32-1.29-.83-1.89-1.32a1.2 1.2 0 0 1-.45-.91c-.05-.67-.1-1.33-.13-2l-.01-.87c-.01-.26.05-.5.2-.7.57-.76 1.02-1.7 1.98-2l.32-.15zm16.86.9a3.87 3.87 0 0 1-1.97 1.29c-1.4.4-2.86.39-4.24-.09-.7-.23-1.25-.65-1.45-1.41-.02-.07-.1-.12-.18-.23-.08.99-.64 1.53-1.43 1.89a7.14 7.14 0 0 1-3.83.58c-.7-.09-1.34-.3-1.9-.72-.08-.06-.15-.16-.3-.07-.01.06-.05.14-.05.22-.1 1.1-.13 2.2 0 3.3.07.66.24 1.3.37 1.96.05.25.2.44.42.6 1.5 1.04 3.3 1.5 5.09 1.7 3.23.41 6.57-.43 9.2-2.34.55-.4.82-.87.78-1.53.06-1.19 0-2.37-.17-3.55-.07-.5-.12-1.02-.34-1.6zm-1.22-3c-.03-.26-.09-.71-.12-1.17-.04-.64-.48-.9-1.04-1.08-.9-.3-1.83-.35-2.77-.36-.69.01-1.33.41-1.43 1.12-.02.1-.02.21-.01.32l.12 2.3c0 .16.05.32.09.49.14.7.58 1.15 1.27 1.3.86.17 1.74.15 2.59-.1 1.24-.37 1.27-1.6 1.3-2.82zm-13.3.25c-.02.7.08 1.37.3 2.03.26.78.8 1.19 1.61 1.23 1.55.05 3.42-.12 3.32-2.1-.01-.8-.08-1.58-.13-2.37-.03-.58-.4-1.1-1-1.2-.2-.03-.4-.03-.61-.01a7.36 7.36 0 0 0-3.02.91c-.3.19-.48.45-.47.83v.68zM6.92 984.61l-.2-.73c-.13-.08-.25-.17-.38-.23-.71-.34-1.28-.86-1.86-1.37a.88.88 0 0 1-.32-.65l-.13-3.12c0-.21.06-.4.19-.58.57-.74 1.02-1.72 1.98-2 .28-.09.4-.26.46-.53.08-.39.21-.76.32-1.14.09-.4.1-.83.14-1.24.1-1.4 1.09-2.4 2.33-2.9.27-.14.56-.29.66-.55.11-.27.3-.38.5-.51a10.1 10.1 0 0 1 5.65-1.54c1.43.1 2.8.43 4.09 1.05.18.1.4.15.43.4l.96.7c.17.1.37.18.55.28.7.43 1.2 1.02 1.45 1.81.1.3.24.58.36.86.25.58.51 1.14.73 1.72.12.3.24.5.58.57.98.16 1.51 1.07 2.16 1.72.18.19.27.41.28.67l.19 3.06a.94.94 0 0 1-.27.73c-.54.6-1.1 1.19-1.8 1.62-.11.06-.2.14-.33.23.1.56-.26.87-.65 1.17-5.67 4.47-12.16 4.66-18.07.5zm1.2-6.8-.09.43c-.16 1.7-.11 3.43.33 5.09.08.3.22.53.49.68a13.2 13.2 0 0 0 14.01-.4c.95-.7.95-.6 1.02-1.9a17 17 0 0 0-.16-3.49c-.07-.46-.11-.93-.3-1.42-.13.11-.23.18-.31.27-1.14 1.15-2.91 1.3-4.44 1.17-1.06-.15-2.4-.42-2.83-1.53l-.19-.46-.14.41c-.15.74-.76 1.19-1.41 1.47-1.71.77-4.3.97-5.84-.3l-.13-.03zm11.37-1.04v-.04h.38c.37-.06.74-.09 1.1-.19.53-.15.89-.52 1.04-1.07.34-1 .25-2.06.07-3.08a.84.84 0 0 0-.5-.67c-.26-.1-.5-.25-.76-.3-.65-.12-1.31-.2-1.97-.29-.25-.03-.5-.02-.75 0-.75.07-1.22.56-1.22 1.32-.01.56.02 1.12.05 1.68.06 2.04.52 2.52 2.56 2.64zm-5.36-2.4h.02c-.04-.61-.08-1.21-.14-1.81-.07-.74-.73-1.14-1.44-1.07a7.8 7.8 0 0 0-2.99.8c-.46.23-.69.6-.67 1.1.02.56.04 1.13.1 1.69.15 1.1.58 2.02 1.82 2.08.65.04 1.29-.02 1.92-.17 1.46-.43 1.42-1.33 1.38-2.63zM6.66 143.46c.23-.4.4-.8.4-1.26.2-2.59 1.1-3.97 3.7-4.55.1-.03.24-.02.3-.08.46-.47 1.08-.62 1.65-.85a9.92 9.92 0 0 1 8.86.98c.09.05.2.12.23.2.06.27.27.4.45.57a9.16 9.16 0 0 1 3.02 5.4c.08.87.93.24 1.94 1.68.2.29.4.58.62.87.14.19.22.4.21.64l-.13 3.18a.86.86 0 0 1-.32.64 8.38 8.38 0 0 1-2.03 1.44c-.3.14-.58.3-.75.63-.07.15-.27.25-.42.35a18.1 18.1 0 0 1-8.37 2.67c-3.48.15-6.87-1.32-9.48-3.56-.27-.23-.46-.47-.45-.84.01-.27-.11-.47-.34-.62-.58-.4-1.01-.93-1.46-1.45-.18-.2-.26-.43-.27-.68-.04-.85-.04-2.82.48-3.48.6-.73 1.22-1.6 2.16-1.88zm1.23 2.03-.13.42c-.36 1.67-.47 3.4-.15 5.08.04.22.13.39.28.54.42.41.9.75 1.4 1.03 3.89 2.13 8.81 2.1 12.73.08 1.05-.56.9-.47 1.09-1.56.26-1.69.27-3.41.08-5.1-.02-.1-.07-.18-.12-.31a4 4 0 0 1-2.08 1.16 7.14 7.14 0 0 1-4.56-.56c-.56-.28-.99-.69-1.18-1.3-.03-.1-.03-.22-.18-.25-.35.87-.8 1.22-1.68 1.5a7.1 7.1 0 0 1-4.36-.05c-.24-.07-.45-.22-.67-.34-.14-.08-.27-.2-.47-.34zm14.25-3.42c0-.9.06-1.18-.83-1.61a9.04 9.04 0 0 0-3.01-.74c-.82-.07-1.42.44-1.52 1.24-.1.8-.2 1.61-.23 2.42-.05.97.36 1.51 1.28 1.81.64.2 1.31.26 1.97.26 1.93.1 2.3-1.84 2.34-3.38zm-8.27-.8.04-.77c.04-.64-.61-1.02-1.18-1.01-1.04.01-2.1.13-3.04.57-.4.18-.63.48-.67.91-.06.5-.14 1-.15 1.49 0 .41.05.83.12 1.24.11.64.53 1.02 1.15 1.18 1.23.28 3.2.2 3.49-1.34.16-.71.18-1.65.24-2.27zM6.89 713c.13-1 .73-1.7 1.32-2.4 0-.11.02-.22 0-.32a3.8 3.8 0 0 1 .4-2.36c.58-1.13 1.89-1.75 3.04-2.14 1.26-.38 4.25-1.1 4.99.36.33.1.59.05.83-.17 1.16-.98 4.19.4 5.33 1.1 1.36.85 2.39 2 2.14 3.7-.04.28-.15.58-.1.85.04.28.24.52.36.79.14.3.3.6.4.91.13.44.2.89.3 1.4.02 0 .08.07.15.1.89.42 1.34 1.28 1.86 2.06.13.2.2.4.17.65-.09 1.01-.18 2.03-.25 3.04-.03.36-.19.6-.46.84a8.08 8.08 0 0 1-2.87 1.6c-.78.47-1.65.53-2.52.64-.87.1-1.73.23-2.6.33-.9.12-1.79-.04-2.68-.05-.84.06-1.66-.04-2.48-.2-1.14-.23-2.33-.24-3.4-.76-.52-.25-1.1-.39-1.64-.58l-1.47-.53a1.4 1.4 0 0 1-.28-.14c-.53-.36-1.07-.7-1.6-1.07-.67-.45-1.15-1.09-1.66-1.7a.78.78 0 0 1-.15-.58c.07-1.04.13-2.08.34-3.1.03-.22.13-.4.28-.55.67-.69 1.24-1.43 2.25-1.71zm16.27.37-.19.03a3.5 3.5 0 0 1-2.07.26 7.48 7.48 0 0 1-3.63-1.22 1.64 1.64 0 0 1-.8-1.14c0-.08-.05-.14-.1-.28l-.21.37c-.26.54-.78.79-1.32.98a8.1 8.1 0 0 1-3.94.34 2.86 2.86 0 0 1-1.05-.37l-.4-.21c-.6.33-.64.37-.84.9l-.12.36c-.48 1.54-.6 3.15-.5 4.75.03.34.18.55.47.68 1.27.57 2.62.95 4 1.2 1.22.22 2.44.48 3.7.53 1.03.03 2.07.06 3.11.07 1.13 0 2.24-.15 3.35-.37.24-.05.47-.15.7-.22.59-1.77.7-3.62.6-5.46.01-.58-.32-.9-.76-1.2zm.05-3.65c.06-.47-.11-.88-.6-1.14-.12-.07-.24-.16-.37-.22a12.1 12.1 0 0 0-2.6-1.02 2.28 2.28 0 0 0-.55-.08c-.53-.01-.87.25-.98.76-.1.5-.16.99-.2 1.48-.1.86.4 1.46 1.18 1.76.87.36 1.77.59 2.7.69.67.06.9-.08 1.14-.71.2-.51.24-.95.28-1.52zm-11.3 1.25c1.34-.24 3-.05 3.22-1.79l.19-1.42c.03-.26-.06-.44-.24-.6a1 1 0 0 0-.62-.27c-.23-.01-.47-.02-.69.01-1.04.19-2.1.3-3.06.8a.85.85 0 0 0-.5.6c-.2.72-.28 1.42-.07 2.15.05.25.21.4.47.42l1.3.1zM13.57 577.43l.5-.1.22-.3c.43-.6 1.28-.72 1.97-.76a9.6 9.6 0 0 1 4.66.95c1.36.66 1.97 1.97 1.93 3.43.71.81 1.56 1.5 1.79 2.57.06.05.1.1.13.1.67.14 1.22.5 1.72.96 1.04.96.84.52 1.16 1.96.15.71.24 1.44.37 2.15.07.36-.05.64-.25.93a7.62 7.62 0 0 1-2.24 2.23l-.1.08c-.61.63-1.42.92-2.2 1.25l-2.42 1.03c-.93.38-1.93.48-2.89.76-1.12.34-2.3.36-3.45.52-.7.1-1.4.16-2.11.04-.51-.09-1.04-.07-1.56-.1l-1.3-.07c-1-.06-1.9-.48-2.82-.8-.65-.22-1.2-.65-1.77-1.03a.9.9 0 0 1-.43-.65c-.15-.99-.32-1.97-.48-2.95-.06-.32-.02-.63.17-.9.44-.8.83-1.66 1.69-2.1.05-.53 0-1.03.18-1.5l.5-1.34c-.13-.49-.26-.9-.34-1.33-.31-1.5.64-2.8 1.8-3.66 1.18-.88 4.3-2.69 5.57-1.37zm-5.3 7.61c-.49.34-.65.74-.66 1.26-.02 1.56.2 3.07.69 4.55.27.85.38.94 1.27 1 2.24.24 4.49.03 6.7-.3 1.14-.18 2.24-.49 3.35-.78 1.34-.38 2.66-.85 3.86-1.56.2-.12.29-.28.27-.52-.04-.5-.04-1-.1-1.5-.11-1.2-.42-2.36-.8-3.5-.21-.61-.5-.81-1.08-1.03-.5.34-.96.68-1.57.77a8.08 8.08 0 0 1-4.13-.1c-.53-.17-.99-.44-1.22-.98-.03-.07-.1-.13-.22-.29.07 1.55-1.44 2.04-2.53 2.62-.74.34-1.55.47-2.35.57-.5.07-1-.06-1.48-.2zm10.32-3.26v-.04c.19 0 .38.02.56 0l1.35-.21c.39-.06.48-.45.5-.77a4.24 4.24 0 0 0-.26-1.9.92.92 0 0 0-.54-.57 9.9 9.9 0 0 0-3.5-.52c-.6.01-1.3.3-1.19 1.03.08.51.19 1.02.3 1.53.16.77.66 1.18 1.41 1.3.45.06.91.1 1.37.15zm-5.54-.7c-.03-.61-.14-1.2-.29-1.79-.08-.31-.3-.48-.6-.56-.34-.08-.67 0-.98.1-1.06.42-2.13.89-2.98 1.66-.2.17-.3.4-.3.66.05.6.1 1.2.36 1.76.27.59.43.7 1.07.6 1.04-.17 2-.53 2.92-1.05.5-.31.83-.77.8-1.39zM6.73 920.8c-.18-.1-.3-.19-.43-.25-.71-.36-1.3-.9-1.88-1.44a.82.82 0 0 1-.28-.6l-.08-3.06c-.01-.3.08-.57.28-.8.6-.81 1.12-1.72 2.2-1.93.07-.17.14-.31.19-.47.17-.55.34-1.11.42-1.69.04-.24.06-.5.08-.74a3.31 3.31 0 0 1 1.72-2.6c.3-.18.64-.31.96-.45.2-.08.36-.18.45-.4.05-.12.18-.22.3-.29a9.97 9.97 0 0 1 9.95-.36c.47.25.13.41.93.77 1.13.43 2.1 1.22 2.36 2.46.08.32.2.62.36.92.32.67.58 1.34.83 2.04l.52.2c.41.11.76.32 1.05.64.34.36.66.75.99 1.12.14.16.22.35.23.57.04 1.02.1 2.03.15 3.05.02.33-.08.6-.31.84a8.15 8.15 0 0 1-2.03 1.68c-.04.08-.08.12-.08.15 0 .42-.23.68-.55.92-3.79 2.92-8.89 4.34-13.5 2.68-1.5-.48-2.9-1.14-4.22-2-.35-.23-.63-.48-.61-.96zm1.45-6.33a14.05 14.05 0 0 0 .16 5.75.8.8 0 0 0 .34.5c4.07 2.71 10.37 2.53 14.35-.27.82-.6.67-.51.83-1.43.13-1.63 0-3.24-.27-4.85-.02-.13-.08-.26-.14-.44l-.32.28c-.42.4-.9.7-1.45.83-.83.2-1.68.34-2.54.27-1.22-.12-2.92-.41-3.3-1.79-.02-.1-.07-.18-.13-.3l-.07.15c-.08.6-.4 1.1-.92 1.42-1.1.65-2.39.92-3.66.83-1.2-.1-1.48-.03-2.88-.95zm8.81-4.19h-.01l.13 1.62c.08.81.52 1.34 1.32 1.53.82.2 1.65.22 2.47.03a1.55 1.55 0 0 0 1.21-1.14c.27-.86.22-1.76.15-2.65-.05-.92-.67-1.15-1.44-1.38-.73-.17-1.46-.3-2.21-.31-.87-.07-1.6.37-1.62 1.3v1zm-2.76.5c-.02-.36-.04-.96-.09-1.4-.1-.97-.95-1.24-1.81-1.08-.55.1-1.1.2-1.65.35-.35.1-.7.26-1.03.43-.41.2-.63.53-.62 1-.03.89-.03 1.8.28 2.65.24.68.72 1.07 1.43 1.14.72.07 1.45.03 2.16-.19 1.48-.42 1.36-1.58 1.33-2.9zM10.92 514.38c.38-.15.66-.33.92-.59 1.3-1.29 4.2-1.12 5.87-.79.5.1.97.27 1.38.57.18.13.38.27.5.45a2 2 0 0 0 .72.6c1.53.89 2.7 2.14 3.44 3.75.37.8.83.27 1.6.91.47.38.94.76 1.39 1.16.16.15.3.35.4.55.43.8.85 2.32.48 3.18a7.1 7.1 0 0 1-2.16 2.79c-.09.08-.22.15-.26.25-.12.3-.37.44-.63.57l-3.06 1.56-.78.4c-.48.25-1 .38-1.54.48-.25.05-.48.11-.7.23-.52.28-1.1.42-1.66.53-.6.11-1.2.18-1.8.27-.14.02-.28.03-.42.07-.74.17-1.49.22-2.23.26-.31.01-.62.01-.92-.11-.17-.07-.37-.06-.55-.09-.95-.13-1.9-.23-2.85-.39-.43-.07-.84-.24-1.25-.38a.67.67 0 0 1-.37-.3c-.09-.14-.22-.25-.33-.36-.05-.05-.1-.08-.16-.11a2.75 2.75 0 0 1-1.25-1.58 3.85 3.85 0 0 1-.08-2.4c.1-.29.19-.6.32-.87.16-.33.22-.66.2-1.03-.02-.41.02-.83.01-1.25 0-.13 0-.3-.08-.4a3.16 3.16 0 0 1-.42-2.05c.26-2.91 1.82-4.88 4.43-6.1.2-.09.43-.13.65-.2.4-.1.74-.03 1.03.28.04.05.09.08.16.14zm-4.39 8.5c-.2.41-.17.8-.19 1.16-.1 1.61.2 3.15.82 4.64.11.27.28.45.56.54.75.27 1.55.34 2.34.29 1.6-.09 3.19-.3 4.72-.83.85-.28 1.69-.59 2.52-.9a21.38 21.38 0 0 0 3.3-1.64c.27-.16.53-.32.75-.6a30.92 30.92 0 0 0-.8-5.15c-.23-1.03-.12-1-1.38-1.27-.06-.02-.12 0-.19 0l-.14.12c-.72.87-1.57 1.18-2.63 1.46-1.19.34-3.43.47-4.35-.5-.09-.08-.2-.13-.33-.23-.34 1.16-1.32 1.76-2.27 2.33-.86.47-1.75.62-2.73.58zm8.87-8.42c-1.25.13-2.8 0-2.87 1.65-.04.6-.04 1.2-.03 1.8.03.9.3 1.18 1.22 1.23a7.02 7.02 0 0 0 3.45-.62c1.02-.46.99-2.29.84-3.23a.61.61 0 0 0-.4-.51 2.35 2.35 0 0 0-.54-.15c-.56-.07-1.12-.12-1.67-.17zm-5.76 1.47c-.25-.12-.47-.04-.67.06-.83.4-1.6.87-2.28 1.52-.33.32-.52.7-.54 1.15-.04.79-.07 1.59.23 2.33.1.29.25.36.54.25 1.48-.59 2.92-1.15 2.79-3.02-.04-.64-.01-1.29-.02-1.93 0-.12-.03-.24-.05-.36zM5.4 555.64c-.11-.76.02-1.53.36-2.24-.03-.1-.03-.16-.06-.21a4.4 4.4 0 0 1-.45-2.67c.14-1.2.94-2.2 1.81-2.98.9-.8 3.73-2.73 4.82-1.64.4-.1.75-.22 1-.58.98-1.19 4.38-1.02 5.76-.66 1.26.32 2.42.93 2.66 2.31.1.46.3.79.64 1.1a7 7 0 0 1 1.64 2.18c.12.25.28.35.53.35 1.01 0 1.75.69 2.52 1.25.24.16.39.37.48.63.33 1.01.61 2.03.84 3.07.04.2 0 .37-.1.54a8.1 8.1 0 0 1-2.24 2.72c-.45.61-1.13.9-1.77 1.26-.91.5-1.82 1-2.75 1.46-.52.25-1.1.4-1.65.6-.25.08-.51.15-.76.25-.93.4-1.89.65-2.89.77-.8.12-1.6.3-2.4.42-.18.03-.37.05-.55.01-.83-.14-1.67-.09-2.5-.1a9 9 0 0 1-5.19-1.51 1 1 0 0 1-.34-.43 9.26 9.26 0 0 1-.75-2.95c-.02-.18.02-.38.08-.55.18-.44.36-.89.58-1.31.17-.35.41-.67.68-1.1zm17.63 1.16a16.96 16.96 0 0 0-1.31-5.63.77.77 0 0 0-.3-.39 1.68 1.68 0 0 0-.86-.27c-.15.14-.28.28-.43.39-.31.2-.61.45-.96.58-1.43.6-3 .71-4.53.4a1.65 1.65 0 0 1-1.15-.78l-.23-.32c.1 1.9-2.9 3.26-4.46 3.5-.29.05-.57.07-.86.02-.23-.03-.45-.12-.65-.02-.28.25-.3.56-.3.88-.03 1.8.34 3.5 1.1 5.14.13.3.33.46.65.5.12.02.24.06.37.06.8 0 1.63.06 2.43-.03 2.1-.22 4.15-.61 6.14-1.35 1.88-.7 3.75-1.43 5.35-2.68zM16.6 546c-.95-.01-2.8-.1-2.62 1.36.08.53.15 1.07.26 1.6.15.77.52 1.1 1.31 1.18.73.08 1.46.03 2.17-.1.45-.1.89-.24 1.32-.37a.67.67 0 0 0 .48-.53c.24-.81.06-1.66-.22-2.44a.7.7 0 0 0-.42-.44 5.96 5.96 0 0 0-2.28-.26zm-5.06 3.98-.4-2.2c-.03-.17-.15-.24-.29-.3-.32-.15-.62-.06-.9.07a9.13 9.13 0 0 0-2.83 1.88.96.96 0 0 0-.29.8c.02.29.02.58.09.86.1.4.22.8.4 1.18.22.44.38.49.86.36a8.06 8.06 0 0 0 2.48-1.14c.5-.36.86-.87.88-1.51zM25.61 1014.65c0 .46-.24.72-.55.95-3.58 2.67-8.18 4.12-12.58 2.9a17.9 17.9 0 0 1-5.2-2.25c-.3-.2-.56-.42-.54-.83-.14-.09-.26-.18-.38-.24a8.33 8.33 0 0 1-1.9-1.42.88.88 0 0 1-.32-.64l-.09-3c0-.32.08-.61.29-.87.8-.99.9-1.51 2.2-1.96.06-.14.14-.29.18-.45.2-.76.45-1.5.5-2.3.07-1.6 1-2.59 2.42-3.18l.47-.18c.07-.03.18-.07.2-.13.09-.31.37-.38.6-.51a11.08 11.08 0 0 1 4.43-1.4c1.77-.06 3.54.34 5.13 1.11.19.1.37.16.46.39.1.23.74.37.98.5a3.36 3.36 0 0 1 2 2.38c.09.38.24.71.4 1.05.24.53.46 1.07.66 1.62.1.26.23.41.51.47.99.2 1.52 1.12 2.16 1.8.15.17.23.35.24.57l.15 3.12c.02.31-.1.55-.31.78a8.26 8.26 0 0 1-2.1 1.72zm-17.39-5.73c-.04.1-.08.14-.09.2a14.3 14.3 0 0 0 .2 5.58c.07.24.17.42.38.54a12.63 12.63 0 0 0 6.4 1.86c2.73.12 5.54-.59 7.83-2.1.85-.58.85-.53.92-1.69.06-.87.04-1.75-.01-2.62-.04-.7-.17-1.4-.28-2.1-.02-.12-.01-.29-.19-.38-.48.44-.98.86-1.63 1.02a7.1 7.1 0 0 1-4.77-.22 1.94 1.94 0 0 1-1.13-1.26c-.03-.09-.1-.17-.18-.34-.12 1.04-.72 1.57-1.54 1.9-1.2.53-2.51.63-3.8.46a3.58 3.58 0 0 1-1.8-.65c-.09-.07-.2-.13-.31-.2zm8.77-4.25h-.02c.05.59.09 1.17.16 1.74.08.69.46 1.15 1.13 1.36a5 5 0 0 0 2.7.1c.95-.23 1.18-1 1.3-1.86.1-.6.03-1.2 0-1.8-.03-.68-.36-1.1-.98-1.3-.86-.32-1.78-.42-2.69-.5-.86-.05-1.6.4-1.6 1.33v.93zm-2.75.5c-.03-.44-.05-.9-.1-1.35-.09-.95-.93-1.23-1.76-1.08-.66.13-1.3.26-1.95.44-.31.1-.6.27-.9.43a.91.91 0 0 0-.49.75c-.08.97-.05 1.92.28 2.84.22.6.64.95 1.27 1.07.8.14 1.58.03 2.34-.2.86-.26 1.25-.78 1.3-1.7.02-.39 0-.79 0-1.2zM6.95 746.08c.14-.7.52-1.3.97-1.84.21-.26.3-.5.28-.85a4.2 4.2 0 0 1 .5-2.29 4.18 4.18 0 0 1 2-1.64c1.4-.61 3.2-1 4.74-.74.94.15.78.63 1.45.62.37 0 .73.01 1.09-.17.33-.17.72-.17 1.1-.12 2.74.45 6.61 2.16 5.85 5.54a.97.97 0 0 0 .09.65c.18.37.37.75.5 1.14.17.51.27 1.04.42 1.61-.01 0 .01.03.05.05.72.31 1.18.9 1.57 1.55.67 1.06.57.72.47 1.85l-.24 2.55a.8.8 0 0 1-.32.57 9.6 9.6 0 0 1-5.26 2.2c-.77.1-1.53.2-2.28.37-.71.15-1.4.12-2.12.07-.33-.02-.66-.04-.99-.03-.94.02-1.87-.04-2.79-.26-.53-.13-1.06-.2-1.6-.28-.32-.05-.65-.12-.97-.2-.18-.04-.37-.1-.53-.18-.75-.43-1.56-.7-2.36-.98a9.18 9.18 0 0 1-4.38-3.17.8.8 0 0 1-.17-.59c.04-.6.08-1.2.15-1.8.04-.41.13-.82.19-1.23.04-.29.16-.51.37-.7.61-.62 1.17-1.34 2.05-1.59.05-.01.1-.06.17-.11zm9.45-1.35c-.03.02-.1.02-.1.05-.25.7-.79 1.04-1.45 1.26-1.5.5-3.55.65-4.98-.15l-.5-.28c-.51.16-.66.55-.79.95a12.51 12.51 0 0 0-.52 5.47c.3.32.68.49 1.06.65 4.24 1.71 9.01 2.17 13.48 1.2.53-.11.8-.38.92-.93.34-1.51.5-3.04.45-4.58-.03-.36-.02-.77-.28-1.06-.12-.13-.28-.24-.42-.36-.12.04-.23.05-.32.1-.73.32-1.48.4-2.26.26a7.1 7.1 0 0 1-3.28-1.1 1.8 1.8 0 0 1-.94-1.4c0-.03-.04-.05-.07-.08zm6.85-1.52c.14-.57-.2-.98-.74-1.28-.17-.09-.32-.2-.5-.27-.73-.28-1.47-.56-2.21-.82a1.86 1.86 0 0 0-.55-.1c-.65-.01-1.01.28-1.12.92-.07.43-.13.87-.17 1.3-.1 1.12.19 1.62 1.2 2.06.7.3 1.43.47 2.17.59.24.03.5.02.74.04.31.02.52-.13.67-.38.37-.64.5-1.25.5-2.06zm-11.4 1.43c1.21-.1 3.04-.07 3.27-1.62.1-.57.16-1.15.24-1.72.07-.47-.28-.81-.62-.9-.9-.2-2.05.07-2.95.27-.32.08-.63.21-.94.34a.94.94 0 0 0-.6.73c-.17.84-.31 1.42-.08 2.28.07.27.24.47.56.5.38.03.75.08 1.12.12zM6.7 880.45l.66-1.82c.05-.12.04-.25.05-.37.1-1.55.41-2.65 1.8-3.5.7-.42 1.5-.59 2.22-.98a9.86 9.86 0 0 1 9.68.24c.24.13.48.25.73.36 1.2.48 2.26 1.45 2.4 2.79.08.5.23.96.43 1.42.22.5.4 1.01.57 1.52.07.2.17.33.37.38.99.24 1.5 1.14 2.11 1.87.17.2.25.43.25.69l.03 3.12c0 .22-.07.4-.23.55a8.3 8.3 0 0 1-1.93 1.58c-.2.1-.37.23-.45.48-.03.12-.17.23-.3.3-.45.3-.9.6-1.37.86-5.44 3.08-11.5 2.7-16.64-.77-.2-.14-.42-.26-.48-.55-.02-.11-.18-.22-.3-.28a8.6 8.6 0 0 1-1.9-1.52.92.92 0 0 1-.3-.72l.02-3.06c0-.26.1-.48.26-.68.64-.8 1.2-1.72 2.31-1.91zm1.72 1.32c-.06.05-.1.07-.11.1-.04.15-.08.29-.1.43-.31 1.76-.35 3.58.02 5.33.06.27.19.45.4.6 2.11 1.43 4.68 1.9 7.18 2 2.53.04 5.1-.58 7.27-1.9.47-.26.65-.65.68-1.16.28-1.76.14-3.54-.12-5.28-.01-.1-.02-.22-.18-.24-.58.47-1.17.82-1.92.91-.5.07-1 .15-1.49.17a5.97 5.97 0 0 1-2.95-.64c-.65-.3-1-.86-1.17-1.55-.07.1-.13.14-.14.19-.14.72-.62 1.16-1.26 1.44-1.4.64-2.65.68-4.15.43a3.59 3.59 0 0 1-1.72-.69c-.07-.06-.17-.1-.24-.14zm8.87-3.82h-.04c.04.57.07 1.13.13 1.68.06.51.35.89.8 1.12.79.4 1.7.46 2.56.43 2.03-.04 1.94-2.59 1.75-4.05a.7.7 0 0 0-.33-.51c-1-.67-2.21-.84-3.38-.96-.22-.02-.45.03-.67.1-.95.26-.82 1.41-.82 2.2zm-2.8.12c0-.4.01-.8-.01-1.19-.03-.75-.62-1.19-1.35-1.14-1 .05-1.99.22-2.91.63-.37.17-.79.38-.85.83-.16.96-.14 1.9.15 2.84.22.73.74 1.09 1.48 1.13.9.05 1.86-.01 2.67-.45.38-.22.63-.54.72-.98.12-.55.1-1.11.1-1.67zM25.27 1038.61l.44.15c.36.12.68.32.94.6.36.4.7.82 1.06 1.23.13.15.18.32.2.51l.1 1.93c.02.44 0 .88.01 1.31 0 .22-.07.4-.23.56a8.6 8.6 0 0 1-1.78 1.55c-.23.14-.47.25-.56.55-.03.1-.18.17-.28.25a17.7 17.7 0 0 1-6.9 2.9c-3.83.68-7.77-.38-11.04-2.38-.21-.13-.44-.24-.53-.5-.04-.12-.2-.2-.33-.27a8.73 8.73 0 0 1-1.92-1.48.91.91 0 0 1-.33-.7l-.03-3c0-.3.07-.57.27-.8.58-.7 1.04-1.58 1.97-1.85l.25-.1.64-1.81c.04-.14.03-.29.04-.43.08-1.31.18-2.3 1.24-3.2a5.15 5.15 0 0 1 1.86-1c.38-.12.74-.26 1.1-.45a9.8 9.8 0 0 1 8.84-.1l1.15.46c1.35.48 2.47 1.46 2.65 2.95.06.44.2.84.38 1.24.28.6.52 1.22.8 1.88zm-17 1.65c-.04.17-.1.33-.13.49-.25 1.77-.26 3.58.12 5.33.07.31.22.54.49.69a13.22 13.22 0 0 0 6.06 1.72c1.85.16 3.65-.12 5.42-.64.92-.28 1.8-.66 2.62-1.16.87-.53.9-.57 1-1.57a18 18 0 0 0-.26-4.97c-.03-.13-.09-.25-.15-.42l-.24.17c-.77.66-1.5.79-2.47.93a6.24 6.24 0 0 1-3.43-.36c-.71-.28-1.25-.73-1.42-1.53-.01-.05-.05-.1-.08-.16-.04.07-.09.12-.1.18-.14.83-.7 1.3-1.42 1.6-.87.38-1.77.62-2.73.56-1.1-.07-2.2-.14-3.14-.85-.01-.01-.04 0-.14 0zm8.85-4.12h.02c0 1.16-.12 2.54 1.24 2.95.82.25 1.8.38 2.65.2 1.66-.34 1.41-2.65 1.28-3.92a.81.81 0 0 0-.5-.68c-.36-.15-.71-.34-1.09-.44-.58-.15-1.18-.25-1.77-.33-.87-.12-1.8.14-1.83 1.16v1.06zm-2.75.3h-.02c-.03-.42-.06-.83-.07-1.25a1.15 1.15 0 0 0-1.09-1.08 7.9 7.9 0 0 0-3.41.84c-.39.2-.6.5-.63.94-.08 1-.04 1.87.34 2.81.25.71 1.05.89 1.71.88a6.4 6.4 0 0 0 2.07-.4c1.26-.5 1-1.63 1.1-2.74zM6.91 780.4c.22-.68.52-1.25.92-1.76.2-.25.3-.52.28-.86-.05-.59.07-1.16.26-1.72.33-1.08 1.27-1.82 2.27-2.26 1.32-.55 4.06-1.2 5.34-.41.17.1.35.1.54.1l1.05.07c.1 0 .21.01.3-.02 1.4-.46 3.58.45 4.82 1.13 1.43.82 2.43 2 2.24 3.72-.05.54.02 1.01.26 1.5.33.67.56 1.38.63 2.12l.12.1c.64.27 1.1.75 1.46 1.32.13.21.26.43.41.63.26.31.3.67.26 1.05-.09.96-.14 1.91-.23 2.87a1 1 0 0 1-.38.68 8.25 8.25 0 0 1-3.99 1.96c-1.03.2-2.08.39-3.12.62-.8.19-1.6.2-2.41.13-.15-.02-.3-.03-.44-.02a13.6 13.6 0 0 1-4.33-.4c-.18-.05-.38-.04-.56-.08l-1.53-.29a.75.75 0 0 1-.23-.08c-.85-.5-1.79-.79-2.68-1.19-.5-.23-1.02-.46-1.52-.72a7.92 7.92 0 0 1-2.49-2.24.73.73 0 0 1-.14-.53c.07-1.03.14-2.07.32-3.1.03-.24.14-.43.3-.6.67-.7 1.27-1.49 2.27-1.72zm16.4 1.02-.35.13c-.68.29-1.39.4-2.13.34a6.75 6.75 0 0 1-3.58-1.14c-.42-.28-.7-.65-.8-1.15-.02-.1-.07-.21-.11-.36-.48.98-.78 1.24-1.8 1.54-.46.13-.93.26-1.4.3-1.25.11-2.46 0-3.56-.68l-.4-.2a.65.65 0 0 0-.48.43c-.36.93-.55 1.92-.66 2.91-.1.91-.1 1.83-.02 2.74.02.28.12.48.36.62 2.3 1.33 4.98 1.8 7.58 2.07 2.34.09 4.75.07 6.98-.72.28-.1.46-.27.52-.56.07-.37.17-.73.24-1.1.23-1.4.35-2.8.22-4.23-.04-.4-.17-.72-.6-.94zm-.14-3.66v-.18c.13-.9-.58-1.21-1.25-1.56-.84-.37-1.7-.7-2.6-.85-.68-.06-1.21.28-1.28.97-.07.6-.12 1.2-.17 1.8-.04.81.35 1.33 1.08 1.65.95.4 1.98.66 3.02.65.53.01.73-.48.92-.9.22-.5.26-1.04.28-1.58zm-11.22 1.6c1.16-.2 2.88-.07 3.08-1.64.1-.63.17-1.27.22-1.92.08-.84-.76-1.06-1.45-1-1.06.12-2.12.26-3.1.7-.3.12-.48.37-.56.7a5.46 5.46 0 0 0-.14 1.98c.03.2.09.4.16.6.1.25.28.41.56.45l1.23.12zM25.31 111.57l.54.22c1 .35 1.49 1.37 2.1 2.15.07 1.17.01 2.33 0 3.5 0 .31-.13.54-.36.76a8.89 8.89 0 0 1-2.78 1.86c-.17.07-.34.16-.5.25a18.73 18.73 0 0 1-9 2.26 16.3 16.3 0 0 1-8.53-2.89c-.2-.14-.42-.27-.5-.53-.04-.08-.14-.15-.23-.2-.64-.4-1.15-.96-1.68-1.5a1.12 1.12 0 0 1-.34-.77c-.01-.42-.03-.83-.01-1.25.02-.52.07-1.04.12-1.56.03-.31.14-.6.36-.84.56-.6 1-1.38 1.82-1.67.19-.07.3-.2.37-.39.14-.34.32-.68.45-1.03.07-.16.1-.36.1-.54.02-3.29 1.7-4.5 4.76-5.03.43-.08.86-.17 1.27-.3.97-.28 1.96-.43 2.96-.45.75-.01 1.49.16 2.22.33.7.17 1.39.42 2.05.75.26.13.54.21.8.32.58.21 1.12.47 1.6.85a3.1 3.1 0 0 1 1.22 2.17c.02.23.08.44.2.65.45.9.8 1.83.99 2.88zm-2.19.69a4.3 4.3 0 0 1-1.74.84c-1.58.33-3.3.25-4.73-.55a1.9 1.9 0 0 1-1.06-1.31c-.02-.08-.08-.15-.16-.3-.2.97-.84 1.45-1.66 1.72a6.2 6.2 0 0 1-3.37.3 5 5 0 0 1-2.1-.74c-.03-.02-.08-.02-.15-.03a12.78 12.78 0 0 0-.4 5.36c.12.85.2 1 .93 1.42.92.55 1.9.95 2.94 1.2 1.59.36 3.18.65 4.82.54 2.16-.13 4.33-.54 6.25-1.56.35-.19.62-.41.63-.85.3-1.67.29-3.36.16-5.04a3.66 3.66 0 0 0-.12-.67c-.03-.1-.13-.2-.24-.33zm-6.2-3.55h-.02c0 .4-.02.8 0 1.18.05.7.41 1.17 1.05 1.42.87.32 1.78.45 2.7.4 1.59-.07 1.67-2.07 1.7-3.28.03-.66-.25-1.1-.86-1.37-.96-.43-1.96-.66-3-.78-.18-.02-.37.02-.55.07-.44.1-.73.38-.85.82-.13.5-.12 1.03-.17 1.54zm-2.75-.58h-.03c.01-.3.04-.58.04-.87 0-.88-.77-1.12-1.51-1.02-.64.1-1.27.2-1.9.35-.32.08-.62.22-.92.36-.37.16-.61.43-.64.85-.04.56-.1 1.12-.11 1.68 0 .28.05.58.12.86.2.76.59 1.09 1.37 1.12a6.4 6.4 0 0 0 2.15-.26c.73-.21 1.18-.69 1.27-1.46.07-.53.1-1.07.16-1.6zM25.4 1070.75c1.04.45.97.34 1.93 1.49.64.76.64.77.66 1.74.02.82 0 1.63.02 2.44 0 .3-.1.52-.3.72-.59.6-1.2 1.14-1.93 1.57-6.07 4.11-13.06 4.27-19.24.3-.74-.49-1.45-.98-2.08-1.6a1.06 1.06 0 0 1-.36-.82c.02-1 .01-2 .01-3 0-.26.08-.48.25-.68.6-.71 1.08-1.6 2.03-1.88l.2-.08c.23-.61.47-1.19.68-1.78.07-.19.08-.4.1-.6.1-1.4.13-2.34 1.29-3.31.45-.38.96-.66 1.5-.87 1.2-.35 4.34-1.32 5.57-1.34a11 11 0 0 1 3.44.56c.72.25 1.48.41 2.2.66 1.54.52 2.78 1.65 2.87 3.34.04.42.15.8.33 1.19.3.62.54 1.26.84 1.95zm-1.94.7c-.15.07-.2.09-.25.13-.55.4-1.17.64-1.83.75-1.54.32-3.03.2-4.42-.54a1.83 1.83 0 0 1-.97-1.17c-.03-.1-.08-.18-.16-.36l-.1.38c-.24.95-1.1 1.28-1.93 1.6-1.53.56-3.87.44-5.23-.49-.05-.03-.11-.03-.2-.06-.04.13-.1.25-.11.37a14.27 14.27 0 0 0-.02 5.63c.07.3.2.5.44.64 3.99 2.36 10.58 2.3 14.55-.11.3-.19.49-.43.52-.8.2-1.82.24-3.66-.13-5.46-.03-.16-.1-.3-.16-.5zm-6.23-3.7h.01c0 1.01-.11 2.28 1 2.73.87.37 1.82.44 2.76.4.55-.03.93-.31 1.18-.8.41-.95.38-2 .22-3a.77.77 0 0 0-.41-.6c-.35-.17-.7-.36-1.07-.48a9.36 9.36 0 0 0-2.08-.41c-.8-.1-1.57.2-1.6 1.1-.02.36 0 .71 0 1.07zm-2.78.25c-.02-.55-.03-.93-.06-1.3-.06-.82-.78-1.08-1.5-1-1.05.12-2.1.36-3.04.85a.97.97 0 0 0-.57.9c-.02.54-.04 1.08-.01 1.62.05.8.44 1.85 1.36 1.9.92.06 1.83-.05 2.7-.38 1.24-.46 1.06-1.59 1.12-2.6zM6.77 847.91c.26-.58.47-1.08.7-1.56.12-.27.2-.54.22-.84.1-1.35.3-2.44 1.46-3.3a5.6 5.6 0 0 1 1.96-.92c1.67-.34 3.33-.76 5.04-.87a11.97 11.97 0 0 1 3.65.75c.24.09.52.12.77.21.55.19 1.1.38 1.64.6a3.7 3.7 0 0 1 2.38 3.36c.01.47.14.9.32 1.32.25.61.46 1.24.7 1.9 0 0 .03.04.07.05.71.22 1.2.72 1.62 1.3.85 1.19.71.7.73 2.16 0 .66-.04 1.33-.05 2 0 .46-.16.81-.52 1.13-1.81 1.59-4.14 2.51-6.4 3.25-5.3 1.7-10.88.18-15.31-2.96-.58-.39-1.03-.91-1.5-1.41-.17-.19-.2-.4-.2-.63.03-.71.04-1.42.08-2.13.01-.33.07-.66.09-.99a.97.97 0 0 1 .27-.61c.65-.74 1.25-1.62 2.28-1.8zm9.29-.42c-.05.13-.08.2-.1.29-.23.81-.9 1.21-1.66 1.46-1.73.62-3.9.48-5.46-.53-.08-.05-.18-.07-.3-.12-.6 1.95-.7 4.01-.42 6.02.05.27.15.48.38.62a12.1 12.1 0 0 0 4.45 1.7c1.48.29 2.96.49 4.47.34 1.92-.17 3.86-.47 5.58-1.4.36-.2.58-.44.65-.86a16.85 16.85 0 0 0 .1-5.47c-.02-.15-.02-.33-.19-.43h-.06c-.08.03-.16.04-.23.09-.57.37-1.21.53-1.88.63-1.65.26-4.88-.16-5.24-2.16 0-.04-.04-.07-.1-.18zm6.78-1.81-.06-.91a.92.92 0 0 0-.5-.8c-.3-.17-.59-.35-.9-.45-.63-.2-1.28-.36-1.92-.5-.85-.2-1.74 0-1.84 1-.07.83-.13 1.66-.05 2.49.06.66.43 1.11 1.04 1.36.86.35 1.76.47 2.68.46.78 0 1.19-.64 1.35-1.34.09-.46.15-.94.2-1.31zm-8.11-.8h.06v-.93c0-.85-.7-1.18-1.46-1.14-.81.07-1.6.22-2.39.46-.23.07-.46.18-.69.28a.99.99 0 0 0-.6.82c-.13.96-.2 1.97.21 2.88.21.52.76.7 1.28.72a7.2 7.2 0 0 0 1.98-.18c1.63-.32 1.66-1.5 1.61-2.9zM6.55 78.99c.26-.58.5-1.08.71-1.6.07-.17.08-.36.1-.54.1-1.8.25-3 1.92-4a9.33 9.33 0 0 1 3.74-1.1c.17-.02.33-.07.5-.1 2.12-.46 3.1-.53 5.23.04 1.15.33 2.36.54 3.43 1.11 1.15.59 2 1.6 2.05 2.92.03.43.15.81.33 1.19.37.71.58 1.47.82 2.23.16.07.3.15.46.2.4.14.74.38 1.01.7.32.4.62.8.94 1.18.14.17.19.36.19.58v3.19c0 .24-.1.43-.26.6a8.29 8.29 0 0 1-3.1 2.07c-6.58 3.25-12.7 3.03-18.85-1.11-.57-.39-1.04-.9-1.51-1.4a.75.75 0 0 1-.17-.38 4.68 4.68 0 0 1-.06-.81l.1-2.31c0-.3.1-.57.3-.8.79-.97 1.02-1.38 2.12-1.86zm1.76.58A12.12 12.12 0 0 0 7.8 83c-.02.86.04 1.7.2 2.55.06.31.2.55.47.69 1.54.91 3.25 1.42 5.01 1.63.93.13 1.86.25 2.8.19 2.32-.12 4.67-.5 6.73-1.64.3-.15.45-.38.51-.73.34-1.88.25-3.78-.02-5.66-.02-.2-.1-.36-.3-.37a6.52 6.52 0 0 1-6.47.1 1.83 1.83 0 0 1-.9-1.14c-.03-.12-.08-.23-.15-.42l-.13.42c-.2.7-.8 1.1-1.45 1.36-1.75.72-3.89.66-5.54-.3-.05-.03-.11-.05-.26-.1zM17.1 76h.01v.94c.04.89.4 1.38 1.23 1.68.78.26 1.58.36 2.4.35.8 0 1.23-.32 1.48-1.09.28-.86.3-1.75.16-2.65a.73.73 0 0 0-.32-.5c-1-.67-2.49-1-3.67-1.07-1.38.05-1.22 1.33-1.3 2.34zm-2.75-.3v-1.01c-.02-.8-.73-1.07-1.43-1.02-.82.1-1.64.26-2.43.55-.6.23-1.2.48-1.22 1.23-.05.79-.13 1.59.1 2.35.2.71.58 1.02 1.3 1.04.81.03 1.62-.07 2.4-.33.7-.23 1.1-.72 1.17-1.46.06-.5.08-.99.11-1.35zM25.46 14.85c1.07.32 1.73 1.23 2.35 2.09.1.14.15.34.16.52.02 1.06.02 2.13.03 3.19 0 .23-.11.38-.26.54-.7.76-1.5 1.39-2.41 1.85-.95.48-1.88.98-2.87 1.38a16.9 16.9 0 0 1-15.02-1.03 9.69 9.69 0 0 1-3.08-2.2.84.84 0 0 1-.26-.6l.03-3.18c0-.22.08-.4.22-.57.6-.7 1.1-1.59 2.03-1.87l.22-.11.68-1.67c.1-.23.15-.46.16-.72.09-1.4.16-2.47 1.35-3.4 1.28-1.05 2.97-1.25 4.54-1.6.84-.24 1.7-.36 2.58-.42.39-.03.79.04 1.18.1.39.05.78.12 1.16.2 1.24.3 2.48.56 3.66 1.04.45.18.84.45 1.21.76.72.6 1.11 1.47 1.19 2.4-.01.6.24 1.12.48 1.65.23.51.43 1.04.67 1.65zm-17 .63c-.15.21-.2.45-.24.7-.31 1.72-.34 3.49-.03 5.21.07.39.25.63.58.82 3.99 2.14 9.68 2.21 13.77.3 1.28-.65 1.1-.53 1.28-1.83.14-1.07.12-2.16.03-3.24-.05-.58-.15-1.15-.24-1.73-.02-.15-.09-.27-.31-.3-.76.61-1.8.8-2.78.9a6 6 0 0 1-3.44-.67A1.9 1.9 0 0 1 16 14.28c0-.05-.04-.09-.07-.13-.04.02-.06.03-.07.05l-.06.1c-.16.88-.9 1.33-1.67 1.6-1 .37-2 .54-3.06.39a5.64 5.64 0 0 1-2.42-.77c-.04-.03-.11-.03-.19-.04zm14.09-3.55c-.01-.15-.03-.3-.02-.44.07-.92-.63-1.26-1.37-1.53-.8-.25-1.6-.45-2.44-.51-.16-.01-.33-.01-.49.02-.74.13-.94.72-.94 1.4 0 .77-.05 1.55.1 2.3.1.48.36.84.8 1.06.84.4 1.88.52 2.8.5.71-.03 1.12-.35 1.34-1.02.2-.58.27-1.17.22-1.78zm-8.07-.25h.02v-1.06c-.05-1.05-1-1.23-1.87-1.06-.95.19-1.94.33-2.78.87a.93.93 0 0 0-.48.76c-.1 1.2-.25 3.48 1.43 3.53.8.03 1.58-.07 2.35-.3 1.4-.41 1.38-1.51 1.33-2.74zM25.4 46.88l.12.09c.76.22 1.3.73 1.76 1.34.8 1.05.69.68.72 2.03.02.77 0 1.54 0 2.31 0 .27-.1.47-.28.67a8.99 8.99 0 0 1-2.89 2.03c-4.4 2.33-9.11 3.2-13.92 1.58a23.2 23.2 0 0 1-5-2.38c-.63-.4-1.12-.93-1.64-1.45a.62.62 0 0 1-.17-.45c-.01-.35-.04-.7-.03-1.06 0-.69.04-1.38.05-2.06 0-.29.1-.53.28-.75.57-.67 1.06-1.5 1.95-1.79.22-.06.33-.2.4-.42.13-.4.28-.78.46-1.16.13-.3.19-.58.2-.9.04-.54.11-1.08.2-1.6a2.9 2.9 0 0 1 .97-1.64c1.12-1.04 2.67-1.37 4.13-1.63.9-.16 1.79-.37 2.7-.5 1.59-.18 3.13.33 4.65.72 1.12.32 2.3.6 3.15 1.44.58.52.96 1.17 1.02 1.94.07.81.32 1.54.67 2.26.2.43.36.93.5 1.38zm-16.98.62c-.17.25-.21.56-.26.86-.18 1-.29 2.03-.23 3.05.03.68.14 1.36.21 2.04.04.34.22.59.52.74 1.53.86 3.22 1.36 4.97 1.54a15.83 15.83 0 0 0 9.19-1.33c.73-.38.81-.48.91-1.27.22-1.8.2-3.63-.17-5.4-.05-.1-.14-.19-.18-.24-.52.22-.99.47-1.48.62a6.55 6.55 0 0 1-4.8-.38c-.57-.27-1-.68-1.14-1.33-.02-.09-.08-.16-.17-.33-.12.94-.66 1.42-1.4 1.73a6 6 0 0 1-2.35.56 6.16 6.16 0 0 1-3.47-.84c-.03-.02-.08-.01-.15-.02zm8.84-3.78c-.03 1.28-.09 2.35 1.37 2.77.8.23 1.63.31 2.47.27.71-.02 1.13-.6 1.27-1.24.2-.7.16-1.4.14-2.1a1.2 1.2 0 0 0-.74-1.13c-1.01-.48-2.08-.73-3.18-.79-.85-.05-1.3.42-1.33 1.29v.93zm-2.76-.06h-.04c0-.36.02-.71 0-1.07-.04-.9-.88-1.15-1.66-1.03-.61.1-1.23.23-1.83.4-.37.1-.73.27-1.09.44a.87.87 0 0 0-.53.79c-.02.46-.08.91-.07 1.37.02.89.3 2.15 1.4 2.17.25 0 .5.02.75 0 1.17-.1 2.86-.3 2.96-1.77l.1-1.3zM6.78 814.75l1.01-1.9c.1-.17.11-.35.12-.54.06-2.08.76-3.38 2.75-4.16a9.99 9.99 0 0 1 3.6-.66c.2 0 .39-.02.56.04.44.13.87.1 1.3.07.55-.04 1.09 0 1.62.11.2.05.41.07.62.06 1.42 0 2.8.48 4.06 1.09 1.18.6 2.26 1.64 2.34 3.02.02.23.05.46.03.68-.05.46.07.86.24 1.27.28.69.52 1.4.8 2.17l.37.2c.3.15.56.35.77.62l.94 1.32a.8.8 0 0 1 .15.53l-.19 3.3a.62.62 0 0 1-.22.44 7.8 7.8 0 0 1-3.3 1.94c-1.25.33-2.48.7-3.75.98-.61.14-1.22.2-1.85.2-.87-.02-1.74 0-2.62 0-1.48-.03-2.94-.29-4.4-.52-.36-.07-.75-.08-1.04-.36-1.25-.55-2.55-1.04-3.79-1.62a6.46 6.46 0 0 1-2.17-1.65c-.8-.91-.75-.6-.66-1.94.04-.72.13-1.45.19-2.18.03-.32.13-.6.37-.83.62-.66 1.22-1.49 2.15-1.68zm2.1.11c-.09.1-.2.18-.24.28-.09.2-.16.39-.2.6-.33 1.29-.51 2.6-.46 3.95l.08 1.3a.7.7 0 0 0 .38.6 17.27 17.27 0 0 0 9.45 2.06c1.72-.12 3.46-.3 5.05-1 .33-.14.57-.34.6-.72.4-1.65.48-3.34.35-5.02-.05-.4 0-.91-.48-1.07a6.5 6.5 0 0 1-6.25-.46c-.42-.27-.7-.64-.81-1.14-.02-.1-.07-.19-.13-.36-.07.14-.1.2-.12.28-.34 1.02-1.42 1.29-2.35 1.53a6.3 6.3 0 0 1-4.87-.83zm8.85-2.75h.01v.7c.03.77.58 1.27 1.27 1.52.85.3 1.73.47 2.63.46.7.01.97-.54 1.16-1.1.24-.71.25-1.44.2-2.17a.84.84 0 0 0-.4-.67 6.2 6.2 0 0 0-.75-.45c-.72-.34-1.48-.55-2.25-.74-.82-.17-1.64-.01-1.73.96-.06.5-.1 1-.14 1.5zm-6.05 2.03a7.67 7.67 0 0 0 1.97-.27 1.62 1.62 0 0 0 1.23-1.4c.08-.71.15-1.41.2-2.12a.94.94 0 0 0-.74-.96 2.6 2.6 0 0 0-.73-.06 9.16 9.16 0 0 0-2.97.65c-.43.15-.68.45-.73.91-.05.45-.13.91-.12 1.36 0 .37.1.74.19 1.1.1.42.4.68.84.72l.86.07z"}),l=(0,n.jsx)("path",{d:"M8.76 462.86c-.58-.5-.94-.8-1.6-.2-.14-.1-.11-.25-.09-.4.04-.2.13-.39.28-.53.23-.22.5-.26.8-.1.4.23.72.5.7 1.02-.01.05-.05.1-.09.2zM17.44 249.49a2.6 2.6 0 0 0-2.95-.4c-.18-.22-.1-.46.1-.6a2.33 2.33 0 0 1 2.88.22c.23.22.22.4-.03.78zM10.2 247.77c-.2-.32.11-.63.38-.74.74-.29 1.56.02 2.1.57.27.27.39.58.29 1-.1-.06-.2-.1-.26-.16-.56-.6-1.42-1-2.23-.72-.1.03-.2.04-.28.05zM14.83 216.74c-.15-.32-.09-.53.13-.72.76-.63 2.01-.67 2.78-.06.3.23.32.4.09.81a2.52 2.52 0 0 0-3-.03zM13.24 216.46c-.88-.78-1.78-1.06-2.79-.48-.2-.35.02-.67.32-.84.74-.4 1.87-.14 2.36.54.14.2.22.44.11.78zM14.28 280.54c-1.18-1.11-1.3-1.22-2.92-1.08.04-.15.05-.3.13-.4.08-.12.2-.22.33-.26 1.01-.27 1.92.12 2.45.92.15.24.14.5.01.82zM15.79 281.12c-.1-.26-.07-.44.11-.55.16-.1.33-.19.5-.24.83-.23 1.6-.17 2.26.47.29.28.28.44-.04.86-.8-.8-1.74-.97-2.83-.54zM16.4 311.07c.08-.5.3-.72.68-.84.73-.23 1.58-.19 2.14.38.3.28.35.6.22.96-.02.03-.07.05-.12.1-.76-1.01-1.77-1-2.93-.6zM20.67 311.98c-.01-.2.04-.35.18-.46.41-.36.92-.6 1.47-.53.31.04.54.2.7.47.16.28.03.5-.1.74-.06 0-.12 0-.13-.02-.42-.57-.97-.54-1.56-.36-.14.04-.26.13-.4.18-.04.01-.1-.02-.16-.02zM15.21 183.87c-.16-.3-.07-.5.14-.7a2.22 2.22 0 0 1 2.7-.15c.11.08.2.2.28.31.07.1.04.2-.08.56-.26-.06-.44-.3-.7-.35-.58-.16-.99-.2-1.58-.02-.25.07-.48.22-.76.35zM13.61 183.68c-.9-.77-1.8-.98-2.78-.38-.17-.33-.13-.56.11-.75.32-.26.7-.36 1.1-.35.52 0 .97.2 1.35.56.24.23.29.4.22.92zM10.05 493.97c-.13-.26-.1-.48.02-.7a1.7 1.7 0 0 1 2.5-.44c.26.19.25.45.18.77-1.12-.48-1.52-.6-2.7.37zM8.85 494.08c-.52-.3-.98-.54-1.4.02-.1.11-.16.24-.28.41-.35-1 .73-2.11 1.52-1.13.14.18.23.4.16.7zM19.7 651.07c-.6-.36-1.23-.8-1.96-.59-.33.1-.65.25-.98.38-.16-.25-.17-.36 0-.56.7-.8 1.99-.76 2.75-.07.27.23.33.5.2.84zM15.13 650.85c-1.29-.78-1.95-.52-3.07.32-.08-.3-.02-.55.14-.75.52-.61 1.52-1.05 2.47-.54.35.19.51.46.46.97zM19.63 683.75c-.91-.87-1.87-1.02-2.92-.38-.15-.37-.14-.46.08-.65a1.88 1.88 0 0 1 1.68-.43c.4.07.73.27 1.02.55.26.24.33.5.14.91zM15.1 683.16c-.36-.15-.69-.31-1.03-.44-.76-.25-1.39.25-2.03.6a.69.69 0 0 1 .17-.73 2 2 0 0 1 2.45-.38c.36.23.52.53.44.95zM15.18 619c-1.15-.61-2.11-.44-2.96.55-.16-.37-.16-.55 0-.77.5-.68 1.53-1.16 2.48-.68.28.12.35.3.47.55.05.1.05.2.01.34zM19.73 618.87c-1-.66-1.97-.76-2.9.08-.22-.36-.23-.43-.04-.66a1.95 1.95 0 0 1 2.82-.14c.2.19.22.43.12.72zM12.75 949.58v-.45c.04-.4.34-.7.73-.75.37-.03.75.2.88.57.04.13.06.28.08.42l.15 1.8c.1 1.09-1.3 1.26-1.63.31l-.06-.3-.15-1.6zM19.02 950.16v.8c-.04.97-1.5 1.16-1.64.19a37.7 37.7 0 0 1-.14-2.23c-.05-.83 1.12-1.19 1.53-.47.07.12.11.27.13.41.05.43.08.87.12 1.3zM17.24 981.2v-.93c0-.21.04-.41.18-.58.4-.55 1.32-.38 1.46.3.08.74.1 1.49.13 2.23 0 .43-.24.71-.62.84-.48.16-.96-.12-1.02-.62-.05-.4-.06-.82-.1-1.24h-.03zM12.75 980.86v-.44c.04-.41.32-.71.7-.77.39-.06.8.2.92.58.04.12.06.25.07.37.05.63.1 1.25.13 1.87.08.98-1.16 1.2-1.56.42-.07-.13-.1-.28-.12-.42l-.14-1.61zM18.68 150.38a2.34 2.34 0 0 0-2.99.02c-.14-.31-.1-.53.1-.73.72-.72 1.97-.8 2.75-.18.1.09.2.22.25.34.07.14.04.18-.1.55zM11.15 150.06c-.1-.44.02-.72.36-.94a1.9 1.9 0 0 1 2.3.17c.27.23.38.52.29.88-1.43-.77-1.71-.78-2.95-.11zM18.93 717.08c-.3-.07-.59-.16-.9-.2-.3-.05-.61-.04-.96-.06-.03-.1-.09-.21-.08-.32.03-.4.07-.79.12-1.18.04-.25.17-.58.47-.57.37.02.74.04 1.11.08.24.02.36.19.44.4.02.07.06.15.06.23a5.3 5.3 0 0 1-.17 1.54c-.01.03-.06.05-.1.08zM14.57 716.54a4.43 4.43 0 0 0-2.04.06c0-.18-.04-.35-.03-.5.03-.38.05-.76.12-1.12.08-.4.27-.56.69-.6.29-.02.58-.02.87-.02.22 0 .35.13.42.31.05.12.09.24.09.36-.02.48-.06.95-.12 1.51zM16.48 587.32c-.26-.3-.2-.54-.02-.78.54-.73 1.7-1.1 2.72-.38.23.16.26.32.19.73-1.07-.56-2.04-.53-2.89.43zM14.84 587.45c-1.47-.4-1.9-.22-2.92.86a.7.7 0 0 1-.02-.76c.43-.73 1.4-1.3 2.42-.9.18.07.33.17.42.34.08.14.18.28.1.46zM17.25 918.02v-1c.02-.39.24-.68.59-.79.53-.18 1.07.23 1.08.78.03.69.07 1.37.07 2.06 0 .43-.24.71-.63.83-.49.14-.94-.12-1-.63-.06-.41-.06-.83-.09-1.25h-.02zM14.5 918.44c.01.29.04.58.04.87 0 1.2-1.66 1.02-1.67-.06l-.11-1.67c0-.15-.02-.3 0-.44a.83.83 0 0 1 1.63-.12c.1.46.08.95.11 1.42zM16.06 524.25c-1.17-.53-2.14-.34-2.94.63-.24-.23-.23-.46-.1-.69a1.97 1.97 0 0 1 1.88-1c.27.02.53.1.78.2.37.15.43.3.38.86zM11.6 525.1c-1.24-.21-1.38-.37-2.44.87-.13-.19-.13-.4-.09-.6a1.55 1.55 0 0 1 1.94-1.09c.18.06.34.15.45.31.09.16.2.3.13.5zM18.2 555.23c-1.12-.47-2.1-.33-2.88.7-.26-.22-.27-.45-.14-.69.18-.32.42-.57.74-.74.64-.36 1.3-.37 1.97-.05.33.15.38.31.3.78zM10.95 557.29a.93.93 0 0 1 .08-1.06c.46-.65 1.06-.97 1.87-.85.46.06.75.3.85.82-.1 0-.18.02-.24 0-1.3-.33-1.8.07-2.56 1.09zM19 1012.6v.9c-.01.99-1.5 1.23-1.65.18-.08-.7-.07-1.41-.1-2.12-.06-.57.45-1.08 1.03-.93.3.07.51.27.6.57.03.12.05.25.06.37l.06 1.03zM14.5 1012.85c.01.3.04.59.04.88.03 1.08-1.47 1.12-1.63.15-.08-.76-.13-1.53-.14-2.3.03-.95 1.43-1.02 1.63-.1.09.46.07.92.1 1.37zM19.03 749.22c-.06.56-.1 1.03-.17 1.5-.01.13-.05.25-.1.36-.11.28-.22.34-.53.3-.27-.03-.53-.08-.8-.13-.28-.04-.33-.36-.33-.6.06-.66.1-1.32.2-1.98.09-.87 1.3-.91 1.63-.23.1.2.12.59.1.78zM13.59 750.92l-.38.03c-.28.04-.43-.03-.53-.4a1.1 1.1 0 0 1-.03-.37c.04-.56.1-1.11.15-1.67 0-.12.04-.25.08-.36.33-.87 1.75-.74 1.69.26-.05.66-.11 1.32-.2 1.98-.04.42-.16.5-.6.53h-.18zM18.97 885.63c0 .47.06.97-.12 1.41-.15.35-.55.53-.94.46-.39-.06-.66-.45-.64-.87v-1.93c-.04-.5.34-.96.84-.96.39 0 .7.25.8.65.1.4.05.83.06 1.24zM14.5 885.73v1c-.03 1.12-1.58 1.06-1.66.07-.03-.72-.05-1.45-.06-2.17.02-.46.36-.85.83-.84.33 0 .6.15.74.46.19.47.1.99.12 1.48h.02zM17.26 1043.83c0-.35-.02-.7 0-1.06a.82.82 0 0 1 .8-.8c.57-.01.89.45.89.99.02.62.04 1.25.03 1.87 0 .16-.05.33-.12.47-.35.68-1.4.58-1.53-.23-.06-.4-.03-.83-.03-1.24h-.04zM14.52 1044.12v.93c0 1.12-1.57 1.08-1.65.09-.06-.7-.08-1.41-.1-2.12a1 1 0 0 1 .08-.42c.29-.68 1.34-.62 1.54.1.12.46.06.95.07 1.42h.06zM18.99 783.84l-.14 1.48c-.01.12-.04.25-.08.37-.13.43-.46.64-.9.6-.51-.06-.8-.56-.72-1.06.06-.66.1-1.33.2-1.99.17-1 1.47-.87 1.63.03.03.16 0 .33 0 .57zM12.72 784.4c.05-.47.08-.97.16-1.47.1-.91 1.51-1.01 1.63-.05 0 .74-.09 1.5-.15 2.24-.06 1-1.5 1.1-1.63.12-.03-.27 0-.54 0-.84zM19.1 116.75c-.96-.71-1.94-.74-2.9-.02-.2-.05-.19-.2-.17-.35.01-.1.06-.2.13-.27a2.03 2.03 0 0 1 2.85-.2c.27.23.28.4.09.84zM14.5 116.58c-.3-.15-.61-.32-.93-.45-.76-.3-1.4.15-2.04.5-.11-.4.02-.7.33-.94a1.9 1.9 0 0 1 2.32-.02c.31.23.4.48.33.91zM17.26 1075.37c0-.37-.01-.75 0-1.12.06-.4.36-.7.74-.75.57-.07.96.43.96.98.01.62.02 1.25.01 1.87 0 .53-.39.98-.94.93-.37-.03-.64-.27-.73-.66-.02-.12-.02-.25-.02-.38v-.87h-.02zM14.5 1075.54c0 .38.01.75-.01 1.12a.8.8 0 0 1-.75.71.85.85 0 0 1-.9-.83c-.02-.67-.06-1.33-.07-2 0-.16.04-.33.1-.48.28-.67 1.35-.61 1.54.12.1.44.05.9.06 1.36h.03zM14.45 852.61c0 .4.03.8-.03 1.18-.17.9-1.36.92-1.61.07a1.34 1.34 0 0 1-.04-.37c0-.58 0-1.16.02-1.74-.02-1.35 1.56-1.35 1.68-.32.04.39 0 .79 0 1.18h-.02zM17.28 852.74c0-.42-.04-.84.03-1.25.21-.92 1.43-.9 1.64 0 .03.1.03.2.03.31l-.08 1.94c0 .5-.46.92-.94.86-.42-.04-.7-.36-.72-.8-.02-.36 0-.71 0-1.06h.04zM19.44 84.04c-1.08-.73-1.92-.75-3 .02-.13-.28-.11-.5.07-.7a2.04 2.04 0 0 1 2.67-.28c.33.25.42.54.26.96zM11.8 84.03c-.08-.34-.02-.61.22-.85a1.92 1.92 0 0 1 2.4-.24c.35.23.5.53.44.97-1.54-.73-1.58-.72-3.07.12zM17.26 19.16v-.81c0-.12 0-.25.03-.37a.85.85 0 0 1 .78-.68c.46-.02.87.4.89.87v2.05c-.06 1.04-1.44 1.24-1.67.18-.03-.12-.02-.25-.02-.37v-.87zM14.49 19.3c0 .36.02.71 0 1.06-.06.97-1.42 1.05-1.63.13a1.87 1.87 0 0 1-.05-.37c-.02-.58-.04-1.16-.04-1.74 0-.56.3-1.05.91-1.02.35.02.63.23.73.58.04.14.06.28.06.43v.93h.02zM14.53 51.4c0 .38.03.79-.1 1.16-.06.19-.2.3-.42.3l-.74.07a.44.44 0 0 1-.48-.22c-.08-.14-.16-.3-.17-.45-.04-.56-.04-1.12-.05-1.68a1 1 0 0 1 1.07-.96c.45.04.81.38.86.84.03.31 0 .62 0 .93h.03zM17.1 51.28c0-.25-.02-.5 0-.75.05-1.22 1.83-1.23 1.92-.04.03.53.02 1.08 0 1.61-.02.18-.11.36-.2.52a.48.48 0 0 1-.47.25h-.5c-.94 0-.74-.94-.75-1.6zM17.24 819.1c.03-.4.03-.8.09-1.19.16-1.01 1.53-.89 1.66.05v.25l-.13 1.93c-.04.47-.41.88-.9.84a.8.8 0 0 1-.73-.59c-.1-.43.01-.87.02-1.3zM14.45 818.8c-.03.4-.03.82-.08 1.23-.08.4-.45.7-.85.68-.4-.01-.77-.33-.77-.75 0-.78.05-1.57.12-2.35.04-.37.36-.61.73-.66.47-.06.87.25.9.73.02.37 0 .74 0 1.11h-.05z"}),i[0]=a,i[1]=l):(a=i[0],l=i[1]),i[2]!==r||i[3]!==d||i[4]!==u?(c=(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:d,height:u,viewBox:"0 0 32 1088",className:"Celebrate-module__celebrate--W7jkS","data-animation-state":r,fill:"currentColor","aria-hidden":!0,children:[a,l]}),i[2]=r,i[3]=d,i[4]=u,i[5]=c):c=i[5],c}try{d.displayName||(d.displayName="CopilotAnimationCelebrate")}catch{}function u(e){let a,l,c,i,s=(0,t.c)(10),{scale:r,state:o}=e,u=void 0===r?1:r;return s[0]!==u||s[1]!==o?(a=(0,n.jsx)("div",{className:"Activate-module__copilot--dZWRK",children:(0,n.jsx)(d,{scale:u,state:o})}),s[0]=u,s[1]=o,s[2]=a):a=s[2],s[3]===Symbol.for("react.memo_cache_sentinel")?(l=Array.from({length:10}),s[3]=l):l=s[3],s[4]!==u?(c=(0,n.jsx)("div",{className:"Activate-module__sparkles--DWcVb",children:l.map((e,a)=>{let l=`${(.1*Math.random()+.2).toFixed(2)}s`,t=`${(.4+.2*Math.random()).toFixed(2)}s`;return(0,n.jsxs)("div",{className:"Activate-module__sparkle--xUJlF",style:{animationDelay:l,animationDuration:t},children:[(0,n.jsx)("div",{className:"Activate-module__sparkleTrail--J3ZVZ",style:{animationDelay:l,animationDuration:t}}),(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:16*u,height:16*u,viewBox:"0 0 16 16",style:{animationDelay:l,transform:`scale(${(.2*Math.random()+.8).toFixed(2)})`},"aria-hidden":"true",children:(0,n.jsx)("path",{d:"M7.53 1.282a.5.5 0 0 1 .94 0l.478 1.306a7.492 7.492 0 0 0 4.464 4.464l1.305.478a.5.5 0 0 1 0 .94l-1.305.478a7.492 7.492 0 0 0-4.464 4.464l-.478 1.305a.5.5 0 0 1-.94 0l-.478-1.305a7.492 7.492 0 0 0-4.464-4.464L1.282 8.47a.5.5 0 0 1 0-.94l1.306-.478a7.492 7.492 0 0 0 4.464-4.464Z"})})]},a)})}),s[4]=u,s[5]=c):c=s[5],s[6]!==o||s[7]!==a||s[8]!==c?(i=(0,n.jsxs)("div",{className:"Activate-module__activate--w81cr","data-animation-state":o,children:[a,c]}),s[6]=o,s[7]=a,s[8]=c,s[9]=i):i=s[9],i}try{u.displayName||(u.displayName="CopilotAnimationActivate")}catch{}function m(e){let a,l,c,i=(0,t.c)(6),{scale:s,state:r}=e,o=void 0===s?1:s,d=32*o,u=672*o;return i[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)("path",{d:"m6.66 439.62-.12-.65a9.02 9.02 0 0 1-1.69-1.26c-.26-.24-.54-.46-.74-.8-.1-1.24-.04-2.51.02-3.77.37-.58.8-1.1 1.25-1.58.23-.24.51-.42.83-.54l.54-.2c.34-.91.65-1.83.8-2.8.16-1.34 1.2-2.24 2.42-2.68.37-.17.69-.4.83-.8 3.45-2 6.97-1.94 10.44-.05.34.74 1.05.99 1.66 1.4a3.18 3.18 0 0 1 1.33 1.97c.06.27.16.51.26.76.29.73.57 1.43.8 2.18l.53.2c.36.13.68.32.93.6.35.41.69.84 1.03 1.26.17.2.21.45.22.7 0 1.12.05 2.25 0 3.36-.68.89-1.54 1.45-2.46 2.07-.05.22-.1.46-.17.7a15.75 15.75 0 0 1-9.23 3.53 15.71 15.71 0 0 1-9.23-3.35 1 1 0 0 1-.25-.25zm16.95-6.84c-.58.53-1.08.93-1.83 1.1-1.54.36-3.2.26-4.64-.42a2.17 2.17 0 0 1-1.2-1.52c-.07.08-.13.12-.14.18-.17.71-.66 1.13-1.3 1.41a7.11 7.11 0 0 1-3.97.45 3.84 3.84 0 0 1-1.98-.87c-.07-.06-.14-.15-.26-.08-.4 1.5-.43 4.57.1 5.91 2.57 2.16 7.03 2.87 10.26 2.16 1.74-.4 3.61-1.03 4.93-2.29.28-1 .32-2.05.3-3.09a13.5 13.5 0 0 0-.27-2.94zm-6.33-3.3c.03.44.05.98.12 1.51.07.6.4 1.04.99 1.25.93.33 1.88.34 2.82.12.9-.2 1.12-1 1.28-1.81.15-.73.08-1.45.02-2.18a.94.94 0 0 0-.53-.79 4.67 4.67 0 0 0-.98-.4 10.1 10.1 0 0 0-2.03-.33c-.78-.06-1.51.24-1.6 1.1-.05.47-.06.95-.1 1.53zm-2.8-.14h-.01v-1.18c-.13-1.81-2.2-1.21-3.39-.98-.65.16-1.7.46-1.73 1.27-.02.5-.07 1-.05 1.5.01.5.11.99.3 1.46.18.48.52.79 1 .95.14.04.28.09.43.1.69.05 1.37.06 2.05-.1 1.54-.38 1.4-1.73 1.4-3.02zM25.53 182.84l-.15.69c-3.72 2.96-8.85 4.44-13.45 2.81a16.1 16.1 0 0 1-5.25-2.84l-.13-.66c-.44-.3-.88-.58-1.28-.9-.4-.34-.76-.72-1.14-1.09-.14-1.3-.05-2.58 0-3.86.38-.58.79-1.1 1.25-1.58.26-.25.55-.45.89-.56.16-.05.31-.12.48-.19.35-.9.64-1.83.8-2.8.17-1.37 1.21-2.27 2.47-2.72.36-.15.64-.37.78-.75a11.16 11.16 0 0 1 4.6-1.48c.76-.13 1.5.02 2.24.14 1.29.2 2.48.67 3.61 1.33.07.1.13.21.17.32a5 5 0 0 0 1.07.76c.93.5 1.54 1.25 1.76 2.3.04.18.09.37.16.53.3.65.56 1.3.75 1.99l.14.36c.15.06.3.14.46.18.4.13.75.36 1.03.68l1 1.2c.11.16.17.33.2.52.06.54.05 2.96-.02 3.58a9.96 9.96 0 0 1-2.44 2.04zm-9.6-7.1-.09.08-.07.17c-.2.8-.9 1.24-1.63 1.5-1.6.56-4 .63-5.4-.43-.14-.1-.23-.26-.42-.25-.4 1-.48 4.48.05 5.91 2.05 1.82 5.2 2.44 7.88 2.48 2.3-.06 5.69-.92 7.34-2.58.36-1.42.34-2.85.24-4.29-.03-.55-.03-1.11-.25-1.69-.54.45-1.05.85-1.73 1.01a7.1 7.1 0 0 1-4.12-.15c-.31-.1-.62-.26-.9-.43-.35-.2-.6-.5-.74-.9l-.16-.43zm3.84.54c.44.08.85.02 1.26-.06.94-.16 1.28-.88 1.44-1.74a7.6 7.6 0 0 0 .04-2.3.95.95 0 0 0-.53-.79c-.28-.14-.56-.29-.86-.36-.67-.15-1.34-.26-2.02-.37-.82-.12-1.7.22-1.73 1.15-.05.79-.05 1.58-.05 2.37 0 .22.04.45.08.68.21 1.17 1.35 1.4 2.37 1.42zM9.4 171.93a6.67 6.67 0 0 0 .1 3.06c.23.78.75 1.17 1.53 1.26.59.07 1.17.04 1.75-.04.28-.03.56-.14.82-.26.4-.2.65-.52.75-.95.04-.16.09-.33.09-.5.01-.89.04-1.78 0-2.67-.02-.72-.72-1.16-1.41-1.1-.9 0-1.78.18-2.63.46-.38.12-.74.29-1 .74zM21.25 456.5l.18.36c.29.28.62.49.97.67 1 .52 1.66 1.3 1.87 2.44.03.14.06.29.12.41.34.7.6 1.42.82 2.16.02.08.06.16.1.26l.45.17c.4.13.75.35 1.03.68.34.39.66.8 1 1.2.11.15.18.32.2.52.05 1.18.07 2.37 0 3.56-.7.82-1.5 1.51-2.44 2.01l-.17.7a16.25 16.25 0 0 1-5.77 2.99c-4.5 1.36-9.33-.14-12.93-2.97l-.12-.66c-.89-.6-1.75-1.19-2.44-2.04-.12-1.26-.05-2.53.01-3.84.4-.57.83-1.16 1.36-1.66.23-.22.5-.37.8-.47l.49-.19c.1-.3.17-.6.28-.89.23-.58.36-1.18.45-1.8.18-1.43 1.2-2.39 2.5-2.85.38-.12.66-.34.8-.72 3.46-2 6.96-1.94 10.44-.04zm-5.34 7.32-.13.25a2 2 0 0 1-1.2 1.34 7 7 0 0 1-3.92.5 3.98 3.98 0 0 1-2.1-.88c-.07-.06-.15-.15-.3-.06-.36 1.94-.4 3.9.07 5.84 1.96 1.79 4.88 2.35 7.46 2.5 2.54.04 5.88-.78 7.78-2.53.2-.67.27-1.36.3-2.04.05-1.23 0-2.46-.2-3.67 0-.1 0-.21-.16-.27-.45.4-.97.8-1.57.94-1.1.27-2.21.36-3.34.11-1.06-.23-2.32-.63-2.6-1.82l-.1-.2zm1.37-2.49c.12 1.52-.15 2.66 1.78 3 1.25.14 2.91.27 3.3-1.27a6.8 6.8 0 0 0 .12-2.9.85.85 0 0 0-.41-.6c-.32-.2-.66-.35-1.02-.43-1.2-.21-3.46-1.05-3.69.8-.04.43-.05.87-.08 1.4zm-2.8-.06c0-.41 0-.83-.02-1.24-.04-.65-.44-1.09-1.08-1.18a2.04 2.04 0 0 0-.56-.01c-.63.09-1.27.17-1.9.31-.34.08-.67.24-.99.39a.9.9 0 0 0-.57.82c-.02.45-.07.91-.07 1.37 0 .47.1.95.23 1.4.2.7.68 1.1 1.37 1.21.8.12 1.64.09 2.4-.15 1.33-.42 1.18-1.78 1.18-2.92zM6.67 215.32l-.12-.66a8.54 8.54 0 0 1-2.43-1.99c-.13-1.25-.04-2.54 0-3.83.4-.58.81-1.12 1.3-1.6.24-.25.52-.43.84-.53l.49-.19.17-.46.1-.35c.27-.64.4-1.3.5-2 .18-1.45 1.29-2.43 2.64-2.86.31-.1.56-.26.62-.58 3.41-2.01 7.05-2 10.47-.04l.22.41c.2.12.44.27.7.41.28.17.58.32.84.52.68.5 1.1 1.18 1.25 2.02.05.27.14.52.25.77.28.71.56 1.4.79 2.13.14.06.29.13.44.18.4.13.75.36 1.04.67.43.46.8.95 1.19 1.5.08 1.24.08 2.5.04 3.74a8.47 8.47 0 0 1-2.46 2.09l-.18.65a16.6 16.6 0 0 1-5.74 2.93c-4.5 1.35-9.34-.11-12.96-2.93zm16.92-.9c.35-1.5.35-3 .23-4.5-.04-.5-.02-1.03-.24-1.5-.21.02-.3.18-.43.28-.4.32-.83.56-1.33.67-.96.2-1.93.3-2.91.13-1.12-.2-2.48-.55-2.88-1.76-.03-.08 0-.2-.15-.26-.04.07-.08.14-.1.22-.23.9-1.07 1.3-1.88 1.56-1.63.5-4.01.52-5.37-.64-.05-.05-.13-.06-.25-.11-.38 2.02-.43 4 .05 5.95 2 1.8 5.3 2.45 7.92 2.47 2.48-.1 5.44-.82 7.34-2.5zm-1.02-9.54-.07-.93a.89.89 0 0 0-.52-.8 7.49 7.49 0 0 0-2.87-.75c-.85-.1-1.65.16-1.75 1.12-.1.99-.1 2 .03 2.98.24 1.56 2.25 1.59 3.47 1.46 1.54-.13 1.7-1.8 1.7-3.08zm-8.05-.03h-.06c0-.42.02-.83 0-1.25-.05-.94-.9-1.24-1.74-1.14-.87.12-3.32.36-3.35 1.5-.02.42-.08.84-.08 1.25 0 .54.09 1.08.25 1.6.23.77.9 1.13 1.67 1.17a5.9 5.9 0 0 0 2.03-.2c.66-.19 1.08-.62 1.16-1.31.06-.54.08-1.08.12-1.62zM25.3 142.73c.1.06.13.1.17.1 1.06.23 1.61 1.1 2.24 1.89.18.22.28.46.28.74l.01 3.25-.03.2c-.67.85-1.54 1.44-2.44 2.05l-.15.57c-.33.32-.72.57-1.1.82a15.98 15.98 0 0 1-8.1 2.63 15.68 15.68 0 0 1-9.5-3.46 1078 1078 0 0 0-.12-.56c-.44-.31-.9-.6-1.31-.94-.4-.33-.76-.71-1.13-1.06-.12-1.32-.05-2.61.02-3.92l1-1.27c.36-.43.8-.73 1.33-.9.08-.01.16-.05.26-.09.2-.48.37-1 .54-1.5.06-.18.1-.37.13-.55.04-.2.06-.41.09-.62.16-1.59 1.33-2.64 2.8-3.09.25-.09.45-.2.48-.5 3.5-2.01 6.98-1.96 10.48-.05.13.4.43.6.79.75a4 4 0 0 1 1.16.72c.55.48.91 1.08 1.05 1.8.06.35.18.68.32 1 .27.65.51 1.32.72 1.99zm-1.74 7.96c.47-1.44.4-5.14-.01-6.09-.05.03-.12.04-.16.08a3.5 3.5 0 0 1-2.18.98c-1.61.32-4.94 0-5.25-2.02-.18.06-.17.2-.2.32-.12.34-.3.65-.6.86-1.65 1.23-5.1 1.35-6.7-.05-.03-.03-.1-.02-.19-.02-.35 1.98-.41 3.94.05 5.93.6.55 1.34.97 2.09 1.3 3 1.27 6.41 1.51 9.53.55a9.98 9.98 0 0 0 3.62-1.84zm-6.28-9.62c.1 1.2-.15 2.52 1.36 2.93.79.2 1.67.29 2.47.1.51-.12.91-.4 1.11-.9.42-1 .38-2.09.27-3.14a.79.79 0 0 0-.42-.65c-.31-.16-.63-.33-.97-.43a9.48 9.48 0 0 0-2.14-.39c-.78-.07-1.51.23-1.6 1.1-.04.43-.05.87-.08 1.38zm-2.78-.03h-.03v-1.18c0-.4-.18-.72-.5-.97a1.25 1.25 0 0 0-.81-.25c-.99.01-1.94.22-2.86.54-.16.05-.3.14-.45.23a.9.9 0 0 0-.48.75c-.09.93-.14 1.87.16 2.78.4 1.47 2.22 1.38 3.4 1.12 1.79-.36 1.5-1.73 1.57-3.02zM21.28 392.54c.09.32.3.49.59.61 1.17.47 2.2 1.35 2.39 2.66.05.33.16.64.3.95.28.67.52 1.35.75 2.04l.43.16c.94.27 1.42 1.18 2.03 1.88.13.16.2.35.22.57.05 1.16.06 2.33 0 3.5a7.81 7.81 0 0 1-2.43 2.01l-.19.64a15.93 15.93 0 0 1-9.18 3.42c-3.44 0-6.8-1.34-9.52-3.43l-.1-.55c-.9-.61-1.76-1.2-2.45-2.05-.12-1.26-.05-2.53.01-3.82.39-.58.82-1.14 1.33-1.64.22-.22.49-.38.78-.5l.49-.16c.2-.5.37-1.02.54-1.53.05-.15.1-.31.13-.48l.1-.8c.26-1.79 1.52-2.59 3.12-3.12l.2-.37a10.05 10.05 0 0 1 10.46.01zM8.35 406.7a3 3 0 0 0 .82.65c1.38.84 2.92 1.31 4.5 1.57 3.16.6 7.44-.1 9.91-2.25.46-1.94.36-3.91.07-5.86 0-.07 0-.17-.11-.2-.02.01-.05 0-.06.02l-.24.2c-.7.6-1.46.79-2.36.88a6.41 6.41 0 0 1-3.93-.67c-.62-.33-.83-.8-1.04-1.46l-.13.29c-.23.97-1.18 1.37-2.04 1.63-1.56.45-3.92.42-5.2-.68-.05-.05-.14-.06-.22-.09-.39 1.24-.5 4.45.03 5.97zm8.93-9.61c.03.43.05.95.1 1.47.07.71.47 1.19 1.15 1.4a5.1 5.1 0 0 0 2.58.15c.57-.12.98-.46 1.16-1.02.35-.95.34-1.97.23-2.96a.88.88 0 0 0-.49-.75 5.74 5.74 0 0 0-1.03-.43c-.66-.18-1.34-.3-2.02-.35-.8-.07-1.51.23-1.6 1.1-.04.43-.05.86-.08 1.39zm-7.9-1.13a7.04 7.04 0 0 0 .17 3.06c.21.63.65 1 1.3 1.1.7.13 1.41.1 2.1-.07 1.02-.24 1.45-.72 1.5-1.78.05-.83.04-1.66 0-2.49a1.17 1.17 0 0 0-1.12-1.12 3.71 3.71 0 0 0-.81.02c-.5.07-.99.16-1.47.28-.37.1-.74.27-1.1.41-.24.1-.42.27-.56.59zM6.66 503.51l-.1-.51c-.44-.32-.9-.6-1.31-.94-.4-.33-.76-.72-1.13-1.08-.12-1.29-.05-2.55 0-3.85.4-.6.84-1.17 1.37-1.68.21-.2.46-.35.74-.45l.5-.18c.2-.49.37-1 .53-1.5.06-.18.1-.37.14-.55l.16-1.05c.24-1.37 1.4-2.3 2.67-2.7l.4-.15.18-.33a10.05 10.05 0 0 1 10.43-.03l.22.4.5.25c1.13.46 2.1 1.37 2.3 2.6.06.36.17.69.31 1.01.28.67.51 1.32.74 2.01l.51.2c.34.12.65.3.88.57.39.44.76.9 1.11 1.35.1.13.16.3.17.46.06 1.19.08 2.37.01 3.56a7.89 7.89 0 0 1-2.44 2l-.18.66c-3.55 2.66-8.24 4.15-12.61 2.94a17.11 17.11 0 0 1-5.93-2.85l-.17-.16zm9.27-7.97c-.08.14-.13.19-.14.24-.15.64-.58 1.05-1.14 1.33a7.02 7.02 0 0 1-4.4.45 3.64 3.64 0 0 1-1.58-.69l-.3-.2c-.5 1.15-.5 4.37 0 6.04 2.45 2.09 6.98 2.78 10.09 2.15 1.76-.36 3.81-.98 5.13-2.25.36-1.5.35-3.02.23-4.54-.04-.5-.03-1.02-.27-1.55-.49.4-.94.8-1.56.94-1.63.4-3.41.38-4.93-.4a2.14 2.14 0 0 1-1.13-1.52zm1.35-2.46c.12 1.32-.15 2.5 1.52 2.91.7.18 1.4.19 2.1.1 1.05-.11 1.42-.84 1.58-1.8.14-.73.1-1.45.03-2.18-.04-.36-.2-.63-.53-.79a7.8 7.8 0 0 0-3-.77c-.22-.01-.46 0-.67.04a1.1 1.1 0 0 0-.94 1.03c-.05.45-.06.9-.1 1.46zm-7.86-1.22c-.2.96-.18 2.03.09 2.99.2.75.7 1.17 1.46 1.25.68.07 1.37.08 2.04-.11.66-.18 1.22-.52 1.36-1.23.06-.28.1-.57.1-.86.02-.66.01-1.33 0-2-.03-.8-.49-1.27-1.3-1.28-.89-.03-3.36.35-3.75 1.24zM4.11 244.58c-.1-1.28-.04-2.53.02-3.81.4-.58.84-1.17 1.37-1.68.2-.2.46-.35.73-.45l.49-.19.27-.76c.82-1.9.05-3.43 2.17-4.75.21-.13.43-.26.66-.34.54-.18 1.03-.46 1.52-.72 1.12-.58 2.31-.93 3.56-1.12 2.22-.3 4.82.36 6.65 1.65 1.36.5 2.55 1.43 2.74 2.98.05.38.15.73.31 1.08.29.63.5 1.32.74 1.97l.32.13c.97.25 1.48 1.16 2.09 1.88.13.17.22.36.23.57.06 1.19.07 2.37.02 3.54a8.2 8.2 0 0 1-2.45 2l-.2.53c-3.83 2.73-8.85 4.05-13.42 2.56a16.84 16.84 0 0 1-5.24-2.6l-.14-.46a8.68 8.68 0 0 1-2.44-2.01zm4.23 1.5c.26.33.62.53.98.74 1.57.9 3.35 1.28 5.12 1.5 2.82.35 5.9-.23 8.37-1.67.28-.17.56-.35.8-.63.41-1.95.34-3.98.01-5.93-.01-.08-.02-.17-.16-.18-.55.43-1.15.81-1.86.9-1.66.28-2.9.3-4.45-.44a2 2 0 0 1-1.15-1.32c-.02-.06.02-.18-.11-.16-.02.02-.05.03-.05.05l-.08.23c-.2.67-.78 1.08-1.4 1.33a6.07 6.07 0 0 1-3.24.43l-.5-.05a3.75 3.75 0 0 1-2.01-.77c-.06-.04-.14-.06-.21-.1-.51 1.1-.54 4.35-.06 6.08zm8.94-9.76c.11 1.57-.1 2.61 1.83 2.97 1.14.2 2.83.34 3.22-1.06a6.12 6.12 0 0 0 .17-2.71.97.97 0 0 0-.56-.84c-.83-.46-1.76-.6-2.68-.76-.24-.05-.5-.05-.74-.03-1.37.1-1.17 1.36-1.24 2.43zm-2.8-.03c0-1.14.13-2.33-1.36-2.35a8.1 8.1 0 0 0-3.2.79.92.92 0 0 0-.56.83c-.01.3-.06.58-.06.87a5.5 5.5 0 0 0 .27 1.91c.22.67.81 1 1.48 1.05.67.04 1.34 0 1.98-.18.93-.25 1.32-.71 1.43-1.67.04-.42.02-.83.02-1.25zM25.34 110.77l.11.08c1.09.26 1.63 1.11 2.28 1.93.16.2.25.43.26.69.04 1.14.06 2.29.01 3.44a7.98 7.98 0 0 1-2.44 2l-.22.51c-5.89 4.24-12.77 4.22-18.65-.02l-.15-.47a8.42 8.42 0 0 1-2.42-1.99c-.12-1.26-.05-2.54.01-3.81.4-.58.8-1.1 1.26-1.58.25-.26.55-.45.89-.57l.42-.16.15-.34c.05-.16.09-.32.15-.47.87-2.07-.04-3.46 2.4-4.88.16-.09.33-.18.5-.23.55-.17 1.04-.44 1.53-.7 1.1-.57 2.28-.91 3.5-1.09 1.73-.24 3.36.11 4.94.74.4.16.83.32 1.18.57.36.26.76.41 1.14.61.33.17.65.38.94.61.62.5 1.01 1.16 1.13 1.96.07.5.23.96.43 1.42.24.57.44 1.17.65 1.75zm-17 7.69a8.16 8.16 0 0 0 2.53 1.4 14.9 14.9 0 0 0 9.26.28c1-.29 1.96-.69 2.84-1.26.23-.14.46-.3.63-.5.35-1.37.28-2.78.25-4.17-.05-1.16-.13-1.6-.36-2-.56.43-1.05.78-1.75.9-1.51.3-3.12.3-4.53-.38a2.04 2.04 0 0 1-1.2-1.35l-.08-.15c-.13.03-.14.15-.17.24-.15.51-.48.87-.93 1.13-.98.52-2.08.77-3.19.7-.46-.04-.91-.1-1.36-.15a3.93 3.93 0 0 1-1.88-.84c-.22.33-.21.7-.25 1.03-.23 1.7-.25 3.4.18 5.12zm14.12-10.9a1.16 1.16 0 0 0-.57-.58 7.87 7.87 0 0 0-2.81-.74c-1.11-.1-1.74.24-1.76 1.43-.01.58-.02 1.17 0 1.75.02.77.12 1.46.85 1.88a5.3 5.3 0 0 0 3.1.32c.46-.14.82-.42.98-.88.38-1.01.36-2.14.2-3.18zm-13.05.05c-.16.99-.17 2.08.16 3.06.23.73.88 1.01 1.6 1.06.6.03 1.21-.03 1.8-.18 1-.26 1.42-.73 1.48-1.74.05-.81.04-1.62 0-2.43 0-.78-.75-1.16-1.45-1.1-1.03.1-2.08.27-3.01.75-.25.12-.45.3-.58.58zM25.35 526.8l.31.12c.97.26 1.49 1.17 2.1 1.89.14.18.23.39.23.63v3.37l-.03.14a8.1 8.1 0 0 1-2.4 1.96l-.22.52a16.45 16.45 0 0 1-9.61 3.18 16.71 16.71 0 0 1-8.74-3c-.12-.08-.2-.14-.31-.26l-.11-.36c-.91-.62-1.77-1.2-2.46-2.06-.11-1.27-.04-2.53.02-3.8.39-.58.8-1.12 1.3-1.61.23-.24.5-.42.83-.54l.43-.16.29-.74c.84-1.99.03-3.48 2.23-4.84.2-.12.4-.24.61-.31.6-.2 1.14-.5 1.7-.79a9.82 9.82 0 0 1 8.33-.3c.37.13.72.32 1.07.5.18.1.35.22.63.41 1.27.43 2.5 1.4 2.7 2.82.09.51.23 1 .45 1.48.25.56.43 1.17.65 1.74zm-1.76 1.33c-.63.48-1.14.87-1.9.98-1.58.26-3.07.32-4.53-.42-.72-.34-1.06-.83-1.24-1.62l-.15.37c-.2.75-.86 1.17-1.54 1.43a6.8 6.8 0 0 1-3.75.3c-.7-.07-1.34-.3-1.89-.75-.06-.05-.14-.06-.2-.1-.44.94-.6 4.66-.02 6.16.22.22.49.42.78.57a14.1 14.1 0 0 0 6.16 1.68c2.44.2 6.53-.65 8.32-2.39a17.2 17.2 0 0 0-.04-6.2zm-1.02-3.4-.08-.96a.85.85 0 0 0-.44-.71 7.24 7.24 0 0 0-3.72-.82c-.63.09-1 .64-1 1.25-.03.8-.05 1.61.02 2.42.08.86.54 1.37 1.35 1.6a6.1 6.1 0 0 0 2.22.2c1.49-.2 1.62-1.67 1.65-2.99zm-8.1-.18c0-.38.02-.76 0-1.13-.05-1-.93-1.27-1.79-1.13-.6.1-1.19.2-1.77.36-.36.09-.7.26-1.04.43-.3.14-.47.4-.5.74-.08.95-.15 1.86.18 2.78.18.56.55.92 1.13 1.04.74.18 1.5.08 2.23-.09 1.65-.33 1.6-1.6 1.56-3zM6.7 375.3l-.16-.36a8.36 8.36 0 0 1-2.43-2.01c-.1-1.25-.04-2.52.02-3.8.39-.57.8-1.11 1.29-1.6.23-.25.51-.43.83-.54l.43-.16.66-1.74c.04-.14.03-.3.05-.43.17-1.33.2-2.27 1.32-3.19a4.91 4.91 0 0 1 1.82-.94c.4-.11.78-.26 1.16-.45a9.92 9.92 0 0 1 8.95.12c.86.42 1.8.69 2.53 1.34.59.51.98 1.15 1.08 1.92.09.65.3 1.25.56 1.83.2.5.37 1.02.56 1.5.1.05.18.1.25.12.98.26 1.5 1.15 2.1 1.87.16.19.26.39.27.63.05 1.16.06 2.33.01 3.5a8.11 8.11 0 0 1-2.44 2l-.23.42c-5.91 4.1-12.72 4.08-18.62-.03zm16.86-.99c.46-1.44.42-5.07-.05-6.27h-.05c-.08.03-.15.07-.22.12-.53.43-1.14.68-1.82.76-1.55.23-2.62.25-4.1-.38-.66-.29-1.16-.73-1.33-1.46-.01-.04-.05-.07-.07-.1-.12.04-.13.15-.15.25-.14.49-.45.85-.88 1.09-1.46.85-3 .86-4.61.58a3.3 3.3 0 0 1-1.55-.6c-.1-.07-.2-.12-.31-.18-.53 1.14-.56 4.5-.06 6.23.68.53 1.5.97 2.32 1.26 4 1.45 9.37 1.3 12.88-1.3zm-6.28-9.91c.03.4.05.92.1 1.44.06.69.55 1.16 1.2 1.37.74.23 1.5.32 2.28.27.78-.06 1.26-.45 1.49-1.2.28-.92.24-1.85.12-2.79a.75.75 0 0 0-.32-.51c-.97-.68-2.47-.9-3.63-.95-1.36.1-1.18 1.29-1.24 2.37zm-2.8 0h-.02c0-.42.03-.84 0-1.26-.05-.76-.73-1.1-1.43-1.04-.82.04-1.6.23-2.39.46-.27.08-.53.24-.78.38a.88.88 0 0 0-.49.75c-.09.9-.13 1.8.16 2.66.22.7.71 1.07 1.42 1.12.8.07 1.58-.03 2.34-.29 1.28-.4 1.2-1.67 1.2-2.79zM24.4 556.26l1.02 2.55.2.1c1 .26 1.53 1.17 2.14 1.92.14.17.22.35.23.57.05 1.16.07 2.33 0 3.53a9 9 0 0 1-1.89 1.68c-.28.17-.57.33-.78.6-.14.17-.36.28-.56.4a17.34 17.34 0 0 1-8.75 2.61 17.27 17.27 0 0 1-8.48-2.48c-.35-.21-.72-.4-.98-.76-.1-.14-.3-.22-.46-.31a8.72 8.72 0 0 1-1.97-1.72c-.12-1.27-.05-2.54.01-3.82.38-.57.8-1.11 1.29-1.6.23-.25.51-.43.83-.54l.4-.16c.22-.57.45-1.13.66-1.7.05-.15.07-.32.09-.48.03-.33.05-.67.09-1 .14-1.69 1.55-2.85 3.1-3.28.66-.18 1.32-.38 1.95-.65 1.07-.44 2.21-.6 3.35-.7 1.54.05 3.07.38 4.47 1.05.24.11.5.18.76.28 1.59.51 2.97 1.4 3.18 3.2l.1.71zm-16.09 9.9c2.1 1.62 4.8 2.02 7.36 2.17 2.62.07 5.81-.59 7.93-2.18.44-2.02.35-4.08.01-6.1-.01-.1-.04-.2-.22-.24-.59.56-1.36.81-2.18.91-.76.1-1.52.22-2.3.05a7.5 7.5 0 0 1-1.77-.56 2.07 2.07 0 0 1-1.13-1.27c-.02-.07 0-.17-.14-.2l-.1.2c-.15.57-.5.95-1 1.21a6.4 6.4 0 0 1-4.32.55c-.67-.09-1.3-.3-1.84-.71-.05-.04-.11-.05-.19-.09-.22.38-.23.8-.28 1.2-.23 1.69-.22 3.36.17 5.05zm14.26-9.7-.09-1.05a.81.81 0 0 0-.41-.66 5.46 5.46 0 0 0-.72-.36c-.68-.27-1.4-.4-2.12-.5-.76-.15-1.68-.04-1.86.86-.04.18-.06.37-.06.56 0 .79-.05 1.58.09 2.36.11.77.7 1.14 1.4 1.33.64.18 1.3.26 1.97.24 1.55.02 1.78-1.54 1.8-2.77zm-8.09-.3c0-1 .18-2.15-1.16-2.26h-.43a7.89 7.89 0 0 0-3.03.87.88.88 0 0 0-.48.75c-.03.33-.08.66-.08 1-.01 1.07.21 2.65 1.56 2.7.8.06 1.58-.03 2.34-.27 1.36-.41 1.3-1.6 1.28-2.78zM24.4 76.29l1.02 2.52c.04.02.08.06.14.08 1 .25 1.55 1.14 2.17 1.9.16.2.25.42.26.68.05 1.14.06 2.28.01 3.45a8.9 8.9 0 0 1-1.9 1.7c-.28.16-.58.31-.8.58-4.07 2.8-9.44 3.83-14.15 2.14a18.01 18.01 0 0 1-3.7-1.67c-.33-.2-.68-.39-.92-.72-.07-.1-.2-.14-.31-.2-.83-.5-1.4-1-2.1-1.82-.12-1.23-.05-2.5.01-3.8.4-.58.83-1.17 1.37-1.67.19-.18.44-.3.67-.43.15-.08.31-.13.47-.2.23-.57.47-1.15.68-1.73.06-.15.06-.33.08-.5.06-.49.1-.98.2-1.47.25-1.4 1.55-2.32 2.83-2.73.92-.24 1.82-.57 2.72-.88.9-.31 1.83-.41 2.76-.5.27-.02.54.05.8.07 1.24.1 2.43.41 3.55.93.2.1.43.16.65.23.35.13.7.24 1.05.38a3.66 3.66 0 0 1 2.3 2.69c.06.32.1.65.14.97zm-8.46 2.31c-.08.13-.13.17-.14.23-.16.66-.6 1.07-1.2 1.35-1.46.74-2.87.7-4.44.43-.5-.08-.97-.26-1.39-.55l-.33-.2c-.25.44-.27.9-.32 1.35-.2 1.64-.2 3.28.19 4.88.22.29.52.45.81.6 1.7.95 3.64 1.35 5.56 1.54 2.79.25 5.82-.27 8.27-1.65.23-.14.46-.28.63-.5.46-1.57.4-5.27-.12-6.3l-.3.18a3.7 3.7 0 0 1-1.6.66c-1.4.28-2.83.25-4.16-.34a2.23 2.23 0 0 1-1.46-1.68zm6.6-2.34c-.08-1.25.04-1.38-1.22-1.91-.62-.25-1.27-.35-1.93-.47-.62-.12-1.34-.2-1.8.35-.19.22-.25.48-.26.75-.03.78-.05 1.57.02 2.36.1 1.69 2 1.8 3.31 1.86.25.01.5-.04.74-.11 1.1-.34 1.14-1.85 1.15-2.83zm-8.07-.18c0-.9.21-1.99-.96-2.18a2.69 2.69 0 0 0-.68 0c-.83.1-1.64.26-2.42.56-.21.08-.41.2-.6.32a.85.85 0 0 0-.43.72c-.03 1.24-.3 3.38 1.33 3.66.15.02.3.05.44.04.6-.04 1.2-.07 1.79-.22 1.58-.36 1.58-1.52 1.53-2.9zM4.11 276.64c-.11-1.27-.04-2.53.02-3.8.39-.6.83-1.16 1.33-1.66.22-.23.48-.4.78-.5l.39-.15.67-1.7c.06-.16.08-.33.1-.49.03-.37.05-.75.1-1.12.15-1.56 1.4-2.71 2.83-3.15 1.69-.47 3.32-1.14 5.07-1.31.81-.12 1.62.02 2.42.16a9.7 9.7 0 0 1 2.14.66c.27.11.55.2.83.27 1.56.4 3.22 1.39 3.47 3.1l.15 1.02 1.03 2.53c.01.01.04.05.08.06 1.05.25 1.62 1.19 2.25 1.97.12.16.2.32.21.52.06 1.18.07 2.37.02 3.56a8.87 8.87 0 0 1-1.7 1.56c-.39.26-.77.5-1.14.77a16.7 16.7 0 0 1-10.62 2.74 18.22 18.22 0 0 1-7.1-2.4c-.31-.17-.62-.35-.87-.61-.08-.1-.2-.15-.3-.21a8.49 8.49 0 0 1-2.16-1.82zm4.23 1.15c.16.11.32.25.5.35.4.21.8.43 1.22.61 2.5 1.01 5.37 1.35 8.03.98 1.88-.3 4.03-.78 5.53-2.03.27-1.27.31-2.6.24-3.89-.03-.7-.1-1.41-.25-2.1-.02-.12-.1-.22-.15-.35l-.3.18c-.46.34-.97.55-1.54.65a6.56 6.56 0 0 1-4.55-.49 2.03 2.03 0 0 1-1.05-1.18c-.03-.09 0-.21-.12-.25-.03.04-.08.06-.08.1-.17.73-.68 1.17-1.34 1.46a6.4 6.4 0 0 1-3.9.43 4.17 4.17 0 0 1-1.92-.7l-.22-.1c-.54 1.25-.6 4.28-.1 6.33zm8.98-10.17h-.04c.03.48.05.96.1 1.43.07.69.46 1.14 1.1 1.37.86.3 1.74.4 2.64.31 1.6-.14 1.5-2.57 1.36-3.74a.81.81 0 0 0-.38-.62c-.97-.64-2.13-.8-3.25-.97-.82-.08-1.47.3-1.52 1.16-.03.35 0 .7 0 1.06zm-2.83.04h-.02v-1.13a1.1 1.1 0 0 0-1.04-1.04 7.98 7.98 0 0 0-2.7.46c-.3.1-.6.26-.9.42a.88.88 0 0 0-.46.77c-.01.3-.06.62-.06.93 0 1.04.18 2.63 1.51 2.68.77.04 1.54-.04 2.28-.25a1.7 1.7 0 0 0 1.35-1.6c.05-.41.04-.83.04-1.24zM4.11 340.9c-.1-1.3-.04-2.57.02-3.83.4-.58.82-1.12 1.3-1.61.23-.22.48-.4.78-.5l.4-.16c.24-.61.5-1.2.72-1.8.06-.18.06-.37.08-.56.06-.5.1-.99.18-1.48.22-1.24 1.3-2.12 2.4-2.6.9-.38 1.89-.51 2.82-.8.97-.34 1.97-.5 3-.58.66-.05 1.32.09 1.97.2.33.04.67.1.98.22.82.3 1.67.5 2.5.76 1.44.43 2.82 1.5 3.01 3.08.05.33.1.66.13.97l1.06 2.57c.74.23 1.3.68 1.76 1.3.87 1.13.76.76.8 2.19 0 .85.03 1.7-.03 2.55a6.83 6.83 0 0 1-1.57 1.52 20.08 20.08 0 0 1-7.38 3.23c-3.9.81-7.99-.1-11.43-2.02-.67-.37-1.31-.8-1.95-1.23a9.33 9.33 0 0 1-1.55-1.42zm11.82-6.55-.1.08-.06.17c-.15.54-.5.91-.97 1.16-1 .52-2.06.8-3.19.73-.5-.03-.99-.13-1.48-.21a3.6 3.6 0 0 1-1.38-.54c-.1-.07-.19-.18-.33-.11a12.8 12.8 0 0 0-.05 6.33c.16.12.36.28.57.4.43.22.86.43 1.3.6 2 .77 4.17 1.06 6.3 1.03 2.45-.17 5.05-.63 7.07-2.1.42-2 .34-4.04 0-6.05-.02-.11-.1-.21-.16-.35-.15.09-.27.17-.4.23-.25.14-.5.31-.78.4a7.1 7.1 0 0 1-3.57.25c-1.09-.26-2.42-.65-2.71-1.88l-.06-.14zm6.61-2.26c-.1-1.04.11-1.4-1-1.88a9.7 9.7 0 0 0-2.72-.67c-.22-.03-.46.02-.68.07a1 1 0 0 0-.77.81c-.04.18-.06.37-.06.56-.01.77-.04 1.54.08 2.3.1.78.76 1.17 1.47 1.34.65.17 1.3.25 1.98.24 1.53.04 1.7-1.56 1.7-2.77zm-8.06-.29v-1.06c-.1-1.65-2.08-1.06-3.14-.82-.5.13-1 .3-1.45.57a.98.98 0 0 0-.51.8c-.06.63-.09 1.25.01 1.87.14.85.44 1.65 1.43 1.69a6.32 6.32 0 0 0 2.58-.37c.53-.22.9-.6 1-1.19.1-.49.1-.99.08-1.49zM4.11 52.93c-.1-1.28-.05-2.55.03-3.8.39-.6.81-1.14 1.3-1.62.2-.2.48-.33.73-.48.14-.08.3-.13.43-.18.24-.6.49-1.18.7-1.76.08-.19.08-.4.1-.6.07-.5.1-1 .19-1.5.41-2.13 2.78-2.9 4.66-3.25.25-.05.5-.1.73-.18.96-.32 1.95-.47 2.94-.53.47-.03.96.06 1.43.13.7.1 1.39.27 2.06.5.23.09.48.14.72.2 1.77.37 3.82 1.3 4.13 3.29.06.37.1.74.16 1.2.34.75.75 1.57.99 2.44.07.05.12.1.18.1 1 .28 1.54 1.17 2.16 1.92.13.16.23.35.23.56a34.5 34.5 0 0 1 .01 3.57c-.53.57-1.05 1.14-1.7 1.55a19.63 19.63 0 0 1-9.88 3.37 18.36 18.36 0 0 1-10.07-3.05c-.9-.53-1.46-1-2.23-1.88zm4.34-5.35a12.4 12.4 0 0 0-.07 6.4c2.09 1.45 4.72 1.84 7.2 2 1.43.07 2.82-.16 4.21-.46 1.13-.25 2.98-.86 3.82-1.65.42-2 .34-4.07-.01-6.07-.02-.12-.06-.24-.24-.28l-.2.1c-.77.58-1.72.7-2.65.8a5.97 5.97 0 0 1-3.44-.65c-.6-.27-.96-.8-1.12-1.41-.14.03-.15.14-.18.24-.16.52-.51.9-1 1.15a6.47 6.47 0 0 1-4.36.57 4.47 4.47 0 0 1-1.74-.66c-.06-.04-.15-.06-.22-.08zm8.86-3.87h-.03c.03.46.05.92.09 1.37.06.7.45 1.15 1.1 1.39.85.3 1.74.4 2.64.34 1.62-.1 1.5-2.57 1.35-3.74a.76.76 0 0 0-.37-.55c-.99-.64-2.18-.82-3.32-.98a1.8 1.8 0 0 0-.68.08c-.92.24-.78 1.35-.78 2.1zm-2.83.06v-1.06a1.1 1.1 0 0 0-1.12-1.09c-.25 0-.5 0-.75.04-.57.1-1.14.23-1.7.39-.35.1-.69.28-1.02.45-.32.16-.48.44-.51.8-.11 1.12-.19 3.48 1.38 3.52.96.03 2-.07 2.86-.49.38-.2.65-.51.75-.95a6.3 6.3 0 0 0 .11-1.6zM4.14 596.97c-.12-.87-.1-2.82.02-3.87.36-.55.79-1.08 1.27-1.58.21-.22.48-.4.77-.51l.41-.17c.23-.57.42-1.1.64-1.6.1-.24.15-.48.16-.73.04-.48.08-.95.16-1.42.23-1.42 1.5-2.42 2.8-2.84.61-.19 1.24-.33 1.86-.5.18-.04.37-.06.55-.13.99-.35 2.02-.51 3.05-.59.5-.03 1 .06 1.5.12.71.1 1.42.28 2.1.53.22.07.45.12.67.18 1.16.35 2.36.61 3.23 1.53.86.8.95 1.79 1.08 2.89l1.07 2.55c.05.03.18.1.31.15.4.14.75.37 1.02.7.32.37.64.76.95 1.15.14.17.22.35.23.57.05 1.16.06 2.33 0 3.52a8 8 0 0 1-1.67 1.55c-2.88 1.89-6.19 3.25-9.66 3.4-4.15.23-9.69-1.83-12.52-4.9zm4.2 1c1.98 1.4 4.5 1.82 6.87 2 1.57.12 3.12-.1 4.65-.44 1.11-.26 2.92-.87 3.75-1.64.44-2 .33-4.07 0-6.07-.02-.13-.06-.25-.25-.3-.1.07-.21.16-.34.22-.23.13-.47.28-.72.36a6.96 6.96 0 0 1-3.57.27c-1.08-.25-2.43-.65-2.74-1.86-.01-.05-.04-.1-.07-.14-.03.02-.06.03-.07.05l-.06.1c-.14.65-.58 1.05-1.14 1.32a6.44 6.44 0 0 1-4.44.45 3.69 3.69 0 0 1-1.5-.58c-.08-.05-.18-.08-.27-.12-.55 1.5-.6 4.53-.1 6.38zm8.97-10.25h-.03l.09 1.36c.06.72.46 1.19 1.13 1.42.84.29 1.7.4 2.58.34.92-.04 1.23-.8 1.39-1.6.13-.67.1-1.36.02-2.04a.9.9 0 0 0-.5-.75 8.86 8.86 0 0 0-3.1-.9c-.6-.1-1.35.15-1.5.8-.12.44-.08.91-.08 1.37zm-2.83.07c0-.37.02-.75-.01-1.12-.08-1.03-1.02-1.15-1.86-1-.57.11-1.14.23-1.7.4-.37.11-.73.3-1.07.48a.84.84 0 0 0-.46.7c-.08.89-.12 1.8.19 2.65.21.63.66.94 1.32.95.88.01 1.94-.1 2.73-.5.4-.22.68-.55.76-1 .04-.23.09-.46.1-.69v-.87zM24.42 300.15c.34.77.76 1.56 1 2.45.1.05.2.12.32.16.93.3 1.42 1.18 2.03 1.88a1 1 0 0 1 .22.64c.04 1.1.04 2.3.02 3.38-.4.55-1.18 1.3-1.76 1.65-3.11 1.94-6.68 3.35-10.4 3.29-3.56-.05-6.97-1.39-9.96-3.25-.66-.41-1.2-.97-1.76-1.56-.14-1.26-.05-2.55 0-3.85.4-.6.84-1.19 1.38-1.68.2-.18.45-.3.68-.43.14-.08.3-.14.4-.18l.7-1.72c.09-.2.12-.4.12-.6.02-.55.06-1.09.18-1.62.5-2.11 2.82-2.87 4.71-3.22.3-.06.61-.12.91-.2.69-.2 1.38-.31 2.09-.4.88-.13 1.74.01 2.6.17.71.15 1.4.39 2.12.54 1.13.25 2.28.61 3.16 1.4 1 .87 1.1 1.9 1.24 3.15zm-8.48 1.78c-.1.2-.14.26-.16.34-.13.54-.48.91-.95 1.17a6.46 6.46 0 0 1-6.16-.04c-.06-.04-.15-.06-.22-.08-.5 1.09-.66 4.9-.08 6.41 1.8 1.28 4.07 1.67 6.21 1.9a15.39 15.39 0 0 0 8.3-1.5c.27-.13.52-.27.74-.52.26-1.29.33-2.64.24-3.95-.04-.7-.1-1.41-.26-2.1-.03-.13-.07-.24-.25-.3-1.1.7-1.6.74-2.85.9a6 6 0 0 1-3.16-.52c-.71-.3-1.23-.78-1.4-1.7zm1.37-2.55h-.03c.1 1.93-.03 2.66 2.15 3.05a6 6 0 0 0 1.8.09c.67-.09 1-.6 1.15-1.22.23-.8.16-1.6.09-2.41a.83.83 0 0 0-.43-.66 8.58 8.58 0 0 0-3.27-.94c-.25-.03-.5 0-.73.1a1 1 0 0 0-.67.75c-.08.4-.07.83-.06 1.24zm-6.92 3.1c.65.15 1.33.04 2.01-.06.27-.03.53-.1.79-.18.76-.23 1.21-.74 1.26-1.53.04-.79.04-1.58.01-2.37a1 1 0 0 0-.97-.96 7.84 7.84 0 0 0-3.54.83c-.36.2-.56.5-.57.9l-.05 1.13c.03.82.16 1.92 1.06 2.24zM25.42 622.82l.44.18c.36.14.67.35.92.64l1 1.2c.13.17.2.36.2.58.06 1.16.08 2.32.01 3.5a8.02 8.02 0 0 1-1.74 1.6c-3.48 2.14-7.52 3.58-11.66 3.16a19.08 19.08 0 0 1-7.04-2.21 9.65 9.65 0 0 1-3.44-2.54c-.12-1.24-.04-2.53.02-3.79.38-.59.8-1.1 1.26-1.59.22-.22.48-.4.77-.52l.48-.2c.16-.6.4-1.18.67-1.74.09-.2.09-.4.1-.6.04-.5.09-1 .17-1.5.42-2.28 3-3.03 4.99-3.37.24-.05.49-.09.73-.16.84-.24 1.7-.35 2.58-.43.26-.03.54.03.8.05.82.07 1.61.23 2.39.47.26.08.52.13.79.19 1.84.36 4.04 1.25 4.39 3.32.07.39.1.78.18 1.29.31.73.76 1.54 1 2.47zm-1.8 6.99c.41-2 .32-4.04-.01-6.04-.02-.15-.08-.28-.27-.34l-.25.14c-.7.5-1.54.6-2.36.72a6.01 6.01 0 0 1-3.29-.45c-.74-.29-1.28-.76-1.48-1.57l-.05-.04c-.04.05-.1.09-.1.14-.18.69-.64 1.1-1.26 1.38a6.2 6.2 0 0 1-3.71.52 4.93 4.93 0 0 1-2.12-.68c-.08-.05-.18-.06-.27-.08-.56 1.4-.61 4.44-.11 6.35 1.85 1.43 4.85 1.85 7.14 2 2.46.1 6.17-.52 8.15-2.05zM17.3 619.6h-.03c.04.5.05 1 .12 1.5.08.52.37.91.87 1.14.18.08.38.17.58.22a8.5 8.5 0 0 0 1.9.25c1.97.15 1.87-2.32 1.72-3.7-.03-.28-.22-.5-.47-.62-.32-.18-.66-.36-1.01-.47-.54-.16-1.09-.28-1.64-.39a2.93 2.93 0 0 0-1.12-.04c-1.05.2-.91 1.29-.91 2.1zm-2.82.04v-1c-.04-1.03-.94-1.23-1.8-1.07-.53.1-1.06.21-1.58.34-.43.1-.83.3-1.2.52-.31.18-.5.44-.52.8-.04.91-.15 1.86.25 2.71.22.52.7.77 1.25.77.9 0 1.8-.1 2.63-.45.47-.21.77-.57.87-1.07.12-.51.12-1.03.1-1.55zM24.43 652.36c.35.77.76 1.56 1 2.45.09.05.18.1.27.13.94.29 1.45 1.16 2.04 1.86.14.17.23.35.24.57.06 1.18.08 2.37.01 3.56-.55.6-1.1 1.2-1.8 1.63-3.28 1.98-7.05 3.4-10.93 3.18-3.33-.18-6.48-1.44-9.3-3.16a8.06 8.06 0 0 1-1.85-1.65c-.11-1.23-.04-2.5.02-3.8.4-.59.83-1.17 1.37-1.67.2-.18.44-.3.68-.43.14-.08.3-.14.41-.18.24-.6.46-1.16.7-1.72.1-.21.1-.43.13-.66.03-.5.08-1 .16-1.49.42-2.26 2.97-3 4.94-3.36.28-.05.57-.1.85-.18a13.7 13.7 0 0 1 2.52-.41c.29-.03.58.04.87.06 1.07.07 2.08.42 3.11.65 1.84.36 4.05 1.26 4.38 3.34.07.39.11.78.18 1.28zm-.99 3.04a6.59 6.59 0 0 1-6.25.33 2.06 2.06 0 0 1-1.2-1.36c0-.05-.04-.09-.08-.14-.05.05-.09.08-.1.11-.17.74-.68 1.17-1.35 1.45-1.19.51-2.37.7-3.66.48a4.94 4.94 0 0 1-2.06-.67c-.08-.05-.18-.07-.27-.1-.59 1.36-.64 4.72-.1 6.38.34.32.77.53 1.2.72.96.42 1.96.73 2.99.9 2.54.52 5.17.48 7.68-.18 1.16-.28 2.33-.76 3.32-1.43.16-.4.2-.78.24-1.15.2-1.64.09-3.3-.19-4.92-.02-.13-.1-.26-.17-.42zm-6.13-3.84c-.02.5 0 1 .07 1.5.09.55.38.96.9 1.19a6.25 6.25 0 0 0 3 .42c.9-.12 1.06-1 1.21-1.75.1-.56.02-1.12 0-1.68a1 1 0 0 0-.57-.9 7.96 7.96 0 0 0-2.55-.8 4.48 4.48 0 0 0-1.11-.05c-.48.04-.8.37-.9.83-.08.4-.05.83-.05 1.24zm-2.83.12c0-.35.02-.7 0-1.06-.04-.94-.87-1.21-1.69-1.07-.61.12-1.23.24-1.82.4-.38.12-.73.3-1.09.49a.89.89 0 0 0-.5.75c-.09.9-.11 1.84.24 2.7.2.58.75.84 1.34.82.87-.02 1.76-.1 2.56-.46 1.03-.43.98-1.63.96-2.57zM24.42 12.35c.34.75.76 1.55 1 2.45.11.05.24.13.37.18.88.3 1.36 1.13 1.94 1.8.16.2.25.42.26.68.04 1.15.07 2.29 0 3.46a8.31 8.31 0 0 1-2.37 1.97c-3.19 1.82-6.8 3.09-10.52 2.84-3.28-.21-6.39-1.47-9.18-3.16-.7-.43-1.25-1.03-1.8-1.62-.12-1.28-.06-2.55.01-3.83a9.9 9.9 0 0 1 1.3-1.6c.2-.2.47-.33.72-.48.14-.08.3-.13.48-.2.17-.64.46-1.24.71-1.85.06-.15.05-.33.07-.5.05-.49.09-.99.16-1.48.41-2.28 2.99-3.05 4.98-3.4.24-.03.5-.07.73-.14.84-.25 1.71-.38 2.58-.44.45-.03.91.05 1.37.11.62.09 1.23.22 1.82.4.28.1.57.14.85.2 1.85.37 4.04 1.28 4.36 3.37l.16 1.24zm-8.5 1.88c-.04.04-.09.06-.1.09-.18.76-.7 1.2-1.4 1.48a6.2 6.2 0 0 1-3.65.47c-.7-.1-1.39-.27-2-.65l-.3-.15c-.33.64-.34 1.32-.4 1.97-.14 1.47-.13 2.94.25 4.4.94.86 3 1.44 4.25 1.67 2.54.51 5.17.47 7.67-.2 1.2-.29 2.34-.76 3.37-1.46.42-2.01.34-4.07 0-6.09-.03-.14-.08-.28-.28-.33l-.24.14c-.73.52-1.63.62-2.49.74a6 6 0 0 1-3.45-.6A1.98 1.98 0 0 1 16 14.38l-.07-.16zM22.54 12l-.03-.69c0-.47-.23-.8-.63-1-.3-.14-.6-.3-.92-.39a8.33 8.33 0 0 0-2.63-.43c-.58 0-.97.55-1 1.09-.02.77-.05 1.53.03 2.3.08.78.5 1.26 1.22 1.5.8.27 1.62.36 2.46.33 1.37 0 1.54-1.65 1.5-2.71zm-8.05-.32c0-.35.02-.7 0-1.06-.05-.98-.93-1.2-1.76-1.05-.55.1-1.1.22-1.65.36-.42.1-.82.3-1.2.52a.94.94 0 0 0-.48.76c-.1.92-.12 1.89.26 2.76.21.58.8.77 1.38.75.85-.03 1.72-.1 2.5-.47 1.02-.42.96-1.63.95-2.57z"}),l=(0,n.jsx)("path",{d:"M18.9 438.03c-.57-.2-1.08-.03-1.61.18-.02-.18-.04-.28-.04-.38v-1.74c0-.18.03-.37.1-.54a.84.84 0 0 1 1.59.12c.03.1.04.2.04.3v1.8c0 .06-.03.12-.07.26zM14.44 438.09c-.26-.04-.53-.1-.8-.1-.24-.01-.48.02-.77.04-.02-.08-.07-.18-.08-.27l-.04-1.74c-.02-.46.29-.9.74-.93.57-.08.98.39 1 .94l.01 1.86c0 .06-.03.12-.06.2zM17.28 181.95c-.06-.66-.02-1.32-.03-1.99 0-.14 0-.29.02-.43.2-.9 1.5-.93 1.69 0l.02.19-.01 1.92c0 .04-.03.08-.06.13h-.84c-.27 0-.49.23-.79.18zM14.44 181.9c-.28-.05-.55-.11-.81-.12-.25 0-.49.04-.77.07-.02-.1-.06-.2-.07-.3l-.04-1.74c-.02-.48.34-.92.8-.93.53-.04.94.44.93.96.02.62.02 1.24.02 1.86 0 .04-.03.08-.06.2zM18.9 469.94a2.15 2.15 0 0 0-1.5.15c-.16-.07-.15-.18-.15-.28v-1.86c0-.21.03-.41.14-.6.36-.6 1.33-.51 1.53.18.04.11.06.24.06.36v1.8c0 .06-.03.12-.07.25zM14.42 470.01c-.34-.07-.69-.13-1.04-.11-.16 0-.32.05-.51.08-.03-.12-.08-.22-.08-.31l-.04-1.75c-.02-.44.3-.89.75-.93.54-.08.96.39.98.9.02.64.02 1.28.02 1.93 0 .05-.04.11-.08.2zM18.91 213.49c-.29 0-.56-.03-.82 0-.26.04-.51.13-.8.2-.01-.14-.04-.26-.04-.38v-1.68c0-.68.17-.9.84-1.1.66.15.87.36.9.99v1.68c0 .1-.05.19-.08.29zM14.43 213.62a2.69 2.69 0 0 0-1.56 0c-.04-.17-.08-.26-.08-.36l-.04-1.75c-.01-.45.3-.88.76-.91.6-.07.96.4.97.96.02.62.02 1.25.02 1.87 0 .04-.03.08-.07.19zM18.91 149.7c-.3-.01-.56-.04-.82-.03-.27 0-.5.22-.77.19l-.06-.13v-2.11c0-.27.1-.49.3-.66.61-.54 1.43-.06 1.42.72v1.8c0 .08-.05.15-.07.22zM14.48 149.82c-.56-.12-1.06-.21-1.58-.03-.04-.11-.1-.2-.1-.3-.02-.62-.04-1.24-.04-1.87.1-1.12 1.53-1.13 1.71-.04.04.62.02 1.25.04 1.87l-.03.37zM18.92 405.69c-.3-.01-.57-.04-.84-.03-.26.02-.5.19-.79.22-.01-.17-.04-.29-.04-.4v-1.69c0-.21 0-.41.11-.6.34-.66 1.33-.61 1.56.12.04.12.06.24.06.37v1.8c0 .06-.03.12-.06.21zM14.46 405.8c-.53-.06-1.04-.25-1.5-.02-.18-.12-.17-.25-.17-.37-.01-.6-.04-1.2-.03-1.8.11-1.1 1.52-1.13 1.71-.05.04.62.02 1.24.04 1.86 0 .12-.03.24-.05.37zM18.9 501.66c-.68-.07-.68-.07-1.55.16-.11-.06-.1-.17-.1-.27v-1.87c0-.21.03-.41.15-.6.34-.58 1.28-.5 1.5.14.04.12.08.24.08.37l-.01 1.93c0 .03-.04.07-.07.14zM14.45 501.75c-.3-.04-.56-.1-.82-.1-.25-.01-.49.04-.72.06-.13-.1-.12-.22-.13-.34l-.03-1.68c-.01-.47.28-.92.78-.95.58-.06.95.42.95.97.02.6.02 1.2.02 1.8 0 .06-.02.12-.05.24zM18.9 244.97a2.09 2.09 0 0 0-1.58.19l-.07-.3v-1.94c0-.16.04-.33.1-.48.29-.68 1.35-.62 1.56.1.04.1.07.24.07.36v1.87c0 .06-.05.11-.08.2zM14.43 245.02c-.5-.05-1-.2-1.53.02-.04-.12-.1-.2-.1-.3-.03-.6-.05-1.2-.04-1.8 0-.57.38-.95.87-.94.46 0 .83.36.85.9.03.66.02 1.32.02 1.98 0 .04-.04.08-.07.14zM18.9 117.27a2.4 2.4 0 0 0-1.56.2c-.04-.1-.08-.17-.08-.24l-.01-2c0-.19.04-.37.14-.53.33-.6 1.26-.55 1.5.1.05.13.09.28.1.42l-.01 1.8c0 .08-.05.16-.08.25zM14.43 117.36c-.51-.1-1.02-.2-1.56.03-.04-.18-.08-.3-.08-.4a58.1 58.1 0 0 1-.03-1.69c-.01-.5.3-.97.83-.97.52-.03.88.42.9.92v1.93c0 .05-.03.1-.06.18zM18.92 533.23c-.32 0-.59-.02-.85.01-.24.03-.48.12-.75.2-.02-.09-.06-.16-.06-.23l-.01-2c0-.36.14-.65.46-.83.63-.35 1.27.16 1.27.85v1.8c0 .06-.04.12-.06.2zM12.87 533.39c-.04-.2-.08-.32-.09-.44l-.03-1.62c-.03-.5.28-.98.8-1 .55-.05.93.41.93.94.02.62.02 1.24.02 1.86 0 .06-.03.12-.05.21-.5-.05-1.02-.2-1.58.05zM18.9 373.07a2.36 2.36 0 0 0-1.57.14c-.13-.25-.07-.48-.08-.7 0-.58-.03-1.17.02-1.74.05-.44.37-.68.8-.74.66.15.9.37.91.98.02.62 0 1.25 0 1.87 0 .03-.03.07-.08.19zM14.42 373.14c-.51-.13-1-.2-1.46-.02-.15-.07-.16-.17-.17-.27-.01-.6-.03-1.2-.03-1.81 0-.14.03-.3.08-.42.25-.7 1.3-.7 1.55-.01.05.11.09.24.1.36v1.99c0 .04-.03.08-.07.18zM19.04 563.14c.08.83.07 1.13-.08 1.56h-.85c-.27.02-.53.08-.83.12-.04-.08-.11-.17-.12-.26 0-.51-.02-1.03 0-1.55 0-.27.08-.54.34-.69.55.12.9.3 1.54.82zM14.57 564.8l-1.75-.06c-.12-.05-.13-.16-.14-.26a10.2 10.2 0 0 1-.03-1.28 3.44 3.44 0 0 1 1.8-.59c.04.08.1.17.11.26l.06 1.56c0 .12-.03.23-.05.36zM17.35 85.06c-.03-.1-.09-.19-.09-.28v-2.12c-.02-.47.37-.91.83-.9.5-.02.88.44.9.93 0 .67 0 1.33-.02 2 0 .1-.06.19-.09.28l-1.53.1zM14.43 85.05H12.9c-.03-.1-.1-.22-.1-.33-.02-.67-.04-1.33-.04-2-.05-.94 1.28-1.29 1.65-.37.04.1.07.24.07.36.02.7.02 1.4.02 2.11 0 .08-.05.15-.07.23zM18.9 276.34c-.79-.1-.83-.08-1.6.16l-.05-.32v-1.87c0-.16.03-.33.1-.48.24-.66 1.26-.64 1.52 0 .06.13.1.28.1.42.02.64.01 1.28 0 1.93 0 .05-.04.1-.06.16zM12.86 276.4c-.03-.1-.07-.19-.07-.28l-.03-1.75c0-.16.03-.34.1-.48.27-.7 1.3-.67 1.55.04.03.1.07.2.07.3.01.72.03 1.41.03 2.14-.31.07-.56-.08-.82-.07-.27.02-.53.07-.83.1zM18.9 340.45c-.7-.1-.7-.1-1.54.12-.12-.05-.1-.16-.1-.26l-.01-1.93c0-.12.01-.25.05-.36.23-.75 1.3-.78 1.58-.06.06.13.1.28.1.42v1.92c0 .04-.04.08-.07.15zM14.45 340.51c-.53-.1-1.02-.2-1.53.03-.05-.1-.12-.2-.12-.28-.02-.62-.05-1.25-.04-1.87-.01-.96 1.25-1.26 1.63-.41.06.15.09.32.1.48l.01 1.8c0 .06-.02.12-.05.25zM14.2 53.05l-.98.05c-.23-.12-.33-.27-.37-.46a2.43 2.43 0 0 1-.06-.43c-.02-.58-.04-1.16-.03-1.74 0-.18.03-.37.11-.54.15-.33.44-.48.8-.47.59.02.82.52.82 1.05l.02 1.74c0 .27-.01.54-.3.8zM18.67 53h-1.13c-.25-.22-.3-.48-.29-.75v-1.8c0-.66.17-.86.82-1.05.68.15.9.38.91 1.04.02.6.01 1.2 0 1.8 0 .28-.06.54-.31.75zM19.37 595.83l-.04.31c-.49.1-1.69.14-2.38.07l-.04-.04-.12-.22c.05-.05.1-.11.14-.12.4-.07 2.02-.06 2.44 0zM15.1 595.93l-.1.34c-.9.02-1.76.1-2.64.07l-.1-.23c.04-.05.06-.1.09-.1.2-.03.41-.06.62-.07l1.68-.06c.14 0 .28.03.45.05zM18.9 308.13a3 3 0 0 0-1.6.16c-.02-.13-.05-.23-.05-.33v-1.81c-.04-.51.26-.97.79-1.02.53-.03.93.43.94.95v1.87c0 .06-.05.11-.08.18zM14.43 308.21c-.51-.1-1.02-.18-1.56.05-.04-.17-.08-.29-.08-.4a48 48 0 0 1-.03-1.69c0-.55.36-1.04.95-.98.47.03.76.44.77.9l.02 1.93c0 .06-.04.11-.07.19zM19.38 627.7l-.03.3c-.1.02-.18.07-.25.07-.72.03-1.44.05-2.17.02l-.15-.32c.1-.05.16-.1.23-.1l2.16-.03c.06 0 .12.03.2.06zM15.09 627.8l-.07.28c-.46.08-2.16.14-2.65.1l-.1-.15c-.01-.03 0-.07.02-.12.04-.03.1-.07.15-.08l2.38-.09c.07 0 .15.03.27.05zM14.54 658.32c.06.63.05 1.23.06 1.83 0 .2-.09.36-.17.54-.47.12-.94.1-1.4.11a.56.56 0 0 1-.29-.48l-.04-1.8c0-.04.03-.08.05-.12a4.8 4.8 0 0 1 1.79-.08zM17.18 658.24a8.7 8.7 0 0 1 1.74 0c.05.07.09.1.09.13 0 .6.02 1.2.01 1.8 0 .19-.06.37-.25.51-.42.08-.87.05-1.29.02a.43.43 0 0 1-.26-.37c-.06-.68-.02-1.35-.04-2.09zM18.08 17.27c.7.2.88.42.9 1.05.02.58.02 1.17 0 1.75 0 .58-.34 1.1-.96 1.05a.86.86 0 0 1-.76-.85c0-.7-.02-1.41 0-2.12 0-.5.33-.8.82-.88zM14.5 19.31c0 .39.03.8-.02 1.18a.82.82 0 0 1-.79.66c-.66 0-.9-.5-.9-1.1l-.04-1.68c0-.12.01-.25.04-.37.22-.9 1.54-.88 1.67.07.04.2.03.41.03.62v.62h.02z"}),i[0]=a,i[1]=l):(a=i[0],l=i[1]),i[2]!==r||i[3]!==d||i[4]!==u?(c=(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:d,height:u,viewBox:"0 0 32 672",className:"Affirmative-module__affirmative--yLQwP","data-animation-state":r,fill:"currentColor","aria-hidden":!0,children:[a,l]}),i[2]=r,i[3]=d,i[4]=u,i[5]=c):c=i[5],c}try{m.displayName||(m.displayName="CopilotAnimationAffirmative")}catch{}function p(e){let a,l,c,i=(0,t.c)(6),{scale:s,state:r}=e,o=void 0===s?1:s,d=32*o,u=928*o;return i[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)("path",{d:"M27.96 245.08c-.37.35-.73.73-1.13 1.06-.4.33-.85.6-1.3.92l-.16.54c-5.92 4.36-12.77 4.38-18.68-.02l-.15-.58a8.47 8.47 0 0 1-2.42-1.98c-.13-1.25-.05-2.54 0-3.82.5-.7 1.27-1.85 2.08-2.12l.53-.2c.04-.11.1-.2.12-.3.27-.87.57-1.72.68-2.65.16-1.7 1.6-2.6 3.12-3.08a.96.96 0 0 1 .5-.45 11.1 11.1 0 0 1 4.66-1.3c1.91 0 3.76.51 5.44 1.5l.17.3.15.1c1.38.47 2.53 1.42 2.72 2.95.04.27.12.52.23.77.3.7.56 1.4.8 2.12l.4.17c.44.14.82.39 1.12.75l.94 1.16c.13.15.18.33.2.52.07.53.06 2.98-.02 3.64zM8.34 246.7c2.3 1.82 5.65 2.48 8.53 2.31 2.33-.18 4.93-.83 6.73-2.4.35-1.46.34-2.96.23-4.46-.04-.54-.03-1.1-.3-1.66-.64.53-1.24.9-2.07 1.02l-.62.08c-1.61.2-4.53-.11-4.89-2.07-.16.07-.15.2-.2.32-.2.67-.77 1.08-1.4 1.33-1.32.56-2.4.53-3.8.36a3.52 3.52 0 0 1-1.94-.76c-.08-.06-.16-.15-.28-.1-.44 1.4-.45 4.13.01 6.03zm8.94-9.7c.03.42.05.94.1 1.45.07.7.47 1.15 1.12 1.37.72.23 1.46.31 2.21.24.99-.12 1.45-.49 1.69-1.47.22-.88.2-1.77.08-2.66a.73.73 0 0 0-.36-.55 7.35 7.35 0 0 0-3.6-.87c-1.38.11-1.16 1.4-1.24 2.48zm-2.82-.04c0-.4.02-.79 0-1.18-.01-.89-.73-1.29-1.55-1.21-.68.06-1.36.17-2.03.35-.54.16-1.47.46-1.5 1.12-.08.98-.17 1.97.18 2.9.2.6.6.94 1.2 1.06.23.04.46.1.68.08.5-.03 1-.06 1.49-.16 1.63-.3 1.57-1.6 1.53-2.96zM6.68 279.24l-.13-.55a8.21 8.21 0 0 1-2.44-2c-.1-1.27-.05-2.54.03-3.82.38-.56.8-1.1 1.28-1.6.22-.22.49-.39.78-.5l.55-.21c.08-.26.15-.52.25-.77.29-.67.42-1.38.5-2.1.16-1.69 1.58-2.74 3.13-3.14l.2-.28a10.01 10.01 0 0 1 10.4 0l.19.31.15.09c1.36.49 2.5 1.38 2.7 2.9.06.32.16.63.3.94.29.66.52 1.36.76 2.04l.36.14c.95.26 1.45 1.15 2.04 1.86.15.18.25.38.26.62.05 1.16.07 2.33 0 3.5a7.94 7.94 0 0 1-2.44 2l-.18.6c-2.7 2-6.02 3.3-9.41 3.31a16.17 16.17 0 0 1-9.28-3.34zm1.64-.88c1.74 1.43 4 2 6.19 2.26 2.89.4 6.8-.43 9.08-2.3.34-1.34.33-2.67.27-4-.04-.72-.06-1.44-.3-2.16-.2.07-.3.2-.43.3-.43.34-.92.57-1.46.67a7.24 7.24 0 0 1-4.35-.35c-.66-.29-1.16-.73-1.34-1.47 0-.03-.04-.06-.06-.1-.12.05-.13.16-.15.25-.24.9-1.1 1.28-1.9 1.54-1.51.5-4.09.45-5.33-.63-.05-.04-.14-.04-.24-.08-.38 2.03-.45 4 .02 6.07zm14.15-10.88c-.13-.29-.31-.46-.54-.56-.34-.16-.69-.32-1.05-.41-.6-.15-1.22-.24-1.83-.34-.81-.11-1.63.22-1.7 1.12-.04.58-.04 1.16-.04 1.75 0 .35.03.7.07 1.05.16 1.63 2.17 1.7 3.44 1.62.63-.08 1.24-.38 1.44-1.02.38-1.02.37-2.19.2-3.21zm-8 1.1h.01c0-.41.01-.83-.02-1.24-.12-1.02-.97-1.19-1.84-1.09-.94.12-1.9.29-2.75.76a.96.96 0 0 0-.51.8c-.08.73-.1 1.46.04 2.18.14.67.33 1.33 1.05 1.57.79.28 1.65.2 2.46.03 1.65-.33 1.6-1.62 1.55-3zM4.11 213.2c-.1-1.28-.05-2.55.02-3.83.4-.56.81-1.1 1.3-1.6.21-.22.48-.39.77-.5.16-.07.31-.12.5-.18.24-.5.4-1.04.58-1.56.05-.16.08-.32.1-.48.05-.25.07-.5.1-.75.16-1.79 1.48-2.79 3.07-3.28.22-.16.37-.3.55-.4 1.28-.69 2.64-1.1 4.08-1.28 2.12-.2 4.22.38 6.05 1.43l.2.3c1.32.45 2.58 1.35 2.82 2.8.08.48.22.93.41 1.37.26.6.44 1.21.68 1.82l.47.18c.36.12.68.32.93.6.36.42.7.84 1.03 1.26.14.17.21.36.22.57.05 1.17.07 2.33 0 3.51-.69.82-1.48 1.51-2.45 2l-.16.55c-5.9 4.37-12.8 4.35-18.7 0l-.13-.54a8.43 8.43 0 0 1-2.44-1.98zm11.83-5.6c-.14.11-.15.24-.19.36-.19.62-.71 1.03-1.29 1.27a6.6 6.6 0 0 1-3.8.42 3.66 3.66 0 0 1-2.06-.78c-.08-.07-.17-.13-.32-.04-.36 1.98-.43 3.97.04 5.94.7.82 2.62 1.57 3.67 1.85 1.38.33 2.79.58 4.2.56.69-.03 1.37-.1 2.05-.2 1.83-.3 3.94-.96 5.34-2.2.24-.86.3-1.7.3-2.56.01-1.1-.01-2.2-.22-3.3-.02-.1-.01-.2-.17-.27-.08.06-.18.12-.27.2a3.6 3.6 0 0 1-1.82.77c-.29.04-.57.08-.86.1-1.56.15-4.27-.24-4.6-2.11zm1.34-2.54.09 1.38c.05.8.5 1.3 1.26 1.52.75.21 1.51.29 2.29.18 1.13-.14 1.38-.89 1.57-1.88a7.6 7.6 0 0 0 .02-2 .99.99 0 0 0-.54-.84 7.66 7.66 0 0 0-3.5-.79c-1.33.15-1.11 1.4-1.19 2.43zM9.4 204c-.14.96-.18 1.99.1 2.93.21.72.68 1.13 1.42 1.22.82.1 2.02.01 2.74-.4.38-.22.63-.54.71-.97.06-.3.1-.62.1-.93.02-.68.01-1.37 0-2.06-.07-.86-.95-1.23-1.72-1.09-.95.16-1.9.28-2.76.72-.23.1-.43.25-.59.58zM25.34 302.18c.1.06.16.1.22.11 1.03.24 1.58 1.17 2.2 1.94.15.18.22.4.23.63.05 1.14.06 2.29.02 3.44a8.27 8.27 0 0 1-2.46 2.02l-.2.52c-5.92 4.2-12.77 4.22-18.66-.03l-.12-.42c-.91-.63-1.77-1.19-2.46-2.07-.1-1.26-.04-2.52.03-3.8.39-.57.8-1.11 1.29-1.6.23-.25.51-.42.83-.54.14-.04.27-.1.43-.16.06-.14.14-.29.19-.44.41-1.4.57-1.27.63-2.53.07-1.21.78-2.08 1.83-2.67.14-.08.29-.17.44-.22.63-.22 1.22-.54 1.8-.84a9.87 9.87 0 0 1 9.3.2c.11.05.24.1.32.18.19.22.44.3.7.4.44.17.85.42 1.22.73 1.34 1.14.92 2 1.56 3.38.25.59.44 1.17.66 1.77zM8.4 303.74c-.52 1.16-.53 4.48-.04 6.12 1.91 1.68 5.22 2.27 7.75 2.31 2.4-.05 5.61-.74 7.46-2.34.43-1.57.41-4.89-.02-6.2h-.07l-.2.14c-.5.43-1.08.7-1.74.78-1.56.28-3 .27-4.44-.47-.68-.34-.96-.78-1.18-1.5-.06.09-.11.15-.13.22a1.92 1.92 0 0 1-1.1 1.29 6.54 6.54 0 0 1-4.14.52 3.71 3.71 0 0 1-1.95-.76c-.05-.04-.1-.06-.2-.11zm8.88-3.68c.03.42.05.92.1 1.41.07.7.45 1.15 1.1 1.38.82.29 1.67.36 2.52.25a1.47 1.47 0 0 0 1.29-1.03c.34-.93.32-1.93.2-2.9a.86.86 0 0 0-.36-.63c-.9-.64-2.55-.91-3.64-.9-1.34.05-1.14 1.4-1.21 2.42zm-2.8-.04-.01-1.18c-.04-.82-.73-1.2-1.49-1.15-1.05.1-2.12.28-3.06.78a.93.93 0 0 0-.56.84c0 .25-.03.5-.05.74a5 5 0 0 0 .18 1.8c.23.82.7 1.21 1.56 1.28.83.06 1.68-.03 2.45-.36 1.09-.44.98-1.77.98-2.75zM6.68 183.73l-.1-.38c0-.02-.02-.03-.06-.1a8.58 8.58 0 0 1-2.4-1.98c-.13-1.24-.05-2.52 0-3.81.54-.75 1.25-1.85 2.13-2.15l.43-.16c.25-.51.42-1.07.61-1.62.13-.44.14-.9.2-1.35.17-1.57 1.32-2.6 2.75-3.08.23-.09.46-.18.68-.3a9.98 9.98 0 0 1 9.73-.28c.15.07.3.14.44.23.14.1.26.2.4.28.41.2.84.39 1.22.63a3.26 3.26 0 0 1 1.57 2.37c.06.41.18.8.35 1.19.28.61.48 1.24.7 1.88.12.05.23.11.35.15.97.27 1.47 1.18 2.08 1.9.15.18.23.4.23.63.05 1.14.07 2.29 0 3.46a8 8 0 0 1-2.43 2l-.21.53c-6.1 4.24-12.6 4.25-18.67-.04zm9.24-8.24c-.05.1-.11.15-.13.23a2 2 0 0 1-1.2 1.34c-1.43.7-3.06.7-4.58.38-.6-.1-1.1-.45-1.6-.78-.53 1.03-.55 4.42-.05 6.14.08.08.19.18.3.26 1.33.93 2.87 1.44 4.45 1.74 2.98.6 6.14.27 8.9-1.04a5.8 5.8 0 0 0 1.6-1.04c.42-1.96.33-4.01.01-5.99-.01-.08-.03-.16-.16-.17-.56.48-1.18.83-1.92.93a6.98 6.98 0 0 1-4.05-.3 4.6 4.6 0 0 1-.76-.42 1.6 1.6 0 0 1-.62-.77l-.19-.5zm6.65-2.44-.07-.88a.93.93 0 0 0-.56-.84c-.3-.14-.6-.3-.91-.38-.7-.16-1.39-.28-2.08-.4-.68-.12-1.48.24-1.58.97a3.1 3.1 0 0 0-.06.5c0 .85-.07 1.71.1 2.55.22 1.36 1.96 1.5 3.08 1.52.9-.04 1.6-.33 1.86-1.26a5.9 5.9 0 0 0 .22-1.78zm-8.1-.07c0-.42.02-.83 0-1.25-.1-1.04-1.02-1.2-1.89-1.08-.93.16-1.9.3-2.73.78a.84.84 0 0 0-.47.69l-.08.68c-.04.71.02 1.41.23 2.1.17.58.56.92 1.15 1.1.63.2 2.39-.03 2.92-.34.98-.53.88-1.73.87-2.68zM6.7 727.94c-.06-.14-.1-.25-.17-.38a8.51 8.51 0 0 1-2.41-1.98c-.12-1.27-.06-2.56.02-3.83.38-.57.8-1.1 1.25-1.58.23-.24.51-.42.83-.54l.47-.19c.22-.59.45-1.17.65-1.76.05-.13.04-.28.06-.43.06-.43.1-.86.18-1.3.26-1.44 1.6-2.39 2.93-2.77.38-.11.74-.26 1.1-.44a9.77 9.77 0 0 1 8.26-.26c.67.28 1.32.62 2 .9 1.14.47 2.17 1.4 2.38 2.67.06.3.1.62.13.8l1 2.58.45.18c.34.12.65.3.88.58.37.42.72.86 1.07 1.3.17.2.21.44.22.7.01 1.12.05 2.24 0 3.37a8.32 8.32 0 0 1-2.42 1.97l-.27.48c-6.02 4.03-12.61 4.1-18.6-.07zm16.8-7.3-.3.2c-.48.38-1.03.63-1.64.7l-.93.13a5.88 5.88 0 0 1-3.73-.7c-.61-.37-.76-.77-1-1.43l-.14.36c-.16.5-.49.88-.95 1.12-1.31.7-2.71.85-4.18.6a3.84 3.84 0 0 1-2.02-.75c-.05-.04-.13-.06-.2-.09-.5 1-.6 4.75-.03 6.23 1.68 1.32 3.85 1.81 5.94 2.07 2.99.4 6.8-.28 9.23-2.1.46-1.52.44-4.97-.05-6.34zm-.94-3.36-.06-.93a.98.98 0 0 0-.59-.9c-.9-.49-1.94-.58-2.94-.78-.68-.12-1.47.18-1.6.93-.02.1-.04.2-.04.3-.03.82-.05 1.63.03 2.44.08.83.52 1.33 1.31 1.55.66.2 1.35.26 2.04.24 1.6.03 1.85-1.57 1.85-2.85zm-8.1-.27c0-.4.03-.8 0-1.18-.04-.77-.68-1.14-1.4-1.08-.87.03-1.72.22-2.55.5-.23.09-.45.21-.67.34a.85.85 0 0 0-.46.7c-.1.94-.14 1.91.2 2.83.22.61.67.94 1.3 1 .7.05 1.41 0 2.1-.18 1.57-.37 1.53-1.57 1.49-2.93zM25.38 143.1c.1.04.17.1.25.11 1 .25 1.51 1.2 2.14 1.93.13.16.2.35.22.57.05 1.16.06 2.33 0 3.52-.7.8-1.47 1.51-2.43 1.99l-.21.4a17.39 17.39 0 0 1-7.17 2.92c-4.03.64-8.18-.61-11.47-2.95l-.17-.35a8.87 8.87 0 0 1-2.42-1.97c-.14-1.26-.04-2.54 0-3.82.4-.62.84-1.17 1.34-1.67.32-.35.77-.48 1.2-.65.17-.32.24-.67.39-.99.3-.65.38-1.35.44-2.06.12-1.2.75-2.09 1.78-2.7.43-.27.9-.44 1.38-.6.3-.09.59-.19.87-.33 1.38-.7 2.85-1.03 4.38-1.12 1.67 0 3.32.44 4.8 1.2.9.45 1.89.7 2.6 1.44a3 3 0 0 1 .95 1.79c.09.62.28 1.2.54 1.78.21.5.38 1 .59 1.56zm-1.83 1.23h-.1c-.1.06-.19.11-.27.18-.47.36-1 .59-1.59.68-.28.04-.58.06-.86.11-1.13.21-2.2 0-3.24-.4-.76-.29-1.34-.76-1.53-1.6l-.06-.06c-.04.07-.1.14-.12.21a1.92 1.92 0 0 1-1.1 1.28c-1.07.51-2.2.76-3.4.61-.9-.1-1.84-.18-2.6-.77-.07-.06-.17-.1-.28-.17-.22.44-.24.9-.3 1.35-.18 1.62-.18 3.23.22 4.86 2.04 1.58 4.7 2.08 7.2 2.22 2.65.11 5.93-.6 8.04-2.22.46-1.26.42-4.97-.01-6.28zm-6.17-5.2c-.12.96-.13 2 0 3.03.18 1.6 2.44 1.69 3.69 1.57 1.65-.16 1.53-2.55 1.42-3.78a.95.95 0 0 0-.47-.76 7.59 7.59 0 0 0-3.34-.86c-.58-.04-1.01.2-1.3.8zm-7.99.63c-.12 1.38-.35 3.94 1.6 4a6 6 0 0 0 2.4-.32c.7-.28 1-.83 1.07-1.55 0-.81.03-1.63 0-2.44-.06-.96-.98-1.17-1.8-1.03-.59.1-1.18.22-1.76.37-.3.07-.59.22-.87.34-.25.11-.46.29-.64.63zM6.69 759.74l-.14-.35a8.84 8.84 0 0 1-2.43-1.98c-.13-1.24-.05-2.53 0-3.82a10 10 0 0 1 1.33-1.66c.33-.35.76-.49 1.22-.65.22-.54.47-1.1.63-1.68.1-.42.13-.86.18-1.29a3.5 3.5 0 0 1 2-2.9c.63-.3 1.33-.47 1.96-.78 1.36-.69 2.8-1.05 4.32-1.15 1.66-.04 3.32.4 4.81 1.13.43.21.87.4 1.3.6.47.19.9.44 1.28.77.6.5 1 1.13 1.1 1.9.09.68.3 1.3.58 1.9.2.48.35.98.54 1.45.1.05.16.1.24.12 1 .24 1.52 1.18 2.15 1.91.11.15.2.31.22.5.07 1.21.07 2.42.02 3.62-.72.8-1.48 1.5-2.43 1.98l-.22.4a17.48 17.48 0 0 1-6.08 2.74c-4.37 1.05-8.98-.19-12.58-2.76zm9.26-8.38c-.08.1-.12.13-.13.17-.16.71-.64 1.15-1.27 1.44-1.47.71-2.84.64-4.4.38-.52-.07-1-.28-1.43-.6l-.3-.18c-.54 1.17-.57 4.52-.05 6.24.18.14.38.32.61.44.48.26.96.51 1.46.72a15.2 15.2 0 0 0 8.47.75c1.48-.3 3.59-.96 4.68-2 .43-1.74.39-5.04-.08-6.2-.2-.03-.3.13-.42.23-.82.63-1.86.67-2.85.77-.97.1-1.9-.1-2.8-.47-.76-.3-1.32-.79-1.5-1.69zm1.33-2.44c.03.38.05.9.1 1.41.08.58.4 1 .94 1.24.77.34 2.24.54 3.05.26.42-.13.73-.4.88-.83a5.9 5.9 0 0 0 .25-2.83 1 1 0 0 0-.58-.89 6.56 6.56 0 0 0-1.1-.44 15.6 15.6 0 0 0-1.52-.3c-.25-.05-.5-.04-.75-.05a1.15 1.15 0 0 0-1.2 1.1l-.07 1.33zm-2.8-.11c0-.37.01-.75-.01-1.12-.05-.96-.9-1.24-1.73-1.11-.6.09-1.18.2-1.77.33-.43.1-.82.28-1.19.53a.84.84 0 0 0-.4.6 5.67 5.67 0 0 0 .27 3.07c.24.6.9.82 1.49.85.64.02 1.28-.06 1.9-.23.92-.25 1.31-.72 1.42-1.67.04-.42.01-.83.02-1.25zM25.4 783.03c.07.04.12.08.18.1 1.02.25 1.57 1.17 2.2 1.94.13.17.2.36.2.58.06 1.16.07 2.32.02 3.51a8 8 0 0 1-2.43 1.98l-.26.43c-6 4-12.57 4-18.57-.01a7.2 7.2 0 0 0-.22-.41 8.22 8.22 0 0 1-2.4-1.97c-.12-1.26-.05-2.53 0-3.8.4-.6.83-1.16 1.34-1.66.2-.2.47-.33.72-.47.14-.08.31-.12.49-.19.22-.57.45-1.15.66-1.73.05-.14.04-.29.06-.43.14-1.46.27-2.46 1.53-3.4.5-.36 1.04-.62 1.62-.77.5-.14.99-.34 1.46-.56 1.12-.52 2.33-.77 3.55-.89.25-.02.5-.04.75-.02 1.55.13 3.04.48 4.43 1.21.29.16.6.27.92.38.6.23 1.16.55 1.64 1 .52.49.86 1.08.96 1.78.1.69.3 1.33.6 1.96.2.46.33.98.55 1.44zm-1.84 1.09-.32.22c-.83.67-1.57.7-2.57.85a5.97 5.97 0 0 1-3.35-.5c-.67-.27-1.17-.72-1.34-1.45 0-.04-.04-.07-.06-.1-.15.05-.13.2-.17.31-.16.45-.45.8-.86 1.03a5.96 5.96 0 0 1-3.86.7c-.14-.03-.3-.03-.44-.05a3.85 3.85 0 0 1-1.96-.73c-.06-.05-.14-.07-.2-.1-.56 1.17-.58 4.71-.05 6.26 2.05 1.57 4.76 2.02 7.28 2.16 1.66.07 3.28-.23 4.86-.7.8-.23 2.66-1 3.12-1.64.38-2.02.3-4.09-.08-6.26zm-6.23-3.68h-.06c.15 1.5-.19 2.54 1.6 3.02.59.14 1.19.2 1.79.19 1-.02 1.52-.47 1.74-1.37.21-.86.17-1.73.07-2.6a.75.75 0 0 0-.37-.55 4.35 4.35 0 0 0-1.6-.65 9.34 9.34 0 0 0-1.79-.28c-.76-.02-1.33.35-1.38 1.19-.02.35 0 .7 0 1.05zm-2.85.11h-.01v-1.12c0-.78-.64-1.16-1.2-1.17-.21 0-.43 0-.63.04-.57.1-1.14.21-1.7.36-.34.1-.66.25-.98.4a.96.96 0 0 0-.59.89c0 .22-.03.45-.05.68-.06.63.02 1.24.2 1.85.21.74.67 1.12 1.44 1.15.83.03 1.67-.04 2.45-.34 1.18-.42 1.07-1.7 1.07-2.74zM6.71 696l-.19-.34a8.21 8.21 0 0 1-2.4-1.96c-.12-1.28-.06-2.54.01-3.83.4-.58.82-1.14 1.33-1.64.2-.21.45-.37.73-.48l.48-.18.66-1.74c.06-.16.05-.33.07-.5.05-.4.08-.82.15-1.23.26-1.57 1.71-2.57 3.16-2.95.46-.12.9-.3 1.34-.5.92-.4 1.89-.64 2.88-.78 1.77-.26 3.44.1 5.06.78.57.24 1.13.52 1.73.72 1.23.43 2.32 1.43 2.54 2.76l.13.87 1.01 2.53c.04.03.07.07.11.08 1.05.26 1.63 1.17 2.26 1.97.13.17.21.35.22.57.05 1.17.07 2.33 0 3.5a8.06 8.06 0 0 1-2.45 2.03c-.1.28-.34.45-.59.6a17.25 17.25 0 0 1-6.96 2.63c-3.97.6-8.01-.67-11.28-2.92zm1.62-.99c1.72 1.32 3.89 1.83 6 2.07 1.6.2 3.2.12 4.78-.23 1.36-.28 2.65-.71 3.84-1.42.24-.14.46-.28.66-.53.4-1.8.32-3.65.1-5.5-.03-.25-.04-.52-.22-.77l-.27.19c-.5.4-1.08.63-1.71.71-1.66.28-2.9.28-4.44-.5-.5-.24-.86-.63-1.05-1.18-.02-.08.01-.2-.12-.23l-.06.04A2.07 2.07 0 0 1 14.8 689c-1.5.8-2.92.82-4.56.53a3.37 3.37 0 0 1-1.5-.58l-.33-.2c-.3.64-.3 1.32-.36 1.97-.12 1.42-.1 2.83.28 4.3zm14.22-9.88-.05-.8a.97.97 0 0 0-.5-.8 3.88 3.88 0 0 0-1.16-.48c-.58-.14-1.18-.24-1.77-.35-1.1-.16-1.78.28-1.76 1.48 0 .8-.06 1.59.09 2.37.09.5.34.89.81 1.1.78.4 1.76.49 2.62.45 1.55-.03 1.76-1.7 1.72-2.97zm-8.08-.12v-1.19a1.12 1.12 0 0 0-1.1-1.07h-.3c-1.1.09-2.22.28-3.18.83a.98.98 0 0 0-.52.8c-.08.91-.1 1.85.2 2.72.45 1.39 2.32 1.04 3.42.79 1.55-.36 1.52-1.54 1.48-2.88zM28 340.02a8.47 8.47 0 0 1-2.46 2c-.18.37-.54.56-.87.76-3.6 2.18-8.02 3.25-12.15 2.13a17.25 17.25 0 0 1-5.78-2.59c-.09-.07-.14-.2-.23-.32a8.3 8.3 0 0 1-2.39-1.96c-.13-1.27-.04-2.53 0-3.8.4-.6.84-1.15 1.33-1.66.2-.2.45-.37.73-.47l.48-.19c.22-.58.46-1.15.67-1.74.05-.15.05-.32.07-.49.06-.47.11-.95.2-1.42.24-1.31 1.43-2.25 2.65-2.65.83-.26 1.66-.55 2.47-.87.97-.4 2-.53 3.04-.63.63-.06 1.25.08 1.87.17.95.15 1.85.46 2.73.86.32.15.65.27.98.39 1.38.44 2.7 1.43 2.92 2.94l.14.87 1 2.53c.04.03.07.07.11.08 1.05.25 1.63 1.17 2.26 1.97.13.16.2.35.22.57.05 1.16.06 2.33 0 3.52zm-19.6-4.99a6.3 6.3 0 0 0-.34 1.85c-.12 1.47-.11 2.95.27 4.43 2.03 1.53 4.63 1.99 7.1 2.16 1.12.08 2.21-.05 3.3-.25 1.61-.3 3.62-.88 4.88-1.98.43-2 .32-4.06 0-6.08-.01-.07-.07-.13-.12-.23l-.28.19c-.47.36-1 .6-1.59.68-1.62.33-3.06.3-4.56-.48-.5-.25-.86-.64-1.04-1.19-.03-.08.01-.2-.13-.23-.03.04-.07.06-.08.1-.17.74-.68 1.17-1.34 1.45-.9.4-1.86.62-2.86.54-1.02-.1-2.12-.16-2.96-.82-.06-.05-.14-.08-.25-.14zm8.92-3.81h-.05c.13 1.36-.15 2.47 1.47 2.94.75.22 1.51.26 2.29.21.67-.04 1.19-.57 1.34-1.21.25-.88.2-1.77.1-2.67a.74.74 0 0 0-.31-.52c-1-.72-2.26-.86-3.44-.99-.8-.07-1.37.4-1.4 1.24v1zm-7.9-.8a8.2 8.2 0 0 0-.09 1.75c.05 1.03.39 2.19 1.6 2.2.88.05 1.77-.03 2.57-.38.6-.24.89-.82.95-1.43.01-.83.04-1.66 0-2.5-.01-.47-.3-.79-.77-.94-.33-.11-.66-.11-.98-.05-.6.1-1.19.22-1.77.37-.32.09-.62.24-.92.38-.25.12-.45.3-.6.6zM24.4 812.33l1.02 2.53c.03.02.06.06.1.07 1.05.25 1.62 1.19 2.25 1.97.13.17.21.36.22.58.05 1.16.06 2.33.01 3.51-.6.65-1.2 1.27-1.96 1.72-.25.15-.5.28-.69.53-.1.14-.29.23-.45.33-2.98 1.84-6.5 2.95-10.03 2.65a17.7 17.7 0 0 1-7.72-2.66c-.2-.14-.42-.26-.57-.48-.07-.12-.22-.19-.34-.26a8.6 8.6 0 0 1-2.12-1.8c-.13-1.26-.04-2.54 0-3.82.4-.59.82-1.13 1.3-1.62.25-.24.52-.42.84-.54l.4-.15c.22-.59.45-1.14.65-1.7.06-.16.07-.33.09-.5.06-.5.1-.99.2-1.48.24-1.34 1.47-2.3 2.71-2.68.94-.27 1.85-.62 2.78-.93a8.97 8.97 0 0 1 5.23-.19c1.21.3 2.34.86 3.52 1.26 1.22.49 2.28 1.48 2.44 2.84l.12.82zm-.92 3.53c-.13.08-.24.14-.33.21-.45.33-.94.55-1.48.63-1.64.3-3.12.32-4.63-.49a1.95 1.95 0 0 1-1.04-1.26c-.02-.06.02-.17-.15-.15-.14.5-.33.92-.78 1.2-.2.15-.43.28-.65.38a6.7 6.7 0 0 1-4.23.34 3.55 3.55 0 0 1-1.49-.6l-.26-.16c-.54 1.14-.6 4.33-.1 6.3 2.7 2 7.39 2.52 10.63 1.83 1.5-.3 3.49-.89 4.65-1.93.37-1.78.32-3.58.1-5.39-.03-.3-.06-.6-.24-.9zm-6.15-3.76h-.05c.03.48.05.96.09 1.43.11 1.72 2.32 1.78 3.63 1.74 1.08-.1 1.31-.87 1.5-1.8.09-.53.03-1.07.03-1.61 0-.73-.42-1.14-1.06-1.37a10.7 10.7 0 0 0-2.6-.6c-.82-.06-1.48.27-1.54 1.15-.03.35 0 .7 0 1.06zm-2.86.09c0-.35.02-.7 0-1.06-.04-1.1-.95-1.26-1.88-1.12-.65.13-1.3.27-1.95.45-.29.08-.56.25-.83.4a.83.83 0 0 0-.43.66 7.3 7.3 0 0 0 .01 2.12c.16.76.39 1.44 1.24 1.6.13.03.25.05.38.05.66 0 1.33-.04 1.98-.22 1.54-.36 1.52-1.54 1.48-2.88zM4.12 117.16a23 23 0 0 1 .03-3.83 9.4 9.4 0 0 1 1.35-1.65c.19-.18.44-.3.67-.43.15-.08.31-.13.47-.19l.68-1.74c.06-.15.06-.33.08-.5.07-.5.11-1.03.2-1.54.36-1.71 2.15-2.57 3.71-2.93.32-.08.64-.18.95-.3 1.17-.49 2.4-.72 3.64-.8.48-.02.96.07 1.43.13.91.13 1.8.37 2.64.73.32.14.66.25 1 .37.35.13.7.24 1.05.38a3.63 3.63 0 0 1 2.23 2.6l.16 1.04 1.03 2.56.46.17c.31.12.6.3.82.56.36.42.71.86 1.07 1.3.12.15.19.32.2.51.05 1.19.07 2.37 0 3.58-.56.59-1.12 1.17-1.81 1.6-.32.2-.65.38-.91.66-.17.18-.4.3-.62.42-3.85 2.28-8.57 3.23-12.9 1.87a18.36 18.36 0 0 1-4.23-1.82c-.34-.2-.69-.39-.95-.7-.1-.12-.27-.2-.41-.28a7.98 7.98 0 0 1-2.04-1.77zm19.48 1.16c.42-1.86.34-3.73.1-5.6-.03-.24-.01-.54-.25-.76l-.27.18c-.45.34-.96.56-1.53.65-.45.07-.9.15-1.36.2a6.06 6.06 0 0 1-3.1-.6c-.58-.28-1.02-.7-1.2-1.36 0-.05-.04-.1-.06-.15-.13.04-.13.16-.16.25-.16.53-.52.9-.99 1.16a6 6 0 0 1-3.69.64l-.43-.05a4.14 4.14 0 0 1-2.04-.73l-.16-.08c-.23.43-.3.7-.4 1.8-.12 1.5-.13 3 .27 4.46.3.31.67.51 1.04.7a13.5 13.5 0 0 0 4.42 1.28c1.28.2 2.57.27 3.86.08.72-.11 1.43-.24 2.15-.39 1.15-.23 2.22-.69 3.24-1.27.2-.11.36-.27.56-.4zm-1.04-9.73c-.12-1.33.1-1.49-1.26-2.05-.75-.28-1.53-.42-2.31-.52-.2-.02-.42-.02-.62 0-.79.08-1.07.72-1.06 1.44 0 .8-.05 1.6.09 2.37.12.79.76 1.17 1.48 1.34.63.16 1.27.22 1.92.2 1.53.04 1.76-1.56 1.76-2.78zM9.4 107.5c-.1.97-.18 2 .19 2.94.22.59.66.9 1.27.94a6.6 6.6 0 0 0 2.28-.26c.79-.23 1.27-.73 1.31-1.55.05-.83.04-1.66.02-2.5-.05-.84-.88-1.04-1.6-.97-1 .1-1.98.32-2.87.77-.26.12-.46.3-.6.64zM28 852.93a8.64 8.64 0 0 1-2.48 2.03c-4.14 2.85-9.53 3.89-14.34 2.25a19.3 19.3 0 0 1-5.73-2.98c-.5-.34-.9-.8-1.34-1.28-.11-1.26-.04-2.55.02-3.83.4-.57.8-1.09 1.26-1.57.33-.36.78-.54 1.23-.7l.69-1.75c.06-.17.06-.37.09-.55.06-.5.1-1 .19-1.48.26-1.49 1.67-2.44 3.04-2.83 1.08-.28 2.14-.66 3.24-.91.66-.15 1.35-.25 2.03-.3.41-.04.83.04 1.24.1.87.1 1.72.32 2.54.63l.89.3c1.65.38 3.47 1.4 3.7 3.24l.14.97 1.05 2.55.33.15c.4.14.74.37 1.02.7l.95 1.15c.15.19.22.4.23.63.04 1.15.07 2.3 0 3.48zm-19.66 1.09c.29.29.61.47.95.64 1.94.97 4.08 1.33 6.22 1.45 2.28.13 6.36-.6 8.1-2.15.45-2 .32-4.1-.02-6.1-.01-.1-.05-.2-.2-.22l-.2.12c-.79.6-1.59.66-2.52.8a5.93 5.93 0 0 1-3.46-.56 1.99 1.99 0 0 1-1.21-1.34c-.01-.06-.04-.11-.07-.16-.13.04-.14.15-.16.25-.15.5-.48.87-.94 1.12a6.37 6.37 0 0 1-4.6.55 3.52 3.52 0 0 1-1.55-.61c-.07-.05-.15-.07-.22-.1-.56 1.17-.62 4.35-.12 6.3zm8.98-10.18h-.04c.1 1.42-.13 2.48 1.56 2.91.69.19 1.39.26 2.1.23.12 0 .25-.02.37-.05.58-.15.9-.56 1.05-1.12a6.7 6.7 0 0 0 .1-2.6.85.85 0 0 0-.38-.6 7.84 7.84 0 0 0-3.51-.96c-.61 0-1.18.32-1.24 1.13-.03.35 0 .7 0 1.06zm-2.84.05c0-.37.01-.75-.01-1.12-.06-.8-.77-1.12-1.5-1.04-.83.09-1.64.26-2.42.55-.26.09-.5.22-.72.36-.27.16-.41.4-.44.72-.1.88-.12 1.8.18 2.65.23.66.66.95 1.36.98a5.9 5.9 0 0 0 2.68-.5c.41-.19.68-.53.77-.99a6.7 6.7 0 0 0 .1-1.61zM4.13 661.77c-.1-.93-.1-2.63.02-3.88.39-.57.83-1.17 1.39-1.68.19-.18.45-.3.68-.42.13-.07.27-.1.39-.15.25-.62.5-1.21.72-1.82.06-.17.07-.36.08-.55.03-.52.06-1.03.2-1.54.46-1.97 2.58-2.75 4.37-3.1.26-.07.53-.13.78-.22 1.03-.36 2.1-.53 3.18-.6.35-.02.7.03 1.05.08.87.1 1.72.3 2.55.6l.9.27c1.7.4 3.62 1.41 3.84 3.33l.13.96 1.06 2.57.27.12c.43.14.78.39 1.08.72.4.45.78.92 1.14 1.45.1 1.24.08 2.5.04 3.8a9.02 9.02 0 0 1-1.9 1.69l-1.11.69a17.84 17.84 0 0 1-8.69 2.63c-3.84.05-7.54-1.37-10.65-3.56-.58-.38-1.03-.9-1.52-1.39zm19.48.93c.42-1.97.35-4.02 0-6-.02-.11-.1-.22-.15-.36l-.4.23c-.3.14-.59.33-.9.42a7.23 7.23 0 0 1-3.14.27 6.37 6.37 0 0 1-1.96-.62 2.07 2.07 0 0 1-1.11-1.41c-.14.03-.16.13-.18.23-.16.54-.51.9-1 1.15a6.44 6.44 0 0 1-4.29.59c-.66-.12-1.3-.3-1.85-.7l-.17-.07c-.57 1.18-.63 4.5-.1 6.37 2.07 1.47 4.7 1.87 7.18 2.04 1.06.07 2.12-.07 3.16-.24 1.28-.21 2.52-.55 3.7-1.12.4-.2.82-.38 1.21-.78zm-6.3-10.15h-.03c.03.48.05.96.1 1.43.06.67.43 1.12 1.05 1.35.83.3 1.7.4 2.58.36.76-.01 1.24-.56 1.38-1.29.21-.8.17-1.6.09-2.42-.03-.29-.2-.5-.43-.65-.9-.61-2-.68-3.03-.91-.2-.04-.41-.04-.62-.02-1.2.1-1.1 1.24-1.1 2.15zm-2.83.1c0-.37.01-.75 0-1.12-.05-.92-.87-1.16-1.66-1.04-.67.13-1.35.26-2.01.43-.32.08-.61.26-.9.41a.93.93 0 0 0-.53.8c-.1.93-.09 1.89.26 2.77.2.56.78.8 1.36.8.82-.02 1.67-.09 2.44-.4 1.11-.45 1.06-1.64 1.04-2.65zM27.96 85.08a8.7 8.7 0 0 1-2.06 1.76 19.59 19.59 0 0 1-7.6 3.02c-3.7.58-7.5-.35-10.75-2.18-.63-.36-1.24-.76-1.85-1.16-.6-.39-1.07-.92-1.58-1.44-.12-1.28-.05-2.57.01-3.84.4-.6.83-1.13 1.3-1.62.31-.34.77-.5 1.18-.66.24-.6.48-1.17.7-1.75.07-.2.07-.4.1-.61.06-.5.1-1 .18-1.48.3-1.65 1.97-2.57 3.47-2.96.89-.2 1.77-.44 2.65-.7.68-.19 1.4-.25 2.1-.33.54-.06 1.07.08 1.6.15 1.07.11 2.05.56 3.08.81 1.69.4 3.57 1.41 3.79 3.31l.13.98 1.06 2.56c.03.02.08.06.14.07 1 .27 1.53 1.17 2.15 1.92.15.18.23.4.23.63l.01 3.3c0 .07-.02.13-.04.22zM8.33 86.09c.2.14.37.3.57.4A14.54 14.54 0 0 0 15 88.1c2.65.2 6.46-.41 8.6-2.06.46-2 .33-4.07 0-6.07-.01-.1-.1-.21-.15-.34l-.25.13a5.2 5.2 0 0 1-2.64.84c-1.41.17-4.16-.32-4.56-1.92-.02-.06.02-.18-.15-.16-.23.85-.65 1.22-1.44 1.58a6.6 6.6 0 0 1-4.28.32c-.5-.08-.96-.27-1.38-.55l-.3-.15c-.24.42-.26.85-.31 1.28-.21 1.68-.25 3.36.19 5.08zm8.95-10.06c.1 1.62-.03 2.4 1.88 2.82.6.13 1.2.16 1.8.14.78 0 1.25-.52 1.42-1.24.25-.82.18-1.65.1-2.48a.85.85 0 0 0-.5-.69c-.3-.16-.62-.34-.96-.42-.73-.18-1.47-.32-2.2-.46-.71-.1-1.45.28-1.48 1.05-.03.37-.04.75-.06 1.28zm-2.8-.12v-1c-.05-1.02-.9-1.26-1.78-1.1-.97.18-1.99.31-2.85.85a.88.88 0 0 0-.46.7 7.05 7.05 0 0 0 0 2c.15.73.4 1.57 1.28 1.62.88.06 1.75-.02 2.59-.3 1.31-.43 1.23-1.62 1.22-2.77zM11.37 535.8c-1.29-.46-2.6-.85-3.9-1.3a7.8 7.8 0 0 1-3.35-2.39c-.13-1.24-.04-2.5 0-3.8.43-.62.88-1.25 1.47-1.75.26-.23.6-.37.96-.6.19-.71.5-1.46.91-2.12-.02-1.42-.06-2.76 1.07-3.8 1.31-1.22 3.13-1.67 4.87-1.9a3.6 3.6 0 0 1 1.55.21 5.04 5.04 0 0 1 1.97-.02c.7-.25 1.4-.22 2.1-.1 1.56.28 3.18.75 4.34 1.9.96.89.94 2.07 1.05 3.33.4.75.9 1.58 1.1 2.5l.12.1c.96.3 1.5 1.15 2.1 1.9.16.2.25.42.26.68.04 1.14.06 2.29 0 3.44a7.44 7.44 0 0 1-3.07 2.29c-1.45.5-2.92.98-4.38 1.44-.36.08-.74.19-1.1.18-.9-.01-1.79.14-2.68.2-1.04.06-2.08.01-3.11-.15-.45-.06-.92-.01-1.37-.05-.29-.02-.58-.08-.86-.13l-.05-.05zm12.21-3.46c.44-1.43.4-4.62-.07-6.19a.66.66 0 0 0-.46-.3c-.6.25-1.2.6-1.86.65a7.03 7.03 0 0 1-4.13-.7c-.64-.31-.91-.72-1.13-1.39-.15.06-.14.2-.18.32-.13.37-.36.66-.68.87-.57.38-1.23.6-1.9.77a6.15 6.15 0 0 1-4.43-.51l-.28.19c-.6 1.6-.6 4.99-.09 6.36.84.52 1.84.83 2.8 1.06 2.74.62 5.6.73 8.37.25 1.16-.19 2.28-.5 3.35-.96.25-.11.5-.22.69-.42zm-1.83-7.6c.86-.57.73-1.76.76-2.65.02-.7-.3-1.12-.93-1.38-.92-.4-1.89-.63-2.87-.78-.25-.03-.5 0-.74.08-.53.19-.66.64-.66 1.15-.01.68-.04 1.37.08 2.05.07.46.33.8.73 1.02.9.45 1.92.57 2.9.6.27 0 .54-.06.73-.08zm-11.68.01c.22.03.49.08.76.07a7.02 7.02 0 0 0 2.78-.55c.62-.32.8-.82.87-1.49 0-.6.02-1.2 0-1.8-.02-.85-.78-1.06-1.5-.95-1.11.2-2.28.4-3.22 1.07a.81.81 0 0 0-.36.63c-.05.96-.22 2.33.67 3.02zM4.12 499.88c-.12-1.35-.05-2.6.01-3.89.41-.56.83-1.15 1.37-1.65.18-.17.4-.29.62-.42.12-.07.26-.12.42-.2.2-.77.51-1.52.92-2.15v-.63c-.04-1.03.1-2.14.83-2.93 1.22-1.35 3.08-1.85 4.82-2.11.5-.07 1-.08 1.49.07.22.08.45.06.68.04.45-.05.9-.07 1.37-.02.16.02.34.03.5-.01.7-.2 1.4-.13 2.1 0 1.43.29 2.91.74 4 1.76 1.06.94 1.04 2.07 1.16 3.42.38.76.9 1.57 1.08 2.48.08.06.1.1.14.12.95.32 1.5 1.15 2.1 1.9.16.2.25.42.26.68.04 1.15.06 2.3 0 3.45a7.43 7.43 0 0 1-3.07 2.28c-1.44.52-2.92.98-4.38 1.45-.54.15-1.1.23-1.67.21-.37 0-.74.03-1.12.08-1.36.14-2.75.16-4.1-.05a2.14 2.14 0 0 0-.5-.02c-.5.03-1-.06-1.5-.12-.14-.02-.3-.04-.41-.12-.25-.18-.54-.22-.81-.31-1.1-.38-2.21-.73-3.3-1.13-1.2-.41-2.12-1.32-3-2.18zm11.78-7.74c-.04.06-.09.1-.1.16-.2.82-.91 1.2-1.63 1.5-1.55.59-3.38.72-4.92 0l-.52-.22-.32.24a13.49 13.49 0 0 0-.11 6.23c.14.1.25.2.38.27 1.94.96 4.1 1.24 6.23 1.4 2.68.14 5.45-.18 7.95-1.23.27-.11.53-.22.73-.43.42-1.3.38-4.88-.1-6.26l-.4-.25c-.8.39-1.57.73-2.47.72a6.76 6.76 0 0 1-3.45-.68c-.6-.27-1.04-.69-1.2-1.36 0-.03-.04-.05-.07-.09zm6.43-3.17c-.43-.4-.58-.5-1.18-.72-.74-.27-1.5-.46-2.29-.58-.66-.1-1.38.05-1.52.8-.03.13-.03.25-.04.38v1.37c.06 1.22.35 1.67 1.54 2.03.88.23 2.06.42 2.94.2.6-.35.73-1.27.73-1.9-.01-.54.05-1.09-.18-1.58zm-12.24 3.52c1.21.13 2.47 0 3.58-.53.35-.18.58-.47.69-.84.06-.2.1-.4.11-.61.02-.6.03-1.2.01-1.8-.05-1.06-1.07-1.06-1.87-.9-.55.11-1.1.27-1.63.41-.39.1-.74.29-1.08.5a1 1 0 0 0-.5.8c-.07.93-.2 2.35.69 2.97zM4.11 884.96c-.1-1.31-.04-2.58.02-3.82.38-.6.8-1.1 1.27-1.59.21-.23.47-.4.77-.52l.47-.2c.17-.6.42-1.17.66-1.74.08-.18.08-.4.1-.6.07-.5.1-1 .18-1.5.4-2.1 2.72-2.9 4.6-3.26.36-.07.72-.16 1.08-.26.87-.25 1.75-.37 2.65-.45.28-.02.57.05.86.07.86.08 1.69.26 2.5.53.3.1.6.16.91.23 1.75.36 3.76 1.31 4.07 3.27.07.38.11.78.16 1.16l1.07 2.55c.05.03.18.1.31.15.43.15.78.4 1.07.74l.9 1.11c.14.17.22.36.23.58.05 1.16.07 2.33 0 3.52-.52.57-1.06 1.16-1.73 1.58-2.73 1.72-5.78 3-9.02 3.26-4.06.34-8-1.1-11.38-3.25-.67-.4-1.19-.98-1.75-1.56zm19.33-5.47c-.1.03-.16.03-.21.07-1.66 1.09-4.1 1.1-5.88.31-.68-.3-1.2-.73-1.37-1.5 0-.03-.04-.05-.07-.08l-.05.03-.1.23c-.14.51-.47.87-.93 1.12a6.39 6.39 0 0 1-4.05.67c-.77-.1-1.51-.29-2.16-.74-.05-.04-.12-.04-.17-.05-.57 1.45-.62 4.6-.09 6.4 1.82 1.27 4.1 1.7 6.27 1.91 2.82.3 6.62-.32 8.97-1.96.45-2.01.34-4.08 0-6.1-.02-.1-.1-.2-.16-.31zm-6.13-3.83h-.04c.12 1.4-.1 2.44 1.54 2.87.77.22 1.56.27 2.35.22.97-.04 1.2-.98 1.33-1.77.1-.58.02-1.16 0-1.74a.94.94 0 0 0-.56-.84c-.33-.17-.67-.35-1.02-.45-.58-.16-1.17-.3-1.76-.4-.83-.14-1.7.04-1.8.93-.06.4-.05.79-.04 1.18zm-2.83.1c0-.4.01-.8-.01-1.2-.07-.82-.82-1.03-1.54-.96-.75.06-1.47.25-2.19.47-.29.1-.57.25-.84.4a.91.91 0 0 0-.51.8c-.02.48-.05.96-.04 1.44.02.89.36 2.07 1.44 2.06 1 .02 2.02-.06 2.9-.54.37-.2.6-.51.68-.93.05-.22.1-.45.1-.67.02-.3.01-.59.01-.88zM24.41 363.14l1.07 2.56c.05.02.17.1.3.14.41.14.75.38 1.03.7l.95 1.16c.14.16.22.35.22.57a36.4 36.4 0 0 1 .01 3.52 8.23 8.23 0 0 1-1.74 1.58c-3.58 2.29-7.83 3.75-12.12 3.18a19.95 19.95 0 0 1-7.9-2.93 8.62 8.62 0 0 1-2.1-1.8c-.14-1.25-.05-2.52 0-3.81.4-.61.85-1.21 1.41-1.72.2-.17.45-.29.69-.42.12-.07.26-.11.37-.16.24-.58.45-1.14.69-1.7.1-.21.1-.43.12-.66.05-.5.1-1 .18-1.49.2-1.22 1.22-2.12 2.31-2.6.33-.13.66-.27 1-.35 1.2-.3 2.42-.58 3.64-.85.4-.09.83-.12 1.24-.17.12-.01.25-.02.37 0 .91.1 1.82.2 2.7.46.48.14.97.27 1.45.39 1.73.38 3.7 1.36 3.96 3.3l.15 1.1zm-.97 3.2c-.42.17-.77.42-1.19.57-1.55.49-3.1.53-4.65-.07-.81-.32-1.47-.78-1.65-1.7-.15.06-.15.17-.18.27-.15.5-.48.87-.93 1.12a6.34 6.34 0 0 1-4 .68c-.78-.1-1.54-.3-2.22-.75-.04-.03-.11-.03-.17-.04-.57 1.36-.61 4.79-.08 6.36.24.25.55.42.87.57a14.9 14.9 0 0 0 5.16 1.35 15.21 15.21 0 0 0 8.49-1.49c.26-.13.52-.26.73-.54.27-1.26.3-2.59.24-3.87-.03-.7-.1-1.42-.26-2.1-.02-.12-.1-.23-.16-.36zm-6.13-3.8h-.04c.04.47.06.95.11 1.43.07.6.41 1.02.98 1.26.89.37 1.86.44 2.82.39.95-.06 1.15-.95 1.3-1.73.12-.6.05-1.2 0-1.8a.98.98 0 0 0-.54-.85c-.37-.2-.75-.37-1.16-.47a29.3 29.3 0 0 0-1.64-.35 3.05 3.05 0 0 0-.8-.03c-1.17.14-1.04 1.26-1.03 2.15zm-2.82.02h-.01v-1.06c-.03-.8-.74-1.14-1.47-1.06-.7.13-1.4.26-2.08.44-.35.09-.7.26-1.03.44a.95.95 0 0 0-.52.8c-.09.9-.1 1.85.24 2.7.2.52.6.79 1.15.8.98.05 1.97-.06 2.86-.49.4-.19.65-.52.74-.95a6.5 6.5 0 0 0 .12-1.62zM11.36 568.3c-1.32-.48-2.67-.88-4-1.36a7.82 7.82 0 0 1-3.24-2.33c-.12-1.26-.06-2.55.02-3.83.53-.72 1.2-1.76 2.03-2.1l.37-.17c.2-.77.52-1.51.92-2.17-.02-1.35-.06-2.65.95-3.68 1.33-1.32 3.26-1.8 5.08-2 .5-.03.94.06 1.44.18a5.48 5.48 0 0 1 2.04-.01 4.69 4.69 0 0 1 2.52 0c1.41.3 2.86.77 3.9 1.83.93.9.9 2.04 1.02 3.29.39.75.9 1.57 1.09 2.47.07.07.1.12.13.13.97.31 1.53 1.18 2.13 1.94.15.19.22.4.23.64.04 1.14.07 2.29 0 3.44a7.27 7.27 0 0 1-3 2.26c-1.27.47-2.57.87-3.86 1.28-.43.14-.86.32-1.32.35-.12 0-.25.04-.37.04-.92-.04-1.83.14-2.74.18-1.02.05-2.04.02-3.05-.14-.45-.06-.92-.01-1.37-.05-.31-.03-.62-.09-.93-.14l.01-.04zm-3.04-3.45c.25.24.53.37.82.5 2.12.9 4.44 1.1 6.71 1.23 2.4-.05 4.86-.34 7.07-1.31.25-.11.49-.23.67-.4.51-1.58.28-5.4-.08-6.22-.12-.13-.25-.27-.45-.27l-.93.39c-.23.09-.47.19-.71.22a6.97 6.97 0 0 1-4.31-.62 2.02 2.02 0 0 1-1.1-1.21c-.02-.06 0-.18-.1-.17-.05.04-.1.06-.1.1-.3 1.2-1.7 1.58-2.75 1.85-1.46.34-2.9.16-4.24-.53h-.14l-.21.16c-.54 1.23-.65 4.7-.15 6.28zm8.98-10.52h-.02l.08 1.24c.06.68.44 1.11 1.06 1.34.95.35 1.93.48 2.94.44.4-.02.67-.2.84-.55.17-.34.28-.7.3-1.08l-.02-1.43a.94.94 0 0 0-.47-.83 6.95 6.95 0 0 0-2.28-.81c-.34-.09-.7-.14-1.05-.18-.83-.1-1.4.3-1.38 1.17v.69zm-2.83.1h.02v-.88c.01-.85-.84-1.14-1.53-1-.69.15-1.38.3-2.06.5-.35.1-.68.3-1.01.47a.88.88 0 0 0-.5.75 6.9 6.9 0 0 0 0 1.62c.04.28.12.57.22.84.16.4.46.62.92.62.92.02 1.82-.1 2.7-.38 1.28-.41 1.28-1.39 1.24-2.54zM4.11 52.98c-.1-1.3-.05-2.57.02-3.85.6-.77 1.2-1.77 2.15-2.12l.36-.15c.17-.62.43-1.21.68-1.8.08-.17.08-.37.09-.55.03-.52.06-1.04.18-1.55.35-1.67 1.94-2.55 3.47-2.95 1.28-.3 2.54-.63 3.84-.85a9.45 9.45 0 0 1 4.36.48c.3.1.61.13.91.22.54.15 1.08.31 1.6.5 1.22.47 2.3 1.48 2.5 2.82l.16 1.2c.33.75.75 1.57 1 2.46.1.05.19.1.28.13.94.28 1.44 1.17 2.04 1.87.15.18.24.39.24.63v3.37l-.04.17a8.85 8.85 0 0 1-1.94 1.68c-2.7 1.63-5.7 2.86-8.88 3.08-4.01.31-7.92-1.1-11.27-3.22a8.83 8.83 0 0 1-1.75-1.57zm11.76-6.7c-.04.1-.08.19-.1.28-.19.68-.79 1.07-1.4 1.33a6.5 6.5 0 0 1-5.76-.3c-.04-.03-.11-.02-.17-.03-.52 1.14-.64 4.84-.07 6.41 2.23 1.51 5.36 1.95 8.01 1.96 2.5-.13 5.14-.58 7.23-2.04.44-2 .32-4.03 0-6.03-.02-.14-.04-.3-.21-.35-.04 0-.1 0-.12.02-.69.48-1.46.7-2.27.8-1.68.26-4.6-.11-5.14-2.05zm6.69-2.11c-.12-1.11.12-1.49-1.08-2.01a9.47 9.47 0 0 0-2.71-.65c-.83-.08-1.46.29-1.46 1.35 0 .52-.02 1.04 0 1.56.05 1.12.26 1.7 1.4 2.07.8.24 1.63.32 2.46.26.64-.03 1.02-.54 1.2-1.11.16-.46.15-.94.19-1.47zm-8.07-.47h-.01c0-.37.01-.75 0-1.12a1.04 1.04 0 0 0-.92-.97 7.68 7.68 0 0 0-3.7.88.87.87 0 0 0-.47.7 7.38 7.38 0 0 0 0 2c.14.75.42 1.54 1.32 1.56.93.04 1.88-.04 2.75-.4.51-.22.84-.6.94-1.16.1-.49.1-.99.09-1.49zM4.1 916.9c-.1-1.23-.03-2.5.03-3.77.39-.58.8-1.13 1.3-1.6.2-.2.47-.34.72-.49.14-.08.3-.13.48-.2.17-.64.46-1.24.71-1.85.06-.15.05-.33.07-.5.05-.49.09-.99.16-1.48.41-2.29 2.99-3.05 4.98-3.4.25-.03.5-.07.73-.14.85-.25 1.71-.38 2.58-.44.45-.03.92.05 1.37.11.62.09 1.23.22 1.82.4.26.09.53.14.8.2 1.85.36 4.09 1.26 4.4 3.37.07.39.11.78.17 1.24.34.75.76 1.55 1 2.45.11.05.24.13.37.18.88.3 1.36 1.13 1.94 1.8.16.2.25.42.26.68.05 1.15.06 2.29.01 3.46a8.32 8.32 0 0 1-2.38 1.97c-3.19 1.82-6.8 3.09-10.52 2.84-3.28-.21-6.39-1.47-9.18-3.16a7.61 7.61 0 0 1-1.81-1.67zm4.23.96c1.18.9 2.8 1.38 4.26 1.65 2.54.51 5.16.47 7.67-.2.85-.2 2.87-.9 3.38-1.56.39-1.98.3-4.02-.04-6-.02-.15-.08-.28-.24-.31-.36.18-.7.4-1.07.53a6.77 6.77 0 0 1-3.44.29c-1.1-.25-2.48-.61-2.84-1.83-.02-.07 0-.17-.14-.18l-.1.2c-.2.8-.93 1.2-1.65 1.48-1.7.66-3.84.58-5.42-.35-.06-.04-.15-.06-.24-.09-.32.66-.34 1.35-.4 2.02-.13 1.44-.12 2.87.27 4.35zm8.98-10.3h-.04c.04.5.05 1 .12 1.5.07.55.37.96.89 1.19.76.35 1.6.43 2.43.46.66.02 1.3-.15 1.53-.83.11-.3.2-.63.25-.96.1-.56.02-1.12 0-1.68a1 1 0 0 0-.57-.9c-.31-.16-.63-.33-.97-.43a7.82 7.82 0 0 0-2.7-.42.93.93 0 0 0-.8.6c-.2.46-.14.98-.14 1.47zm-2.83.08v-1c-.04-1.02-.93-1.23-1.8-1.07-.52.1-1.05.21-1.58.34-.43.1-.82.29-1.2.51-.31.18-.5.45-.52.8-.03.92-.15 1.86.25 2.72.21.51.7.77 1.24.77.92 0 1.85-.1 2.69-.48.44-.21.72-.56.82-1.04.12-.5.12-1.03.1-1.55zM24.43 12.36c.35.77.76 1.56 1 2.45.09.05.18.1.27.13.94.29 1.45 1.16 2.04 1.86.14.17.23.35.24.57.06 1.18.07 2.37.02 3.56-.56.6-1.11 1.2-1.82 1.63-3.27 1.98-7.04 3.4-10.92 3.18-3.33-.18-6.48-1.44-9.3-3.16a8.06 8.06 0 0 1-1.85-1.65c-.11-1.23-.04-2.5.01-3.8.41-.59.84-1.17 1.38-1.67.2-.18.44-.3.68-.43.14-.08.3-.14.41-.18.24-.6.46-1.16.7-1.72.1-.21.1-.43.13-.66.03-.5.08-1 .16-1.49.42-2.26 2.97-3 4.94-3.36.28-.05.57-.1.85-.18a13.7 13.7 0 0 1 2.52-.41c.29-.03.58.04.87.06 1.07.07 2.08.42 3.11.65 1.84.36 4.05 1.26 4.38 3.34.07.39.11.78.18 1.28zm-1 3.04c-.43.22-.76.45-1.13.56a6.8 6.8 0 0 1-3.44.3c-1.13-.25-2.54-.62-2.87-1.88 0-.05-.04-.1-.07-.14-.03.02-.06.02-.07.04-.03.05-.06.1-.07.17-.2.82-.97 1.22-1.7 1.5a6.54 6.54 0 0 1-5.27-.3c-.1-.07-.2-.16-.37-.12-.31.63-.33 1.35-.39 2.04-.12 1.43-.11 2.87.28 4.27 1.72 1.46 5.5 2 7.72 2.03 2.14 0 5.96-.64 7.57-2.09.41-1.94.33-4 0-5.96-.03-.14-.11-.26-.18-.42zm-6.13-3.84h-.03c.04.47.05.95.1 1.43.07.6.39 1.05.96 1.28.92.38 1.89.5 2.87.41.98-.07 1.15-1.02 1.3-1.81.1-.54 0-1.08 0-1.62a.98.98 0 0 0-.57-.9 7.82 7.82 0 0 0-3.6-.86c-.54.03-.88.36-.98.88-.07.4-.04.8-.05 1.19zm-2.82.13c0-.36.02-.71 0-1.07-.04-.97-.9-1.21-1.75-1.06-.57.1-1.14.23-1.7.37-.41.1-.79.29-1.15.5a.96.96 0 0 0-.5.82c-.06 1.13-.25 3.23 1.26 3.44.8.07 1.59-.05 2.35-.24.18-.05.36-.12.53-.2 1.02-.43.98-1.62.96-2.56zM24.41 459.04c.41.77.9 1.6 1.12 2.54l.36.16c.33.14.63.34.86.6.35.42.7.84 1.03 1.26.14.17.2.37.2.58.06 1.14.07 2.29.02 3.4a7.88 7.88 0 0 1-1.79 1.68c-.68.45-1.43.77-2.2 1.01-1.06.33-2.1.7-3.15 1.01-.72.21-1.42.32-2.15.3-.2 0-.42.02-.62.05-1.45.2-2.9.2-4.36.01-.23-.03-.46-.04-.68-.05l-1.37-.1a1.02 1.02 0 0 1-.36-.08c-.83-.41-1.73-.59-2.59-.91-.5-.2-1.02-.35-1.53-.55a7.88 7.88 0 0 1-3.08-2.28c-.12-1.27-.05-2.54.02-3.8.37-.57.78-1.1 1.25-1.57.22-.23.47-.4.76-.54l.4-.2c.2-.77.52-1.48.9-2.12-.01-1.39-.03-2.76 1.05-3.77 1.29-1.21 3.1-1.68 4.8-1.89.31-.03.64-.04.93.03.77.2 1.53-.08 2.3.03.33.05.66.04 1-.03 1.22-.24 3.46.42 4.57 1 1.07.55 2.02 1.48 2.16 2.72.07.48.1.95.15 1.5zm-16.1 8.92c.52.57 2.54 1.13 3.34 1.28 1.74.29 3.5.58 5.27.45 2.03-.16 4.08-.44 5.95-1.28.27-.12.54-.23.77-.5.37-2.01.32-4.06-.09-6.13l-.42-.3c-.6.28-1.15.52-1.79.65-1.58.33-5-.13-5.39-2.03l-.07.03c-.03.03-.07.06-.08.1-.16.66-.63 1.04-1.21 1.33-1.7.8-3.71.97-5.44.13-.14-.07-.3-.12-.43-.18-.18.07-.28.17-.32.32-.06.2-.12.4-.16.6-.33 1.82-.36 3.71.07 5.53zm9-10.51h-.04l.1 1.36c.07.57.4.95.9 1.18.2.1.39.17.59.22.76.2 1.54.31 2.34.28.62-.02.9-.22 1.1-.81.28-.71.18-1.48.18-2.22 0-.46-.23-.78-.64-.98a8.84 8.84 0 0 0-3.47-.91c-1.13.08-1.1.98-1.06 1.88zm-7.77-.52c-.04.12-.11.26-.13.4-.1.88-.12 1.8.26 2.63.14.32.4.5.78.52.94.04 1.86-.07 2.76-.36.79-.25 1.22-.77 1.26-1.6.02-.63.03-1.28 0-1.92-.03-.94-.95-1.06-1.7-.91a22 22 0 0 0-1.87.47c-.5.16-.97.37-1.36.76zM11.3 600.95c-1.33-.57-2.74-.94-4.1-1.45a7.95 7.95 0 0 1-3.03-2.21c-.15-.73-.15-2.7-.01-3.94.5-.67 1.17-1.7 1.99-2.05.13-.05.26-.12.38-.19.14-.38.26-.76.42-1.12.15-.36.34-.7.5-1.05-.01-.7 0-1.38.14-2.06a3 3 0 0 1 .98-1.7c1.2-1.1 2.83-1.53 4.4-1.78a4.05 4.05 0 0 1 1.73.08 6.8 6.8 0 0 1 2.37-.06c.1.02.2 0 .3 0 .6-.1 1.2-.07 1.8.03 2.06.38 4.73 1.26 5.09 3.64.07.47.1.95.16 1.5.39.76.88 1.57 1.06 2.43.08.08.11.12.15.13.95.32 1.5 1.15 2.1 1.9.16.2.25.42.26.68.05 1.15.07 2.3 0 3.41a7.68 7.68 0 0 1-3.76 2.6c-1.09.34-2.15.79-3.26 1.05-.7.32-1.45.36-2.2.34-.2 0-.38 0-.57.03-1.97.33-3.94.04-5.91-.04-.31 0-.62-.08-.93-.12a5.9 5.9 0 0 1-.05-.05zm-2.95-3.31c.18.1.38.25.61.35 1.6.73 3.33 1.08 5.07 1.24.87.09 1.74.17 2.61.11 2.36-.17 4.86-.46 6.92-1.7.5-1.26.38-5.2-.07-6.32l-.32-.23c-.1.04-.18.06-.25.1-.73.38-1.5.6-2.32.65-1.29.1-2.48-.2-3.61-.77a1.86 1.86 0 0 1-.99-1.16c-.01-.06.02-.18-.15-.15-.26.87-.7 1.16-1.49 1.53-1.46.64-3.16.8-4.68.24l-1-.4-.22.14c-.55 1.24-.64 4.88-.1 6.37zm13.3-7.56c.44-.3.48-.33.62-.7.32-.79.28-1.65.2-2.47a.9.9 0 0 0-.48-.75 9 9 0 0 0-3.2-.98c-.68-.1-1.35.14-1.46.89-.02.1-.02.2-.03.31v1.44c.04.6.11 1.32.7 1.65.95.59 2.52.74 3.65.61zm-11.43.01c.94.1 1.9-.01 2.85-.28.6-.17 1.2-.54 1.32-1.2.03-.17.08-.36.08-.54.02-.6.03-1.21.01-1.81-.02-1.01-.98-1.12-1.78-.96-.96.21-1.92.4-2.78.89a.9.9 0 0 0-.53.8c-.02.35-.04.7-.04 1.05.02.7.12 1.75.87 2.05zM25.51 429.55c.79.24 1.3.75 1.75 1.33.8 1.03.72.73.76 2.09.02.87.03 1.75-.02 2.6a7.52 7.52 0 0 1-3.48 2.49c-1.18.39-2.34.86-3.55 1.17-.64.3-1.33.3-2.01.36-2 .24-4 .2-5.99.01l-.99-.08c-.33-.03-.66-.05-.94-.28-1.27-.45-2.57-.86-3.83-1.32a6.18 6.18 0 0 1-1.78-1.02c-.45-.37-.86-.79-1.3-1.19-.14-1.3-.05-2.59 0-3.87.4-.6.83-1.17 1.34-1.66.2-.18.44-.3.67-.45.12-.07.26-.12.36-.16l.98-2.31c-.04-1.42-.03-2.65 1.15-3.68 1.19-1.1 3.8-1.85 5.42-1.73.46.06.91.02 1.36-.05.42-.06.83-.06 1.25 0 .37.06.74.08 1.12.05.56-.04 1.12 0 1.67.13 1.35.28 2.75.7 3.78 1.66 1.06.92 1.06 2.06 1.2 3.4.39.74.84 1.56 1.08 2.51zm-9.6-1.36c-.04.07-.09.12-.1.17-.18.72-.68 1.13-1.32 1.4a6.44 6.44 0 0 1-5.85-.16c-.1.1-.2.19-.24.3-.5 1.62-.58 4.58-.05 6.21.17.11.37.26.6.36.41.2.84.37 1.27.51 3 .95 6.22 1.13 9.31.55 1.07-.18 2.1-.5 3.1-.91.35-.14.7-.3.95-.53.46-1.34.38-5.03-.1-6.3-.07-.06-.17-.14-.28-.21a6.48 6.48 0 0 1-6.17.04c-.68-.34-.84-.73-1.12-1.43zm5.72.41c.37-.17.56-.44.66-.76.09-.26.17-.52.19-.79.02-.53 0-1.08 0-1.62a.9.9 0 0 0-.47-.76c-.24-.15-.5-.3-.77-.4a9.54 9.54 0 0 0-1.98-.53c-.85-.18-1.85-.17-1.94.91-.04.75-.06 1.5.04 2.24.08.64.42 1.07 1 1.32.12.04.23.1.35.13a7.4 7.4 0 0 0 2.92.26zm-11.43 0a6.5 6.5 0 0 0 3.47-.52c.37-.2.6-.5.7-.9.04-.17.1-.33.1-.5.01-.66.03-1.33 0-1.99-.04-.98-1-1.03-1.77-.9-.96.17-1.92.4-2.78.88a.92.92 0 0 0-.53.86c0 .52-.03 1.04 0 1.55.02.29.12.57.2.85.1.28.28.51.61.67zM4.15 629.66c-.13-.79-.13-2.63 0-3.9.39-.54.82-1.13 1.35-1.63.29-.28.65-.44 1.04-.59.23-.32.24-.74.42-1.1.17-.34.33-.7.49-1.05-.07-1.27.06-2.65 1.02-3.56 1.24-1.25 3.65-1.85 5.37-1.85.17 0 .34-.03.5-.06a8.43 8.43 0 0 1 3.35-.01c.2.04.41.06.62.07 1.64.11 3.61.6 4.87 1.7 1.06.91 1.1 1.99 1.24 3.33.35.75.82 1.56 1.04 2.45.09.05.14.1.2.12.97.3 1.52 1.2 2.12 1.95.12.15.2.32.2.51.06 1.19.07 2.37.02 3.56a8.18 8.18 0 0 1-3.37 2.42c-1.78.64-3.53 1.4-5.4 1.72-1.49.27-2.98.4-4.48.25-1.04-.1-2.07-.29-3.1-.44a1.2 1.2 0 0 1-.57-.2c-.12-.1-.27-.12-.4-.17-1.22-.44-2.44-.85-3.64-1.34a8.15 8.15 0 0 1-2.9-2.18zm4.16.58c1.8 1.52 6.38 2.04 8.72 1.88 2.03-.16 4.08-.51 5.9-1.44.25-.12.49-.24.67-.47.08-.2.12-.44.15-.66.22-1.6.16-3.2-.04-4.79a4.9 4.9 0 0 0-.12-.61c-.05-.17-.14-.3-.34-.34a6.57 6.57 0 0 1-6 .21c-.63-.29-1.11-.72-1.27-1.43-.01-.03-.05-.05-.08-.07l-.05.04-.06.1c-.25 1.3-2.28 1.86-3.42 1.96a6.15 6.15 0 0 1-3.57-.69c-.09-.04-.17-.11-.28-.06-.24.4-.3.59-.4 1.54-.2 1.63-.2 3.24.19 4.83zm14.21-9.8-.04-.86a.93.93 0 0 0-.52-.8c-.28-.14-.55-.3-.85-.4a27.5 27.5 0 0 0-1.93-.48c-.26-.05-.54-.04-.8-.04-.65.01-1.08.53-1.07 1.15v1.75c0 .2.04.41.08.62.1.45.33.81.74 1.02.26.13.53.26.81.31.55.11 1.11.18 1.67.25.22.02.45 0 .68-.02.44-.04.73-.28.92-.66.07-.15.12-.31.17-.47.14-.42.13-.86.14-1.38zm-8.04-.51c0-.34.02-.67 0-1-.04-.85-.84-1.11-1.57-.99-.67.13-1.34.28-2 .46-.32.08-.62.24-.92.39-.38.19-.6.5-.61.94-.06 1.05-.2 3.15 1.26 3.23.19 0 .38.02.56 0 .82-.12 1.68-.14 2.43-.54.94-.43.86-1.62.85-2.5zM24.42 395.09c.18.35.4.76.58 1.18.18.42.32.85.49 1.28.07.04.14.1.22.12.93.3 1.45 1.15 2.03 1.87.15.18.24.4.25.63.05 1.16.07 2.33 0 3.52-.55.56-1.08 1.14-1.76 1.56-.53.34-1.07.64-1.66.85-2.14.79-4.28 1.69-6.58 1.9-2.13.32-4.28 0-6.39-.38a1.13 1.13 0 0 1-.24-.07c-1.32-.56-2.7-.97-4.02-1.52a7.62 7.62 0 0 1-2.28-1.4c-.32-.29-.62-.6-.93-.9-.13-1.32-.05-2.6 0-3.91.67-.77 1.2-1.79 2.22-2.14.07-.02.14-.07.24-.12.12-.34.23-.7.37-1.04.14-.34.32-.68.46-1 .02-1.78.1-3.11 1.73-4.17a9.44 9.44 0 0 1 4.57-1.31c.3-.01.62-.06.93-.1.41-.05.82-.14 1.24-.15 1 .02 2.03.2 3.03.31 2.13.3 4.98 1.18 5.34 3.63.07.4.1.82.16 1.36zm-.8 9.21c.31-1.44.32-2.9.2-4.36-.04-.56-.14-1.12-.23-1.67-.03-.2-.12-.35-.35-.38l-.78.38a6.53 6.53 0 0 1-5.5-.32c-.55-.27-.84-.76-1.02-1.34l-.06.02c-.03.03-.07.06-.08.1-.15.66-.6 1.08-1.2 1.34a6.51 6.51 0 0 1-6.04-.16c-.22.3-.23.35-.31.75a14.5 14.5 0 0 0-.22 3.85c.04.62.1 1.24.3 1.84 1.95 1.4 4.77 1.7 7.1 1.87 2.23.13 6.43-.51 8.19-1.92zm-6.34-10.23c.1 1.38-.04 2.3 1.6 2.72.78.2 1.56.25 2.36.23.82-.02 1.07-.76 1.21-1.44a7.3 7.3 0 0 0 .02-2 .83.83 0 0 0-.4-.66 7.58 7.58 0 0 0-2.77-.91c-.17-.04-.33-.07-.5-.08-.67-.05-1.37.14-1.46.91-.04.37-.04.75-.06 1.23zm-7.01 2.9c.62.1 1.28.07 1.94-.04.88-.13 1.99-.42 2.18-1.43.04-.16.08-.33.08-.5.01-.66.03-1.32 0-1.99-.05-1.03-1.03-1.1-1.85-.95-.94.19-1.9.35-2.73.84a.94.94 0 0 0-.5.8c-.02.4-.05.8-.05 1.2.03.76.13 1.7.93 2.08z"}),l=(0,n.jsx)("path",{d:"M14.43 245.69c-.27-.04-.54-.1-.8-.1-.25 0-.5.04-.76.06-.03-.08-.07-.15-.07-.23-.02-.62-.04-1.24-.04-1.86-.04-.9 1.17-1.25 1.6-.45.07.15.12.32.12.48.02.64.02 1.28.02 1.92 0 .06-.05.12-.07.18zM18.92 245.6a2.71 2.71 0 0 0-1.6.18c-.02-.1-.06-.18-.06-.25l-.01-1.94c0-.21.04-.41.16-.59.37-.57 1.27-.49 1.5.17.04.12.07.24.07.37v1.86c0 .06-.04.12-.06.2zM18.9 277.3a2.35 2.35 0 0 0-1.55.14c-.04-.06-.08-.1-.08-.12-.01-.73-.03-1.46-.01-2.18 0-.36.18-.63.52-.78.65-.28 1.2.22 1.2.89v1.74c0 .08-.04.16-.08.3zM14.43 277.36c-.35-.08-.7-.12-1.05-.1-.16 0-.32.04-.51.07-.04-.13-.08-.25-.08-.36l-.04-1.68c0-.47.27-.93.78-.95.55-.07.94.4.95.91.02.64.02 1.28.02 1.93 0 .05-.05.1-.07.18zM18.9 213.7a2.78 2.78 0 0 0-1.6.19c-.02-.16-.05-.28-.05-.4 0-.66-.02-1.33.01-2 .15-.96 1.47-1.04 1.7-.07.05.75.08 1.5-.03 2.24l-.04.04zM14.45 213.8c-.3-.04-.56-.1-.83-.11-.24 0-.49.05-.75.08-.03-.08-.07-.16-.08-.23l-.03-1.87c0-.33.13-.6.42-.78.41-.25.95-.1 1.18.33.05.1.09.23.11.35.04.2.03 1.86-.02 2.23zM17.28 308.83c-.06-.71-.02-1.4-.03-2.12 0-.18.01-.37.1-.54.31-.66 1.34-.61 1.56.1.04.1.07.23.07.36v1.86c0 .06-.04.11-.06.18-.28 0-.57-.03-.85-.02-.26 0-.49.22-.79.18zM14.43 308.77c-.51-.07-1-.24-1.51.04-.06-.14-.12-.23-.12-.32-.02-.62-.04-1.24-.04-1.86.01-.47.35-.9.85-.89.52-.02.86.44.87.93.02.64.01 1.29.01 1.93 0 .04-.02.07-.06.17zM18.93 181.6a2.95 2.95 0 0 0-1.63.2c-.02-.14-.05-.24-.05-.34v-1.8c0-.16.02-.33.07-.48.28-.76 1.36-.73 1.6.04.04.12.06.25.06.37v1.8c0 .06-.03.12-.05.21zM14.44 181.7c-.3-.04-.56-.1-.82-.1-.25 0-.5.04-.75.07-.03-.09-.07-.16-.08-.24l-.03-1.87c-.03-.9 1.19-1.24 1.6-.43.07.14.12.31.12.47.02.65.01 1.29.02 1.93 0 .04-.03.08-.06.17zM18.99 724.6c0 .48.06.98-.12 1.42a.85.85 0 0 1-1.62-.41v-1.93c0-.1 0-.21.03-.31.19-.84 1.4-.9 1.64-.06.11.42.06.87.07 1.3zM14.5 724.65v.8c.05.55-.17 1.05-.74 1.1-.63.04-.97-.46-.97-1.04l-.03-1.8c0-.16.03-.33.1-.48.26-.65 1.26-.65 1.52 0 .07.16.1.33.1.49.02.3 0 .62 0 .93h.03zM17.49 146.83c.58.13 1.05.47 1.52.79.05.54.06 1.05-.01 1.58-.3.1-.6 0-.88.04l-.84.11c-.03-.06-.07-.1-.07-.13l-.02-1.8c0-.2.05-.42.3-.6zM12.74 149.2c-.03-.5-.1-1.02-.03-1.52.6-.35 1.19-.53 1.72-.54.14.13.12.3.13.46.07.9.05 1.37-.06 1.76l-.6-.07c-.19 0-.37 0-.56-.02-.2-.01-.4.1-.6-.06zM14.5 756.57v1c-.02.94-1.34 1.1-1.64.2a1.33 1.33 0 0 1-.06-.36l-.05-1.92c-.02-.5.38-.95.88-.93.36 0 .68.23.79.59.05.15.06.32.07.49v.93h.02zM18.99 756.45c0 .45.05.92-.1 1.35-.34.8-1.53.67-1.63-.22-.02-.69 0-1.37-.01-2.06-.04-.53.36-1.06.92-1.01.33.03.6.2.71.52.16.45.1.95.11 1.42zM17.25 788.1v-.94c.01-.16.04-.33.11-.48.27-.65 1.3-.6 1.53.05.06.15.1.32.1.49v1.8c0 .58-.41 1.07-1.01 1-.4-.04-.7-.35-.72-.8-.02-.38 0-.75 0-1.13h-.01zM14.5 788.24c0 .35.03.7 0 1.06-.06.96-1.4 1.03-1.65.14a1.62 1.62 0 0 1-.06-.37l-.04-1.86c-.02-.49.37-.96.86-.96.37 0 .71.24.82.63.04.14.05.29.06.43v.93h.01zM17.6 694.32a.9.9 0 0 1-.35-.73v-2c0-.08 0-.16.03-.24.2-.86 1.37-.92 1.64-.07.04.13.06.28.07.43v1.74c0 .3-.07.58-.32.8-.35.11-.72.05-1.08.07zM14.17 694.35h-.99c-.35-.16-.38-.65-.4-1l-.03-1.56c-.02-.56.26-1.06.87-1.07.37 0 .68.22.8.58.04.12.06.24.06.37.02.66.02 1.33.03 2a.8.8 0 0 1-.34.68zM18.93 339.96c-.81-.08-.85-.08-1.61.16-.03-.1-.06-.15-.06-.2l-.01-2.06c-.01-.45.34-.86.78-.89.58-.05.95.43.95.98v1.8c0 .06-.03.12-.05.21zM14.43 340.03c-.5-.05-1-.2-1.48 0-.15-.06-.16-.17-.16-.27l-.04-1.81a.9.9 0 0 1 .4-.8c.6-.4 1.32.06 1.33.75.02.66.01 1.33.02 2 0 .03-.04.07-.07.13zM14.5 819.9c0 .37.03.75 0 1.12-.15.88-1.33.96-1.63.14a1.56 1.56 0 0 1-.08-.43c-.02-.62-.03-1.25-.03-1.87 0-.51.31-.94.85-.96.35-.02.69.22.8.58.13.45.07.95.08 1.42h.02zM17.25 819.78v-.94c0-.16.03-.33.1-.48a.78.78 0 0 1 .79-.5c.6.02.85.55.85 1.1v1.62c0 .16-.03.33-.07.49-.26.88-1.59.8-1.66-.17-.02-.37 0-.75 0-1.12h-.01zM12.32 116.81l-.05-.24c.05-.03.08-.07.12-.08l2.4-.09c.08 0 .16.03.28.05l-.02.28c-.46.12-1.97.17-2.73.08zM19.39 116.37l-.05.27c-.08.03-.14.08-.2.08-.72.05-1.45.05-2.2.03l-.14-.32c.46-.12 2.11-.16 2.59-.06zM17.25 851.5v-.94c0-.12 0-.25.04-.37.2-.78 1.33-.83 1.6-.08.06.15.1.32.1.48v1.75c0 .57-.35 1.1-.97 1.05a.82.82 0 0 1-.76-.77c-.03-.38 0-.75 0-1.13h-.01zM14.5 851.58c0 .39.03.79-.01 1.18a.8.8 0 0 1-.73.66c-.65.04-.96-.43-.97-1.03l-.03-1.8c0-.16.03-.34.1-.48.27-.68 1.32-.66 1.55.05.13.45.07.94.08 1.42h.02zM18.9 661.47l-1.54.07c-.07-.02-.1-.13-.1-.26v-2.12a1 1 0 0 1 .07-.36c.25-.7 1.28-.7 1.55 0 .06.12.1.27.1.41v2c0 .07-.04.15-.07.26zM14.45 661.51c-.58 0-.99 0-1.56.04-.03-.12-.09-.23-.1-.35l-.03-1.92c0-.53.35-.98.92-.95.48 0 .8.46.8.93.02.68.02 1.36.02 2.05 0 .06-.03.11-.05.2zM12.26 84.16c.13-.02.23-.05.33-.05l2.35-.07c.04 0 .07.04.14.08l-.05.25c-.51.12-2.1.16-2.7.07l-.07-.28zM16.9 84.35l-.1-.25c.05-.04.07-.09.1-.1a.97.97 0 0 1 .24-.03l1.94-.03c.1 0 .2.03.33.06l-.08.3c-.47.1-1.73.13-2.43.05zM18.93 530.42c-.72-.1-.72-.1-1.57.07-.1-.06-.1-.17-.1-.27l-.01-1.87c-.02-.47.28-.88.74-.92.6-.06 1 .45 1 1.03v1.74c0 .06-.04.12-.06.22zM12.86 530.5c-.03-.12-.07-.22-.07-.32a75.1 75.1 0 0 1-.03-1.74.9.9 0 0 1 .5-.87c.61-.32 1.25.16 1.23.82l.01 1.8c0 .09-.04.16-.06.25-.37-.06-.7-.09-1.07-.05-.16.01-.31.06-.5.1zM18.9 498.2c-.55-.26-1.05-.1-1.57.07-.03-.1-.07-.18-.07-.25l-.01-2c0-.33.13-.6.43-.76a.87.87 0 0 1 1.2.42c.06.15.1.32.1.48v1.8c0 .06-.03.12-.08.25zM14.45 498.16c-.28-.02-.55-.07-.81-.06-.25 0-.49.07-.73.1-.11-.06-.11-.17-.12-.26l-.03-1.75c0-.16.04-.33.1-.48.32-.73 1.49-.66 1.61.2.05.67.02 1.33.03 2 0 .07-.03.15-.05.25zM18.99 883.3c-.01.45.05.92-.1 1.35-.3.78-1.46.7-1.62-.14-.05-.72 0-1.46-.02-2.18-.06-1.02 1.28-1.35 1.65-.4.14.44.08.91.09 1.36zM14.5 883.39c0 .4.03.8-.02 1.18a.84.84 0 0 1-1.61.1 1.28 1.28 0 0 1-.07-.36c-.02-.66-.04-1.33-.04-2-.04-.9 1.25-1.27 1.63-.4.06.15.09.32.1.48v1h.02zM18.9 371.23c-.78-.1-.82-.09-1.59.15l-.06-.31v-1.86c-.04-.48.27-.93.75-.98.58-.06.97.42.98.96v1.86c0 .06-.05.11-.07.18zM12.89 371.3c-.03-.06-.08-.11-.08-.16-.02-.67-.05-1.33-.05-2 0-.35.19-.62.52-.79.48-.24.98.08 1.1.4.05.12.1.24.1.36.02.7.02 1.4.03 2.14-.3.07-.56-.07-.82-.06-.27.02-.53.07-.8.1zM18.93 562.96a2.8 2.8 0 0 0-1.61.1c-.02-.09-.06-.16-.06-.23l-.01-1.93c-.02-.45.24-.86.66-.92.64-.1 1.07.39 1.07.99v1.74c0 .08-.03.16-.05.25zM14.45 562.97c-.9-.1-.9-.1-1.51.06-.12-.05-.14-.15-.15-.25-.01-.6-.03-1.2-.03-1.81 0-.41.17-.72.56-.9.63-.26 1.19.23 1.17.87l.01 1.81c0 .06-.03.12-.05.22zM13.24 49.73H14c.4.2.58.5.6.9a19 19 0 0 1 .02 1.56c-.02.57-.4.92-.96.94-.6.02-.97-.48-.98-1.05a39.7 39.7 0 0 1-.04-1.3c0-.43.15-.77.6-1.05zM17.15 51.3c0-.36-.03-.72.07-1.06.14-.41.46-.62.9-.61a.9.9 0 0 1 .92.77c.07.62.08 1.24 0 1.86-.14 1.02-1.7 1.04-1.85.03-.05-.33-.03-.67-.04-1zM18.08 913.27c.69.2.88.41.9 1.04.02.6.01 1.2 0 1.81-.02 1.34-1.79 1.34-1.73-.02v-1.81c0-.6.17-.8.83-1.02zM14.5 915.3c0 .39.03.79-.01 1.18a.82.82 0 0 1-.79.67c-.61.02-.9-.46-.9-1.02-.03-.6-.04-1.2-.04-1.8 0-.17.03-.34.1-.49.27-.7 1.37-.66 1.57.1.04.13.05.28.06.43v.93h.02zM18.1 17.28c.68.19.87.4.89 1.08v1.69c.02 1.42-1.79 1.42-1.74.06v-1.8c0-.65.19-.86.85-1.03zM14.5 19.29v.87c0 .12 0 .25-.02.37-.2.81-1.4.83-1.62.04a2.36 2.36 0 0 1-.08-.55l-.02-1.62c-.02-.58.3-1.1.94-1.05a.8.8 0 0 1 .75.63c.08.43.03.87.04 1.3h.02zM18.92 466.1c-.72-.12-.72-.12-1.6.1-.02-.07-.06-.14-.06-.21l-.01-2c0-.46.28-.83.7-.88.58-.08 1.03.41 1.03.98v1.8c0 .06-.03.12-.06.22zM14.45 466.13c-.53-.1-1.02-.18-1.53.08-.05-.1-.12-.2-.12-.28-.02-.63-.04-1.25-.04-1.87 0-.39.2-.68.55-.84.62-.27 1.2.21 1.18.85l.01 1.81c0 .06-.02.12-.05.25zM18.93 595.73c-.82-.1-.85-.1-1.63.12-.02-.1-.04-.19-.04-.27l-.01-1.93c-.02-.44.27-.84.69-.9.64-.09 1.04.41 1.04 1.02v1.75c0 .06-.03.11-.05.21zM13.6 592.77c.68.16.87.36.89.97l.01 1.75c0 .08-.03.15-.05.26-.52-.02-1.04-.2-1.55.12-.05-.15-.1-.24-.1-.33-.03-.57-.05-1.13-.04-1.69 0-.65.17-.85.85-1.08zM17.32 434.37c-.03-.07-.05-.11-.05-.15l-.02-2.11c0-.27.1-.49.3-.66a.86.86 0 0 1 1.32.3c.06.15.1.32.1.48.02.63 0 1.25 0 1.87 0 .04-.03.08-.05.15-.27-.02-.56-.08-.83-.06-.26.02-.52.12-.77.18zM14.44 434.3c-.37-.06-.7-.1-1.07-.06-.16.02-.32.06-.48.1-.04-.08-.08-.14-.08-.19-.02-.65-.06-1.29-.05-1.93.01-.47.28-.78.67-.88.6-.16 1.08.3 1.06.9v1.87c0 .04-.02.08-.05.18zM18.92 628.56c-.77-.07-.77-.07-1.61.12l-.06-.29v-1.86c-.04-.45.24-.89.7-.96.6-.1 1.02.38 1.03.95v1.87c0 .05-.04.11-.06.17zM14.44 628.63a2.32 2.32 0 0 0-1.52.03c-.05-.1-.12-.19-.12-.28-.02-.62-.05-1.24-.04-1.86-.01-.98 1.32-1.27 1.65-.37.05.13.07.28.08.42l.01 1.8c0 .06-.02.12-.06.26zM18.92 402.65c-.8-.11-.84-.1-1.61.12-.03-.15-.06-.27-.06-.38v-1.75c-.05-.48.25-.94.73-1 .56-.07 1 .4 1 .95v1.87c0 .06-.04.12-.06.19zM14.44 402.68c-.27-.03-.53-.08-.8-.07-.24 0-.48.06-.73.1-.11-.06-.11-.17-.12-.27l-.03-1.8c0-.16.05-.33.11-.48.32-.69 1.4-.6 1.58.15.02.1.04.2.04.3l.01 1.87c0 .06-.04.12-.06.2z"}),i[0]=a,i[1]=l):(a=i[0],l=i[1]),i[2]!==r||i[3]!==d||i[4]!==u?(c=(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:d,height:u,viewBox:"0 0 32 928",className:"Confirm-module__confirm--rF0fe","data-animation-state":r,fill:"currentColor","aria-hidden":!0,children:[a,l]}),i[2]=r,i[3]=d,i[4]=u,i[5]=c):c=i[5],c}try{p.displayName||(p.displayName="CopilotAnimationConfirm")}catch{}function g(e){let a,l,c,i,s,r,o,d,u,m,p,g,y,h,f,k,b,z,F,I,S,C,v,x,j,M,T,_,N,K,L,w,P,A,E,V,R,D,O,B,$,U,q,H,W,G,Q,Y,X,Z,J,ee,ea,el,en,et,ec,ei,es,er,eo,ed,eu,em,ep,eg,ey,eh,ef,ek,eb,ez,eF,eI,eS,eC,ev,ex,ej,eM,eT,e_,eN,eK,eL,ew,eP,eA,eE,eV,eR,eD,eO,eB,e$,eU,eq,eH,eW,eG,eQ,eY,eX,eZ,eJ,e1,e0,e2,e3,e4,e5,e6,e7,e8,e9,ae,aa,al,an,at,ac,ai,as,ar,ao,ad,au,am,ap,ag,ay,ah,af,ak,ab,az,aF,aI,aS,aC,av,ax,aj,aM,aT,a_,aN,aK,aL,aw,aP,aA,aE,aV,aR,aD,aO,aB,a$,aU,aq,aH,aW,aG=(0,t.c)(166),{scale:aQ,state:aY}=e,aX=void 0===aQ?1:aQ,aZ=32*aX,aJ=1728*aX;return aG[0]===Symbol.for("react.memo_cache_sentinel")?(eq=(0,n.jsx)("path",{d:`M6.6001,824.5119c-0.089-0.5707-0.1786-1.1451-0.2719-1.7432c-0.8697-0.4698-1.557-1.1616-2.2357-1.9298 + c-0.1624-1.241-0.0586-2.5041,0.0505-3.7827c0.3963-0.5842,0.8351-1.1371,1.3432-1.6331c0.2572-0.2511,0.5652-0.4227,0.908-0.5327 + c0.1752-0.0562,0.3484-0.1187,0.498-0.1699c0.6593-2.1816,1.5843-4.0306,3.4295-5.4284c0.2335-0.1819,0.4484-0.3704,0.5704-0.6524 + c1.3026-0.7995,2.7886-1.2357,4.2995-1.4015c2.1122-0.2491,4.1353,0.4172,5.992,1.3594c0.1686,0.3665,0.4512,0.605,0.7448,0.8406 + c1.7568,1.3726,2.7133,3.3013,3.244,5.4308c0.2001,0.0724,0.391,0.1506,0.5873,0.2106c0.3884,0.1187,0.7171,0.3306,0.9962,0.6204 + c0.4487,0.4659,0.8384,0.9788,1.2171,1.5353c0.0535,1.2742,0.0392,2.5618,0.0039,3.8459c-0.7081,0.83-1.5029,1.521-2.4809,2.0087 + c-0.0828,0.5506-0.1627,1.0824-0.2461,1.6375c-2.5065,2.4312-5.7946,4.2516-9.3428,4.3507 + C12.3039,828.9666,9.0832,827.0911,6.6001,824.5119z M7.9929,819.6975c-0.0334,0.2052-0.0781,0.3651-0.0824,0.526 + c-0.0177,0.6652-0.0289,1.3306-0.0315,1.996c-0.0022,0.5654,0.1167,1.1141,0.247,1.6616c0.0602,0.2531,0.1765,0.4578,0.3626,0.6385 + c1.9639,1.9573,4.7541,2.8799,7.4836,2.9396c2.4962-0.0587,4.9625-0.9806,6.8686-2.6025c0.2194-0.1907,0.4498-0.3715,0.587-0.6235 + c0.3631-1.4359,0.4144-3.6501,0.1008-4.7111c-0.8494,1.044-1.6405,1.5513-2.9725,1.7928c-1.5293,0.3419-4.3977-0.0083-4.8093-1.8273 + c-0.0187-0.0706-0.0099-0.1753-0.1614-0.1727c-0.2962,0.8205-0.6899,1.3536-1.5288,1.656 + c-1.0575,0.3849-2.1398,0.5073-3.2522,0.2732c-1.0237-0.2155-1.9384-0.6227-2.6235-1.4498 + C8.1572,819.7657,8.11,819.7565,7.9929,819.6975z M17.0532,816.6027c-0.0018,0.7074-0.0247,1.2664,0.0765,1.9304 + c0.0851,0.5768,0.4296,0.9307,0.9862,1.0743c0.7495,0.1801,1.5368,0.1138,2.2893-0.0085c2.1632-0.3044,2.0672-2.9655,1.95-4.6428 + c-0.0226-0.2665-0.1602-0.4811-0.402-0.5911c-0.9359-0.4883-1.9975-0.5295-3.0308-0.5513 + c-0.1644-0.0046-0.3314,0.0229-0.4947,0.0507C16.9214,814.1281,17.1337,815.4454,17.0532,816.6027z M14.2409,816.6492 + c-0.0086-0.0004-0.0171-0.0009-0.0257-0.0013c0.0012-0.5598,0.0177-1.1255-0.0631-1.6804 + c-0.0866-0.5425-0.4099-0.9053-0.9305-1.0632c-0.2551-0.0773-0.5315-0.1285-0.7964-0.1212 + c-0.6017,0.0164-1.2051,0.0537-1.8022,0.1279c-0.3041,0.0378-0.6022,0.1577-0.8919,0.2692 + c-0.3851,0.1483-0.5935,0.4388-0.6036,0.861c-0.0125,0.5195-0.0423,1.0389-0.0385,1.5581c0.0742,1.9033,0.6528,2.8623,2.6484,2.9832 + c0.8536,0.0762,2.1292,0.1111,2.359-0.9466c0.0301-0.1205,0.0502-0.2455,0.0576-0.3694 + C14.1865,817.7276,14.2125,817.1884,14.2409,816.6492z`}),e2=(0,n.jsx)("path",{d:`M28.0277,788.5572c-0.6411,0.7672-1.2733,1.4255-2.0705,1.9158c-0.1323,0.6168-0.1276,1.25-0.3384,1.8839 + c-5.6558,6.1565-12.4428,6.0306-18.5464,0.5589c-0.0733-0.4874-0.1502-0.9988-0.2294-1.5259 + c-0.7016-0.3798-1.3952-0.7615-1.9611-1.329c-0.234-0.2346-0.4784-0.4588-0.7293-0.6986c-0.0656-1.3023-0.0981-2.5891-0.0689-3.8606 + c0.3525-0.579,0.7486-1.0868,1.1783-1.5683c0.2678-0.2999,0.596-0.5179,0.9766-0.653c0.1953-0.0692,0.3913-0.1362,0.6042-0.2102 + c0.0468-0.1393,0.1018-0.2721,0.1361-0.4102c0.5268-2.342,1.6757-4.1171,3.5723-5.5864c0.0546-0.0996,0.1241-0.2263,0.191-0.3484 + c1.4831-0.943,3.1647-1.4026,4.8989-1.5503c1.7469-0.0323,3.4933,0.4097,5.0587,1.1805c0.1898,0.0923,0.3859,0.1836,0.4908,0.3704 + c0.1382,0.2461,0.3508,0.4086,0.5639,0.5741c1.7683,1.3281,2.7368,3.2134,3.4361,5.2686c0.0893,0.0317,0.1836,0.0735,0.2821,0.0988 + c0.5216,0.1337,0.9523,0.4151,1.3042,0.8151c0.3707,0.4215,0.7294,0.8535,1.1021,1.2911 + C28.1074,786.0331,28.2127,787.2884,28.0277,788.5572z M8.646,787.6157c-0.2189,1.6904-0.2654,3.3209,0.1936,4.9319 + c2.2636,2.2128,5.9341,3.196,9.0347,2.7534c2.304-0.3901,4.58-1.5267,6.0735-3.3338c0.3883-1.0558,0.4758-3.4175,0.2135-4.3515 + c-0.161-0.0361-0.2115,0.1075-0.2899,0.1904c-1.3716,1.4456-3.5572,1.7092-5.3971,1.1241c-0.7312-0.2332-1.2885-0.663-1.5975-1.384 + c-0.043-0.1003-0.0513-0.2408-0.225-0.2549c-0.3343,2.0256-3.3216,2.3698-4.9788,2.0641c-1.151-0.2172-2.1238-0.7111-2.85-1.6487 + C8.8012,787.6786,8.7541,787.67,8.646,787.6157z M10.0156,782.6765c-0.0421,0.1685-0.11,0.3643-0.1361,0.5655 + c-0.0292,0.2255-0.0275,0.4559-0.0272,0.6841c0.0005,1.4146,0.2045,3.4174,1.9238,3.6614c0.675,0.1197,1.3585,0.174,2.0455,0.0706 + c1.0045-0.1511,1.4045-0.5417,1.4261-1.5499c0.019-0.8906-0.0089-1.7866-0.0879-2.6738c-0.0962-1.0812-0.6345-1.5377-1.7111-1.5649 + c-0.6885-0.0174-1.3698,0.0647-2.0434,0.188C10.9362,782.1434,10.4793,782.2923,10.0156,782.6765z M22.9552,782.3282 + c-0.7341-0.7881-2.402-0.6929-3.3962-0.6828c-0.9171,0.0386-1.4799,0.6878-1.4454,1.401c0.0002,0.104-0.0058,0.2081-0.0045,0.312 + c0.0384,1.078-0.0604,2.1719,0.162,3.2343c0.0807,0.3964,0.3225,0.6711,0.7132,0.7948c0.1571,0.0497,0.3212,0.0934,0.4845,0.1049 + c1.4185,0.087,3.2042-0.0966,3.5363-1.7717c0.2326-0.9907,0.1732-1.9827,0.0817-2.9777 + C23.0738,782.6024,23.0008,782.4673,22.9552,782.3282z`}),an=(0,n.jsx)("path",{d:`M6.2754,856.1013c-0.0955-0.5927-0.1946-1.2077-0.2991-1.856c-0.5564-0.3773-1.0321-0.8679-1.4983-1.3732 + c-0.3291-0.3569-0.5004-0.7443-0.5002-1.2324c0.0309-0.9573-0.0854-2.6602,0.5986-3.3698c0.6253-0.7283,1.1036-1.4369,2.0964-1.7214 + c0.117-0.2226,0.1402-0.4727,0.1943-0.7128c0.1546-0.6863,0.447-1.2922,0.9783-1.7742c0.1511-0.1371,0.2727-0.3127,0.3855-0.4853 + c0.5977-0.9149,1.3245-1.7076,2.1938-2.3716c0.146-0.1116,0.2842-0.2449,0.3913-0.3932c0.1513-0.2097,0.336-0.3646,0.5648-0.4769 + c1.2599-0.6193,2.6016-1.011,4.0044-1.1094c2.0625-0.2449,4.1981,0.4689,5.9818,1.4987c0.1142,0.2664,0.3244,0.4825,0.5687,0.6835 + c1.7884,1.4384,2.8158,3.4322,3.2499,5.6635c0.1432,0.1889,0.3605,0.2195,0.553,0.2819c0.5128,0.1663,0.9293,0.4622,1.2551,0.8858 + c0.3421,0.4449,0.6757,0.8964,1.0237,1.3591c0.118,1.3119,0.0423,2.6135-0.1117,3.8779c-0.7996,0.954-1.696,1.4613-2.7527,2.0871 + c-0.2036,0.4087-0.1679,0.929-0.3393,1.4265c-2.6031,2.3297-6.0183,3.9608-9.5555,3.9953 + c-1.7841-0.0726-3.5456-0.6577-5.0775-1.5658C8.703,858.5259,7.3589,857.457,6.2754,856.1013z M7.823,855.9406 + c1.8573,2.2513,4.8498,3.3849,7.7246,3.4041c2.641-0.0522,5.3279-1.0123,7.2797-2.8068c0.252-0.7076,0.331-1.5101,0.3195-3.178 + c-0.0093-1.355-0.0361-1.6318-0.2014-2.077c-0.0196,0.0054-0.0478,0.0046-0.0572,0.0174c-0.0614,0.0837-0.1167,0.1719-0.178,0.2557 + c-1.1932,1.6833-3.5694,2.1098-5.4822,1.6323c-0.9528-0.2683-2.0119-0.5851-2.3566-1.6289 + c-0.0417-0.1148-0.0882-0.2278-0.1504-0.3879c-0.0761,0.1046-0.1317,0.1613-0.1644,0.229 + c-0.3491,0.7251-0.9452,1.1394-1.6959,1.3676c-1.7398,0.5333-3.8092,0.2753-5.1271-1.0696c-0.0498-0.0536-0.1267-0.0819-0.199-0.127 + C7.2315,852.6417,7.3647,854.6559,7.823,855.9406z M16.1991,848.6984c-0.0138-0.0002-0.0275-0.0003-0.0413-0.0005 + c0,0.4368-0.0224,0.8749,0.0044,1.31c0.0675,1.0967,0.5281,1.4278,1.3794,1.5563c0.7604,0.115,1.5349,0.1172,2.2984-0.0545 + c0.7523-0.1691,1.2628-0.6038,1.5209-1.3342c0.3612-1.0218,0.4147-2.0764,0.3343-3.1439c-0.0215-0.2859-0.1626-0.5231-0.4248-0.6519 + c-0.2788-0.1371-0.5621-0.2835-0.8603-0.3592c-0.9069-0.2183-1.8517-0.3469-2.7856-0.259 + C16.1126,845.994,16.285,847.524,16.1991,848.6984z M8.6717,846.2044c-0.1974,0.5471-0.1884,1.1573-0.2129,1.7563 + c-0.0237,0.5809,0.0358,1.1627,0.1902,1.7309c0.1439,0.5296,0.4227,0.9595,0.9238,1.1955c0.8948,0.4214,1.8441,0.4789,2.8064,0.3251 + c0.3521-0.0563,0.605-0.2902,0.7044-0.6377c0.0795-0.278,0.138-0.5668,0.162-0.8546c0.0449-0.5389,0.0626-1.0803,0.0827-1.6209 + c0.0283-1.1614,0.2635-2.4128-1.1918-2.5753C11.3064,845.4222,9.1578,845.4224,8.6717,846.2044z`}),ag=(0,n.jsx)("path",{d:`M6.8513,751.2731c0.4383-2.515,1.5601-4.5708,3.5891-6.1442c0.0571-0.1176,0.1111-0.2288,0.1655-0.3409 + c1.4378-0.9291,3.0602-1.4092,4.7448-1.6255c1.7359-0.0366,3.4491,0.2737,5.0329,1.0149c0.3601,0.1727,0.7109,0.3417,0.9245,0.7081 + c0.0599,0.1028,0.1723,0.1788,0.2699,0.2551c0.8582,0.6718,1.6221,1.4305,2.2134,2.3541c0.0882,0.1378,0.2069,0.2617,0.3309,0.3698 + c0.7591,0.632,0.9635,1.5818,1.1748,2.4998c0.0458,0.0336,0.0902,0.0873,0.1455,0.1033c0.9584,0.275,1.5316,1.1201,2.133,1.8497 + c0.6326,0.8041,0.6205,2.8195,0.4034,3.8673c-0.4823,0.6808-1.0719,1.3198-1.7589,1.8635c-0.1061,0.6473-0.21,1.2816-0.3073,1.8749 + c-2.054,2.6028-5.0221,4.6059-8.3635,4.9446c-3.6966,0.225-7.2757-1.4728-10.0891-3.7673c-0.14-0.4511-0.2874-0.9262-0.4386-1.4132 + c-0.4928-0.2979-1.0096-0.5696-1.4798-0.9064c-0.4543-0.3254-0.8606-0.718-1.2315-1.0331 + c-0.2351-0.5252-0.2347-1.0123-0.2691-1.4852c-0.0468-0.6424-0.0341-1.2892-0.0451-1.9341 + c-0.0047-0.2781,0.0637-0.5338,0.2317-0.762c0.6099-0.7973,1.0988-1.8014,2.1374-2.0973 + C6.5219,751.4186,6.6715,751.3463,6.8513,751.2731z M9.3511,760.6594c2.3069,2.0196,5.7423,2.8727,8.7574,2.5057 + c2.3904-0.384,4.7682-1.59,6.2029-3.5522c0.4076-1.1767,0.485-3.4269,0.209-4.2501c-0.1156,0.1007-0.2262,0.1863-0.3243,0.2844 + c-0.2527,0.2526-0.5345,0.4641-0.8569,0.6182c-1.6935,0.8479-4.584,0.8438-5.6775-0.9315 + c-0.0384-0.0637-0.0594-0.1634-0.2072-0.1321c-0.3563,0.98-0.8729,1.3366-1.8246,1.6862c-2.0863,0.7324-4.8205,0.4915-6.2052-1.41 + c-0.0427-0.0583-0.1079-0.1001-0.1761-0.1616C8.8968,756.4948,8.947,759.226,9.3511,760.6594z M16.0091,753.0681 + c-0.0295-0.6219-0.0812-1.3568-0.1593-1.9933c-0.1078-0.8319-0.6528-1.346-1.4901-1.415c-0.2064-0.017-0.418-0.0195-0.623,0.0056 + c-0.9393,0.139-1.9337,0.1562-2.7752,0.6457c-0.2914,0.1603-0.4672,0.3939-0.4887,0.7441c-0.0754,1.082,0.0526,2.1694,0.4392,3.1842 + c0.483,1.3517,2.1177,1.2834,3.3053,1.2388c0.9313-0.0512,1.7517-0.3694,1.7882-1.4147 + C16.0271,753.753,16.0091,753.4396,16.0091,753.0681z M23.4667,749.9858c-0.6646-0.8549-2.4111-0.7524-3.3788-0.7035 + c-0.163,0.0101-0.328,0.0602-0.4827,0.1174c-0.7867,0.2631-0.8296,1.0638-0.7869,1.7786c0.0518,0.8912,0.0881,1.7847,0.183,2.6726 + c0.0877,0.5646,0.2573,1.0859,0.8809,1.2206c0.6971,0.1266,1.4191,0.0447,2.1017-0.1147c0.8379-0.2049,1.3806-0.7065,1.559-1.5875 + C23.7741,752.2266,23.7091,751.1005,23.4667,749.9858z`}),av=(0,n.jsx)("path",{d:`M6.1097,887.8563c-0.0995-0.6056-0.204-1.2412-0.3068-1.8672c-0.4017-0.4263-0.7897-0.8595-1.2013-1.2689 + c-0.4778-0.4753-0.6378-1.0449-0.6198-1.7026c0.0457-0.8412,0.0447-2.1684,0.6167-2.8155c0.5392-0.6052,0.9899-1.3167,1.7565-1.6653 + c0.4223-1.6064,0.4796-2.5399,2.1219-3.3497c0.5608-0.7819,1.2571-1.4644,2.0353-2.0673c0.1288-0.0999,0.2342-0.2347,0.334-0.3659 + c0.1557-0.2047,0.3514-0.3505,0.5818-0.4588c3.2818-1.6068,6.913-1.4794,10.0247,0.472c0.0893,0.1091,0.123,0.1926,0.179,0.3561 + c1.9773,1.4863,3.2128,3.7316,3.5868,6.1862c0.2074,0.0851,0.3957,0.171,0.5898,0.2404c0.4646,0.1658,0.8503,0.4421,1.1464,0.8323 + c0.3143,0.4144,0.6103,0.8428,0.9146,1.2648c0.138,0.1913,0.212,0.408,0.2265,0.64c0.0714,1.1484-0.0025,2.2855-0.2486,3.399 + c-0.8266,0.8448-1.7322,1.532-2.8025,1.9893c-0.1876,0.5059-0.3678,0.9917-0.5469,1.4744 + c-2.7664,2.1719-6.1719,3.7756-9.7419,3.7051C11.2668,892.6098,8.2728,890.5841,6.1097,887.8563z M14.108,883.0278 + c-0.0944,0.1279-0.1476,0.1913-0.1915,0.2606c-0.3135,0.4942-0.7681,0.8127-1.299,1.0282c-1.563,0.6345-3.8399,0.4683-5.1632-0.7944 + c-0.0512-0.049-0.128-0.071-0.2073-0.1133c-0.038,0.0925-0.0765,0.1468-0.0812,0.2038c-0.0877,1.082-0.0886,2.1607,0.1303,3.2306 + c0.2469,1.4283,1.9762,2.5823,3.1833,3.2199c1.6469,0.7695,3.4842,1.2633,5.3119,1.1259c2.4284-0.2229,4.8453-1.0122,6.7049-2.6478 + c0.3382-1.4532,0.2637-2.9717,0.2167-4.452c-0.0099-0.311-0.0613-0.6209-0.0971-0.9309c-0.009-0.0784-0.0162-0.1669-0.1438-0.1701 + c-0.0323,0.04-0.0797,0.082-0.1066,0.1347c-0.2733,0.535-0.7019,0.9196-1.1864,1.2573c-1.6918,1.0598-3.9745,1.0117-5.7472,0.1758 + c-0.5492-0.2582-0.9629-0.6465-1.1815-1.2243C14.2217,883.2563,14.1821,883.1851,14.108,883.0278z M21.2075,878.7147 + c-0.496-0.9955-2.8085-1.1536-3.8074-1.1849c-0.1831-0.0043-0.3715,0.0432-0.5508,0.0917c-0.6405,0.162-1.0129,0.7578-1.0801,1.3856 + c-0.0752,0.8077-0.1494,1.6157-0.2001,2.425c-0.0167,0.2665,0.0214,0.5403,0.0639,0.806c0.075,0.4684,0.352,0.7888,0.7863,0.9725 + c0.1147,0.0484,0.2329,0.0972,0.3544,0.1197c0.8668,0.1604,1.7374,0.2029,2.6029,0.0061c0.6724-0.1527,1.1586-0.547,1.4132-1.2003 + C21.2356,881.0507,21.3015,879.8601,21.2075,878.7147z M12.0665,882.8058c0.384-0.2652,0.4907-0.7204,0.5525-1.1505 + c0.0711-0.9957,0.1421-1.9916,0.1949-2.9883c0.0119-0.2245-0.0345-0.4555-0.079-0.6786c-0.1983-1.1115-2.57-0.8425-3.3889-0.6871 + c-0.5306,0.1362-1.0258,0.3075-1.1145,0.925c-0.146,0.9302-0.1901,1.8613-0.0739,2.7974c0.135,0.9314,0.6562,1.595,1.5867,1.7772 + c0.4646,0.1014,0.9455,0.1345,1.4208,0.1783C11.4799,883.0083,11.787,882.9472,12.0665,882.8058z`}),aA=(0,n.jsx)("path",{d:`M6.0235,919.7028c-0.1108-0.6584-0.2212-1.3141-0.3223-1.9151c-0.4392-0.5082-0.8428-0.983-1.2553-1.45 + c-0.2605-0.2948-0.379-0.6425-0.4113-1.024c-0.0729-0.8606,0.0283-1.7047,0.2588-2.5344c0.0679-0.2444,0.2033-0.4537,0.3637-0.6492 + c0.4626-0.5641,0.9313-1.122,1.4987-1.5599c0.2413-0.9213,0.3257-1.8818,0.9295-2.6444c0.4373-0.5696,0.978-0.8757,1.6549-1.1009 + c0.5149-0.6401,1.1073-1.2222,1.7809-1.7206c0.0976-0.0723,0.1777-0.1754,0.2473-0.277c0.1959-0.2858,0.4703-0.4611,0.7774-0.606 + c1.5314-0.7227,3.146-1.0751,4.8354-1.0914c1.8546,0.106,3.6118,0.702,5.1993,1.7078c0.1,0.2428,0.2749,0.4628,0.5027,0.6545 + c1.8351,1.5128,2.7695,3.5808,3.1503,5.8929c0.164,0.0756,0.3258,0.1672,0.4987,0.2267c1.0301,0.3209,1.5198,1.315,2.1037,2.1339 + c0.1709,0.2466,0.2558,0.524,0.2733,0.8198c0.0555,0.9402-0.0099,1.8716-0.1968,2.796c-0.061,0.3014-0.2006,0.5384-0.4274,0.7396 + c-0.6249,0.5546-1.266,1.0836-2.0398,1.4256c-0.1701,0.0751-0.3297,0.174-0.4816,0.2554c-0.2332,0.4885-0.4569,0.9571-0.6664,1.3961 + c-2.8525,2.1231-6.2464,3.658-9.8374,3.562C11.03,924.4672,8.0834,922.4304,6.0235,919.7028z M7.0446,915.1985 + c-0.1737,1.1757-0.1709,3.7096,0.5963,4.6147c1.8281,2.2629,5.1211,3.4249,7.9788,3.2492c2.3914-0.2224,4.7532-0.9733,6.6274-2.5345 + c0.395-1.8524,0.2513-3.7683,0.099-5.6411c-0.0058-0.08-0.025-0.1633-0.1752-0.1685c-0.5261,1.0364-1.4978,1.8139-2.6443,2.0549 + c-1.6075,0.3903-3.1365,0.2637-4.6062-0.5056c-0.4799-0.2418-0.8373-0.611-1.0386-1.1183 + c-0.0374-0.0942-0.0633-0.1985-0.2103-0.2186c-0.2957,0.4905-0.7349,0.848-1.2655,1.0535 + c-1.8138,0.7026-3.5413,0.6066-5.1207-0.6349C7.2379,915.3121,7.1827,915.2845,7.0446,915.1985z M20.859,910.4588 + c-0.5947-0.9001-3.0783-1.1736-4.0928-1.0913c-0.8445,0.0943-1.3041,0.8237-1.3572,1.6183c-0.0659,0.6408-0.129,1.282-0.177,1.9244 + c-0.051,0.9506-0.0709,1.8189,0.9938,2.155c0.2356,0.0754,0.4851,0.1306,0.7312,0.1452c0.4972,0.0297,0.9978,0.0538,1.4945,0.0291 + c1.1748-0.0582,1.7665-0.5276,2.1516-1.6503c0.2944-0.8582,0.3502-1.7484,0.3476-2.6443 + C20.9502,910.7631,20.8834,910.5813,20.859,910.4588z M12.2833,909.3859c-0.3376-0.3576-0.7519-0.4244-1.1666-0.4551 + c-0.6019-0.0445-1.2049-0.0116-1.8005,0.0867c-0.223,0.0367-0.4393,0.1198-0.6552,0.1921c-0.3707,0.1241-0.566,0.3899-0.6357,0.7726 + c-0.1499,0.822-0.1964,1.649-0.1338,2.4806c0.0607,0.7761,0.2664,1.5013,1.0138,1.8757c0.6757,0.3278,2.0444,0.5373,2.7649,0.2304 + c0.3739-0.2888,0.5262-0.6781,0.5653-1.097c0.1002-1.0742,0.1742-2.1508,0.25-3.227 + C12.5061,909.9504,12.4395,909.667,12.2833,909.3859z`}),a=(0,n.jsx)("path",{d:`M7.7038,729.1519c-0.2102-0.477-0.4113-0.9333-0.6127-1.3903c-0.9931-0.5479-2.0069-1.1201-2.7657-1.9693 + c-0.2198-0.4841-0.262-0.9868-0.2994-1.4814c-0.0439-0.5801-0.0299-1.1646-0.0381-1.7473c-0.0045-0.322,0.0863-0.6166,0.272-0.8805 + c0.5839-0.7914,1.0555-1.7749,2.0613-2.0909c0.1746-0.061,0.3411-0.1451,0.5017-0.2145c0.4628-2.4145,1.2951-4.3273,3.2133-5.929 + c0.2094-0.1773,0.4072-0.3554,0.4726-0.6163c3.1938-2.0281,6.6201-2.1871,10.0166-0.6058c0.3176,0.126,0.5758,0.3229,0.7772,0.6038 + c0.095,0.1326,0.2167,0.2528,0.3465,0.3523c0.5981,0.4583,1.1373,0.9758,1.6072,1.5643c0.1581,0.1981,0.3434,0.3527,0.5652,0.4802 + c1.2086,0.663,1.4592,1.9319,1.7375,3.1718c0.8741,0.4388,1.4351,1.1962,2.0179,1.9272c0.1133,0.142,0.1936,0.3246,0.2422,0.5015 + c0.2392,0.8705,0.3272,1.7557,0.2341,2.6581c-0.0334,0.3234-0.147,0.6014-0.3492,0.8517c-0.4185,0.5182-0.8309,1.0416-1.3526,1.4501 + c-0.1147,0.677-0.2257,1.3314-0.3362,1.9835c-2.0242,2.6147-4.8495,4.5502-8.1723,4.9636 + C14.1366,732.9286,10.6457,731.3489,7.7038,729.1519z M17.9515,722.9016c-0.0146,0.0095-0.0355,0.0157-0.0426,0.0291 + c-0.0289,0.0549-0.0582,0.1105-0.0791,0.1687c-0.2178,0.6049-0.6513,1.0052-1.2175,1.2749 + c-1.3786,0.6598-2.9027,0.8053-4.3849,0.4384c-1.0344-0.2506-1.8747-0.7795-2.4749-1.6694 + c-0.0448-0.0663-0.0776-0.1542-0.2135-0.1186c-0.2563,1.3713-0.3594,4.3521,0.1397,5.6276 + c1.8705,1.5428,4.2993,2.2604,6.6897,2.4133c1.7533,0.115,3.5119-0.2529,5.0646-1.0764c1.0185-0.5042,2.8781-1.838,3.1677-2.9633 + c0.2964-1.1868,0.3285-2.3875,0.2003-3.597c-0.0077-0.0729-0.0512-0.1421-0.0972-0.2636c-0.1422,0.1233-0.2506,0.2154-0.357,0.3098 + c-1.2624,1.0183-2.9821,1.2035-4.5046,0.7615c-0.7341-0.2118-1.3916-0.5606-1.7954-1.2583 + C18.0278,722.9452,17.9839,722.9266,17.9515,722.9016z M13.9219,723.2274c0.8813,0.0242,2.2366-0.0173,2.4626-1.0833 + c0.0604-0.3028,0.0956-0.6195,0.0798-0.9268c-0.0581-0.8492-0.1176-1.7034-0.2415-2.5461 + c-0.2118-1.1075-1.1704-1.3762-2.1694-1.2513c-0.8818,0.1172-1.791,0.2036-2.5991,0.6058 + c-0.4187,0.1967-0.6533,0.5009-0.6276,0.9783c0.0291,0.5398,0.0306,1.0827,0.0926,1.6187 + C11.1734,722.498,11.9607,723.3713,13.9219,723.2274z M23.7235,717.6929c-0.3561-0.4743-0.8037-0.608-1.2562-0.6654 + c-0.5763-0.0731-1.1614-0.0871-1.7433-0.0995c-0.6657,0.0148-1.4303,0.2405-1.4793,1.0253 + c-0.0157,0.1863-0.033,0.3746-0.0221,0.5605c0.0523,0.8935,0.1074,1.7869,0.1765,2.6793c0.0673,0.738,0.2895,1.5453,1.1773,1.5718 + c1.3955,0.0514,3.0556-0.1395,3.2855-1.8102C24.0471,719.8474,23.9345,718.7586,23.7235,717.6929z`}),g=(0,n.jsx)("path",{d:`M5.9737,951.5944c-0.103-0.6139-0.2164-1.2897-0.3242-1.9318c-0.3933-0.4692-0.7645-0.9169-1.1413-1.3599 + c-0.2804-0.3298-0.4196-0.7057-0.4472-1.1393c-0.0462-0.8668,0.0323-2.4009,0.6348-3.0556 + c0.3716-0.4213,0.7471-0.8392,1.1276-1.2523c0.0692-0.0753,0.1701-0.1215,0.1969-0.1401c0.3637-1.902,0.679-3.5344,2.7756-4.0837 + c0.5971-0.5372,1.1244-1.0079,1.6467-1.4842c0.1218-0.1112,0.2361-0.2339,0.337-0.3643c0.1833-0.2371,0.4142-0.4099,0.6816-0.5345 + c1.2314-0.5822,2.5289-0.963,3.8924-1.0666c2.2267-0.2344,4.4145,0.5063,6.3084,1.7015c0.0477,0.0967,0.111,0.225,0.1912,0.3876 + c1.8891,1.4774,3.0957,3.7714,3.3655,6.1631c0.2053,0.0889,0.372,0.1703,0.5452,0.2343c1.0034,0.3311,1.469,1.3104,2.0381,2.1151 + c0.1968,0.2831,0.2872,0.5999,0.3071,0.9373c0.0529,0.8992-0.0202,1.7884-0.2118,2.6693c-0.0648,0.2979-0.2054,0.5381-0.4331,0.7383 + c-0.6267,0.551-1.2571,1.0945-2.0382,1.4258c-0.1714,0.0727-0.3311,0.173-0.4985,0.2618c-0.2569,0.4575-0.5113,0.9105-0.7577,1.3494 + c-2.9133,2.1023-6.4521,3.6871-10.1014,3.4572C10.7416,956.2744,7.952,954.2967,5.9737,951.5944z M13.4953,946.7162 + c-1.1998,1.7545-4.3725,1.9741-6.1774,0.606c-0.0905-0.0674-0.1636-0.2006-0.3297-0.1302 + c-0.0194,0.0465-0.0549,0.1005-0.0636,0.1585c-0.0215,0.1438-0.0415,0.2893-0.043,0.4343c-0.0046,0.4579-0.0059,0.916,0.0016,1.374 + c0.0102,0.6284,0.1423,1.238,0.2984,1.8436c0.0636,0.2466,0.1864,0.458,0.34,0.66c1.2847,1.7047,3.304,2.643,5.3441,3.0941 + c3.0138,0.693,6.8415-0.3422,9.2331-2.2729c0.3372-1.7479,0.2375-3.5327,0.1315-5.2979c-0.0117-0.1651-0.0436-0.3293-0.0744-0.4923 + c-0.0153-0.081-0.049-0.1588-0.1704-0.1356c-0.032,0.0423-0.0773,0.0871-0.1048,0.1409c-0.9453,1.8708-3.2579,2.3191-5.1687,2.0536 + c-1.1548-0.2215-2.5506-0.5768-3.0595-1.7623C13.6227,946.9178,13.5749,946.8532,13.4953,946.7162z M20.7381,942.4964 + c-0.1076-0.3203-0.2946-0.4879-0.5276-0.5904c-0.3414-0.1501-0.6845-0.3174-1.0447-0.3993 + c-0.6277-0.1428-1.2682-0.2313-1.9052-0.3304c-0.984-0.1183-1.872,0.3449-2.01,1.3914c-0.1375,0.8633-0.2361,1.7319-0.2637,2.6068 + c-0.0405,0.7731,0.1621,1.433,0.9549,1.6981c0.7741,0.2527,1.6072,0.2697,2.4109,0.2161c0.9806-0.0792,1.6866-0.5497,1.9972-1.5228 + C20.7103,944.5557,20.7979,943.494,20.7381,942.4964z M11.2599,946.4626c0.7036-0.3561,0.738-1.0522,0.8264-1.7125 + c0.067-0.7654,0.1197-1.5322,0.1745-2.2986c0.0589-0.8754,0.0031-1.5466-1.0006-1.6711c-0.0614-0.0099-0.1239-0.0194-0.1858-0.0189 + c-0.5192,0.005-1.0424-0.0257-1.5563,0.0295c-0.5334,0.0574-1.0733,0.1622-1.4797,0.6203 + c-0.2859,0.8328-0.3218,1.7509-0.2975,2.6268c0.0144,0.3094,0.0596,0.6201,0.1201,0.9243c0.1444,0.7258,0.6068,1.1741,1.3048,1.3594 + C9.852,946.504,10.5539,946.5737,11.2599,946.4626z`}),v=(0,n.jsx)("path",{d:`M5.9297,974.7081c0.2928-1.074,0.35-2.1476,1.0276-3.0363c0.5607-0.7258,1.1289-0.9808,1.9863-1.1981 + c0.5256-0.4666,1.0094-0.8928,1.4884-1.3241c0.1072-0.0965,0.2102-0.2026,0.2935-0.3197c0.2002-0.2817,0.4738-0.4584,0.7783-0.6063 + c1.6043-0.7789,3.3055-1.1151,5.0791-1.1035c1.824,0.1724,3.5543,0.7383,5.113,1.7807c0.1108,0.2254,0.2636,0.4601,0.49,0.6582 + c1.7806,1.5251,2.6938,3.5265,3.0341,5.8167c0.1298,0.1995,0.3237,0.2347,0.4966,0.296c0.5283,0.1877,0.9491,0.5176,1.2747,0.9651 + c0.2691,0.3699,0.5122,0.7586,0.7736,1.1342c0.6065,0.8224,0.3222,2.63,0.1289,3.5975c-0.0693,0.3178-0.2217,0.5751-0.4653,0.7902 + c-0.6416,0.5665-1.2983,1.1089-2.0913,1.4584c-0.1515,0.0668-0.2945,0.1527-0.4464,0.2324 + c-0.1963,0.3199-0.398,0.6352-0.5856,0.9587c-0.1388,0.2393-0.3173,0.4308-0.5472,0.5864 + c-2.0188,1.3658-4.1869,2.3942-6.5774,2.9211c-4.3963,1.0794-8.6173-1.1292-11.1703-4.6838 + c-0.2421-0.6704-0.2412-1.3901-0.3905-2.0367c-0.3931-0.4823-0.7568-0.9358-1.1286-1.3826 + c-0.2792-0.3356-0.3964-0.7197-0.4106-1.1516c-0.0068-1.0233,0.0035-2.2141,0.6975-3.0342 + C5.1624,975.5892,5.5443,975.1495,5.9297,974.7081z M6.9649,979.0765c-0.0187,0.0143-0.045,0.024-0.0473,0.0377 + C6.7001,980.43,6.8,981.7283,7.1611,983.006c0.2362,0.7003,1.0545,1.4724,1.6376,1.9229c2.0324,1.4887,4.6332,2.1835,7.1341,1.8975 + c2.1548-0.2613,4.3073-0.9942,6.03-2.3428c0.2033-0.5725,0.1996-1.1617,0.2364-1.7392c0.0728-1.3896,0.0449-2.7933-0.1442-4.1732 + c-0.0154-0.0735-0.0558-0.1606-0.2055-0.1269c-0.5792,1.0844-1.6032,1.8858-2.8337,2.0825 + c-1.5075,0.314-3.0604,0.1752-4.4301-0.5507c-0.4791-0.2423-0.846-0.5997-1.0643-1.0985c-0.0394-0.0901-0.0602-0.2029-0.2184-0.2003 + c-0.7647,1.1044-2.4281,1.4401-3.6972,1.3691c-0.868-0.0588-1.6705-0.3226-2.3746-0.851 + C7.1517,979.1357,7.0815,979.0472,6.9649,979.0765z M20.6137,974.3636c-0.1294-0.3012-0.2988-0.4537-0.5072-0.5588 + c-0.2223-0.1121-0.4463-0.228-0.6815-0.3062c-0.8548-0.2844-1.7415-0.4178-2.6366-0.4515c-0.8895-0.0336-1.5161,0.4921-1.6513,1.374 + c-0.1196,0.7805-0.1904,1.5688-0.2679,2.3552c-0.0244,0.2471-0.0104,0.4994,0.0026,0.7485 + c0.0321,0.8666,0.6852,1.2173,1.4598,1.3513c0.596,0.1151,1.2001,0.1285,1.8036,0.0966c0.8163-0.0549,1.578-0.371,1.9331-1.1531 + C20.5651,976.7351,20.6874,975.5231,20.6137,974.3636z M12.1343,974.5573c0-0.4589,0.0139-0.771-0.0036-1.0814 + c-0.0162-0.5237-0.483-0.7573-0.947-0.8214c-0.8868-0.0626-1.8047-0.0862-2.6492,0.2383c-0.3915,0.1303-0.6253,0.3976-0.6882,0.8073 + c-0.1687,1.0063-0.2988,2.0244-0.0979,3.0375c0.1385,0.7848,0.6039,1.2584,1.357,1.4602c0.5459,0.1462,1.1042,0.1943,1.6701,0.1763 + c0.421-0.0134,0.7155-0.2184,0.8856-0.5836c0.1037-0.2227,0.1857-0.4681,0.2145-0.7108 + C11.9811,976.192,12.06,975.3011,12.1343,974.5573z`}),A=(0,n.jsx)("path",{d:`M7.1203,695.7664c-0.2415-0.126-0.4767-0.2595-0.7208-0.374c-0.7289-0.3416-1.3082-0.8823-1.8971-1.4106 + c-0.143-0.1284-0.2375-0.2902-0.2742-0.4802c-0.0669-0.347-0.1639-0.6926-0.1867-1.0427c-0.0405-0.6222-0.0399-1.2473-0.0466-1.8713 + c-0.003-0.2766,0.0798-0.5353,0.236-0.7653c0.5964-0.8306,1.0707-1.8727,2.1199-2.2023c0.1553-0.0535,0.3029-0.1292,0.474-0.2034 + c0.3729-2.3096,1.3205-4.4169,3.1482-5.9311c0.2097-0.1788,0.3916-0.3666,0.4573-0.6227c1.4321-0.9492,3.0107-1.4467,4.6807-1.7023 + c0.1831-0.0327,0.3726-0.0432,0.559-0.0411c1.6662,0.0187,3.2642,0.3472,4.7794,1.0554c0.3634,0.1699,0.7035,0.3564,0.9231,0.7134 + c0.0632,0.1027,0.1654,0.1865,0.2627,0.2621c0.5944,0.4617,1.1164,0.9987,1.6275,1.5562c1.8573,0.7491,2.0163,1.9758,2.4608,3.7429 + c0.6297,0.4133,1.1413,1.0144,1.6477,1.6229c0.7015,0.8475,0.6975,2.1789,0.6632,3.2297c-0.0213,0.3677-0.1462,0.6855-0.3717,0.9739 + c-0.3851,0.4925-0.7737,0.981-1.2569,1.3937c-0.0889,0.5348-0.1802,1.0676-0.2651,1.6013 + c-0.0366,0.2302-0.1065,0.4398-0.2537,0.6277c-1.9172,2.4496-4.6806,4.3529-7.8226,4.6983 + c-3.5407,0.2668-6.9755-1.2256-9.8502-3.1871c-0.2648-0.1868-0.4649-0.4064-0.6037-0.696 + C7.4671,696.4141,7.3057,696.1226,7.1203,695.7664z M9.7938,696.5218c1.9042,1.6243,4.4662,2.2917,6.9225,2.4225 + c2.8534,0.1394,5.6926-1.0341,7.543-3.2218c0.2186-0.2623,0.3754-0.5489,0.4487-0.8801c0.2634-1.189,0.3567-2.387,0.1786-3.598 + c-0.0114-0.0777-0.013-0.1694-0.0984-0.1752c-1.4219,1.129-3.1236,1.4319-4.8409,0.8702c-0.2949-0.0929-0.5756-0.2391-0.8517-0.3823 + c-0.3761-0.1949-0.6543-0.5035-0.9016-0.8981c-0.0757,0.153-0.1341,0.2582-0.1812,0.3682c-0.2598,0.616-0.8245,0.9954-1.4209,1.2405 + c-2.1349,0.8943-5.1879,0.7836-6.5949-1.2864c-0.0558-0.0831-0.1169-0.1625-0.2105-0.2919 + c-0.2303,0.5688-0.1949,1.116-0.2312,1.6414C9.4579,693.7444,9.4454,695.1592,9.7938,696.5218z M13.9935,691.0568 + c0.7667-0.0417,1.2464-0.0451,1.9043-0.2899c0.3927-0.1493,0.6316-0.4517,0.7388-0.8631c0.0961-0.3689,0.0889-0.7408,0.0606-1.1141 + c-0.0298-0.3934-0.0612-0.787-0.109-1.1785c-0.0528-0.4322-0.0946-0.8693-0.1959-1.2911c-0.2028-0.9366-1.0962-1.2036-1.9575-1.1161 + c-0.9817,0.127-2.0031,0.2112-2.8865,0.6985c-0.3617,0.1956-0.559,0.4879-0.538,0.9073c0.0228,0.4558,0.0419,0.912,0.0784,1.3668 + c0.0435,0.5419,0.1882,1.0602,0.3932,1.5636c0.3035,0.7454,0.8721,1.1429,1.6499,1.2526 + C13.4597,691.0391,13.7934,691.0428,13.9935,691.0568z M23.8229,685.4305c-0.7433-0.8899-2.1078-0.6556-3.1276-0.7032 + c-0.5603,0.0054-1.1775,0.2688-1.2368,0.8993c-0.0221,0.1848-0.0523,0.373-0.039,0.5568c0.0687,0.9531,0.1364,1.9067,0.2352,2.857 + c0.0316,0.3041,0.1307,0.6091,0.2466,0.8944c0.1328,0.3271,0.399,0.5248,0.7604,0.5702c0.1441,0.0181,0.2896,0.048,0.4333,0.0424 + c0.4984-0.0193,0.9963-0.0537,1.4817-0.1803c0.7778-0.2026,1.2578-0.6823,1.4072-1.4879 + C24.2002,687.7123,24.096,686.5657,23.8229,685.4305z`}),W=(0,n.jsx)("path",{d:`M25.2858,1007.4966c0.1709,0.0731,0.3394,0.1533,0.5136,0.2183c1.0317,0.364,1.4812,1.421,2.0664,2.257 + c0.4608,0.7412,0.2098,2.5293,0.0264,3.3764c-0.0752,0.3381-0.2391,0.6075-0.5028,0.8375 + c-0.6611,0.5769-1.3342,1.1314-2.1532,1.4771c-0.1144,0.0483-0.2207,0.1161-0.3573,0.1891 + c-0.2017,0.3117-0.4201,0.6403-0.6286,0.975c-0.1348,0.2163-0.306,0.3873-0.5177,0.5309c-2.8839,1.9081-6.2934,3.386-9.8129,3.1461 + c-3.1522-0.2861-5.9162-2.2349-7.7899-4.711c-0.1431-0.1882-0.2217-0.3979-0.2593-0.6273 + c-0.0908-0.5539-0.1822-1.1077-0.2641-1.6059c-0.3993-0.4956-0.7646-0.9484-1.1293-1.4017 + c-0.2579-0.3207-0.3721-0.6891-0.3842-1.0987c-0.0133-1.0552,0.0117-2.2437,0.7402-3.0816c0.3556-0.407,0.7068-0.818,1.0648-1.2328 + c0.1791-0.7774,0.2842-1.5983,0.5969-2.3431c0.483-1.175,1.2873-1.7624,2.5215-2.0181c0.4739-0.4133,0.915-0.7932,1.3497-1.1802 + c0.1232-0.1097,0.2407-0.2308,0.3385-0.3632c0.2043-0.2766,0.4719-0.4589,0.7769-0.6086c1.6217-0.7964,3.3434-1.1315,5.1388-1.1152 + c1.8227,0.1826,3.55,0.7545,5.1061,1.7974c0.0993,0.2642,0.2977,0.493,0.5351,0.7049c1.5788,1.3727,2.5879,3.3257,2.8832,5.3916 + c0.0145,0.1028,0.0342,0.2052,0.0572,0.3065C25.2109,1007.3561,25.236,1007.3918,25.2858,1007.4966z M21.8363,1010.3628 + c-0.0192,0.0081-0.046,0.0106-0.0564,0.025c-0.0603,0.0838-0.1221,0.1674-0.1736,0.2567c-1.3525,2.3508-5.0474,2.3982-7.1931,1.1847 + c-0.4238-0.2471-0.7653-0.5687-0.9592-1.0319c-0.0347-0.0829-0.0453-0.2027-0.2055-0.2242 + c-0.6221,0.9605-1.8174,1.2142-2.8791,1.3602c-1.1638,0.1376-2.2272-0.1423-3.1863-0.8182 + c-0.0771-0.0544-0.1665-0.0913-0.2807-0.1528c-0.2582,1.0562-0.1428,3.7457,0.5441,4.598c0.9273,1.2148,2.2408,2.0786,3.6717,2.5891 + c1.8687,0.7321,3.8003,0.8608,5.7626,0.4573c1.5525-0.2754,3.0021-0.8327,4.3447-1.6625c0.2648-0.1636,0.5305-0.3271,0.7159-0.5541 + c0.2883-1.5251,0.2869-4.8353,0.003-5.9834C21.9083,1010.392,21.8723,1010.3773,21.8363,1010.3628z M17.3429,1010.9102 + c0.3705-0.0184,0.7059-0.0112,1.0341-0.0563c2.0071-0.223,2.1706-2.687,2.207-4.2835c0.0045-0.3569-0.1732-0.633-0.4904-0.8155 + c-0.4002-0.2303-0.8237-0.4-1.2745-0.495c-1.217-0.2266-3.1741-0.8068-3.6819,0.777c-0.0649,0.1959-0.1007,0.4041-0.1276,0.6096 + c-0.0784,0.5983-0.1541,1.1973-0.2132,1.7977c-0.097,1.0128-0.0457,1.965,1.1003,2.2675 + C16.3688,1010.8201,16.892,1010.8435,17.3429,1010.9102z M11.9155,1004.9366c-0.3163-0.3195-0.7081-0.4009-1.1047-0.4009 + c-0.5396,0.0001-1.0802,0.0413-1.6183,0.0882c-0.2036,0.0177-0.4028,0.0966-0.6019,0.1551 + c-0.4652,0.137-0.7236,0.4421-0.8068,0.9276c-0.1485,0.8665-0.211,1.7349-0.1341,2.6111c0.0721,0.7828,0.397,1.4982,1.1996,1.7284 + c0.7415,0.2291,1.5001,0.3243,2.235,0.1695c0.4547-0.3648,0.5501-0.4882,0.657-0.9244c0.0592-0.2415,0.1004-0.4894,0.1257-0.7369 + c0.0764-0.7451,0.1455-1.4911,0.2086-2.2375C12.1142,1005.8617,12.1747,1005.4013,11.9155,1004.9366z`}),et=(0,n.jsx)("path",{d:`M5.5975,1077.5391c-0.4032-0.5023-0.7558-0.9391-1.1054-1.3782c-0.2549-0.3202-0.3785-0.6859-0.3927-1.0966 + c-0.0144-1.0355,0.003-2.1997,0.7029-3.033c0.3417-0.3925,0.6738-0.7935,1.0716-1.2633c0.1142-0.6512,0.3109-1.4344,0.4858-2.0945 + c0.3042-1.0396,1.1066-1.9442,2.1773-2.2172c0.1812-0.0469,0.3634-0.0897,0.5367-0.1323c0.4618-0.3999,0.9196-0.7925,1.372-1.1912 + c0.0923-0.0814,0.1722-0.1805,0.2438-0.2815c0.199-0.2808,0.4697-0.4611,0.7743-0.6121c1.6199-0.8027,3.3408-1.1437,5.1378-1.1262 + c0.6286,0.006,1.2348,0.1792,1.8396,0.3307c1.2002,0.3011,2.0797,0.6992,3.2724,1.4513c0.0638,0.116,0.1433,0.2604,0.249,0.4524 + c1.8967,1.5469,2.9443,3.6146,3.2436,6.015c0.1509,0.2227,0.3444,0.2622,0.517,0.3226c0.5111,0.1786,0.9147,0.5022,1.2277,0.9282 + c0.32,0.4357,0.6046,0.8973,0.903,1.3489c0.4767,0.756,0.2193,2.5752,0.0232,3.4363c-0.0676,0.2924-0.2146,0.5319-0.4427,0.7346 + c-0.6558,0.5828-1.3236,1.1445-2.1401,1.4976c-0.1518,0.0656-0.2926,0.1567-0.4387,0.2362 + c-0.2104,0.3163-0.4185,0.6276-0.6248,0.9398c-0.1272,0.1926-0.2734,0.3619-0.4687,0.4943 + c-3.1088,2.0604-7.2675,3.8453-11.0407,2.964c-2.6484-0.5669-4.9156-2.293-6.5439-4.4155 + c-0.1683-0.2229-0.2767-0.4594-0.3195-0.7339C5.7747,1078.5809,5.6821,1078.0476,5.5975,1077.5391z M21.7469,1074.2845 + c-0.0666,0.1027-0.1288,0.1841-0.176,0.2736c-0.2805,0.5314-0.7072,0.9163-1.2023,1.2426c-1.7097,1.007-3.9426,0.9266-5.7108,0.1146 + c-0.5651-0.2595-1.0256-0.6322-1.277-1.2235c-0.028-0.066-0.0917-0.1167-0.1606-0.2014c-0.4325,0.667-1.0663,0.9373-1.775,1.1554 + c-1.5655,0.4603-3.0452,0.3232-4.3975-0.6578c-0.0305-0.0222-0.0776-0.0215-0.1528-0.0406 + c-0.0356,0.1792-0.0895,0.3555-0.103,0.5347c-0.072,0.9598-0.022,1.9136,0.1633,2.8595c0.1185,0.6053,0.3529,1.1492,0.8031,1.5865 + c0.9117,1.019,2.0734,1.7467,3.3608,2.197c3.2751,1.282,7.0439,0.5894,10.0101-1.1727c0.2836-0.1715,0.5732-0.3391,0.8023-0.6354 + c0.3218-1.88,0.2039-3.8131,0.0531-5.7052C21.9756,1074.4889,21.9635,1074.3601,21.7469,1074.2845z M20.4746,1070.1178 + c-0.1798-0.2827-0.3888-0.422-0.6186-0.5227c-0.2851-0.1249-0.5719-0.2645-0.8727-0.3309 + c-0.6291-0.1387-1.2664-0.2434-1.9034-0.3418c-0.9209-0.1421-1.8121,0.2285-2.0359,1.1981 + c-0.1339,0.8414-0.2024,1.6942-0.3055,2.5403c-0.1043,1.1187,0.2053,1.8342,1.3848,2.0514 + c0.5596,0.0468,1.1189,0.1084,1.6795,0.1273c0.9118-0.012,1.7658-0.312,2.1648-1.1934c0.477-1.0122,0.5801-2.1288,0.5557-3.2308 + C20.5214,1070.3129,20.4905,1070.2109,20.4746,1070.1178z M11.9242,1068.9425c-0.3559-0.3358-0.4634-0.4205-0.87-0.4326 + c-0.6004-0.0178-1.2033-0.0049-1.803,0.0312c-0.2427,0.0146-0.4816,0.118-0.7187,0.1924c-0.439,0.1377-0.6787,0.4408-0.7598,0.8948 + c-0.1865,1.0995-0.2966,2.2435,0.0018,3.3328c0.156,0.6082,0.7287,0.9805,1.3125,1.105c0.4075,0.0739,0.8211,0.1157,1.2332,0.161 + c0.1226,0.0134,0.249,0.0005,0.373-0.0092c0.6158-0.0345,0.8889-0.5608,1.0276-1.0933c0.2031-1.0383,0.2149-2.1061,0.3357-3.156 + C12.0917,1069.6097,12.0612,1069.2656,11.9242,1068.9425z`}),ey=(0,n.jsx)("path",{d:`M25.2173,1039.4583c0.1986,0.0905,0.3439,0.1709,0.4986,0.2247c1.0679,0.3468,1.5426,1.4103,2.1344,2.2688 + c0.4817,0.7678,0.2246,2.5607,0.0303,3.4331c-0.0719,0.3153-0.2346,0.566-0.4796,0.7819c-0.658,0.5798-1.3286,1.1368-2.1474,1.4834 + c-0.1331,0.0564-0.2549,0.139-0.3915,0.2148c-0.2157,0.3239-0.4364,0.6511-0.6526,0.9812c-0.1272,0.194-0.2818,0.3555-0.4763,0.486 + c-3.2567,2.1234-7.4162,3.9064-11.3399,2.8569c-2.4983-0.6183-4.6305-2.2916-6.1886-4.303 + c-0.1804-0.2399-0.3041-0.4895-0.3493-0.7865c-0.0812-0.5344-0.1753-1.0667-0.2574-1.5604 + c-0.387-0.4819-0.7508-0.9351-1.1147-1.3882c-0.2576-0.3207-0.3736-0.6888-0.385-1.0981c-0.0127-1.0345,0.0053-2.1973,0.7066-3.0291 + c0.3421-0.3915,0.6739-0.7919,1.0752-1.265c0.1302-0.6696,0.3174-1.4701,0.5066-2.1454c0.2922-0.9941,1.0922-1.8512,2.1025-2.1324 + c0.2003-0.0555,0.4026-0.1036,0.5764-0.1481c0.4592-0.3984,0.901-0.7776,1.3369-1.1632c0.1077-0.0955,0.2077-0.2043,0.2912-0.3213 + c0.2002-0.2804,0.4707-0.46,0.7747-0.6105c1.6189-0.8016,3.339-1.1431,5.1345-1.1217c1.8247,0.1609,3.5501,0.7556,5.1127,1.785 + c0.06,0.1088,0.1395,0.2531,0.2471,0.448C23.855,1034.8925,24.9056,1036.9567,25.2173,1039.4583z M21.853,1042.2461 + c-0.1021,0.1111-0.1857,0.1726-0.2301,0.255c-0.8545,1.6296-2.753,2.1082-4.4622,2.0426c-1.2741-0.0665-3.2045-0.5315-3.758-1.8125 + c-0.0303-0.0685-0.0793-0.1288-0.1426-0.2294c-0.1108,0.1232-0.196,0.2091-0.271,0.3032c-0.1725,0.2164-0.3888,0.3817-0.6347,0.496 + c-1.8022,0.8378-3.5666,0.9077-5.2635-0.2789c-0.0483-0.0337-0.1114-0.0461-0.1897-0.0774 + c-0.0369,0.175-0.0888,0.3347-0.1018,0.4976c-0.0785,0.98-0.0266,1.9524,0.1599,2.9198c0.1136,0.5891,0.3444,1.1106,0.7723,1.5338 + c0.3247,0.3213,0.6363,0.6633,0.9974,0.939c3.5902,2.7661,8.7311,2.394,12.459,0.0922c0.2639-0.163,0.5394-0.3157,0.746-0.5916 + c0.2609-1.3748,0.2109-2.8163,0.1769-4.213c-0.0179-0.5192-0.0739-1.0374-0.124-1.5549 + C21.9777,1042.4749,21.9137,1042.3875,21.853,1042.2461z M20.4729,1038.0775c-0.4201-0.4611-0.923-0.6711-1.4503-0.7922 + c-0.6678-0.1534-1.3484-0.254-2.0264-0.358c-0.2881-0.0444-0.5812-0.0145-0.8666,0.0634c-0.6698,0.1638-1.052,0.7668-1.1204,1.4222 + c-0.0838,0.5975-0.1695,1.1956-0.2254,1.796c-0.0534,0.9808-0.2296,1.9873,0.899,2.3909c0.1364,0.0497,0.2775,0.093,0.4202,0.1183 + c1.4389,0.246,3.4266,0.3922,3.9878-1.3141c0.3697-0.8954,0.4363-1.8628,0.4542-2.8179 + C20.5486,1038.423,20.5,1038.2588,20.4729,1038.0775z M11.9118,1036.9149c-0.3856-0.2979-0.5421-0.3883-0.9141-0.3982 + c-0.9954,0.0063-2.2877-0.1678-3.0594,0.6147c-0.045,0.1299-0.1206,0.2817-0.1493,0.442c-0.1577,0.8821-0.2525,1.7697-0.1578,2.6666 + c0.0196,0.1852,0.0566,0.3689,0.0941,0.5515c0.2636,1.3573,1.9037,1.4844,3.0352,1.4319c0.2874-0.02,0.5256-0.1586,0.6709-0.4009 + c0.2799-0.4436,0.384-0.9609,0.4216-1.4784c0.0747-0.765,0.1366-1.5314,0.2081-2.2966 + C12.0964,1037.6703,12.0874,1037.3007,11.9118,1036.9149z`}),eI=(0,n.jsx)("path",{d:`M5.6237,1109.6156c-0.4354-0.5377-0.8016-0.99-1.1677-1.4423c-0.2309-0.2854-0.3388-0.614-0.3601-0.9786 + c-0.0362-1.0259-0.0258-2.2754,0.6577-3.105c0.3935-0.4565,0.7833-0.9163,1.1624-1.3602c0.4046-2.0964,0.7246-3.9269,3.143-4.3889 + c0.4575-0.3984,0.8984-0.7784,1.3337-1.1647c0.1078-0.0956,0.2102-0.2025,0.2934-0.3196c0.1865-0.2621,0.4298-0.4437,0.7148-0.5874 + c1.6531-0.8318,3.4132-1.1733,5.2522-1.1613c1.8499,0.2764,3.4589,0.7039,5.0484,1.778c0.0999,0.2983,0.3345,0.5264,0.5849,0.7494 + c1.6898,1.4834,2.6302,3.5206,2.9237,5.7227c0.1571,0.196,0.3452,0.2375,0.5195,0.2993c0.4862,0.172,0.8868,0.4667,1.188,0.8776 + c0.3319,0.4524,0.6358,0.9255,0.9468,1.3931c0.4651,0.7357,0.2147,2.5923,0.0238,3.4368c-0.0721,0.3179-0.2385,0.5675-0.4805,0.7822 + c-0.6562,0.5819-1.3297,1.1359-2.1464,1.4861c-0.1326,0.0569-0.2546,0.1385-0.379,0.2075 + c-0.2184,0.3386-0.4347,0.6693-0.6457,1.0033c-0.1131,0.1792-0.2572,0.3215-0.4331,0.4412c-2.848,1.911-6.19,3.3354-9.6752,3.2058 + c-3.1228-0.2363-5.9359-2.0739-7.8447-4.4976c-0.2233-0.2874-0.3823-0.5852-0.4312-0.9498 + C5.7863,1110.5487,5.6957,1110.0574,5.6237,1109.6156z M13.3278,1106.4436c-0.4061,0.6527-1.0143,0.9584-1.6753,1.1742 + c-1.5128,0.4902-3.1559,0.394-4.4678-0.5721c-0.0789-0.0571-0.1586-0.1399-0.2692-0.0566 + c-0.1567,0.9475-0.1897,1.4968-0.0384,2.6099c0.2255,1.6586,0.2783,1.7247,1.4694,2.9106c0.0735,0.0731,0.1584,0.135,0.239,0.2009 + c3.272,2.5981,7.9418,2.5963,11.5835,0.7837c0.6365-0.3048,1.2656-0.6354,1.8053-1.1467c0.0452-0.2535,0.1199-0.5173,0.1348-0.7844 + c0.1103-1.5393,0.1179-3.0785-0.0069-4.6171c-0.0092-0.165-0.0487-0.3289-0.0811-0.4919c-0.0165-0.0828-0.0549-0.1558-0.1586-0.1555 + c-0.0176,0.0107-0.0402,0.0176-0.052,0.0328c-0.0504,0.0652-0.1045,0.1288-0.145,0.2c-0.678,1.2297-1.9794,1.7859-3.3167,1.9346 + c-1.4698,0.2327-4.2568-0.2357-4.8672-1.7799C13.4524,1106.6133,13.397,1106.551,13.3278,1106.4436z M17.5744,1106.8361 + c0.2034-0.0161,0.5141-0.0342,0.8234-0.0667c2.0349-0.191,2.2021-2.7161,2.2159-4.3204c-0.005-0.316-0.1533-0.5503-0.4143-0.7255 + c-0.3328-0.2231-0.6958-0.3857-1.0831-0.4647c-0.6714-0.137-1.3484-0.2498-2.0263-0.3506 + c-0.9493-0.1196-1.7787,0.2802-1.9679,1.2761c-0.1715,0.9214-0.2561,1.8531-0.303,2.7881c-0.0093,0.1849,0.0181,0.3735,0.044,0.5582 + C15.0463,1106.7847,16.545,1106.7346,17.5744,1106.8361z M11.9999,1100.9081c-0.3425-0.3005-0.655-0.4069-0.9973-0.4078 + c-0.5202-0.0013-1.0431-0.0127-1.5597,0.0353c-0.3262,0.0303-0.6494,0.1422-0.9624,0.251c-0.3357,0.1165-0.5572,0.3595-0.621,0.7216 + c-0.0649,0.3688-0.1444,0.7365-0.1821,1.1083c-0.0694,0.6852-0.0633,1.3682,0.068,2.0519c0.142,0.7396,0.5778,1.1869,1.2811,1.3779 + c0.5646,0.1532,1.1447,0.217,1.7325,0.1823c0.6808-0.0222,1.0303-0.7251,1.0964-1.3235c0.0968-1.0156,0.1846-2.032,0.2723-3.0485 + C12.1713,1101.5421,12.0638,1101.1945,11.9999,1100.9081z`}),eS=(0,n.jsx)("path",{d:`M6.8297,655.4318c0.3561-2.2888,1.2705-4.367,3.059-5.882c0.2225-0.194,0.4282-0.3926,0.5037-0.6672 + c1.2689-0.8491,2.6485-1.3536,4.1193-1.6323c1.9464-0.3932,4.238,0.1217,6.0116,0.9528c0.3459,0.1614,0.6494,0.3608,0.8711,0.6848 + c0.1031,0.1507,0.2628,0.2634,0.4008,0.3891c0.446,0.4061,0.8939,0.8101,1.4393,1.3038c1.859,0.6288,2.2148,2.1675,2.5417,3.9056 + c0.5021,0.3572,0.9112,0.8246,1.3356,1.2825c0.8968,0.9276,0.9351,2.1919,0.9125,3.3972c0.0041,0.4119-0.1285,0.7774-0.3928,1.0935 + c-0.3867,0.4626-0.7748,0.924-1.2107,1.4436c-0.0973,0.576-0.208,1.2311-0.3156,1.8683c-4.2788,5.7167-10.0615,6.225-16.0729,2.8744 + c-0.622-0.3345-1.2037-0.7438-1.8064-1.1146c-0.2198-0.1351-0.3773-0.3196-0.5016-0.5432 + c-0.1819-0.3271-0.3754-0.6479-0.5791-0.9973c-0.1812-0.0951-0.3794-0.2098-0.5863-0.3057c-0.7681-0.3561-1.393-0.906-2.0096-1.4684 + c-0.1753-0.1599-0.2897-0.3547-0.3312-0.5878c-0.0729-0.4094-0.1689-0.8174-0.2026-1.2303 + c-0.0388-0.4763-0.0233-0.9572-0.0261-1.436c-0.0021-0.3634,0.0949-0.6995,0.3005-1.0019c0.5846-0.8434,1.0912-1.8576,2.1564-2.158 + C6.5647,655.5663,6.6744,655.502,6.8297,655.4318z M18.3014,658.5208c-0.3046,0.8781-0.8164,1.2747-1.5919,1.6041 + c-1.4325,0.6116-2.9057,0.6859-4.399,0.2762c-1.1082-0.3036-1.7308-0.8595-2.3773-1.792c-0.0487,0.04-0.094,0.0591-0.1065,0.091 + c-0.0299,0.0764-0.0533,0.1575-0.0636,0.2388c-0.1654,1.3046-0.1981,2.6141-0.1214,3.9255 + c0.0327,0.5592,0.0791,1.1206,0.2712,1.6277c1.8162,1.5502,4.4345,2.2354,6.8097,2.36c2.8382,0.1708,5.7763-1.007,7.5963-3.2151 + c0.7936-0.9565,0.7348-3.2754,0.6278-4.4821c-0.0064-0.0681-0.0601-0.1317-0.1038-0.2222 + c-0.0996,0.0742-0.1692,0.1182-0.2296,0.1723c-0.3316,0.2968-0.7245,0.4785-1.1344,0.6404 + C21.9044,660.3706,19.3099,660.0878,18.3014,658.5208z M14.1941,658.917c0.6522-0.0216,1.2553-0.0665,1.8539-0.3072 + c0.3913-0.1535,0.6196-0.4638,0.7209-0.8774c0.0856-0.3497,0.0912-0.6991,0.0549-1.0518c-0.068-0.6609-0.1365-1.3218-0.2146-1.9816 + c-0.0629-0.7295-0.3971-1.4196-1.171-1.5764c-0.24-0.0535-0.4985-0.0966-0.7382-0.0651c-0.6991,0.0916-1.3982,0.1989-2.0865,0.3494 + c-0.3388,0.074-0.6627,0.2393-0.9772,0.3956c-0.3408,0.1693-0.5241,0.4504-0.5156,0.8529c0.0118,0.5612,0.0284,1.1202,0.1209,1.6759 + C11.6031,658.2548,12.1859,658.9473,14.1941,658.917z M19.7027,653.0638c-0.176,0.3626-0.1973,0.7115-0.1663,1.0695 + c0.0772,0.8913,0.1435,1.7837,0.2319,2.6739c0.0798,0.7611,0.3471,1.5729,1.2539,1.5834c0.5872,0.0203,1.1686-0.0265,1.7312-0.1874 + c0.9265-0.2697,1.2225-0.8156,1.3562-1.7426c0.1388-0.9598,0.0274-1.9086-0.1406-2.8531c-0.0585-0.3289-0.2513-0.5673-0.5604-0.7014 + c-0.9108-0.3813-1.9187-0.3832-2.8856-0.2911C20.2002,652.6492,19.9247,652.7831,19.7027,653.0638z`}),eC=(0,n.jsx)("path",{d:`M5.646,1141.6771c-0.4092-0.4841-0.7689-0.9147-1.1343-1.3405c-0.2828-0.3296-0.4145-0.709-0.4423-1.1411 + c-0.0449-0.8662,0.0208-2.3287,0.6007-3.002c0.4197-0.4889,0.8377-0.9794,1.3212-1.5452c0.3723-2.019,0.7176-3.7815,3.0426-4.2822 + c0.4847-0.4247,0.9549-0.8344,1.4219-1.2476c0.0771-0.0682,0.1541-0.1433,0.2084-0.2295c0.197-0.3136,0.4898-0.4966,0.8131-0.6572 + c3.3821-1.668,7.0335-1.4374,10.1935,0.6357c0.0883,0.2511,0.2708,0.4637,0.4958,0.6582c1.7406,1.4587,2.7278,3.5909,3.0521,5.8108 + c0.1715,0.1898,0.3824,0.228,0.574,0.3015c0.4591,0.176,0.8436,0.4553,1.1337,0.8501c0.2955,0.4023,0.5681,0.8215,0.8575,1.2284 + c0.2001,0.2812,0.2962,0.597,0.3187,0.9337c0.0599,0.8982-0.0003,1.7877-0.1967,2.6688c-0.0713,0.3198-0.227,0.5707-0.471,0.7859 + c-0.658,0.5802-1.3287,1.139-2.148,1.4858c-0.1144,0.0482-0.2199,0.1176-0.3601,0.194c-0.1907,0.3129-0.3991,0.6478-0.6,0.9872 + c-0.1078,0.1821-0.2394,0.3345-0.4163,0.4557c-2.1705,1.4879-4.5078,2.5928-7.1104,3.077 + c-4.1963,0.913-8.3673-1.3485-10.8274-4.7246C5.865,1142.9543,5.7493,1142.2795,5.646,1141.6771z M22.0075,1138.2001 + c-0.1176,0.1719-0.1921,0.2683-0.2534,0.3727c-1.0351,1.7783-3.4601,2.1786-5.3376,1.8083 + c-1.0521-0.2491-2.3002-0.594-2.7815-1.6694c-0.0392-0.09-0.0959-0.1724-0.1701-0.3033c-0.5982,0.9873-1.6647,1.2495-2.6956,1.4476 + c-1.3062,0.1787-2.5269-0.0439-3.5974-0.8684c-0.042-0.0323-0.1073-0.0347-0.1724-0.0541c-0.0305,0.0682-0.0714,0.1213-0.0771,0.178 + c-0.1176,1.3301-0.1936,3.6573,0.7601,4.6829c1.6451,1.8881,4.0882,2.7843,6.5303,2.9733c2.6965,0.1443,5.7043-0.7559,7.8375-2.416 + C22.3839,1142.8293,22.3714,1139.2535,22.0075,1138.2001z M14.9651,1136.3972c0.0033,0.0004,0.0065,0.0007,0.0098,0.0011 + c-0.0145,0.1864-0.0442,0.3733-0.0393,0.5592c0.0055,0.2067,0.0303,0.4147,0.0688,0.618c0.0741,0.392,0.2952,0.6953,0.6524,0.8627 + c0.2603,0.1218,0.544,0.2242,0.8269,0.261c0.6591,0.0853,1.3226,0.1327,1.9897,0.0541c0.8891-0.105,1.498-0.5513,1.8126-1.4019 + c0.3519-0.9514,0.4602-1.9364,0.4445-2.941c-0.0049-0.3159-0.1605-0.5521-0.4232-0.7206c-0.3895-0.2495-0.8137-0.4205-1.2638-0.5153 + c-0.7917-0.1591-1.5956-0.3348-2.4074-0.2849c-0.9704,0.0671-1.4058,0.8125-1.4773,1.7096 + C15.0898,1135.198,15.029,1135.7979,14.9651,1136.3972z M12.1143,1132.9183c-0.3585-0.3052-0.6869-0.415-1.0521-0.4137 + c-0.4568,0.0017-0.9139,0.0042-1.3703,0.0214c-0.3982,0.015-0.7771,0.1299-1.1455,0.2755 + c-0.3789,0.1498-0.5909,0.4263-0.6615,0.8335c-0.1534,0.8854-0.2001,1.7738-0.1208,2.6685 + c0.0973,0.9249,0.4702,1.5374,1.3944,1.7659c0.5438,0.1388,1.1032,0.1901,1.6685,0.1654c0.7986-0.0117,1.0924-0.7744,1.1683-1.4489 + c0.096-0.9083,0.1687-1.8191,0.2441-2.7295c0.0154-0.1857,0.0212-0.3759-0.0006-0.5601 + C12.2151,1133.2943,12.1543,1133.0969,12.1143,1132.9183z`}),ev=(0,n.jsx)("path",{d:`M6.8499,591.4273c0.3343-2.5018,1.394-4.5851,3.3399-6.1443c0.0691-0.1406,0.1232-0.2526,0.1794-0.3635 + c0.0091-0.0179,0.0274-0.0311,0.0635-0.0705c3.1453-2.0412,6.7438-2.2601,10.1274-0.6307c0.3254,0.1534,0.6209,0.3312,0.8251,0.6412 + c0.0785,0.119,0.189,0.2198,0.2963,0.3164c0.4631,0.4176,0.9305,0.8306,1.4492,1.2922c1.9647,0.5123,2.3517,2.2741,2.7011,4.0717 + c0.5994,0.4089,1.0622,0.9973,1.5362,1.5769c0.6724,0.853,0.6798,2.0718,0.6469,3.1102c-0.0206,0.3644-0.1308,0.6929-0.364,0.9767 + c-0.3954,0.4812-0.7909,0.9623-1.2188,1.483c-0.1015,0.597-0.2128,1.2517-0.3196,1.8799c-1.927,2.6163-4.7343,4.5583-7.986,4.9122 + c-2.1242,0.1443-4.247-0.3503-6.1944-1.1834c-1.2881-0.5457-2.5169-1.1953-3.6662-1.9952 + c-0.2101-0.1462-0.3829-0.3135-0.5122-0.5341c-0.1788-0.3051-0.3689-0.6036-0.5931-0.9683 + c-0.1953-0.1053-0.4449-0.2539-0.7061-0.378c-0.7458-0.3539-1.3417-0.9055-1.9423-1.4518c-0.1596-0.1452-0.2522-0.33-0.2897-0.5406 + c-0.0727-0.4091-0.1718-0.8165-0.2039-1.229c-0.0386-0.4967-0.0238-0.9979-0.0227-1.4971c0.0007-0.3195,0.0941-0.6173,0.2715-0.8831 + c0.5883-0.8359,1.071-1.8715,2.1219-2.1954C6.5264,591.5767,6.6568,591.51,6.8499,591.4273z M18.3827,594.5394 + c-0.0316,0.0243-0.0797,0.0421-0.0923,0.0739c-0.7823,1.904-4.1164,2.2122-5.8505,1.6977c-0.9804-0.2528-1.784-0.7811-2.3247-1.6635 + c-0.0395-0.0645-0.0972-0.118-0.1933-0.2324c-0.0568,0.2466-0.119,0.4203-0.1342,0.598c-0.1464,1.7991-0.3157,3.6808,0.1644,5.4417 + c1.9115,1.5375,4.3945,2.2139,6.813,2.322c2.8308,0.1727,5.7923-0.9722,7.5903-3.2019c0.7964-0.975,0.7132-3.3231,0.6019-4.5439 + c-0.0045-0.0466-0.0654-0.0877-0.0926-0.122c-1.5617,1.1071-3.1931,1.3241-4.9812,0.6734c-0.5596-0.1975-1.0578-0.4865-1.398-0.9962 + C18.4676,594.5597,18.4177,594.5544,18.3827,594.5394z M11.2628,590.0505c-0.0323,0.1973-0.0926,0.3809-0.0869,0.5624 + c0.0563,1.8036,0.2755,4.2333,2.5582,4.1835c0.5589,0.0228,1.1239-0.0268,1.6817-0.0854c0.2624-0.0276,0.5253-0.1302,0.7686-0.2413 + c0.3869-0.1765,0.5948-0.5081,0.6723-0.9204c0.023-0.1223,0.0361-0.2484,0.0359-0.3727c-0.0017-1.0236-0.1255-2.0375-0.3033-3.0419 + c-0.129-0.7939-0.9166-1.2263-1.6844-1.1683c-0.8379,0.0203-1.6554,0.1728-2.4562,0.4099c-0.2374,0.0702-0.4685,0.1762-0.685,0.2972 + C11.5861,589.7728,11.4346,589.9186,11.2628,590.0505z M19.6283,590.2834c0.0806,0.8116,0.0956,1.9337,0.2747,2.838 + c0.1277,0.5549,0.4176,1.1077,1.0572,1.1408c0.6495,0.052,1.2921,0.0038,1.9143-0.181c0.7602-0.2061,1.1864-0.8423,1.2606-1.6129 + c0.1723-0.96,0.0299-1.9048-0.1225-2.8519c-0.0707-0.4395-0.3065-0.7141-0.7144-0.8596c-0.8849-0.331-1.8459-0.3123-2.7729-0.2358 + C19.4482,588.7483,19.6348,589.3318,19.6283,590.2834z`}),ex=(0,n.jsx)("path",{d:`M7.1596,631.7974c-0.1576-0.0848-0.2995-0.1746-0.4516-0.2407c-0.7973-0.3461-1.4434-0.9031-2.0826-1.4724 + c-0.2267-0.2019-0.359-0.4456-0.429-0.7415c-0.2181-0.9221-0.2603-1.8554-0.1801-2.7936c0.0188-0.2202,0.0989-0.4543,0.2141-0.6434 + c0.2811-0.4617,0.5888-0.9084,0.9054-1.347c0.3119-0.4321,0.7272-0.7391,1.2317-0.9229c0.154-0.0562,0.3013-0.1307,0.46-0.2004 + c0.3596-2.2829,1.2556-4.3467,3.0341-5.872c0.2193-0.1938,0.4446-0.3793,0.5025-0.6675c1.292-0.8585,2.6879-1.3619,4.1747-1.6626 + c1.0673-0.2159,2.115-0.0891,3.1667,0.0598c1.0416,0.1473,2.0087,0.5314,2.9556,0.9721c0.2884,0.1342,0.532,0.3184,0.7177,0.5837 + c0.0939,0.1341,0.2174,0.2504,0.34,0.3611c0.4479,0.4043,0.901,0.8027,1.4111,1.2558c1.9551,0.562,2.3992,2.2625,2.6856,4.0641 + c0.6155,0.4104,1.074,1.0034,1.5495,1.582c0.6707,0.8387,0.6847,2.0851,0.6469,3.1125c-0.0221,0.3636-0.1328,0.6938-0.366,0.9776 + c-0.3958,0.4817-0.7928,0.9625-1.213,1.4725c-0.0987,0.593-0.2046,1.2285-0.3083,1.8511c-1.8614,2.6172-4.673,4.5536-7.8848,4.9425 + c-2.1001,0.1706-4.2176-0.2892-6.15-1.1039c-1.331-0.5525-2.6041-1.2123-3.7886-2.0386c-0.2273-0.1586-0.4151-0.3409-0.5558-0.5793 + C7.5654,632.4419,7.3742,632.1439,7.1596,631.7974z M9.9261,632.418c1.9333,1.6447,4.6105,2.2804,7.0873,2.3739 + c2.6471,0.0969,5.3061-0.9612,7.1066-2.9202c1.0845-1.1583,0.9494-3.3475,0.8528-4.8384c-0.0047-0.0509-0.0488-0.0981-0.0853-0.1677 + c-0.9517,0.7366-1.8656,1.0948-3.0682,1.0808c-1.0913-0.0212-2.5139-0.3362-3.2266-1.2297 + c-0.0559-0.0729-0.0883-0.1967-0.2535-0.1553c-0.2221,0.5106-0.5205,0.9247-1.0188,1.1946 + c-1.3558,0.7569-2.8936,0.9471-4.4125,0.666c-1.1852-0.2159-2.1475-0.7554-2.7958-1.7954 + c-0.0457-0.0733-0.0957-0.1324-0.2312-0.0948C9.6177,628.4836,9.5117,630.4454,9.9261,632.418z M16.9234,624.6812 + c-0.0929-0.7559-0.171-1.5624-0.2958-2.3617c-0.1344-0.8609-0.66-1.326-1.5281-1.3403c-1.0261-0.0168-2.0231,0.1788-2.987,0.5334 + c-0.6047,0.2398-0.985,0.5198-0.9369,1.221c0.0733,0.9684,0.089,1.9716,0.5392,2.8565c0.0809,0.1667,0.1736,0.3324,0.288,0.4772 + c0.8386,1.0387,2.5279,0.7842,3.6948,0.5983c0.5843-0.1247,1.1076-0.4958,1.172-1.126 + C16.9046,625.2733,16.9046,625.0023,16.9234,624.6812z M21.6191,620.4529c-0.0017,0.0175-0.0034,0.035-0.0052,0.0525 + c-0.3115,0-0.6233-0.0067-0.9345,0.0032c-0.5361,0.032-1.0458,0.3474-1.0523,0.9343c-0.0091,0.1866-0.0159,0.3746-0.003,0.5606 + c0.0767,0.9945,0.1319,1.9932,0.2703,2.9814c0.0842,0.616,0.4188,1.27,1.1238,1.2902c0.6491,0.0358,1.2906-0.0111,1.9111-0.2087 + c0.7331-0.2171,1.1365-0.8423,1.2138-1.5837c0.1675-0.9588,0.0355-1.9041-0.1108-2.852 + C23.8612,620.4899,22.485,620.6147,21.6191,620.4529z`}),ej=(0,n.jsx)("path",{d:`M7.1503,567.782c-0.1483-0.0828-0.2706-0.1646-0.4032-0.2228c-0.774-0.3395-1.4141-0.8671-2.0441-1.416 + c-0.2809-0.2447-0.4574-0.5254-0.5335-0.8874c-0.1901-0.9037-0.2245-1.8154-0.1633-2.7332c0.0169-0.2542,0.0994-0.4906,0.2415-0.701 + c0.3026-0.4481,0.6013-0.8995,0.9214-1.3349c0.3025-0.4115,0.7008-0.7057,1.1902-0.8723c0.1551-0.0528,0.3025-0.1283,0.4725-0.2017 + c0.3484-2.2906,1.2933-4.3812,3.0833-5.8978c0.2052-0.1786,0.4146-0.3507,0.4603-0.6281c1.4036-0.9257,2.9575-1.4906,4.5997-1.7225 + c1.9165-0.1705,3.8411,0.2081,5.5729,1.0458c0.3427,0.1672,0.658,0.3514,0.8661,0.6866c0.064,0.1031,0.1646,0.186,0.2568,0.2688 + c0.4642,0.4166,0.9312,0.8301,1.449,1.2909c2.0428,0.6213,2.2761,2.2139,2.7116,4.0961c0.6049,0.3986,1.0775,1.0057,1.5632,1.6022 + c0.6646,0.8446,0.6676,2.1497,0.6185,3.179c-0.0235,0.3444-0.1461,0.6479-0.3647,0.9117c-0.3976,0.4797-0.7988,0.9566-1.2294,1.4716 + c-0.098,0.5801-0.2054,1.215-0.3194,1.89c-1.9347,2.5532-4.7738,4.5264-8.022,4.8642c-1.8709,0.1149-3.7513-0.2519-5.4973-0.9222 + c-1.4793-0.575-2.8899-1.2791-4.2039-2.1744c-0.2986-0.2034-0.5532-0.431-0.7254-0.7542 + C7.5047,568.3458,7.3326,568.0848,7.1503,567.782z M18.3401,562.3979c-0.0694,0.1205-0.1084,0.1712-0.1302,0.2286 + c-0.2116,0.5577-0.6208,0.9281-1.139,1.1876c-1.3997,0.7044-2.9764,0.8767-4.4965,0.5099 + c-1.0543-0.2487-1.9224-0.7758-2.5099-1.7126c-0.0391-0.0623-0.0734-0.1532-0.2223-0.0915c-0.206,1.0214-0.226,2.0795-0.225,3.1371 + c0.0009,0.9363,0.0228,1.8737,0.3043,2.7873c1.7697,1.4171,4.0164,2.0873,6.2451,2.2812c2.9867,0.3301,6.1877-0.7599,8.1351-3.0941 + c0.8276-0.9631,0.7403-3.309,0.6521-4.5391c-0.0063-0.0767-0.0455-0.1507-0.0809-0.2626c-0.0982,0.062-0.1718,0.0939-0.227,0.1456 + c-0.3103,0.2911-0.683,0.4683-1.0747,0.6196C22.0529,564.2319,19.2498,563.9535,18.3401,562.3979z M14.2327,562.7482 + c0.0009,0.0134,0.0019,0.0267,0.0028,0.04c3.1207-0.1339,2.6852-1.1499,2.4477-3.7458c-0.0676-1.056-0.3005-1.9584-1.5005-2.1089 + c-0.2052-0.0249-0.4199-0.0341-0.6229-0.0029c-0.6373,0.0981-1.2775,0.1924-1.9039,0.3416 + c-0.359,0.0855-0.6995,0.2616-1.0369,0.4211c-0.3055,0.1445-0.4686,0.4015-0.4791,0.7471 + c-0.0308,1.0083,0.0822,1.9937,0.4367,2.9464C12.0188,562.6014,13.0688,562.8245,14.2327,562.7482z M19.7388,556.8923 + c-0.2174,0.3619-0.2109,0.7396-0.1841,1.1116c0.0642,0.89,0.1402,1.7794,0.2245,2.6677c0.0534,0.6934,0.3753,1.5602,1.1934,1.5812 + c0.6053,0.0277,1.2055-0.0048,1.7908-0.1663c0.9023-0.2371,1.2815-0.9016,1.3566-1.7985c0.0949-0.8732,0.0258-1.7375-0.1097-2.6036 + c-0.0789-0.6115-0.5112-0.9247-1.0681-1.0538c-0.8161-0.1903-1.641-0.2301-2.4711-0.1237 + C20.1747,556.5449,19.9168,556.6738,19.7388,556.8923z`}),eM=(0,n.jsx)("path",{d:`M6.0084,1175.6343c-0.1005-0.5995-0.2035-1.2144-0.3051-1.8207c-0.3889-0.4369-0.7692-0.8768-1.1638-1.3035 + c-0.3279-0.3545-0.4735-0.775-0.5072-1.2454c-0.057-0.7972,0.0332-1.5814,0.2448-2.3485c0.0592-0.2146,0.1746-0.4258,0.3089-0.6053 + c0.4366-0.584,0.9006-1.1462,1.4987-1.6165c0.3576-1.9703,0.661-3.7281,2.894-4.2766c0.5271-0.464,1.0272-0.9027,1.5248-1.3442 + c0.0615-0.0546,0.1217-0.1174,0.1624-0.188c0.1869-0.3245,0.4906-0.4941,0.812-0.6548c1.5978-0.7987,3.2993-1.1337,5.0723-1.1226 + c1.7905,0.1172,3.4717,0.7422,5.0199,1.6837c0.0909,0.2736,0.3114,0.4852,0.5496,0.6903c1.8234,1.5486,2.7156,3.5272,3.1112,5.8506 + c0.1628,0.0688,0.3289,0.1523,0.5034,0.2101c0.5128,0.1697,0.9196,0.4795,1.2339,0.9128c0.281,0.3872,0.5518,0.782,0.8322,1.1697 + c0.1894,0.2617,0.2806,0.5571,0.3037,0.8728c0.0657,0.8975,0.0026,1.788-0.1561,2.6732c-0.0651,0.363-0.2376,0.6445-0.5143,0.8972 + c-0.7287,0.6658-1.5203,1.2296-2.4459,1.6233c-0.1768,0.3262-0.3582,0.6522-0.5312,0.9828 + c-0.1088,0.2081-0.259,0.3695-0.4515,0.5052c-2.0296,1.4309-4.2329,2.4821-6.6623,3.0278 + C12.9755,1181.2976,8.6608,1179.1365,6.0084,1175.6343z M7.0635,1170.825c-0.233,1.3595-0.1681,2.6699,0.1487,4.0017 + c0.0904,0.3793,0.2752,0.6885,0.5274,0.9745c3.6834,4.0085,10.3823,3.7001,14.4823,0.476c0.3649-1.7865,0.2501-3.5527,0.1439-5.3187 + c-0.0147-0.2449-0.0228-0.4934-0.1464-0.7109c-0.0421,0.0051-0.0723-0.0002-0.0819,0.0115 + c-0.0519,0.063-0.1055,0.1265-0.1463,0.1968c-0.9829,1.7334-3.1638,2.1604-5.0039,1.9277c-1.1557-0.2119-2.63-0.5576-3.1323-1.7524 + c-0.0362-0.0901-0.0962-0.1708-0.171-0.3004c-0.6937,1.3275-2.7969,1.7157-4.1448,1.5481 + c-0.7909-0.1038-1.5443-0.3419-2.1808-0.8585C7.2832,1170.959,7.1963,1170.9121,7.0635,1170.825z M20.8705,1166.0751 + c-0.1704-0.3369-0.3798-0.4794-0.6094-0.5774c-0.9308-0.4305-1.9496-0.5961-2.9658-0.6646c-0.2057-0.014-0.4163,0.0034-0.6214,0.031 + c-0.7401,0.0854-1.1921,0.7118-1.277,1.4127c-0.0819,0.7445-0.1608,1.4896-0.2287,2.2355 + c-0.0742,0.9236,0.0743,1.7953,1.0926,2.0321c0.8741,0.2335,1.7668,0.2666,2.6608,0.1075 + C20.8459,1170.3555,20.9743,1167.5797,20.8705,1166.0751z M8.1534,1165.1934c-0.0387,0.1259-0.1212,0.2994-0.1423,0.4803 + c-0.122,0.9882-0.2435,1.9844-0.0523,2.9723c0.1837,1.4486,1.794,1.6183,2.9803,1.5864c1.0221-0.0228,1.2281-0.8682,1.3075-1.7234 + c0.0778-0.8477,0.1362-1.697,0.2033-2.5458c0.0283-0.3572,0.0066-0.7052-0.1653-1.0236c-0.2307-0.2803-0.5375-0.4044-0.8772-0.4269 + C10.4323,1164.465,8.8745,1164.4159,8.1534,1165.1934z`}),eT=(0,n.jsx)("path",{d:`M26.4153,533.6667c-0.1144,0.6823-0.2176,1.2975-0.3206,1.9116c-1.9155,2.6268-4.8655,4.527-8.1244,4.8784 + c-1.8407,0.0724-3.6597-0.2556-5.3802-0.9155c-1.5194-0.5916-2.9684-1.3127-4.3117-2.2431 + c-0.2822-0.1954-0.5065-0.4225-0.6678-0.724c-0.1469-0.2745-0.314-0.5383-0.4861-0.8304c-0.6568-0.3589-1.3657-0.6741-1.9381-1.2062 + c-0.2889-0.2685-0.5853-0.5289-0.826-0.7458c-0.4668-1.0598-0.34-2.1173-0.3625-3.2152c0.0005-0.297,0.0893-0.5765,0.2579-0.8234 + c0.6043-0.8229,1.0765-1.877,2.1374-2.1799c0.1374-0.0427,0.2654-0.1153,0.4326-0.1896c0.4167-2.3699,1.2482-4.2661,3.0939-5.8761 + c0.1081-0.0977,0.2304-0.1846,0.3193-0.2975c0.0874-0.1113,0.1407-0.2495,0.2109-0.3795c3.155-2.0222,6.7373-2.2455,10.1097-0.6144 + c0.346,0.1627,0.6594,0.3513,0.8643,0.6885c0.0527,0.0867,0.1338,0.1589,0.2107,0.2278c0.4805,0.4301,0.9635,0.8575,1.388,1.2344 + c1.0996,0.5008,1.8369,0.9413,2.2393,2.1186c0.2141,0.6761,0.3774,1.3613,0.5145,2.06c0.6933,0.4335,1.1713,1.0666,1.6689,1.6812 + c0.6252,0.7939,0.6326,2.22,0.5706,3.1945c-0.0255,0.322-0.1485,0.6021-0.3449,0.8557 + C27.2882,532.7709,26.9021,533.2618,26.4153,533.6667z M9.8552,530.4042c-0.4269,1.2194-0.4057,4.6566,0.023,5.9906 + c1.9347,1.5937,4.4918,2.2284,6.9542,2.347c2.7908,0.1359,5.6923-1.0073,7.4923-3.1731c0.1881-0.23,0.3348-0.4763,0.3904-0.7699 + c0.2768-1.2224,0.3533-2.4741,0.2035-3.7185c-0.0092-0.0905,0.0042-0.2098-0.1476-0.264c-1.4618,1.2379-3.4959,1.3499-5.2139,0.6152 + c-0.4922-0.2015-0.9195-0.4827-1.2092-0.9435c-0.0165-0.0263-0.0679-0.0306-0.1032-0.0449 + c-0.0173,0.0093-0.0413,0.0142-0.0508,0.0287c-0.0337,0.0517-0.0681,0.1043-0.0924,0.1608 + c-0.5336,1.1981-1.9618,1.5283-3.1343,1.7549c-0.9011,0.1497-1.7876,0.0328-2.6617-0.1699 + C11.2472,531.9721,10.472,531.3018,9.8552,530.4042z M11.1796,525.9323c-0.0337,0.1252-0.0692,0.2042-0.0745,0.2852 + c-0.0714,1.0903,0.0106,2.1623,0.4296,3.1849c0.2806,0.6849,0.7842,1.1027,1.5238,1.2404c0.8548,0.1592,1.6982,0.0719,2.5397-0.0836 + c0.1406-0.0261,0.2756-0.0925,0.4076-0.1527c0.5354-0.2285,0.7606-0.7721,0.7541-1.3265c0.001-1.0221-0.1058-2.0361-0.2919-3.0385 + c-0.1257-0.7722-0.8696-1.2076-1.62-1.1666c-0.8573,0.019-1.6959,0.1669-2.515,0.4127c-0.2562,0.0768-0.5009,0.2034-0.7369,0.3326 + C11.4363,525.7076,11.3009,525.8394,11.1796,525.9323z M24.1631,527.3612c-0.0672-0.5988-0.1253-1.1987-0.2047-1.7958 + c-0.0538-0.4048-0.2827-0.6891-0.6756-0.821c-0.2555-0.0858-0.5119-0.1899-0.776-0.2247c-0.4525-0.0597-0.911-0.0778-1.3676-0.1006 + c-0.9394-0.0122-1.7225,0.1608-1.635,1.2586c0.0464,1.0585,0.1544,2.1145,0.2384,3.1713c0.0082,0.1032,0.023,0.2087,0.0548,0.3066 + c0.0511,0.1575,0.1048,0.3172,0.1822,0.4627c0.1889,0.3547,0.4882,0.5699,0.8915,0.6016c0.6693,0.0526,1.3308-0.005,1.9731-0.2115 + C24.0309,529.6615,24.0964,528.4063,24.1631,527.3612z`}),e_=(0,n.jsx)("path",{d:`M7.076,503.6653c-1.0867-0.4452-1.9795-1.1485-2.7287-1.9308c-0.2124-0.4093-0.2384-0.7866-0.2915-1.1565 + c-0.1012-0.7041-0.0935-1.4117-0.057-2.1199c0.0143-0.2772,0.0976-0.5331,0.2547-0.7604c0.2959-0.4279,0.5956-0.8532,0.8991-1.2758 + c0.301-0.419,0.7043-0.7015,1.1891-0.8736c0.1559-0.0553,0.307-0.124,0.4798-0.1946c0.5324-2.6862,1.3373-4.3932,3.4692-6.1772 + c0.0569-0.116,0.1201-0.2451,0.1753-0.3577c3.2461-2.0674,6.8074-2.2487,10.2405-0.5351c0.2668,0.1343,0.495,0.2985,0.6718,0.5417 + c0.0967,0.1329,0.2139,0.2539,0.3359,0.3649c0.4309,0.392,0.8678,0.7773,1.3725,1.2277c1.9239,0.6277,2.3248,2.2292,2.6151,4.0274 + c0.0485,0.0623,0.0674,0.1053,0.1003,0.1263c0.7002,0.4453,1.1913,1.0942,1.6955,1.7314c0.5625,0.7441,0.5663,2.0508,0.5478,2.9568 + c-0.018,0.4561-0.1503,0.855-0.4572,1.197c-0.3884,0.433-0.7705,0.8716-1.2196,1.3807c-0.0585,0.3546-0.1511,0.8031-0.2015,1.2563 + c-0.0436,0.3919-0.2094,0.7035-0.462,0.9981c-1.9172,2.2451-4.5493,3.9583-7.5274,4.2871c-3.584,0.3125-7.0675-1.1982-9.9891-3.1552 + c-0.2658-0.1802-0.4718-0.3995-0.6186-0.6856C7.4278,504.261,7.2638,503.9948,7.076,503.6653z M18.184,498.2725 + c-0.0912,0.1177-0.1422,0.1595-0.1621,0.2129c-0.3093,0.8558-1.1414,1.2508-1.9442,1.5235 + c-2.0816,0.6883-4.8635,0.4773-6.1605-1.5067c-0.0316-0.0488-0.0853-0.0832-0.1641-0.1577 + c-0.0462,0.1676-0.1005,0.3004-0.1178,0.4378c-0.1624,1.2844-0.1983,2.5744-0.1188,3.8654 + c0.0357,0.5787,0.0784,1.1625,0.2949,1.7117c2.2483,1.7685,5.3676,2.4794,8.1843,2.3393c2.5092-0.2519,5.0682-1.4153,6.5609-3.4886 + c0.4199-1.1982,0.5421-3.4559,0.2175-4.482c-1.4056,1.2097-3.363,1.3802-5.0555,0.7512 + C19.0993,499.2634,18.5358,498.9538,18.184,498.2725z M14.1946,498.6258c2.6013-0.0456,2.6071-0.9332,2.3757-3.2472 + c-0.0516-0.4748-0.104-0.9516-0.1989-1.4189c-0.1601-0.9487-1.1944-1.3033-2.0529-1.1552c-0.9234,0.1366-1.8669,0.2341-2.712,0.6623 + c-0.4218,0.1991-0.6473,0.5058-0.6226,0.9802c0.0334,1.0364,0.0644,2.0959,0.5363,3.0456 + C12.0373,498.5479,13.0412,498.6654,14.1946,498.6258z M21.2373,492.3461c-0.0012,0.0154-0.0024,0.0307-0.0036,0.0461 + c-0.2493,0-0.4993-0.0109-0.7477,0.0042c-0.5441,0.0471-1.0393,0.3265-1.0815,0.9179c-0.0187,0.1854-0.0229,0.3745-0.0108,0.5605 + c0.05,0.7675,0.1061,1.5346,0.1661,2.3014c0.0569,0.5313,0.0916,1.0986,0.4222,1.5435c0.1688,0.2253,0.3831,0.3791,0.669,0.4157 + c1.118,0.1243,2.9161,0.0312,3.2374-1.2979c0.0479-0.18,0.0817-0.3641,0.1134-0.5478c0.129-0.7469,0.0669-1.4948-0.0271-2.2369 + c-0.1289-1.0175-0.1557-1.2343-1.3797-1.5377C22.1555,492.4062,21.6906,492.3994,21.2373,492.3461z`}),eN=(0,n.jsx)("path",{d:`M25.0576,1207.5861c-0.2075,0.4523-0.3809,0.8302-0.5573,1.2148c-1.7832,1.434-3.8826,2.4476-6.0641,3.1262 + c-4.7469,1.4725-9.1408-0.4176-12.2763-4.0707c-0.2158-0.592-0.2437-1.2201-0.3528-1.884 + c-0.5063-0.4196-0.9471-0.9723-1.4114-1.4451c-0.2395-0.2549-0.3458-0.569-0.3744-0.9065 + c-0.0705-0.9214-0.0471-2.5977,0.5691-3.3164c0.4941-0.619,0.9954-1.2299,1.6723-1.6823c0.3139-1.8921,0.6073-3.528,2.6747-4.1661 + c0.5497-0.4883,1.0483-0.929,1.5435-1.3734c0.0765-0.0687,0.1513-0.1464,0.2036-0.2338c0.1807-0.302,0.4656-0.4617,0.768-0.613 + c1.6978-0.8318,3.5594-1.2251,5.4441-1.106c1.6312,0.2126,3.1627,0.7118,4.5915,1.6228c0.0609,0.2695,0.293,0.4456,0.5142,0.6349 + c1.7537,1.4281,2.8425,3.515,3.183,5.7389c0.1185,0.1787,0.2829,0.2198,0.4417,0.2668c0.6246,0.1851,1.1091,0.5591,1.4811,1.0876 + c0.2396,0.3405,0.4768,0.6827,0.7214,1.0195c0.1517,0.209,0.2374,0.4417,0.2565,0.6942c0.0853,1.1267,0.0344,2.2446-0.2206,3.3512 + C27.0654,1206.4274,26.1319,1207.109,25.0576,1207.5861z M14.0679,1202.2385c-0.0502,0.0446-0.1112,0.0762-0.1385,0.1262 + c-0.5608,0.9858-1.7926,1.303-2.8381,1.4619c-1.3384,0.1704-2.5631-0.1007-3.6396-0.9445 + c-0.0566-0.0444-0.1314-0.0654-0.2405-0.1179c-0.0264,0.1477-0.0532,0.2448-0.0597,0.3431 + c-0.1147,1.3282-0.1243,2.6694,0.2399,3.9636c0.0549,0.2073,0.1473,0.3888,0.2879,0.546c1.3515,1.5942,3.3234,2.4749,5.334,2.8844 + c1.3819,0.3199,2.8257,0.2762,4.2109-0.0063c1.6799-0.3207,4.0214-1.1768,5.2402-2.3995c0.3755-1.7042,0.2535-3.4478,0.1439-5.1908 + c-0.0151-0.2402-0.011-0.4872-0.1437-0.6981c-0.0464,0.0092-0.0758,0.0061-0.085,0.0182c-0.0495,0.0659-0.0978,0.1334-0.1398,0.2043 + c-0.26,0.4388-0.6234,0.774-1.0372,1.0646c-1.6549,1.0525-3.8753,1.01-5.6419,0.2637c-0.6347-0.2706-1.1454-0.674-1.3937-1.3475 + C14.1458,1202.3527,14.1054,1202.3024,14.0679,1202.2385z M21.1067,1197.7993c-0.7963-0.8679-2.1261-0.887-3.1983-1.057 + c-0.3073-0.0369-0.6267-0.0332-0.9342,0.0046c-0.8989,0.0938-1.2699,0.9043-1.3133,1.7194 + c-0.0933,0.8884-0.1885,1.785-0.1378,2.6786c0.0294,0.7448,0.5536,1.1968,1.2647,1.3342c0.6783,0.1445,1.3662,0.1561,2.0521,0.1033 + c0.2858-0.022,0.5724-0.1099,0.8455-0.2054c0.4303-0.1505,0.7471-0.4468,0.9463-0.8589c0.4841-1.0042,0.588-2.1298,0.5604-3.2289 + C21.1875,1198.1259,21.1366,1197.9639,21.1067,1197.7993z M12.6803,1198.9692c0.0103,0.0004,0.0207,0.0006,0.031,0.001 + c0.0094-0.5186,0.0271-1.0371,0.0256-1.5557c0.0102-0.6002-0.5192-0.8748-1.0466-0.9431c-0.6402-0.11-2.0891,0.064-2.7019,0.2776 + c-0.5151,0.1794-0.7735,0.5291-0.8272,1.0537c-0.0317,0.3097-0.0528,0.6208-0.0903,0.9298 + c-0.0761,0.6259-0.0124,1.2449,0.0971,1.8589c0.221,1.4932,1.8065,1.6093,3.0359,1.5979c0.123-0.0013,0.2453-0.0404,0.3686-0.0573 + c0.2877-0.0398,0.5057-0.1968,0.6525-0.4336c0.2932-0.4393,0.3328-0.9749,0.3835-1.4861 + C12.6444,1199.7991,12.6574,1199.3838,12.6803,1198.9692z`}),eK=(0,n.jsx)("path",{d:`M7.0627,471.6352c-1.0604-0.4632-1.9731-1.1412-2.7563-1.987c-0.2066-0.4307-0.2502-0.8921-0.2817-1.3451 + c-0.0418-0.6012-0.0295-1.2065-0.0327-1.81c-0.0018-0.3423,0.099-0.655,0.3019-0.9351c0.2808-0.3877,0.5541-0.7809,0.8345-1.1688 + c0.3151-0.436,0.7336-0.7311,1.2434-0.9005c0.138-0.0458,0.272-0.1033,0.4083-0.1556c0.1422-0.1987,0.1419-0.4348,0.1903-0.6552 + c0.3948-2.0549,1.4635-3.9494,3.0826-5.2889c0.1914-0.1636,0.3854-0.322,0.4297-0.5836c3.2278-2.0704,6.9542-2.2365,10.3437-0.4647 + c0.2114,0.1035,0.3798,0.2469,0.5221,0.4334c0.1124,0.1474,0.2372,0.2885,0.3736,0.4137c0.4137,0.3799,0.8358,0.7507,1.3199,1.1835 + c2.0093,0.7187,2.3033,2.2664,2.6283,4.1573c0.6738,0.3689,1.1417,0.954,1.6284,1.5252c0.3489,0.4096,0.573,0.8625,0.6523,1.392 + c0.1052,0.7018,0.1739,1.4033,0.0866,2.1146c-0.0395,0.3214-0.1468,0.6004-0.3497,0.8517 + c-0.4057,0.5027-0.8222,0.9944-1.3388,1.4207c-0.101,0.6067-0.2031,1.2202-0.2993,1.7985 + c-1.5683,2.0268-3.6564,3.5618-6.1087,4.3206c-2.5054,0.7922-5.2236,0.3755-7.6307-0.5687 + c-1.4955-0.5935-2.9165-1.3272-4.2324-2.2591c-0.2263-0.1603-0.4121-0.3437-0.5371-0.5934 + C7.4013,472.2516,7.2476,471.9796,7.0627,471.6352z M9.6781,472.2074c0.3924,0.4234,0.8926,0.6858,1.3823,0.9562 + c1.2895,0.7121,2.6796,1.1248,4.1323,1.3344c3.1482,0.5449,6.5265-0.3081,8.7916-2.6374c0.4094-0.4199,0.6605-0.8911,0.7533-1.466 + c0.1802-1.1162,0.1969-2.2358,0.1011-3.3591c-0.0101-0.1188-0.0554-0.2347-0.0961-0.3997c-1.6119,1.3612-3.7436,1.4188-5.5975,0.565 + c-0.3866-0.1714-0.7139-0.4213-0.9469-0.7856c-0.0471-0.0736-0.0678-0.2091-0.2239-0.1705c-0.029,0.0482-0.0684,0.097-0.0902,0.1526 + c-0.3008,0.806-1.0748,1.1984-1.8353,1.4716c-2.0744,0.7065-4.8394,0.5326-6.1965-1.396c-0.0434-0.062-0.1117-0.1066-0.2086-0.1966 + c-0.1759,0.6797-0.2122,1.3241-0.2355,1.9633C9.3597,469.5694,9.3273,470.9022,9.6781,472.2074z M10.9048,461.9841 + c-0.0854,1.1304,0.0468,2.4056,0.5524,3.4786c0.2907,0.6813,1.0368,0.9866,1.7346,1.032c0.5405,0.016,1.084,0.0151,1.6228-0.026 + c0.3059-0.0233,0.615-0.1122,0.9043-0.2204c0.7911-0.2849,0.8266-1.058,0.8216-1.7855c-0.0029-0.291-0.0265-0.5829-0.0597-0.8722 + c-0.0688-0.5992-0.1149-1.2041-0.2358-1.7932c-0.1192-0.5807-0.5245-0.9376-1.1071-1.054c-0.2411-0.0482-0.498-0.0653-0.7421-0.0407 + c-0.538,0.0541-1.0751,0.1285-1.6074,0.2236C12.172,461.0485,11.1543,461.3249,10.9048,461.9841z M23.7183,461.1117 + c-0.3779-0.4666-0.8427-0.6058-1.3135-0.6783c-0.5526-0.0851-1.1154-0.1342-1.6743-0.1382c-0.478-0.0034-0.9614,0.067-1.2886,0.4963 + c-0.1856,0.4837-0.1979,0.5555-0.1585,1.1541c0.0804,1.0725,0.0925,2.1649,0.3461,3.2141c0.1513,0.5853,0.5575,0.9012,1.1709,0.9427 + c0.5648,0.0381,1.1235-0.0109,1.6718-0.1361c0.7864-0.1796,1.2596-0.6663,1.4116-1.4742 + C24.0996,463.3443,23.9798,462.2208,23.7183,461.1117z`}),eL=(0,n.jsx)("path",{d:`M10.4132,425.0785c0.0583-0.1381,0.0983-0.2327,0.1355-0.3208c3.1356-2.0091,6.8125-2.1691,10.1194-0.5018 + c0.3159,0.1319,0.5771,0.3193,0.7593,0.6197c0.073,0.1205,0.1945,0.214,0.3023,0.3105c0.4029,0.361,0.8092,0.7181,1.2863,1.1405 + c1.954,0.7145,2.3116,2.3104,2.5705,4.1795c0.1058,0.0695,0.2056,0.1413,0.311,0.2034c0.3635,0.2138,0.6683,0.4951,0.9404,0.8133 + c0.1759,0.2057,0.3386,0.4229,0.5195,0.624c0.3304,0.3675,0.5322,0.7925,0.6022,1.2799c0.1007,0.7012,0.1826,1.4012,0.1053,2.1141 + c-0.0445,0.4107-0.1755,0.7643-0.4589,1.0659c-0.4266,0.4541-0.8467,0.9142-1.3144,1.4204 + c-0.0856,0.5023-0.1832,1.0755-0.2809,1.6485c-2.0044,2.4926-4.9915,4.3626-8.2202,4.6104 + c-3.683,0.1765-7.2181-1.3568-10.143-3.5193c-0.1948-0.3683-0.3989-0.7539-0.631-1.1927c-1.0178-0.4458-1.9274-1.1292-2.7221-1.9696 + c-0.2202-0.4432-0.2434-0.9283-0.2759-1.4019c-0.0399-0.5804-0.022-1.1649-0.028-1.7477c-0.004-0.3884,0.115-0.7354,0.3459-1.0479 + c0.5813-0.7548,1.0197-1.6882,2.0107-1.9622c0.1575-0.0489,0.3081-0.1205,0.446-0.1754c0.1356-0.1993,0.1376-0.4124,0.1809-0.6135 + C7.4428,428.3284,8.5668,426.5607,10.4132,425.0785z M24.4554,439.2222c0.4469-1.4791,0.5021-3.0585,0.2597-4.5772 + c-0.0049-0.027-0.0572-0.0455-0.1059-0.0817c-1.5552,1.3673-3.8263,1.3594-5.628,0.5154c-0.3865-0.1748-0.7067-0.4361-0.9352-0.8011 + c-0.0519-0.0829-0.0788-0.2001-0.2241-0.1885c-0.3367,0.75-0.7007,1.1203-1.4594,1.4454c-2.1431,0.9183-5.1345,0.8481-6.6261-1.1722 + c-0.043-0.0599-0.1138-0.0997-0.1841-0.1593c-0.3427,1.2402-0.4265,4.6762,0.0684,5.9707c1.9285,1.5757,4.4645,2.2392,6.913,2.399 + C19.4658,442.7321,22.6194,441.5748,24.4554,439.2222z M16.372,432.0873c0.0088-0.0005,0.0175-0.001,0.0263-0.0016 + c-0.0593-0.6408-0.1146-1.282-0.1804-1.9221c-0.0902-1.0911-0.7212-1.6412-1.813-1.6007c-1.0661,0.0862-2.1751,0.2105-3.1305,0.7273 + c-0.319,0.1761-0.4889,0.4412-0.5002,0.8038c-0.0091,1.5601,0.0931,4.0582,2.0869,4.2429c1.122,0.0974,3.3944,0.2289,3.5064-1.3172 + C16.3936,432.7109,16.372,432.3982,16.372,432.0873z M23.92,431.0692c-0.059-0.5361-0.1207-1.072-0.1763-1.6085 + c-0.0427-0.412-0.2539-0.696-0.637-0.8449c-0.2313-0.0899-0.4651-0.1817-0.706-0.2371c-0.6931-0.1595-1.3996-0.1664-2.1063-0.1446 + c-0.5718,0.0228-1.1084,0.3194-1.1428,0.9938c-0.0072,0.1243-0.0134,0.2496-0.006,0.3735c0.0512,0.8496,0.0942,1.7,0.166,2.5479 + c0.0755,0.8206,0.2998,1.7921,1.2982,1.8363c1.1881,0.0742,2.8465,0.0047,3.1397-1.4306 + C23.8671,432.0654,23.9034,431.5718,23.92,431.0692z`}),ew=(0,n.jsx)("path",{d:`M21.4215,1224.6814c0.0184,0.2764,0.2432,0.4106,0.4342,0.5687c1.9621,1.6052,2.8312,3.399,3.3534,5.8368 + c0.2135,0.082,0.4227,0.1731,0.6387,0.2429c0.4084,0.1321,0.7413,0.3696,1.0224,0.6885c0.4141,0.4696,0.7774,0.9764,1.1053,1.4858 + c0.1956,1.0471,0.1301,3.1567-0.1205,3.9314c-0.7646,0.8584-1.692,1.5167-2.7146,2.0111c-0.1391,0.4087-0.2661,0.7814-0.3905,1.1469 + c-2.8674,2.2584-6.5972,3.957-10.3089,3.6661c-3.1632-0.3071-6.0231-2.0122-8.1659-4.3282 + c-0.2121-0.5114-0.1825-1.0885-0.3315-1.6748c-0.5391-0.3726-1.0036-0.8761-1.4729-1.3781c-0.3187-0.3409-0.4719-0.72-0.4824-1.179 + c0.0054-0.964-0.1041-2.5737,0.5705-3.3132c0.5514-0.6516,1.0744-1.42,1.8923-1.7251c0.1415-0.2117,0.1182-0.4272,0.1555-0.6295 + c0.2472-1.6927,0.6234-2.9148,2.3361-3.6001c0.5447-0.4827,1.043-0.923,1.5393-1.3656c0.0614-0.0547,0.1324-0.1121,0.1652-0.1836 + c0.1513-0.3302,0.4489-0.4749,0.7484-0.6272C14.6614,1222.5912,18.2589,1222.7328,21.4215,1224.6814z M22.8444,1233.9517 + c-0.1756,0.2174-0.2518,0.3082-0.3243,0.402c-1.5321,2.0028-4.8164,2.0109-6.8825,0.8781 + c-0.4259-0.2477-0.7484-0.5883-0.9335-1.0555c-0.0379-0.0957-0.0293-0.2394-0.1719-0.2871 + c-0.0405,0.0585-0.0857,0.1049-0.1092,0.1604c-0.2062,0.4886-0.5867,0.8086-1.0456,1.0297 + c-1.7445,0.8689-4.1969,0.9043-5.715-0.4481c-0.0378-0.0366-0.105-0.0428-0.159-0.0632c-0.368,1.0685-0.2704,3.764,0.2208,4.8762 + c1.5611,1.8572,3.9745,2.718,6.314,3.0381c1.3024,0.1907,2.6258,0.0591,3.904-0.2395c1.5159-0.3571,2.9321-0.9357,4.2118-1.8324 + c0.2385-0.1671,0.4832-0.3263,0.6739-0.6259C23.1336,1237.925,23.0919,1236.0204,22.8444,1233.9517z M21.474,1229.4197 + c-0.5799-0.4248-1.1528-0.7-1.8556-0.7876c-0.6189-0.0747-1.2377-0.1929-1.858-0.2035c-0.9519-0.0165-1.5328,0.5267-1.6181,1.4597 + c-0.072,0.7871-0.1079,1.5774-0.1507,2.3668c-0.0112,0.2069-0.0003,0.4169,0.0211,0.6233c0.0553,0.7357,0.5923,1.1854,1.2935,1.3157 + c1.355,0.1639,3.3228,0.3762,3.8735-1.2244c0.0642-0.1758,0.1216-0.3544,0.1709-0.5349c0.1996-0.7294,0.2468-1.4766,0.2284-2.2275 + C21.573,1229.9614,21.5153,1229.7169,21.474,1229.4197z M8.5503,1229.2178c-0.2555,1.0482-0.2351,2.1521-0.0541,3.212 + c0.2309,1.5592,1.9039,1.6139,3.1658,1.5598c1.2253-0.0269,1.3807-1.1078,1.4387-2.0297c0.0437-0.7053,0.071-1.4117,0.0969-2.118 + c0.0107-0.6061,0.0151-1.1625-0.6329-1.4188c-0.7755-0.3207-2.1359-0.0933-2.9505,0.0901 + C9.2055,1228.634,8.7848,1228.79,8.5503,1229.2178z`}),eP=(0,n.jsx)("path",{d:`M6.8532,399.1863c0.4364-2.3215,1.3635-4.2978,3.2137-5.8214c0.2209-0.1854,0.4777-0.3445,0.5251-0.6522 + c3.2966-2.0358,6.8947-2.118,10.3057-0.3474c0.1941,0.0872,0.3647,0.21,0.4671,0.3992c0.1131,0.2089,0.2923,0.3474,0.4654,0.4978 + c0.3613,0.314,0.7152,0.6364,1.1034,0.9832c0.9919,0.3692,1.7873,1.0696,2.1071,2.0974c0.2241,0.7308,0.3693,1.4485,0.4834,2.2136 + c0.9622,0.4091,1.5442,1.2301,2.1409,2.0298c0.1195,0.1602,0.1904,0.372,0.2343,0.5709c0.2214,1.0045,0.3107,2.015,0.0724,3.063 + c-0.4617,0.67-1.0367,1.2677-1.7195,1.8519c-0.0868,0.5023-0.1821,1.0535-0.2834,1.6398c-1.9332,2.2947-4.6598,3.9764-7.6505,4.4185 + c-3.8756,0.4933-7.6603-1.2343-10.7427-3.4406c-0.214-0.4001-0.3804-0.7352-0.5725-1.1519 + c-0.2395-0.1323-0.4908-0.2795-0.7494-0.4124c-0.7149-0.3674-1.2793-0.9254-1.8621-1.4601 + c-0.1606-0.1474-0.2291-0.3456-0.2633-0.5545c-0.1627-0.9919-0.1761-1.9903-0.1181-2.9909 + c0.0148-0.2552,0.0996-0.4903,0.2491-0.6974c0.2925-0.405,0.5859-0.8095,0.887-1.2081c0.3108-0.4116,0.7217-0.6838,1.2121-0.8412 + C6.5153,399.3229,6.6672,399.2572,6.8532,399.1863z M24.624,402.3627c-0.1562,0.1048-0.2297,0.1425-0.289,0.1958 + c-1.5165,1.2652-3.7282,1.1748-5.4476,0.403c-0.4467-0.1972-0.8255-0.4828-1.0549-0.9334 + c-0.0342-0.0671-0.0921-0.1221-0.1424-0.1871c-0.0418,0.0511-0.0787,0.0789-0.0925,0.1154 + c-0.2787,0.7386-0.8477,1.1603-1.5535,1.4386c-1.2274,0.5046-2.5594,0.6316-3.8596,0.3574 + c-1.0261-0.1741-1.8811-0.6468-2.5306-1.4707c-0.0627-0.0795-0.1081-0.1814-0.2366-0.1664 + c-0.3252,1.1086-0.4373,4.5437,0.0646,5.9008c1.8921,1.6095,4.4312,2.2619,6.8603,2.4464c2.9912,0.1827,6.1685-0.9266,8.0807-3.2997 + C24.8379,405.603,24.8432,404.0356,24.624,402.3627z M10.6578,397.6336c-0.1046,1.077-0.0223,2.1783,0.3532,3.1984 + c0.2816,0.753,0.8198,1.1703,1.6079,1.3042c0.7722,0.1313,1.5345,0.0371,2.298-0.0579c0.1423-0.0177,0.2833-0.0702,0.4175-0.1249 + c0.7982-0.3162,0.9006-0.9711,0.8944-1.7481c-0.0375-0.7266-0.1022-1.4519-0.1614-2.1773 + c-0.0646-0.8582-0.4952-1.5508-1.4016-1.6327c-0.8558-0.0636-2.626,0.2456-3.4046,0.6362 + C11.0121,397.1529,10.8022,397.3167,10.6578,397.6336z M19.0201,396.8297c-0.0067,0.1479-0.0302,0.3347-0.021,0.5198 + c0.0471,0.9538,0.0977,1.9075,0.1591,2.8605c0.0132,0.2054,0.061,0.4119,0.1186,0.6105c0.1861,0.6422,0.5795,0.9738,1.2524,1.0306 + c0.7192,0.0556,1.4685,0.0285,2.1479-0.2417c0.5978-0.2408,0.9134-0.7755,1.0139-1.3942c0.1727-1.0164,0.114-2.0272-0.0866-3.0334 + c-0.0474-0.2379-0.1769-0.4272-0.3852-0.5411c-0.217-0.1187-0.4425-0.2365-0.6788-0.3026 + c-0.8483-0.2373-1.7162-0.2949-2.5913-0.2077C19.5244,396.1727,19.2155,396.3961,19.0201,396.8297z`}),eA=(0,n.jsx)("path",{d:`M7.4143,376.4822c-0.1554-0.3448-0.3089-0.6851-0.4652-1.032c-0.1652-0.0939-0.3226-0.1964-0.4906-0.2766 + c-0.7836-0.374-1.4086-0.9554-2.0333-1.5385c-0.1746-0.1629-0.2745-0.3572-0.3089-0.5953 + c-0.1436-0.9939-0.1476-1.9918-0.1014-2.9917c0.0138-0.2991,0.1082-0.5696,0.2897-0.8104c0.6218-0.8113,1.0903-1.7021,2.1527-1.9875 + c0.119-0.0354,0.2339-0.0846,0.3351-0.1216c0.1529-0.1605,0.1541-0.3548,0.193-0.5358c0.4539-2.3037,1.7003-4.1935,3.5442-5.6288 + c0.0437-0.0982,0.0857-0.1923,0.1252-0.281c1.5009-0.9913,3.2286-1.4526,5.0014-1.6198c1.8159-0.0341,3.6091,0.4585,5.2227,1.2766 + c0.1892,0.095,0.3802,0.1958,0.4765,0.387c0.118,0.2342,0.314,0.3831,0.5019,0.5466c0.2983,0.2596,0.5931,0.5231,0.9387,0.8284 + c1.7692,0.7141,2.1884,1.7991,2.4867,3.5716c0.0658,0.301,0.0492,0.6221,0.2,0.914c0.4343,0.2156,0.8622,0.4328,1.1816,0.8052 + c0.2982,0.3473,0.5878,0.7021,0.8865,1.049c0.2096,0.2435,0.3417,0.5222,0.3972,0.8356c0.179,1.0099,0.2736,2.0214,0.0298,3.0801 + c-0.4876,0.6869-1.1007,1.3033-1.8047,1.8673c-0.0852,0.495-0.173,1.0054-0.2596,1.5086c-2.1627,2.4342-5.2542,4.1539-8.5299,4.3501 + C13.7989,380.1733,10.1982,378.6109,7.4143,376.4822z M17.4504,369.5341c-0.0584,0.1042-0.1074,0.1704-0.1353,0.2446 + c-0.2974,0.8082-1.0681,1.2104-1.8352,1.4671c-1.9727,0.6512-4.517,0.5435-5.9569-1.1339c-0.063-0.0746-0.1432-0.1346-0.2621-0.2446 + c-0.2465,1.0394-0.2595,2.035-0.2653,3.0294c-0.0058,0.9983,0.0353,1.9935,0.3231,2.9354c2.1044,1.7729,4.8509,2.4059,7.5313,2.4939 + c2.5752,0.0819,5.8557-1.1408,7.4732-3.1901c0.3402-1.2602,0.417-2.5014,0.3128-3.7536c-0.0322-0.3864,0.0349-0.7929-0.1732-1.194 + c-0.131,0.0959-0.2396,0.1864-0.3586,0.2601c-1.6729,1.1811-3.7972,1.0565-5.583,0.2104c-0.3852-0.1811-0.6882-0.4624-0.8889-0.8461 + C17.5858,369.724,17.5228,369.6439,17.4504,369.5341z M10.5246,365.2548c-0.1607,1.2744-0.0689,2.3824,0.3892,3.5223 + c0.5733,1.4155,2.4296,1.177,3.6693,1.0615c1.1375-0.2015,1.463-0.8046,1.4247-1.9074c-0.0191-0.8109-0.0743-1.6244-0.1721-2.4291 + c-0.1705-1.2375-1.1809-1.4824-2.2703-1.3231c-0.4737,0.0667-0.947,0.1434-1.4147,0.2429 + c-0.4073,0.0866-0.8101,0.2072-1.1608,0.4431C10.8213,364.9784,10.6759,365.1263,10.5246,365.2548z M23.6843,366.7769 + c-0.0591-0.5363-0.1206-1.0724-0.1766-1.609c-0.0384-0.3677-0.2425-0.6156-0.566-0.7614c-0.2452-0.1105-0.4982-0.2147-0.7584-0.2787 + c-0.6474-0.1595-1.3082-0.2321-1.9756-0.233c-0.9087-0.0132-1.4909,0.4056-1.431,1.3717c0.0457,0.8505,0.0821,1.7018,0.1425,2.5512 + c0.0249,0.3507,0.0794,0.7029,0.2329,1.0284c0.1785,0.3784,0.4585,0.6673,0.871,0.7372c0.7845,0.1329,1.5759,0.1319,2.3464-0.0979 + C23.5643,369.1685,23.6225,367.8069,23.6843,366.7769z`}),eE=(0,n.jsx)("path",{d:`M27.9953,1265.3275c0.0322,1.2906,0.0361,2.5387-0.0257,3.8116c-0.7389,0.9415-1.7592,1.5676-2.7705,2.184 + c-0.0471,0.2966-0.0926,0.5828-0.1392,0.8757c-2.65,2.2255-6.0303,3.6953-9.5151,3.7844c-3.4565-0.0819-6.7423-1.6986-9.1545-4.1301 + c-0.0611-0.371-0.1286-0.7803-0.2016-1.2234c-0.3501-0.2775-0.7385-0.5563-1.0922-0.8738c-0.3399-0.3049-0.644-0.6498-0.9754-0.989 + c-0.0395-0.225-0.1041-0.4475-0.1137-0.6725c-0.0381-0.8954-0.04-1.7898,0.0894-2.6815c0.0436-0.3004,0.1447-0.5599,0.3357-0.7913 + c0.6165-0.7332,1.209-1.6909,2.2052-1.8582c0.2064-0.2211,0.2189-0.4491,0.2477-0.6785c0.2006-1.8521,0.477-3.1365,2.3265-3.9526 + c0.4331-0.3759,0.8325-0.7095,1.2151-1.0613c0.1499-0.1377,0.2624-0.316,0.4683-0.5702c1.4429-0.8456,3.3074-1.3651,5.0594-1.4503 + c1.8983,0.0325,3.7118,0.5625,5.3722,1.5453c0.0492,0.2313,0.2272,0.3969,0.4239,0.5553c1.8993,1.4778,2.8995,3.3914,3.4307,5.7015 + c0.1681,0.1653,0.382,0.1919,0.5776,0.2527c0.3876,0.1207,0.7226,0.3253,0.9967,0.6193 + C27.2108,1264.2129,27.6183,1264.7394,27.9953,1265.3275z M7.9278,1271.2451c1.3833,1.5948,3.4885,2.3583,5.5154,2.7394 + c3.1917,0.6796,7.1999-0.3047,9.6726-2.4532c0.2947-0.8833,0.2995-1.8081,0.3185-2.7161c0.0213-1.016-0.0345-2.0382-0.2172-3.045 + c-0.0048-0.0264-0.0589-0.0439-0.1299-0.0933c-0.5452,0.6837-1.261,1.2286-2.1256,1.4214 + c-0.8549,0.2026-1.7193,0.3085-2.5987,0.1669c-1.151-0.2117-2.5754-0.535-3.0572-1.7406c-0.0412-0.1047-0.0922-0.2054-0.1662-0.3687 + c-0.0674,0.1307-0.1093,0.1974-0.1375,0.2692c-0.218,0.5554-0.6215,0.9242-1.1584,1.1611c-1.087,0.4794-2.2162,0.7164-3.4044,0.5535 + c-0.8969-0.123-1.7593-0.345-2.4346-1.0127c-0.0463-0.0458-0.1319-0.052-0.2355-0.0897 + C7.4882,1267.827,7.4631,1269.558,7.9278,1271.2451z M21.9818,1262.1925c0-0.2909,0.0086-0.582-0.0022-0.8724 + c-0.0127-0.3405-0.1888-0.5852-0.4834-0.7491c-0.347-0.1935-0.7108-0.3536-1.1006-0.4252c-0.5719-0.1047-1.1479-0.191-1.725-0.2615 + c-0.2452-0.0299-0.4986-0.0114-0.7468,0.0061c-0.7423,0.036-1.2723,0.7307-1.2814,1.4437 + c-0.0347,1.0345-0.2026,2.0792-0.0081,3.1066c0.245,1.4075,2.2292,1.2428,3.3132,1.1899 + C21.737,1265.5231,22.0315,1263.6589,21.9818,1262.1925z M8.9304,1260.8354c-0.2372,1.0964-0.2725,2.5031,0.0804,3.5267 + c0.2449,0.7532,0.9735,1.0804,1.7147,1.1248c1.4122,0.0514,2.7825,0.2007,2.9164-1.611c0.1054-0.9545,0.0951-1.9132,0.0862-2.8706 + c0.0037-1.0087-0.911-1.2402-1.7641-1.1715c-0.4973,0.0436-0.9968,0.0939-1.4855,0.191c-0.3428,0.0682-0.6731,0.2089-1.002,0.3354 + C9.2606,1260.4436,9.075,1260.5809,8.9304,1260.8354z`}),eV=(0,n.jsx)("path",{d:`M4.1477,341.2629c-0.1562-1.3235-0.2141-2.5866-0.0524-3.8197c0.3418-0.5275,0.6967-0.9879,1.0722-1.4344 + c0.3449-0.4101,0.7603-0.7042,1.2755-0.8578c0.1375-0.041,0.2698-0.0997,0.4202-0.1562c0.6612-2.7622,1.4747-4.2623,3.7085-6.0725 + c0.0367-0.0735,0.0915-0.1834,0.1486-0.2978c1.492-0.9579,3.19-1.4184,4.941-1.5794c1.8211,0.0162,3.6079,0.4333,5.2203,1.2888 + c0.116,0.0572,0.2591,0.1371,0.3516,0.2141c1.7339,2.3596,3.3738,1.0901,3.9018,4.9727c0.055,0.3984,0.1427,0.7757,0.3548,1.1156 + c0.0329,0.0309,0.0583,0.0726,0.094,0.0855c0.9245,0.317,1.4634,1.1372,2.0507,1.8593c0.1794,0.2144,0.2898,0.4621,0.3327,0.7303 + c0.1683,1.0526,0.2541,2.1077,0.0199,3.2043c-0.5362,0.7092-1.1748,1.3569-1.9194,1.8653c-0.0768,0.4626-0.1482,0.8925-0.218,1.3128 + c-1.3981,1.5893-3.3572,2.7805-5.3264,3.5168c-4.3271,1.7774-10.0585-0.3396-13.2523-2.9386 + c-0.1054-0.2607-0.2295-0.5677-0.371-0.9176c-0.6917-0.3913-1.4297-0.7827-2.0248-1.38 + C4.6412,341.7393,4.4012,341.5103,4.1477,341.2629z M24.3102,337.8837c-0.1236,0.091-0.239,0.17-0.3478,0.2574 + c-1.6041,1.21-3.8532,1.0163-5.5995,0.2534c-0.4724-0.2034-0.8338-0.5419-1.0516-1.022c-0.0345-0.0761-0.0274-0.1998-0.1571-0.221 + c-0.0357,0.0579-0.0798,0.1067-0.0989,0.1638c-0.2138,0.6401-0.6834,1.0387-1.2715,1.3025 + c-1.5652,0.702-3.1745,0.8016-4.8132,0.2884c-0.6292-0.1971-1.155-0.5659-1.6013-1.0502c-0.078-0.0847-0.1348-0.2211-0.2945-0.1641 + c-0.3831,1.428-0.3969,4.8779,0.1336,5.9968c1.618,1.2848,3.6952,1.9759,5.7309,2.2633c3.1654,0.541,7.0906-0.4132,9.2597-2.8763 + C24.6135,341.5209,24.6692,339.056,24.3102,337.8837z M15.7315,335.1638c0.0051-0.0002,0.0102-0.0004,0.0153-0.0006 + c-0.0473-0.643-0.0913-1.2863-0.1446-1.9289c-0.1208-1.1133-0.8469-1.478-1.8933-1.3977c-0.8461,0.0948-3.4607,0.3024-3.4434,1.4467 + c-0.0009,0.5818-0.0117,1.166,0.0376,1.7445c0.1309,1.0672,0.475,2.2129,1.6665,2.4334c0.8883,0.1827,1.784,0.1404,2.66-0.0829 + c0.6999-0.1785,1.042-0.6185,1.0982-1.3412C15.7503,335.7477,15.7315,335.455,15.7315,335.1638z M23.2498,332.5725 + c-0.6863-0.7698-1.858-0.7853-2.7916-0.9241c-1.1513-0.1185-2.0377,0.1133-1.9314,1.4634c0.0368,0.7885,0.0701,1.5771,0.1176,2.365 + c0.0629,0.8919,0.3583,1.6989,1.3409,1.8351c0.6591,0.0996,1.3242,0.0934,1.9831-0.047c0.7251-0.1545,1.1683-0.5926,1.3465-1.3077 + C23.5987,334.8192,23.4832,333.693,23.2498,332.5725z`}),eR=(0,n.jsx)("path",{d:`M27.9877,308.7002c-0.6233,0.7039-1.2518,1.3676-2.0489,1.8595c-0.0674,0.3713-0.134,0.7384-0.205,1.1295 + c-2.3857,2.276-5.6371,3.7867-8.959,3.8706c-3.5202-0.0054-6.8385-1.4613-9.6602-3.5184c-0.0837-0.2491-0.1691-0.5032-0.2542-0.7563 + c-1.0081-0.6243-1.9358-1.2151-2.7239-2.1379c-0.1062-1.2638-0.107-2.5506-0.0205-3.8762c0.3727-0.5478,0.7774-1.1009,1.2565-1.5959 + c0.2648-0.2735,0.5781-0.4729,0.948-0.5811c0.1781-0.0521,0.3506-0.1231,0.5461-0.1929c0.0642-0.2221,0.136-0.4381,0.1888-0.6586 + c0.5162-2.2152,1.768-3.9862,3.5634-5.36c0.0561-0.0945,0.1179-0.2138,0.1644-0.3167c1.3509-0.8246,2.8478-1.2643,4.4121-1.478 + c2.1223-0.1982,4.2587,0.4042,6.0786,1.4497c0.0862,0.1477,0.1589,0.2725,0.2415,0.4139c0.1313,0.1072,0.2827,0.2188,0.4199,0.3458 + c0.1865,0.1726,0.4003,0.2863,0.6329,0.3885c1.0588,0.4272,1.9142,1.2742,2.1738,2.4069c0.0809,0.3224,0.1567,0.6508,0.1854,0.9807 + c0.0538,0.6198,0.3291,1.1526,0.5849,1.7016c0.4289,0.1764,0.866,0.3414,1.1661,0.7079c0.3651,0.427,0.7262,0.8582,1.0683,1.3035 + c0.11,0.1432,0.1956,0.3302,0.2227,0.5077C28.1389,306.4099,28.2145,307.5289,27.9877,308.7002z M24.0505,310.9347 + c0.4844-1.7458,0.406-3.6044,0.1395-5.3819c-0.0056-0.0324-0.0521-0.0579-0.1005-0.1087c-0.0933,0.0698-0.1929,0.1375-0.285,0.2144 + c-1.4888,1.1523-3.6211,1.0058-5.3181,0.4503c-0.6504-0.2289-1.2645-0.6158-1.5186-1.2892c-0.041-0.103-0.0914-0.2022-0.1704-0.3756 + c-0.2632,1.078-1.0328,1.5472-1.9508,1.8394c-1.8797,0.6076-4.2648,0.5682-5.7434-0.8981 + c-0.0537-0.0539-0.1219-0.0934-0.1895-0.1442c-0.4608,1.1015-0.4332,4.6858,0.0344,6.0556c2.3512,1.9572,6.3185,2.7409,9.3204,2.328 + C20.3678,313.2699,22.5614,312.5253,24.0505,310.9347z M15.3811,302.2116c-0.0095,0-0.0189,0-0.0284,0 + c0.009-0.6021,0.0185-1.2118-0.1127-1.8025c-0.0389-0.1766-0.1265-0.3534-0.2315-0.5024c-0.2568-0.3646-0.6231-0.5382-1.0706-0.5413 + c-1.0089-0.0071-1.9902,0.1491-2.9381,0.4984c-0.5098,0.2006-0.9971,0.4299-0.9858,1.0578c0.0076,1.3037-0.153,3.4553,1.3972,3.9426 + c0.6818,0.2117,1.4031,0.1471,2.1054,0.1166c0.9089-0.0457,1.8145-0.432,1.8591-1.4594 + C15.4042,303.0865,15.3811,302.6483,15.3811,302.2116z M18.2556,299.9962c-0.0587,0.8633-0.0045,1.8108,0.0205,2.6869 + c0.0452,1.0824,0.3432,2.0683,1.5713,2.1755c1.4491,0.0925,2.9868,0.2431,3.2745-1.5506c0.1735-0.8882,0.1513-1.779-0.0033-2.6667 + c-0.0314-0.18-0.1118-0.3515-0.1506-0.4689c-0.7825-0.7842-2.4261-0.9263-3.4803-0.9488 + C18.9434,299.2222,18.5196,299.4301,18.2556,299.9962z`}),eD=(0,n.jsx)("path",{d:`M6.5565,1303.7563c-0.0667-0.3591-0.1195-0.6437-0.1743-0.9386c-0.8731-0.493-1.5875-1.1533-2.2201-1.8676 + c-0.2097-0.8157-0.2119-2.3507-0.0063-3.87c0.371-0.5728,0.8221-1.1423,1.345-1.652c0.3211-0.3127,0.7335-0.4668,1.1456-0.5856 + c0.2445-0.4097,0.5111-1.2329,0.5663-1.7117c0.0333-0.2891,0.0716-0.578,0.1206-0.8647c0.219-1.2816,0.9781-2.1318,2.1469-2.636 + c0.3086-0.1331,0.5993-0.2769,0.8554-0.4991c0.1911-0.1659,0.3895-0.3162,0.4111-0.5535c3.4435-2.0404,7.0568-1.9877,10.5097-0.0725 + c0.1153,0.2389,0.2755,0.4414,0.4817,0.6229c0.5307,0.4666,1.0448,0.9532,1.545,1.4526c0.1885,0.1881,0.3412,0.421,0.4745,0.6541 + c0.6116,1.0695,1.1277,2.1805,1.4105,3.3879c0.014,0.0596,0.0498,0.1139,0.0931,0.2097c0.149,0.0507,0.3232,0.1119,0.4986,0.1692 + c0.3422,0.1115,0.6466,0.287,0.9023,0.5403c0.4896,0.4855,0.9015,1.0327,1.2998,1.6132c0.0476,1.267,0.0448,2.5352,0.0252,3.8372 + c-0.7033,0.9025-1.5989,1.4758-2.576,2.1154c-0.0505,0.2041-0.1148,0.4637-0.1831,0.7396 + c-1.7076,1.4139-3.7608,2.4075-5.8785,3.0529C14.8539,1308.2822,10.0631,1306.7162,6.5565,1303.7563z M23.4179,1302.9937 + c0.2558-1.1608,0.3274-2.3015,0.2821-3.4474c-0.032-0.8094-0.0583-1.6228-0.2437-2.4181c-0.0064-0.0275-0.059-0.0442-0.0902-0.0658 + c-0.0189,0.0074-0.0414,0.0107-0.0561,0.0231c-0.0633,0.0532-0.1267,0.1069-0.186,0.1646c-0.6033,0.5863-1.321,0.9312-2.1576,1.0289 + c-1.3975,0.2782-2.7926,0.0844-4.0851-0.4987c-0.5776-0.259-0.9945-0.6736-1.1724-1.2999 + c-0.0253-0.0891-0.0345-0.1998-0.1679-0.2211c-0.1604,0.6338-0.5168,1.1453-1.1081,1.4342 + c-1.3862,0.661-2.9374,0.8459-4.4443,0.5111c-0.5582-0.1282-1.0691-0.3347-1.5196-0.6918 + c-0.1069-0.0847-0.1883-0.2308-0.3613-0.2029c-0.3838,1.0962-0.4572,4.2015,0.0786,5.691c1.1521,1.1427,2.7705,1.7886,4.334,2.1694 + c2.3583,0.6008,4.7574,0.5681,7.0867-0.162C20.9869,1304.5862,22.3415,1303.9637,23.4179,1302.9937z M17.0226,1293.7428 + c-0.0077,0-0.0154,0-0.0231,0c-0.0059,0.6212-0.0335,1.2499,0.1244,1.8567c0.1105,0.4569,0.4202,0.7567,0.8395,0.9414 + c0.1696,0.0746,0.3522,0.1415,0.5344,0.1611c1.3628,0.1571,3.1987,0.34,3.6216-1.345c0.2313-0.813,0.2462-1.6379,0.2164-2.4718 + c-0.0219-0.6121-0.3194-1.0114-0.8805-1.2296c-1.017-0.386-2.0855-0.5664-3.1724-0.5374c-0.6175,0.0538-1.0385,0.4056-1.1908,1.0107 + C16.9703,1292.6566,17.037,1293.2058,17.0226,1293.7428z M14.1171,1291.9772c-0.2931-0.6602-0.7897-0.8817-1.4309-0.8521 + c-1.0354,0.0554-2.0795,0.2205-3.0088,0.7008c-0.3264,0.1533-0.506,0.421-0.5397,0.7819c-0.0309,0.3311-0.0798,0.6622-0.0837,0.9937 + c-0.0007,1.136,0.0711,2.7617,1.4383,3.046c0.181,0.0421,0.367,0.0817,0.5516,0.0858c0.4151,0.0094,0.8313,0.007,1.2459-0.0134 + c0.8018-0.0461,1.6035-0.4491,1.7487-1.3088c0.0446-0.2228,0.0801-0.4509,0.0858-0.6775 + C14.1352,1293.8308,14.1823,1292.8689,14.1171,1291.9772z`}),eO=(0,n.jsx)("path",{d:`M25.4724,270.7905c1.0401,0.4773,1.1185,0.5373,1.8475,1.4601c0.7883,0.9978,0.6449,0.8071,0.7375,1.8539 + c0.0914,1.033,0.0681,1.8178-0.0803,2.7299c-0.5874,0.7343-1.3054,1.3872-2.1826,1.9054c-0.0605,0.2485-0.1238,0.5088-0.1943,0.7983 + c-2.433,2.1257-5.8038,3.4601-9.0406,3.5528c-3.4969-0.0474-6.8371-1.355-9.6279-3.4184c-0.0368-0.1503-0.0759-0.3097-0.1146-0.4674 + c-0.0279-0.0325-0.0494-0.0714-0.0823-0.0932c-0.1386-0.092-0.2786-0.1823-0.4216-0.2672 + c-0.8975-0.5326-1.4164-0.9621-2.1513-1.7847c-0.0703-0.5053-0.0797-2.8417-0.0124-3.9153c0.3551-0.539,0.7734-1.0815,1.2574-1.5708 + c0.2366-0.2392,0.5189-0.416,0.8385-0.5294c0.1947-0.0691,0.388-0.1423,0.5958-0.2187c0.2556-0.8416,0.4805-1.6806,0.8722-2.4714 + c0.0799-0.166,0.1346-0.349,0.1714-0.5302c0.2145-1.0566,0.8421-1.7978,1.7725-2.2896c0.373-0.1971,0.7078-0.433,1.0216-0.7204 + c0.0404-0.0867,0.0838-0.1799,0.1229-0.2639c1.322-0.8297,2.8078-1.2559,4.3516-1.4678c2.1546-0.1933,4.2533,0.3818,6.1254,1.4546 + c0.0588,0.1036,0.1293,0.2281,0.2305,0.4065c0.6116,0.2574,1.3122,0.4819,1.8349,0.928c1.0449,0.8274,1.1984,1.7191,1.3996,2.9582 + c0.023,0.1223,0.0216,0.2536,0.0669,0.3666C25.0272,269.7361,25.2556,270.2712,25.4724,270.7905z M8.6862,278.8282 + c1.9558,1.6506,4.6221,2.2151,7.1158,2.3885c2.7135,0.1465,6.0689-0.6421,8.0849-2.556c0.3241-1.2068,0.3689-2.4498,0.31-3.6987 + c-0.0585-1.241-0.1493-1.7527-0.3352-2.1392c-0.1018,0.0749-0.2024,0.1432-0.2966,0.2194 + c-0.3445,0.2787-0.7268,0.4894-1.1573,0.5915c-1.5497,0.4016-3.2335,0.3381-4.6945-0.3572 + c-0.5499-0.2665-0.9573-0.6527-1.1375-1.2525c-0.0265-0.088-0.0796-0.168-0.1294-0.2703c-0.0336,0.0516-0.049,0.0676-0.0554,0.0865 + c-0.2016,0.9183-0.9017,1.4128-1.7511,1.6879c-1.7589,0.5999-4.3113,0.6221-5.7478-0.6981 + c-0.0562-0.0514-0.1344-0.0786-0.2069-0.1196C8.2775,273.8673,8.1866,277.4044,8.6862,278.8282z M15.0374,269.3028 + c-0.0206-0.4668-0.0237-0.8625-0.0583-1.2556c-0.1782-1.8389-2.2-1.2289-3.4351-1.0024c-0.4478,0.0962-0.8791,0.248-1.2775,0.4834 + c-0.3082,0.1821-0.5044,0.4338-0.505,0.8026c0.0044,0.9532-0.0868,1.9237,0.2641,2.8327c0.1941,0.6084,0.6329,0.9476,1.2496,1.0927 + c0.8749,0.1882,1.8612,0.0867,2.7054-0.18c0.5984-0.2133,0.9391-0.6524,1.03-1.2911 + C15.0845,270.2662,15.0858,269.7496,15.0374,269.3028z M17.8957,267.5277c0,0.7994-0.0069,1.5893,0.0038,2.3788 + c0.0368,1.0615,0.2224,1.9376,1.3764,2.2271c0.7339,0.1883,1.4806,0.2219,2.225,0.0902c0.8416-0.1433,1.2011-0.6974,1.3594-1.504 + c0.1815-0.8669,0.1431-1.7354,0.0127-2.6043c-0.0432-0.2883-0.2043-0.4932-0.4419-0.6471c-0.3168-0.2051-0.6585-0.368-1.0244-0.4443 + c-0.65-0.1355-1.3072-0.2363-1.9621-0.3477C18.7818,266.6302,18.1682,266.799,17.8957,267.5277z`}),eB=(0,n.jsx)("path",{d:`M10.64,1320.8334c0.054-0.097,0.1039-0.1866,0.1678-0.3014c3.4585-1.9984,6.967-1.9313,10.4473-0.0305 + c0.0938,0.3627,0.3606,0.5405,0.6827,0.6694c0.508,0.2032,0.958,0.4967,1.3487,0.8848c0.4254,0.4225,0.7249,0.9143,0.8481,1.5007 + c0.0863,0.4109,0.2364,0.7922,0.4085,1.1737c0.2907,0.673,0.5143,1.3597,0.7464,2.0592c0.1649,0.0632,0.3164,0.1295,0.473,0.1798 + c0.4075,0.1309,0.7551,0.3573,1.0319,0.6776c0.3402,0.3936,0.6608,0.8041,0.9885,1.2085c0.1216,0.15,0.1894,0.3225,0.1974,0.5162 + c0.049,1.1862,0.0476,2.3723,0.0203,3.5609c-0.7193,0.8445-1.5368,1.5413-2.5199,2.0381c-0.0534,0.1979-0.1013,0.3755-0.1556,0.5768 + c-1.7701,1.4005-3.8866,2.3612-6.0623,2.9467c-4.4032,1.1753-9.0901-0.2039-12.622-2.9648 + c-0.0511-0.2028-0.1016-0.4031-0.148-0.5872c-0.4405-0.3148-0.8802-0.5947-1.2791-0.924c-0.3839-0.3168-0.7255-0.6847-1.054-0.9999 + c-0.1746-0.8696-0.1697-2.7417,0.006-3.9519c0.3546-0.5177,0.7583-1.0457,1.2261-1.5227c0.2515-0.2563,0.5424-0.4525,0.8854-0.5679 + c0.1371-0.0461,0.2715-0.1002,0.4107-0.1522c0.2118-0.375,0.2614-0.8002,0.4354-1.1752c0.1809-0.3898,0.1988-0.802,0.2429-1.2163 + c0.118-1.196,0.5135-2.1091,1.5186-2.8094C9.4038,1321.2302,10.0365,1321.05,10.64,1320.8334z M23.5011,1334.6592 + c0.2843-1.0359,0.3288-2.1302,0.3109-3.2008c-0.0242-0.8735-0.0616-1.7462-0.2074-2.61c-0.0197-0.1167-0.0149-0.2532-0.1925-0.3121 + c-0.4848,0.3958-1.0155,0.8114-1.6466,0.9342c-0.9816,0.2068-1.9725,0.3188-2.974,0.1545 + c-1.1698-0.2144-2.6454-0.6022-2.9268-1.9426c-0.0098-0.0455-0.0421-0.0862-0.087-0.1747 + c-0.0543,0.1237-0.0977,0.1943-0.1172,0.2712c-0.1879,0.8098-0.8819,1.2422-1.6145,1.5026 + c-1.6224,0.6118-4.2328,0.6273-5.612-0.5271c-0.0397-0.0331-0.1046-0.036-0.1572-0.0527c-0.4752,1.3362-0.5233,4.532,0.0396,6.0045 + c0.4974,0.4813,1.1115,0.8325,1.7589,1.1184C14.2655,1337.7028,19.796,1337.5474,23.5011,1334.6592z M17.2135,1324.8927 + c-0.0227,0.0009-0.0455,0.0016-0.0682,0.0024c0.0365,0.5585,0.0546,1.1189,0.1145,1.6749c0.1687,1.5555,2.2262,1.6331,3.4369,1.5262 + c1.9063-0.1388,1.8412-2.5254,1.7403-3.9572c-0.036-0.4087-0.2444-0.6958-0.6112-0.8729c-1.0312-0.5134-2.1735-0.6978-3.3144-0.7344 + c-0.1612-0.004-0.3303,0.0389-0.4847,0.0922C17.0296,1322.9707,17.235,1324.0508,17.2135,1324.8927z M9.4019,1323.6638 + c-0.0413,0.1464-0.1104,0.303-0.1268,0.4651c-0.1143,0.991-0.1107,2.0087,0.2276,2.9595c0.1969,0.6619,0.8838,0.9465,1.5181,1.0079 + c0.5615,0.0453,1.1212,0.0238,1.6767-0.097c1.0927-0.238,1.5568-0.7112,1.628-1.8192c0.0533-0.8293,0.0372-1.665,0.0156-2.4969 + c-0.0371-0.8647-0.8344-1.1548-1.5928-1.0941C11.7276,1322.6919,10.1537,1322.8973,9.4019,1323.6638z`}),e$=(0,n.jsx)("path",{d:`M6.67,1367.3611c-0.0424-0.1357-0.0854-0.2732-0.1403-0.4485c-0.9205-0.4691-1.6889-1.1631-2.4105-1.9683 + c-0.145-1.2433-0.0587-2.5089,0.0115-3.824c0.4026-0.5907,0.8444-1.1947,1.4011-1.7c0.1956-0.1776,0.4497-0.2943,0.6865-0.4215 + c0.1444-0.0775,0.3065-0.1221,0.4774-0.1879c0.2146-0.5869,0.4282-1.1711,0.6226-1.7029c0.1762-1.8433,0.3029-3.014,2.0384-3.9927 + c0.2357-0.1304,0.4826-0.2513,0.7382-0.3326c0.4393-0.1398,0.8476-0.3389,1.2538-0.5513c3.2906-1.7278,7.0651-1.5515,10.1708,0.4834 + c1.4218,0.5251,2.5969,1.4973,2.7612,3.1025c0.0272,0.2239,0.0814,0.454,0.1732,0.6587c0.2725,0.6083,0.5309,1.2201,0.7162,1.8618 + c0.0455,0.1576,0.1221,0.3062,0.1849,0.4598c0.1088,0.043,0.2023,0.0881,0.3006,0.1174c0.992,0.2705,1.5122,1.1976,2.1296,1.9373 + c0.121,0.1512,0.1888,0.324,0.197,0.5164c0.0502,1.1849,0.0715,2.3698,0.0113,3.5511c-0.7093,0.8239-1.4993,1.5215-2.4631,2.0164 + c-0.0688,0.1549-0.1352,0.3043-0.2196,0.4941c-2.7466,1.8895-6.0424,3.1561-9.4094,3.1566 + C12.587,1370.5143,9.3368,1369.3148,6.67,1367.3611z M23.4964,1360.1599c-0.0627,0.0189-0.0863,0.0201-0.1019,0.0319 + c-0.0662,0.0498-0.1308,0.1019-0.195,0.1544c-0.8799,0.7673-2.0729,0.827-3.1817,0.9132c-0.997,0.0555-1.9436-0.1713-2.848-0.5819 + c-0.5969-0.2709-1.0368-0.6863-1.2077-1.3442c-0.0188-0.0724-0.0756-0.135-0.1386-0.2432 + c-0.0553,0.1707-0.0918,0.2882-0.1313,0.4047c-0.1961,0.6206-0.7391,1.0079-1.3126,1.2532 + c-1.3994,0.6084-2.6852,0.6089-4.1661,0.3539c-0.5628-0.0885-1.0859-0.2837-1.5451-0.6323 + c-0.0956-0.0725-0.1835-0.1737-0.3258-0.1462c-0.4878,1.2385-0.4987,4.4436-0.0054,6.1486c1.6572,1.306,3.8061,1.8649,5.872,2.1167 + c0.8053,0.1023,1.6149,0.1986,2.4292,0.115c1.9476-0.174,3.9021-0.5287,5.642-1.4657c0.457-0.246,0.9232-0.4827,1.2714-0.8542 + C24.0348,1364.9054,23.9106,1361.1658,23.4964,1360.1599z M22.3323,1355.317c-0.904-0.8462-2.2241-0.9764-3.4059-1.1423 + c-0.9183-0.1084-1.6314,0.3354-1.6485,1.311c-0.0121,0.6858-0.0089,1.3719-0.004,2.058c0.0151,0.8707,0.3095,1.5679,1.1832,1.8489 + c0.7777,0.2618,1.5797,0.3456,2.3965,0.2638c0.8015-0.0803,1.2849-0.5365,1.4867-1.2999c0.2433-0.9203,0.2117-1.8517,0.0841-2.7842 + C22.4134,1355.4921,22.3691,1355.4164,22.3323,1355.317z M14.4376,1356.5692c-0.0068-0.0002-0.0136-0.0005-0.0203-0.0007 + c-0.0038-0.415,0.0086-0.8309-0.0063-1.2455c-0.0084-0.5043-0.4017-0.965-0.9692-1.0579c-0.1624-0.0267-0.3316-0.0316-0.4961-0.0216 + c-0.812,0.0492-1.6039,0.2134-2.3755,0.4647c-0.2543,0.0826-0.4937,0.2152-0.733,0.3384c-0.2757,0.1421-0.4322,0.3707-0.4799,0.6838 + c-0.1507,0.9448-0.1323,1.9153,0.154,2.8331c0.1757,0.5941,0.5872,0.9359,1.1869,1.0599c0.1219,0.0251,0.2457,0.058,0.3686,0.0582 + c0.728,0.0012,1.4499-0.0422,2.1479-0.2832C14.588,1358.9399,14.3702,1357.7435,14.4376,1356.5692z`}),eU=(0,n.jsx)("path",{d:`M25.474,238.8378c0.1491,0.0587,0.2641,0.1066,0.381,0.1494c0.3398,0.1242,0.6363,0.3203,0.8699,0.591 + c0.3671,0.4254,0.7213,0.8625,1.0638,1.3079c0.0972,0.1264,0.1795,0.2953,0.1921,0.4508c0.0956,1.1833,0.1501,2.368,0.0031,3.5735 + c-0.6756,0.7629-1.4159,1.4557-2.3313,1.9316c-0.0621,0.1734-0.1176,0.3282-0.1799,0.502 + c-5.8325,4.2747-12.7456,4.1081-18.6427,0.0261c-0.043-0.0885-0.0968-0.1991-0.1719-0.3534 + c-0.949-0.5019-1.807-1.1836-2.5517-2.0663c-0.0199-1.2692-0.0067-2.558,0.0273-3.8382c0.387-0.5707,0.7933-1.0966,1.2622-1.5722 + c0.252-0.2556,0.5457-0.4485,0.8883-0.5645c0.157-0.0532,0.311-0.1152,0.4956-0.1841c0.1763-0.4749,0.3121-0.9857,0.4958-1.4602 + c0.1909-0.4639,0.3283-0.9281,0.37-1.4388c0.1115-1.3649,0.8547-2.3111,2.068-2.908c0.7892-0.2756,1.5039-0.7089,2.2612-1.0533 + c0.9398-0.4185,1.9218-0.674,2.938-0.8159c2.0129-0.281,3.8863,0.1829,5.6804,1.0608c0.4487,0.2195,0.888,0.4565,1.3631,0.6174 + c0.1178,0.0399,0.2303,0.0966,0.3429,0.1505c1.2838,0.6142,2.0517,1.6113,2.1946,3.0393c0.0487,0.4863,0.1766,0.9336,0.3749,1.3747 + C25.0817,237.8317,25.2636,238.3193,25.474,238.8378z M16.1548,239.0287c-0.0438,0.1074-0.0917,0.1982-0.1185,0.2949 + c-0.1545,0.5576-0.5117,0.945-1.0155,1.203c-0.9643,0.4939-1.9912,0.7303-3.073,0.6773c-0.4766-0.0233-0.95-0.1122-1.4252-0.168 + c-0.616-0.0723-1.159-0.3178-1.6536-0.6838c-0.0959-0.071-0.2012-0.1294-0.3408-0.2182c-0.5019,1.9683-0.5562,4.3176-0.0331,6.2604 + c1.5545,1.3002,3.6051,1.7825,5.559,2.0904c3.1654,0.507,7.1083-0.1116,9.6763-2.1154c0.3829-1.5205,0.3386-3.0367,0.2501-4.5554 + c-0.043-0.7384-0.1381-1.2227-0.3303-1.6472c-0.8156,0.6309-1.2564,0.7986-2.2697,0.9296c-1.6626,0.2923-4.7432,0.005-5.167-2.005 + C16.2103,239.0767,16.1903,239.0657,16.1548,239.0287z M9.6864,235.2878c-0.2206,0.6745-0.1751,1.2807-0.1741,1.8823 + c0.0007,0.4198,0.1011,0.8231,0.2159,1.2246c0.199,0.6956,0.6425,1.1446,1.5524,1.2182c0.6877,0.0556,1.3735-0.0141,2.0406-0.2027 + c0.9884-0.2794,1.3815-0.7614,1.4151-1.7901c0.0231-0.7066,0-1.4149-0.008-2.1223c-0.01-0.5989-0.3436-1.1804-0.9808-1.2613 + c-0.2437-0.0362-0.4985-0.0551-0.7417-0.0263c-0.9393,0.1386-1.9196,0.2414-2.7666,0.7025 + C10.0423,235.0219,9.8646,235.1654,9.6864,235.2878z M17.6432,234.8759c-0.0111,0.0925-0.0295,0.1748-0.0297,0.2572 + c-0.0014,0.7903-0.0005,1.5806,0.0022,2.3709c-0.0028,0.8777,0.3923,1.6092,1.2703,1.8535 + c0.7029,0.2165,1.4249,0.3046,2.1579,0.2525c1.945-0.0956,1.7995-2.5502,1.6263-3.9624c-0.0393-0.3083-0.2115-0.5381-0.4827-0.6897 + c-0.9904-0.5487-2.1243-0.7322-3.2372-0.8291C18.379,234.0845,17.9347,234.2998,17.6432,234.8759z`}),eH=(0,n.jsx)("path",{d:`M6.7238,1399.2832c-0.0758-0.1385-0.135-0.2466-0.2015-0.368c-0.9385-0.4719-1.6975-1.1754-2.4124-1.9833 + c-0.1178-1.25-0.0411-2.5159,0.0152-3.7972c0.3961-0.5858,0.8243-1.1459,1.3275-1.6462c0.2239-0.2227,0.4866-0.3888,0.7843-0.4983 + c0.1365-0.05,0.2711-0.1051,0.4246-0.1652c0.222-0.5731,0.451-1.1516,0.6676-1.7346c0.0422-0.1136,0.0388-0.2449,0.0517-0.3684 + c0.0368-0.3517,0.0655-0.7041,0.1074-1.0552c0.1671-1.7733,1.7058-2.8898,3.3277-3.2837c0.3643-0.0969,0.711-0.2266,1.0501-0.3884 + c2.5103-1.1924,5.4423-1.2496,7.9865-0.1536c0.534,0.2278,1.0575,0.4871,1.6037,0.6869c1.3596,0.4543,2.6152,1.4678,2.8107,2.9618 + c0.0458,0.2876,0.0881,0.5757,0.1118,0.7314c0.3687,0.9331,0.6894,1.7445,1.0194,2.5797c0.0779,0.0345,0.1682,0.0865,0.2654,0.1158 + c0.9696,0.2666,1.4807,1.1719,2.0891,1.8926c0.1487,0.184,0.2375,0.3903,0.2381,0.6295c0.003,1.1235,0.0058,2.2469,0.0069,3.3705 + c0,0.0403-0.0189,0.0806-0.0388,0.1594c-0.6749,0.7537-1.4275,1.4644-2.396,1.9459c-0.1407,0.3016-0.3984,0.5028-0.6844,0.6796 + c-2.0941,1.2938-4.3297,2.2159-6.7795,2.5641C14.1139,1402.808,10.0167,1401.5101,6.7238,1399.2832z M8.415,1392.0289 + c-0.4785,0.9514-0.6219,4.6194-0.0909,6.1969c0.1812,0.2251,0.4319,0.3745,0.6822,0.5232c1.6385,0.9717,3.522,1.408,5.3995,1.6091 + c0.7442,0.0829,1.4896,0.1587,2.2419,0.0967c2.1741-0.1698,4.3611-0.6219,6.2582-1.7397c0.2511-0.1462,0.5067-0.2887,0.7143-0.5813 + c0.4155-1.9617,0.2861-3.9956-0.0112-5.968c-0.0118-0.0996-0.0317-0.2074-0.1852-0.234c-0.5735,0.4408-1.1519,0.7771-1.8857,0.8624 + c-1.7398,0.2843-2.6778,0.3141-4.3295-0.4052c-0.6182-0.2699-1.0686-0.7134-1.2349-1.3975 + c-0.0104-0.0426-0.0674-0.074-0.1306-0.1395c-0.2468,0.9288-0.7208,1.3195-1.5855,1.6643 + c-1.0066,0.3773-2.0296,0.5669-3.1174,0.4114C9.5672,1392.7029,9.5638,1392.7267,8.415,1392.0289z M17.3031,1388.2208 + c-0.02,0.001-0.0399,0.0021-0.0599,0.0032c0.046,0.5381,0.0729,1.0789,0.1434,1.6136c0.0736,0.6934,0.6529,1.1077,1.2854,1.2898 + c0.7455,0.2297,1.5132,0.2983,2.2848,0.2319c0.7006-0.0436,1.1828-0.4926,1.3795-1.1705c0.2735-0.897,0.2357-1.8099,0.1265-2.7236 + c-0.0308-0.2574-0.1779-0.4542-0.3991-0.606c-0.735-0.499-1.6178-0.646-2.4704-0.816c-1.1881-0.2738-2.2548-0.099-2.2894,1.1788 + C17.3018,1387.5551,17.3037,1387.8878,17.3031,1388.2208z M14.4946,1388.2205c-0.0105-0.0005-0.021-0.0011-0.0315-0.0016 + c0-0.3539,0.0161-0.7087-0.0035-1.0615c-0.0495-0.9335-0.8301-1.2483-1.6643-1.1268c-0.6835,0.0771-1.3602,0.2028-2.0149,0.411 + c-0.3336,0.106-0.6487,0.2786-0.9601,0.4437c-0.2739,0.1455-0.4271,0.3862-0.4487,0.7046c-0.024,0.353-0.0732,0.7053-0.0788,1.0583 + c-0.007,1.0552,0.2005,2.6172,1.5119,2.7074c0.8361,0.0776,1.6656-0.0072,2.4635-0.2841c0.643-0.2229,1.056-0.6641,1.1299-1.3585 + C14.4508,1389.2177,14.4639,1388.7181,14.4946,1388.2205z`}),eW=(0,n.jsx)("path",{d:`M24.4053,1420.2772c0.3521,0.8702,0.6797,1.6799,1.0253,2.5341c0.0903,0.0396,0.2185,0.1066,0.3537,0.1525 + c0.384,0.1307,0.7143,0.3457,0.9765,0.6499c0.3531,0.4097,0.6962,0.8287,1.0254,1.2577c0.0965,0.1259,0.1775,0.2965,0.1869,0.4514 + c0.0729,1.2048,0.0872,2.4106,0.0183,3.6144c-0.6228,0.6704-1.2439,1.3118-2.0358,1.7589 + c-0.2167,0.1224-0.4252,0.2511-0.5956,0.4457c-0.1201,0.1371-0.29,0.2356-0.4491,0.3326 + c-4.2815,2.6991-9.7152,3.5443-14.4637,1.6056c-1.052-0.3997-2.0773-0.8593-3.038-1.4502 + c-0.2988-0.1837-0.6164-0.3423-0.8382-0.6379c-0.0824-0.1097-0.229-0.1769-0.3554-0.2471 + c-0.8137-0.4517-1.4582-1.0988-2.1015-1.7964c-0.1175-1.2526-0.0436-2.519,0.0129-3.8242c0.4025-0.58,0.84-1.1595,1.3638-1.6691 + c0.2104-0.2047,0.4589-0.358,0.7365-0.4604c0.1364-0.0503,0.2718-0.1033,0.4116-0.1567c0.2302-0.5824,0.4659-1.158,0.6824-1.7407 + c0.0563-0.1516,0.0583-0.325,0.0754-0.4894c0.0365-0.3519,0.0565-0.7056,0.1012-1.0564c0.1635-1.6241,1.5299-2.7821,3.0366-3.1932 + c0.8658-0.2295,1.7042-0.5349,2.5487-0.8281c0.9293-0.3228,1.9058-0.4438,2.8821-0.5081c0.4096-0.027,0.8295,0.0552,1.241,0.1136 + c1.0142,0.1436,1.9976,0.3992,2.9324,0.8303c0.7063,0.3033,1.4794,0.4364,2.1568,0.8135c0.982,0.5129,1.7859,1.3984,1.9599,2.5172 + C24.3136,1419.6241,24.3565,1419.9545,24.4053,1420.2772z M8.4373,1423.8435c-0.5366,1.1542-0.5901,4.3483-0.1134,6.2561 + c1.2489,1.1814,3.8545,1.7963,5.5396,2.0117c3.1066,0.4546,7.1666-0.0922,9.7309-1.9954c0.0543-0.2642,0.1256-0.5056,0.1503-0.7517 + c0.2112-1.7776,0.2168-3.5797-0.137-5.3408c-0.0183-0.0928-0.0761-0.1777-0.127-0.2921c-0.1208,0.0767-0.211,0.1256-0.2921,0.1866 + c-0.4401,0.3311-0.9275,0.5543-1.472,0.6425c-1.5767,0.3113-2.9043,0.3402-4.3984-0.3301c-0.6595-0.2844-1.1632-0.7234-1.334-1.4614 + c-0.0097-0.0417-0.0502-0.0764-0.108-0.1603c-0.0687,0.1956-0.1116,0.3317-0.164,0.464c-0.1837,0.5013-0.6122,0.844-1.077,1.0753 + c-1.4122,0.7251-3.0404,0.7516-4.5661,0.417c-0.4765-0.0908-0.9161-0.2671-1.3178-0.5403 + C8.6523,1423.9573,8.5437,1423.9043,8.4373,1423.8435z M22.3226,1418.9309c-0.8221-0.7692-2.2047-0.9409-3.2626-1.1252 + c-0.2237-0.0345-0.4596-0.0354-0.6845-0.0078c-0.8176,0.0885-1.0794,0.7539-1.0688,1.5026 + c-0.0058,0.4789-0.0134,0.9581,0.0002,1.4366c0.034,0.8015,0.098,1.5897,0.9104,1.9769c0.851,0.4022,1.8182,0.4757,2.7469,0.4362 + c0.6447-0.0377,1.0932-0.3611,1.3168-0.9758c0.3412-0.9338,0.3116-1.9318,0.1738-2.8986 + C22.4378,1419.1561,22.3673,1419.0441,22.3226,1418.9309z M14.4789,1420.0653c-0.0047,0-0.0094,0-0.0141,0 + c0-0.3956,0.0228-0.7927-0.0056-1.1864c-0.1796-1.6918-2.5957-0.823-3.6505-0.5802c-0.3163,0.0891-0.612,0.2594-0.9076,0.4113 + c-0.32,0.1642-0.4913,0.4379-0.5219,0.7991c-0.0915,0.8672-0.0907,1.7573,0.1702,2.5973c0.2187,0.6837,0.6621,1.0189,1.3851,1.0494 + c0.848,0.0223,1.7236-0.0472,2.5133-0.3792c0.5121-0.2223,0.8469-0.5952,0.9424-1.1565 + C14.4944,1421.1071,14.4875,1420.5861,14.4789,1420.0653z`}),eG=(0,n.jsx)("path",{d:`M25.4665,1454.8464c0.4447,0.1615,0.9181,0.3303,1.2294,0.7032c0.3825,0.4393,0.7453,0.8958,1.114,1.347 + c0.1535,0.1879,0.1839,0.4149,0.1878,0.6472c0.0222,1.1349,0.0477,2.2446,0.007,3.3848c-0.594,0.6259-1.1759,1.2452-1.917,1.6919 + c-0.2845,0.1714-0.5476,0.3783-0.8328,0.5483c-1.85,1.1699-3.8714,2.0526-6.021,2.499c-4.7503,1.0648-9.7404-0.4476-13.5921-3.292 + c-0.5666-0.3958-1.0346-0.8999-1.4917-1.3829c-0.1276-0.7719-0.1289-2.563,0.0001-3.9c0.379-0.5457,0.8113-1.1316,1.3436-1.6316 + c0.193-0.1813,0.443-0.3055,0.6777-0.4369c0.1435-0.0804,0.3073-0.1245,0.4513-0.1808c0.2368-0.593,0.4759-1.1674,0.6928-1.75 + c0.0636-0.1709,0.0728-0.3643,0.0917-0.549c0.036-0.3518,0.049-0.7064,0.0928-1.0573c0.2257-2.1097,2.1737-3.1014,4.0476-3.4962 + c0.3797-0.1072,0.765-0.2002,1.1349-0.335c1.0471-0.3812,2.1369-0.5446,3.2374-0.6351c0.3471-0.0287,0.7039,0.0481,1.0552,0.0865 + c1.2958,0.1158,2.503,0.5891,3.7264,0.9974c0.8386,0.3007,1.7317,0.5237,2.4023,1.1464c1.0344,0.8722,1.1568,1.7729,1.3061,3.032 + C24.7679,1453.1519,25.116,1453.9962,25.4665,1454.8464z M8.442,1455.7158c-0.547,1.2727-0.6167,4.9922-0.0817,6.3348 + c0.9716,0.8733,2.933,1.4718,4.2216,1.7181c2.6554,0.5518,5.4247,0.4778,8.0257-0.3118c0.7976-0.2311,2.5168-0.8802,3.0148-1.5176 + c0.4237-1.9817,0.3166-4.0566-0.0228-6.0444c-0.0134-0.0884-0.0917-0.1671-0.1324-0.2372c-0.0593,0.0076-0.083,0.0046-0.1,0.0139 + c-0.0543,0.0299-0.1097,0.0598-0.1585,0.0977c-0.5605,0.4348-1.2157,0.6241-1.901,0.7338 + c-1.4369,0.2792-2.8854,0.1345-4.1956-0.5277c-0.5517-0.2673-0.9324-0.6869-1.1081-1.2833 + c-0.0179-0.0609,0.0152-0.1741-0.1453-0.1642c-0.2478,0.8773-0.6788,1.2523-1.5003,1.6016 + c-1.2351,0.5281-2.4734,0.6248-3.7934,0.3833c-0.688-0.0969-1.344-0.2808-1.9151-0.6992 + C8.6014,1455.7782,8.5397,1455.7611,8.442,1455.7158z M17.9369,1449.8073c-0.4463,0.2538-0.607,0.6461-0.6172,1.1083 + c-0.0168,0.7686-0.0446,1.5364,0.0411,2.3051c0.0831,0.7455,0.4714,1.2321,1.1668,1.4679c0.8379,0.2841,1.7066,0.3701,2.5851,0.2971 + c0.9404-0.0651,1.2154-0.8877,1.3673-1.6906c0.1201-0.6604,0.0746-1.3257,0.0061-1.9896c-0.0299-0.2891-0.1548-0.5211-0.3995-0.6702 + c-0.8829-0.5753-1.9308-0.7521-2.9499-0.9244C18.717,1449.6353,18.3096,1449.6422,17.9369,1449.8073z M14.4849,1451.9158 + c-0.0032,0-0.0065,0-0.0097,0c0-0.3748,0.0219-0.7512-0.005-1.124c-0.0788-0.9542-0.9238-1.1423-1.7359-1.0125 + c-0.5732,0.1027-1.1499,0.203-1.709,0.3615c-0.3962,0.1123-0.7752,0.2996-1.1446,0.4873c-0.3149,0.1599-0.4954,0.4312-0.5054,0.804 + c-0.0699,0.8691-0.1212,1.7589,0.1826,2.5952c0.2224,0.6107,0.6508,0.9497,1.3091,0.9749c0.9301,0.0243,1.8956-0.0562,2.7419-0.4688 + c0.4111-0.2068,0.6838-0.5411,0.7702-1.0029C14.4962,1452.9985,14.4981,1452.4574,14.4849,1451.9158z`}),eQ=(0,n.jsx)("path",{d:`M25.4905,206.8541c0.4072,0.1487,0.8591,0.3209,1.1623,0.6539c0.4787,0.4941,0.9053,1.0317,1.3073,1.6215 + c0.1143,1.2544,0.1,2.5206,0.0433,3.7909c-0.594,0.64-1.181,1.2561-1.924,1.6996c-0.2491,0.1487-0.4958,0.2943-0.7041,0.5089 + c-0.1562,0.1609-0.3658,0.2744-0.5624,0.3907c-4.1004,2.5009-9.2235,3.3486-13.7907,1.6748 + c-1.5597-0.5225-3.0684-1.2085-4.3978-2.1879c-0.1559-0.1035-0.312-0.2078-0.475-0.2991c-0.7943-0.4448-1.411-1.0919-2.039-1.7514 + c-0.0763-1.2738-0.0265-2.5418,0.0183-3.8321c0.5103-0.7131,1.2609-1.8492,2.113-2.1366c0.1372-0.0486,0.2726-0.102,0.4302-0.1613 + c0.2537-0.6687,0.5112-1.3476,0.7642-2.0149c0.0494-0.4851,0.0875-0.9621,0.1483-1.4361c0.2014-1.8116,1.9201-2.8535,3.5508-3.2329 + c0.5254-0.1329,1.0423-0.2806,1.5484-0.4768c1.0393-0.4029,2.135-0.5486,3.2357-0.6448c1.3904,0.0489,2.781,0.3239,4.0663,0.8717 + c0.2094,0.0893,0.4332,0.1449,0.6505,0.2156c0.4153,0.1351,0.8368,0.254,1.2438,0.4106c1.3113,0.5204,2.3296,1.5848,2.4886,3.0274 + c0.016,0.1239,0.0347,0.2482,0.0389,0.3728c0.0115,0.3396,0.1168,0.6496,0.2528,0.9585 + C24.9364,205.5048,25.1926,206.1413,25.4905,206.8541z M8.4916,207.7328c-0.5526,1.4653-0.6026,4.9083-0.08,6.3594 + c0.2749,0.2742,0.6221,0.464,0.9749,0.6406c0.6148,0.3078,1.2538,0.5566,1.9122,0.7564c1.1199,0.3399,2.2698,0.5171,3.4305,0.6315 + c0.6829,0.0673,1.3657,0.1285,2.055,0.0714c2.1293-0.1733,4.2814-0.5827,6.1582-1.6469c0.271-0.1506,0.5488-0.2994,0.7276-0.5663 + c0.4216-1.9786,0.3524-4.0381-0.0214-6.0146c-0.0171-0.0917-0.0081-0.2161-0.139-0.2413c-0.09,0.0063-0.1547,0.0632-0.2263,0.1095 + c-0.8216,0.6603-1.887,0.7251-2.8923,0.8389c-1.1757,0.1162-2.273-0.1675-3.3085-0.7018c-0.4779-0.2466-0.8205-0.6326-0.969-1.1675 + c-0.0197-0.071-0.0591-0.1365-0.0889-0.2035c-0.1603,0.0572-0.1339,0.1791-0.1662,0.2681 + c-0.1702,0.4693-0.4682,0.8335-0.9043,1.0739c-1.4617,0.8393-3.1081,0.8909-4.7226,0.5519c-0.4764-0.0759-0.9228-0.2467-1.33-0.5122 + C8.7823,207.9028,8.6579,207.8329,8.4916,207.7328z M22.48,203.0076c-0.4028-0.4262-0.5721-0.5368-1.1347-0.7482 + c-0.6654-0.2499-1.3627-0.3723-2.0584-0.4937c-0.2434-0.0425-0.4974-0.0357-0.7464-0.0332 + c-0.7081,0.0072-1.1398,0.5812-1.1304,1.1623c0.0108,0.6654-0.005,1.3312,0.0078,1.9965c0.0322,0.6864,0.2144,1.4327,0.9044,1.7247 + c0.9314,0.4185,1.9191,0.5366,2.9256,0.4272C22.8601,206.8578,22.7208,204.1833,22.48,203.0076z M9.5252,203.0328 + c-0.2327,0.9512-0.2043,2.1452,0.1286,3.0944c0.2006,0.5656,0.6247,0.8905,1.2109,0.9324c0.877,0.0627,1.7448-0.0342,2.5775-0.3356 + c0.6188-0.224,1.0053-0.6587,1.0756-1.3258c0.0456-0.4328,0.0655-0.8692,0.0748-1.3045c0.0039-1.0207,0.1467-2.2182-1.2065-2.3115 + c-1.0154,0.0359-2.0251,0.2574-2.9734,0.6257C10.1073,202.5332,9.7965,202.6671,9.5252,203.0328z`}),eY=(0,n.jsx)("path",{d:`M24.4162,1484.2842c0.3569,0.8634,0.6903,1.6702,1.0515,2.5438c0.062,0.0283,0.1883,0.098,0.3226,0.1448 + c0.4037,0.1404,0.7435,0.3741,1.0179,0.697c0.3233,0.3804,0.634,0.7716,0.9514,1.1571c0.1514,0.1838,0.2253,0.3929,0.2344,0.631 + c0.0438,1.1438,0.0539,2.2874,0.0129,3.3948c-0.794,1.1074-2.0261,1.8744-3.1728,2.5393c-2.0147,1.1763-4.1657,1.9882-6.4738,2.3492 + c-4.1415,0.6716-8.3293-0.5579-11.8249-2.7875c-0.8979-0.5817-1.7289-1.191-2.4224-2.0134 + c-0.1177-1.2357-0.0392-2.5018,0.0135-3.814c0.4139-0.5894,0.8552-1.194,1.4103-1.7004c0.1951-0.178,0.4509-0.2925,0.6868-0.4216 + c0.1261-0.0691,0.2688-0.1078,0.3856-0.1531c0.2407-0.5991,0.4803-1.1725,0.6989-1.7538c0.0643-0.1708,0.0855-0.3627,0.0978-0.5469 + c0.0348-0.5192,0.0683-1.0361,0.1827-1.5472c0.4293-1.984,2.5369-2.8,4.3246-3.1545c0.3445-0.0754,0.6877-0.1654,1.0222-0.2765 + c0.6747-0.224,1.3685-0.3502,2.0685-0.458c1.9078-0.3131,3.6948,0.3414,5.4887,0.8721c1.6576,0.3904,3.48,1.3475,3.7654,3.1901 + C24.3222,1483.5448,24.3645,1483.917,24.4162,1484.2842z M8.4412,1487.6527c-0.4802,1.0441-0.661,4.6941-0.0781,6.3521 + c2.4851,1.8147,6.9121,2.3201,9.913,1.8671c1.7567-0.2865,3.9391-0.7866,5.3322-1.9415c0.4039-1.825,0.334-3.6481,0.1064-5.4719 + c-0.0372-0.2976-0.0352-0.6257-0.2726-0.8989c-0.0959,0.0481-0.1943,0.0813-0.2737,0.14c-0.4619,0.3423-0.987,0.5304-1.5431,0.6427 + c-1.5664,0.3475-3.2505,0.2411-4.6666-0.559c-0.6157-0.3356-0.837-0.8013-1.0513-1.4669c-0.0739,0.1987-0.1182,0.311-0.1577,0.425 + c-0.2101,0.6389-0.7745,1.0337-1.3735,1.2725c-1.9925,0.7802-3.938,0.73-5.8223-0.3435 + C8.5374,1487.661,8.5142,1487.6636,8.4412,1487.6527z M22.5474,1484.0167c-0.0147-0.1808-0.0412-0.4707-0.061-0.7611 + c-0.0232-0.3395-0.1896-0.5831-0.4749-0.76c-0.3744-0.2321-0.7727-0.4083-1.1997-0.512c-0.8239-0.2057-1.6629-0.4252-2.5185-0.3492 + c-0.6208,0.0327-0.953,0.5907-0.9704,1.1777c-0.0205,0.769-0.0444,1.5367,0.0398,2.3057c0.0822,0.751,0.489,1.2255,1.1803,1.4575 + c0.8586,0.2881,1.7481,0.3691,2.6485,0.2933c0.6848-0.0491,1.0123-0.5936,1.1863-1.1986 + C22.5366,1485.1682,22.5589,1484.6487,22.5474,1484.0167z M9.4045,1483.1141c-0.1134,0.9247-0.1442,1.9932,0.2063,2.9098 + c0.1962,0.5435,0.5981,0.8466,1.1817,0.8531c0.9518,0.0037,1.9378-0.0103,2.8072-0.4528c0.5768-0.2883,0.8292-0.876,0.8662-1.4905 + c0.0147-0.7285,0.031-1.458,0.0089-2.1859c-0.0258-0.9362-0.9047-1.1951-1.7025-1.0537c-0.9681,0.1608-1.9269,0.3424-2.8069,0.7985 + C9.7115,1482.6068,9.5176,1482.7949,9.4045,1483.1141z`}),eX=(0,n.jsx)("path",{d:`M6.6008,1518.849c0.2315-0.5784,0.4149-1.0645,0.6211-1.5406c0.1178-0.2721,0.1773-0.5444,0.196-0.842 + c0.0312-0.4971,0.0919-0.9944,0.1764-1.4854c0.4193-2.1274,2.796-2.9028,4.6762-3.2448c0.2042-0.0386,0.4123-0.0731,0.6071-0.1421 + c0.971-0.344,1.9829-0.4755,2.9991-0.5688c0.3057-0.0281,0.6208,0.0393,0.931,0.0686c0.8744,0.0826,1.726,0.2688,2.5572,0.5543 + c0.2551,0.0876,0.5193,0.1508,0.7822,0.2128c1.8101,0.3754,3.9031,1.3701,4.1342,3.4231c0.0442,0.33,0.0875,0.6598,0.1305,0.9844 + c0.3516,0.8457,0.7025,1.6896,1.0672,2.5669c0.0179,0.01,0.0682,0.052,0.1259,0.0685c0.9978,0.2668,1.5347,1.1696,2.1508,1.9165 + c0.1499,0.1849,0.2289,0.3918,0.2376,0.6304c0.0416,1.1447,0.0621,2.2892,0.0043,3.4662c-0.4951,0.573-1.0262,1.132-1.6766,1.5507 + c-3.022,1.9657-6.5273,3.3733-10.1718,3.3937c-3.3356,0.0201-6.6237-1.0955-9.4527-2.83c-0.4052-0.2551-0.8271-0.4875-1.2106-0.7717 + c-0.502-0.3726-0.9341-0.8267-1.3721-1.3096c-0.1173-1.2577-0.0423-2.5248,0.0147-3.8136c0.3982-0.6023,0.8455-1.1768,1.3748-1.6791 + c0.1917-0.1819,0.4452-0.3021,0.68-0.4335C6.3268,1518.9434,6.4881,1518.895,6.6008,1518.849z M23.4437,1519.4637 + c-0.1787,0.1091-0.2864,0.1687-0.3877,0.2379c-0.4203,0.2864-0.888,0.4594-1.3825,0.552c-1.7136,0.3403-3.0366,0.3027-4.6175-0.4926 + c-0.529-0.2581-0.8898-0.6765-1.0516-1.2538c-0.0183-0.0652,0.0126-0.1655-0.1229-0.1871c-0.0322,0.0702-0.0767,0.14-0.0972,0.2163 + c-0.1934,0.7902-0.867,1.1948-1.5753,1.4705c-1.7041,0.6951-4.0269,0.6241-5.5955-0.3811 + c-0.0458-0.0323-0.1158-0.0306-0.1727-0.0443c-0.5141,1.1079-0.6362,4.903-0.0686,6.3997c2.1209,1.4448,4.7647,1.8486,7.2759,1.9926 + c1.0451,0.0602,2.0803-0.0757,3.1084-0.2471c1.5558-0.2692,3.655-0.8204,4.8675-1.8657c0.4061-1.9717,0.3315-4.0312-0.0127-6.0082 + C23.5924,1519.7377,23.5179,1519.6315,23.4437,1519.4637z M22.5524,1516.192c-0.0188-0.2584-0.0393-0.6326-0.0753-1.0052 + c-0.0297-0.3079-0.1799-0.5527-0.4471-0.713c-0.9652-0.5962-2.1051-0.783-3.2098-0.9392c-0.6845-0.0742-1.4372,0.2053-1.4893,1.1212 + c-0.0401,0.8314-0.073,1.6641,0.0495,2.4922c0.113,0.8359,0.6874,1.2185,1.453,1.4362c0.6904,0.1633,1.3904,0.2632,2.1023,0.2377 + C22.3492,1518.8159,22.5195,1517.3701,22.5524,1516.192z M14.4868,1515.7738c-0.0024,0-0.0047,0-0.0071,0 + c0-0.374,0.0203-0.7494-0.0046-1.1217c-0.0405-0.6049-0.4397-0.9999-1.0474-1.0232c-0.7063-0.0253-1.4075,0.1095-2.0897,0.2844 + c-0.4662,0.1122-0.9083,0.2888-1.3355,0.509c-0.3843,0.1981-0.6096,0.4884-0.6257,0.9286 + c-0.0358,0.8062-0.1246,1.6288,0.1454,2.4089c0.2585,0.7489,0.6413,1.0433,1.4241,1.0623c0.6896,0.0167,1.3681-0.0804,2.0363-0.2415 + c0.1997-0.0482,0.392-0.1373,0.5786-0.2266c0.4385-0.2095,0.7265-0.5498,0.8224-1.0314 + C14.4956,1516.8131,14.4996,1516.293,14.4868,1515.7738z`}),eZ=(0,n.jsx)("path",{d:`M4.1134,180.9529c-0.1099-1.2857-0.0431-2.5526,0.019-3.8225c0.3857-0.5811,0.8136-1.1167,1.2932-1.6097 + c0.2194-0.2255,0.4845-0.3923,0.7784-0.5105c0.1528-0.0614,0.3039-0.1269,0.4086-0.1707c0.2257-0.5699,0.4225-1.0949,0.6426-1.61 + c0.1086-0.2542,0.1649-0.5072,0.1746-0.7835c0.0175-0.4988,0.0522-0.9961,0.1643-1.4875c0.3321-1.5749,1.8322-2.5157,3.292-2.9057 + c1.2525-0.3054,2.5077-0.6011,3.7669-0.8777c0.405-0.089,0.8242-0.1324,1.2389-0.1511c0.3088-0.0139,0.6211,0.043,0.9315,0.0725 + c0.8323,0.0791,1.6434,0.2547,2.4379,0.5173c0.3149,0.1041,0.6434,0.1678,0.9668,0.2457c1.7256,0.372,3.7162,1.3103,4.0312,3.2349 + c0.0698,0.3886,0.1105,0.7824,0.1782,1.2758c0.3246,0.7425,0.7485,1.5563,0.9932,2.4485c0.1023,0.0481,0.1917,0.1029,0.2888,0.1338 + c0.9415,0.2785,1.4298,1.1712,2.0363,1.868c0.151,0.184,0.2284,0.3917,0.2382,0.63c0.047,1.1446,0.0606,2.289,0.0104,3.4025 + c-0.4107,0.5747-1.1796,1.3073-1.7864,1.6833c-2.7216,1.7206-5.78,2.9957-9.0192,3.2364c-4.037,0.3328-7.9613-1.1015-11.326-3.2399 + C5.1927,182.1123,4.6578,181.5285,4.1134,180.9529z M8.3578,181.9201c0.909,0.7694,2.6595,1.3493,3.8328,1.5769 + c1.4516,0.261,2.9174,0.5211,4.3992,0.447c2.1733-0.1574,4.3723-0.5415,6.3096-1.5838c0.2578-0.1356,0.5078-0.2841,0.7272-0.5291 + c0.4192-2.0055,0.3459-4.107-0.039-6.1135c-0.0168-0.1037-0.0737-0.1932-0.1935-0.2074c-0.0438,0.0109-0.0912,0.01-0.122,0.0323 + c-1.7604,1.1719-4.4971,1.1486-6.3182,0.1154c-0.4804-0.2538-0.778-0.683-0.9399-1.1943c-0.0293-0.0589,0.0094-0.164-0.1034-0.1712 + c-0.061,0.0625-0.0875,0.144-0.1146,0.224c-0.1992,0.8079-0.919,1.2129-1.6409,1.4857c-1.6603,0.6568-4.0252,0.5828-5.5371-0.4153 + c-0.0435-0.0309-0.1143-0.0234-0.1696-0.0332C7.9301,176.806,7.8224,180.3435,8.3578,181.9201z M17.3172,171.7226 + c0.0151,0.3377,0.0238,0.7329,0.0521,1.1266c0.064,0.8901,0.4326,1.3564,1.2872,1.6348c0.823,0.2681,1.6723,0.3137,2.5286,0.2735 + c1.3578-0.0749,1.4354-2.0666,1.3586-3.0864c-0.0607-0.9685-0.1938-1.1533-1.0936-1.5273 + c-0.7926-0.3294-1.6277-0.4984-2.4722-0.6197c-0.7673-0.1117-1.5513,0.1396-1.6117,1.019 + C17.3412,170.9166,17.3344,171.291,17.3172,171.7226z M14.4894,171.7494c0-0.3749,0.014-0.7505-0.0034-1.1246 + c-0.0401-0.8332-0.7491-1.099-1.4855-1.0268c-1.0558,0.0959-2.1023,0.3572-3.0493,0.8386c-0.3694,0.1794-0.5436,0.4925-0.568,0.9029 + c-0.0334,0.5621-0.0691,1.1257,0.0103,1.6837c0.1162,0.7835,0.3925,1.7501,1.3558,1.7365c0.9124,0.0001,1.8484-0.0093,2.7022-0.3753 + C14.5915,173.9299,14.4992,172.7797,14.4894,171.7494z`}),eJ=(0,n.jsx)("path",{d:`M6.5937,1550.8488c0.2445-0.6021,0.4776-1.1567,0.6932-1.7183c0.0657-0.171,0.1002-0.3586,0.1194-0.5417 + c0.0368-0.3516,0.0469-0.7059,0.0778-1.0582c0.1057-1.7706,1.5718-2.9778,3.1882-3.4236c0.6215-0.1705,1.2523-0.3076,1.8796-0.4569 + c0.1414-0.0337,0.2905-0.042,0.4271-0.0884c0.9142-0.3101,1.8637-0.4315,2.8164-0.5334c0.5239-0.0562,1.0372,0.0675,1.5516,0.1331 + c0.9979,0.1057,1.9284,0.5054,2.9102,0.6974c1.7511,0.3711,3.7445,1.3669,4.0107,3.3264c0.0577,0.3698,0.0989,0.7418,0.1536,1.1586 + c0.347,0.7721,0.7522,1.5714,1.0026,2.4684c0.1165,0.0525,0.2437,0.1196,0.3776,0.1685c0.4002,0.1465,0.7431,0.3768,1.0174,0.7008 + c0.3228,0.3812,0.6338,0.7726,0.9505,1.1589c0.1365,0.1666,0.2109,0.356,0.2198,0.5721c0.0477,1.1649,0.0682,2.3298,0.0056,3.5167 + c-0.5314,0.5817-1.0664,1.1664-1.745,1.5858c-3.0716,1.92-6.6001,3.3236-10.2681,3.2942 + c-3.6267-0.0037-7.1079-1.3772-10.1407-3.2959c-0.6606-0.411-1.1802-0.9833-1.7264-1.556c-0.1182-1.2648-0.0428-2.5316,0.014-3.829 + c0.4015-0.5905,0.8413-1.1707,1.3741-1.6698c0.1931-0.1809,0.4456-0.3016,0.68-0.4338 + C6.3259,1550.944,6.4862,1550.8938,6.5937,1550.8488z M8.3292,1557.9161c2.074,1.5024,5.3437,1.9788,7.8674,2.0176 + c2.2771-0.0933,4.5979-0.4833,6.6323-1.5575c0.2743-0.1473,0.5558-0.2852,0.7602-0.5242c0.456-1.7899,0.3314-3.6573,0.1271-5.472 + c-0.0286-0.2264-0.0849-0.4497-0.1372-0.6725c-0.0241-0.1028-0.078-0.1921-0.2431-0.2169 + c-0.0763,0.0438-0.1851,0.0999-0.2871,0.1664c-0.3887,0.2529-0.8126,0.417-1.2629,0.5221 + c-1.5613,0.3895-3.2429,0.3041-4.6847-0.4436c-0.6396-0.3046-0.9778-0.78-1.1601-1.4626c-0.0258,0.0115-0.0541,0.0146-0.0616,0.0289 + c-0.038,0.0719-0.0823,0.1433-0.1033,0.2207c-0.14,0.5156-0.4757,0.87-0.9278,1.1237c-1.8667,1.0358-4.4446,1.0455-6.2737-0.084 + c-0.0285-0.0192-0.0788-0.006-0.119-0.0078C7.9079,1552.8304,7.839,1555.8177,8.3292,1557.9161z M17.2752,1547.6772 + c0.1301,1.2689-0.1464,2.2831,1.3502,2.7854c0.8252,0.2446,1.6687,0.3423,2.5276,0.2804c0.9531-0.0525,1.1838-0.9138,1.3299-1.7047 + c0.1101-0.6189,0.0606-1.2428,0.0032-1.8655c-0.0289-0.3134-0.1682-0.5543-0.4257-0.7242 + c-0.9646-0.5975-2.1038-0.7758-3.2048-0.9401c-0.2039-0.0195-0.4192-0.0209-0.6215,0.0175 + c-0.4647,0.1112-0.7964,0.3767-0.8653,0.866C17.3111,1546.8019,17.3064,1547.2192,17.2752,1547.6772z M14.4873,1547.6948 + c-0.0038,0-0.0075,0-0.0113,0c0-0.3743,0.0151-0.7491-0.0037-1.1224c-0.0255-0.5044-0.4437-0.9238-0.9052-0.9652 + c-0.2061-0.0186-0.4164-0.0385-0.6208-0.0175c-0.8511,0.0868-1.6814,0.2764-2.4816,0.5795 + c-0.2308,0.0874-0.4482,0.218-0.6586,0.3497c-0.2626,0.1642-0.402,0.4128-0.4229,0.7252c-0.0402,0.6016-0.1013,1.2052-0.0027,1.8043 + c0.1288,0.8141,0.4145,1.6888,1.3926,1.7035c0.9128,0.024,1.8412-0.0563,2.6921-0.4062c0.5118-0.2244,0.8379-0.6044,0.9361-1.1609 + C14.4996,1548.6934,14.4963,1548.1936,14.4873,1547.6948z`}),e1=(0,n.jsx)("path",{d:`M24.4214,1580.3396c0.341,0.7734,0.7601,1.567,0.9989,2.4653c0.138,0.0623,0.2849,0.135,0.4368,0.1954 + c0.3547,0.141,0.6685,0.3453,0.9171,0.6324c0.3403,0.3934,0.6634,0.8018,0.9941,1.2037c0.1369,0.1665,0.2104,0.3572,0.2203,0.5725 + c0.0536,1.1649,0.0591,2.3297,0.0141,3.5171c-0.5387,0.5802-1.0695,1.1703-1.7498,1.5864 + c-3.3944,2.1082-7.3548,3.5565-11.4029,3.217c-3.1935-0.2528-6.2133-1.4937-8.9205-3.1608c-0.7039-0.4231-1.2542-1.021-1.8179-1.619 + c-0.111-1.2772-0.0402-2.5438,0.0141-3.8121c0.3907-0.5828,0.8153-1.121,1.2964-1.6125c0.2196-0.2242,0.4847-0.392,0.7774-0.5125 + c0.152-0.0625,0.3022-0.1294,0.3924-0.1682c0.2347-0.58,0.4356-1.1031,0.6587-1.6167c0.1105-0.2544,0.1605-0.5079,0.1644-0.7847 + c0.0073-0.5205,0.0623-1.0372,0.18-1.5476c0.52-2.2083,2.993-2.9167,4.9591-3.2657c0.2444-0.0463,0.49-0.0936,0.7284-0.1633 + c0.864-0.2528,1.7525-0.3617,2.6436-0.4448c0.2441-0.0228,0.496,0.0385,0.7444,0.0604c0.8534,0.0751,1.6863,0.2438,2.5039,0.504 + c0.3755,0.1195,0.774,0.1655,1.1529,0.2761c0.5186,0.151,1.0353,0.3138,1.5403,0.5048c1.168,0.4727,2.1996,1.4661,2.391,2.7512 + C24.3233,1579.5077,24.3638,1579.9012,24.4214,1580.3396z M8.4595,1583.4874c-0.5686,1.5027-0.6179,4.3715-0.1193,6.4048 + c0.1704,0.1163,0.3627,0.2793,0.5814,0.3903c0.4259,0.2163,0.8582,0.4248,1.3025,0.5992c2.837,1.0309,5.9558,1.2728,8.916,0.6997 + c1.1724-0.2151,2.3062-0.5508,3.3809-1.0715c0.3739-0.1814,0.7545-0.355,1.0905-0.6937c0.4448-1.9755,0.3093-4.0466-0.0066-6.0341 + c-0.0193-0.1459-0.0677-0.2858-0.274-0.3298c-0.9481,0.6265-1.3884,0.6787-2.4803,0.8525 + c-1.1878,0.2153-2.3182-0.0072-3.4193-0.4478c-0.733-0.2932-1.2852-0.7601-1.4745-1.5674 + c-0.0028-0.0118-0.0264-0.0187-0.0403-0.0278c-0.0184,0.0093-0.0466,0.014-0.0536,0.0287c-0.035,0.0742-0.0717,0.1489-0.0947,0.2272 + c-0.1431,0.4874-0.4641,0.8298-0.8897,1.0812c-1.2741,0.7024-2.7309,0.9447-4.1671,0.6798 + c-0.7097-0.0897-1.386-0.2783-1.9951-0.6693C8.6497,1583.5667,8.5725,1583.5404,8.4595,1583.4874z M22.5498,1580.0242 + c-0.1042-1.0105,0.0893-1.3834-0.9694-1.8499c-0.9058-0.395-1.8625-0.587-2.8388-0.6863c-0.8283-0.0842-1.4192,0.306-1.4331,1.3049 + c-0.0075,0.5414-0.0116,1.0834,0.001,1.6245c0.0332,0.7356,0.1486,1.4479,0.8701,1.8124c0.9072,0.4362,1.9321,0.533,2.926,0.4902 + C22.4117,1582.6642,22.5523,1581.0179,22.5498,1580.0242z M14.4862,1579.714c-0.0017,0-0.0034,0-0.005,0 + c0-0.3533,0.0145-0.7072-0.0032-1.0596c-0.0261-0.902-0.7998-1.2321-1.6007-1.1008c-0.6311,0.1228-1.2648,0.2424-1.8844,0.4111 + c-0.3563,0.0969-0.6941,0.2729-1.0282,0.4376c-0.3618,0.1785-0.5474,0.479-0.5866,0.8911 + c-0.0731,0.8456-0.0989,1.7177,0.1971,2.5249c0.2077,0.5973,0.6377,0.8972,1.271,0.9141c0.7538,0.02,1.4918-0.0854,2.2188-0.2739 + c0.1594-0.0414,0.3125-0.1123,0.4628-0.182c0.4636-0.2151,0.7615-0.5702,0.8595-1.0752 + C14.4896,1580.7117,14.5,1580.2124,14.4862,1579.714z`}),e0=(0,n.jsx)("path",{d:`M4.1145,1652.949c-0.1149-1.2618-0.0488-2.5284,0.0174-3.8175c0.3863-0.5828,0.8152-1.1456,1.3283-1.6342 + c0.2063-0.1965,0.4769-0.3287,0.7273-0.4746c0.1415-0.0826,0.3013-0.1338,0.3994-0.1761c0.2403-0.5909,0.4508-1.1328,0.6817-1.6658 + c0.1019-0.2357,0.133-0.4719,0.1481-0.7251c0.0283-0.4766,0.0766-0.9539,0.151-1.4254c0.4063-2.3113,3.0116-3.0787,5.0234-3.4155 + c0.2046-0.0341,0.4112-0.0676,0.6094-0.1266c0.8626-0.257,1.7488-0.397,2.641-0.4529c0.492-0.0309,0.9952,0.0564,1.4886,0.125 + c0.5977,0.0826,1.1845,0.2209,1.7639,0.3981c0.4167,0.1274,0.8557,0.1813,1.2747,0.3026c0.5186,0.1501,1.0333,0.3193,1.5378,0.5114 + c1.1493,0.4719,2.1507,1.452,2.3477,2.7148c0.0678,0.3889,0.1077,0.7827,0.1713,1.2573c0.3255,0.7616,0.7722,1.5656,0.9941,2.4683 + c0.1645,0.0704,0.315,0.1373,0.4672,0.1997c0.3327,0.1365,0.6321,0.3281,0.8668,0.598c0.355,0.4082,0.6907,0.8331,1.0333,1.252 + c0.1224,0.1497,0.1892,0.3234,0.1985,0.5161c0.0574,1.1853,0.066,2.3705,0.0148,3.5273c-0.8194,0.9978-1.7891,1.7336-2.9102,2.2765 + c-0.1872,0.0907-0.3715,0.1874-0.5551,0.2852c-1.7187,0.9164-3.5211,1.6101-5.4371,1.975 + c-3.9678,0.8286-8.1099-0.1022-11.6283-2.0171c-0.4216-0.2262-0.8411-0.4565-1.2608-0.6863 + C5.3917,1654.2922,4.7515,1653.6403,4.1145,1652.949z M15.9374,1646.2134c-0.0526,0.0555-0.1181,0.0924-0.1301,0.1421 + c-0.172,0.7135-0.6589,1.1383-1.3008,1.4114c-1.2323,0.542-2.3702,0.7255-3.7125,0.5029c-0.7285-0.0931-1.4287-0.2717-2.0587-0.6703 + c-0.0806-0.0509-0.1827-0.0682-0.2732-0.1006c-0.5827,1.3975-0.631,4.722-0.0992,6.3822c1.8637,1.4669,5.5004,1.9725,7.8467,1.99 + c2.2793-0.0699,4.5932-0.4786,6.6306-1.5366c0.2756-0.1436,0.5501-0.2925,0.7854-0.5537c0.3686-1.7842,0.3198-3.6396,0.0874-5.4415 + c-0.0299-0.2262-0.0778-0.4512-0.1343-0.6725c-0.031-0.1211-0.0994-0.231-0.2166-0.2283c-0.364,0.1849-0.682,0.3995-1.0326,0.5146 + c-1.1606,0.3807-2.349,0.5488-3.563,0.2878c-1.0223-0.2375-2.2843-0.5748-2.701-1.6573 + C16.021,1646.4681,15.9843,1646.3499,15.9374,1646.2134z M17.3071,1643.6107c-0.0092,0.0005-0.0184,0.0009-0.0275,0.0013 + c0.0254,0.4146,0.0483,0.8293,0.0768,1.2438c0.045,0.8828,0.625,1.3682,1.43,1.5935c0.7685,0.1797,1.5573,0.3059,2.3485,0.2479 + c0.7131-0.0748,1.0838-0.5426,1.2426-1.2128c0.2412-0.7974,0.1612-1.608,0.093-2.4167c-0.0244-0.2889-0.1894-0.5178-0.4333-0.6523 + c-0.825-0.5068-1.769-0.7103-2.7091-0.884c-0.6896-0.1472-1.6738-0.1639-1.9278,0.6533 + C17.2584,1642.6428,17.3149,1643.137,17.3071,1643.6107z M14.484,1643.6713c-0.0016,0-0.0032,0-0.0048,0 + c0-0.354,0.0165-0.7091-0.0036-1.0619c-0.045-0.9814-0.9281-1.1987-1.758-1.0449c-0.5525,0.1-1.1022,0.2195-1.6475,0.3536 + c-0.4263,0.105-0.8221,0.2948-1.1984,0.5219c-0.2861,0.1729-0.4573,0.4227-0.4846,0.7584c-0.0972,0.928-0.1165,1.8909,0.2589,2.765 + c0.2181,0.5779,0.8107,0.7634,1.3869,0.748c0.8276-0.0272,1.6759-0.1067,2.4423-0.4409c0.4932-0.2119,0.808-0.5786,0.9139-1.1084 + C14.4985,1644.6719,14.4935,1644.1707,14.484,1643.6713z`}),e3=(0,n.jsx)("path",{d:`M4.169,1617.0226c0.3484-0.4249,0.7129-0.8789,1.0881-1.324c0.273-0.3239,0.6137-0.5587,1.011-0.7101 + c0.1158-0.0442,0.2285-0.0963,0.362-0.1531c0.1698-0.6215,0.4404-1.2043,0.6909-1.7959c0.0701-0.1653,0.0672-0.3634,0.0881-0.5475 + c0.0563-0.4955,0.0874-0.9946,0.1652-1.4866c0.4123-2.2845,2.9898-3.0428,4.9802-3.3866c0.2452-0.0433,0.4931-0.0829,0.7313-0.1528 + c0.8436-0.248,1.711-0.358,2.5811-0.4386c0.2852-0.0265,0.579,0.0366,0.8687,0.0615c0.791,0.0684,1.5636,0.2277,2.3231,0.4592 + c0.258,0.0787,0.5249,0.1292,0.7891,0.1864c1.8611,0.3627,4.0915,1.2689,4.4103,3.3778c0.0647,0.3895,0.1053,0.7831,0.164,1.2297 + c0.3367,0.7661,0.764,1.5563,0.9937,2.4559c0.1198,0.0575,0.2446,0.1298,0.3781,0.179c0.4203,0.1552,0.7759,0.4021,1.0628,0.7432 + c0.3081,0.3663,0.6058,0.7415,0.9086,1.1122c0.1361,0.1667,0.2133,0.3561,0.2227,0.5717c0.0505,1.1649,0.0669,2.3296,0.0081,3.5247 + c-0.5698,0.6221-1.1514,1.2444-1.897,1.6812c-2.4301,1.4341-5.0709,2.6073-7.8878,2.985 + c-3.6767,0.5385-7.4132-0.3882-10.6559-2.1201c-0.3863-0.2041-0.7679-0.4172-1.1545-0.6206 + c-0.8807-0.4634-1.5863-1.1355-2.2389-1.854C4.0189,1620.2859,4.0171,1618.2504,4.169,1617.0226z M23.4362,1615.3817 + c-0.1532,0.0803-0.2301,0.1106-0.296,0.1566c-0.7241,0.5292-1.6116,0.6467-2.4746,0.7633 + c-1.1949,0.1992-2.3154-0.0781-3.4006-0.5448c-0.6413-0.2755-1.1133-0.722-1.2834-1.4308c-0.0075-0.031-0.0437-0.0552-0.0668-0.0825 + c-0.0315,0.025-0.084,0.045-0.0914,0.0758c-0.1885,0.7875-0.7414,1.2306-1.4496,1.5104c-1.2427,0.5027-2.2656,0.6532-3.6017,0.438 + c-0.7066-0.0938-1.3878-0.2662-2.0019-0.6478c-0.0839-0.0521-0.1779-0.0881-0.2655-0.1309 + c-0.2761,0.5029-0.3015,0.5005-0.4416,1.9454c-0.143,1.475-0.126,2.9492,0.2649,4.4238c1.1657,0.8992,2.8086,1.384,4.2457,1.6528 + c2.5378,0.5103,5.1618,0.4685,7.6677-0.1917c1.2035-0.295,2.3398-0.7656,3.372-1.4653c0.4121-1.994,0.3423-4.0305-0.0002-6.0261 + C23.5929,1615.6931,23.5118,1615.5674,23.4362,1615.3817z M17.3054,1611.573c-0.0105,0.0006-0.0211,0.0013-0.0316,0.002 + c0.0332,0.4764,0.0502,0.9548,0.1036,1.429c0.0685,0.6084,0.3957,1.0424,0.967,1.2747c0.9036,0.3672,1.8494,0.4615,2.815,0.4152 + c0.5385-0.0687,0.9375-0.3597,1.1072-0.8781c0.0988-0.2941,0.1716-0.5994,0.2264-0.905c0.1001-0.5588,0.019-1.1205-0.0034-1.6814 + c-0.0155-0.3894-0.189-0.6838-0.5257-0.8611c-0.7986-0.4613-1.6991-0.6729-2.5987-0.8298 + c-0.3651-0.0614-0.7477-0.0779-1.1163-0.0452C17.1952,1609.6099,17.3013,1610.7738,17.3054,1611.573z M14.4839,1611.6732 + c-0.0015,0-0.0031,0-0.0046,0c0-0.354,0.0163-0.7091-0.0036-1.0619c-0.0445-0.9825-0.9258-1.2006-1.7562-1.0472 + c-0.5525,0.0999-1.1022,0.2195-1.6476,0.3535c-0.4265,0.1047-0.8222,0.2946-1.1985,0.5214 + c-0.2862,0.1722-0.4586,0.4216-0.4861,0.7574c-0.0976,0.928-0.1166,1.8906,0.2578,2.7651c0.2173,0.5781,0.8095,0.7649,1.3858,0.7499 + c0.8478-0.0273,1.7195-0.1088,2.4985-0.4678C14.5496,1613.8141,14.4941,1612.6086,14.4839,1611.6732z`}),e4=(0,n.jsx)("path",{d:`M24.4234,76.3456c0.3325,0.7565,0.7598,1.547,0.9915,2.4477c0.1159,0.0571,0.2395,0.132,0.3726,0.1811 + c0.8844,0.2969,1.3566,1.1345,1.937,1.8019c0.1648,0.1993,0.2587,0.4215,0.2688,0.6832c0.0442,1.1443,0.0552,2.2883,0.0098,3.4566 + c-0.6825,0.7811-1.4513,1.4934-2.382,1.9767c-3.1851,1.8195-6.8044,3.0859-10.5177,2.833 + c-3.2851-0.2061-6.3895-1.4605-9.1777-3.1592c-0.7037-0.4233-1.253-1.0218-1.8099-1.6126 + c-0.1141-1.2851-0.0528-2.5516,0.0184-3.8303c0.3838-0.5717,0.801-1.1177,1.2938-1.5968c0.2045-0.1988,0.4708-0.3376,0.7198-0.4856 + c0.141-0.0838,0.3038-0.1309,0.4845-0.2061c0.1664-0.6374,0.4555-1.2351,0.7094-1.8472c0.061-0.1471,0.0499-0.325,0.0678-0.4891 + c0.0539-0.4957,0.0856-0.9948,0.1629-1.4868c0.408-2.2856,2.9846-3.0483,4.975-3.3926c0.2453-0.0432,0.4933-0.0818,0.7315-0.1519 + c1.3263-0.3727,2.7056-0.5721,4.0695-0.3046c0.5977,0.0832,1.1838,0.2241,1.763,0.4016c0.4166,0.1277,0.8564,0.1788,1.2754,0.3002 + c0.5186,0.1503,1.0327,0.3212,1.5368,0.5145c1.148,0.4777,2.1428,1.461,2.3333,2.7262 + C24.3224,75.495,24.363,75.8886,24.4234,76.3456z M15.9443,78.2403c-0.131,0.0294-0.1472,0.1354-0.1758,0.2352 + c-0.1533,0.5339-0.5092,0.8987-0.9854,1.1543c-1.2169,0.6203-2.5764,0.8874-3.9347,0.6447c-0.7522-0.0868-1.4727-0.27-2.1221-0.6803 + c-0.0784-0.0495-0.1808-0.0611-0.2695-0.0894c-0.564,1.3933-0.6186,4.4473-0.1158,6.3627c1.9386,1.4755,5.3664,1.9685,7.772,2.0056 + c2.1024-0.0029,5.9388-0.6653,7.5122-2.0942c0.4125-1.9718,0.318-4.054-0.0258-6.0349c-0.0214-0.1474-0.083-0.2815-0.242-0.3071 + c-0.3456,0.1775-0.6628,0.3933-1.0131,0.5107c-1.1816,0.396-2.3929,0.5541-3.6278,0.2837 + c-1.0043-0.2379-2.2371-0.5793-2.6481-1.6405C16.0237,78.4749,15.9853,78.3567,15.9443,78.2403z M17.3054,75.5736 + c-0.0105,0.0007-0.0211,0.0013-0.0316,0.002c0.0332,0.4765,0.0502,0.9548,0.1037,1.429c0.0687,0.6083,0.3962,1.0419,0.9674,1.2742 + c0.9037,0.3675,1.8496,0.4605,2.8151,0.4148c0.5386-0.0687,0.9372-0.3602,1.1068-0.8786c0.0987-0.2941,0.1715-0.5995,0.2262-0.9051 + c0.1001-0.5588,0.0188-1.1206-0.0035-1.6814c-0.0155-0.3896-0.1896-0.6838-0.5262-0.8608c-0.7988-0.461-1.6993-0.6722-2.5989-0.8293 + c-0.3651-0.0615-0.7477-0.078-1.1162-0.0452C17.1949,73.6107,17.3014,74.7744,17.3054,75.5736z M14.4838,75.679 + c-0.0014,0-0.0027,0-0.0041,0c0-0.354,0.0159-0.709-0.0035-1.062c-0.0424-0.9851-0.9192-1.2062-1.751-1.0538 + c-0.5526,0.0993-1.1022,0.2195-1.6478,0.3523c-0.4269,0.1039-0.8222,0.2945-1.1992,0.5201 + c-0.2861,0.1712-0.4623,0.4188-0.4901,0.7549c-0.0988,0.9282-0.1171,1.89,0.2547,2.7657c0.1568,0.3929,0.4675,0.6308,0.8862,0.711 + c0.1423,0.0273,0.289,0.0447,0.4336,0.0439c0.8685-0.0204,1.7626-0.1011,2.5617-0.4646 + C14.5491,77.8127,14.4938,76.6207,14.4838,75.679z`}),e5=(0,n.jsx)("path",{d:`M25.4238,142.8225c0.1974,0.0816,0.3512,0.1448,0.5047,0.2087c0.3123,0.13,0.5926,0.3148,0.8135,0.5672 + c0.3562,0.4071,0.6896,0.834,1.0359,1.2498c0.1861,0.2234,0.2189,0.4891,0.2228,0.763c0.0087,1.1099,0.057,2.206-0.0044,3.3176 + c-0.5381,0.5916-1.0738,1.1784-1.7566,1.5906c-4.504,2.8487-10.1058,4.2138-15.2592,2.4083c-1.25-0.4052-2.4613-0.9036-3.6076-1.552 + c-1.2465-0.5936-2.3503-1.3335-3.2617-2.4503c-0.1139-1.2227-0.0417-2.4893,0.0161-3.7991 + c0.3986-0.5778,0.8323-1.1623,1.3666-1.6602c0.1939-0.1806,0.4446-0.3034,0.6784-0.4368c0.1426-0.0814,0.3023-0.133,0.4173-0.1821 + c0.2421-0.5958,0.4619-1.1555,0.6981-1.7083c0.0927-0.2171,0.1113-0.4362,0.1282-0.6667c0.0364-0.4969,0.0845-0.9947,0.1634-1.4864 + c0.4172-2.2583,2.9638-3.0101,4.9333-3.3618c0.2857-0.053,0.5743-0.1003,0.8529-0.1802c0.8251-0.2365,1.6722-0.3401,2.5215-0.4181 + c0.2852-0.0262,0.579,0.0394,0.8687,0.0647c1.0667,0.0705,2.0751,0.4193,3.112,0.6472c1.8619,0.3656,4.0865,1.2821,4.3937,3.3946 + c0.0597,0.3693,0.1006,0.7417,0.1628,1.2091C24.7454,141.0908,25.1877,141.897,25.4238,142.8225z M8.3329,149.8545 + c1.8645,1.4959,5.5215,1.997,7.8788,2.0164c2.2794-0.0702,4.5929-0.4791,6.6303-1.5371c0.2756-0.1437,0.5496-0.2933,0.7866-0.5564 + c0.4026-1.9686,0.3138-4.0172-0.02-5.9918c-0.0201-0.1453-0.0643-0.2856-0.2658-0.3583c-0.0817,0.0474-0.1839,0.112-0.2909,0.1677 + c-0.2393,0.1247-0.4698,0.2799-0.7236,0.361c-1.1636,0.3719-2.3498,0.5452-3.564,0.2848c-1.1664-0.2591-2.5354-0.6854-2.8171-2.0103 + c-0.0333,0.0135-0.0624,0.0159-0.0703,0.03c-0.0392,0.0703-0.0841,0.1405-0.1065,0.2167c-0.1499,0.5088-0.4758,0.8809-0.9327,1.121 + c-1.2242,0.6538-2.6072,0.9166-3.984,0.6768c-0.7511-0.0869-1.4713-0.2679-2.1205-0.6769c-0.0803-0.0506-0.1823-0.0666-0.2724-0.098 + C7.8979,144.8584,7.8381,147.8641,8.3329,149.8545z M17.307,139.6117c-0.0092,0.0005-0.0184,0.0009-0.0275,0.0014 + c0.0255,0.4146,0.0484,0.8294,0.0769,1.2438c0.0453,0.883,0.6261,1.3674,1.4309,1.5927c0.7684,0.1801,1.5574,0.3053,2.3486,0.2475 + c0.7096-0.0724,1.0858-0.5469,1.2418-1.2137c0.2411-0.7974,0.1609-1.6081,0.0925-2.4168c-0.0244-0.2889-0.19-0.5175-0.434-0.652 + c-0.8252-0.5065-1.7693-0.7095-2.7093-0.8834c-0.6896-0.1473-1.6741-0.1632-1.927,0.6545 + C17.2586,138.6441,17.3148,139.138,17.307,139.6117z M14.4839,139.6731c-0.0015,0-0.0031,0-0.0046,0 + c0-0.354,0.0163-0.709-0.0036-1.0619c-0.0444-0.9825-0.9259-1.2006-1.7563-1.047c-0.5525,0.0997-1.1022,0.2194-1.6476,0.3531 + c-0.4265,0.1046-0.822,0.2948-1.1985,0.5215c-0.2861,0.1723-0.4585,0.4217-0.486,0.7575c-0.0975,0.9281-0.1166,1.8906,0.2578,2.7653 + c0.2175,0.5783,0.8095,0.7646,1.3858,0.7496c0.8479-0.0267,1.7193-0.1092,2.4985-0.4676 + C14.5496,141.8139,14.4941,140.6086,14.4839,139.6731z`}),e6=(0,n.jsx)("path",{d:`M28.0021,20.9007c-0.9679,1.2023-2.1327,1.9287-3.446,2.5544c-1.7353,0.9311-3.5585,1.6296-5.4952,1.9959 + c-3.9274,0.8118-8.0242-0.1082-11.5157-1.9825c-0.4046-0.2139-0.8037-0.4383-1.208-0.6529 + c-0.8606-0.4567-1.5432-1.1237-2.2229-1.8662c-0.1161-1.2597-0.0476-2.5454,0.0166-3.8145c0.3814-0.5845,0.8017-1.1,1.2622-1.5818 + c0.217-0.227,0.4787-0.3998,0.77-0.5233c0.1524-0.0646,0.3046-0.1294,0.4731-0.201c0.1625-0.6046,0.4073-1.1763,0.6724-1.7397 + c0.0914-0.1943,0.0901-0.4,0.1064-0.6086c0.0389-0.4969,0.0839-0.9948,0.1621-1.4867c0.4191-2.2811,3.0004-3.0335,4.9892-3.3767 + c0.2453-0.043,0.4928-0.0842,0.731-0.1541c0.8438-0.2476,1.7111-0.3565,2.5814-0.4372c0.2648-0.0246,0.5376,0.0349,0.8066,0.0581 + c0.8117,0.0702,1.6055,0.2286,2.3845,0.4685c0.2577,0.0794,0.5255,0.1269,0.7897,0.1843c1.8402,0.3625,4.0445,1.251,4.3898,3.3262 + c0.0696,0.3885,0.1094,0.7825,0.1778,1.2852c0.3141,0.7357,0.7577,1.5416,0.9929,2.4596c0.1437,0.0638,0.2915,0.1349,0.4434,0.1957 + c0.3542,0.1418,0.6676,0.3472,0.9159,0.6344c0.3402,0.3935,0.6627,0.8023,0.9929,1.2045c0.137,0.1669,0.2071,0.3589,0.2166,0.5739 + C28.0408,18.5809,28.0497,19.7455,28.0021,20.9007z M15.9277,14.1855c-0.0616,0.0978-0.122,0.1581-0.1404,0.2293 + c-0.1431,0.5728-0.5831,1.0322-1.1128,1.2702c-1.2492,0.6011-2.4996,0.8173-3.8807,0.5847 + c-0.7285-0.0931-1.4286-0.2717-2.0587-0.6703c-0.0806-0.051-0.1827-0.0681-0.2732-0.1003c-0.5827,1.3973-0.6309,4.7228-0.099,6.3823 + c1.8703,1.4687,5.4947,1.971,7.8467,1.9896c2.2794-0.0697,4.5929-0.4788,6.6307-1.5362c0.2757-0.1436,0.5496-0.2934,0.7851-0.5533 + c0.3687-1.7847,0.3199-3.64,0.0874-5.4422c-0.0299-0.2263-0.0778-0.4512-0.1343-0.6724c-0.0309-0.1212-0.0993-0.2309-0.2167-0.2283 + c-0.3639,0.1848-0.6819,0.3995-1.0325,0.5146c-1.1606,0.3808-2.349,0.5495-3.5631,0.2879c-1.0223-0.238-2.2843-0.5746-2.7009-1.6574 + C16.021,14.4681,15.9842,14.3498,15.9277,14.1855z M22.5334,11.9996c-0.0179-0.2908-0.0333-0.5817-0.0545-0.8722 + c-0.021-0.2884-0.162-0.5123-0.3921-0.6796c-1.0658-0.6775-2.3298-0.8978-3.5684-0.9878c-0.1223-0.0075-0.2506,0.0146-0.3704,0.0453 + c-0.4997,0.1111-0.7963,0.5502-0.8264,1.0467c-0.0165,0.7898-0.0541,1.5791,0.0373,2.3686 + c0.0833,0.7193,0.4664,1.1899,1.1352,1.4252c0.834,0.2934,1.7007,0.4003,2.5805,0.3544 + C22.4054,14.6586,22.56,13.0364,22.5334,11.9996z M14.4837,11.6819c-0.0013,0-0.0025,0-0.0038,0c0-0.354,0.0157-0.7089-0.0035-1.062 + c-0.0357-0.946-0.8727-1.2103-1.6866-1.0669c-0.6127,0.1168-1.2277,0.2353-1.8263,0.4069c-0.3754,0.1077-0.73,0.2987-1.0808,0.4781 + c-0.296,0.1514-0.4662,0.4134-0.4942,0.7496c-0.0952,0.9082-0.1182,1.8457,0.228,2.7088c0.1746,0.4732,0.5394,0.7246,1.0319,0.796 + c0.7892,0.0628,1.584-0.0546,2.3494-0.2444c0.1798-0.0474,0.3536-0.1234,0.5239-0.2002 + C14.5462,13.8173,14.495,12.622,14.4837,11.6819z`}),e7=(0,n.jsx)("path",{d:`M6.5895,46.8494c0.2369-0.5872,0.4289-1.0918,0.6447-1.5861c0.1191-0.2729,0.1699-0.5454,0.1843-0.8431 + c0.0229-0.4763,0.0818-0.953,0.1577-1.4243c0.4202-2.2815,2.9981-3.0352,4.988-3.3785c0.2453-0.0431,0.4928-0.084,0.7311-0.1539 + c0.8438-0.2473,1.7111-0.3554,2.5813-0.4383c0.2443-0.0233,0.4963,0.0304,0.7445,0.0519c0.8531,0.0741,1.6891,0.2312,2.5055,0.4958 + c0.2365,0.0766,0.4866,0.1111,0.7308,0.1637c1.8404,0.3608,4.045,1.2499,4.3916,3.3241c0.0698,0.3885,0.1096,0.7824,0.1785,1.2883 + c0.3134,0.7327,0.7562,1.539,0.9926,2.4572c0.1423,0.0637,0.2897,0.1355,0.4415,0.1964c0.3541,0.1419,0.668,0.3466,0.9164,0.6336 + c0.3404,0.3933,0.6628,0.8022,0.9931,1.2043c0.137,0.1668,0.2086,0.3583,0.2176,0.5735c0.0491,1.1648,0.0675,2.3295,0.0061,3.5136 + c-0.5287,0.5873-1.0645,1.174-1.7465,1.5863c-3.4774,2.1438-7.5199,3.5865-11.6592,3.1655 + c-2.505-0.2544-4.8308-1.0404-7.0421-2.2098c-0.4046-0.214-0.8037-0.4383-1.208-0.6529c-0.8605-0.4567-1.5438-1.123-2.2249-1.8682 + c-0.1158-1.2569-0.0477-2.5425,0.017-3.8125c0.3793-0.5844,0.8004-1.0992,1.2605-1.5814 + C5.6999,47.2096,6.1783,47.0162,6.5895,46.8494z M8.3354,53.8587c1.8762,1.4877,5.4621,1.9843,7.8222,2.0137 + c2.2997-0.0629,4.6367-0.4739,6.6917-1.5425c0.275-0.144,0.5505-0.2919,0.7815-0.558c0.4015-1.9714,0.3085-4.0178-0.0237-5.9944 + c-0.02-0.1461-0.0694-0.2836-0.267-0.3483c-0.0673,0.0377-0.1597,0.0804-0.2423,0.1373c-0.6936,0.4974-1.5381,0.6086-2.3587,0.7267 + c-1.0803,0.1948-2.109-0.0198-3.119-0.3856c-0.8194-0.2967-1.4755-0.7609-1.6655-1.6775c-0.1515,0.0461-0.159,0.157-0.1881,0.2547 + c-0.1581,0.5309-0.513,0.8954-0.9903,1.1483c-1.2165,0.6184-2.5738,0.8838-3.9306,0.6411 + c-0.7513-0.0869-1.4708-0.2704-2.1194-0.6802c-0.0784-0.0495-0.1807-0.0611-0.2693-0.0894 + C7.8953,48.8905,7.8392,51.9022,8.3354,53.8587z M17.3047,43.6212c-0.0085,0.0005-0.0171,0.0009-0.0256,0.0014 + c0.0259,0.4146,0.0487,0.8294,0.0784,1.2437c0.0556,0.7764,0.4793,1.2618,1.2035,1.5032c0.7987,0.2663,1.6238,0.3619,2.4601,0.3352 + c0.7482-0.0037,1.2109-0.5206,1.359-1.2305c0.2398-0.7978,0.1579-1.6085,0.0886-2.417c-0.0247-0.2886-0.198-0.5095-0.4395-0.6495 + c-0.2867-0.1662-0.5828-0.331-0.8952-0.4352c-0.9187-0.2902-1.8984-0.5661-2.8715-0.4876 + C17.1704,41.6427,17.3076,42.7864,17.3047,43.6212z M14.4836,43.6843c-0.0012,0-0.0024,0-0.0036,0 + c0-0.354,0.0155-0.7089-0.0034-1.062c-0.0353-0.9465-0.8703-1.2127-1.6844-1.0695c-0.6127,0.1166-1.2278,0.2349-1.8265,0.4064 + c-0.3755,0.1076-0.7301,0.2986-1.081,0.4778c-0.296,0.1511-0.4677,0.4122-0.4959,0.7485c-0.0956,0.9081-0.1185,1.8456,0.2268,2.709 + c0.1982,0.5793,0.7574,0.8317,1.3418,0.8179c0.8686-0.0224,1.7626-0.1006,2.5623-0.4634 + C14.545,45.8192,14.4954,44.6249,14.4836,43.6843z`}),e8=(0,n.jsx)("path",{d:`M27.9701,116.9417c-0.7862,0.9567-1.7529,1.6959-2.8747,2.238c-0.1872,0.0905-0.3717,0.187-0.5553,0.2847 + c-1.7005,0.9046-3.481,1.5951-5.3755,1.9634c-3.8818,0.8307-7.9385-0.0338-11.4165-1.8485 + c-0.5001-0.2555-0.985-0.5404-1.4801-0.8059c-0.8403-0.4507-1.4985-1.1132-2.1546-1.8264 + c-0.1145-1.2538-0.0464-2.5206,0.0169-3.8121c0.3834-0.5819,0.8133-1.144,1.3252-1.6336c0.2059-0.1969,0.4762-0.3297,0.7264-0.476 + c0.1416-0.0828,0.3017-0.1337,0.4076-0.1792c0.2457-0.6034,0.4682-1.1624,0.7018-1.7168c0.0827-0.1962,0.1099-0.394,0.1243-0.6049 + c0.034-0.4973,0.0742-0.996,0.151-1.488c0.3951-2.2924,2.963-3.0663,4.9563-3.4136c0.2655-0.048,0.534-0.0902,0.7924-0.165 + c0.8445-0.2446,1.7118-0.3545,2.5821-0.4329c0.2853-0.0257,0.579,0.0409,0.8687,0.0665c0.7701,0.068,1.5217,0.2269,2.2627,0.4456 + c0.2787,0.0823,0.5651,0.1395,0.8492,0.2027c1.8413,0.366,4.0408,1.2613,4.3749,3.3414c0.0684,0.3888,0.1082,0.7826,0.1738,1.27 + c0.3276,0.747,0.7605,1.5568,0.9955,2.4524c0.0805,0.0418,0.1494,0.0908,0.2262,0.1153c0.9454,0.2763,1.4695,1.1208,2.0619,1.837 + c0.1795,0.2166,0.2841,0.4573,0.285,0.7412c0.0033,1.0826,0.0083,2.1651,0.0102,3.2477 + C28.0056,116.8058,27.9841,116.867,27.9701,116.9417z M23.6256,117.8057c0.406-1.9975,0.3171-4.0315-0.0186-6.0294 + c-0.02-0.1462-0.07-0.2834-0.2674-0.347c-0.0676,0.0379-0.1599,0.0809-0.2427,0.1378c-0.6937,0.4972-1.5383,0.6079-2.3589,0.7263 + c-1.0581,0.1914-2.0686-0.0118-3.0606-0.3642c-0.8381-0.2977-1.5281-0.7534-1.7227-1.6992 + c-0.1528,0.0469-0.1592,0.1584-0.1883,0.2558c-0.1587,0.5306-0.5135,0.8952-0.9911,1.1477 + c-1.2167,0.6182-2.5739,0.8832-3.9307,0.6406c-0.7513-0.0868-1.4707-0.2709-2.1193-0.6807 + c-0.0781-0.0494-0.1805-0.0604-0.2689-0.0883c-0.5614,1.3897-0.617,4.4024-0.1219,6.3483c1.825,1.4346,4.8725,1.8578,7.1384,2.0057 + C17.9124,119.9609,21.672,119.3437,23.6256,117.8057z M17.3056,107.5636c-0.0009,0-0.0019,0-0.0028,0 + c-0.0124,0.4987,0.0098,0.9993,0.0815,1.4929c0.0844,0.5528,0.3743,0.9643,0.8961,1.1897c0.7229,0.3338,1.5231,0.4205,2.309,0.4626 + c0.2265,0.0126,0.4582-0.0055,0.683-0.0398c0.9113-0.1236,1.0709-0.9901,1.2191-1.7492c0.1029-0.5582,0.0208-1.1203-0.0006-1.6812 + c-0.0159-0.417-0.2133-0.715-0.5716-0.8992c-0.7844-0.4434-1.667-0.6414-2.5448-0.7997c-0.3651-0.062-0.7475-0.0795-1.1163-0.0482 + c-0.4756,0.0403-0.7932,0.364-0.8932,0.8284C17.279,106.7281,17.3081,107.1491,17.3056,107.5636z M14.4851,107.6294 + c-0.0016,0-0.0031,0-0.0047,0c0-0.3332,0.0148-0.6672-0.0031-0.9995c-0.0437-1.019-0.9445-1.223-1.8009-1.0581 + c-0.9537,0.1934-1.9496,0.3253-2.7873,0.8571c-0.3092,0.1826-0.488,0.4498-0.506,0.8111c-0.0217,0.4365-0.0526,0.8739-0.0454,1.3103 + c0.037,1.0143,0.3229,2.1647,1.5496,2.1608c0.8916-0.0095,1.8007-0.0963,2.6257-0.4583c0.4681-0.211,0.7666-0.5673,0.8706-1.0707 + C14.4964,108.6718,14.4964,108.1492,14.4851,107.6294z`}),e9=(0,n.jsx)("path",{d:`M28.0051,1716.8949c-0.9612,1.201-2.1278,1.9308-3.4397,2.5549c-1.7169,0.9198-3.5178,1.6154-5.4332,1.985 + c-3.9456,0.8353-8.0663-0.0768-11.5776-1.9611c-0.3864-0.2041-0.768-0.4171-1.1547-0.6205 + c-0.8808-0.4633-1.5862-1.1356-2.2385-1.8542c-0.1423-0.7177-0.1434-2.7616-0.0006-3.9061c0.3439-0.5354,0.7664-1.0491,1.225-1.5323 + c0.2161-0.2278,0.4767-0.4023,0.7679-0.5261c0.1524-0.0646,0.3055-0.1274,0.4772-0.199c0.1685-0.623,0.4407-1.2054,0.6907-1.7972 + c0.0699-0.1654,0.0667-0.3634,0.0876-0.5476c0.0563-0.4954,0.0876-0.9946,0.1655-1.4865c0.4131-2.2845,2.9911-3.0415,4.9812-3.3859 + c0.2453-0.0432,0.4931-0.0828,0.7314-0.1525c0.8437-0.2476,1.7109-0.3584,2.5811-0.4385c0.2853-0.0264,0.579,0.0367,0.8687,0.0616 + c0.7911,0.0685,1.5635,0.2281,2.3229,0.4598c0.258,0.0787,0.525,0.1287,0.7893,0.1859c1.861,0.3629,4.0915,1.27,4.4091,3.3792 + c0.0644,0.3895,0.1051,0.7831,0.1638,1.2296c0.3404,0.7648,0.7597,1.5582,0.9981,2.4576c0.1163,0.0554,0.2415,0.127,0.3749,0.1764 + c0.4202,0.1553,0.7756,0.4026,1.0623,0.7438c0.3079,0.3666,0.6059,0.7415,0.9087,1.1123c0.1362,0.1667,0.212,0.3564,0.222,0.5719 + C28.0423,1714.5704,28.0465,1715.7351,28.0051,1716.8949z M8.4769,1711.4741c-0.5944,1.3815-0.6472,4.704-0.1175,6.4033 + c1.8491,1.4668,5.5086,1.9767,7.844,1.9938c2.2794-0.069,4.593-0.4775,6.6313-1.5336c0.2758-0.1436,0.55-0.2928,0.7928-0.5583 + c0.4092-1.9845,0.314-4.0564-0.0312-6.0464c-0.0212-0.1467-0.0855-0.2805-0.3023-0.3c-0.7597,0.5984-1.768,0.7924-2.7242,0.882 + c-1.2409,0.1711-2.3951-0.1238-3.5011-0.6597c-0.5309-0.2571-0.8926-0.6693-1.0658-1.2407 + c-0.0183-0.0604,0.0138-0.178-0.1158-0.1628c-0.03,0.0358-0.0713,0.0629-0.0795,0.0979c-0.1682,0.7141-0.6537,1.141-1.2956,1.4152 + c-1.1934,0.5339-2.4084,0.7335-3.712,0.5056c-0.7284-0.0929-1.4296-0.269-2.0588-0.6689 + C8.6737,1711.5585,8.5963,1711.5309,8.4769,1711.4741z M22.5308,1707.9766c-0.0144-0.2494-0.0348-0.4985-0.0418-0.7479 + c-0.011-0.3898-0.189-0.6841-0.5256-0.8611c-0.7989-0.4625-1.6997-0.668-2.5989-0.8302c-0.3448-0.0608-0.7037-0.0652-1.0553-0.0571 + c-0.5816-0.0024-0.9624,0.558-0.9845,1.095c-0.0252,0.7684-0.0536,1.5371,0.029,2.3064c0.0833,0.7753,0.4976,1.255,1.2214,1.4923 + c0.7996,0.2626,1.6243,0.361,2.4607,0.3297C22.4024,1710.6873,22.5671,1709.0355,22.5308,1707.9766z M14.4838,1707.6798 + c-0.0013,0-0.0027,0-0.004,0c0-0.354,0.0158-0.709-0.0035-1.0619c-0.0362-0.9456-0.875-1.208-1.6885-1.0646 + c-0.6126,0.1171-1.2266,0.2384-1.8264,0.4067c-0.3563,0.1001-0.6927,0.2803-1.0272,0.4464 + c-0.3423,0.1698-0.5341,0.4574-0.5527,0.8455c-0.0446,0.8699-0.135,1.7631,0.2056,2.5913c0.2206,0.6039,0.7536,0.886,1.3748,0.8698 + c0.8684-0.0253,1.7627-0.1016,2.5618-0.4662C14.5486,1709.8135,14.4939,1708.6216,14.4838,1707.6798z`}),ae=(0,n.jsx)("path",{d:`M24.4282,1676.3574c0.3444,0.7688,0.7604,1.5632,0.9947,2.4528c0.0907,0.0438,0.179,0.0989,0.2751,0.1309 + c0.9396,0.2828,1.4456,1.1521,2.0436,1.8593c0.134,0.1653,0.2319,0.3464,0.2423,0.5641c0.0562,1.1853,0.0732,2.3706,0.01,3.5676 + c-0.5372,0.5898-1.073,1.1766-1.7559,1.5889c-4.5045,2.8481-10.1063,4.2123-15.2595,2.4061 + c-1.2499-0.4054-2.4611-0.9041-3.6074-1.5522c-1.2327-0.5852-2.3572-1.34-3.2248-2.4073c-0.1238-0.7441-0.1253-2.5247,0.0037-3.874 + c0.3774-0.5464,0.8112-1.1309,1.3458-1.6285c0.1939-0.1805,0.4449-0.303,0.6787-0.4363c0.1427-0.0813,0.3022-0.1331,0.4154-0.1814 + c0.2428-0.5975,0.4629-1.1572,0.6987-1.7102c0.0925-0.217,0.1103-0.4366,0.1273-0.667c0.0366-0.4968,0.0849-0.9946,0.1639-1.4862 + c0.4186-2.2582,2.9657-3.0081,4.9351-3.3599c0.2858-0.0529,0.5742-0.1007,0.8529-0.1803c0.8252-0.236,1.6723-0.3398,2.5216-0.4178 + c0.2852-0.0264,0.579,0.0397,0.8687,0.0649c1.0667,0.0702,2.0749,0.4203,3.112,0.6476c1.8405,0.3646,4.0425,1.2572,4.3815,3.3347 + C24.3207,1675.4615,24.3602,1675.8555,24.4282,1676.3574z M23.3416,1679.4281c-0.0822,0.0477-0.1846,0.1127-0.2917,0.1685 + c-0.2394,0.1245-0.4702,0.2791-0.7239,0.3604c-1.1637,0.3724-2.3499,0.5416-3.5641,0.2837 + c-0.5703-0.121-1.1275-0.2881-1.6501-0.5565c-0.6322-0.314-0.9756-0.7749-1.1725-1.4487c-0.1305,0.0369-0.1431,0.1448-0.1716,0.2437 + c-0.1466,0.5096-0.475,0.8807-0.9321,1.1204c-1.2246,0.6533-2.6074,0.9153-3.9843,0.6758 + c-0.7511-0.0873-1.4711-0.2689-2.1202-0.6781c-0.0797-0.0503-0.1818-0.0651-0.2715-0.0956 + c-0.5822,1.4146-0.6278,4.7504-0.0944,6.3821c1.8159,1.4318,5.3728,1.9523,7.6617,1.9902c2.3407-0.0417,4.7241-0.4561,6.8172-1.5411 + c0.2746-0.1451,0.5499-0.2927,0.7851-0.5568c0.4014-1.9694,0.3134-4.0177-0.0211-5.9927 + C23.5881,1679.6376,23.5424,1679.4982,23.3416,1679.4281z M17.3084,1675.5702c-0.0128,0.0009-0.0256,0.0016-0.0384,0.0024 + c0.0373,0.4969,0.0531,0.9967,0.1178,1.4901c0.0726,0.554,0.376,0.9626,0.8985,1.186c0.7239,0.3324,1.5234,0.4187,2.3096,0.4602 + c0.6983,0.0291,1.3902-0.0995,1.6467-0.8328c0.1137-0.3101,0.1897-0.6373,0.2495-0.963c0.1025-0.5583,0.0198-1.1204-0.0022-1.6813 + c-0.0153-0.3894-0.188-0.6846-0.5237-0.8625c-0.3295-0.1743-0.6668-0.3494-1.021-0.4579c-0.8736-0.257-1.7759-0.4839-2.6943-0.4214 + C17.216,1673.5796,17.2918,1674.7975,17.3084,1675.5702z M14.4848,1675.6415c-0.0014,0-0.0027,0-0.0041,0 + c0-0.3333,0.0139-0.6671-0.003-0.9995c-0.0391-1.025-0.9301-1.2343-1.7894-1.0724c-0.5321,0.0962-1.0614,0.2115-1.5869,0.3391 + c-0.427,0.1035-0.823,0.2915-1.202,0.5138c-0.3089,0.1812-0.4965,0.4432-0.5146,0.8054c-0.0391,0.9086-0.1566,1.8555,0.2422,2.7079 + c0.2147,0.5151,0.7058,0.7695,1.2482,0.7743c0.9122-0.0057,1.8434-0.0964,2.6831-0.4794c0.4412-0.2115,0.7215-0.5588,0.8225-1.0369 + C14.4963,1676.684,14.4963,1676.1615,14.4848,1675.6415z`}),aa=(0,n.jsx)("path",{d:`M12.6271,824.7814c-0.1115-0.6715-0.1202-1.3365-0.1133-2.0015c0.0012-0.1198,0.0485-0.2391,0.0707-0.3411 + c0.0595-0.0338,0.0985-0.0759,0.1305-0.0712c0.4694,0.0694,0.9378,0.145,1.397,0.2177c0.0421,0.0759,0.0938,0.1277,0.098,0.1832 + c0.0554,0.7252,0.0419,1.4512,0.0516,2.1001c-0.1617,0.353-0.3887,0.4915-0.6794,0.4888 + C13.1826,825.3536,12.8622,825.1815,12.6271,824.7814z`}),al=(0,n.jsx)("path",{d:`M17.012,824.8911c0-0.5195,0-1.057,0-1.597c0.2676-0.1912,0.5741-0.1337,0.851-0.1974 + c0.2597-0.0599,0.5217-0.1099,0.7651-0.1606c0.0479,0.0687,0.0908,0.1017,0.0912,0.1351c0.0047,0.4778,0.0174,0.9561,0,1.4332 + c-0.0153,0.4222-0.2593,0.6862-0.6551,0.8174c-0.2034,0.0674-0.4065,0.0801-0.6112,0.0086 + C17.288,825.2728,17.2333,825.2184,17.012,824.8911z`}),at=(0,n.jsx)("path",{d:`M13.5887,790.6611c0.2721-0.0992,0.5206,0.0728,0.7845,0.0879c0.2679,0.0153,0.5339,0.0627,0.8217,0.0987 + c0.1207,0.2404,0.0678,0.4924,0.0793,0.7333c0.0207,0.4269,0.0023,0.9682-0.0121,1.3644c-0.3273,0.6658-1.2576,0.5553-1.5982,0.018 + C13.5072,792.3281,13.4701,791.1992,13.5887,790.6611z`}),ac=(0,n.jsx)("path",{d:`M18.0615,791.2171c0.5461-0.1455,1.0418-0.2776,1.5717-0.4188c0.0305,0.0724,0.0856,0.1426,0.0852,0.2125 + c-0.0021,0.4345-0.0123,0.8691-0.0283,1.3034c0.0274,0.9693-1.6691,1.3854-1.6836,0.2415 + C18.0292,792.1242,17.9822,791.6891,18.0615,791.2171z`}),ai=(0,n.jsx)("path",{d:`M11.7914,854.0692c0.5017,0.0974,0.9828,0.1907,1.4557,0.2825c0.0396,0.0781,0.0882,0.1311,0.0914,0.1867 + c0.0427,0.7437,0.0512,1.4878,0.0481,2.1726c-0.1953,0.3566-0.4527,0.4595-0.7669,0.4045c-0.3422-0.06-0.6221-0.2295-0.7749-0.558 + c-0.043-0.0923-0.0802-0.1963-0.0844-0.2963c-0.026-0.6214-0.0458-1.2432-0.0571-1.8649 + C11.7016,854.2997,11.7539,854.2023,11.7914,854.0692z`}),as=(0,n.jsx)("path",{d:`M16.1195,855.1567c0.3462-0.1072,1.3983-0.255,1.6934-0.2408c0.017,0.0743,0.0494,0.1532,0.0507,0.2327 + c0.0065,0.395,0.0138,0.7903,0.0036,1.1851c-0.013,0.5018-0.2071,0.7846-0.6104,0.9073c-0.4522,0.1351-0.9467,0.027-1.1332-0.4847 + C16.102,856.2589,16.0865,855.7017,16.1195,855.1567z`}),ar=(0,n.jsx)("path",{d:`M14.3467,758.7624c0.2773-0.0797,0.5298,0.0552,0.7926,0.0846c0.2654,0.0297,0.5311,0.0566,0.7843,0.0835 + c0.1323,0.3506,0.1604,0.7054,0.1265,1.4822c-0.0072,0.166-0.0063,0.3337-0.1684,0.4813c-0.447,0-0.919,0-1.3809,0 + c-0.2219-0.2095-0.182-0.4711-0.2015-0.712c-0.0184-0.2269-0.0248-0.4557-0.0203-0.6833 + C14.2837,759.2549,14.2176,759.0026,14.3467,758.7624z`}),ao=(0,n.jsx)("path",{d:`M18.8053,759.0404c0.5126-0.1778,1.0155-0.3523,1.5209-0.5276c0.127,0.5369,0.1059,1.3105-0.0437,1.8008 + c-0.4523,0.1139-0.9101,0.2291-1.3984,0.3521c-0.0385-0.0596-0.1138-0.1229-0.1171-0.1897 + C18.7436,760.0009,18.7374,759.5253,18.8053,759.0404z`}),ad=(0,n.jsx)("path",{d:`M11.2813,885.7745c0.5204,0.1176,0.9623,0.2173,1.432,0.3234c0.0242,0.124,0.0616,0.2407,0.0675,0.3589 + c0.027,0.5387,0.0451,1.0779,0.0665,1.6169c0.0655,0.5491-0.3198,0.9614-0.8661,0.7742c-0.381-0.1213-0.6799-0.3627-0.719-0.7763 + c-0.0605-0.6393-0.0752-1.2833-0.0942-1.9258C11.1645,886.0326,11.2356,885.9171,11.2813,885.7745z`}),au=(0,n.jsx)("path",{d:`M15.5517,886.9095c0.5602-0.0697,1.0925-0.1359,1.6538-0.2057c0.0243,0.1091,0.0627,0.2051,0.0644,0.3018 + c0.0081,0.4371,0.004,0.8745,0.0079,1.3118c0.0034,0.3834-0.1903,0.6334-0.5366,0.7584c-0.3555,0.1283-0.7025,0.101-0.9893-0.1711 + c-0.0863-0.0819-0.1704-0.2019-0.1877-0.3148C15.4797,888.0369,15.4657,887.4813,15.5517,886.9095z`}),am=(0,n.jsx)("path",{d:`M10.9552,917.5526c0.4853,0.1108,0.9424,0.215,1.4225,0.3246c0.0242,0.1354,0.0591,0.254,0.0645,0.3739 + c0.0248,0.5596,0.0392,1.1197,0.062,1.6794c0.0106,0.2587-0.0079,0.5089-0.2534,0.6592c-0.2793,0.171-0.56,0.1071-0.8249-0.0456 + c-0.3671-0.2012-0.4864-0.5342-0.5204-0.9343c-0.0194-0.5803-0.0366-1.1608-0.0434-1.7413 + C10.861,917.7751,10.9156,917.6811,10.9552,917.5526z`}),ap=(0,n.jsx)("path",{d:`M15.1724,918.7182c0.5773-0.063,1.1089-0.121,1.6653-0.1818c0.0246,0.1077,0.0662,0.2056,0.0661,0.3034 + c-0.0006,0.5591,0.0626,1.1204-0.0236,1.6338c-0.149,0.31-0.3774,0.4448-0.6514,0.5052c-0.5354,0.1179-1.018-0.2161-1.0638-0.7654 + C15.1255,919.7394,15.1055,919.2608,15.1724,918.7182z`}),ay=(0,n.jsx)("path",{d:`M14.7114,727.2189c0.6053,0.0167,1.1809,0.0325,1.7726,0.0488c0.1579,0.3947,0.1429,0.7664,0.0171,1.134 + c-0.4799,0.09-1.2849,0.0977-1.7366,0.0214C14.6036,728.0228,14.5944,727.8668,14.7114,727.2189z`}),ah=(0,n.jsx)("path",{d:`M20.7556,727.8386c-0.5239,0.1198-1.0382,0.2695-1.5938,0.3362c-0.0881-0.3497-0.0619-0.6714,0.0064-1.0101 + c0.5474-0.1573,1.0811-0.3107,1.6451-0.4727C20.9066,727.1033,20.8831,727.4624,20.7556,727.8386z`}),af=(0,n.jsx)("path",{d:`M10.7822,949.3776c0.4842,0.1151,0.9064,0.2154,1.3587,0.3229c0.0307,0.1049,0.089,0.2186,0.0938,0.3346 + c0.0252,0.6021,0.037,1.2048,0.0526,1.8073c0.0329,0.3873-0.1828,0.7142-0.6023,0.6909c-0.4125-0.0148-0.8375-0.3154-0.9053-0.7296 + c-0.1174-0.7172-0.1781-1.4437-0.1073-2.1725C10.6797,949.5553,10.7345,949.4841,10.7822,949.3776z`}),ak=(0,n.jsx)("path",{d:`M14.9569,950.5404c0.6018-0.0294,1.0762-0.0701,1.6458-0.1489c0.0342,0.0912,0.0715,0.1464,0.0733,0.2026 + c0.015,0.4766,0.0308,0.9534,0.0317,1.4302c0.0007,0.3663-0.1642,0.6342-0.5172,0.7715c-0.362,0.1407-0.6987,0.0926-0.9859-0.1636 + c-0.102-0.0909-0.2021-0.232-0.2194-0.3614C14.9111,951.7193,14.8746,951.1635,14.9569,950.5404z`}),ab=(0,n.jsx)("path",{d:`M12.1128,984.1284c-0.1912,0.2973-0.4457,0.3459-0.729,0.2693c-0.3945-0.1067-0.6821-0.3646-0.7337-0.7672 + c-0.0897-0.7007-0.1601-1.4075-0.0886-2.1167c0.0077-0.0767,0.0579-0.1491,0.0939-0.2372c0.2518-0.0172,0.4553,0.106,0.6741,0.1476 + c0.2233,0.0425,0.4456,0.0898,0.6787,0.1371c0.0346,0.0828,0.091,0.1567,0.0932,0.2322c0.0217,0.728,0.0348,1.4563,0.0481,2.1845 + C12.1503,984.0182,12.1305,984.0587,12.1128,984.1284z`}),az=(0,n.jsx)("path",{d:`M14.822,982.4386c0.583-0.0541,1.0981-0.1018,1.6236-0.1506c0.0268,0.0499,0.0784,0.1022,0.0805,0.1566 + c0.0197,0.4979,0.0356,0.9962,0.0428,1.4944c0.0054,0.374-0.1764,0.6321-0.5242,0.7679c-0.4447,0.179-1.0427-0.0303-1.181-0.4984 + C14.7674,983.6367,14.7414,983.062,14.822,982.4386z`}),aF=(0,n.jsx)("path",{d:`M17.3053,695.7092c-0.0281,0.0989-0.0494,0.174-0.0676,0.2382c-0.6134,0.1102-1.8552,0.1324-2.6923,0.0524 + c-0.096-0.0587-0.1651-0.1271-0.0903-0.2482c0.0371-0.0167,0.074-0.0473,0.1117-0.0483c0.8526-0.0234,1.7052-0.0443,2.5579-0.0625 + C17.1619,695.64,17.1996,695.668,17.3053,695.7092z`}),aI=(0,n.jsx)("path",{d:`M21.3817,695.056c-0.0469,0.1277-0.074,0.2016-0.1134,0.3088c-0.6982,0.2234-1.4206,0.3455-2.1822,0.4304 + c-0.0376-0.1202-0.0645-0.2062-0.0907-0.2902C19.3212,695.3817,20.8773,695.0866,21.3817,695.056z`}),aS=(0,n.jsx)("path",{d:`M10.5584,1013.1666c0.515,0.123,0.955,0.2281,1.4164,0.3384c0.1073,0.6641,0.087,1.3254,0.1266,1.9938 + c0.0049,0.1244,0.0148,0.2516-0.0043,0.3734c-0.0561,0.3584-0.3892,0.574-0.742,0.4727c-0.634-0.1741-0.7951-0.6337-0.8307-1.2443 + c-0.021-0.4991-0.0338-0.9987-0.0392-1.4983C10.484,1013.483,10.5239,1013.3633,10.5584,1013.1666z`}),aC=(0,n.jsx)("path",{d:`M14.7425,1014.3286c0.6043,0.0502,1.1272-0.127,1.6631-0.0932c0.0317,0.0878,0.0691,0.1446,0.0705,0.2024 + c0.012,0.477,0.0317,0.9545,0.0207,1.4312c-0.0115,0.496-0.3359,0.8161-0.825,0.8287c-0.5789,0.015-0.9306-0.3782-0.9356-0.7954 + C14.7302,1015.4083,14.6927,1014.9137,14.7425,1014.3286z`}),ax=(0,n.jsx)("path",{d:`M10.5328,1077.1185c0.4656,0.1068,0.9034,0.2072,1.3735,0.3149c0.029,0.1038,0.0842,0.217,0.0892,0.3325 + c0.0269,0.6201,0.0417,1.2407,0.0594,1.8612c0.0297,0.3815-0.2002,0.718-0.6103,0.6777c-0.53-0.0266-0.8991-0.4834-0.9305-0.9924 + c-0.0319-0.5782-0.0539-1.1575-0.0653-1.7366C10.4461,1077.4374,10.4982,1077.2976,10.5328,1077.1185z`}),aj=(0,n.jsx)("path",{d:`M16.3681,1078.152c0.0951,0.3702,0.0631,0.7018,0.0757,1.028c0.0103,0.2682,0.0194,0.5403-0.0138,0.8052 + c-0.0814,0.8593-1.5522,0.8682-1.6931,0.0697c-0.0936-0.5667-0.1285-1.1417-0.0373-1.7485 + C15.2527,1078.2551,15.7809,1078.2063,16.3681,1078.152z`}),aM=(0,n.jsx)("path",{d:`M10.5476,1045.1556c0.4648,0.026,0.8794,0.2429,1.3547,0.2635c0.0371,0.1266,0.0942,0.2393,0.0997,0.3544 + c0.0297,0.62,0.0478,1.2407,0.0667,1.8612c0.0256,0.3713-0.2027,0.7318-0.6087,0.6873c-0.5008-0.0369-0.8768-0.4336-0.9299-0.9291 + c-0.0254-0.6613-0.0442-1.3228-0.0573-1.9844C10.4713,1045.3313,10.5175,1045.2531,10.5476,1045.1556z`}),aT=(0,n.jsx)("path",{d:`M14.7137,1046.301c0.5746-0.0295,1.0454-0.0645,1.5755-0.135c0.135,0.0597,0.149,0.1646,0.1516,0.2675 + c0.0114,0.455,0.0209,0.9099,0.0255,1.3649c0.0037,0.3656-0.1462,0.6522-0.4944,0.7853c-0.3484,0.1331-0.6987,0.1106-0.9901-0.1483 + c-0.1029-0.0913-0.2112-0.226-0.2304-0.3539C14.6656,1047.5122,14.6311,1046.9382,14.7137,1046.301z`}),a_=(0,n.jsx)("path",{d:`M10.5048,1109.6195c0.5349,0.0525,1.0642,0.2411,1.6318,0.2849c0.035,0.1135,0.0856,0.2083,0.0905,0.3055 + c0.0221,0.4358,0.0276,0.8726,0.0461,1.3087c0.0213,0.5006-0.3987,0.916-1.0317,0.6885c-0.3747-0.1346-0.6462-0.3979-0.7351-0.7883 + c-0.1249-0.5486-0.164-1.1086-0.0949-1.6709C10.4159,1109.7129,10.4576,1109.6826,10.5048,1109.6195z`}),aN=(0,n.jsx)("path",{d:`M14.6919,1110.5995c0.2906-0.1099,0.6081-0.0488,0.9136-0.0895c0.3081-0.0411,0.6183-0.0669,0.9618-0.1029 + c0.0278,0.0902,0.0769,0.1815,0.0808,0.2747c0.0128,0.3116,0.0076,0.6238,0.0128,0.9358c-0.0137,1.1592-1.7812,1.1993-2.0053,0.1658 + C14.5993,1111.5563,14.6158,1110.9629,14.6919,1110.5995z`}),aK=(0,n.jsx)("path",{d:`M21.2072,661.7713c0.0549,0.2061,0.1144,0.3417,0.1225,0.4803c0.0134,0.2277-0.0006,0.4576-0.0135,0.686 + c-0.0319,0.6635-0.5593,1.2319-1.2222,1.2744c-0.6463-0.154-0.8126-0.3472-0.8152-0.9765c-0.0009-0.225-0.0379-0.4589,0.089-0.6906 + c0.3002-0.1063,0.6178-0.2042,0.9233-0.3311C20.5767,662.0953,20.8495,661.9459,21.2072,661.7713z`}),aL=(0,n.jsx)("path",{d:`M14.8231,663.2112c0.0728-0.0338,0.1089-0.0648,0.1454-0.0653c0.6998-0.0098,1.3997-0.0159,2.1296-0.0231 + c0.0909,0.2518,0.0798,0.4964,0.0268,0.7349c-0.0558,0.2508-0.2069,0.4484-0.4736,0.6298c-0.3992,0-0.8513,0-1.3605,0 + C14.887,664.2917,14.6728,663.6359,14.8231,663.2112z`}),aw=(0,n.jsx)("path",{d:`M12.5479,1142.6373c0.1611,0.4943,0.1823,0.9581-0.2563,1.3568c-0.5072,0.0503-0.9805-0.118-1.4469-0.1665 + c-0.3287-0.2648-0.4797-0.5974-0.5531-0.9712c-0.0444-0.2262-0.0273-0.2841,0.1336-0.603c0.4502,0.0807,0.9249,0.1678,1.3828,0.236 + C12.0499,1142.525,12.3045,1142.4974,12.5479,1142.6373z`}),aP=(0,n.jsx)("path",{d:`M16.2102,1144.2554c-0.2711,0-0.5409,0-0.8312,0c-0.3131-0.0981-0.5783-0.2906-0.7425-0.5994 + c-0.1076-0.2023-0.1884-0.418-0.0859-0.674c0.3815-0.1216,0.7801-0.0466,1.1678-0.0874c0.3923-0.0414,0.7864-0.0662,1.1797-0.0983 + C17.2025,1143.3199,16.9843,1143.8143,16.2102,1144.2554z`}),aE=(0,n.jsx)("path",{d:`M19.6579,600.0674c-0.0425-0.1044-0.0856-0.2327-0.0825-0.3508c0.0102-0.5176,0.0222-1.0353,0.038-1.5527 + c0.0018-0.0587,0.0305-0.1165,0.0421-0.1581c0.468-0.2495,0.9189-0.4899,1.3855-0.7388c0.0329,0.0455,0.0947,0.0913,0.0949,0.1374 + c0.0023,0.6621,0.0092,1.3246-0.0125,1.9861c-0.0125,0.382-0.2288,0.6644-0.567,0.832 + C20.2329,600.3828,19.9164,600.3959,19.6579,600.0674z`}),aV=(0,n.jsx)("path",{d:`M16.8425,598.8096c0.1445,0.4332,0.0583,0.8815,0.0438,1.3255c-0.2099,0.4327-0.5501,0.6124-1.0109,0.5473 + c-0.4218-0.0596-0.6636-0.3141-0.7138-0.7346c-0.0353-0.3712-0.0109-0.6882-0.0013-1.0784c0.1118-0.0222,0.2062-0.056,0.301-0.0573 + C15.9125,598.8065,16.3637,598.8096,16.8425,598.8096z`}),aR=(0,n.jsx)("path",{d:`M19.6321,630.0346c0.4983-0.2686,0.9652-0.5202,1.4645-0.7893c0.0316,0.1456,0.0782,0.2617,0.0783,0.3777 + c0.0003,0.5178,0.0015,1.0364-0.0242,1.5533c-0.036,0.7246-0.2469,0.9639-0.9712,1.1611c-0.4169-0.0219-0.6209-0.3057-0.5895-0.7104 + C19.6031,631.0907,19.6182,630.5544,19.6321,630.0346z`}),aD=(0,n.jsx)("path",{d:`M15.237,630.8452c0.5233-0.0123,1.0555-0.0248,1.6156-0.038c0.147,0.4683,0.0756,0.9369,0.0345,1.3593 + c-0.2355,0.5031-0.7906,0.66-1.2533,0.4479c-0.2219-0.0956-0.3699-0.2614-0.4274-0.5029 + C15.1465,631.8596,15.1549,631.2662,15.237,630.8452z`}),aO=(0,n.jsx)("path",{d:`M21.0527,565.2231c0.0374,0.1325,0.068,0.1907,0.068,0.2488c0,0.5607,0.0011,1.1214-0.0127,1.6818 + c-0.004,0.1637-0.0367,0.332-0.0872,0.4881c-0.1699,0.642-1.2738,1.0029-1.4844,0.2183c-0.0146-0.0599-0.0245-0.1232-0.0225-0.1846 + c0.0177-0.5587,0.0385-1.1173,0.0582-1.6689C20.0659,565.7454,20.5336,565.4979,21.0527,565.2231z`}),aB=(0,n.jsx)("path",{d:`M15.1565,566.7897c0.6131,0,1.0389,0,1.6396,0c0.023,0.0776,0.0712,0.171,0.0748,0.2661 + c0.0104,0.2703,0.0099,0.5415,0,0.8119c0.0039,0.7466-0.9828,1.0494-1.5028,0.5849c-0.1314-0.1084-0.2269-0.2531-0.2382-0.4261 + C15.1042,567.6349,15.0748,567.2418,15.1565,566.7897z`}),a$=(0,n.jsx)("path",{d:`M14.7704,1175.667c-0.0466-0.0964-0.0811-0.1677-0.1125-0.2328c0.0394-0.0432,0.0629-0.0939,0.0939-0.0989 + c0.2892-0.0483,2.2555-0.0708,2.5376-0.0353c0.008,0.0167,0.0256,0.0355,0.0225,0.0498c-0.0171,0.0771-0.0392,0.1532-0.0563,0.217 + C16.6837,1175.7052,15.5512,1175.752,14.7704,1175.667z`}),aU=(0,n.jsx)("path",{d:`M12.9877,1175.3165c-0.0169,0.0797-0.0327,0.1544-0.0466,0.2201c-0.6269,0.0726-1.9842-0.1289-2.5093-0.3678 + c-0.0059-0.0535-0.0124-0.1123-0.0185-0.1678c0.045-0.0217,0.0835-0.0581,0.117-0.054c0.7589,0.0934,1.5173,0.1901,2.2753,0.2904 + C12.8627,1175.2449,12.9154,1175.2842,12.9877,1175.3165z`}),aq=(0,n.jsx)("path",{d:`M19.4989,533.9736c0.5378-0.2835,0.9932-0.5237,1.4571-0.7682c0.0312,0.0704,0.0717,0.1236,0.0773,0.1803 + c0.0655,0.6662,0.0325,1.3329-0.0245,1.9967c-0.0404,0.4709-0.3946,0.8251-0.8296,0.8885 + c-0.4134,0.0602-0.6997-0.1579-0.7151-0.5757c-0.013-0.3533,0.0087-0.7078,0.0165-1.0618 + C19.4857,534.4062,19.4932,534.1791,19.4989,533.9736z`}),aH=(0,n.jsx)("path",{d:`M16.7,534.7396c0.0833,0.3935,0.1083,1.038,0.062,1.2713c-0.034,0.1714-0.1227,0.309-0.257,0.4142 + c-0.5372,0.4579-1.4906,0.1343-1.4741-0.6176c-0.0092-0.3282-0.0444-0.6591,0.0196-0.9865c0.0743-0.033,0.1286-0.0776,0.1835-0.0782 + C15.7111,534.7373,16.1884,534.7396,16.7,534.7396z`}),l=(0,n.jsx)("path",{d:`M19.3875,503.8371c0-0.6326,0-1.2744,0-1.9011c0.5016-0.2638,0.9748-0.5126,1.4719-0.7741 + c0.0361,0.068,0.1001,0.1348,0.105,0.2058c0.0469,0.6849,0.0513,1.3699-0.0495,2.0512c-0.0493,0.3335-0.2429,0.5654-0.5364,0.7202 + C20.0177,504.3517,19.5364,504.2686,19.3875,503.8371z`}),c=(0,n.jsx)("path",{d:`M15.0341,502.6735c0.5148,0,1.0475,0,1.5963,0c0.1085,0.4418,0.0763,0.8728,0.0218,1.3021 + c-0.0248,0.1956-0.1535,0.336-0.3134,0.4443c-0.3044,0.2063-0.7503,0.2056-1.0576-0.0008c-0.181-0.1216-0.3129-0.2873-0.3234-0.5061 + c-0.0179-0.3711-0.0113-0.7434-0.009-1.1151C14.9491,502.7646,14.9928,502.7316,15.0341,502.6735z`}),i=(0,n.jsx)("path",{d:`M17.6744,1207.1587c-0.037,0.1484-0.056,0.2249-0.0726,0.2916c-0.5864,0.1708-1.7491,0.2267-2.4983,0.1187 + c-0.0298-0.0742-0.0656-0.1632-0.0987-0.2455c0.041-0.0293,0.0557-0.047,0.0736-0.0511c0.079-0.0187,0.1585-0.0452,0.2384-0.0476 + C16.0771,1207.201,16.8374,1207.1815,17.6744,1207.1587z`}),s=(0,n.jsx)("path",{d:`M13.281,1207.1997c0,0.1222,0,0.1809,0,0.234c-0.0402,0.0297-0.0701,0.0686-0.1056,0.0746 + c-0.0806,0.0138-0.1644,0.0186-0.2462,0.0142c-0.7242-0.0389-1.4402-0.1367-2.1292-0.2802 + c-0.0776-0.1027-0.1717-0.1738-0.0776-0.2878c0.0378-0.014,0.0768-0.0432,0.1123-0.0394 + C11.6638,1207.0106,12.4491,1207.0717,13.281,1207.1997z`}),r=(0,n.jsx)("path",{d:`M19.2881,469.8479c0.5297-0.2671,0.9888-0.4986,1.4364-0.7243c0.1315,0.0593,0.1471,0.1661,0.1466,0.2684 + c-0.0023,0.5619-0.006,1.1239-0.0203,1.6856c-0.0037,0.1436-0.0332,0.2906-0.0756,0.4284 + c-0.1742,0.7444-1.4789,1.0224-1.5274,0.0749C19.237,471.0074,19.249,470.4185,19.2881,469.8479z`}),o=(0,n.jsx)("path",{d:`M14.8039,470.6013c0.6447,0,1.0753,0,1.7026,0c0.0214,0.0886,0.063,0.1835,0.0637,0.2788 + c0.0024,0.3111,0.014,0.6251-0.0228,0.9326c-0.1192,0.9314-1.6112,0.9008-1.7131-0.0233 + C14.7936,471.364,14.8052,471.0623,14.8039,470.6013z`}),d=(0,n.jsx)("path",{d:`M19.184,437.7076c0.2579-0.1091,0.5047-0.2142,0.7521-0.3178c0.2412-0.101,0.4231-0.3243,0.7081-0.3715 + c0.0366,0.0766,0.0841,0.1296,0.0841,0.1828c0.001,0.6441-0.0023,1.2883-0.012,1.9323c-0.0015,0.1019-0.0311,0.2064-0.0639,0.3042 + c-0.1833,0.71-1.4071,1.0212-1.5275,0.1307c-0.0245-0.3516-0.0071-0.7066,0.0031-1.0598 + C19.1356,438.2421,19.0894,437.9696,19.184,437.7076z`}),u=(0,n.jsx)("path",{d:`M14.7136,438.5184c0.0623-0.0223,0.101-0.0481,0.1398-0.0483c0.4942-0.0027,0.9884-0.0018,1.4733-0.0018 + c0.1204,0.4671,0.127,0.8353,0.0298,1.4508c-0.3451,0.7257-1.5916,0.5861-1.6707-0.2516c-0.037-0.3076-0.0304-0.621-0.0323-0.9319 + C14.653,438.6588,14.6951,438.5816,14.7136,438.5184z`}),m=(0,n.jsx)("path",{d:`M15.5657,1239.355c-0.031-0.0977-0.0544-0.1713-0.071-0.2235c0.0469-0.0518,0.0694-0.1003,0.0991-0.1051 + c0.122-0.0201,0.2459-0.0315,0.3696-0.0378c0.7297-0.0291,1.418-0.0883,2.1543-0.0878c-0.02,0.1344-0.0334,0.2246-0.0445,0.2988 + C17.4961,1239.3754,16.4688,1239.4396,15.5657,1239.355z`}),p=(0,n.jsx)("path",{d:`M13.7453,1239.0638c-0.0041,0.0723-0.0085,0.1486-0.0129,0.226c-0.0743,0.028-0.1318,0.0701-0.1872,0.0674 + c-0.7853-0.0367-1.5696-0.0862-2.3774-0.2483c-0.0187-0.0924-0.0362-0.1793-0.0507-0.2509 + C11.2407,1238.7766,13.2917,1238.9548,13.7453,1239.0638z`}),y=(0,n.jsx)("path",{d:`M19.0003,405.6095c0.5046-0.2453,0.9664-0.4698,1.4446-0.7023c0.1056,0.0208,0.1343,0.1251,0.1392,0.2251 + c0.0332,0.6843,0.0507,1.3696-0.051,2.0496c-0.0646,0.4326-0.4042,0.7537-0.8246,0.8148c-0.3861,0.0561-0.7308-0.1799-0.7409-0.5664 + C18.9515,406.812,18.9513,406.1913,19.0003,405.6095z`}),h=(0,n.jsx)("path",{d:`M14.5509,406.3063c0.5577,0,1.0742,0,1.5828,0c0.0355,0.0381,0.0863,0.067,0.0874,0.0975 + c0.0126,0.3728,0.0423,0.7474,0.0184,1.1184c-0.0266,0.4137-0.3732,0.7049-0.7998,0.7273c-0.442,0.0232-0.8506-0.2637-0.9227-0.6743 + c-0.0356-0.2026-0.0294-0.4138-0.0298-0.6211C14.4869,406.7505,14.446,406.541,14.5509,406.3063z`}),f=(0,n.jsx)("path",{d:`M18.7687,373.3394c0.523-0.2332,1.007-0.4491,1.5251-0.6801c0.0346,0.0903,0.0853,0.1614,0.0857,0.2329 + c0.0042,0.6623,0.0155,1.3253-0.0077,1.9869c-0.016,0.4573-0.2604,0.7756-0.7085,0.916c-0.4807,0.1506-0.8946-0.1182-0.9177-0.6184 + c-0.0181-0.3924,0.0017-0.7867,0.0071-1.1801C18.7558,373.7711,18.7636,373.5457,18.7687,373.3394z`}),k=(0,n.jsx)("path",{d:`M14.31,373.9959c0.5771,0,1.0923,0,1.6349,0c0.0279,0.1053,0.072,0.1996,0.0747,0.2951 + c0.0094,0.3315,0.0195,0.6642,0.0012,0.9949c-0.023,0.4159-0.2997,0.6927-0.703,0.7407c-0.562,0.0739-1.0083-0.2958-1.035-0.817 + c-0.0151-0.3105-0.0202-0.6216-0.0219-0.9326C14.2605,374.1989,14.2873,374.1204,14.31,373.9959z`}),b=(0,n.jsx)("path",{d:`M13.9629,1269.6284c0.2758,0.4408,0.3009,0.854,0.1268,1.3066c-0.3712,0.0931-0.7328-0.0624-1.1001-0.0522 + c-0.37,0.0103-0.7409-0.0151-1.1146-0.0249c-0.2774-0.4445-0.31-0.8633-0.073-1.2959c0.0855-0.0204,0.1457-0.0494,0.2041-0.0463 + C12.6468,1269.5499,13.2874,1269.5887,13.9629,1269.6284z`}),z=(0,n.jsx)("path",{d:`M16.384,1270.9828c-0.2179-0.1826-0.2645-0.4025-0.2698-0.6364c-0.0057-0.2489-0.0137-0.5006,0.2184-0.7352 + c0.6665-0.0383,1.3673-0.0787,2.0574-0.1184c0.1908,0.1794,0.2284,0.3785,0.2355,0.5886c0.0093,0.2767-0.0373,0.5372-0.2479,0.7817 + c-0.3239,0.0929-0.6791,0.0105-1.0265,0.0422C17.022,1270.9353,16.6925,1270.9583,16.384,1270.9828z`}),F=(0,n.jsx)("path",{d:`M18.5055,340.8394c0.531-0.1995,0.9937-0.3733,1.4877-0.5588c0.0502,0.1141,0.1371,0.2213,0.1385,0.3296 + c0.0087,0.7038,0.0206,1.4089-0.013,2.1115c-0.0216,0.4515-0.3422,0.7577-0.781,0.8477c-0.4688,0.1034-0.8704-0.2579-0.8534-0.7298 + C18.4909,342.1788,18.4982,341.5182,18.5055,340.8394z`}),I=(0,n.jsx)("path",{d:`M14.0689,341.4051c0.5516,0,1.0672,0,1.6114,0c0.0278,0.1129,0.0693,0.2082,0.0717,0.3045 + c0.0098,0.3952,0.0185,0.791,0.007,1.1861c-0.0142,0.4896-0.2954,0.7998-0.7425,0.8492c-0.4502,0.0497-0.8748-0.2487-0.9812-0.6895 + C13.9734,342.7985,13.9882,341.8221,14.0689,341.4051z`}),S=(0,n.jsx)("path",{d:`M18.2249,308.0975c0.4702-0.1312,0.9054-0.2527,1.3681-0.3818c0.0718,0.1112,0.1584,0.2034,0.1947,0.3123 + c0.0451,0.1352,0.0655,0.2842,0.0669,0.4275c0.0051,0.5397,0.0023,1.0797-0.007,1.6193c-0.0025,0.1438-0.0269,0.29-0.0622,0.4298 + c-0.1872,0.8404-1.5098,0.9633-1.6212,0.0096c-0.0257-0.7044,0.0046-1.412,0.0041-2.1172 + C18.1692,308.3166,18.1976,308.2366,18.2249,308.0975z`}),C=(0,n.jsx)("path",{d:`M13.6986,308.5526c0.5787-0.0283,1.1075-0.0358,1.6324,0.0203c0.0295,0.0883,0.0639,0.145,0.0652,0.2025 + c0.0123,0.5593,0.0205,1.1187,0.0268,1.6781c0.0027,0.2365-0.0605,0.4488-0.239,0.6181c-0.464,0.44-1.293,0.2057-1.4516-0.4142 + c-0.0254-0.0995-0.0361-0.2045-0.0397-0.3075c-0.0177-0.4969-0.0327-0.994-0.0432-1.4912 + C13.6478,308.7792,13.674,308.6992,13.6986,308.5526z`}),x=(0,n.jsx)("path",{d:`M18.1316,1299.6483c0.4385,0.1907,0.6389,0.4675,0.6494,0.8539c0.0136,0.4977,0.0017,0.9962-0.0079,1.4941 + c-0.0014,0.0758-0.0492,0.1508-0.0828,0.2471c-0.5887-0.004-1.1697-0.0828-1.7612,0.125c-0.045-0.1307-0.1121-0.2402-0.1162-0.3523 + c-0.0159-0.4355-0.0172-0.8719-0.0137-1.308c0.0035-0.423,0.1573-0.7682,0.6029-1.0082 + C17.6132,1299.6851,17.8803,1299.6661,18.1316,1299.6483z`}),j=(0,n.jsx)("path",{d:`M14.2491,1302.2902c-0.294-0.021-0.6008-0.0558-0.9082-0.0613c-0.2878-0.0051-0.5762,0.021-0.8852,0.0344 + c-0.0368-0.1068-0.0915-0.1991-0.0973-0.2943c-0.0254-0.413-0.0437-0.8268-0.0507-1.2405 + c-0.0067-0.3951,0.1164-0.7339,0.5205-0.9761c0.2419,0,0.529,0,0.8681,0c0.3426,0.1248,0.5714,0.415,0.6024,0.8126 + c0.0417,0.5344,0.0293,1.0731,0.0348,1.61C14.3339,1302.207,14.2877,1302.2395,14.2491,1302.2902z`}),M=(0,n.jsx)("path",{d:`M18.0885,275.1403c0.3098-0.0572,0.634-0.1171,0.9341-0.1725c0.3,0.1035,0.4108,0.3199,0.4663,0.5703 + c0.0266,0.1199,0.026,0.2473,0.0264,0.3713c0.0015,0.5185,0.0011,1.0369-0.0039,1.5554c0.0265,0.5614-0.2123,1.0543-0.8024,1.1519 + c-0.4611,0.0747-0.8702-0.2776-0.883-0.7385c0.0019-0.7464,0.0017-1.4928,0.0105-2.2391 + C17.8383,275.4714,17.8907,275.3118,18.0885,275.1403z`}),T=(0,n.jsx)("path",{d:`M13.424,275.4944c0.5056-0.0242,0.9984-0.0175,1.5137-0.0048c0.0383,0.1425,0.0925,0.2569,0.0963,0.3728 + c0.0205,0.6219,0.0288,1.2441,0.0402,1.8663c0.0276,0.5188-0.3068,0.9696-0.8256,0.9572c-0.5924,0.0002-0.9388-0.475-0.9063-1.0316 + c-0.0158-0.4975-0.0337-0.9951-0.0421-1.4928C13.2967,275.9568,13.2685,275.7449,13.424,275.4944z`}),_=(0,n.jsx)("path",{d:`M18.7955,1333.6779c-0.2824-0.0153-0.5496-0.0569-0.812-0.0363c-0.2622,0.0205-0.5196,0.1031-0.8062,0.1644 + c-0.0194-0.1187-0.0483-0.2162-0.0492-0.3141c-0.0056-0.6001-0.0128-1.2004-0.0013-1.8003 + c0.0035-0.1813,0.0341-0.3749,0.1062-0.5392c0.301-0.7057,1.3651-0.6361,1.5706,0.1199c0.0354,0.1173,0.0583,0.2432,0.0593,0.3652 + c0.005,0.6,0.003,1.2001-0.0031,1.8C18.859,1333.515,18.8195,1333.5919,18.7955,1333.6779z`}),N=(0,n.jsx)("path",{d:`M14.3014,1333.7319c-0.4933-0.1172-0.9842-0.1469-1.451-0.0034c-0.1652-0.0668-0.1739-0.1974-0.1775-0.3192 + c-0.0177-0.5995-0.0315-1.1993-0.04-1.799c-0.0014-0.1014,0.0181-0.207,0.048-0.3046c0.1979-0.7144,1.2238-0.8087,1.5452-0.1538 + c0.0762,0.1405,0.1265,0.3123,0.131,0.4714c0.0184,0.6407,0.0159,1.2822,0.0156,1.9233 + C14.3726,1333.6019,14.3314,1333.6571,14.3014,1333.7319z`}),K=(0,n.jsx)("path",{d:`M18.9058,1365.2672c-0.3521-0.0178-0.6201-0.0547-0.8846-0.0376c-0.2427,0.0154-0.4817,0.0892-0.7474,0.1423 + c-0.021-0.1375-0.0536-0.257-0.0551-0.3767c-0.0071-0.5812-0.0075-1.1624-0.0061-1.7435c0.0003-0.1239,0.003-0.251,0.0301-0.371 + c0.2075-0.8455,1.4156-0.8573,1.6424-0.0161C18.9805,1363.6512,18.9552,1364.4336,18.9058,1365.2672z`}),L=(0,n.jsx)("path",{d:`M14.4149,1365.2822c-0.5297-0.0449-1.0418-0.1039-1.5671,0.0461c-0.039-0.0956-0.0914-0.1659-0.0933-0.2374 + c-0.017-0.6416-0.0278-1.2837-0.0348-1.9255c-0.0037-0.3368,0.1368-0.6006,0.43-0.7748c0.5537-0.329,1.134,0.08,1.2357,0.5192 + c0.0232,0.1002,0.0356,0.2047,0.0383,0.3076c0.0161,0.6005,0.0297,1.201,0.039,1.8015 + C14.4638,1365.0968,14.4352,1365.1752,14.4149,1365.2822z`}),w=(0,n.jsx)("path",{d:`M17.5111,244.071c0.0062-0.715-0.1558-1.8465,0.8436-1.8986c0.5134-0.032,0.8735,0.4323,0.882,0.9236 + c0.0095,0.6415,0.0121,1.2834-0.0006,1.9249c0.0352,0.9975-1.3828,1.3923-1.6821,0.3494c-0.0361-0.1374-0.0363-0.2861-0.0391-0.4299 + c-0.0056-0.2897-0.0017-0.5796-0.0017-0.8694C17.5125,244.071,17.5118,244.071,17.5111,244.071z`}),P=(0,n.jsx)("path",{d:`M13.3394,242.4234c0.3659,0,0.7145,0,1.0623,0c0.2508,0.1763,0.3446,0.4205,0.3491,0.7018 + c0.011,0.6838,0.0097,1.3677,0.0216,2.0515c0.0088,0.504-0.3885,0.8221-0.7432,0.8461c-0.6627,0.0402-0.992-0.4721-0.9823-1.0865 + c-0.0158-0.5592-0.0345-1.1186-0.0363-1.6779C13.0093,242.8543,13.0275,242.8356,13.3394,242.4234z`}),E=(0,n.jsx)("path",{d:`M18.9014,1396.9865c-0.798-0.0811-0.8433-0.1049-1.6081,0.1097c-0.0198-0.1149-0.0498-0.2106-0.0507-0.3064 + c-0.0058-0.6216-0.0059-1.2433-0.0063-1.8649c-0.0404-0.4972,0.317-0.9668,0.8217-0.9762c0.5433-0.0302,0.9082,0.4419,0.9073,0.9663 + c0.0039,0.6007,0.0035,1.2013-0.0014,1.802C18.9632,1396.796,18.9283,1396.8746,18.9014,1396.9865z`}),V=(0,n.jsx)("path",{d:`M14.4304,1396.9952c-0.2669-0.025-0.5318-0.0724-0.796-0.0684c-0.2438,0.0037-0.4869,0.0625-0.6957,0.092 + c-0.1496-0.0734-0.162-0.1813-0.1643-0.2822c-0.0141-0.6217-0.032-1.2435-0.0262-1.8651c0.0015-0.1578,0.0548-0.3319,0.1351-0.4689 + c0.3323-0.6285,1.3182-0.5179,1.5171,0.1628c0.0394,0.1161,0.0651,0.2422,0.0675,0.3644c0.0126,0.6217,0.0169,1.2435,0.0194,1.8654 + C14.4876,1396.8538,14.4549,1396.9126,14.4304,1396.9952z`}),R=(0,n.jsx)("path",{d:`M18.8936,1428.8209c-0.5488-0.1421-1.0563-0.1091-1.5793,0.0735c-0.0258-0.1338-0.0595-0.23-0.0605-0.3264 + c-0.0064-0.6208-0.0098-1.2417-0.0039-1.8625c-0.0148-0.4955,0.3012-0.9617,0.8298-0.9663 + c0.5492-0.0232,0.8955,0.4552,0.9014,0.9749c0.0078,0.6206,0.0027,1.2415-0.0028,1.8622 + C18.9777,1428.6329,18.9404,1428.6895,18.8936,1428.8209z`}),D=(0,n.jsx)("path",{d:`M14.4444,1428.7808c-0.2687-0.0165-0.5331-0.0499-0.7966-0.0438c-0.245,0.0057-0.489,0.0536-0.7639,0.0864 + c-0.0302-0.073-0.0834-0.1438-0.0857-0.2163c-0.0203-0.6431-0.0374-1.2865-0.0428-1.9298c-0.0024-0.283,0.1095-0.5275,0.3357-0.7065 + c0.6155-0.481,1.3935,0.0004,1.3907,0.7448c0.0125,0.6228,0.0166,1.246,0.0189,1.8689 + C14.501,1428.642,14.4687,1428.6997,14.4444,1428.7808z`}),O=(0,n.jsx)("path",{d:`M18.9242,1460.637c-0.7738-0.0972-0.8495-0.087-1.617,0.0929c-0.0196-0.1331-0.0503-0.249-0.0516-0.3651 + c-0.0061-0.58-0.0052-1.16-0.0049-1.74c-0.0435-0.5034,0.2568-0.9829,0.7683-1.0237c0.5756-0.062,0.9645,0.4143,0.9679,0.9652 + c0.006,0.6007,0.0041,1.2013-0.0008,1.802C18.9854,1460.447,18.9509,1460.5254,18.9242,1460.637z`}),B=(0,n.jsx)("path",{d:`M14.424,1460.6456c-0.5092-0.0856-1.0013-0.0918-1.446,0.0402c-0.1616-0.0634-0.1782-0.1705-0.1809-0.2717 + c-0.0169-0.621-0.0343-1.2421-0.0359-1.863c-0.0004-0.1398,0.0398-0.2897,0.0983-0.418c0.2811-0.6836,1.311-0.6613,1.5503,0.0438 + c0.0444,0.1134,0.0736,0.24,0.076,0.3613c0.0124,0.6211,0.0164,1.2424,0.0157,1.8638 + C14.5014,1460.4769,14.4551,1460.5518,14.424,1460.6456z`}),$=(0,n.jsx)("path",{d:`M19.1099,211.5573c-0.0282,0.4137-0.0235,0.8331-0.0925,1.2399c-0.0979,0.5771-0.7678,0.8598-1.2601,0.5618 + c-0.2836-0.162-0.4135-0.4732-0.3996-0.7915c-0.0022-0.6644-0.0067-1.3288,0.0003-1.9932c0.0015-0.142,0.0232-0.293,0.0762-0.4233 + c0.3396-0.7628,1.4092-0.62,1.5887,0.1629c0.0785,0.4082,0.0338,0.8287,0.0439,1.242 + C19.0811,211.5564,19.0955,211.5568,19.1099,211.5573z`}),U=(0,n.jsx)("path",{d:`M14.6132,211.649c-0.0092,0.3922,0.0252,0.7915-0.0247,1.1806c-0.0751,0.3732-0.3617,0.6375-0.7182,0.6785 + c-0.496,0.0692-0.9417-0.3348-0.9763-0.8255c-0.0167-0.7258-0.046-1.4524-0.0269-2.1776c0.0127-0.4837,0.3955-0.8072,0.8601-0.8042 + c0.3711,0.0024,0.6884,0.2275,0.79,0.5859c0.1048,0.4436,0.0593,0.9093,0.0688,1.3622 + C14.5951,211.649,14.6041,211.649,14.6132,211.649z`}),q=(0,n.jsx)("path",{d:`M18.9083,1492.5293c-0.2879-0.0205-0.5556-0.0647-0.8203-0.0514c-0.2425,0.0122-0.4818,0.0864-0.7099,0.1309 + c-0.1233-0.0695-0.1196-0.1775-0.1204-0.2767c-0.0045-0.6211-0.0074-1.2423-0.005-1.8634c0.0005-0.1228,0.0099-0.2501,0.0432-0.3674 + c0.2109-0.7842,1.3124-0.8259,1.5992-0.0818c0.0516,0.1326,0.089,0.28,0.0904,0.421c0.0063,0.6416-0.0016,1.2831-0.0078,1.9247 + C18.9774,1492.402,18.9478,1492.4386,18.9083,1492.5293z`}),H=(0,n.jsx)("path",{d:`M14.4404,1492.5372c-0.5125-0.0697-1.0067-0.1057-1.4587,0.0453c-0.1532-0.0559-0.1793-0.1589-0.1822-0.2625 + c-0.0171-0.6223-0.034-1.2448-0.0403-1.8671c-0.0223-0.9894,1.3382-1.3167,1.6729-0.3309c0.0377,0.1162,0.0554,0.2435,0.0572,0.3661 + c0.0092,0.6226,0.0109,1.2452,0.0123,1.8678C14.5018,1492.3939,14.477,1492.4319,14.4404,1492.5372z`}),G=(0,n.jsx)("path",{d:`M18.9316,1524.4644c-0.7286-0.1008-0.7286-0.1008-1.6162,0.0626c-0.0194-0.0715-0.0561-0.1453-0.0568-0.2192 + c-0.0064-0.644-0.0037-1.2881-0.0094-1.9321c-0.0192-0.5139,0.3074-0.9375,0.8299-0.9808c0.6795,0.1605,0.8923,0.3931,0.9098,1.0527 + c0.0154,0.5812,0.0034,1.1632-0.0017,1.7449C18.9864,1524.272,18.9556,1524.3513,18.9316,1524.4644z`}),Q=(0,n.jsx)("path",{d:`M14.4421,1524.467c-0.5108-0.1122-1.0204-0.1061-1.4851,0.0352c-0.1525-0.0826-0.1578-0.1941-0.1607-0.2932 + c-0.0175-0.6019-0.0339-1.2043-0.0362-1.8065c-0.0006-0.1411,0.0352-0.2902,0.0875-0.4224c0.2644-0.7106,1.3558-0.696,1.5795,0.0488 + c0.0327,0.097,0.0571,0.2019,0.0587,0.3036c0.0099,0.6439,0.0137,1.2877,0.0147,1.9316 + C14.5007,1524.3229,14.4678,1524.3815,14.4421,1524.467z`}),Y=(0,n.jsx)("path",{d:`M17.2618,179.2488c0-0.2702-0.0046-0.5406,0.0019-0.8107c0.0034-0.1443,0.0074-0.2929,0.0434-0.4312 + c0.096-0.3695,0.3986-0.6147,0.7581-0.6373c0.5753-0.0295,0.9462,0.4587,0.9319,1.0143c0.0072,0.6027,0.0095,1.2057-0.0013,1.8083 + c-0.0029,0.1623-0.0345,0.3331-0.0943,0.4836c-0.2983,0.7437-1.4166,0.6784-1.5941-0.1216 + c-0.0337-0.1392-0.036-0.2878-0.0388-0.4323c-0.0056-0.2909-0.0017-0.582-0.0017-0.873 + C17.2651,179.2488,17.2635,179.2488,17.2618,179.2488z`}),X=(0,n.jsx)("path",{d:`M14.5223,179.3327c0,0.3321,0.0076,0.6645-0.0036,0.9962c-0.0048,0.1421-0.0262,0.2921-0.0794,0.4225 + c-0.2934,0.6994-1.3054,0.6214-1.5525-0.0723c-0.0304-0.0756-0.0472-0.1611-0.0501-0.2427 + c-0.0244-0.705-0.0503-1.4101-0.0599-2.1154c0.0089-0.4953,0.3928-0.9445,0.9059-0.9054c0.3603,0.0135,0.6303,0.2055,0.7511,0.5568 + c0.0461,0.1342,0.0622,0.2832,0.0667,0.4263c0.0096,0.3111,0.003,0.6227,0.003,0.934 + C14.5097,179.3327,14.516,179.3327,14.5223,179.3327z`}),Z=(0,n.jsx)("path",{d:`M17.3061,1556.4907c-0.0227-0.13-0.0481-0.21-0.0488-0.2902c-0.0052-0.6243-0.0079-1.2484-0.0055-1.8727 + c-0.0243-0.4838,0.2695-0.9308,0.7651-0.967c0.5552-0.0519,0.9482,0.3864,0.9648,0.9117c0.0078,0.6445,0.0001,1.2894-0.0081,1.9341 + c-0.0007,0.0558-0.0459,0.1112-0.0791,0.1864c-0.2682-0.0192-0.5364-0.0636-0.8016-0.0498 + C17.849,1556.3558,17.6083,1556.4312,17.3061,1556.4907z`}),J=(0,n.jsx)("path",{d:`M12.8606,1556.4491c-0.0306-0.1298-0.0635-0.209-0.0657-0.2889c-0.0167-0.6016-0.035-1.2034-0.0373-1.8051 + c-0.055-0.9143,1.1645-1.353,1.6135-0.5088c0.0618,0.1276,0.1083,0.2762,0.1113,0.4163c0.0144,0.6637,0.0122,1.3279,0.0122,1.9918 + c0,0.035-0.0346,0.0702-0.0687,0.1346c-0.2494-0.0157-0.514-0.0516-0.7773-0.0436 + C13.4042,1556.353,13.1612,1556.4073,12.8606,1556.4491z`}),ee=(0,n.jsx)("path",{d:`M18.9078,1588.3741c-0.285-0.0309-0.5507-0.0924-0.8125-0.0787c-0.2614,0.0134-0.5189,0.1023-0.7982,0.1625 + c-0.0173-0.1282-0.042-0.2289-0.0428-0.3297c-0.0049-0.6016-0.0046-1.2031-0.005-1.8047c-0.0402-0.4807,0.255-0.9447,0.7336-0.99 + c0.573-0.0791,0.9888,0.3854,1.0002,0.9324c0.0068,0.6222,0.0047,1.2444-0.0013,1.8666 + C18.9811,1588.2073,18.9373,1588.2816,18.9078,1588.3741z`}),ea=(0,n.jsx)("path",{d:`M12.8666,1588.4209c-0.0316-0.1433-0.0759-0.2583-0.0795-0.3748c-0.0175-0.5605-0.0315-1.1215-0.0296-1.6823 + c-0.0052-0.5547,0.3487-1.0363,0.939-0.9993c0.4495,0.0166,0.783,0.4414,0.7887,0.8885c0.0086,0.6439,0.0115,1.2878,0.0109,1.9318 + c-0.0001,0.0558-0.0392,0.1116-0.0636,0.1763c-0.2742-0.0237-0.5417-0.071-0.8075-0.0629 + C13.3824,1588.3062,13.1417,1588.3739,12.8666,1588.4209z`}),el=(0,n.jsx)("path",{d:`M16.931,1652.0654c-0.0412-0.0756-0.089-0.1632-0.1542-0.2826c0.0538-0.0385,0.0987-0.0958,0.1518-0.1047 + c0.3445-0.0581,2.0154-0.0465,2.442,0.0133c-0.0149,0.1067-0.0297,0.2136-0.0428,0.3075 + C18.8308,1652.1042,17.6005,1652.1365,16.931,1652.0654z`}),en=(0,n.jsx)("path",{d:`M12.3327,1652.1866c-0.0363-0.1125-0.055-0.1702-0.0719-0.2225c0.0308-0.0396,0.0506-0.0923,0.0808-0.099 + c0.1209-0.0276,0.2445-0.0524,0.368-0.0574c0.6659-0.0272,1.3319-0.0516,1.9981-0.0684c0.1191-0.0031,0.2391,0.0338,0.3774,0.0551 + c-0.0179,0.1045-0.0312,0.1823-0.0413,0.2408c-0.0559,0.0388-0.0881,0.0807-0.1223,0.0822 + c-0.7066,0.0338-1.4134,0.0653-2.1204,0.0913C12.6585,1652.214,12.5149,1652.1959,12.3327,1652.1866z`}),ec=(0,n.jsx)("path",{d:`M12.6809,1620.3843c-0.2811-0.4017-0.1722-0.8066-0.1974-1.1869c-0.0196-0.2961,0.0339-0.5779,0.2877-0.8342 + c0.5355-0.098,1.1084-0.108,1.6451-0.0911c0.2295,0.1831,0.3361,0.387,0.3487,0.6195c0.0243,0.4468,0.1065,0.9-0.0632,1.3679 + C14.0327,1620.2583,13.3715,1620.1807,12.6809,1620.3843z`}),ei=(0,n.jsx)("path",{d:`M19.0561,1620.2791c-0.3418-0.0315-0.65-0.0808-0.9585-0.0824c-0.2887-0.0016-0.5777,0.0472-0.903,0.0773 + c-0.0524-0.0902-0.156-0.1891-0.1626-0.2942c-0.0245-0.3926-0.0277-0.7875-0.0174-1.1809c0.0049-0.1891,0.0491-0.2322,0.2937-0.5669 + c0.5349-0.0406,1.09-0.0469,1.6137,0.0048c0.2289,0.2125,0.3055,0.4514,0.3067,0.7034 + C19.231,1619.3689,19.3165,1619.8116,19.0561,1620.2791z`}),es=(0,n.jsx)("path",{d:`M16.9014,84.0646c-0.0407-0.1123-0.0735-0.2027-0.1085-0.2993c0.0829-0.0465,0.1333-0.099,0.1848-0.1 + c0.7016-0.0138,1.4033-0.0217,2.105-0.0276c0.0806-0.0007,0.1614,0.0195,0.2242,0.0277c0.1303,0.1325,0.0851,0.2365-0.0079,0.3368 + C18.8503,84.1042,17.6684,84.1389,16.9014,84.0646z`}),er=(0,n.jsx)("path",{d:`M12.3033,84.1328c-0.0127-0.0709-0.0258-0.1446-0.0385-0.2152c0.5381-0.158,2.1845-0.2244,2.8085-0.1117 + c-0.0117,0.0881-0.0237,0.1781-0.0349,0.2626c-0.0872,0.0311-0.143,0.0671-0.1998,0.0689 + c-0.7828,0.0252-1.5657,0.0471-2.3487,0.0642C12.4335,84.2028,12.3763,84.1609,12.3033,84.1328z`}),eo=(0,n.jsx)("path",{d:`M18.1033,145.2827c0.6754,0.1843,0.8642,0.4016,0.8831,1.0799c0.0156,0.5611,0.0092,1.1231-0.0001,1.6845 + c0.0218,1.4265-1.7836,1.422-1.7345,0.0627c-0.0027-0.6032-0.0084-1.2064-0.0023-1.8095 + C17.256,145.66,17.4367,145.4514,18.1033,145.2827z`}),ed=(0,n.jsx)("path",{d:`M14.5087,147.3001c-0.0089,0.3921,0.0232,0.7909-0.021,1.1804c-0.074,0.3883-0.397,0.6589-0.7861,0.6725 + c-0.6152,0.0117-0.9075-0.4657-0.9109-1.0276c-0.018-0.6009-0.0338-1.2021-0.0332-1.8033c0.0002-0.161,0.037-0.332,0.099-0.4809 + c0.2784-0.6952,1.3788-0.6559,1.5744,0.0972c0.0399,0.1369,0.0525,0.285,0.0563,0.4286c0.0081,0.3108,0.0025,0.622,0.0025,0.933 + C14.496,147.3001,14.5024,147.3001,14.5087,147.3001z`}),eu=(0,n.jsx)("path",{d:`M18.0877,17.2732c0.6846,0.2012,0.8768,0.4142,0.8964,1.0472c0.0187,0.6026,0.0088,1.2062-0.0003,1.8092 + c-0.0183,1.2512-1.6218,1.3402-1.7292,0.1474c-0.0023-0.7071-0.0142-1.4145-0.0013-2.1214 + C17.2503,17.654,17.5947,17.3449,18.0877,17.2732z`}),em=(0,n.jsx)("path",{d:`M14.5025,19.3243c0,0.3524,0.022,0.7065-0.0052,1.0569c-0.0496,0.9147-1.3548,1.0555-1.628,0.2088 + c-0.0522-0.1545-0.074-0.3246-0.0796-0.4887c-0.0196-0.5801-0.0331-1.1607-0.0335-1.7411 + c-0.0087-0.5553,0.3177-1.0418,0.9165-1.0165c0.3685,0.0147,0.6643,0.245,0.7654,0.6179c0.0374,0.1378,0.0464,0.2859,0.0497,0.4297 + c0.0071,0.3109,0.0022,0.622,0.0022,0.933C14.4941,19.3243,14.4983,19.3243,14.5025,19.3243z`}),ep=(0,n.jsx)("path",{d:`M13.9237,49.6348c0.4848,0.1909,0.6727,0.556,0.6842,1.0306c0.0111,0.4559,0.0135,0.912,0.0167,1.368 + c0.003,0.4319-0.1769,0.7572-0.5859,0.9693c-0.6013,0.117-1.133,0.0034-1.3083-0.6641c-0.0336-0.1402-0.05-0.2865-0.0561-0.4308 + c-0.0166-0.3934-0.0357-0.7874-0.0288-1.1807c0.0018-0.5143,0.2722-1.092,0.8613-1.0916 + C13.6511,49.6313,13.7958,49.6348,13.9237,49.6348z`}),eg=(0,n.jsx)("path",{d:`M17.7359,49.6033c0.6826-0.1068,1.2147,0.0643,1.3196,0.8228c-0.0003,0.5603,0.015,1.1215-0.0101,1.6808 + c-0.0364,0.9842-1.4941,1.218-1.8126,0.265c-0.0529-0.1538-0.0719-0.3248-0.0763-0.4887c-0.0111-0.4154-0.0033-0.8313-0.0064-1.247 + C17.1471,50.2119,17.2816,49.8615,17.7359,49.6033z`}),eh=(0,n.jsx)("path",{d:`M12.7791,114.2197c0.5685-0.0845,1.1226-0.1157,1.7016-0.0584c0.0306,0.1345,0.0763,0.2516,0.081,0.3704 + c0.02,0.499,0.0292,0.9984,0.0396,1.4977c0.0053,0.2549-0.0374,0.4971-0.2055,0.6962c-0.455,0.1462-0.7499,0.1714-1.3535,0.1164 + c-0.1824-0.1236-0.2891-0.3085-0.2981-0.5203c-0.0272-0.6433-0.0335-1.2875-0.0442-1.9315 + C12.6995,114.3538,12.7329,114.3166,12.7791,114.2197z`}),ef=(0,n.jsx)("path",{d:`M18.7221,116.7564c-0.4135,0-0.8254,0-1.2134,0c-0.2256-0.1355-0.3023-0.3315-0.3046-0.5413 + c-0.0073-0.6622,0.0033-1.3246,0.0107-1.9869c0.0004-0.0367,0.0345-0.0731,0.0731-0.1498c0.3114-0.1148,0.6651-0.0463,1.0095-0.0524 + c0.2216-0.004,0.4584-0.0537,0.6798,0.1123c0.0174,0.085,0.0543,0.1844,0.0555,0.2841c0.0064,0.539,0.008,1.0782,0.0028,1.6172 + C19.0331,116.2927,18.9853,116.5354,18.7221,116.7564z`}),ek=(0,n.jsx)("path",{d:`M13.1918,1713.7344c0.3028,0,0.591,0,0.868,0c0.4008,0.2139,0.5776,0.5406,0.5822,0.9701 + c0.0047,0.4352,0.0052,0.8706,0.0147,1.3057c0.0089,0.405-0.1369,0.7245-0.5305,0.9745c-0.2641,0.0137-0.5711,0.0295-0.8318,0.043 + c-0.4706-0.2295-0.6429-0.5869-0.6602-1.0309c-0.0162-0.4141-0.0173-0.8287-0.0234-1.2432 + C12.6045,1714.3254,12.7757,1713.9932,13.1918,1713.7344z`}),eb=(0,n.jsx)("path",{d:`M17.7413,1713.636c0.2473,0,0.4754,0,0.6967,0c0.4571,0.17,0.6508,0.5221,0.6719,0.9677 + c0.0217,0.4565,0.0084,0.915-0.0024,1.3724c-0.0029,0.1216-0.0401,0.2468-0.0834,0.3622c-0.2751,0.9066-1.8316,0.8152-1.8869-0.2253 + c-0.0324-0.5388-0.0259-1.0817-0.0059-1.6216C17.1454,1714.1102,17.3526,1713.8301,17.7413,1713.636z`}),ez=(0,n.jsx)("path",{d:`M12.5506,1682.9004c0.6916-0.0922,1.4078-0.0698,2.0953-0.1123c0.2692,0.2023,0.2869,0.48,0.3003,0.7455 + c0.0171,0.3374-0.0383,0.6633-0.3049,0.9523c-0.5985,0.0728-1.2171,0.1086-1.82,0.1251c-0.2876-0.1904-0.4086-0.455-0.4468-0.748 + C12.3318,1683.5361,12.3003,1683.1982,12.5506,1682.9004z`}),eF=(0,n.jsx)("path",{d:`M19.2099,1682.7675c0.254,0.6693,0.1686,1.2161-0.3322,1.6964c-0.4998,0.0532-0.9937,0.0371-1.4735,0.0161 + c-0.5576-0.467-0.6623-0.9355-0.3752-1.6827c0.3464-0.1426,0.7224-0.0599,1.0883-0.0688 + C18.4658,1682.72,18.8184,1682.6926,19.2099,1682.7675z`}),aG[0]=a,aG[1]=l,aG[2]=c,aG[3]=i,aG[4]=s,aG[5]=r,aG[6]=o,aG[7]=d,aG[8]=u,aG[9]=m,aG[10]=p,aG[11]=g,aG[12]=y,aG[13]=h,aG[14]=f,aG[15]=k,aG[16]=b,aG[17]=z,aG[18]=F,aG[19]=I,aG[20]=S,aG[21]=C,aG[22]=v,aG[23]=x,aG[24]=j,aG[25]=M,aG[26]=T,aG[27]=_,aG[28]=N,aG[29]=K,aG[30]=L,aG[31]=w,aG[32]=P,aG[33]=A,aG[34]=E,aG[35]=V,aG[36]=R,aG[37]=D,aG[38]=O,aG[39]=B,aG[40]=$,aG[41]=U,aG[42]=q,aG[43]=H,aG[44]=W,aG[45]=G,aG[46]=Q,aG[47]=Y,aG[48]=X,aG[49]=Z,aG[50]=J,aG[51]=ee,aG[52]=ea,aG[53]=el,aG[54]=en,aG[55]=et,aG[56]=ec,aG[57]=ei,aG[58]=es,aG[59]=er,aG[60]=eo,aG[61]=ed,aG[62]=eu,aG[63]=em,aG[64]=ep,aG[65]=eg,aG[66]=ey,aG[67]=eh,aG[68]=ef,aG[69]=ek,aG[70]=eb,aG[71]=ez,aG[72]=eF,aG[73]=eI,aG[74]=eS,aG[75]=eC,aG[76]=ev,aG[77]=ex,aG[78]=ej,aG[79]=eM,aG[80]=eT,aG[81]=e_,aG[82]=eN,aG[83]=eK,aG[84]=eL,aG[85]=ew,aG[86]=eP,aG[87]=eA,aG[88]=eE,aG[89]=eV,aG[90]=eR,aG[91]=eD,aG[92]=eO,aG[93]=eB,aG[94]=e$,aG[95]=eU,aG[96]=eq,aG[97]=eH,aG[98]=eW,aG[99]=eG,aG[100]=eQ,aG[101]=eY,aG[102]=eX,aG[103]=eZ,aG[104]=eJ,aG[105]=e1,aG[106]=e0,aG[107]=e2,aG[108]=e3,aG[109]=e4,aG[110]=e5,aG[111]=e6,aG[112]=e7,aG[113]=e8,aG[114]=e9,aG[115]=ae,aG[116]=aa,aG[117]=al,aG[118]=an,aG[119]=at,aG[120]=ac,aG[121]=ai,aG[122]=as,aG[123]=ar,aG[124]=ao,aG[125]=ad,aG[126]=au,aG[127]=am,aG[128]=ap,aG[129]=ag,aG[130]=ay,aG[131]=ah,aG[132]=af,aG[133]=ak,aG[134]=ab,aG[135]=az,aG[136]=aF,aG[137]=aI,aG[138]=aS,aG[139]=aC,aG[140]=av,aG[141]=ax,aG[142]=aj,aG[143]=aM,aG[144]=aT,aG[145]=a_,aG[146]=aN,aG[147]=aK,aG[148]=aL,aG[149]=aw,aG[150]=aP,aG[151]=aA,aG[152]=aE,aG[153]=aV,aG[154]=aR,aG[155]=aD,aG[156]=aO,aG[157]=aB,aG[158]=a$,aG[159]=aU,aG[160]=aq,aG[161]=aH):(a=aG[0],l=aG[1],c=aG[2],i=aG[3],s=aG[4],r=aG[5],o=aG[6],d=aG[7],u=aG[8],m=aG[9],p=aG[10],g=aG[11],y=aG[12],h=aG[13],f=aG[14],k=aG[15],b=aG[16],z=aG[17],F=aG[18],I=aG[19],S=aG[20],C=aG[21],v=aG[22],x=aG[23],j=aG[24],M=aG[25],T=aG[26],_=aG[27],N=aG[28],K=aG[29],L=aG[30],w=aG[31],P=aG[32],A=aG[33],E=aG[34],V=aG[35],R=aG[36],D=aG[37],O=aG[38],B=aG[39],$=aG[40],U=aG[41],q=aG[42],H=aG[43],W=aG[44],G=aG[45],Q=aG[46],Y=aG[47],X=aG[48],Z=aG[49],J=aG[50],ee=aG[51],ea=aG[52],el=aG[53],en=aG[54],et=aG[55],ec=aG[56],ei=aG[57],es=aG[58],er=aG[59],eo=aG[60],ed=aG[61],eu=aG[62],em=aG[63],ep=aG[64],eg=aG[65],ey=aG[66],eh=aG[67],ef=aG[68],ek=aG[69],eb=aG[70],ez=aG[71],eF=aG[72],eI=aG[73],eS=aG[74],eC=aG[75],ev=aG[76],ex=aG[77],ej=aG[78],eM=aG[79],eT=aG[80],e_=aG[81],eN=aG[82],eK=aG[83],eL=aG[84],ew=aG[85],eP=aG[86],eA=aG[87],eE=aG[88],eV=aG[89],eR=aG[90],eD=aG[91],eO=aG[92],eB=aG[93],e$=aG[94],eU=aG[95],eq=aG[96],eH=aG[97],eW=aG[98],eG=aG[99],eQ=aG[100],eY=aG[101],eX=aG[102],eZ=aG[103],eJ=aG[104],e1=aG[105],e0=aG[106],e2=aG[107],e3=aG[108],e4=aG[109],e5=aG[110],e6=aG[111],e7=aG[112],e8=aG[113],e9=aG[114],ae=aG[115],aa=aG[116],al=aG[117],an=aG[118],at=aG[119],ac=aG[120],ai=aG[121],as=aG[122],ar=aG[123],ao=aG[124],ad=aG[125],au=aG[126],am=aG[127],ap=aG[128],ag=aG[129],ay=aG[130],ah=aG[131],af=aG[132],ak=aG[133],ab=aG[134],az=aG[135],aF=aG[136],aI=aG[137],aS=aG[138],aC=aG[139],av=aG[140],ax=aG[141],aj=aG[142],aM=aG[143],aT=aG[144],a_=aG[145],aN=aG[146],aK=aG[147],aL=aG[148],aw=aG[149],aP=aG[150],aA=aG[151],aE=aG[152],aV=aG[153],aR=aG[154],aD=aG[155],aO=aG[156],aB=aG[157],a$=aG[158],aU=aG[159],aq=aG[160],aH=aG[161]),aG[162]!==aY||aG[163]!==aZ||aG[164]!==aJ?(aW=(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:aZ,height:aJ,viewBox:"0 0 32 1728",className:"Idle-module__idle--_WWNO","data-animation-state":aY,fill:"currentColor","aria-hidden":!0,children:[eq,e2,an,ag,av,aA,a,g,v,A,W,et,ey,eI,eS,eC,ev,ex,ej,eM,eT,e_,eN,eK,eL,ew,eP,eA,eE,eV,eR,eD,eO,eB,e$,eU,eH,eW,eG,eQ,eY,eX,eZ,eJ,e1,e0,e3,e4,e5,e6,e7,e8,e9,ae,aa,al,at,ac,ai,as,ar,ao,ad,au,am,ap,ay,ah,af,ak,ab,az,aF,aI,aS,aC,ax,aj,aM,aT,a_,aN,aK,aL,aw,aP,aE,aV,aR,aD,aO,aB,a$,aU,aq,aH,l,c,i,s,r,o,d,u,m,p,y,h,f,k,b,z,F,I,S,C,x,j,M,T,_,N,K,L,w,P,E,V,R,D,O,B,$,U,q,H,G,Q,Y,X,Z,J,ee,ea,el,en,ec,ei,es,er,eo,ed,eu,em,ep,eg,eh,ef,ek,eb,ez,eF]}),aG[162]=aY,aG[163]=aZ,aG[164]=aJ,aG[165]=aW):aW=aG[165],aW}try{g.displayName||(g.displayName="CopilotAnimationIdle")}catch{}function y(e){let a,l,c,i=(0,t.c)(6),{scale:s,state:r}=e,o=void 0===s?1:s,d=32*o,u=1248*o;return i[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)("path",{d:"M8.12 328.6a9.78 9.78 0 0 1 4.77-5.38l.2-.3a9.56 9.56 0 0 1 10.14 1.99c.1.38.32.68.55.97.46.57.76 1.24 1.3 1.75 1.17 1.1.86 2.7.92 4.14.76.4 1.12 1.1 1.48 1.81.46.92.49 1.02.4 2.04-.07.62-.18 1.24-.35 1.84-.11.42-.32.75-.67 1.01-.56.41-1.1.82-1.74 1.11l-.57 1.5c-6.43 4.87-13.02 2.99-17.91-2.92l-.17-1.2c-.82-.77-1.66-1.6-2.19-2.59-.07-.39 0-.74.06-1.08l.43-2.27c.07-.36.24-.66.52-.9 1.2-1.03 1.17-1.31 2.83-1.53zm14.96 11.65c.73-1.43 1.3-3.85 1.14-4.83-.54.27-1.06.57-1.68.6a5.44 5.44 0 0 1-4.14-1.22 2.01 2.01 0 0 1-.74-1.13c-.02-.08 0-.2-.12-.24-.52.73-1 1.12-1.92 1.26a6.41 6.41 0 0 1-3.72-.43c-.92-.4-1.62-1-2.07-1.9-.04-.08-.04-.2-.18-.2-.54 1.02-1.35 4.64-1.08 5.78a10.5 10.5 0 0 0 4.74 3.4c3.15 1.32 7.05 1.08 9.77-1.09zm-8.98-13.06v.04a5.78 5.78 0 0 0-1.73.17.9.9 0 0 0-.7.72c-.32 1.53-.86 3.97 1.04 4.63.77.27 1.57.42 2.39.37.85 0 1.26-.76 1.38-1.51l.36-2.4c.13-.8-.28-1.67-1.14-1.81-.52-.1-1.06-.14-1.6-.2zm7.86 7.17c2.05.07 2.25-2.64 2.39-4.17a.92.92 0 0 0-.42-.86c-.75-.58-1.7-.76-2.58-1.03-.83-.18-1.52.2-1.61 1.1-.16 1.1-.44 2.2-.47 3.32-.04 1.46 1.54 1.57 2.69 1.64zM6.86 309.77l-.14-1.17c-.57-.46-1.19-.85-1.65-1.43l-.75-.92c-.01-1.33.13-2.63.33-3.94.66-.79 1.31-1.76 2.37-2.03l.56-.14c.77-2.24 1.9-4.21 3.94-5.52.22-.16.44-.3.51-.55a9.4 9.4 0 0 1 9.86.74c.2.14.39.3.5.55.05.14.16.28.28.4.44.46.86.96 1.2 1.5.1.14.2.27.33.38 1.28 1.13.92 2.55 1.35 4l.07.08c.92.35 1.37 1.17 1.86 1.95.28.4.4.86.4 1.35-.02.84-.09 1.67-.23 2.49-.06.37-.22.66-.51.9-.3.23-.56.5-.86.72-.3.23-.62.42-.94.63l-.37 1.39c-2.42 2.2-5.73 3.65-9.03 3.47-3.51-.32-6.69-2.35-9.08-4.85zm1.8-.46c1.85 2.17 4.7 3.24 7.47 3.54 2.58.12 5.4-.6 7.26-2.45.57-1.55.89-4.06.64-5.09-.47.33-.9.67-1.46.8a5.59 5.59 0 0 1-4.17-.53c-.66-.37-1.17-.86-1.32-1.64l-.07-.05c-.25.47-.5.97-1.01 1.21a5.9 5.9 0 0 1-4.31.3 4.05 4.05 0 0 1-2.3-1.62c-.05-.08-.09-.18-.26-.15a15.27 15.27 0 0 0-.47 5.68zm2.22-10.37c-.3 1.3-.62 4.09.97 4.7.65.3 1.38.27 2.07.34 1.38.06 1.84-.72 1.92-1.99.03-.86.17-1.74.1-2.6-.13-.85-.87-1.3-1.68-1.27-.91 0-1.83 0-2.7.3-.25.07-.47.2-.68.52zm8.02.4a26.29 26.29 0 0 0-.27 3.59c0 .66.31 1.3 1 1.47 1.04.23 2.37.46 3.19-.4.78-1.09.78-2.55.78-3.84.01-1.1-2.52-1.55-3.38-1.58a1.28 1.28 0 0 0-1.32.76zM7.03 281.62l-.17-.99c-.95-.63-1.89-1.22-2.6-2.16-.02-1.29-.03-2.6.02-3.9.63-.86 1.2-1.92 2.3-2.21l.38-.14c.8-2.64 1.48-4.26 3.73-6.01l.2-.36c3.2-2 7.14-1.98 10.35.03.14.27.35.51.61.72.6.46 1.05 1.07 1.63 1.55.53.44.85 1.02 1 1.7.17.78.5 1.48.73 2.26l.34.14c.94.27 1.42 1.18 2.02 1.88.57.68.38 3.1.28 4.07-.53.85-1.39 1.4-2.18 2.03l-.2 1.2a13.78 13.78 0 0 1-8.9 4.04c-3.51 0-6.9-1.6-9.54-3.85zm16.82-6.28c-.08 0-.14.08-.2.12-1.55 1.49-4.02 1.4-5.86.56-.57-.25-1-.66-1.2-1.27-.03-.1-.09-.17-.15-.29-.2.68-.54 1.22-1.17 1.54-1.4.71-2.97.86-4.48.47a3.66 3.66 0 0 1-1.5-.76c-.22-.18-.35-.4-.63-.51-.3 1.97-.4 3.88.09 5.77 3.99 3.54 11.18 3.69 14.98-.2.43-1.25.5-4.48.12-5.43zM9.9 270.32c-.25 1.45-.3 4.4 1.7 4.6.84.12 1.72.14 2.54-.13.53-.17.79-.67.87-1.2.15-1.04.05-2.13-.03-3.17-.1-.93-.97-1.3-1.8-1.2-.9.1-2.82.21-3.28 1.1zm12.81-.26c-.75-.8-2.34-.9-3.37-.94-.79-.05-1.46.43-1.45 1.26.02 1.14-.1 2.3.14 3.42.14.57.52.94 1.1 1.06.74.15 1.5.15 2.23-.01.77-.14 1.25-.74 1.4-1.5a6.9 6.9 0 0 0-.05-3.29zM7.16 250.97l-.24-.94c-.99-.52-1.96-1-2.75-1.84-.14-1.24-.25-2.5-.32-3.8.5-.8 1.03-1.87 1.94-2.28l.55-.23c.04-.14.1-.3.13-.46a8.85 8.85 0 0 1 1.75-4.21c.35-.48.75-.9 1.17-1.3.18-.16.32-.33.36-.57 3.1-2.26 7.1-2.62 10.57-1 .15.26.39.45.65.62.72.43 1.3 1.04 1.94 1.57.31.25.56.56.74.92.46.87.87 1.7 1.28 2.61l.5.14c.36.07.68.22.95.46.44.4.87.83 1.29 1.27.28.29.35 1.24.41 1.67.07.72.2 1.44.15 2.19-.55.9-1.37 1.54-2.16 2.24l-.08 1.11a14.88 14.88 0 0 1-8.73 4.72c-3.58.36-7.19-.84-10.1-2.89zm16.54-7.78c-.44.47-.86.93-1.47 1.17a6.5 6.5 0 0 1-4.8.16 2 2 0 0 1-1.33-1.23c-.03-.08-.07-.15-.19-.13-.2 2.12-3.63 2.74-5.36 2.48a4.38 4.38 0 0 1-2.26-.98c-.05.07-.1.12-.1.17-.13 1.82-.01 3.65.65 5.38 1.72 1.3 3.89 1.8 6 1.93 3.4.24 7.07-.95 9.33-3.56.2-1.51.09-3.04-.21-4.56-.06-.27-.04-.58-.26-.83zM9 239.62c-.02.19-.08.4-.07.6.02.95.14 1.91.54 2.79.62 1.47 2.68 1.08 3.92.76.96-.27 1.06-1.16 1-2.02-.05-.67-.12-1.33-.2-1.99-.04-.59-.3-1.16-.9-1.37a1.6 1.6 0 0 0-.85-.1c-1.15.22-2.62.37-3.44 1.33zm10.57 3.7c1.43-.17 2.68-.3 2.81-2.05.14-.86-.02-1.7-.17-2.54a.94.94 0 0 0-.62-.73 7.43 7.43 0 0 0-3.26-.32c-.84.12-1.37.67-1.27 1.54.1 1.01.11 2.05.4 3.03.3 1.04 1.18 1.05 2.11 1.07zM19.7 202.45c.15.26.37.4.61.53a9.8 9.8 0 0 1 4.34 4.85c.17.04.33.08.49.1 1.08.1 1.77 1.03 2.58 1.66.35 1.24.5 2.5.66 3.75-.6.89-1.26 1.7-2.13 2.3l-.05 1.06a15.48 15.48 0 0 1-8.63 5.19c-3.57.57-7.19-.36-10.28-2.19l-.34-.97c-.93-.39-1.87-.9-2.66-1.49-.27-.67-.5-2.05-.62-3.82.46-.84.95-1.95 1.9-2.41l.4-.21.06-.09c.12-.71.3-1.42.37-2.15.11-1.2.51-1.69 1.29-2.55.34-.41.68-.84 1.04-1.25.17-.19.3-.38.36-.63a10.78 10.78 0 0 1 10.62-1.68zm4.56 13.87c.2-1.79-.17-3.57-.68-5.28-.02-.07-.08-.12-.15-.2-1.05 1.58-3.07 2.12-4.88 2.03-1.04-.08-2.3-.23-2.83-1.27l-.19-.3c-.15.79-.38 1.3-1.07 1.74a6.9 6.9 0 0 1-3.96 1.13 4.2 4.2 0 0 1-2.3-.66c-.09-.05-.17-.12-.3-.02-.02 1.83.19 3.63.97 5.32 4.56 2.84 11.98 1.69 15.39-2.49zm-5.11-10.56c-.6-.02-1.21 0-1.8.15-.66.17-1.08.9-.93 1.55.1.76.22 1.52.35 2.28.19 1.16.87 1.7 2.04 1.6 1.22-.13 2.93-.31 3.1-1.82a6.93 6.93 0 0 0-.22-2.77c-.25-1.1-1.67-.99-2.54-1zM8.39 208.3a6.27 6.27 0 0 0 .45 3.02c.35.86.98 1.26 1.9 1.23a6.6 6.6 0 0 0 2.37-.48c.47-.25.75-.65.77-1.2 0-.18.02-.37 0-.56-.14-.86-.26-1.73-.42-2.59-.14-.76-1.03-1.08-1.74-.9-1.08.24-2.62.56-3.33 1.48zM6.32 367.44c-.44-.49-.85-.9-1.2-1.36-.34-.44-.62-.94-.93-1.42.06-1.15.4-2.25.74-3.35.1-.3.26-.55.52-.75.79-.59 1.54-1.39 2.6-1.33.14 0 .22 0 .36-.06 1-2 2.52-3.76 4.6-4.68.25-.12.55-.2.68-.49 1.74-.6 3.59-.55 5.38-.24 1.82.6 3.5 1.48 4.83 2.9.07.41.3.75.58 1.1 2.12 1.23 2.23 3.06 1.8 5.26l.14.8c.81.55 1.07 1.5 1.45 2.36.36.77-.16 2.4-.41 3.22-.16.46-.42.8-.84 1.04-.56.33-1.1.68-1.72.87l-.57 1.23c-3.96 2.3-9 2.61-12.92.05-1.26-.74-5.18-3.67-5.09-5.15zm16.66 3.93c.82-1.39 1.6-4.12 1.46-5.16-1.87.83-3.99.16-5.56-1a2.12 2.12 0 0 1-.9-1.45c0-.05-.03-.1-.07-.2l-.31.34c-.43.51-1.1.66-1.73.74-2.22.24-4.78-.56-5.8-2.69-.76 1.11-1.59 4.24-1.6 6.01.96 1.47 2.52 2.5 4.06 3.28 3.15 1.64 7.35 2.12 10.45.13zm-10.53-13.62a6.42 6.42 0 0 0-.58 3.44c.08.53.35.92.78 1.23.52.38 2.34.79 3 .69.84-.1 1.17-.78 1.34-1.52.14-.63.26-1.26.38-1.9.23-.82.04-1.7-.84-2.02-.96-.29-3.26-.6-4.08.08zm8.05 1.53c-.33.97-.5 2.03-.72 3.04-.17 1.1-.02 1.75 1.07 2.23 1.09.44 2.63.75 3.21-.49a8 8 0 0 0 .8-2.93.97.97 0 0 0-.37-.88 6.72 6.72 0 0 0-2.4-1.27c-.57-.17-1.09-.24-1.6.3zM19.94 170.58c.13.25.38.4.62.55.59.37 1.16.75 1.73 1.13.3.2.55.45.74.75.67 1 1.25 2.02 1.77 3.1.18.04.36.09.54.11 1 .16 1.81 1.1 2.48 1.8.27 1.23.43 2.46.54 3.67-.6 1-1.36 1.62-2.23 2.36l-.06.8c-5.2 5.51-12.5 6.5-18.96 2.53l-.28-.82a12.8 12.8 0 0 1-2.68-1.61c-.26-1.26-.43-2.51-.45-3.78.52-.86.98-1.9 1.92-2.34l.45-.22c.12-.58.25-1.14.36-1.72.01-1.54.23-2.47 1.57-3.39.46-.3.78-.74 1.16-1.12.1-.1.12-.26.17-.37 3-2.37 7.09-2.89 10.61-1.43zm-4.47 8.33c-.23 1.61-1.89 2.13-3.23 2.52-1.3.3-2.76.35-3.94-.34l-.4-.21c-.2.65-.08 1.27-.05 1.89.08 1.27.32 2.52.83 3.67 2.38 1.6 5.44 1.8 8.22 1.5 2.48-.39 5.64-1.62 7.23-3.64.02-.29.08-.6.07-.91-.07-1.6-.22-3.24-.81-4.74a4.27 4.27 0 0 1-1.62 1.3 7.1 7.1 0 0 1-3.79.5c-1.13-.15-2.03-.4-2.5-1.54zm3.46-5.46c-.4.02-.8.02-1.19.06-1.06.1-1.44.9-1.33 1.61.06.41.09.83.15 1.24.18 1.14.2 2.41 1.62 2.6.84.07 1.98-.04 2.75-.39 1.42-.6 1.03-2.87.78-4.08-.17-1.01-1.99-1-2.78-1.04zM8.4 175.88c-.1 1.09.06 2.22.54 3.21.3.68.97.96 1.69.95 1.26-.06 3.15-.22 3.19-1.86-.03-.95-.23-1.9-.35-2.84-.08-.72-.76-1.04-1.43-1.01-1.04.16-3.07.6-3.64 1.55zM25.82 976.46c.2.09.38.17.55.23.95.39 1.48 1.43 2.02 2.28-.05 1.24-.18 2.5-.32 3.75-.82.85-1.77 1.3-2.82 1.81l-.24.72c-6.48 4-13.52 3.5-19.02-1.89-.05-.29-.1-.6-.12-.9-.8-.64-1.5-1.32-2.13-2.11-.06-1.28.12-2.5.37-3.73.44-.52.92-.98 1.44-1.4.38-.32.88-.47 1.36-.55.54-.8.7-1.65.94-2.5a3.35 3.35 0 0 1 2.4-2.25c.45-.08.8-.36 1.15-.6.12-.08.19-.22.3-.37a10.76 10.76 0 0 1 10.67 1.01l.1.26 1.4 1.52c1.14 1.32 1.64 3.03 1.95 4.72zM7.7 982.82c2.14 2.2 5.56 3.22 8.57 3.3 2.33-.03 5.02-.45 6.93-1.86.56-1.35.88-4.66.54-5.75-.69.44-1.36.89-2.2.93a7.28 7.28 0 0 1-4.52-.87c-.55-.3-.94-.75-1.05-1.4-.02-.07-.04-.15-.16-.16-.32.8-.89 1.2-1.7 1.4-2.03.5-4.4.31-5.97-1.18a11.35 11.35 0 0 0-.44 5.59zm15.3-9.08c-.46-.98-2.9-1.45-3.9-1.5a1.3 1.3 0 0 0-1.4 1.16c-.04.3-.1.61-.13.92-.05.5-.13 1-.15 1.5-.12 1.9 1.62 1.97 3.09 2.13.26.02.53-.03.8-.07 1.68-.33 1.76-2.82 1.68-4.14zm-10.5-2.05v.03c-.88.05-2.73.03-2.9 1.15-.11.62-.23 1.23-.2 1.86.05.84.17 1.74 1.07 2.08.8.31 2.31.47 3.11.1.53-.22.78-.68.88-1.2.17-.93.25-1.86.3-2.8.02-.49-.24-.82-.67-1.03-.5-.22-1.06-.15-1.6-.2zM22.21 1001.71c.05.27.25.44.44.63.5.5 1 1.01 1.47 1.54.17.18.32.4.41.62.45.98.9 1.98 1.1 3.05l.15.6c.14.07.27.14.4.18 1.03.34 1.59 1.4 2.15 2.25.04.59-.08 2.47-.24 3.8-.74.82-1.78 1.34-2.76 1.86l-.22.72a16.27 16.27 0 0 1-9.98 2.77c-3.4-.34-6.6-2.01-9.07-4.34l-.1-.92a8.88 8.88 0 0 1-2.16-2.03c-.13-.81.04-2.87.33-3.82.7-.77 1.46-1.75 2.57-1.9l.21-.07c.25-.6.6-1.16.7-1.84a3.4 3.4 0 0 1 2.25-2.83 6 6 0 0 0 1.43-.76l.24-.35a10.8 10.8 0 0 1 10.68.84zm-6.3 7c-.34.88-.75 1.29-1.62 1.55a7.31 7.31 0 0 1-4.36 0 3.95 3.95 0 0 1-1.73-1.06c-.5.73-.84 4.3-.38 5.64 2.15 2.15 5.56 3.09 8.53 3.15 2.44-.07 4.99-.52 6.98-2 .57-1.8.63-3.7.52-5.56 0-.08-.02-.16-.12-.18-.12.03-.2.14-.3.2-1.3 1.01-3.14.97-4.68.61-1.09-.32-2.45-.72-2.75-1.96l-.1-.38zm7.05-3.17c-.37-.97-2.57-1.33-3.5-1.5-.97-.15-1.77.35-1.82 1.37l-.18 1.98c-.06.83.09 1.67.95 1.97 1.2.41 3.4.8 4.07-.61.46-1 .57-2.13.48-3.21zm-10.8 3.5v-.03c1.1.08 2.14-.19 2.3-1.43.14-.9.2-1.82.26-2.73.07-.73-.62-1.2-1.29-1.23a7.98 7.98 0 0 0-3.19.38.97.97 0 0 0-.7.86c-.19 1.4-.53 3.68 1.32 4.01.43.1.86.12 1.3.18zM5.98 951.34l-.12-1a8.33 8.33 0 0 1-2-2.04c-.12-.82.09-2.72.42-3.77.6-.64 1.4-1.6 2.3-1.8l.48-.14c.26-.5.53-.99.6-1.56.37-2.1 1.4-3.03 3.45-3.47.26-.15.57-.28.7-.63a10.57 10.57 0 0 1 10.62 1.09l.12.31c2.09 1.96 2.73 3.52 3.27 6.28l.49.22c.99.4 1.42 1.43 1.99 2.27-.07 1.29-.23 2.57-.36 3.84a8.55 8.55 0 0 1-2.87 1.77l-.24.68c-6.42 3.88-13.48 3.3-18.85-2.05zm9.81-6.58a2.23 2.23 0 0 1-1.75 1.53c-1.98.48-4.34.3-5.85-1.2a11.32 11.32 0 0 0-.52 5.64c2.49 2.75 7.25 3.81 10.82 3.24 1.52-.23 3.4-.68 4.6-1.68.54-1.7.68-3.45.65-5.23 0-.2.04-.4-.11-.61a4.2 4.2 0 0 1-1.98.92c-.72.09-1.45.14-2.18.01-1.36-.28-3.3-.72-3.6-2.32 0-.06-.03-.12-.08-.3zm1.57-1.04c-.05.68.12 1.32.75 1.65.68.36 1.47.47 2.23.5 1.26.08 1.91-.32 2.3-1.54.24-.73.3-1.5.33-2.27a.92.92 0 0 0-.4-.8c-.72-.55-1.62-.75-2.48-.97-.34-.08-.7-.11-1.05-.15a1.3 1.3 0 0 0-1.37 1.1c-.15.82-.29 1.64-.3 2.48zm-2.65-3.3c-.3-.59-.49-.74-1.12-.83a5.08 5.08 0 0 0-.87-.05c-.8.05-1.64.06-2.4.38-.38.14-.6.42-.67.82-.08.45-.16.9-.21 1.36-.08.92 0 2.13.99 2.55 1.08.37 3.28.73 3.81-.65.11-.3.2-.63.25-.96.12-.87.26-1.73.22-2.61zM25.73 1039.79l.43.18c1 .34 1.46 1.38 2.1 2.14.05 1.3-.04 2.56-.17 3.86a8.2 8.2 0 0 1-2.64 1.83l-.23.73a16.01 16.01 0 0 1-9.79 2.94 15.6 15.6 0 0 1-9.2-4.14l-.14-.76c-.4-.32-.83-.62-1.21-.97-.37-.33-.7-.71-1-1.04-.14-.7 0-2.9.23-3.89.4-.5.86-1 1.38-1.45.4-.35.88-.46 1.39-.6.3-.75.66-1.46.8-2.27a3.35 3.35 0 0 1 2.46-2.72c.39-.13.7-.35 1.02-.58l.2-.32a10.67 10.67 0 0 1 10.65.63c.06.28.26.47.46.64l1.1.94c.77.65.97 1.15 1.23 2.1.38.84.65 1.71.85 2.6.01.05.04.08.08.15zm-9.77.62c-.25.64-.6 1.14-1.24 1.4-1.4.56-2.9.61-4.36.28a3.88 3.88 0 0 1-1.87-.94c-.07-.06-.14-.16-.3-.1a12.8 12.8 0 0 0-.26 5.66c1.66 1.61 3.94 2.37 6.17 2.78 1.52.33 3.08.22 4.6-.01 1.55-.27 3.6-.85 4.77-1.95.47-1.75.57-3.57.4-5.4 0-.12.03-.27-.15-.34-.74.57-1.53.98-2.49.98a7.28 7.28 0 0 1-3.77-.6c-.64-.28-1.2-.73-1.37-1.44-.02-.1-.07-.18-.13-.32zm1.54-1.64h.03c0 .29-.03.58 0 .87.16 1.64 2.39 1.68 3.65 1.58 1.75-.2 1.8-2.55 1.77-3.92 0-.54-.51-.83-.95-1.04a9.03 9.03 0 0 0-2.47-.63c-.73-.09-1.49.01-1.77.79-.06.15-.1.32-.1.48l-.16 1.87zm-7.84-2.6c-.3 1.06-.56 3.42.53 4.12.8.51 2.37.57 3.27.29.88-.26 1.08-1.07 1.15-1.88.05-.41.07-.83.1-1.24.05-.82.18-1.75-.79-2.06a7.02 7.02 0 0 0-3.02.13c-.42.1-.85.23-1.24.64zM25.45 1079.5l-.15.57a16.09 16.09 0 0 1-9.68 3.03 16.24 16.24 0 0 1-9.23-3.81l-.16-.73a8.53 8.53 0 0 1-2.34-2.06c-.05-1.27.06-2.53.2-3.76.71-.83 1.32-1.78 2.42-2.05.1-.02.2-.06.31-.1.37-.86.7-1.72.87-2.65.22-1.55 1.48-2.45 2.91-2.83.33-.1.35-.13.6-.53a10.3 10.3 0 0 1 10.58.45c.14.4.46.65.84.84.4.2.75.43 1.07.74.48.46.8 1.01.92 1.67.06.36.18.68.3 1.01.25.66.46 1.34.7 2.08.1.04.24.12.4.17.98.32 1.53 1.4 2.12 2.11.12.82.04 3.33-.12 3.96-.7.79-1.66 1.37-2.56 1.9zm-9.48-7.6c-.28.93-.91 1.38-1.8 1.64-1.87.52-4.17.49-5.7-.83-.04-.03-.11-.03-.17-.05-.5 1.3-.63 4.74-.19 5.9 2.98 2.53 7.57 3.2 11.31 2.36 1.25-.3 3.23-.93 4.1-1.86.5-1.83.51-3.76.31-5.64 0-.09-.02-.2-.17-.23-.61.5-1.32.87-2.12.93a7.4 7.4 0 0 1-4.1-.53c-.67-.3-1.2-.74-1.35-1.51 0-.04-.04-.07-.12-.18zm6.89-2.44v-.62c.01-.9-1.02-1.23-1.73-1.44-1.2-.25-3.34-1-3.5.86-.06.65-.1 1.3-.13 1.93-.05.85.1 1.76.99 2.1.87.37 1.83.43 2.75.3 1.42-.15 1.63-1.98 1.62-3.13zm-8.2-.24h.02c0-.4.04-.79.03-1.18-.13-1.73-2.35-1.14-3.5-.98-1.75.47-1.65.64-1.78 2.34-.04 1.12.17 2.6 1.5 2.78.76.14 1.53.14 2.29-.03 1.48-.3 1.4-1.73 1.45-2.93zM20.29 138.54c.35.67 1.18.7 1.77 1.06.75.4 1.28 1 1.53 1.82.08.28.22.53.37.79.37.66.7 1.32 1 2.02.14.04.27.1.41.13 1.1.17 1.72 1.12 2.5 1.8.24 1.28.38 2.56.43 3.84a8.27 8.27 0 0 1-2.3 2.2l-.13.69a15.26 15.26 0 0 1-18.93 1.82l-.2-.6c-.96-.5-1.8-1-2.6-1.68-.05-.17-.1-.33-.13-.5a27.4 27.4 0 0 1-.25-3.3c.5-.79 1.03-1.85 1.9-2.27l.5-.24c.14-.3.15-.61.24-.9.17-.53.24-1.05.24-1.6-.02-1.65 1.05-2.86 2.53-3.44.27-.11.46-.28.5-.58a10.55 10.55 0 0 1 10.62-1.06zm3.08 7.69c-.54.52-1.05.96-1.78 1.19a7.5 7.5 0 0 1-4.72.03 1.9 1.9 0 0 1-1.24-1.15c-.03-.07-.03-.16-.15-.16-.06.02-.07.09-.08.14-.11 1.03-1.07 1.5-1.91 1.85-1.64.6-3.63.82-5.2-.07-.1-.06-.2-.16-.34-.12-.35 1.47-.02 4.62.63 5.82 2.98 1.95 7.57 2.04 10.9.97 1.62-.55 3.3-1.28 4.48-2.56.26-1.7 0-4.42-.59-5.94zm-4.56-5.35c-1.09-.07-2.24 0-2.22 1.37a27.1 27.1 0 0 0 .26 2.54c.28 1.8 2.54 1.6 3.87 1.28 1.76-.49 1.38-2.75 1.14-4.12a.85.85 0 0 0-.55-.64 6.38 6.38 0 0 0-2.5-.43zm-4.94 3.78h.04c-.09-.74-.15-1.49-.27-2.23-.09-.56-.5-.91-1.08-.94-.79-.03-1.55.23-2.3.44-.4.12-.78.3-1.14.52-.4.25-.62.6-.59 1.08.04.5.05 1 .13 1.49.32 1.51.82 2.2 2.47 2.06 1.09-.1 2.66-.39 2.74-1.73v-.69zM3.86 687.32c-.17-1.27-.13-2.51-.09-3.7a5.73 5.73 0 0 1 2.34-2.33c.15-.42.16-.91.41-1.33l.7-1.21c-.58-2.32.46-3.8 2.53-4.77 1.4-.64 4.27-1.68 5.54-.46l.68-.03c1.37-1.42 5.03-.15 6.5.72.33.2.62.43.9.68.86.75 1.13 2.01.9 3.12.57.88 1.3 1.7 1.42 2.8.1.05.2.12.3.15.93.32 1.54 1.25 2.16 1.94.17.77.25 3.11.13 3.88a8.08 8.08 0 0 1-2.72 2.11c-.46.23-.92.5-1.41.64-1.07.3-2.14.56-3.2.84-.64.18-1.29.39-1.96.38-1.44.02-2.85.4-4.29.2a14.9 14.9 0 0 0-1-.06c-.7-.01-1.43.02-2.1-.2-.61-.2-1.25-.3-1.88-.44-.7-.18-1.44-.26-2.12-.52-.5-.22-.98-.45-1.47-.68a8.75 8.75 0 0 1-2.27-1.73zm19.03-7.36c-.65.3-1.19.6-1.9.58-1.4.13-2.74-.11-4.02-.66-.5-.23-.95-.56-1.13-1.1-.03-.09-.08-.16-.15-.28-.25.92-.7 1.18-1.23 1.46a8.35 8.35 0 0 1-3.75.83 4 4 0 0 1-1.7-.34c-.1-.05-.23-.07-.36-.11l-.46.36c-.6 1.2-.6 4.9.02 6.1 1.12.46 2.38.69 3.6.82 1.59.13 3.2.28 4.8.2 1.1-.09 2.2-.21 3.29-.34.91-.13 3.33-.58 3.95-1.17.3-1.95.25-3.9-.26-5.84l-.7-.5zm-5.76-4.9c0 1.05-.34 2.71.94 3.18a8 8 0 0 0 3.82.44c.7-.48.6-1.75.5-2.49a.96.96 0 0 0-.54-.77c-1.15-.56-2.4-.86-3.66-.96-.42 0-.79.1-1.06.6zm-7.92.96c-.23.35-.2.73-.2 1.1-.03.55.05 1.52.56 1.84a7.68 7.68 0 0 0 3.83-.64c.43-.22.7-.57.78-1.05.1-.58.04-1.17.03-1.75-.01-.78-.78-.97-1.43-.84-1.17.26-2.65.56-3.57 1.34zM23.65 709.7c.64.82 1.42 1.52 1.62 2.59.52.2 1.03.37 1.43.76l1.07 1c.26.37.27.7.32 1.03.13.95.3 1.9.28 2.85a8.05 8.05 0 0 1-2.85 2.58c-.68.52-1.47.77-2.25 1.05l-2.47.9c-.86.33-1.79.36-2.68.54-1.08.28-2.16.41-3.28.38-.29-.01-.58.04-.87.06-.58.01-1.17.12-1.74 0-1.3-.31-2.64-.3-3.95-.55-.58-.14-1.14-.4-1.7-.59a8.48 8.48 0 0 1-2.46-1.52c-.3-1.24-.39-2.53-.42-3.84.58-.9 1.05-1.9 2.12-2.38.08-.48.1-.96.3-1.4.18-.44.38-.88.56-1.27-.08-.43-.17-.81-.23-1.2-.1-.82.07-1.7.62-2.35 1.34-1.56 3.34-2.4 5.32-2.77.78-.13 1.17-.04 1.86.4l.72-.12c1.04-1.3 3.57-.71 4.98-.4 2.21.54 3.86 1.8 3.7 4.25zm-15.82 4.07c-.45 1.5-.06 5.02.61 6.05 4.15 1.14 10.9.34 14.82-1.42.25-.12.5-.22.7-.48.13-1.96-.1-3.9-.79-5.74-.26-.22-.5-.39-.79-.45-.45.27-.91.52-1.42.64-.88.17-1.77.27-2.67.14-1.05-.19-2.46-.3-2.96-1.4-.03-.07-.09-.13-.15-.22-.22.87-.43 1.15-1.15 1.59a8.42 8.42 0 0 1-3.9 1.16c-.65.06-1.23-.15-1.85-.3l-.45.43zm8.43-6.51c-.01.58.11 1.19.18 1.77.08.59.38 1.14.97 1.34.82.32 3.3.51 4.04.05.5-.7.31-1.75.12-2.53a.9.9 0 0 0-.51-.6 10.06 10.06 0 0 0-3.72-.67c-.44 0-.8.15-1.08.64zm-7.27 4.61c1.18.1 2.66-.31 3.72-.85 1.22-.58.83-1.93.68-3-.1-.79-.91-.85-1.54-.67-.92.26-2.93.94-3.45 1.73-.22.99-.02 1.99.6 2.8zM3.77 654c-.1-.98.02-2.69.28-3.79.4-.5.85-.99 1.37-1.4.3-.24.68-.4 1.04-.61.16-.39.3-.83.53-1.22.2-.38.5-.72.76-1.1-.27-2.74.95-3.94 3.44-4.77 1.28-.4 4.1-1.09 5.03.16.26.09.51.01.76.04 1.44-1.21 4.63.19 6.04 1.04 1.64 1.02 2.26 2.25 1.85 4.17.47.94 1.11 1.82 1.14 2.93.49.31 1 .55 1.34 1.02l.98 1.3c.07.75-.06 3.03-.22 3.9-.9.9-2 1.6-3.24 1.98-1.52.72-3.25.64-4.87 1.02-1.34.22-2.7.07-4.05.1-.65 0-1.28-.09-1.92-.2-.78-.14-1.57-.18-2.35-.33-.2-.04-.4-.1-.6-.19-1.08-.48-2.25-.73-3.36-1.13-.82-.35-1.6-.8-2.34-1.31a9.64 9.64 0 0 1-1.6-1.6zm4.2-.14c.86.49 1.85.72 2.79 1 2.12.5 4.3.82 6.48.83 2.1-.03 4.31-.03 6.3-.78.5-1.17.76-4.32.37-5.92a2.05 2.05 0 0 0-.7-.58c-.7.28-1.41.5-2.18.39a7.92 7.92 0 0 1-3.75-1.04c-.5-.27-.87-.65-1-1.22 0-.06-.05-.11-.08-.18-.04.06-.09.1-.1.16-.27.72-.96 1.03-1.63 1.24a8.48 8.48 0 0 1-3.76.34c-.6-.05-1.1-.33-1.65-.61l-.5.33c-.64 1.15-1.04 4.3-.6 6.04zm14.53-6.9c.61-.6.64-1.57.62-2.37 0-.34-.15-.6-.43-.78-1-.65-2.15-1-3.3-1.27-.54-.12-1.36-.05-1.48.63-.1.64-.2 1.28-.15 1.92.03.81.74 1.23 1.43 1.46.73.24 2.64.77 3.3.41zm-7.52-4.13c-.33-.73-1.1-.6-1.74-.55-1 .17-2.01.33-2.94.78a.83.83 0 0 0-.5.6c-.18.8-.35 1.87.25 2.56 1.21.24 2.53.11 3.71-.24.58-.2.96-.6 1.06-1.21.1-.65.19-1.32.16-1.94zM28.15 591.42a8.1 8.1 0 0 1-3.17 1.97c-.83.43-1.74.54-2.65.68-1.41.2-2.82.64-4.26.5a6.84 6.84 0 0 0-1.25 0c-.96.07-1.91-.04-2.86-.21-.8-.12-1.6-.22-2.4-.35a1.48 1.48 0 0 1-.42-.12c-1.1-.5-2.29-.75-3.43-1.15-.13-.05-.27-.1-.4-.17-.6-.34-1.2-.67-1.77-1.04-.71-.45-1.25-1.09-1.8-1.73-.05-1.26.06-2.5.28-3.74a6.65 6.65 0 0 1 2.44-2.05c.16-.37.3-.8.52-1.2.22-.4.52-.75.78-1.14-.3-2.59.87-3.86 3.23-4.69 1.37-.42 4.19-1.2 5.23.1h.8c1.48-1.1 4.32.15 5.78.94 1.75 1.02 2.52 2.29 2.07 4.33.5.94 1.1 1.8 1.15 2.9.5.3 1 .55 1.34 1.01l1.01 1.35c0 1.3-.08 2.55-.22 3.8zm-4.86-7.21c-.56.2-1 .37-1.56.42-.86.04-1.71-.03-2.54-.27-1.03-.34-2.57-.74-2.86-1.94-.02-.07-.07-.13-.14-.25-.17.45-.4.8-.77 1.02a7.68 7.68 0 0 1-4.67.75c-.62-.06-1.14-.35-1.7-.6l-.48.32c-.65 1.12-1.04 4.46-.57 5.99.15.17.36.27.57.35 2.48.97 5.17 1.37 7.81 1.5 2.17 0 4.35.04 6.46-.52.26-.06.52-.12.74-.3.51-.98.74-4.75.31-5.96l-.6-.51zm-.18-4.05c-.11-.3-.28-.46-.48-.59-.2-.12-.38-.25-.6-.34-.77-.33-2.8-1.18-3.57-.85-.29.11-.5.32-.54.63-.1.61-.19 1.23-.14 1.86.02.86.7 1.26 1.44 1.51.65.23 1.32.38 2 .47.4.05.83.08 1.25-.02.75-.68.65-1.76.64-2.67zm-13.04 1.9a7.7 7.7 0 0 0 3.78-.27c.58-.2.92-.63 1-1.24.07-.62.17-1.31.13-1.93-.33-.58-.9-.62-1.46-.56-1.04.19-2.9.35-3.62 1.17-.27.82-.49 2.08.17 2.84zM4.3 754.04c-.27-1.27-.5-2.5-.62-3.76.5-1 1-1.98 2-2.58.06-.47 0-.95.18-1.4l.5-1.36c-.47-1.08-.61-2.47.12-3.46.22-.3.46-.6.74-.85 1.24-1.14 4.63-3.14 6.23-2.03l.77-.15c.87-1.44 4.51-.95 5.9-.48 2.04.68 2.85 1.66 3.04 3.81l1.03 1.13c.34.37.54.83.73 1.32 1.11.19 1.86.97 2.7 1.68.4 1.18.58 2.43.74 3.68-1.53 2.66-4 3.65-6.67 4.78-.4.18-.8.37-1.21.5-.48.16-.97.24-1.46.36-1.1.3-2.2.64-3.35.7-.74.06-1.48.16-2.23.26-.37.04-.74.01-1.11-.03-.64-.08-1.29-.1-1.93-.15-.66-.06-1.34-.05-2-.15l-1.73-.51c-.86-.27-1.6-.78-2.36-1.31zm10.48-10.46-.06.22c-.1.73-.68 1.19-1.26 1.55-1.48.87-3.32 1.54-5.04 1.1-.12-.03-.24-.04-.38-.06l-.43.47c-.31 1.35.18 4.64 1 5.98.6.22 1.29.22 1.93.28 3.35.15 6.7-.43 9.89-1.43.8-.25 3.16-1.1 3.56-1.77 0-1.98-.4-3.9-1.2-5.7a3.22 3.22 0 0 0-.76-.37l-.28.17c-.52.41-1.12.63-1.77.74a8.16 8.16 0 0 1-3.77-.11 1.91 1.91 0 0 1-1.3-.97c-.02-.03-.07-.05-.13-.1zm6.18-.92c.52-.82.16-1.71-.03-2.56a.8.8 0 0 0-.53-.58 9.96 9.96 0 0 0-3.38-.48c-.56.04-1.14.09-1.4.71 0 .55.15 1.18.26 1.73.22 1.09.85 1.44 1.91 1.52 1.07-.06 2.16.16 3.17-.34zm-12.3 2.2c.93.2 3.04-.6 3.81-1.16.46-.33.68-.8.61-1.35a14.2 14.2 0 0 0-.29-1.6c-.2-.87-1.12-.8-1.8-.5-1.09.5-2.29.86-3.1 1.81-.22.77.12 2.31.78 2.8zM24.39 549.71l.84 1.28c.3.42.4.9.52 1.35l.07.07c.97.37 1.57 1.15 2.2 1.9.13.14.2.32.21.5.07 1.16.26 2.34.05 3.49-2.11 2.45-4.57 2.85-7.48 3.67-1.12.38-2.3.32-3.45.49-1.68.2-3.37.02-5.05-.04-.32-.02-.61-.12-.92-.2-1.12-.29-2.27-.5-3.4-.76-.79-.27-1.53-.68-2.27-1.04-.69-.36-1.24-.91-1.83-1.46a27.5 27.5 0 0 1-.1-3.78c.32-.48.68-.91 1.04-1.34.37-.45.87-.7 1.39-.98.05-.97.6-1.75 1.05-2.55-.24-1.12-.25-2.38.53-3.3 1.12-1.48 5.94-3.38 7.46-1.94h.78c1.32-1.37 4.79-.19 6.25.58 1.73.96 2.23 2.13 2.1 4.06zm-.48 8.23c.39-1.91.22-4.77-.35-5.95-.19-.15-.36-.34-.65-.39a5.2 5.2 0 0 1-1.43.52c-1.6.18-3.23 0-4.67-.76-.4-.22-.7-.52-.85-.96-.03-.08-.04-.2-.17-.2-.24.75-.46 1.02-1.15 1.39a8.35 8.35 0 0 1-4.36.83c-.57-.03-1.03-.28-1.56-.46l-.5.41c-.54 1.6-.5 4.53.07 6.02.21.18.47.25.73.32 1.72.51 3.52.65 5.3.74a25.1 25.1 0 0 0 8.75-1.08c.29-.1.59-.2.84-.43zM22 550.3c.3-.32.4-.46.46-.77.14-.74.11-1.48-.13-2.16-.88-.88-2.58-1.08-3.76-1.31-.6-.1-1.42.17-1.39.88.02.58.05 1.16.11 1.74.06.56.37.96.9 1.18.2.1.42.19.64.23 1.05.2 2.09.43 3.17.21zm-12.83-2.5c-.21.78-.22 2.3.53 2.83 1.24.1 2.58-.1 3.73-.6.55-.23.86-.65.9-1.24.06-.68.04-1.37-.1-2-.3-.5-.75-.59-1.22-.51-1.04.17-3.23.65-3.84 1.52zM6.8 615.52c.16-.46.28-.89.56-1.23l.83-1.02c-.3-2.63 1.47-4.07 3.86-4.6 1.36-.3 3.98-.8 4.89.54h.76s.06 0 .11-.04c.49-.3 1.02-.34 1.57-.27 1.42.23 2.77.8 3.98 1.58 1.7 1.13 2.41 2.33 1.87 4.39.4.99.99 1.93.92 3.06.16.1.29.21.43.29.89.49 1.25 1.42 1.82 2.22-.05 1.26-.27 2.51-.42 3.78a7.6 7.6 0 0 1-3.47 1.88c-.64.3-1.33.34-2.01.41-1.06.12-2.11.22-3.17.32-.73.06-1.45-.07-2.18-.14a13.08 13.08 0 0 1-3.58-.42c-1.07-.25-2.2-.3-3.18-.86-.48-.27-1.03-.43-1.56-.64a9.84 9.84 0 0 1-5.09-3.7c-.04-1.26.21-2.5.49-3.7.8-.74 1.47-1.56 2.56-1.85zm16.58 7.71c.67-1.93.88-3.89.72-5.87-.24-.24-.4-.49-.7-.6-.5.15-1.05.3-1.57.3a7.93 7.93 0 0 1-4.6-1.53c-.34-.27-.57-.6-.63-1.04 0-.07.03-.17-.12-.2-.37.76-.88 1.03-1.67 1.24-1.67.42-3.61.52-5.14-.4-.1-.07-.22-.1-.35-.17l-.53.34a11.57 11.57 0 0 0-.98 5.8c.46.64 2.5 1.27 3.3 1.5 3.45.95 7.06 1.38 10.63 1 .53-.07 1.07-.11 1.64-.37zm-.71-7.89c.8-.6.87-1.6.92-2.5a.8.8 0 0 0-.35-.7c-.27-.19-.54-.38-.84-.54-.72-.38-1.47-.67-2.25-.91-.74-.25-1.57-.2-1.75.69-.26 1.3-.68 2.54.84 3.17 1.08.48 2.25.83 3.43.8zm-12.15-4.5c-.37.8-.67 2.1-.15 2.86 1.12.42 2.45.28 3.6.06 1.46-.24 1.4-1.95 1.58-3.09-.16-.55-.67-.68-1.16-.68-1.05.02-3.06.16-3.87.85zM13.65 771.35l.83-.17c1.3-1.59 6.05-.64 7.47.54.95.68 1.25 1.88 1.3 2.99.64.8 1.43 1.48 1.68 2.52.36.14.73.24 1.05.42.64.38 1.18.92 1.73 1.42.3 1.25.5 2.5.62 3.75a7.93 7.93 0 0 1-2.71 2.66c-.66.54-1.45.82-2.22 1.14l-2.42 1c-.62.27-1.27.38-1.93.5-1.28.29-2.54.66-3.86.65-1.1.03-2.2.33-3.3.07-.58-.12-1.19-.17-1.79-.2a9.74 9.74 0 0 1-5.85-2.15c-.3-1.2-.47-2.45-.54-3.68a5.92 5.92 0 0 1 2-2.6c.04-.42.05-.88.22-1.31l.5-1.25c-.65-1.87-.34-3.41 1.26-4.65 1.33-1 4.4-2.72 5.96-1.65zm-5.22 14.17c.21.1.45.18.7.22.88.15 1.77.25 2.66.23 1.54-.05 3.09-.08 4.6-.32 1.85-.3 6.13-1.28 7.42-2.53.23-1.24-.35-4.76-1.01-5.86-.21-.15-.44-.3-.72-.36-.52.34-1.04.7-1.67.8-1.46.33-3.01.31-4.43-.2-.44-.16-.8-.43-1.01-.87-.04-.08-.05-.2-.2-.19-.03 1.72-3.14 2.69-4.56 2.84a5.14 5.14 0 0 1-2.17-.22l-.38.41c-.4 1.35 0 4.76.77 6.05zm7.33-12.8c.02.72.12 1.5.35 2.22.23.77 1.06.99 1.76 1.05.71.02 1.42.01 2.13 0 .35-.02.7-.1 1-.27.58-.8.3-1.86.05-2.73a.75.75 0 0 0-.45-.48c-1.06-.46-2.23-.5-3.37-.58-.6.01-1.24.1-1.47.8zm-2.9.51c-.48-.62-1.12-.48-1.72-.26-1.1.49-2.34.83-3.15 1.8-.03 1.04-.03 2.04.74 2.82 1 .16 2.73-.47 3.6-.97 1.27-.66.7-2.28.52-3.39zM14.25 513.14l.9-.05c1.14-1.38 4.32-.6 5.8-.1 1.88.69 2.93 2.06 2.86 4.09.59.8 1.35 1.42 1.54 2.46 1.06.31 1.75 1.1 2.5 1.86.37 1.18.49 2.42.52 3.65-1.22 1.86-3.1 3-5.15 3.7-.74.27-1.47.58-2.2.87-.92.38-1.91.41-2.86.63-1.06.27-2.13.42-3.22.39-.74.01-1.49.1-2.24.11-.16.01-.34 0-.5-.04-1.27-.32-2.6-.31-3.88-.55-.57-.11-1.1-.36-1.66-.54a8.57 8.57 0 0 1-2.53-1.55c-.19-1.25-.3-2.53-.43-3.82.58-1.02 1.14-1.97 2.24-2.49.1-.51.17-1.01.32-1.48.14-.46.35-.89.55-1.36-.54-1.9-.23-3.1 1.4-4.3 1.38-.96 4.45-2.46 6.04-1.48zm9.86 12.17c.32-1.28-.1-4.24-.84-5.88-.19-.18-.4-.32-.67-.38-1.71 1.13-4.04 1.04-5.91.36-.48-.2-.87-.48-1.08-.98-.02-.05-.07-.09-.13-.16-.04.08-.07.13-.08.18-.06.7-.6 1.13-1.15 1.45a8.38 8.38 0 0 1-3.99 1.11c-.62.03-1.18-.18-1.77-.35l-.47.42c-.4 1.29-.05 4.86.69 6.1 1.11.38 2.34.47 3.52.53 2.81.09 5.63-.2 8.34-.93.94-.23 1.83-.56 2.7-.96.3-.13.62-.26.84-.51zm-14.88-6.1c1.1.24 2.88-.32 3.85-.83 1.26-.67.68-1.97.52-3.1-.15-.77-1.11-.8-1.72-.59-1.11.37-2.62.82-3.38 1.75-.04 1.02.03 1.97.73 2.78zm12.36-4.3c-.77-.81-2.81-.92-3.89-1-.5-.02-.97.1-1.22.64.02.62.16 1.27.28 1.92.13.74.58 1.17 1.3 1.36a7.7 7.7 0 0 0 3.52.01c.68-.72.3-2.14 0-2.92zM22 905.65l.16.35c.82.47 1.69 1.1 2 2.03.1.43.3.82.48 1.21.44.92.65 1.9.86 2.89.17.08.33.17.5.24 1.02.41 1.49 1.42 2.08 2.3a40.1 40.1 0 0 1-.24 3.81 7.5 7.5 0 0 1-2.52 1.84c-.19.1-.36.2-.5.37-.09.12-.24.2-.39.3-.95.55-1.97.98-3.01 1.34a14.57 14.57 0 0 1-15.28-2.93l-.07-.59c-.75-.67-1.5-1.26-2.04-2.13-.1-1.07.01-2.16.2-3.21.05-.3.17-.56.37-.78.65-.68 1.2-1.5 2.18-1.73l.49-.95c.3-2.22.61-4.02 2.96-4.79.2-.07.4-.14.6-.17a7.25 7.25 0 0 0 1.66-.54 9.84 9.84 0 0 1 9.52 1.14zM7.8 918.66c2.58 2.41 6.8 3.15 10.22 2.69 1.72-.24 3.5-.65 4.93-1.69.33-.99.42-2.03.48-3.07.07-1.05.11-2.12-.09-3.17 0-.03-.06-.05-.11-.1-.58.42-1.2.84-1.93.91-1.6.23-3.3.12-4.72-.74a1.99 1.99 0 0 1-.98-1.24c-.02-.1-.02-.22-.16-.27-.23.51-.5.95-1.01 1.2a5.8 5.8 0 0 1-3.53.5c-1.15-.2-1.76-.26-2.7-1-.54.96-.88 4.32-.4 5.98zm9.17-8.28c-.07 1.04.2 1.73 1.25 2.08 1.37.41 3.37.8 3.9-.97.3-.8.38-1.66.37-2.51a.84.84 0 0 0-.4-.74 7.7 7.7 0 0 0-3.64-1.1c-.8.02-1.23.7-1.28 1.43l-.2 1.8zm-2.6-2.7c-.3-.86-1-.9-1.72-.86-.87.07-1.75.15-2.56.51-.4.18-.62.47-.7.9-.1.57-.18 1.15-.17 1.73 0 1.01.25 1.96 1.38 2.12 1.2.17 3.05.16 3.4-1.3.22-1 .26-2.11.37-3.1zM28 1109.3a8.52 8.52 0 0 1-2.5 1.87l-.18.5c-6.06 4.21-12.9 4-18.78-.44l-.16-.57a8.61 8.61 0 0 1-2.38-2.02c-.05-1.26-.04-2.55.14-3.87.68-.75 1.26-1.79 2.33-2.05.1-.02.2-.07.29-.1.17-.28.22-.6.36-.88.27-.59.4-1.21.48-1.85.18-1.78 1.6-2.75 3.18-3.2a10.5 10.5 0 0 1 5.42-1.58c1.94.08 3.77.66 5.34 1.62l.18.3c1.35.46 2.64 1.48 2.78 2.98.05.36.16.68.29 1.01.26.68.48 1.37.72 2.06l.48.19c.94.36 1.51 1.37 2.07 2.12.11.89.08 2.98-.07 3.9zm-19.61-5.03c-.54 1.32-.62 4.16-.19 6.09a11.19 11.19 0 0 0 5.31 2.24c2.1.42 4.25.32 6.32-.2 1.19-.31 2.84-.9 3.72-1.75.48-1.78.52-4.92.08-6.1-.67.53-1.4.9-2.25.96-1.46.2-2.94.07-4.25-.64-1.2-.62-.9-1.52-1.22-1.46-.37 1.6-2.28 1.88-3.67 1.98-.63.02-1.25-.08-1.87-.18a3.98 3.98 0 0 1-1.98-.94zm9.08-3.35h.01c0 1.17-.2 2.4 1.18 2.83 1.28.38 3.35.7 3.84-.94a7 7 0 0 0 .2-2.72.84.84 0 0 0-.4-.66 6.95 6.95 0 0 0-3.52-.93c-1.42-.04-1.28 1.39-1.3 2.42zm-2.82-.27h-.02v-1.12c-.05-1.03-1.1-1.24-1.95-1.1-.83.13-3.08.32-3.17 1.39-.15.88-.17 1.79.05 2.66.37 1.66 2.45 1.46 3.72 1.13 1.45-.35 1.25-1.78 1.37-2.96zM4.32 819.46c-.28-1.26-.4-2.54-.34-3.82.57-.88 1-1.82 1.93-2.33.1-.45.17-.88.3-1.29.14-.41.34-.8.53-1.22-.36-1.21-.38-2.64.4-3.7.97-1.51 5.26-3.7 6.87-2.48l.98-.17c1.46-1.31 5.32-.35 6.81.66 1.18.7 1.5 1.96 1.54 3.25.61.87 1.32 1.7 1.57 2.8.1.03.17.07.24.1 1.09.23 1.71 1.13 2.48 1.86.23 1.28.34 2.58.47 3.92-1.68 2.65-4.69 3.48-7.46 4.52-.86.31-1.8.31-2.68.53-1.4.37-2.85.28-4.29.36-.7.04-1.4.02-2.1-.18-.65-.19-1.34-.28-2.02-.37a8.93 8.93 0 0 1-5.23-2.44zm10.61-9.52c-.27.94-.45 1.18-1.28 1.69-1.62.92-3.63 1.37-5.41.68a.9.9 0 0 0-.47.67c-.3 1.95-.16 4 .53 5.86.36.23.73.3 1.1.39 3.31.68 6.74.4 10.02-.37.98-.2 3.48-.95 4.1-1.66.17-1.52 0-3.1-.29-4.61-.1-.49-.17-.99-.42-1.42a1.87 1.87 0 0 0-.7-.4l-.5.3c-1.49.86-3.36.77-4.97.31-.9-.3-1.32-.51-1.71-1.44zm6.28-3.4c-.52-.75-2.77-1-3.66-1.05-.7-.07-1.53.15-1.51.98.01.64.07 1.29.16 1.93.09.61.49.99 1.07 1.18.9.24 3.08.51 3.86-.1.52-.95.35-1.98.08-2.94zm-12.26 4.33c1.2.13 2.35-.25 3.43-.75 1.35-.6.88-2.2.81-3.36-.05-.7-.85-.74-1.39-.6-.96.28-2.93.87-3.41 1.78-.08.98-.15 2 .56 2.93zM4.37 496.85c-.28-1.3-.52-2.56-.66-3.86.53-.88.9-1.94 1.86-2.44.13-.07.24-.16.37-.25.04-.5 0-1 .15-1.5.15-.47.28-.95.42-1.45-.3-.98-.5-2.15.13-3.06.98-1.65 5.01-3.86 6.88-3.04l1.08-.15c1.22-1.4 4.75-.77 6.3-.12 1.74.72 2.36 2.05 2.57 3.82.56.63 1.31 1.2 1.54 2.1.07.06.1.1.14.1.6.18 1.09.51 1.55.91.62.52.97.71 1.15 1.57.18.9.45 1.86.43 2.77-1.24 2.37-3.55 3.42-5.82 4.5-.96.5-1.95.95-3.02 1.13-.23.05-.46.08-.67.16-1.2.43-2.45.65-3.73.7-.98.09-1.91.36-2.91.15-.69-.13-1.41-.1-2.12-.15a9.59 9.59 0 0 1-4.48-1.16l-1.16-.73zm4.6-1.15c.37.18.69.22 1.08.27 2.5.28 5.04.05 7.51-.39 1.79-.4 5.55-1.4 6.73-2.76.05-2.01-.42-3.95-1.28-5.8l-.57-.29c-.58.38-1.11.76-1.8.89-1.32.34-2.65.3-3.95-.07a1.94 1.94 0 0 1-1.27-.93c-.03-.05-.08-.08-.16-.15-.1.97-.52 1.32-1.3 1.82-1.54.93-3.5 1.55-5.29 1-.1-.03-.2-.02-.3-.03-.21.16-.33.3-.49.53-.1 2.04.28 4 1.09 5.91zm.28-7.87c1.2.04 2.66-.48 3.69-1.1 1.22-.74.5-2.12.22-3.18-.18-.7-.97-.76-1.56-.58-1 .34-2.9 1.07-3.45 1.97-.08 1.22.33 2.31 1.1 2.9zm11.73-5.28c-.94-.6-1.97-.6-3.02-.67-.71 0-1.6-.16-1.96.66.03.5.2 1.04.31 1.54.18.79.46 1.51 1.32 1.73a7 7 0 0 0 3.62-.14c.66-.72.15-2.39-.27-3.12zM25.14 111.96l.45.15c.96.2 1.5 1.1 2.16 1.73a.9.9 0 0 1 .24.56c.06 1.16.24 2.3.21 3.46a8.43 8.43 0 0 1-2.35 2.13c-.07.17-.09.24-.13.4a15.87 15.87 0 0 1-18.88 1.24l-.16-.39a13.2 13.2 0 0 1-2.53-1.75c-.2-.68-.34-2.74-.26-3.9.48-.72 1.05-1.76 1.88-2.15l.53-.25c.31-.89.63-1.8.6-2.77-.02-.3.06-.62.13-.92.29-1.26 1.38-2.1 2.53-2.56.26-.12.53-.23.78-.39a11.6 11.6 0 0 1 5.11-1.67c1.78.03 3.54.34 5.13 1.15.2.18.45.22.68.31 1.24.42 2.36 1.25 2.6 2.6.09.42.24.8.44 1.17.32.61.57 1.2.84 1.85zm-9.55.91-.07.14c-.16 1.2-1.38 1.67-2.4 2-.94.31-1.92.28-2.9.22a3.83 3.83 0 0 1-1.88-.6c-.08-.05-.18-.07-.27-.1-.38 1.46-.23 4.71.4 6.08 2.88 1.93 7.43 2.12 10.72 1.25 1.68-.48 3.4-1.08 4.66-2.33a15.5 15.5 0 0 0-.34-5.86c-.02-.1-.03-.21-.2-.23-.96.94-1.95 1.1-3.22 1.28a6.24 6.24 0 0 1-3.18-.43c-.57-.23-.99-.6-1.19-1.2-.02-.07-.08-.13-.13-.22zm6.38-4.03c-.55-.74-1.84-.83-2.68-.94-1.25-.2-2.64-.1-2.48 1.54.04.72.07 1.45.19 2.17.1.73.53 1.2 1.25 1.38.81.22 1.65.23 2.47.1 1.9-.31 1.58-2.89 1.25-4.25zm-13.07.79c-.27.79-.08 2.3.23 3.08.53 1.6 3.07 1.05 4.2.43.7-.36.72-1.23.72-1.93-.02-.7-.1-1.55-.18-2.21-.43-.85-1.2-.82-1.96-.67-.44.1-.9.2-1.33.34-.37.12-.73.29-1.09.45-.23.1-.43.25-.59.5zM28 1137.2c.07 1.32.1 2.59 0 3.84a8.16 8.16 0 0 1-2.46 1.97l-.24.4a15.88 15.88 0 0 1-18.61-.18l-.22-.42a8.25 8.25 0 0 1-2.35-1.93c-.15-.7-.13-2.68.04-3.92.38-.53.8-1.07 1.3-1.55.33-.36.79-.51 1.25-.68.23-.59.46-1.16.67-1.75.13-.54.12-1.12.24-1.66.25-1.44 1.55-2.43 2.9-2.8.54-.16 1.05-.37 1.56-.6a9.86 9.86 0 0 1 8.61.31c.74.4 1.55.62 2.23 1.1 1.7 1.2 1.17 2.2 1.84 3.75.25.58.44 1.21.67 1.8.07.04.12.08.18.1 1.14.3 1.69 1.36 2.39 2.21zm-12.06-2.37c-.25.79-.55 1.28-1.32 1.61-1.29.6-2.7.7-4.09.43-.69-.1-1.34-.3-1.89-.74-.06-.05-.14-.07-.2-.1-.57 1.18-.62 4.76-.1 6.22 1.85 1.52 4.48 2 6.83 2.23 2.69.18 6.25-.45 8.4-2.15.4-1.36.52-4.43.01-6.25-.21 0-.31.16-.45.25-.33.22-.68.42-1.06.5-1.68.4-3.5.4-5.04-.47-.65-.36-.87-.82-1.09-1.53zm6.5-3.61c-.95-.87-2.28-.97-3.48-1.17-.77-.11-1.53.31-1.54 1.14-.04.8-.05 1.62-.02 2.43.03.8.46 1.36 1.25 1.6.72.23 1.46.31 2.21.28.82-.04 1.3-.42 1.55-1.2a5.7 5.7 0 0 0 .04-3.08zm-7.92 1.18h.05c-.02-.46-.02-.92-.06-1.37-.03-.44-.3-.72-.7-.88a1.8 1.8 0 0 0-.86-.09c-.99.11-1.98.28-2.88.72-.43.19-.64.53-.66.98a20.9 20.9 0 0 0-.02 1.62c.05.7.27 1.6 1 1.87.86.3 1.85.15 2.71-.05.59-.16 1.15-.5 1.3-1.13.14-.55.13-1.11.12-1.67zM6.23 457.41c.03-.98.44-1.85.8-2.75-.2-1.23-.27-2.5.72-3.43a9 9 0 0 1 4.6-2.24 3.3 3.3 0 0 1 2.1.1l1.34-.08c1.36-.94 3.34-.4 4.85-.02 2.24.68 3.56 2.11 3.49 4.53.52.74 1.19 1.38 1.36 2.3 1.03.4 1.45 1 2.2 1.73.14.13.25.29.29.47.23 1.15.44 2.32.25 3.5-1.46 2.23-4.08 3.03-6.45 3.97-.84.37-1.71.62-2.64.7-1.53.27-3.06.6-4.64.47-.64 0-1.28.07-1.93.07-.16 0-.34 0-.5-.05-2.81-.68-5.8-.67-7.97-2.94-.18-1.24-.23-2.53-.33-3.8.54-.85 1.03-1.8 1.94-2.26l.52-.27zm17.96 4.45c.35-2.28-.33-5.43-.78-6.1l-.4-.23a6.7 6.7 0 0 1-5.97.31c-.66-.25-.87-.6-1.2-1.2-.08.05-.07.1-.09.17-.12.9-.95 1.34-1.69 1.68a6.81 6.81 0 0 1-5.36.26c-.24.12-.4.27-.51.47-.33 1.85-.06 4.7.6 6.07 4.08 1.48 11.73.96 15.4-1.43zm-14.44-6.38a7.47 7.47 0 0 0 3.8-.8c.49-.3.73-.73.72-1.3a9.5 9.5 0 0 0-.29-1.97c-.09-.38-.36-.58-.74-.67-.38-.1-.75-.03-1.1.08-.84.27-2.83.8-3.24 1.6-.18 1.23.12 2.37.85 3.06zm7.12-4.61c.33 1.69-.07 3.28 2.12 3.58.96.08 1.91.26 2.87-.05.61-.72.4-1.82.24-2.67-.1-.45-.33-.76-.76-.91-.7-.3-1.43-.45-2.17-.54-.83-.09-1.82-.42-2.3.59zM6.34 847.07c.02-.81.43-1.5.78-2.21-.29-1.54-.15-3.3 1.06-4.42 1.13-1.18 4.72-2.8 6.2-1.73l1.29-.17c1.48-.92 4.12-.12 5.6.59 1.6.83 2.16 1.9 2.14 3.67.56.95 1.18 1.92 1.4 3.1.17.07.34.15.5.2.96.3 1.52 1.3 2.15 1.95.14.85.3 3.55.26 4.13-1.73 2.51-4.63 3.16-7.35 4.12-.31.1-.64.17-.97.2-.77.07-1.53.18-2.29.3-1.16.2-2.32.06-3.48.03a6.2 6.2 0 0 1-2.45-.34c-2.83-.87-4.5-.87-6.68-3.24a12.72 12.72 0 0 1-.14-3.87c.56-.84 1.03-1.76 1.98-2.3zm15.85-1.53c-.2.1-.35.18-.49.27-1.1.7-2.5.7-3.74.53-1.04-.23-2.37-.52-2.76-1.65-.03-.1-.08-.18-.14-.33-.19.98-.74 1.44-1.6 1.84-1.55.75-3.41.98-5 .21-.16.09-.29.2-.33.36-.2.58-.2 1.19-.29 1.79-.14 1.23-.01 2.45.2 3.66.05.3.08.62.28.87 1.68.92 3.65 1.04 5.52 1.13 1.59.09 3.16-.08 4.72-.36 1.32-.22 2.59-.59 3.81-1.13.27-.12.53-.24.73-.44.34-1.32.18-4.68-.31-6.3l-.6-.45zm-1.22-1.13c.73-.7.6-1.93.54-2.85-.04-.42-.25-.7-.6-.88a9.63 9.63 0 0 0-3.13-.79c-.64-.08-1.37.2-1.41.95a15 15 0 0 0 .01 2.12c.05.59.37 1 .93 1.21.96.38 2.68.59 3.66.24zm-11.54.67a6.67 6.67 0 0 0 3.03-.56c.52-.22.96-.64 1.04-1.23.14-.76.06-1.54.06-2.3 0-.89-.99-.82-1.61-.66-.88.3-2.62.72-3.05 1.58-.18.83-.28 2.64.53 3.17zM25.3 79.28c1.1.4 1.23.5 1.98 1.38.81.96.69.69.76 1.83.04.93.11 1.87.07 2.8-.59.67-1.18 1.31-1.93 1.78-.25.15-.5.3-.67.54a17.54 17.54 0 0 1-6.99 3.03c-3.79.74-7.6-.13-10.96-1.94-.34-.2-.7-.35-.96-.68-.07-.1-.2-.15-.3-.2a8.57 8.57 0 0 1-2.15-1.67c-.18-.66-.24-2.65-.13-3.9.57-.8 1.13-1.82 2.11-2.18.1-.03.2-.08.3-.13.21-.58.43-1.16.63-1.75.06-.15.05-.33.06-.5.07-1.31.15-2.41 1.25-3.32a5 5 0 0 1 1.8-.98c.73-.24 1.45-.48 2.16-.78 1.1-.45 2.28-.68 3.46-.74 1.36.06 2.7.27 3.96.78.33.13.67.23 1 .34.8.26 1.6.5 2.23 1.09 1.27 1.06.89 2.08 1.5 3.34.3.6.55 1.25.83 1.86zm-16.89 7.9c2.75 1.9 7.13 2.17 10.33 1.55 1.76-.41 3.63-.91 5-2.16a15.7 15.7 0 0 0-.17-5.88c-.03-.13-.02-.3-.2-.37-.05.03-.1.05-.15.1-.57.48-1.24.75-1.98.86-1.5.3-2.79.28-4.2-.35a1.9 1.9 0 0 1-1.2-1.28c-.02-.08-.05-.15-.16-.13-.3 1.42-1.7 1.82-2.95 2.12-.96.21-1.9.07-2.85-.06-.59-.07-1.09-.37-1.6-.65-.52 1-.5 4.77.13 6.26zm8.62-10.7c.04.53.06 1.07.11 1.6.12 1.57 1.62 1.66 2.86 1.77 1 .1 1.96-.17 2.2-1.25.23-.86.2-1.73.04-2.6a.85.85 0 0 0-.49-.67c-.38-.17-.76-.36-1.16-.45-.6-.15-1.22-.24-1.84-.33-.2-.03-.41-.02-.62 0-1.07.16-1.15 1.01-1.1 1.93zm-7.88-.3a5.14 5.14 0 0 0-.08 1.88c.1.93.43 2.04 1.54 2.1.95.02 1.93-.1 2.79-.53.65-.3.83-1.03.84-1.69 0-.56-.02-1.12-.04-1.68 0-1.06-.49-1.53-1.54-1.44-.92.12-3.03.53-3.5 1.37zM6.63 1166.84c.22-.57.41-1.07.62-1.57.1-.22.14-.43.15-.66.02-2.6 1.25-3.84 3.7-4.47.58-.14 1.16-.3 1.73-.52a9.64 9.64 0 0 1 7 .21c1.05.4 2.19.61 3.09 1.3 1.13.82 1.35 1.84 1.49 3.15l1.04 2.53c.01.01.06.06.12.07 1.02.27 1.57 1.18 2.2 1.95.13.17.21.36.22.57.05 1.17.07 2.33 0 3.52-2.77 3.08-7.87 5.2-12 5.16a16.71 16.71 0 0 1-9.4-3.1l-.37-.23a8.57 8.57 0 0 1-2.1-1.8c-.12-1.25-.05-2.52 0-3.83.4-.57.85-1.15 1.37-1.66.3-.32.74-.47 1.14-.62zm1.7 7.25c2.22 1.62 5.08 2.03 7.75 2.11 2.5-.09 5.53-.59 7.53-2.18.4-1.79.32-3.6.12-5.43-.04-.31-.07-.62-.26-.92-.44.26-.82.58-1.32.7a6.83 6.83 0 0 1-5.1-.37 1.98 1.98 0 0 1-1.05-1.26c-.02-.06.02-.17-.1-.18a.29.29 0 0 0-.1.16c-.15.67-.6 1.08-1.19 1.36a6.55 6.55 0 0 1-4.14.47c-.67-.1-1.3-.3-1.85-.7l-.2-.08c-.3.64-.31 1.34-.37 2.01a12.6 12.6 0 0 0 .29 4.31zm8.95-10.06c.03.4.05.9.1 1.4.17 1.57 2.4 1.67 3.63 1.63.6-.04 1.07-.35 1.26-.95.3-.8.3-1.63.25-2.46.01-.76-.53-1.14-1.16-1.37a8.8 8.8 0 0 0-2.93-.55c-1.25.08-1.1 1.31-1.15 2.3zm-2.8-.06c0-.37.01-.75-.01-1.12-.19-1.71-2.34-.9-3.43-.69-.61.18-1.65.51-1.66 1.28-.02 1.26-.3 3.48 1.44 3.62 1.37.04 3.52-.08 3.64-1.84.04-.42.02-.83.03-1.25zM3.89 430.29l.19-3.83c.73-.98 1.48-1.85 2.68-2.18.3-.87.67-1.69 1.12-2.5.07-1.38.13-2.57 1.35-3.44 1.44-1.1 4.61-1.87 6.34-1.29.78-.02 1.34 0 2.08.14 1.7-.56 4.65.54 6 1.65 1.3.98 1.45 2.5 1.36 4.02.41.74.86 1.47 1.02 2.33.97.45 1.47 1.33 2.05 2.13.35.58.16 3.1 0 3.8a7.47 7.47 0 0 1-3.42 2.26c-1.26.37-2.5.78-3.79 1.04-.52.23-1.1.29-1.65.27-1.68 0-3.37.22-5.04-.05-.88-.15-1.78-.2-2.66-.33-.2-.03-.4-.07-.58-.22-.89-.37-1.85-.63-2.76-.97a8.94 8.94 0 0 1-4.3-2.83zm4.59.35c.14.18.35.29.55.38 2.43 1.1 5.08 1.5 7.72 1.6 1.85.05 5.74-.27 7.18-1.4.53-1.87.48-3.87.18-5.77-.05-.27-.17-.47-.47-.57-.51.2-1.1.43-1.64.5a7.02 7.02 0 0 1-4.34-.86 1.87 1.87 0 0 1-.97-1.17c-.02-.08-.02-.2-.17-.22-.38 1.74-3.32 2.04-4.8 1.92a6.24 6.24 0 0 1-2.55-.84l-.38.22c-.6 1.34-.74 4.93-.31 6.21zm2.1-7.45c.96.26 2.28.14 3.49-.2 1.5-.39 1.13-2.09 1.15-3.27-.05-.96-1-1.15-1.72-1.03-.89.2-3.43.4-3.55 1.5-.1.95-.23 2.35.64 3zm7.55-3.74v2.23c.02.72.39 1.22 1.04 1.5.78.35 2.48.72 3.3.51.92-.58.86-2.42.63-3.3-.56-.93-2.82-1.42-3.85-1.57-.45-.07-.86.1-1.12.63zM4.1 49.33c.7-.8 1.19-1.8 2.25-2.14.08-.02.15-.07.2-.1l.8-2.08c-.02-1.1.07-2.42.9-3.25 1.19-1.33 3-1.54 4.62-2 .96-.31 1.94-.48 2.94-.55 1.14.01 2.28.21 3.37.56.91.3 1.88.42 2.74.84 1.25.56 2.23 1.6 2.33 3 .12 1.2.78 2.17 1.19 3.28 1.18.41 1.51 1 2.27 1.92.18.21.28.45.29.74-.01 1.16.1 2.3 0 3.47-2.62 2.84-7.35 4.74-11.2 4.98-4.35.25-9.62-1.62-12.69-4.77a20.63 20.63 0 0 1 0-3.9zm19.51 4.7c.5-2.01.3-4.02 0-6.03-.03-.14-.05-.3-.26-.37-.52.34-1.09.66-1.72.76a6.53 6.53 0 0 1-4.56-.42 1.93 1.93 0 0 1-1.1-1.21c-.03-.1-.08-.17-.16-.32-.16.9-.72 1.4-1.5 1.72-1.88.83-4.12.7-5.9-.32-.3.48-.3 1.03-.35 1.56-.15 1.6-.15 3.2.28 4.79 3.97 2.68 11.34 2.58 15.27-.15zm-1.26-10.98c-.48-.96-2.9-1.3-3.9-1.32-.35-.02-.71.1-.94.38-.17.2-.26.42-.26.68.04.93-.1 1.88.13 2.8.13.62.7.97 1.28 1.13.73.2 1.47.28 2.22.25.57 0 1.08-.28 1.3-.81.4-.98.39-2.1.17-3.1zm-13.05.3a6.2 6.2 0 0 0 .2 2.79c.21.62.67.93 1.33.93.7 0 1.4-.08 2.1-.26 1.02-.27 1.48-.9 1.47-1.95l-.02-2c-.04-.76-.73-1.09-1.37-1.03-.96.11-3.38.5-3.7 1.51zM24.42 1196.35c.35.77.75 1.57 1 2.47.47.2.99.37 1.32.77.35.41.69.84 1.03 1.26.14.16.21.35.22.57a37.6 37.6 0 0 1 0 3.5c-2.36 2.73-7.2 4.58-10.75 4.86-4.42.4-10.08-1.57-13.12-4.82-.12-1.27-.05-2.55.01-3.82.38-.59.8-1.1 1.26-1.59.31-.35.79-.54 1.2-.7.25-.6.5-1.17.71-1.76.07-.18.1-.4.1-.6.04-.52.08-1.04.2-1.55.39-1.78 2.21-2.67 3.85-3.03 1.48-.34 2.94-.77 4.46-.89.29-.03.58.04.87.07 1.17.08 2.27.48 3.4.77.54.16 1.08.32 1.6.5 1.2.47 2.27 1.46 2.48 2.77l.16 1.22zm-16.06 9.62c1.79 1.23 4 1.68 6.12 1.9 1.63.22 3.29.04 4.9-.27 1.37-.3 3.2-.8 4.24-1.76.4-1.97.36-4.04-.02-6-.02-.12-.1-.23-.16-.36l-.35.18c-.8.57-1.78.66-2.73.76-1.4.14-3.98-.37-4.36-1.94-.02-.06.02-.18-.14-.16-.2.78-.6 1.2-1.32 1.53a6.66 6.66 0 0 1-5.84-.18c-.07-.06-.17-.08-.26-.12-.49 1.12-.65 4.78-.08 6.42zm8.92-10.12c.1 1.15-.08 2.22 1.37 2.65a6.5 6.5 0 0 0 2.58.27c.88-.08 1.14-.99 1.25-1.72.09-.6.07-1.2.01-1.8a1 1 0 0 0-.5-.82c-.85-.55-1.88-.65-2.85-.87-1.84-.26-1.85.74-1.86 2.29zm-2.8-.11c0-.36.02-.71 0-1.07-.04-.93-.92-1.18-1.71-1.04-.98.2-2 .32-2.86.83a.96.96 0 0 0-.53.8c-.09.93-.1 1.9.26 2.77.4 1.04 1.73.78 2.62.68 2.01-.29 2.29-1.07 2.22-2.97zM25.42 1230.82l.44.18c.87.32 1.32 1.18 1.91 1.84.14.17.21.36.22.57.05 1.17.07 2.33 0 3.52-2.81 3.2-9.18 5.25-13.4 4.75a19.07 19.07 0 0 1-7.04-2.21 9.65 9.65 0 0 1-3.44-2.54c-.11-1.24-.04-2.52.02-3.8.38-.58.8-1.1 1.26-1.58.34-.36.79-.53 1.25-.72.16-.6.4-1.18.67-1.74.09-.2.09-.4.1-.6.04-.5.09-1 .17-1.5.41-2.28 3-3.03 4.98-3.37.25-.05.5-.09.74-.16a13.6 13.6 0 0 1 2.58-.43c.26-.03.53.03.8.05 1.1.07 2.12.43 3.18.66 1.84.36 4.04 1.25 4.39 3.32.07.39.1.78.18 1.29.3.73.76 1.54.99 2.47zm-9.5-.58c-.04.03-.09.05-.1.08-.18.76-.7 1.2-1.4 1.48-1.16.51-2.38.7-3.65.47-.7-.1-1.39-.27-2-.65l-.3-.15c-.66 1.57-.6 4.73-.15 6.36 1.1.95 2.85 1.4 4.25 1.68 3.69.7 7.83.42 11.04-1.66.42-2.01.34-4.07 0-6.09-.03-.14-.08-.28-.27-.33-.53.32-1.07.62-1.7.72-1.58.34-2.9.29-4.38-.4a2.04 2.04 0 0 1-1.28-1.43c0-.03-.04-.05-.06-.08zm1.38-2.62h-.02l.08 1.24c.11 1.76 2.3 1.83 3.66 1.84 1.74-.06 1.56-2.4 1.45-3.64-.04-1.02-2.8-1.52-3.65-1.59-1.55-.14-1.55.94-1.52 2.15zm-2.82.05c0-.35.02-.7 0-1.06-.04-.97-.95-1.2-1.76-1.05-.98.2-2 .33-2.85.88a.94.94 0 0 0-.48.76c-.05.62-.11 1.25 0 1.87.13.68.34 1.49 1.15 1.6.8.11 1.62-.03 2.4-.2 1.56-.4 1.57-1.42 1.54-2.8zM24.43 12.35c.35.78.75 1.56.99 2.45l.42.2c.87.31 1.33 1.16 1.92 1.82.15.19.22.4.23.63.05 1.15.06 2.3 0 3.47a8.26 8.26 0 0 1-2.36 1.97c-3.19 1.82-6.8 3.09-10.52 2.84-3.52-.22-8.65-2.09-11-4.78-.11-1.28-.04-2.54.02-3.81.38-.58.8-1.12 1.29-1.61.33-.36.8-.52 1.23-.72.14-.58.38-1.11.62-1.64.1-.21.13-.43.15-.66.03-.5.07-1 .15-1.5.41-2.3 3.02-3.06 5.03-3.4.2-.03.41-.07.61-.12a8.88 8.88 0 0 1 4.13-.33c.6.08 1.19.23 1.77.4.95.22 1.9.45 2.8.82 1.16.47 2.15 1.45 2.35 2.72l.16 1.25zm-16.1 9.49c1.11.94 2.83 1.39 4.25 1.67 3.67.7 7.83.42 11.03-1.66.43-2.01.34-4.07 0-6.1-.03-.14-.08-.27-.25-.31a6.5 6.5 0 0 1-4.5.82c-1.06-.24-2.38-.57-2.8-1.7-.05-.1-.09-.22-.15-.39-.07.13-.11.2-.13.27-.2.83-.97 1.23-1.7 1.5-1.85.7-3.91.52-5.6-.47-.68 1.57-.61 4.73-.16 6.37zm14.2-9.8-.04-.81a.95.95 0 0 0-.53-.86 6.05 6.05 0 0 0-1.02-.46c-.83-.23-1.7-.48-2.57-.44-.72.02-1.06.63-1.06 1.3 0 .72-.05 1.45.06 2.17.15 1.7 2.42 1.78 3.73 1.76 1.3-.05 1.45-1.65 1.43-2.66zm-8.05-.36c0-.35.02-.71 0-1.06-.02-.93-.9-1.22-1.7-1.07-1 .2-2 .36-2.9.89a.89.89 0 0 0-.5.75c-.1.93-.1 1.89.26 2.77.2.54.77.76 1.32.75.87-.02 1.76-.1 2.56-.46 1.02-.42.98-1.64.96-2.57zM25.78 392.47l.64 2.27c.66.37 1.01 1.03 1.37 1.7.46.87.48.74.36 1.77-.14.92-.23 1.82-.54 2.71-1.64 1.36-3.72 2.05-5.77 2.53-4.04.9-8.34.2-11.94-1.83-2.18-1.37-4.64-2.26-5.93-4.68.15-1.24.4-2.5.67-3.78.68-.64 1.46-1.53 2.41-1.7.2-.02.4-.08.64-.13.38-.84.8-1.68 1.38-2.39l.26-1c.42-1.67 2.2-2.42 3.77-2.57 1.47-.15 2.95-.17 4.43-.12.34 0 .67.05.98.16l1.83.62c1.8.57 3.76 1.18 4.9 2.78.77 1.05.77 2.44.54 3.66zM8.4 398.53c.65.75 1.5 1.12 2.35 1.59 3.72 1.8 8.85 2.72 12.73.95.7-1.68.93-3.42 1-5.2 0-.34.06-.7-.12-1.05-.13.03-.23.05-.32.09-.43.17-.88.24-1.34.25a6.51 6.51 0 0 1-4.25-1.15c-.5-.35-.93-.82-.99-1.45 0-.07-.05-.14-.1-.28-.27.44-.47.82-.94 1.04a6.5 6.5 0 0 1-6.73-1.16c-.1.1-.2.16-.26.26a13.38 13.38 0 0 0-1.03 6.12zm5.33-6.49c1.42 0 2.37-.16 2.57-1.76.07-.64.2-1.28.19-1.93.01-.58-.48-1-1.02-1.08a8.35 8.35 0 0 0-3.58.27.96.96 0 0 0-.67.75 6.87 6.87 0 0 0-.23 1.6c.02 2.08.97 2.04 2.74 2.15zm5.69-3.4c-.1.61-.2 1.25-.27 1.89-.1.85-.16 1.67.64 2.2.76.5 1.92.86 2.83.9 1.4 0 1.55-2.3 1.58-3.34-.01-1.11-2.9-2.09-3.77-2.25-.46.04-.77.18-1.01.6zM4.38 881.57c.63-.8 1.13-1.7 2.03-2.16l.81-1.8c-.06-1.5.07-3.18 1.28-4.26 1.12-1.07 3.18-1.7 4.71-1.75 1.24.16 2.44-.34 3.67-.12 1.99.23 4.15.44 5.76 1.77.85.69 1.16 1.62 1.18 2.7a10.5 10.5 0 0 1 1.27 3.34l.57.25c.98.4 1.5 1.35 2.1 2.17.07 1.31.07 2.62 0 3.93-1.6 2.04-3.6 2.48-5.9 3.3-.57.2-1.17.28-1.72.54-1.36.2-2.73.34-4.1.42-2.95.15-5.87-.61-8.46-2l-1.2-.66c-.74-.41-1.3-1.03-1.87-1.64a.97.97 0 0 1-.26-.62c-.07-1.13-.1-2.25.13-3.4zm3.91-1.94c-.62.95-.85 5.15-.24 6.48 2.75 2 7.53 2.2 10.78 1.56 1.09-.2 2.14-.5 3.16-.94.34-.15.69-.3.95-.54.49-1.3.37-5.9.02-6.45l-.33-.23c-.16.01-.24.1-.37.16-1.18.7-2.47.85-3.8.68-1.16-.2-2.78-.62-3.12-1.92-.02-.07-.07-.13-.14-.26-.23.87-.8 1.32-1.51 1.63-1.78.79-3.67.7-5.4-.17zm13.53-4.84c-.88-.87-2.2-.94-3.33-1.25-.76-.16-1.61.09-1.73.96-.12.8-.12 1.62-.13 2.42-.01 1.73 3.06 1.89 4.26 1.7 1.1-.45 1.26-2.87.93-3.83zm-11.95 3.8a6.34 6.34 0 0 0 2.9-.44c.52-.22.84-.62.95-1.17.19-.96.15-1.94.18-2.88-.39-.49-.62-.62-1.15-.56-.97.11-1.92.34-2.82.77-.67.32-.79.67-.86 1.39-.08.9-.24 2.48.8 2.88z"}),l=(0,n.jsx)("path",{d:"M12.7 337.8c0-.2.07-.41.17-.57.77-.6 2.15-.5 2.83.4.17.5.17.5 0 .84-.85-.83-1.71-1.07-2.83-.62-.05.01-.1-.03-.18-.05zM20.22 338.36c.04.2-.02.4-.15.6-1.26-.75-1.49-.67-2.82-.17-.06-.23-.06-.23 0-.5.8-.77 2.28-1 2.97.07zM15.73 309.2c-1.71-.95-1.66-.76-3.02-.34-.07-.26-.07-.26.07-.63.87-.66 1.9-.65 2.67.03.29.26.38.56.28.94zM17.25 309.47c-.16-.27-.12-.47.03-.63.65-.71 2.07-1.1 2.88-.16.11.25.06.47-.1.71-.94-.7-1.86-.56-2.81.08zM20.12 279.84c-1.03-.6-1.95-.44-2.8.27-.22-.1-.18-.27-.17-.46.58-1 2.18-1.38 3.03-.51.08.39.08.39-.06.7zM12.66 279.97c-.16-.22-.06-.43-.02-.61.57-.73 1.85-.88 2.68-.28.29.22.43.5.42.85 0 .03-.04.06-.07.1-1.3-.67-1.56-.76-3.01-.06zM12.63 248.86c-.18-.37-.15-.6.16-.86a2.1 2.1 0 0 1 1.92-.45c.49.13 1.05.4 1.04.98 0 .04-.04.07-.06.1-1.42-.51-1.58-.6-3.06.23zM20.26 248.08c-1.1-.58-2.08-.23-2.96.54l-.15-.45c.56-1.06 2.07-1.56 3.06-.83.16.35.15.36.05.74zM17.18 216.68l-.13-.43c.64-1.2 1.94-1.6 3.07-.95.14.19.18.4.1.63-1.54-.32-1.8-.2-3.04.75zM12.55 217.26c-.24-.19-.15-.42-.14-.6.7-.9 1.8-1.16 2.74-.66.32.17.45.4.44.83-.23-.01-.42-.17-.63-.2-.95-.26-1.68 0-2.41.63zM12.95 367.22c1.13-.62 2.1-.42 2.9.59.07.24.1.5-.03.79-.28-.13-.4-.38-.62-.53a2.24 2.24 0 0 0-1.59-.4c-.26.02-.52.12-.81.2-.01-.1-.05-.17-.03-.24.05-.15.13-.3.18-.41zM17.32 369.06c-.12-.17-.07-.3 0-.5.76-.78 2.34-.82 2.95.22.05.25.03.5-.2.71-.84-.86-1.68-.9-2.75-.43zM12.24 184.16c.75-1.14 3.16-1.13 3.18.28-.27.01-.44-.17-.65-.2-1.04-.27-1.65-.06-2.46.62-.16-.23-.13-.45-.07-.7zM17.03 184.3c-.21-.1-.17-.29-.16-.47.72-1.14 1.96-1.46 3.09-.78.09.18.18.39.06.66-.35-.04-.66-.24-1.01-.23-.89-.02-1.3.33-1.98.82zM16.72 982.66l.15-1.68c.1-1.06 1.7-1.08 1.77-.03 0 .23 0 .46-.03.69-.05.5-.07 1-.17 1.48-.2.93-1.68.9-1.74-.03v-.43h.02zM12.2 981.68l.11-1.18a.8.8 0 0 1 .28-.55.88.88 0 0 1 1.42.49c.04.76-.08 1.54-.13 2.3-.13 1.02-1.67.76-1.7-.18-.02-.3 0-.59 0-.88h.02zM16.85 1014.12l.12-1.36c.11-.97 1.57-1.03 1.75-.06.02.71-.1 1.44-.15 2.16-.14 1.08-1.76 1.02-1.75 0 0-.24.03-.49.04-.74zM12.32 1013.53c.03-.37.03-.75.07-1.12.08-.48.46-.8.9-.76.67.07.93.68.83 1.3l-.1 1.55c-.04.51-.31.8-.76.81-1.12-.04-.97-.96-.95-1.78h.01zM18.5 949.26c-.06.53-.12 1.15-.22 1.76-.08.51-.46.79-.97.76-1.12-.11-.71-1.28-.66-2.04.03-.29.05-.58.1-.86.22-1.19 1.93-.98 1.75.38zM12.08 949.84l.14-1.43a.82.82 0 0 1 .36-.62c.6-.43 1.43.12 1.34.84l-.16 1.99c-.08 1-1.5.89-1.65.03-.04-.27 0-.54 0-.8l-.03-.01zM17.01 1046.02l.1-1.49a.98.98 0 0 1 .18-.58c.45-.6 1.49-.37 1.56.4.04.66-.06 1.33-.1 1.99 0 1.12-1.61 1.31-1.76.24v-.56h.02zM14.21 1045.21c0 .44.05.88-.06 1.31-.25.86-1.65.58-1.66-.27-.02-.73.01-1.46.08-2.18.04-.56.62-.84 1.12-.66.8.27.55 1.15.58 1.8h-.06zM14.35 1076.75c-.01.73.2 1.87-.83 1.89-.59 0-.98-.55-.9-1.1v-1.5c-.03-.58.31-1.18.93-1.14a.9.9 0 0 1 .83.8c.02.35 0 .7 0 1.05h-.03zM17.14 1077c.07-.8-.12-2 1.05-1.93.53.06.8.55.75 1.05-.05.67 0 1.37-.14 2.04-.24.88-1.69.82-1.68-.17-.02-.33 0-.66 0-1h.02zM19.84 150.46c.16.4.15.4 0 .67-.51-.2-.98-.34-1.55-.24a2.9 2.9 0 0 0-1.37.7c-.22-.1-.19-.3-.18-.47.76-1.15 1.96-1.41 3.1-.66zM12.21 152.05c-.18-.3-.13-.52-.08-.72.74-.85 1.72-1.06 2.63-.58.34.18.62.54.47.93-1.1-.56-2.11-.57-3.02.37zM15.05 683.77c-1.28-.75-2.03-.5-3.12.32-.12-.24-.08-.43 0-.68a2.12 2.12 0 0 1 2.76-.56c.3.17.39.4.36.92zM19.75 683.15c.07.2.15.42 0 .64-.18.04-.26-.12-.38-.18-.11-.06-.21-.13-.33-.18a2.22 2.22 0 0 0-2.31.36c-.2-.12-.15-.3-.18-.43.75-1.1 2.15-1.19 3.2-.2zM16.7 716.07c-.21-.17-.2-.33-.2-.48.52-1.07 2.23-1.35 3.14-.44.14.33.13.33.04.66-1.04-.6-2.08-.62-2.98.26zM11.95 716.83c-.14-.28-.1-.48-.05-.74a2.16 2.16 0 0 1 2.47-.88c.42.12.67.4.69.89-.08 0-.16.02-.23 0-.8-.37-1.72-.33-2.39.28l-.5.45zM16.7 651.68c-.18-.18-.14-.35-.1-.52.7-.9 2.15-.9 2.99-.08.3.28.31.45.1.9-.83-.8-2.02-1-2.98-.3zM14.95 650.71c.08.24.23.45.1.75-1.12-.7-2.03-.79-3.09.11-.63-.91 1.79-2.14 2.99-.86zM16.63 587c.97-.99 2.32-.91 3.22.19.02.2.1.42-.13.6-.97-.76-1.68-.96-2.98-.32-.12-.18-.12-.18-.1-.46zM11.94 587.38c-.12-.27 0-.47.1-.7.67-.72 1.87-.93 2.7-.33.3.19.49.57.35.92-.21.03-.33-.15-.48-.23-.82-.47-1.72-.31-2.45.25l-.22.09zM19.5 747.44c.14.26.2.45.07.68-1.06-.53-2.1-.47-2.93.47-.19-.11-.21-.27-.24-.46.5-1.17 2.14-1.45 3.1-.69zM11.9 749.68c-.09-.37-.1-.47-.03-.79a2.17 2.17 0 0 1 2.47-.99c.4.12.63.39.66.8-.1.12-.2.06-.3.02a2.11 2.11 0 0 0-2.34.5l-.46.46zM19.87 555.47c-1-.76-1.98-.8-2.96-.04-.23-.12-.18-.3-.15-.52.64-.94 2.1-1.06 2.96-.31.29.23.32.41.15.87zM15.25 555.39c-1.5-.6-1.86-.57-3.1.34-.1-.01-.13-.08-.14-.17a.77.77 0 0 1 .17-.58c.7-.8 1.83-.99 2.66-.49.3.19.44.47.4.9zM19.76 619.43c.04.24.05.44-.07.61-.18.05-.25-.08-.33-.16a2.16 2.16 0 0 0-2.2-.5l-.52.22c-.17-.16-.13-.33-.05-.5.98-.92 2.26-.79 3.17.33zM14.98 618.56c.05.22.2.45 0 .73-1.06-.81-1.92-.84-3.04-.12-.54-.93 1.9-1.97 3.04-.61zM16.42 781.6l-.18-.47c.52-1.19 2.21-1.45 3.13-.65.15.24.17.43.12.65-.17.08-.28-.05-.4-.1-.98-.47-1.93-.2-2.67.58zM14.87 781.76c-1.25-.57-2.24-.32-3 .67-.17-.01-.17-.13-.2-.22a.74.74 0 0 1 .14-.6 2.1 2.1 0 0 1 2.48-.78c.37.15.52.44.58.93zM15.45 523.59c-1.21-.63-2.22-.37-3.09.6-.17-.26-.17-.26-.1-.71a2.16 2.16 0 0 1 2.58-.85c.4.14.51.32.6.96zM17.06 523.43c-.17-.13-.19-.3-.18-.46.46-1.05 2.12-1.37 3.08-.5.1.2.23.4.06.68-.59-.29-.9-.4-1.55-.4-.55-.02-.99.38-1.41.68zM17.8 918.73l-1.15-.1c-.24-.16-.3-.38-.28-.61.03-.67.07-1.33.13-2 .04-.71 1-1.07 1.51-.57.19.16.3.37.28.6-.03.71-.07 1.42-.13 2.12-.01.21-.12.4-.37.56zM13.48 918.39H12.3a.63.63 0 0 1-.32-.6c0-.66.03-1.32.06-1.99.06-1.03 1.5-1.18 1.73-.16.06.66-.03 1.33-.04 2-.02.33-.03.33-.25.75zM17.23 1108.4c.02-.4-.03-.83.04-1.24a.9.9 0 0 1 .82-.66c.55-.02.93.53.9 1.06-.05.7-.01 1.41-.12 2.1-.25.87-1.64.82-1.67-.14v-1.12h.03zM14.42 1108.38v1.06c-.02.98-1.46 1.02-1.67.1-.08-.69-.02-1.4-.03-2.1-.04-.5.29-.97.8-1 .41-.02.79.24.88.64.08.42.04.87.05 1.3h-.03zM16.28 815.3c-.2-.15-.17-.32-.16-.51.58-1.1 2.22-1.28 3.1-.4.08.2.17.42.04.68-.28-.05-.47-.26-.72-.34a2.08 2.08 0 0 0-1.58.1c-.23.14-.44.3-.68.47zM11.68 815.96c-.14-.23-.09-.45-.06-.67.46-.77 1.43-1.22 2.3-.93.47.14.75.42.77.92-.06.09-.13.1-.22.06a1.96 1.96 0 0 0-2.36.25c-.14.11-.23.28-.43.37zM15.57 491.7c-.15.08-.27-.04-.4-.08-1.07-.35-1.94.18-2.62.99-.2-.3-.2-.58-.03-.85a2.13 2.13 0 0 1 2.5-.88c.34.12.54.36.6.72 0 .03-.03.07-.05.1zM17.17 491.55l-.16-.43c.61-1.23 1.92-1.52 3.07-.69.06.18.2.38.07.61-1.52-.57-1.98-.31-2.98.51zM12.83 119.38c-.2-.15-.28-.4-.31-.64a7.58 7.58 0 0 1-.09-1c-.02-1.3 1.88-1.56 2.23-.35.13.45.26 1.34.02 1.77-.18.11-.4.05-.6.08l-.62.07c-.2.03-.4.12-.63.07zM19.07 118.9l-1.6.12a.64.64 0 0 1-.35-.48c-.05-.39-.11-.78-.1-1.17 0-1.1 1.72-1.55 2.16-.5.26.64.39 1.45-.1 2.03zM18.12 1138.03c.66.18.85.4.87 1.02.01.56 0 1.12-.01 1.68.05 1.35-1.64 1.53-1.74.3-.01-.7 0-1.41.02-2.12.01-.51.24-.72.86-.88zM13.63 1138.03c.65.18.84.4.85 1.02.02.62.01 1.25.01 1.87-.04 1.36-1.8 1.15-1.73-.15 0-.56-.02-1.12-.01-1.68 0-.68.2-.9.88-1.06zM17.3 459.92c-.22-.14-.18-.3-.18-.47.5-1.1 2.26-1.33 3.09-.38.08.18.11.38.03.6-.22.03-.34-.14-.5-.21-.87-.41-1.75-.18-2.43.46zM15.59 460c-1.14-.65-2.15-.39-3.04.53-.2-.25-.13-.49-.05-.74.57-.81 1.73-1.2 2.64-.72.33.16.51.42.52.79 0 .03-.04.07-.07.13zM19 849.2c.1.2.17.44 0 .7-.52-.29-.9-.56-1.51-.52-.55-.02-.97.31-1.4.61-.17-.15-.16-.32-.13-.5.56-1.1 2.25-1.25 3.04-.29zM11.6 850.42a.83.83 0 0 1 .06-.84 1.84 1.84 0 0 1 2.42-.57c.31.17.54.58.44.93-.17.06-.25-.06-.35-.11-1.02-.58-1.88-.11-2.56.6zM14.07 86.36l-.35.05a.81.81 0 0 1-.92-.67 7.9 7.9 0 0 1-.13-2.17c.13-1.07 1.64-1.05 1.8-.03.07.6.07 1.2.11 1.81.03.43-.1.78-.51 1zM19.06 84.27c.01.9.17 1.9-.92 1.94-.61.02-.95-.52-.9-1.1-.01-.58-.07-1.16-.04-1.74.11-1 1.64-1.04 1.79-.06.06.37.05.75.07.96zM17.25 1171.56v-1.06c.02-.33.17-.6.47-.76.75-.34 1.3.27 1.27 1v1.63c0 .16-.02.33-.07.49-.29.9-1.58.78-1.66-.17-.02-.38 0-.75 0-1.13zM14.51 1171.67v.93c.02 1.14-1.57 1.24-1.69.12-.04-.73-.05-1.45-.05-2.18.02-.47.4-.88.9-.84.33.01.59.18.72.5.17.46.08.98.1 1.47h.02zM15.7 428.53c-1.09-.82-2.16-.78-3.17.1-.11-.4-.06-.66.17-.9.81-.91 3.2-.8 3 .8zM20.23 428.8c-.96-.82-1.91-.87-2.9-.17-.28-.17-.18-.5 0-.69a2 2 0 0 1 2.85 0c.21.24.24.5.05.86zM14.51 51.66c0 .37.02.75-.01 1.12-.15.87-1.35.95-1.63.13-.04-.1-.06-.2-.07-.3-.02-.7-.05-1.37-.06-2.06-.03-.95 1.37-1.25 1.66-.31.13.46.06.95.08 1.42h.03zM17.25 51.48c0-.38-.03-.75 0-1.13.04-.9 1.38-1.05 1.64-.21.06.17.09.37.1.55v1.68c.04.54-.36 1.06-.92 1.02-1.03-.09-.79-1.17-.81-1.91h-.01zM19 1203.28c-.02.47.05.96-.12 1.42-.3.75-1.41.67-1.6-.13-.07-.72-.01-1.45-.03-2.18-.04-.49.3-.98.8-1 1.07.01.94 1.12.94 1.89zM14.51 1203.42c0 .39.03.79-.02 1.18-.17.82-1.36.88-1.62.1a1.56 1.56 0 0 1-.07-.43c-.02-.63-.04-1.25-.04-1.87 0-.52.36-1 .91-.96 1.01.04.8 1.27.82 1.98h.02zM18.08 1233.27c.69.2.88.4.9 1.04.02.6.01 1.2 0 1.8 0 1.34-1.8 1.35-1.73 0v-1.82c0-.6.17-.8.83-1.02zM14.5 1235.3c0 .4.03.8-.01 1.18-.15.86-1.4.9-1.63.07a1.78 1.78 0 0 1-.07-.42l-.03-1.8c0-.17.03-.34.1-.49.26-.7 1.39-.65 1.57.1.1.44.05.9.06 1.36h.02zM18.1 17.28c.68.19.87.4.89 1.08v1.69c.04 1.37-1.77 1.46-1.74.06v-1.8c0-.65.19-.86.85-1.03zM14.5 19.34c0 .35.02.7 0 1.06-.15 1.13-1.71.94-1.7-.19a63.2 63.2 0 0 1-.04-1.93c0-.5.38-.99.93-.93 1 .06.78 1.28.8 1.99h.01zM12.67 397.26c-.12-.29 0-.5.12-.7 1.06-.75 2.05-.67 2.91.24.17.53.17.53 0 .82-.93-.9-1.9-.97-3.03-.36zM17.27 397.98l-.02-.46c1-1 2.35-.88 3.12.28.02.21.02.43-.16.61-1.22-1-1.7-.91-2.94-.43zM16.32 884.25c-.03-.13-.07-.23-.07-.32v-1.13c0-.28.09-.53.26-.75a2.77 2.77 0 0 1 1.53-.09c.24.2.35.45.36.73l-.03 1.37c0 .06-.04.11-.07.19-.33.07-.65-.1-.98-.08l-1 .08zM12.16 882.04c.45-.15.91-.22 1.37-.14.27.19.37.43.38.71.02.5.04 1-.01 1.5-.21.13-.42 0-.62.03-.46.02-.85.07-1.31.2-.04-.12-.1-.21-.1-.3v-1.25c0-.28.08-.53.3-.75z"}),i[0]=a,i[1]=l):(a=i[0],l=i[1]),i[2]!==r||i[3]!==d||i[4]!==u?(c=(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:d,height:u,viewBox:"0 0 32 1248",fill:"currentColor",className:"JumpWiggle-module__jumpWiggle--rDQC4","data-animation-state":r,"aria-hidden":!0,children:[a,l]}),i[2]=r,i[3]=d,i[4]=u,i[5]=c):c=i[5],c}try{y.displayName||(y.displayName="CopilotAnimationJumpWiggle")}catch{}function h(e){let a,l,c,i=(0,t.c)(6),{scale:s,state:r}=e,o=void 0===s?1:s,d=32*o,u=832*o;return i[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)("path",{d:"M22.09 618.13c.04.24.23.44.42.62a9.34 9.34 0 0 1 2.93 5.82c.15.08.31.17.48.23 1 .36 1.42 1.29 1.98 2.1.15.2.21.44.22.7.03 1.1-.04 2.2-.26 3.26-.05.08-.08.14-.12.18a8.74 8.74 0 0 1-1.93 1.48l-1.59.86c-6.18 3.34-13.1 3.73-18.31-1.56l-.1-.81-1.34-1.47a1.77 1.77 0 0 1-.47-1.25c-.01-.78.07-1.54.24-2.3.07-.33.21-.62.45-.87.55-.63 1.07-1.29 1.84-1.66l.3-.55c.07-2.99 1.12-5.07 4.26-5.51.36-.05.68-.16 1.01-.3a9.55 9.55 0 0 1 2.69-.78c.64-.08 1.28-.1 1.93-.15 1.92.2 3.74.8 5.37 1.96zm-14.7 12.94c1.64 1.9 4.84 2.77 7.26 2.93 2.03.06 4.1-.2 6-.92a6.34 6.34 0 0 0 1.77-.88c.5-1.52.7-5.2.36-6.4l-.22-.06a3.92 3.92 0 0 1-2.35 1.07c-.52.03-1.04.08-1.56.06a6.24 6.24 0 0 1-2.69-.73 2.29 2.29 0 0 1-1.16-1.25l-.12-.23c-.06.06-.12.1-.15.15-.3.63-.85.95-1.48 1.16-1.24.43-2.6.37-3.87.06-.43-.1-.84-.25-1.2-.5-.08-.06-.18-.1-.3-.16-.52 1.91-.7 3.8-.28 5.7zm14.46-9.27c.05-.5-.02-.88-.47-1.13-.93-.57-2-.8-3.07-1-.82-.15-1.63.22-1.8 1.1a19.15 19.15 0 0 0-.36 2.84c-.03.54.26.94.73 1.2.79.4 1.68.52 2.54.54 1.97.12 2.35-2 2.43-3.55zm-8.24-1.78c-.3-.72-.96-.73-1.59-.7-.83.08-1.65.2-2.42.52-.4.15-.63.45-.7.88-.07.43-.17.85-.22 1.29-.08.9-.08 2.19.96 2.51.66.23 1.36.2 2.03.07.97-.14 1.5-.84 1.6-1.8.12-.92.24-1.85.34-2.77zM21.95 298.03l.14.33c2.2 2.21 2.55 2.86 3.32 6.1.14.08.3.17.47.23.5.2.9.5 1.22.94l.78 1.13c.14.19.22.4.23.64.05 1.14 0 2.28-.26 3.44-.59.56-1.2 1.13-1.94 1.53-2.71 1.6-5.59 2.94-8.74 3.35-4.07.68-8.35-.88-11.23-3.8l-.12-.88c-.63-.54-1.19-1.15-1.66-1.8-.33-.87-.13-2.34.08-3.24.06-.24.17-.46.34-.66.56-.65 1.07-1.35 1.86-1.75l.26-.43c.1-1.05.17-2 .54-2.98.51-1.56 1.98-2.45 3.53-2.7.48-.08.93-.2 1.37-.4a9.95 9.95 0 0 1 9.8.95zm.62 7.58c-1.23 1.06-2.01 1.17-3.58 1.2-1.44.04-3.73-.48-4.27-2-.02-.04-.08-.08-.14-.15l-.14.22c-.48.95-1.62 1.22-2.59 1.39-.96.12-1.9.01-2.85-.21-.5-.11-.9-.34-1.32-.62-.35.9-.41 1.8-.5 2.7-.08 1.03 0 2.04.25 3.04.9.98 2.09 1.63 3.33 2.04a14 14 0 0 0 7.32.52c1.3-.22 2.55-.62 3.73-1.21.24-.12.48-.25.7-.48.48-2.04.46-4.13.34-6.23l-.28-.2zm-.83-4.48a1.06 1.06 0 0 0-.54-.59c-.26-.14-.51-.29-.79-.37-.64-.19-1.28-.35-1.93-.49-1.04-.18-1.93.03-2.1 1.22-.11.76-.24 1.52-.3 2.28-.09 1.02.29 1.45 1.12 1.77.75.27 1.55.33 2.33.32a1.82 1.82 0 0 0 1.81-1.27 6.5 6.5 0 0 0 .4-2.87zm-8.24-1.1c-.22-.47-.54-.64-.94-.66-.93-.04-1.83.1-2.7.38-.53.2-.92.38-1.05.97a7.5 7.5 0 0 0-.18 2.6c.1.76.46 1.16 1.2 1.33a4.2 4.2 0 0 0 1.86-.04c.8-.17 1.3-.64 1.44-1.45.18-1.03.27-2.11.37-3.14zM4.3 470.88c-.4-1.09-.28-2.15-.32-3.27 0-.32.09-.61.27-.88l.83-1.17c.27-.38.64-.65 1.07-.82l.52-.23a9.38 9.38 0 0 1 2.9-5.74c.21-.2.44-.38.5-.69a9.94 9.94 0 0 1 9.5-1.15c.68.3 1.38.56 2.13.7.4.07.8.23 1.16.44.8.46 1.4 1.1 1.75 1.96.26.64.47 1.3.5 2 .04.58.26 1.08.62 1.6.69.38 1.2 1.05 1.73 1.69.18.2.31.44.38.7.2.86.3 1.73.2 2.6-.03.35-.14.65-.37.9l-1.36 1.52-.11.83a12.8 12.8 0 0 1-7.69 3.91c-3.56.38-7.06-.68-10.2-2.28-.54-.28-1.06-.6-1.6-.85a9.07 9.07 0 0 1-2.42-1.77zm13.15-6.2-.11.15c-.5 1.3-1.98 1.7-3.22 1.95-.66.11-1.32.05-1.99.02a3.97 3.97 0 0 1-2.44-.98c-.07-.06-.17-.1-.27-.17-.24.43-.23.88-.25 1.3a16.2 16.2 0 0 0 .47 5.27 14.74 14.74 0 0 0 10.89 1.26c1.49-.45 3.05-1.15 4.04-2.38.42-1.59.19-4.74-.29-5.64l-.26.16c-.3.21-.61.35-.96.43-1.2.3-2.44.43-3.64.08-.7-.2-1.42-.47-1.79-1.14l-.18-.3zm-7.16-3.43c-.04.96.08 2.04.52 2.97.65 1.5 2.71 1.14 3.97.77.92-.3 1.26-.78 1.17-1.73-.07-.8-.22-1.6-.33-2.41-.1-.65-.7-1.24-1.6-1.15-.82.09-1.6.27-2.37.54-.3.1-.57.25-.85.4a1 1 0 0 0-.51.61zm8.25-1.33c0 .17-.02.34 0 .5.08.7.16 1.4.26 2.1.12.82.27 1.68 1.16 1.98.78.27 1.64.34 2.45.11.5-.15.81-.48.94-.99.26-1.1.04-2.3-.27-3.3-.74-.88-2.2-.9-3.24-1.04-.52-.01-1.05.08-1.3.64zM4.3 150.81c-.2-.47-.24-.9-.26-1.3-.05-.69-.04-1.38-.05-2.06 0-.26.07-.5.21-.71l.86-1.23c.28-.4.66-.69 1.12-.86l.47-.22c.5-2.42 1.12-4.09 2.99-5.8.2-.17.36-.39.44-.65a10.82 10.82 0 0 1 4.2-1.72 9.9 9.9 0 0 1 6 .88c.6.3 1.3.32 1.91.57a3.9 3.9 0 0 1 2.5 2.45c.2.57.39 1.15.42 1.75.04.61.24 1.13.63 1.66.72.4 1.24 1.08 1.78 1.74.53.6.62 2.47.52 3.27-.03.32-.14.6-.36.84l-1.38 1.54-.1.84a12.8 12.8 0 0 1-6.9 3.79c-3.9.69-7.86-.5-11.3-2.32l-1.7-.91c-.77-.4-1.4-.98-2-1.55zm5.33 1.3c2.31 1.51 5.5 1.9 8.23 1.81 2.14-.16 5.42-1.13 6.72-2.93.4-1.5.2-4.53-.26-5.57-.04 0-.09 0-.11.02-.5.38-1.07.55-1.66.67-1.6.32-4.18.26-5.03-1.38-.01-.03-.05-.06-.08-.08-.03.02-.07.04-.08.08-.27.7-.8 1.15-1.47 1.45-1.28.6-2.33.66-3.71.56a4.05 4.05 0 0 1-2.55-1.03c-.06-.04-.14-.06-.24-.1-.2.42-.2.83-.22 1.24a16.3 16.3 0 0 0 .46 5.26zm3.16-6.87a7.4 7.4 0 0 0 2.03-.32c.87-.31 1.19-.77 1.14-1.7a55.85 55.85 0 0 0-.35-2.47 1.35 1.35 0 0 0-1.38-1.11c-.19 0-.38 0-.56.03-.67.15-1.34.31-2 .5-.36.1-.7.27-1 .49a.85.85 0 0 0-.4.74c0 .84.12 1.66.4 2.45.36 1.02 1.05 1.41 2.12 1.39zm5.75-5.4c0 .17-.02.33 0 .5.08.72.16 1.44.26 2.16.2 1.2.38 1.8 1.67 2.09.53.09 1.07.11 1.61.03.78-.11 1.17-.5 1.3-1.28.18-.99 0-1.94-.23-2.9-.22-1-2.8-1.23-3.66-1.2-.4.01-.72.18-.95.6zM5.98 663.89c-.04-.24-.1-.53-.13-.77-.47-.5-.9-.97-1.35-1.43-.36-.37-.5-.8-.5-1.3-.02-.8.05-1.58.22-2.36.08-.31.21-.58.43-.82.57-.64 1.04-1.31 1.88-1.67l.32-.62c.1-3.09 1.06-5 4.28-5.5.29-.06.56-.15.83-.27.9-.4 1.82-.71 2.8-.83.62-.08 1.24-.12 1.87-.16 1.9.18 3.71.78 5.34 1.89.07.28.3.49.52.7 1.74 1.6 2.54 3.46 2.93 5.76l.56.24c.41.17.77.42 1.03.79.31.42.6.85.9 1.27.15.22.2.46.2.71.01 1.14 0 2.2-.27 3.36a8.3 8.3 0 0 1-1.86 1.47c-.57.3-1.12.62-1.68.95a19.3 19.3 0 0 1-8.54 2.55 13.22 13.22 0 0 1-9.78-3.96zm1.78-6.49c-.58 1.43-.7 4.44-.27 5.73.8.97 2.04 1.6 3.22 2.03a13.8 13.8 0 0 0 6.7.7c1.54-.2 3.01-.6 4.41-1.29.26-.12.53-.25.74-.5a18.99 18.99 0 0 0 .37-6.12c-.02-.14-.1-.27-.3-.27-.6.53-1.32.97-2.13 1.05-1.5.2-3.08.11-4.44-.62a2.3 2.3 0 0 1-1.17-1.24l-.1-.2-.1.03a.42.42 0 0 0-.07.1c-1.02 1.93-4.96 1.87-6.86.6zm14.1-4.3c-.26-.5-.7-.65-1.15-.85-.72-.29-1.47-.46-2.23-.59-.75-.13-1.58.02-1.86.83-.05.12-.08.24-.1.36-.13.95-.32 1.9-.28 2.85 0 .69.63 1.07 1.2 1.27.82.26 1.68.37 2.53.28a1.65 1.65 0 0 0 1.37-.96c.49-.99.6-2.12.52-3.18zm-8.26-1.18a.95.95 0 0 0-.73-.54 1.84 1.84 0 0 0-.5-.04c-.61.06-1.24.11-1.85.22-.34.07-.67.22-1 .36a1 1 0 0 0-.6.8c-.08.43-.13.86-.2 1.29-.1.48-.03.95.05 1.42.1.62.46 1.01 1.06 1.17.8.2 1.6.14 2.39-.13.77-.24 1.04-.98 1.13-1.72.1-.93.29-1.88.25-2.83zM25.46 592.58c.15.08.32.17.49.24.97.34 1.42 1.3 1.98 2.08.12.18.18.38.18.6.01 1.16-.07 2.32-.26 3.43a7.7 7.7 0 0 1-2.04 1.6l-.67.33c-.1.06-.23.11-.31.2-.31.32-.7.51-1.1.7a20.37 20.37 0 0 1-5.96 1.97c-4.25.76-8.74-.85-11.76-3.9l-.13-.83c-.5-.38-.93-.86-1.36-1.34-.4-.43-.55-.9-.54-1.47.02-.78.1-1.54.26-2.3.06-.29.18-.55.38-.77.6-.65 1.2-1.44 2.05-1.74.27-.42.4-.84.43-1.31.02-.67.2-1.32.41-1.95a3.73 3.73 0 0 1 2.12-2.25c.4-.19.82-.3 1.25-.38.4-.06.76-.19 1.13-.35a10.02 10.02 0 0 1 10.05.95c.06.3.29.5.52.72a9.36 9.36 0 0 1 2.88 5.77zm-17.91 6.5a8.52 8.52 0 0 0 3.95 2.3 14.49 14.49 0 0 0 10.57-.79c.22-.11.45-.22.6-.43a17.38 17.38 0 0 0 .43-6.13c0-.1-.07-.2-.23-.2-.64.52-1.37.98-2.2 1.02-1.54.13-3.13.1-4.48-.74a2.15 2.15 0 0 1-1.03-1.21l-.13-.34-.21.38a1.8 1.8 0 0 1-.84.81c-1.17.59-2.5.67-3.77.46a4.4 4.4 0 0 1-2.24-.87l-.06-.01c-.5 1-.79 4.05-.36 5.75zm14.57-9.83c-.24-.5-.64-.69-1.04-.86-.73-.3-1.5-.5-2.28-.64-1.05-.24-1.83.15-2.02 1.26-.1.91-.32 1.81-.26 2.73.02.4.2.71.52.96.74.56 2.08.7 3 .67.72-.03 1.27-.34 1.57-1.03.46-.96.58-2.04.51-3.1zM9.3 588.24c-.04.1-.12.25-.15.41-.1.47-.18.94-.23 1.42-.08 1.07 0 2.3 1.26 2.56.73.16 1.45.12 2.16-.07.6-.16 1.01-.56 1.18-1.17.03-.1.07-.2.08-.3.1-.91.22-1.82.3-2.73.08-.76-.59-1.03-1.25-1.01-1 .03-2.64.12-3.35.88zM6.01 279.83l-.13-.83c-.6-.44-1.05-.98-1.5-1.52-.27-.3-.38-.63-.39-1.03-.01-.83.06-1.66.23-2.48.08-.36.22-.67.47-.93.59-.63 1.14-1.36 1.97-1.65.28-.41.41-.84.43-1.3.16-1.85.77-3.5 2.58-4.24.4-.18.82-.3 1.25-.37.37-.06.73-.18 1.07-.33 3.36-1.55 7-1.15 10.06.93.06.3.29.5.52.71a9.3 9.3 0 0 1 2.86 5.7c.14.2.33.25.5.32 1 .36 1.41 1.28 1.99 2.08.13.2.2.4.2.64-.01 1.14-.08 2.3-.27 3.4a7.46 7.46 0 0 1-2.02 1.59l-.62.3c-.12.07-.27.13-.37.23-.36.36-.81.57-1.26.8a20.5 20.5 0 0 1-5.8 1.87c-4.25.77-8.74-.84-11.77-3.89zm1.53-.76a8.66 8.66 0 0 0 4.2 2.38c2.03.62 4.18.74 6.29.4a12.9 12.9 0 0 0 3.97-1.22c.24-.13.49-.24.7-.5.47-1.96.59-4.03.4-6.03 0-.12-.04-.24-.23-.28l-.22.16c-1.04.93-2.34.95-3.66.92a6.15 6.15 0 0 1-2.68-.73c-.58-.3-1-.74-1.19-1.38-.01-.05-.05-.1-.07-.15-.05.02-.1.03-.11.06-.31.74-.9 1.1-1.64 1.33a6.53 6.53 0 0 1-3.08.17 4.45 4.45 0 0 1-2.3-.88c-.61 1.29-.75 4.1-.38 5.75zm14.57-9.9a2.13 2.13 0 0 0-1.04-.79 9.4 9.4 0 0 0-2.71-.7c-.89-.08-1.42.49-1.52 1.1l-.07.3c-.1.86-.3 1.72-.26 2.6.02.47.24.84.64 1.09.83.5 1.87.62 2.83.6.8-.03 1.38-.39 1.7-1.15.4-.98.5-2 .43-3.04zm-9.76-1.84c-.5.07-1.02.1-1.52.2-.37.08-.72.23-1.06.36a.98.98 0 0 0-.63.79l-.2 1.1c-.08.54-.05 1.08.04 1.61.12.68.52 1.07 1.17 1.22.72.18 1.44.14 2.16-.04.74-.18 1.18-.78 1.3-1.52.1-.88.21-1.77.3-2.66.05-.55-.25-.9-.8-1-.24-.04-.49-.04-.76-.06zM6.16 344.3l-.15-.8a9.66 9.66 0 0 1-1.88-1.82c-.03-.19-.1-.41-.12-.64-.06-.85-.04-1.7.11-2.55.05-.29.15-.56.35-.79.65-.78 1.02-1.4 1.97-1.87l.3-.7c0-2.84.83-4.83 3.82-5.45.33-.07.63-.2.93-.34a9.95 9.95 0 0 1 10.08.49l.12.3c2.32 1.98 2.8 3.16 3.62 6.03l.55.21c.4.15.74.39 1.01.7.4.47.78 1 1.12 1.48.17 1.3.09 2.56-.03 3.85a8.93 8.93 0 0 1-1.9 1.6c-.47.28-.94.54-1.36.89-.33.28-.73.48-1.11.68-4.17 2.29-9.37 3.28-13.79 1.1a13.33 13.33 0 0 1-3.64-2.38zm1.5-.85c1.6 1.68 4.19 2.28 6.44 2.53 1.5.17 2.99 0 4.46-.33 1.25-.27 2.44-.7 3.56-1.31.26-.14.52-.28.71-.55.42-1.96.34-4.01.14-6-.01-.15-.05-.3-.27-.34-1.05.95-1.75 1.15-3.14 1.25a6.37 6.37 0 0 1-3.18-.47 2.5 2.5 0 0 1-1.56-1.6l-.05.03-.12.21c-.2.49-.55.83-1.02 1.05a6.61 6.61 0 0 1-4.4.4c-.45-.1-.88-.24-1.26-.51-.06-.05-.14-.07-.2-.1-.47.89-.61 4.35-.1 5.74zm14.08-10.52a1.2 1.2 0 0 0-.6-.57c-.3-.14-.6-.3-.91-.38-.54-.14-1.1-.24-1.65-.35-.2-.04-.41-.06-.62-.07-.83-.04-1.49.41-1.57 1.33-.07.91-.2 1.83-.15 2.74.03.6.5 1.02 1.02 1.22.9.32 1.84.38 2.77.26a1.58 1.58 0 0 0 1.32-1.02c.44-.99.47-2.12.39-3.16zm-8.26-.8c-.27-.5-.65-.65-1.13-.64-.86.03-1.7.17-2.5.45-.22.07-.42.19-.62.3a.95.95 0 0 0-.48.7 6.8 6.8 0 0 0-.02 2.84c.15.64.59.98 1.22 1.1.7.12 1.4.04 2.1-.16.55-.17 1-.55 1.15-1.12.07-.26.12-.53.15-.8.06-.89.15-1.78.13-2.67zM25.46 431.4c.7.3 1.18.8 1.66 1.35.51.47.78 1.07.85 1.75.06.54.1 1.08.13 1.62 0 .3-.06.62-.09.9a10.1 10.1 0 0 1-1.74 1.9l-.14.89c-5.12 5.24-12.15 5-18.25 1.64-.63-.35-1.25-.73-1.9-1.08-.63-.35-1.17-.85-1.7-1.34a13.94 13.94 0 0 1-.28-3.8c.34-.6.7-1.15 1.12-1.67.24-.3.55-.51.9-.67l.59-.26a10.7 10.7 0 0 1 1.42-4.1c.35-.57.74-1.1 1.26-1.53.2-.16.35-.35.55-.54l.13-.32a10.82 10.82 0 0 1 5.4-1.97c1.92.03 3.14.3 4.9 1.07.29.11.57.22.88.28 2.62.51 3.5 2.34 3.74 4.82l.57 1.06zm-15.98 8.93c2.63 1.63 6.85 2.08 9.85 1.4 1.9-.46 3.87-1.19 5.15-2.73.34-1.8.14-3.66-.25-5.45-.03-.1-.05-.2-.2-.23l-.33.25c-.27.2-.58.33-.9.42a8.6 8.6 0 0 1-2.16.33c-1.15-.01-2.83-.25-3.43-1.37l-.16-.25c-.05.05-.1.07-.11.1-.72 2.06-3.98 2.34-5.8 2.04a3.5 3.5 0 0 1-1.8-.85c-.07-.06-.15-.13-.27-.07-.38 1.45-.18 4.75.4 6.41zm.43-10.98c-.06.54.04 1.05.1 1.56.05.46.19.9.37 1.32.3.73.84 1.11 1.62 1.15.82.05 1.63-.06 2.4-.34.85-.3 1.16-.74 1.11-1.64-.03-.63-.13-1.24-.21-1.86a5.49 5.49 0 0 0-.16-.8c-.24-.89-1.08-1.1-1.9-.92-.63.14-1.26.29-1.87.48-.32.1-.61.26-.9.42a1.1 1.1 0 0 0-.56.63zm8.18-1.33c.04.9.18 1.85.3 2.74.03.2.07.41.13.61.16.61.55 1.02 1.16 1.19.84.22 1.75.27 2.57-.06.38-.17.65-.44.75-.86.24-.95.1-1.94-.1-2.9-.1-.5-.37-.81-.83-.99a8.44 8.44 0 0 0-2.69-.47c-.54 0-1.02.12-1.3.74zM4.14 502.4a19.32 19.32 0 0 1-.13-3.18c0-.38.12-.73.37-1.04.98-1.23.87-1.44 2.44-2.02.48-2.39 1.47-4.47 3.47-5.92l.2-.41a10.5 10.5 0 0 1 3.83-1.48l.62-.1c.74-.17 1.49-.07 2.23.02 1.02.13 2 .4 2.93.84.63.32 1.28.59 1.97.77a3.95 3.95 0 0 1 2.71 2.54c.26.76.37 1.58.43 2.37l.45.97c.4.32.75.58 1.05.88.31.3.56.67.85 1 .2.25.34.53.4.84.14.82.2 1.65.12 2.48-.04.44-.2.8-.5 1.11-.45.47-.88.95-1.43 1.33l-.18.86a13.48 13.48 0 0 1-6.91 3.47c-3.99.65-8.03-.68-11.42-2.72-.59-.36-1.16-.74-1.75-1.09a8.9 8.9 0 0 1-1.75-1.51zm5.17 1.57a12.82 12.82 0 0 0 5.76 1.94c3.2.41 6.8-.18 9.23-2.43.5-1.28.4-4.85-.06-5.8-.38.22-.73.48-1.16.57-.8.19-1.6.3-2.42.26-1.15-.09-2.75-.43-3.27-1.59-.03-.07-.08-.13-.14-.22l-.13.17c-.5 1.41-2.8 1.93-4.14 1.88-1.24-.07-2.43-.16-3.38-1.05l-.32-.23c-.2.3-.21.62-.24.92-.18 1.85-.23 3.7.27 5.58zm.96-10.09h.02c-.03.75.1 1.5.4 2.2.26.6.72.93 1.36 1.05a5.98 5.98 0 0 0 2.88-.33c.82-.33.95-1.06.88-1.87-.02-.4-.06-.79-.1-1.18-.03-.3-.06-.62-.11-.93-.16-1.02-1.02-1.3-1.94-1.16-.61.11-1.23.22-1.83.38-.37.1-.73.29-1.08.46-.57.3-.48.84-.48 1.38zm8.25-1.77c.03 1.06.11 2.18.26 3.26.14.69.53 1.16 1.22 1.36.65.19 1.3.27 1.97.17.85-.13 1.24-.51 1.4-1.36.17-.92.05-1.83-.12-2.73a.9.9 0 0 0-.42-.6 2.84 2.84 0 0 0-1.02-.44c-.61-.13-1.23-.23-1.85-.34-.58-.05-1.13.03-1.44.68zM6.82 176.15c.48-2.38 1.47-4.47 3.47-5.92l.2-.4a9.93 9.93 0 0 1 9.67-.7c.6.31 1.2.56 1.86.72a3.98 3.98 0 0 1 2.75 2.51c.27.78.38 1.58.43 2.4l.46.99c.4.34.78.62 1.1.94.3.3.56.67.84 1 .17.22.28.46.34.73.16.84.22 1.69.14 2.55-.03.43-.2.8-.5 1.1-.45.47-.88.95-1.43 1.33l-.18.87c-.33.38-.75.7-1.17 1-1.35.95-2.8 1.7-4.41 2.14-4.4 1.26-9.08-.16-12.86-2.48l-1.54-.95a9.38 9.38 0 0 1-1.8-1.5c-.28-1.05-.16-2.08-.18-3.14 0-.45.1-.86.4-1.21.6-.7.94-1.45 1.89-1.76.17-.06.34-.14.52-.22zm2.51 7.82c2.5 1.75 6.75 2.39 9.74 1.89 1.92-.37 3.92-1 5.3-2.47.33-1.33.33-2.68.21-4.03-.1-1.18-.17-1.36-.36-1.69a3.5 3.5 0 0 1-1.34.62 6.64 6.64 0 0 1-4.45-.35c-.45-.22-.8-.53-1.02-.98-.05-.08-.05-.21-.18-.22-.03.03-.08.05-.09.08a2.53 2.53 0 0 1-1.56 1.44c-1.03.4-2.08.58-3.18.44-1.13-.09-2-.27-2.87-1.06-.07-.06-.16-.1-.25-.15-.5 1.1-.48 4.8.05 6.48zm3.65-6.78v-.02c.23-.02.46-.02.69-.06.38-.07.77-.14 1.15-.27.81-.26 1.07-.99 1-1.8l-.15-1.61c-.02-.23-.04-.46-.08-.68-.19-.98-1.05-1.23-1.93-1.1a7.78 7.78 0 0 0-2.97.89.79.79 0 0 0-.42.71c-.02.52 0 1.04.08 1.56.16 1.03.51 2.18 1.7 2.31.3.04.62.05.93.07zm5.54-5.1c0 .91.11 1.84.19 2.78.05.9.43 1.63 1.35 1.87a5 5 0 0 0 1.73.16c2.02-.02 1.7-2.46 1.52-3.86-.07-.52-.35-.83-.8-1.03a8.63 8.63 0 0 0-2.86-.6c-.47.02-.86.15-1.13.69zM4.27 118.65c-.28-1.26-.33-2.5-.27-3.78.35-.62.74-1.24 1.22-1.79.22-.25.5-.43.8-.57l.6-.26.12-.68a9.9 9.9 0 0 1 1.4-3.58c.25-.54.63-.97 1.1-1.34.5-.38.53-.45.76-.91a9.97 9.97 0 0 1 10.06-.96c.33.14.66.23 1 .32 2.74.56 3.56 2.25 3.84 4.87l.59 1.08c.87.38 1.43 1.11 2.02 1.81.13.16.23.36.29.55.28 1.06.4 2.13.21 3.24a9.26 9.26 0 0 1-1.73 1.9l-.15.9c-5.15 5.14-12.22 4.9-18.3 1.56-.56-.31-1.12-.63-1.7-.93-.68-.36-1.25-.88-1.86-1.43zm5.19 1.23c2.56 1.6 6.67 2.06 9.6 1.48 1.95-.42 4.08-1.18 5.4-2.73.28-1.49.25-3.1-.09-4.8-.06-.32-.07-.66-.28-.95-.1.05-.17.09-.23.14-.5.41-1.11.54-1.72.68a6.44 6.44 0 0 1-3.4-.1c-.7-.22-1.3-.56-1.61-1.27-.02-.04-.05-.06-.1-.12l-.14.28c-.19.52-.54.88-1 1.15a6.87 6.87 0 0 1-4.16.81c-.9-.08-1.71-.35-2.4-.94-.06-.05-.13-.12-.22-.05-.4 1.21-.24 4.51.35 6.42zm6.08-9.13c-.1-.64-.2-1.77-.41-2.55-.18-.62-.83-.9-1.44-.86a8.7 8.7 0 0 0-3.05.85c-.46.22-.8.55-.74 1.1.04.46.07.92.16 1.37.24 1.04.52 2.05 1.73 2.25.6.1 1.16 0 1.74-.1.34-.05.69-.15 1.01-.29.76-.3 1.03-.74 1-1.77zm2.6-3.28c-.06.34-.01.67.03 1 .06.58.14 1.15.22 1.73l.11.61c.3 1.47 2.05 1.57 3.25 1.4 1.85-.22 1.4-2.57 1.17-3.88-.14-.71-.6-.95-1.24-1.14-.81-.2-1.63-.33-2.47-.32-.44 0-.8.15-1.07.6zM21.74 681.83c.28.37.36.56.68.79.6.43 1.04 1 1.42 1.63.3.5.6 1 .83 1.54.34.8.52 1.62.71 2.48.64.3 1.15.43 1.6 1.02l.9 1.2c.12.18.18.37.2.59.03.93-.06 1.87-.09 2.8-.01.25-.07.5-.11.78a9.35 9.35 0 0 1-2 1.56c-.42.22-.87.4-1.2.76-3 1.73-6.44 2.91-9.92 2.74a14.4 14.4 0 0 1-8.65-3.77l-.15-.78a9.3 9.3 0 0 1-1.56-1.49c-.27-.3-.4-.62-.4-1.01-.04-.82 0-1.63.14-2.43.07-.4.2-.76.5-1.06.57-.62 1.06-1.37 1.92-1.65.15-.3.3-.6.42-.9.07-2.9 1.02-4.69 4-5.24.27-.06.53-.13.77-.25 1.67-.79 3.5-1.17 5.34-1.01 1.7.23 3.27.78 4.65 1.7zm1.18 7.66c-.08.05-.2.1-.28.18-.3.25-.64.46-1 .62-1 .38-2.67.45-3.7.22-1.1-.27-2.4-.67-2.79-1.85-.03-.08 0-.2-.12-.24-.04.04-.08.06-.1.1-.25.7-.8 1.1-1.47 1.33-1.53.52-2.32.44-3.87.16-.52-.08-1-.26-1.44-.57-.07-.05-.14-.15-.26-.1-.53 1.22-.7 4.38-.2 5.87a9 9 0 0 0 3.72 2.02c2.24.69 4.62.83 6.92.37 1.34-.22 2.62-.65 3.83-1.28.24-.13.47-.26.66-.48.05-.24.12-.48.16-.72.26-1.73.35-3.5.15-5.23-.02-.14-.01-.3-.2-.4zm-.95-4.71c-.43-.41-.89-.7-1.49-.86-.86-.23-1.73-.49-2.63-.43-.57.02-1.03.55-1.1 1.1-.14.84-.24 1.69-.27 2.54-.01.63.2 1.16.77 1.45.71.37 1.69.52 2.48.52 1.4-.03 1.74-.63 2.03-1.49.28-.8.31-1.63.3-2.46-.01-.12-.06-.24-.09-.37zm-8.12-.8c-.23-.52-.6-.73-1.1-.73-.86 0-1.7.11-2.53.36l-.46.18c-.42.17-.66.47-.75.92-.16.8-.2 1.6-.12 2.41.07.51.27 1.07.78 1.27.2.09.43.17.65.2.67.08 1.33.04 1.98-.15 1.15-.33 1.25-1.22 1.36-2.27l.19-2.18zM6.88 216.48l-.18-.43a8.5 8.5 0 0 1-2.57-2.1c-.08-.63-.02-3.26.1-3.98.36-.5.78-1.02 1.26-1.49.25-.25.55-.43.9-.54.18-.05.35-.12.54-.19l.17-.46c.2-.7.46-1.38.8-2.04.08-.18.15-.38.19-.58.23-1.5 1.42-2.27 2.76-2.77l.2-.34a10.06 10.06 0 0 1 10.43.22l.22.2c1.74.56 3.02 1.63 3.15 3.54.06.72.24 1.39.55 2.03.1.2.17.43.26.65 1.12.34 1.65 1.42 2.32 2.27.2 1.24.17 2.46 0 3.67-.27.45-.67.77-1.04 1.09-.38.32-.8.6-1.24.92l-.14.6c-5.87 4.5-12.84 4-18.68-.27zm16.93-.6c.28-.72.33-1.4.38-2.05.11-1.21.05-2.42-.1-3.62-.01-.12-.06-.23-.1-.36-.08.03-.15.03-.2.06-.6.49-1.3.7-2.07.75a6.35 6.35 0 0 1-3.95-.61c-.5-.26-.86-.64-1.04-1.19-.03-.1-.02-.21-.17-.27-.35 1.32-1.6 1.68-2.79 1.92-.85.18-1.7.08-2.54-.04A3.86 3.86 0 0 1 9 209.44c-.04-.04-.1-.05-.2-.08-.47 1.22-.63 5.1-.1 6.3 1.57 1.28 3.59 1.87 5.56 2.2 1.6.3 3.24.3 4.84 0 1.7-.31 3.34-.93 4.7-1.98zM10.03 204.7a6.22 6.22 0 0 0 .14 3.12c.25.84.98 1.14 1.8 1.17 1.46.04 3.27-.05 3.27-1.93l-.02-2.06c0-.61-.28-1.23-.92-1.4-.64-.18-1.28-.03-1.92.07-.7.14-1.95.35-2.35 1.03zm8.12-.4c-.01.08-.04.18-.04.28v2.43c0 .82.3 1.55 1.11 1.84a4.9 4.9 0 0 0 2.52.25c.75-.1 1.1-.66 1.26-1.37a5.7 5.7 0 0 0 .14-1.73c-.03-.41-.01-.84-.2-1.24-.62-.79-2.35-1.04-3.32-1.17-.61-.07-1.2.08-1.47.7zM21.64 521.98c1.79.55 3.05 1.6 3.21 3.53.07.72.23 1.4.54 2.04.1.2.17.42.26.65 1.11.33 1.68 1.44 2.33 2.28.2 1.26.17 2.46 0 3.7a7.93 7.93 0 0 1-2.26 1.91l-.16.65c-5.85 4.55-12.78 4-18.64-.21l-.24-.49a8.46 8.46 0 0 1-2.55-2.09c-.08-.69-.02-3.28.1-3.98.33-.46.71-.92 1.13-1.36.3-.32.67-.56 1.1-.69l.48-.17c.05-.16.12-.3.16-.47.2-.7.46-1.38.8-2.03.09-.18.16-.38.19-.59.24-1.5 1.43-2.25 2.76-2.76l.21-.34a9.97 9.97 0 0 1 10.1.03c.1.06.22.11.31.19.08.06.14.16.17.2zm-12.83 7.36c-.3.83-.34 1.66-.4 2.48-.09 1.27-.1 2.54.26 3.83 2.12 1.68 5.28 2.39 7.95 2.46 2.44-.07 5.35-.65 7.23-2.3.21-.64.3-1.28.34-1.92a17 17 0 0 0-.1-3.74c-.02-.1-.07-.2-.1-.3-.09.03-.15.04-.2.08-.57.46-1.23.69-1.95.73-1.4.23-2.87.06-4.13-.63a1.99 1.99 0 0 1-.98-1.16c-.03-.1-.03-.21-.15-.26-.02.03-.05.06-.06.1-.2.72-.7 1.16-1.37 1.43-.95.37-1.92.56-2.94.47-1.16-.11-2.3-.27-3.17-1.11-.06-.06-.13-.1-.23-.16zm1.21-4.6a6.2 6.2 0 0 0 .12 3.03c.22.7.71 1.1 1.43 1.21.87.11 1.76.08 2.6-.21.73-.24 1.07-.93 1.07-1.67l-.03-2.12c-.04-1.07-.67-1.48-1.7-1.43-.94.11-1.9.21-2.79.6-.27.1-.51.27-.7.59zm8.1-.36.01 2.86c0 .2.06.41.1.61.3 1.14 1.86 1.32 2.84 1.35a3 3 0 0 0 .86-.13c.4-.11.7-.36.87-.75.4-.85.35-1.78.33-2.7-.02-1-.6-1.3-1.46-1.6a11.3 11.3 0 0 0-1.95-.4c-.66-.08-1.3.01-1.6.76zM25.15 367.73l.54.19c.42.14.79.37 1.08.7l1.1 1.3c.1 1.31.15 2.62.14 3.96a8.28 8.28 0 0 1-2.57 2.12l-.16.48a16.83 16.83 0 0 1-9.54 3.46 15.4 15.4 0 0 1-9.12-3.16l-.18-.64a8.49 8.49 0 0 1-2.3-1.87c-.19-1.24-.2-2.5-.04-3.77.36-.55.74-1.07 1.17-1.55.31-.34.5-.45 1.23-.8.15-.37.32-.77.45-1.18.06-.16.05-.33.05-.5.05-2.5.94-3.78 3.36-4.5 1.3-.97 3-1.5 4.59-1.73 2.11-.27 4.14.34 6.01 1.27l.25.4c1.17.5 2.17 1.12 2.57 2.4.24.72.62 1.37.9 2.06.17.42.3.86.47 1.36zM8.2 375.85c.87.86 2.48 1.49 3.67 1.76 1.42.29 2.87.55 4.33.47a14.1 14.1 0 0 0 6.61-2.05c.25-.16.49-.32.63-.54.22-.94.22-1.86.21-2.78 0-1.06-.09-2.12-.3-3.16-.01-.1-.08-.17-.13-.28l-.22.18c-.57.53-1.22.86-2 .97a6.75 6.75 0 0 1-4.27-.38c-.72-.3-1.06-.78-1.27-1.52l-.06.03-.05.12c-.17.75-.67 1.22-1.36 1.51-.83.37-1.7.58-2.6.56-1.03-.06-2.13-.05-3-.68-.1-.07-.21-.11-.32-.17a12.3 12.3 0 0 0 .13 5.96zm8.58-9.91c-.01 1.24-.1 2.53 1.38 2.9.76.2 1.53.23 2.3.13 1.88-.23 1.73-2.62 1.6-4.04-.05-.3-.18-.56-.47-.69-.3-.14-.6-.29-.92-.38a9.4 9.4 0 0 0-2.27-.37c-.8-.07-1.47.3-1.58 1.14-.06.43-.04.87-.04 1.31zm-2.8-.09h-.06v-1.12c.02-.65-.59-1.07-1.07-1.08-.17 0-.34-.02-.5 0-.8.12-1.6.25-2.36.57-.56.27-1.05.44-1.07 1.15-.01.9-.1 1.8.2 2.66.2.67.67 1.03 1.36 1.11.75.09 1.5 0 2.21-.23.7-.22 1.13-.7 1.2-1.44.05-.54.06-1.08.1-1.62zM6.6 400.46c.05-.2.1-.35.13-.52.14-.65.34-1.28.58-1.9.08-.22.14-.44.16-.67.11-1.57 1.26-2.44 2.6-3.06l.17-.34a11.17 11.17 0 0 1 5.31-1.81c1.76.04 3.48.39 5.06 1.21.1.07.19.16.28.24.7.2 1.4.42 1.99.88 1 .71 1.3 1.76 1.49 2.91.04.25.11.48.23.7l.67 1.36.41.15c.3.1.57.27.79.5.39.4.77.81 1.13 1.24.12.14.22.32.25.5.2 1.04.3 2.1.24 3.16 0 .12-.05.24-.08.39a8.48 8.48 0 0 1-2.07 1.96l-.1.63c-.28.33-.62.6-.98.85a16.45 16.45 0 0 1-4.62 2.43c-4.38 1.47-9.21.3-13.04-2.1L7 408.8c-.47-.27-.98-.52-1.44-.84-.46-.31-.87-.7-1.31-1.07-.18-1.31-.15-2.62-.24-3.92.51-.8 1.14-1.91 2.02-2.26l.56-.24zm9.64.02-.1.3c-.2.98-1.06 1.4-1.9 1.72a7.3 7.3 0 0 1-3.5.33c-.7-.07-1.34-.3-1.9-.74-.07-.06-.17-.1-.26-.14-.43 1.42-.24 4.92.34 6.26 2 1.4 4.54 1.77 6.93 1.87 1.49.05 2.93-.24 4.35-.68 1.26-.4 3.03-1.2 3.87-2.23.3-1.84.12-4.86-.38-5.92-.42.3-.8.65-1.31.8-1.11.33-2.23.5-3.39.31-1-.16-2.2-.5-2.6-1.55l-.15-.33zm-6.83-3.23c-.12.98-.02 2.08.36 3.02.24.6.68.96 1.3 1.04 1 .13 2 0 2.9-.47.7-.33.83-1.06.8-1.76l-.18-2.05c-.14-1.13-.93-1.42-1.96-1.23-.93.2-1.88.4-2.71.88a1 1 0 0 0-.51.57zm8.05.05h.04c.02.71.1 1.42.22 2.11.13.66.54 1.07 1.18 1.25.79.22 1.6.27 2.4.08 1.75-.36 1.38-2.86 1.13-4.17a.74.74 0 0 0-.41-.52 7.06 7.06 0 0 0-3.7-.63c-.55.13-.9.59-.86 1.07.02.27 0 .54 0 .81zM4.02 565.33c-.06-1.25.05-2.47.25-3.7a9.3 9.3 0 0 1 1.5-1.65c.19-.16.43-.25.65-.36.15-.08.3-.12.48-.18l.55-1.2c.1-.56.17-1.08.27-1.59.31-1.79 1.76-2.69 3.4-3.06a10.4 10.4 0 0 1 4.48-1.38c2.2-.16 4.36.55 6.2 1.73.07.12.11.27.2.37.12.11.27.2.42.28.97.47 1.8 1.31 2 2.4.05.25.12.5.21.72.34.79.61 1.6.78 2.43.02.1.06.2.1.3.15.08.3.15.46.2.43.18.8.45 1.08.83l.98 1.35c.01 1.34-.05 2.65-.17 3.96a8.33 8.33 0 0 1-2.68 1.9l-.21.49a17.53 17.53 0 0 1-6.2 2.5c-4.45.94-9.06-.65-12.43-3.6l-.13-.65a8.05 8.05 0 0 1-2.2-2.1zm11.78-4.82c-.05.08-.1.14-.13.22-.36 1.19-1.7 1.48-2.78 1.66a7.99 7.99 0 0 1-3.15-.29c-.57-.14-.96-.48-1.43-.84-.07.2-.13.34-.17.5-.35 1.77-.6 3.79-.11 5.56 2.02 1.95 5.9 2.89 8.66 2.76 2-.14 4-.49 5.76-1.47.27-.14.55-.3.75-.51.52-1.7.68-5.23.27-6.21-.61.42-1.23.86-2 .9-1.58.19-2.94.17-4.38-.58a2.06 2.06 0 0 1-1.23-1.56c0-.04-.03-.07-.06-.14zm6.82-3.33c-.17-.36-.4-.5-.64-.63a8.03 8.03 0 0 0-3.1-.87 1.25 1.25 0 0 0-1.42 1.12c0 .1-.04.2-.05.3-.05.55-.1 1.08-.13 1.62-.02.4-.03.79.07 1.18.1.4.32.74.68.92 1.01.5 2.1.67 3.21.43.64-.16.98-.69 1.15-1.28.31-.93.3-1.88.23-2.79zm-10.8 3.7c1.15-.12 2.3-.2 2.54-1.58.15-.9.17-1.82.2-2.73.03-.55-.3-.93-.85-1.07-.59-.17-1.2-.03-1.79.04-.58.07-1.14.2-1.68.43-.42.2-.65.5-.72.94a6.48 6.48 0 0 0 .01 2.66c.26 1.1 1.3 1.29 2.28 1.32zM6.33 248.05l-.1-.57c-.82-.67-1.62-1.25-2.2-2.16-.08-1.22.05-2.46.24-3.71.44-.58.91-1.13 1.47-1.6.2-.17.46-.28.7-.4.13-.06.28-.1.44-.15l.57-1.23c.05-.13.05-.29.07-.43.08-.45.14-.9.24-1.35.42-1.79 1.8-2.46 3.47-2.91 1.5-.97 3.53-1.33 5.32-1.38 1.9.15 3.68.74 5.29 1.82.04.3.27.45.54.58.46.22.86.5 1.21.87.42.43.71.93.82 1.52.06.35.18.68.32 1 .36.8.56 1.62.76 2.48l.49.22c.98.4 1.48 1.38 2.06 2.21 0 1.3-.05 2.58-.18 3.9-.72.89-1.71 1.4-2.71 2l-.18.41a17.46 17.46 0 0 1-7.51 2.7c-4.04.42-8.11-1.16-11.13-3.82zM8 247.3c1.75 1.64 4.15 2.31 6.46 2.67 1.57.26 3.17.09 4.72-.21 1.19-.23 3.18-.88 4.06-1.71.46-1.78.54-3.6.4-5.44-.02-.24.02-.5-.17-.74-.64.46-1.28.89-2.08.93-.54.04-1.08.08-1.62.08-.95 0-1.84-.27-2.7-.7a2.05 2.05 0 0 1-1.21-1.55c0-.03-.04-.06-.07-.12-.05.09-.1.15-.13.23-.43 1.39-2.46 1.7-3.73 1.7a9.43 9.43 0 0 1-1.91-.27c-.5-.12-.94-.32-1.34-.64-.11-.09-.23-.16-.4-.27A12.48 12.48 0 0 0 8 247.3zm14.62-10.16c-.38-.56-.9-.78-1.43-.96-.69-.23-1.4-.4-2.12-.49a1.81 1.81 0 0 0-.37-.02c-.9.06-1.25.73-1.3 1.55-.04.41-.08.82-.1 1.24-.08 1.05-.1 2.1 1.06 2.52.77.29 1.57.41 2.39.36.8-.05 1.36-.46 1.6-1.25a7.1 7.1 0 0 0 .27-2.95zm-12.93-.77c-.04.1-.1.2-.11.3a5.83 5.83 0 0 0-.06 2.84c.15.67.56 1.08 1.24 1.24.79.18 1.57.13 2.34-.07a1.61 1.61 0 0 0 1.26-1.4c.15-.92.16-1.85.22-2.79-.07-.92-.9-1.1-1.67-1.06-1 .12-2.51.15-3.22.94zM6.28 727.74l-.1-.58-.2-.17c-.65-.4-1.15-.95-1.66-1.5-.2-.2-.3-.44-.31-.73-.05-.98 0-1.95.14-2.92.03-.15.08-.28.13-.47.69-.74 1.26-1.77 2.33-2.06l.49-1.05c.09-.67.16-1.27.26-1.87.27-1.81 1.72-2.9 3.43-3.25.38-.08.72-.2 1.06-.37 1.4-.67 2.88-.96 4.41-1.02 1.91.09 3.74.67 5.37 1.7l.16.32c1 .48 1.97 1.21 2.24 2.36.04.16.1.32.18.46.5.92.85 1.9 1.07 2.92.02.1.06.2.1.31l.45.2c.48.17.88.46 1.19.87l.95 1.25c.1.83.04 3.3-.1 4.06a8.4 8.4 0 0 1-2.66 1.93c-.2.29-.48.5-.8.67a18.8 18.8 0 0 1-7.09 2.44c-3.98.5-7.99-.96-11.04-3.5zm1.6-.86c1 .97 2.2 1.5 3.49 1.9a14.66 14.66 0 0 0 11.08-.93c.24-.13.47-.26.67-.5a18 18 0 0 0 .23-5.93c-.01-.14-.02-.29-.2-.37-.64.5-1.33.94-2.16 1-1.6.17-2.78.2-4.26-.53a2.1 2.1 0 0 1-1.24-1.4c-.02-.07-.03-.16-.15-.13-.35.78-.62 1.1-1.28 1.37-1.56.7-2.89.58-4.52.25-.4-.08-.75-.25-1.08-.48-.11-.08-.2-.2-.41-.2a9.1 9.1 0 0 0-.4 2.3c-.08 1.23-.1 2.45.23 3.65zm14.42-9.3-.04-.94a.75.75 0 0 0-.37-.62 7.95 7.95 0 0 0-3.32-1c-.14-.01-.29 0-.43.01-.64.07-1.1.58-1.14 1.21-.07.73-.13 1.45-.18 2.18-.02.16.02.33.04.5.05.64.4 1.07 1 1.3.82.33 1.69.45 2.57.37 1.54-.08 1.79-1.76 1.87-3.02zm-8.2-1.95c-.28-.58-.72-.76-1.26-.74-.9.03-1.78.18-2.63.47-.48.17-.96.42-1.03.97-.2 1.36-.49 3.78 1.42 3.91.65.06 1.3.03 1.92-.13 1.09-.28 1.37-.95 1.46-2 .07-.82.13-1.65.11-2.48zM4.22 85.98c-.15-1.26-.16-2.55-.2-3.86.39-.61.79-1.22 1.29-1.75.22-.23.48-.4.77-.52.2-.07.38-.16.55-.24l.48-1.77c.06-.18.12-.36.2-.53.17-.38.28-.77.32-1.2.08-1.07.86-1.92 1.75-2.43.5-.26.97-.57 1.45-.85a9.75 9.75 0 0 1 8.93-.6c.39.16.78.28 1.19.38a5.2 5.2 0 0 1 1.83.76c1.3.88 1.5 1.93 1.74 3.37.04.19.05.38.13.54.25.5.52 1 .8 1.52.94.26 1.55 1.14 2.17 1.86.1.13.2.28.23.43.2 1.18.4 2.39.14 3.59a8.48 8.48 0 0 1-2 1.89l-.13.55a14.7 14.7 0 0 1-14.55 2.85c-1.49-.5-3-1.05-4.28-1.98-.16-.13-.36-.22-.54-.3a8.64 8.64 0 0 1-2.27-1.71zm19.88.3c.2-.74.21-1.44.22-2.12 0-.66-.04-1.33-.13-2-.21-1.6-.23-1.6-.46-1.97-.51.39-.96.68-1.6.8-1.6.37-3 .43-4.52-.28-.5-.22-.86-.58-1.06-1.1-.03-.07-.02-.2-.17-.22-.25.86-.54 1.21-1.33 1.62a6.59 6.59 0 0 1-3.77.62 4.05 4.05 0 0 1-2.33-.8c-.08-.06-.16-.13-.31-.03-.32 2.1-.28 4.2.3 6.3.22.15.44.32.68.43 1.6.78 3.33 1.2 5.1 1.32 3.02.36 7.1-.47 9.38-2.57zM9.5 76.86c.04 1.33.28 3.24 1.93 3.26.78.03 1.54-.1 2.28-.35.58-.18 1.1-.59 1.18-1.23.1-.64.02-1.29-.05-1.93-.04-.33-.07-.66-.14-.99-.2-.94-1.05-1.1-1.88-.96-.92.16-1.84.4-2.67.83-.45.23-.7.58-.65 1.1v.27zm12.9-1.6c-.65-.76-2.6-.96-3.58-1-.54-.01-.96.21-1.19.74l-.02.25c.06.79.1 1.57.17 2.36.03.26.1.53.18.79.13.44.44.74.86.93a5.1 5.1 0 0 0 2.45.28c.76-.08 1.2-.48 1.36-1.17a5.7 5.7 0 0 0 .03-2.23c-.06-.32-.07-.66-.25-.96zM25.38 751.34l.52.2c.33.14.63.33.87.59.46.49.86 1.02 1.2 1.56.08.93.04 3.3-.06 3.95a8.77 8.77 0 0 1-1.88 1.57c-.34.2-.7.34-.94.69-.08.13-.26.2-.4.28a18.38 18.38 0 0 1-6.59 2.42c-4.08.68-8.3-.68-11.58-3.14l-.17-.41c-.42-.32-.83-.6-1.2-.94-.38-.33-.71-.7-1.06-1.05-.16-1.14-.05-2.25.03-3.39.03-.3.13-.56.33-.79.6-.67 1.1-1.54 2.02-1.78l.2-.1.62-1.43c.2-2 .3-3.37 2.24-4.38.48-.25 1-.42 1.53-.54.3-.07.6-.17.88-.3 1.32-.63 2.73-.88 4.17-.97 1.91.07 3.75.63 5.38 1.62.18.1.37.2.56.28.38.18.73.4 1.05.67a3.16 3.16 0 0 1 1.16 2.08c.03.24.07.49.18.72.38.72.64 1.49.84 2.28.02.1.06.2.1.31zm-1.95 1.15c-.22.02-.34.15-.47.25-.46.34-.98.54-1.54.63-1.5.23-2.75.25-4.16-.37-.64-.27-1.23-.7-1.42-1.39-.03-.12-.08-.23-.14-.4-.22.66-.4 1.1-1.02 1.43-1.46.8-3 .82-4.6.5a4.06 4.06 0 0 1-1.76-.76c-.57.96-.67 4.72-.17 6.15.23.26.53.45.83.63a14.56 14.56 0 0 0 6.82 1.74c2.34 0 4.73-.47 6.8-1.58.28-.14.55-.3.75-.52.46-1.2.48-5.15.08-6.3zm-6.27-3.75c0 1.21-.2 2.38 1.1 2.85.78.29 1.59.39 2.4.35.81-.03 1.34-.46 1.58-1.26.27-.85.28-1.72.21-2.6a.87.87 0 0 0-.4-.67 7.38 7.38 0 0 0-3.38-.97c-.9-.07-1.4.48-1.44 1.27l-.07 1.03zM9.4 747.6c-.22.9-.25 2.08 0 2.97.2.7.66 1.1 1.38 1.15.75.06 1.5 0 2.22-.23a1.65 1.65 0 0 0 1.24-1.49c.12-.95.11-1.9.1-2.8-.52-1.31-2.08-.72-3.12-.56-.6.13-1.49.38-1.82.96zM4.1 788.97c-.15-1.28-.01-2.53.04-3.8a10 10 0 0 1 1.47-1.75c.17-.15.39-.25.59-.35.14-.08.3-.13.45-.19.23-.55.46-1.08.67-1.62.07-.17.08-.36.1-.55.06-.45.1-.9.17-1.36.24-1.57 1.68-2.59 3.13-2.97.86-.22 1.71-.48 2.56-.76.9-.3 1.84-.38 2.77-.46.26-.03.53.04.8.07 1.2.12 2.34.41 3.42.92.2.1.43.16.64.24 2.08.64 3.4 1.63 3.5 3.94l1.04 2.7c.03.02.06.06.1.07 1.16.3 1.73 1.37 2.44 2.25.05 1.27.05 2.54 0 3.77a7.36 7.36 0 0 1-1.75 1.63c-.4.24-.77.5-1.15.75a18.11 18.11 0 0 1-5.86 2.4c-4 .92-8.13-.03-11.63-2.08-.41-.25-.84-.46-1.14-.86-.06-.08-.17-.13-.26-.18-.82-.44-1.44-1.11-2.1-1.8zm19.37-5.06c-.14.09-.27.15-.38.23-.45.33-.95.5-1.5.6a6.8 6.8 0 0 1-4.44-.46 2.07 2.07 0 0 1-1.17-1.3c-.02-.08-.04-.16-.16-.15a2.05 2.05 0 0 1-1 1.29c-.95.5-1.98.75-3.06.72-.43 0-.87-.1-1.3-.16-.69-.09-1.33-.3-1.9-.73l-.11-.04c-.24.39-.32.78-.44 2.04-.13 1.44-.12 2.86.26 4.23 2 1.54 4.53 1.97 6.98 2.17 1.54.12 3.07-.1 4.57-.44 1.04-.24 2.99-.9 3.72-1.66.34-1.45.38-2.96.25-4.48-.05-.62-.05-1.24-.32-1.86zm-.9-3.38-.05-.92a.9.9 0 0 0-.51-.8c-.31-.16-.63-.33-.97-.42-.68-.18-1.37-.31-2.07-.45a1.6 1.6 0 0 0-.8.05c-.46.14-.74.45-.8.93-.1.8-.08 1.62-.05 2.43 0 .14.04.29.07.43.1.64.6 1.03 1.19 1.22.74.25 1.5.33 2.27.32 1.5.02 1.7-1.65 1.73-2.8zm-8.05-.48h-.03v-1.06c-.03-.86-.93-1.19-1.67-1.05-.61.12-1.23.22-1.83.38-.34.08-.66.25-.97.4-.4.18-.6.5-.63.93-.08 1.24-.27 3.43 1.43 3.55.81.06 1.62-.03 2.4-.28.68-.22 1.1-.67 1.18-1.38.06-.5.08-1 .12-1.5zM4.12 53.2a54.53 54.53 0 0 1-.01-3.81c.34-.52.7-1 1.1-1.45.3-.34.64-.59 1.07-.74l.33-.14c.25-.68.5-1.34.73-2 .04-.14.04-.3.05-.43l.1-1.06c.19-1.87 1.9-2.88 3.55-3.3.55-.15 1.08-.32 1.6-.52.96-.37 1.97-.54 2.99-.63.69-.06 1.37.07 2.05.18.66.1 1.3.3 1.92.54.2.07.4.12.6.17 1.82.37 3.75 1.3 4.05 3.34l.16 1.1 1.04 2.33c.45.16.95.39 1.27.78l1.1 1.27c.23.78.3 2.96.16 4.02a8.99 8.99 0 0 1-1.97 1.75c-.17.1-.32.25-.49.38-3.95 2.84-9.2 3.92-13.89 2.47-1.74-.5-3.42-1.19-4.94-2.2-.19-.13-.4-.23-.6-.35a7.95 7.95 0 0 1-1.97-1.7zm11.84-6.66c-.26 1-.66 1.33-1.58 1.74-1.71.75-4.18.72-5.77-.33-.03-.02-.07-.01-.11-.02-.25.52-.33.85-.4 2.3-.05 1.36-.02 2.71.4 4.06.58.43 1.24.72 1.92.98a16.19 16.19 0 0 0 9.7.38c.93-.22 3.05-1.01 3.62-1.74.06-.2.1-.4.13-.6.23-1.83.14-3.68-.25-5.47-.02-.07-.07-.14-.1-.2-.1.03-.16.04-.2.08a4 4 0 0 1-1.83.76 6.5 6.5 0 0 1-4.16-.38 2.02 2.02 0 0 1-1.24-1.33c-.01-.05-.06-.1-.13-.23zm1.42-4.02c-.03.9-.05 1.87.05 2.8.1.83.7 1.31 1.48 1.5.71.16 1.44.22 2.17.17.12 0 .25-.03.36-.07.48-.14.77-.48.9-.95.31-1 .28-2 .03-3.01-.01-.04-.04-.07-.07-.12-.64-.77-2.75-1.1-3.73-1.12-.55-.02-.97.2-1.2.8zm-7.98.8a5.9 5.9 0 0 0 .25 2.99c.22.55.66.85 1.26.85.9-.02 1.8-.04 2.64-.41.69-.3.99-.94.97-1.67 0-.52 0-1.04-.02-1.56 0-.2 0-.42-.02-.62-.13-.95-.96-1.12-1.77-1-.96.17-1.94.37-2.8.86-.2.11-.37.26-.5.55zM27.98 817.2c.06 1.26.07 2.5.02 3.73a7.11 7.11 0 0 1-1.64 1.56c-3.23 2.1-7.02 3.56-10.92 3.39a18.07 18.07 0 0 1-8.54-2.72c-.23-.15-.46-.28-.7-.42a8.55 8.55 0 0 1-2.09-1.8c-.12-1.26-.04-2.52.02-3.81.4-.6.86-1.18 1.39-1.68.19-.18.44-.3.68-.43.14-.08.3-.13.4-.17.25-.58.45-1.13.69-1.66.1-.24.14-.47.15-.73.02-.47.05-.95.15-1.42.45-2.16 2.8-2.94 4.72-3.29.18-.03.37-.06.54-.12 1-.34 2.02-.5 3.07-.57 1.18.03 2.36.23 3.48.64.21.07.44.12.66.17 1.78.39 3.89 1.28 4.2 3.3.07.38.11.78.18 1.22.34.77.73 1.57.99 2.47l.37.17c.96.36 1.55 1.34 2.18 2.16zm-19.65 4.75c.58.49 1.25.78 1.93 1.04a16.77 16.77 0 0 0 10 .46c.93-.23 1.83-.58 2.67-1.05.24-.13.47-.26.68-.49a15.6 15.6 0 0 0-.02-6.05c-.01-.11-.1-.2-.15-.32-.09.04-.15.06-.2.1-.51.37-1.1.59-1.72.7-1.57.3-2.92.22-4.37-.5-.58-.26-.98-.69-1.15-1.32-.01-.05-.05-.1-.1-.2-.23.65-.45 1.11-1.08 1.43-1.53.82-3 .88-4.67.52-.52-.08-1-.28-1.44-.57-.08-.05-.17-.08-.26-.12-.56 1.47-.62 4.48-.12 6.37zm14.24-9.74-.07-.95a.92.92 0 0 0-.52-.8 5.5 5.5 0 0 0-.73-.33 9.58 9.58 0 0 0-2.37-.53c-.72-.08-1.46.16-1.51.98-.04.87-.12 1.75.02 2.61.08.67.52 1.14 1.15 1.34.84.28 1.7.38 2.58.33 1.3-.07 1.4-1.68 1.45-2.65zm-8.08-.45v-1.06c0-.57-.5-1.04-1.02-1.06-.2-.01-.42-.02-.62 0a7.86 7.86 0 0 0-3.02.92.84.84 0 0 0-.43.65c-.08.7-.1 1.41.02 2.12.14.74.47 1.47 1.32 1.5.9.06 1.78-.05 2.63-.36 1.21-.41 1.13-1.65 1.12-2.7zM4.11 20.95c-.1-1.29-.05-2.56.03-3.82.36-.57.79-1.09 1.25-1.57.21-.23.47-.4.76-.53l.48-.2c.17-.62.44-1.2.7-1.8.06-.16.06-.35.08-.54.06-.5.09-1 .16-1.49.42-2.28 3-3.04 4.99-3.38.24-.04.49-.08.73-.15a13.5 13.5 0 0 1 2.58-.44c.28-.03.58.03.87.06.79.07 1.56.23 2.32.46.26.08.52.13.79.18 1.86.37 4.1 1.27 4.4 3.38.07.4.11.79.17 1.23.34.77.76 1.56 1 2.46.12.06.24.13.38.18.42.15.77.4 1.06.74l.9 1.11c.14.17.22.36.23.58.05 1.16.07 2.33 0 3.52a8.43 8.43 0 0 1-1.9 1.68 21.3 21.3 0 0 1-7.82 2.98c-3.74.56-7.54-.4-10.82-2.18l-1.05-.56a8.44 8.44 0 0 1-2.29-1.9zm19.52.86c.4-2 .31-4.03-.02-6.03-.02-.15-.07-.29-.27-.35-.07.04-.16.08-.24.14-.7.5-1.54.6-2.36.72-1.08.2-2.1-.02-3.12-.38-.82-.3-1.47-.76-1.67-1.68-.15.05-.15.16-.18.25-.16.54-.52.9-1 1.15a6.22 6.22 0 0 1-3.92.64 4.94 4.94 0 0 1-2.12-.68c-.08-.05-.18-.06-.27-.09-.58 1.44-.63 4.79-.09 6.4 2.01 1.45 4.75 1.8 7.16 1.96 2.44.09 6.14-.52 8.1-2.05zM17.3 11.58h-.03l.06 1.18c.04.92.57 1.45 1.42 1.68.7.19 1.42.29 2.16.27.84 0 1.29-.46 1.46-1.26.23-.73.15-1.48.11-2.23a.96.96 0 0 0-.53-.86 8 8 0 0 0-2.6-.82c-.84-.14-1.83-.2-2.01.86-.07.39-.04.78-.04 1.18zm-2.82.05h-.01c0-.33.02-.67 0-1-.05-1.02-.95-1.22-1.8-1.06-.54.1-1.06.21-1.59.34-.43.1-.82.3-1.2.52a.96.96 0 0 0-.5.81c-.05.89-.15 1.8.22 2.65.21.55.7.82 1.28.82.89 0 1.8-.1 2.62-.46.47-.2.77-.56.87-1.07.12-.5.12-1.03.1-1.55z"}),l=(0,n.jsx)("path",{d:"M17.86 630.24c-.33.6-.8.74-1.3.76-.61.04-1.05-.26-1.37-.81.08-.02.15-.05.19-.03.83.41 1.59.29 2.48.08zM13.3 630.22c.11.1.09.18.04.24-.2.25-.46.36-.75.4a1.82 1.82 0 0 1-1.56-.46c-.1-.09-.2-.2-.1-.4.26.02.49.18.75.22.29.04.57.1.86.1.27 0 .53-.06.77-.1zM15.16 310.03c.98.55 1.6.34 2.59.24.06.13 0 .2-.08.28-.5.44-1.3.62-1.9.24a1.32 1.32 0 0 1-.61-.76zM10.95 310.03a5 5 0 0 0 1.62.31c.26 0 .52-.07.76-.1.1.1.07.2.01.24-.14.12-.28.25-.45.32a1.8 1.8 0 0 1-1.9-.42c-.08-.08-.16-.19-.04-.35zM14.16 470.5c.9.17 1.77.25 2.6-.13.15.09.11.19.05.27-.2.28-.5.43-.83.52-.57.16-1.1.05-1.6-.23-.15-.08-.27-.2-.22-.43zM18.67 470c.8.24 1.54.18 2.22-.18.15.11.1.2.04.29-.15.2-.35.35-.58.46-.61.3-1.17.17-1.61-.36-.04-.04-.04-.1-.07-.21zM14.15 150.46c1.28.16 1.42.18 2.68-.12.09.08.03.17-.03.25-.2.26-.47.42-.77.5-.57.14-1.11.09-1.63-.2-.14-.09-.28-.18-.25-.43zM18.62 149.96c1.3.21 1.03.18 2.32-.17.1.06.05.15.01.21-.57.81-1.82.93-2.33-.04zM15.97 663.12a.75.75 0 0 1-.28-.63c0-.43.04-.87.07-1.3 0-.04.05-.07.07-.1l1.7.08c.12.33.13.72.07 1.23-.04.25-.08.49-.31.71-.42.15-.88.18-1.32 0zM12.81 662.98c-.37.14-.67.09-.97.04-.36-.2-.5-.5-.5-.88 0-.41-.04-.83.08-1.23.08-.01.14-.03.2-.02l1.48.18c.07.5.05.97 0 1.44-.03.19-.17.33-.29.47zM13.73 598.24c-.03.3-.2.4-.35.5a1.88 1.88 0 0 1-1.94-.2c-.15-.12-.28-.25-.28-.5.08 0 .15 0 .22.02l.66.2c.44.13.9.14 1.35.03l.34-.05zM18.07 598.36c.06.09.02.16-.04.21-.24.25-.54.39-.87.45-.73.12-1.21-.12-1.61-.8.06-.01.12-.05.16-.03.64.32 1.3.36 2 .19l.3-.05.06.03zM11.13 277.99c.63.2 1.08.36 1.7.36.29 0 .57-.06.9-.1-.03.11-.03.2-.07.25-.14.2-.35.3-.57.36-.64.15-1.23.02-1.74-.4a.7.7 0 0 1-.15-.2c-.03-.06-.03-.12-.07-.27zM18.15 278.34c-.12.3-.32.4-.52.51-.3.17-.62.2-.96.18a1.25 1.25 0 0 1-.74-.3c-.16-.14-.34-.28-.38-.54 1.33.35.8.35 2.6.15zM13.8 342.35c-.03.28-.2.4-.38.5-.63.37-1.56.23-2.08-.28-.09-.08-.18-.18-.09-.33 1.2.27 1.3.28 2.55.11zM15.6 342.1c.87.4 1.68.33 2.46.07.15.09.1.18.06.23-.69.8-1.84.77-2.48-.08-.02-.03-.02-.08-.04-.22zM16.51 438.4c.08.22-.03.32-.13.42-.58.56-1.52.58-2.22.24-.17-.1-.32-.2-.36-.42.06-.02.11-.05.16-.05.1 0 .21.02.31.04.72.16 1.4.1 2.08-.19l.16-.03zM18.32 438.02c.76.1.82.31 2.37-.18.09.11 0 .2-.06.27-.39.49-1.12.8-1.72.5a1.07 1.07 0 0 1-.6-.59zM16.54 502.38c-.08.17-.1.27-.17.34-.57.63-1.67.6-2.35.17-.15-.09-.28-.19-.26-.43.31-.04.6.12.9.13.28.01.57.04.86 0 .3-.02.6-.12 1.02-.2zM20.7 502.05c-.23.53-.67.73-1.17.8-.55.06-.94-.22-1.25-.65l.1-.1c.72.26 1.43.2 2.12-.08.05-.02.12.01.2.03zM13.8 182.45c.44.06.88.12 1.33.16.44.04.86-.1 1.26-.22.15.09.1.2.03.26-.11.12-.24.25-.38.32-.73.36-1.44.29-2.11-.15-.12-.08-.24-.18-.14-.37zM18.3 182.1c.28.05.54.13.8.15.26.02.53-.02.8-.04.25-.03.48-.21.77-.2 0 .25-.15.36-.29.47-.44.36-1.1.5-1.61.19-.23-.14-.3-.23-.47-.57zM16.53 117.96c.07.15 0 .24-.06.32a1.4 1.4 0 0 1-.72.46c-.56.17-1.11.1-1.63-.16-.15-.08-.29-.18-.29-.42.07 0 .15-.03.22-.02.22.03.45.1.68.1.68.01.68.07 1.8-.28zM20.7 117.38c.07.2-.05.3-.15.4-.59.64-1.76.73-2.18-.18.17-.06.31.06.47.07.16.02.33.04.49.04.3 0 .6-.1.9-.19.16-.04.3-.14.46-.14zM17.27 695.25h-.66c-.4-.19-.53-.49-.52-.88.03-.62.04-1.25.06-1.87.01-.23.03-.46.25-.64.44-.05.89.02 1.28.02.2.16.23.32.23.5l-.06 1.99a.94.94 0 0 1-.58.88zM11.96 691.66l1.08.07c.08 0 .16.03.22.04.15.15.15.32.14.49l-.03 2c0 .44-.3.83-.73.85a.9.9 0 0 1-.88-.65 1.49 1.49 0 0 1-.04-.37c0-.6 0-1.2.02-1.8.01-.26.02-.26.22-.63zM15.67 214.4c-.1.15-.12.27-.2.32a1.9 1.9 0 0 1-2.41-.02c-.1-.08-.23-.19-.13-.36 1.9.38 1.54.2 2.74.06zM19.91 214.19c-.03.3-.22.4-.39.51-.28.2-.59.3-.93.3-.28 0-.53-.1-.75-.27-.18-.13-.36-.26-.4-.52 1.24.3 1.25.24 2.47-.02zM15.56 534.41c.08.14 0 .23-.06.3-.2.22-.47.35-.76.4-.57.1-1.11 0-1.6-.33-.14-.1-.26-.2-.23-.44.31-.03.58.17.89.18.29 0 .58.06.87.05.3-.02.6-.1.89-.16zM17.43 534.23c1.42.36 1.67.13 2.4-.02.12.09.06.19 0 .26-.45.48-1.22.72-1.82.39-.25-.15-.48-.31-.58-.63zM14.6 374.42c.1.17.02.27-.07.36-.28.28-.63.4-1.01.43-.47.03-.91-.1-1.3-.36-.12-.08-.23-.19-.2-.4.3-.04.56.12.83.14.3.02.59.04.87.02.3-.03.57-.12.89-.19zM16.51 374.18c1.46.33 1.4.13 2.42-.09.12.09.07.19 0 .26-.62.72-1.9.8-2.42-.06-.02-.02 0-.07 0-.11zM12.97 406.56c1.57.2 1.57.2 2.67-.1.12.08.05.18 0 .26-.52.7-1.68.7-2.38.28a.53.53 0 0 1-.3-.44zM17.43 406.1c.37.05.63.12.89.13.26.01.54-.02.8-.07s.51-.15.77-.23c.09.04.1.11.05.2-.35.49-.84.71-1.44.67-.44-.03-.76-.27-1.07-.7zM11.96 566.14c.6.18 1.12.34 1.73.32.28 0 .56-.08.9-.13-.04.12-.05.2-.09.25-.13.2-.34.31-.56.37-.68.2-1.31.07-1.86-.4-.1-.08-.21-.19-.12-.4zM18.87 566.32c.09.12.04.2-.01.25-.26.26-.57.41-.93.47-.69.12-1.2-.14-1.53-.81.3.03.55.21.84.23.26.02.54.04.8.01.29-.02.57-.1.83-.15zM11.94 246.14c1.4.35 1.07.4 2.59.21.08.08.03.15-.02.21-.15.22-.37.33-.62.4-.66.17-1.27.03-1.8-.4-.1-.1-.2-.2-.15-.42zM16.4 246.21c1.06.32 1.06.32 2.48.12.09.08.04.16-.02.21-.71.75-1.8.67-2.42-.16-.02-.03-.02-.07-.04-.17zM18.26 725v1a.86.86 0 0 1-.47.77.84.84 0 0 1-1.26-.58c-.02-.14-.02-.29-.01-.43l.07-1.75c-.05-1.05 1.4-1.31 1.69-.3.08.42.04.86.05 1.3h-.07zM13.78 724.84c0 .4.02.83-.02 1.24a.78.78 0 0 1-1.13.58c-.28-.13-.49-.35-.5-.66-.02-.77 0-1.53 0-2.3.13-.94 1.42-1.04 1.65-.1.05.4.02.82.03 1.24h-.03zM15.88 85.17c-.04.18-.04.26-.08.32-.52.72-1.67.74-2.39.32-.14-.08-.28-.18-.26-.42.45.04.9.08 1.34.1.45.03.86-.11 1.39-.32zM20.1 84.76c0 .29-.18.4-.34.53-.46.37-1.17.48-1.67.13-.18-.12-.36-.25-.43-.5 1.36.23 1.22.15 2.45-.16zM16.97 756.37c0-.37-.02-.75 0-1.12.06-.98 1.48-1.08 1.68-.14.04.18.05.37.05.55l-.05 1.62c.03.55-.4 1.02-.96.98a.8.8 0 0 1-.76-.77c-.03-.37 0-.75 0-1.12h.04zM14.17 756.31c0 .4.02.8-.01 1.19a.8.8 0 0 1-1.18.61c-.28-.14-.47-.37-.48-.68-.02-.77-.03-1.54 0-2.3.12-.99 1.52-1 1.66 0 .04.4.01.79.02 1.18zM17.18 787.72c0-.4-.03-.79.03-1.18.08-.4.4-.66.79-.68.53-.02.94.44.9.97 0 .62 0 1.24-.02 1.87 0 .16-.03.33-.1.48-.31.75-1.5.64-1.6-.21-.05-.41 0-.83-.01-1.25zM14.4 787.81c0 .37.02.75 0 1.12-.03.4-.33.7-.72.74a.86.86 0 0 1-.96-.83c0-.75-.05-1.5 0-2.24.15-1 1.56-.98 1.67.03.03.4 0 .79.01 1.18zM14.23 50.12c.37.23.52.51.53.87.02.5.05 1 .04 1.5-.01 1.31-1.78 1.35-1.92.06-.04-.5-.05-1-.06-1.5 0-.34.1-.65.48-.89l.93-.04zM17.83 50h.86c.35.15.5.44.53.78.03.54.03 1.09.02 1.63a.9.9 0 0 1-.31.66.93.93 0 0 1-1.57-.75l-.02-1.37c-.01-.38.09-.7.49-.96zM17.24 819.33c.01-.39-.02-.79.02-1.18.14-.86 1.37-.94 1.64-.12.05.15.08.32.08.48v1.69c0 .6-.33 1.13-1 1.06a.8.8 0 0 1-.72-.74c-.03-.4-.01-.8-.01-1.19zM14.5 819.45c0 .39.03.79-.02 1.18-.09.4-.4.65-.8.66-.6.02-.9-.47-.9-1.03l-.03-1.8c0-.17.04-.34.1-.48.3-.7 1.38-.65 1.57.1.04.14.06.29.06.43v.94h.02zM18.08 17.27c.7.2.88.42.9 1.05.02.6.01 1.2 0 1.81 0 .14-.03.3-.08.43a.85.85 0 0 1-1.65-.28v-2.13c0-.5.34-.8.83-.88zM14.5 19.34c0 .35.02.7 0 1.06-.07.9-1.37 1.03-1.64.18a1.3 1.3 0 0 1-.06-.37c-.02-.64-.04-1.28-.04-1.93 0-.52.37-.98.93-.93.34.01.62.22.73.57.05.13.06.28.07.42v1h.01z"}),i[0]=a,i[1]=l):(a=i[0],l=i[1]),i[2]!==r||i[3]!==d||i[4]!==u?(c=(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:d,height:u,viewBox:"0 0 32 832",className:"Negative-module__negative--CW3iF","data-animation-state":r,fill:"currentColor","aria-hidden":!0,children:[a,l]}),i[2]=r,i[3]=d,i[4]=u,i[5]=c):c=i[5],c}try{h.displayName||(h.displayName="CopilotAnimationNegative")}catch{}function f(e){let a,l,c,i,s=(0,t.c)(7),{scale:r,state:o}=e,d=void 0===r?1:r,u=32*d,m=32*d;return s[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)("path",{d:`M24.4234,12.3467c0.3362,0.7559,0.7565,1.5491,0.9952,2.4495c0.1135,0.0555,0.2374,0.1299,0.3706,0.1789 + c0.8842,0.2974,1.3559,1.1355,1.9365,1.8026c0.1649,0.1994,0.2584,0.422,0.2678,0.6836c0.0413,1.1443,0.0624,2.2883,0.0029,3.4631 + c-0.6753,0.7723-1.449,1.4885-2.3765,1.9693c-3.1853,1.8194-6.8046,3.0855-10.5179,2.832c-3.285-0.2064-6.3894-1.461-9.1773-3.1601 + c-0.7035-0.4234-1.253-1.0217-1.8087-1.6122c-0.1135-1.2862-0.0529-2.5526,0.0189-3.8306c0.3847-0.5719,0.8017-1.1182,1.2948-1.597 + c0.2046-0.1987,0.4711-0.3372,0.7201-0.4851c0.141-0.0837,0.3036-0.1308,0.4825-0.2053C6.8,14.1966,7.089,13.5988,7.3427,12.9865 + c0.061-0.1471,0.0493-0.325,0.0672-0.4892c0.0539-0.4957,0.0858-0.9948,0.1633-1.4868c0.4092-2.2852,2.9859-3.047,4.9763-3.3911 + c0.2453-0.0431,0.4933-0.0819,0.7314-0.152c0.8436-0.2484,1.71-0.3751,2.5811-0.435c0.4507-0.031,0.9127,0.0487,1.3652,0.1108 + c0.6186,0.0849,1.2287,0.2162,1.8271,0.4023c0.2772,0.0862,0.5662,0.1347,0.8501,0.1992c1.8413,0.3699,4.0361,1.2775,4.3531,3.3627 + C24.3225,11.4967,24.3631,11.8903,24.4234,12.3467z M15.8919,14.1586c-0.0426,0.066-0.062,0.1308-0.0695,0.1618 + c-0.1831,0.7602-0.7055,1.2032-1.3938,1.4831c-1.2536,0.5223-2.305,0.6827-3.6581,0.464c-0.7066-0.0938-1.3877-0.2665-2.0016-0.6484 + C8.6851,15.567,8.591,15.5313,8.472,15.4736C8.3827,15.6471,8.3226,15.8214,8.2659,16c-0.1095,0.4798-0.1569,0.9623-0.2015,1.4359 + c-0.1387,1.4755-0.1276,2.949,0.2564,4.396c0.9351,0.8712,2.9937,1.4525,4.2539,1.6793c2.5378,0.5104,5.1618,0.4682,7.6677-0.1919 + c1.203-0.2951,2.3396-0.7659,3.3709-1.4657c0.4204-2.0163,0.3328-4.0708-0.0087-6.0888c-0.0525-0.1475-0.1015-0.24-0.2734-0.3328 + c-0.0687,0.0394-0.1607,0.0844-0.2443,0.1417c-0.7293,0.5211-1.6237,0.6161-2.4849,0.735 + c-1.2181,0.1849-2.3555-0.1068-3.4502-0.6074c-0.5734-0.2622-0.9848-0.6881-1.1545-1.3161 + C15.9834,14.3334,15.917,14.2115,15.8919,14.1586z M22.5311,11.9853c-0.0127-0.2285-0.0359-0.4571-0.0357-0.6856 + c0.0004-0.4685-0.2251-0.7932-0.6299-0.9945c-0.2972-0.1477-0.5982-0.3009-0.9145-0.3936 + c-0.8578-0.2411-1.7336-0.4754-2.6331-0.4328c-0.5807-0.0051-0.968,0.5502-0.9921,1.0879 + c-0.0273,0.7684-0.0533,1.5369,0.0271,2.3063c0.0809,0.7746,0.49,1.2587,1.214,1.4984c0.7991,0.2646,1.624,0.3614,2.4603,0.3329 + C22.3974,14.6943,22.5663,13.0471,22.5311,11.9853z M14.4839,11.6733c-0.0015,0-0.0031,0-0.0046,0 + c0-0.354,0.0163-0.709-0.0036-1.0619c-0.0446-0.9827-0.9257-1.2007-1.7562-1.0471c-0.5525,0.0996-1.1022,0.2194-1.6476,0.3531 + c-0.4265,0.1046-0.8221,0.2948-1.1985,0.5215c-0.2862,0.1723-0.4586,0.4217-0.4861,0.7575 + c-0.0976,0.9281-0.1167,1.8906,0.2578,2.7653c0.2175,0.5783,0.8094,0.7647,1.3858,0.7497c0.8479-0.0267,1.7193-0.1092,2.4985-0.4675 + C14.5481,13.8163,14.4949,12.6065,14.4839,11.6733z`}),l=(0,n.jsx)("path",{d:`M18.0801,17.2702c0.613,0,0.884,0.4186,0.9043,1.0525c0.0186,0.5818,0.0107,1.1647,0.001,1.7469 + c0.0028,0.5809-0.3434,1.0967-0.9639,1.0498c-0.3573-0.0341-0.6566-0.2979-0.7439-0.6594 + c-0.0145-0.0602-0.0223-0.1234-0.0226-0.1853c-0.0031-0.7071-0.0137-1.4145-0.0018-2.1214 + C17.2531,17.6478,17.5713,17.2702,18.0801,17.2702z`}),c=(0,n.jsx)("path",{d:`M14.4848,20.4914c0,0.4172-0.4046,0.6532-0.7945,0.6624c-0.6615-0.0026-0.9038-0.3537-0.9038-1.1018 + c-0.0176-0.5595-0.0267-1.1193-0.0327-1.679c-0.0013-0.1231,0.0084-0.2504,0.0389-0.369c0.2189-0.8966,1.5327-0.8795,1.6719,0.0652 + c0.0328,0.2029,0.0225,0.4132,0.0263,0.6202c0.0038,0.2073,0.0008,0.4147,0.0008,0.622 + C14.4974,19.3114,14.4848,20.1128,14.4848,20.4914z`}),s[0]=a,s[1]=l,s[2]=c):(a=s[0],l=s[1],c=s[2]),s[3]!==o||s[4]!==u||s[5]!==m?(i=(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:u,height:m,viewBox:"0 0 32 32",className:"Static-module__static--XPULt","data-animation-state":o,fill:"currentColor","aria-hidden":!0,children:[a,l,c]}),s[3]=o,s[4]=u,s[5]=m,s[6]=i):i=s[6],i}try{f.displayName||(f.displayName="CopilotAnimationStatic")}catch{}function k(e){let a,l,c,i=(0,t.c)(6),{scale:s,state:r}=e,o=void 0===s?1:s,d=32*o,u=2240*o;return i[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)("path",{d:"M25.58 495.73c1.33.67 1.62.95 2.53 2.37.17 1 .2 2.39.07 3.78a7.17 7.17 0 0 1-2.33 2l-.34.58a16.37 16.37 0 0 1-6.47 2.97c-4.2.96-8.65-.42-12.08-2.9l-.36-.65a7.6 7.6 0 0 1-2.34-2.03c-.07-1.22-.04-2.46.02-3.68.8-1.14 1.2-1.81 2.53-2.4.24-.24.3-.57.4-.88.13-.4.32-.77.35-1.2.17-1.61.46-2.55 1.9-3.44.18-.1.37-.2.56-.27.47-.18.9-.42 1.34-.66 1.4-.8 2.92-1.18 4.52-1.32.24-.02.5-.02.75 0 1.46.15 2.87.47 4.18 1.17.18.1.39.17.54.3.28.27.6.43.96.57a3 3 0 0 1 .44.23c.86.52 1.5 1.23 1.68 2.23.12.66.38 1.27.62 1.89.1.27.18.55.29.82.07.19.17.37.24.52zM8.55 503.5c1.49 1.3 3.25 1.75 5.1 2.1 3.16.6 7.5.04 10.02-2.08.21-.41.27-.78.3-1.16a22.8 22.8 0 0 0-.04-4.11 2.76 2.76 0 0 0-.15-.6c-.02-.06-.12-.1-.18-.15-.07.03-.16.04-.23.09a3.81 3.81 0 0 1-2.08.75 2.97 2.97 0 0 0-.37.05 6.03 6.03 0 0 1-2.95-.3 2.72 2.72 0 0 1-1.78-1.44c-.02-.03-.06-.04-.12-.07-.09.13-.2.26-.27.4-.24.42-.6.69-1.03.88-.84.4-1.73.63-2.65.6-1.17-.04-2.33-.15-3.34-.84-.04-.02-.09-.01-.13-.02-.23.34-.27.4-.3.65-.17 1.75-.28 3.52.2 5.25zm9.04-11.32c-.12.92-.1 1.88-.04 2.83.05.87.59 1.44 1.44 1.65a6 6 0 0 0 2.34.08c.53-.1.89-.42 1.1-.91.38-1 .36-2.13.21-3.1-.14-.31-.3-.5-.53-.62a7.69 7.69 0 0 0-3.36-.77c-.54-.03-.92.36-1.16.84zm-6.9 4.52c.17.03.41.1.66.1 1.16.04 2.91-.02 3.2-1.44.2-.99.15-1.98.05-2.97a1.07 1.07 0 0 0-.55-.8 1.92 1.92 0 0 0-1.07-.17c-.37.05-.75.08-1.11.16-.8.2-2.02.37-2.29 1.3a9.95 9.95 0 0 0-.05 1.7 4 4 0 0 0 .18.97c.14.51.42.9.98 1.15zm-3.71-24.05-.33-.6c-.85-.62-1.73-1.15-2.36-2.05a25.72 25.72 0 0 1 0-3.64 5.28 5.28 0 0 1 2.62-2.55c.31-.77.63-1.58.72-2.46a3.5 3.5 0 0 1 1.48-2.76c.17-.13.34-.26.53-.33.79-.28 1.48-.75 2.23-1.1a9.99 9.99 0 0 1 3.35-.96l1.03-.12c.78.12 1.61.16 2.42.38.81.22 1.59.51 2.32.9.3.15.53.4.82.57.28.16.6.26.9.42.9.53 1.54 1.28 1.74 2.32.1.59.3 1.12.53 1.66.13.3.22.63.34.94.07.2.16.38.23.54a5.18 5.18 0 0 1 2.61 2.52c.14 1.15.1 2.35.07 3.54a7.02 7.02 0 0 1-2.4 2.15l-.36.6c-5.84 4.28-12.64 4.2-18.5.03zm16.64-.96c.23-.4.3-.73.33-1.06a21.9 21.9 0 0 0-.02-4.23 3.07 3.07 0 0 0-.14-.6c-.03-.08-.1-.13-.17-.2-.1.05-.23.08-.33.15a4.2 4.2 0 0 1-1.97.7c-1.63.25-4.18.06-5.06-1.56-.03-.06-.1-.1-.19-.19l-.29.4c-.4.67-1.14.95-1.85 1.18-1.39.46-3.7.36-4.95-.46-.1-.07-.23-.1-.34-.13-.06.07-.13.12-.15.19-.07.24-.15.48-.17.72-.12 1.4-.28 3.82.3 5.08 2.08 1.72 5.12 2.18 7.74 2.28 2.54-.12 5.21-.7 7.26-2.27zm-.96-10.79a1.27 1.27 0 0 0-.66-.75 6.58 6.58 0 0 0-2.26-.63 7.02 7.02 0 0 0-1.1-.04c-.75.04-1.06.65-1.1 1.15 0 .83-.03 1.66.02 2.48.05.86.51 1.39 1.31 1.6.6.17 1.22.27 1.84.24.7-.04 1.47-.32 1.71-1.02.17-.42.29-.87.3-1.33 0-.58.04-1.16-.06-1.7zm-8.25 2.97c.15-.36.24-.76.25-1.18 0-.7 0-1.41-.05-2.11-.02-.44-.28-.77-.77-1a3.82 3.82 0 0 0-1.64.03c-.87.2-2.22.33-2.6 1.29-.1.57-.1 1.19-.07 1.8.01.38.11.74.23 1.1.17.5.5.86 1.01 1 .24.07.48.12.73.14.63.06 1.24-.07 1.84-.24.45-.12.83-.37 1.07-.83zM6.64 1752.14a7.83 7.83 0 0 1-2.35-1.99c-.02-.22-.06-.47-.06-.72 0-1-.03-2 .06-2.93a5.2 5.2 0 0 1 2.6-2.54c.33-.77.65-1.58.73-2.46l.08-.5c.15-1.2.96-2.14 2.03-2.66.74-.27 1.42-.69 2.12-1.04a11.09 11.09 0 0 1 4.71-1.05c1.55.14 3.04.48 4.4 1.25 1.91 1.14 3.3 1.42 3.6 3.94l.98 2.48c.1.08.16.16.23.18.7.23 1.22.7 1.66 1.27.25.33.54.63.7 1.02.15 1.1.17 2.59.04 3.76a7.57 7.57 0 0 1-2.33 1.99l-.36.6a16.94 16.94 0 0 1-6.01 2.8c-4.18 1.1-8.58-.13-12.1-2.48a1.76 1.76 0 0 1-.73-.92zm9.46-7.37c-.1.14-.22.26-.3.4-.23.42-.6.69-1.01.9a5.7 5.7 0 0 1-2.66.6c-1.16-.04-2.33-.14-3.35-.83-.03-.02-.08-.01-.12-.02-.05.06-.14.1-.16.16-.07.24-.15.48-.18.73-.12 1.44-.28 3.75.3 5.07 1.38 1.23 3.36 1.73 5.14 2.05 3.16.55 7.38 0 9.9-2.08a2.48 2.48 0 0 0 .3-1.03c.15-1.45.01-2.9-.04-4.36-.02-.24-.05-.5-.3-.67-.1.05-.23.09-.33.16-.62.45-1.33.66-2.1.7a8.1 8.1 0 0 0-.61.08 5.6 5.6 0 0 1-2.35-.25c-1.13-.33-1.43-.57-2.13-1.61zm1.48-4.32c-.1.86-.06 1.77-.04 2.69.02.38.15.73.34 1.05.74.9 2.34.92 3.4.77.53-.07.92-.39 1.12-.89.4-.99.43-2.14.22-3.16-.36-.5-.46-.6-.84-.75a9.1 9.1 0 0 0-2.8-.6c-.64-.06-1.12.21-1.4.9zm-2.92 1.52c0-.45.03-.92-.05-1.36-.11-.49-.4-.82-.9-.93-.2-.05-.4-.09-.6-.07a7.96 7.96 0 0 0-2.99.78 1 1 0 0 0-.55.78 7.57 7.57 0 0 0 0 1.98c.14.84.44 1.69 1.4 1.82.7.12 1.4.06 2.1-.08.64-.14 1.27-.5 1.44-1.2.16-.56.17-1.14.15-1.72zM25.57 559.59c1.3.42 1.95 1.38 2.58 2.37.17 1.21.09 2.42.1 3.62-.17.22-.3.43-.48.6-.29.3-.6.59-.92.85-.32.25-.68.47-1.02.7l-.37.58a17.04 17.04 0 0 1-6.26 2.85c-4.25 1-8.78-.32-12.24-2.87l-.35-.6a7.8 7.8 0 0 1-2.3-1.95c-.12-1.1-.11-2.6.03-3.82.28-.5.68-.98 1.1-1.45.37-.41.84-.66 1.32-.83.38-.42.42-.94.61-1.4.1-.26.14-.56.2-.85.05-.28.1-.57.13-.86.15-1.2.99-2.15 2.05-2.64.74-.3 1.43-.68 2.13-1.04 1.33-.66 2.75-.92 4.21-1.06 1.62.07 3.23.42 4.68 1.16.19.1.4.17.55.3.29.26.61.42.97.55.15.06.3.15.44.24.9.54 1.54 1.28 1.72 2.33.1.58.3 1.12.53 1.66l.6 1.57zm-1.96 7.78c.23-.34.3-.66.34-1 .14-1.5.12-2.99-.03-4.48a1.86 1.86 0 0 0-.13-.48c-.03-.06-.11-.1-.2-.19l-.4.24a3.6 3.6 0 0 1-1.75.6 4.16 4.16 0 0 0-.5.07c-1.4.28-4-.2-4.68-1.59-.03-.06-.11-.1-.17-.14-.06.05-.15.1-.18.16-.66 1.38-3.32 1.86-4.7 1.58a4.23 4.23 0 0 0-.5-.07 3.59 3.59 0 0 1-1.64-.55c-.14-.08-.3-.13-.44-.2-.35.85-.4 1.08-.41 2.84 0 1.08-.05 2.17.4 3.2a11.47 11.47 0 0 0 5.79 2.1c3.06.4 6.73-.2 9.2-2.1zm-2-6.95c1.28-.64 1.13-2.41 1.08-3.62-.03-.66-.57-.97-1.13-1.19a9.67 9.67 0 0 0-2.56-.53c-.63-.05-1.13.22-1.42.9-.1.85-.08 1.77-.03 2.68.05.97.53 1.5 1.48 1.75a5.3 5.3 0 0 0 2.57 0zm-7.16-.97c.34-1.06.25-2.18.16-3.3-.1-.47-.4-.84-.9-.92-.85-.15-1.99.12-2.82.36-.27.08-.53.23-.79.37a1 1 0 0 0-.53.8c-.09 1.26-.25 3.4 1.35 3.74.8.15 1.58.06 2.35-.13.45-.12.85-.34 1.18-.92zM6.97 408.77l-.38-.63a8.03 8.03 0 0 1-2.33-2c-.05-1.26-.06-2.5.04-3.73.19-.27.34-.52.52-.74.89-1.1.78-1.02 2-1.64.4-.8.65-1.5.76-2.22.04-.25.08-.5.1-.74a3.38 3.38 0 0 1 1.67-2.51 2.91 2.91 0 0 1 .55-.3c.58-.22 1.13-.5 1.68-.8a11.2 11.2 0 0 1 4.92-1.2c1.7.16 3.39.56 4.85 1.48a3 3 0 0 0 .86.5c.15.05.3.13.44.22a3.38 3.38 0 0 1 1.81 2.41c.1.54.28 1.04.5 1.54.14.34.24.7.37 1.05.08.2.18.38.25.53 1.33.67 1.6.94 2.53 2.37.14.4.12.81.13 1.23.03.82 0 1.66-.02 2.49a7.21 7.21 0 0 1-2.35 2.06l-.43.65a16.88 16.88 0 0 1-5.55 2.66c-4.43 1.3-9.25-.03-12.92-2.68zm9.17-8c-.1.1-.2.17-.25.27-.3.6-.81.94-1.41 1.16-.95.36-1.92.56-2.94.42l-.87-.09a3.56 3.56 0 0 1-1.3-.38l-.55-.3c-.07-.03-.16 0-.23 0a1.6 1.6 0 0 0-.26.83c-.13 1.2-.3 4.17.33 5.15 3.07 2.3 7.6 2.67 11.26 1.72a12.57 12.57 0 0 0 3.2-1.36c.21-.13.4-.3.54-.42.2-.4.28-.76.3-1.14.12-1.41.1-2.83-.04-4.24-.02-.25-.05-.5-.26-.68a.66.66 0 0 0-.34.12 3.8 3.8 0 0 1-2.1.73c-1.37.2-2.61.09-3.89-.52-.6-.28-.88-.69-1.2-1.26zm1.42-4.29a20.97 20.97 0 0 0 0 2.76c.06.7.43 1.28 1.12 1.51.88.32 1.8.36 2.7.2.93-.17 1.26-1.24 1.33-2.07.03-.66.05-1.33-.07-1.9-.36-1.1-2.64-1.33-3.63-1.43-.64-.06-1.14.21-1.45.93zm-8.01.68-.02 1.53c0 .46.1.9.27 1.33.18.5.55.84 1.07.93.87.15 1.73.1 2.58-.18.6-.2.97-.6 1.1-1.23.2-.98.15-1.97.05-2.97-.1-.42-.36-.76-.8-.87-.23-.06-.48-.1-.72-.09a10.42 10.42 0 0 0-2.31.47c-.23.08-.46.2-.67.32-.23.12-.38.32-.55.76zm16.01 1378.8c1.25.38 1.92 1.33 2.58 2.33.2 1.23.09 2.48.1 3.7a7.47 7.47 0 0 1-2.38 2.07l-.43.7a16.5 16.5 0 0 1-8.99 3.15c-3.4 0-6.81-1.2-9.5-3.26l-.33-.58a8.36 8.36 0 0 1-2.27-1.9c-.03-.12-.08-.23-.08-.35a29.2 29.2 0 0 1 .03-3.41c.6-1.03 1.3-2 2.55-2.44.47-.92.74-1.93.85-2.96a3.48 3.48 0 0 1 1.99-2.7c.75-.26 1.42-.69 2.12-1.04a9.7 9.7 0 0 1 7.87-.42c.66.25 1.32.5 1.87.97.16.13.36.2.54.3 1.13.48 2.14 1.3 2.35 2.56.11.67.38 1.27.61 1.89l.52 1.38zm-16.95 7.76c1.42 1.27 3.42 1.75 5.26 2.08 2.75.47 5.62.1 8.16-1.06.6-.29 1.2-.6 1.63-1.04.19-.35.27-.67.3-1l.07-1.38c.04-1-.02-2-.11-2.99-.02-.25-.06-.5-.27-.67-.27.03-.45.22-.66.34a3.56 3.56 0 0 1-1.41.48c-1.2.13-2.43.22-3.58-.2-.77-.26-1.44-.65-1.8-1.43l-.1-.09c-.08.1-.18.18-.24.28-.51 1.03-2.18 1.5-3.25 1.54-1.28 0-2.63.03-3.72-.75-.07-.05-.16-.05-.24-.07-.05.05-.14.1-.16.16a4.2 4.2 0 0 0-.17.72 19.63 19.63 0 0 0-.03 3.87c.04.41.14.82.32 1.21zm14.06-10.67a1.3 1.3 0 0 0-.8-.89 6.56 6.56 0 0 0-3.52-.57c-.37.15-.62.41-.8.9-.05.8-.05 1.71 0 2.63.04.67.38 1.32 1.04 1.57a5 5 0 0 0 2.7.24c1.6-.25 1.5-2.71 1.38-3.88zm-13.06-.13c-.13.62-.08 1.28-.07 1.94.01.38.13.74.25 1.09.2.55.61.9 1.18.99.87.13 1.74.08 2.57-.24.54-.2.88-.6 1-1.17.2-1.02.18-2.07.03-3.09-.16-.63-.86-.96-1.46-.88-1.02.14-2.08.26-2.99.78-.22.12-.38.31-.5.58zM25.56 431.96c1.27.39 1.93 1.35 2.55 2.3.17 1.08.2 2.52.06 3.84-.6.8-1.4 1.44-2.34 1.98l-.32.58c-2 1.55-4.38 2.52-6.85 3.02-4.1.8-8.32-.56-11.66-2.94l-.4-.68a8.25 8.25 0 0 1-2.28-1.92c-.02-.14-.07-.3-.08-.47-.02-1.08-.04-2.16.05-3.26.6-1.05 1.32-2 2.56-2.45.31-.72.63-1.44.73-2.23l.11-.74a3.39 3.39 0 0 1 1.68-2.5c.14-.1.29-.18.44-.24.63-.22 1.2-.57 1.78-.88a9.72 9.72 0 0 1 8.1-.5c.66.23 1.32.48 1.87.96.15.13.36.2.54.3.26.13.53.24.77.4a3.18 3.18 0 0 1 1.53 2.05c.25 1.21.76 2.18 1.16 3.38zm-16.93 7.8c1.58 1.27 3.58 1.81 5.55 2.09 2.8.42 5.47-.01 8.03-1.2a4.8 4.8 0 0 0 1.45-.94c.17-.3.25-.63.29-.96a22.6 22.6 0 0 0-.04-4.49 1.6 1.6 0 0 0-.09-.36c-.04-.1-.09-.23-.28-.22-.62.36-1.16.72-1.9.8-1.35.2-2.78.2-4.05-.36a2.4 2.4 0 0 1-1.3-1.11c-.05-.1-.07-.24-.23-.2-.06.06-.13.11-.17.19a2.6 2.6 0 0 1-1.52 1.2c-1.18.48-2.22.4-3.45.32a3.9 3.9 0 0 1-1.88-.6c-.14-.09-.27-.18-.45-.15-.18.2-.21.45-.24.7-.16 1.45-.32 3.95.28 5.3zm9.72-12.17c-.54.32-.54.32-.82 1v2.28c.01.77.3 1.54 1.07 1.82.87.34 1.78.4 2.7.23.52-.09.9-.41 1.1-.91.18-.43.3-.87.3-1.33.03-.59.04-1.17-.03-1.64a1.3 1.3 0 0 0-.8-.88 6.55 6.55 0 0 0-3.52-.57zm-8.74 1.33c-.13.62-.08 1.28-.07 1.94.01.38.13.74.25 1.09.2.55.61.9 1.18.99.87.13 1.74.08 2.57-.24.54-.2.88-.6 1-1.17.21-.99.17-1.98.06-2.97-.1-.78-.9-1.09-1.62-.99-.98.14-1.98.29-2.86.77-.22.12-.38.31-.5.58zm15.93 1283.06c.08.07.1.1.14.12 1.18.42 1.85 1.35 2.48 2.36.14 1.2.1 2.4.06 3.65a7.34 7.34 0 0 1-2.37 2.08l-.39.6c-1.75 1.3-3.8 2.2-5.9 2.76-4.35 1.14-9.02-.16-12.6-2.76l-.35-.6a7.69 7.69 0 0 1-2.3-1.98 18.4 18.4 0 0 1 .03-3.81c.32-.54.74-1.05 1.2-1.54.34-.37.8-.57 1.22-.73.38-.43.43-.96.61-1.41.11-.27.15-.56.2-.85.05-.28.1-.57.13-.86.15-1.2.99-2.15 2.05-2.65.78-.3 1.5-.71 2.25-1.07a11.7 11.7 0 0 1 4.47-1c1.5.15 2.96.45 4.3 1.16.67.35 1.3.74 1.96 1.09a3.17 3.17 0 0 1 1.72 2.33c.2 1.07.76 2.1 1.09 3.1zm-16.96 7.83c3.86 2.98 11.14 2.98 15.03.04.25-.4.32-.77.35-1.14.12-1.42.11-2.83-.03-4.24a2.68 2.68 0 0 0-.16-.6c-.02-.06-.12-.1-.18-.14-.08.03-.17.04-.23.09-.66.48-1.4.72-2.21.76a3 3 0 0 0-.37.04 5.92 5.92 0 0 1-3.06-.4 2.4 2.4 0 0 1-1.48-1.26c-.03-.06-.1-.1-.14-.12-.06.06-.15.1-.18.17-.32.64-.86 1-1.5 1.23-1 .35-2.01.56-3.07.38a6.54 6.54 0 0 0-.62-.07 3.57 3.57 0 0 1-1.54-.48c-.17-.1-.34-.24-.6-.23a3.1 3.1 0 0 0-.31 1.42c-.08 1.5-.18 3 .3 4.55zm8.99-11.34c-.08.89-.06 1.76-.03 2.63.03.75.38 1.4 1.11 1.65.89.33 1.8.36 2.7.2 1.56-.26 1.48-2.83 1.28-4.03-.09-.13-.16-.29-.29-.39a2.7 2.7 0 0 0-.64-.38 9.32 9.32 0 0 0-2.67-.59c-.64-.06-1.13.2-1.46.91zm-2.87 1.48c-.03-.45-.04-.92-.1-1.37a1 1 0 0 0-.8-.86c-.25-.05-.5-.1-.75-.08-.99.1-1.98.28-2.88.75a1 1 0 0 0-.6.88 29.41 29.41 0 0 0-.02 1.75c0 .38.13.74.28 1.08.2.5.6.8 1.13.88.85.13 2.04.07 2.8-.34.98-.5.9-1.76.94-2.69zm13.53-1176.2a7.9 7.9 0 0 1-2.37 2.03l-.4.65c-5.81 4.23-12.66 4.2-18.49 0l-.35-.63a8.15 8.15 0 0 1-2.34-2c-.1-1.21-.06-2.41 0-3.6.23-.62.7-1.06 1.08-1.54.4-.5.98-.75 1.53-1 .35-.9.69-1.74.76-2.67a3.5 3.5 0 0 1 1.9-2.9l.1-.06c.85-.26 1.57-.77 2.36-1.14a9.63 9.63 0 0 1 8.22-.1c.46.2.92.39 1.3.74.12.1.28.17.43.24 1.27.51 2.31 1.44 2.52 2.85.07.42.2.8.36 1.19.24.57.46 1.16.66 1.7.15.22.35.3.54.37.44.17.8.46 1.1.8.37.45.76.88 1.04 1.45.1 1.17.08 2.38.05 3.62zm-19.61 1.7c.54.53 1.21.86 1.9 1.14a14.5 14.5 0 0 0 9.9.48c.92-.29 2.66-.97 3.27-1.7a2.92 2.92 0 0 0 .27-1.1c.14-1.41.03-2.82-.04-4.23-.02-.24-.06-.5-.28-.66-.26.03-.44.22-.66.34-.22.1-.45.24-.68.3-1.86.52-5.1.52-6.1-1.46-.02-.03-.06-.05-.12-.09l-.29.4c-.25.4-.61.68-1.03.87-1.42.68-3 .7-4.52.38-.37-.07-.72-.2-1.04-.4-.18-.1-.34-.24-.56-.25-.05.06-.13.11-.15.18-.07.24-.15.48-.17.73-.12 1.4-.27 3.8.3 5.06zm9.66-12.13c-.49.24-.73.64-.75 1.19 0 .37-.01.75 0 1.12 0 .46-.01.92.04 1.38.12 1.09.94 1.46 1.92 1.63.54.1 1.08.12 1.62.04.84-.12 1.3-.66 1.47-1.49.22-.86.17-1.73.07-2.52a1.33 1.33 0 0 0-.82-.83 6.57 6.57 0 0 0-3.55-.52zm-8.69 1.38c-.1.92-.14 1.91.15 2.81.22.73.73 1.1 1.44 1.18a4.96 4.96 0 0 0 2.33-.27c.53-.2.9-.57 1.03-1.15.22-.98.15-1.98.07-2.97 0-.08-.04-.16-.07-.24-.19-.6-.82-.83-1.4-.78a7.68 7.68 0 0 0-2.99.76c-.22.12-.39.3-.56.66zm15.97 1155.34a5.2 5.2 0 0 1 2.6 2.53c.15 1.16.08 2.36.07 3.55a7.29 7.29 0 0 1-2.37 2.11l-.44.62a16.79 16.79 0 0 1-8.64 3.12 15.92 15.92 0 0 1-5.51-.91c-1.33-.5-2.61-1.1-3.8-1.88-.36-.23-.66-.5-.82-.93a8.13 8.13 0 0 1-2.37-2.02 25.18 25.18 0 0 1 .02-3.73c.66-1 1.3-1.97 2.53-2.36.33-.72.64-1.44.74-2.23.17-1.4.33-2.27 1.53-3.14a4.67 4.67 0 0 1 .98-.54 16.93 16.93 0 0 0 1.58-.74c1.4-.73 2.9-1.03 4.44-1.17 1.75.11 3.5.44 5.02 1.35.43.25.85.52 1.31.7 1 .48 1.77 1.32 2.01 2.42.07.28.1.57.14.77l.98 2.48zm-9.47.76c-.08.1-.18.18-.23.29-.26.5-.7.82-1.2 1.04a5.98 5.98 0 0 1-3.17.5 12.35 12.35 0 0 0-.75-.1 3.68 3.68 0 0 1-1.53-.46c-.18-.1-.35-.25-.58-.23-.24.25-.27.59-.3.9-.14 1.38-.28 3.88.3 5.1a8.5 8.5 0 0 0 3.2 1.59c3.89 1.1 8.4.84 11.78-1.57.24-.39.32-.75.35-1.13.15-1.45.04-2.9-.05-4.36-.01-.24-.05-.5-.3-.67-.1.05-.22.09-.32.16a3.75 3.75 0 0 1-1.98.69c-.16 0-.33.02-.5.05-.97.18-1.9 0-2.82-.29-.79-.24-1.44-.65-1.8-1.43-.01-.03-.06-.05-.1-.08zm1.5-4.4c-.12.94-.1 1.9-.03 2.85.06.79.5 1.3 1.25 1.54a5.3 5.3 0 0 0 2.58.16c.44-.08.74-.36.96-.74.47-1 .44-2.12.28-3.18-.17-1.1-2.83-1.39-3.75-1.46-.38-.01-.76.12-1 .4-.11.13-.2.28-.3.42zm-8 .68c-.1.58-.07 1.16-.05 1.74.04.87.36 2 1.35 2.14.87.13 1.74.1 2.58-.2.6-.22.97-.63 1.09-1.26.18-.95.15-1.9.04-2.86-.05-.5-.36-.83-.87-.94-.2-.05-.41-.09-.61-.06a8.02 8.02 0 0 0-3 .78c-.23.11-.39.3-.53.66zM24.58 620.85l.98 2.47a5.3 5.3 0 0 1 2.62 2.56c.11 1.13.08 2.33.05 3.53a7.26 7.26 0 0 1-2.37 2.1l-.4.57c-5.84 4.15-12.68 4.15-18.47 0l-.39-.57a8.49 8.49 0 0 1-2.26-1.9c-.03-.12-.08-.24-.09-.36a32.8 32.8 0 0 1 .03-3.32c.24-.66.7-1.09 1.1-1.57.37-.48.9-.71 1.47-.97.32-.75.66-1.5.74-2.35.14-1.36.43-2.28 1.61-3.08.77-.5 1.67-.75 2.47-1.2a9.77 9.77 0 0 1 8.79-.13c.75.35 1.49.73 2.21 1.14 1.22.66 1.78 1.73 1.91 3.08zm-.96 10.27c.24-.4.3-.76.34-1.14a21.77 21.77 0 0 0-.04-4.24 3.03 3.03 0 0 0-.15-.6c-.02-.07-.1-.11-.17-.18-.1.05-.23.1-.33.16a3.8 3.8 0 0 1-1.98.68 4.17 4.17 0 0 0-.5.06c-.93.16-1.82 0-2.7-.27-.83-.25-1.53-.66-1.91-1.48-.01-.03-.06-.03-.09-.05-.05.06-.13.1-.17.18-.6 1.37-3.22 1.87-4.56 1.61a4.09 4.09 0 0 0-.5-.05 3.88 3.88 0 0 1-1.77-.55c-.14-.08-.3-.13-.45-.2-.34.78-.36.78-.4 2.34-.04 1.24-.1 2.5.36 3.69.6.54 1.31.88 2.06 1.2 4.04 1.59 9.38 1.46 12.96-1.16zm-6.05-11.38c-.09.88-.07 1.85-.01 2.8.14 1.1.86 1.47 1.88 1.66 1.1.13 2.58.3 3.02-.99.34-.96.33-1.95.16-2.95-.03-.15-.14-.3-.22-.45-1-.69-2.24-.88-3.42-.98-.64-.05-1.13.22-1.4.91zm-3.47-.65c-.14-.04-.34-.12-.54-.15a2.56 2.56 0 0 0-.62-.01c-.62.06-1.23.15-1.83.34a7.94 7.94 0 0 0-.92.37c-.27.12-.47.34-.6.73a9.31 9.31 0 0 0-.06 1.76c.02.42.13.82.3 1.2.2.5.58.81 1.1.9a5.29 5.29 0 0 0 2.11-.1c1.25-.3 1.47-.82 1.59-1.8.1-.78.06-1.57 0-2.36-.04-.34-.2-.63-.53-.88zm11.45-251.07c1.3.7 1.6.96 2.42 2.14.07.1.11.22.2.39.13 1.15.09 2.35.05 3.55a7.08 7.08 0 0 1-2.35 2.1c-.12.17-.24.4-.42.57-.2.2-.45.37-.7.52a17.47 17.47 0 0 1-5.98 2.41c-3.92.8-7.99-.42-11.3-2.54-.44-.3-.44-.3-.87-.96a7.8 7.8 0 0 1-2.32-2 23.47 23.47 0 0 1 .02-3.7c.34-.61.78-1.12 1.23-1.6.35-.39.8-.58 1.24-.75.36-.43.41-.95.6-1.4.1-.27.14-.57.2-.85l.13-.87a3.28 3.28 0 0 1 1.5-2.35c.65-.43 1.42-.67 2.12-1.04a11.62 11.62 0 0 1 5.15-1.32c1.8.17 3.53.58 5.07 1.59.2.13.44.22.66.33 1.12.5 2.08 1.39 2.26 2.64.1.59.3 1.12.52 1.66.21.5.39 1 .57 1.48zm-16.92 7.81c1.42 1.14 3.24 1.66 5.01 1.97 3.17.58 7.56.05 10.08-2.08.08-.26.17-.5.2-.74a20.45 20.45 0 0 0-.03-4.73 1.34 1.34 0 0 0-.1-.36c-.03-.07-.1-.13-.16-.2-.1.04-.22.08-.33.14-.11.05-.21.13-.32.2a3 3 0 0 1-1.16.42c-1.2.15-2.42.31-3.59-.08-1.14-.37-1.43-.57-2.13-1.6-.08.1-.18.17-.23.28-.31.6-.83.92-1.43 1.15a6.87 6.87 0 0 1-3.44.35 4.31 4.31 0 0 1-1.9-.56c-.13-.09-.27-.19-.45-.17-.05.06-.14.11-.15.18-.08.28-.16.56-.19.85a18.25 18.25 0 0 0-.01 3.74c.04.41.14.81.33 1.24zm8.95-11.4c-.1.87-.07 1.79-.03 2.7.03.68.38 1.32 1.04 1.56.88.34 1.78.4 2.7.26.56-.08.97-.48 1.17-1.01.34-.97.33-1.96.16-2.95-.03-.16-.14-.3-.2-.4a3.5 3.5 0 0 0-1.73-.77c-.76-.15-1.53-.43-2.32-.2-.5.28-.5.28-.8.81zm-3.14 3.49c.35-1.08.26-2.17.18-3.24-.05-.77-.84-1.17-1.56-1.07-.66.1-1.33.17-1.96.39a8.85 8.85 0 0 0-.92.36c-.27.13-.47.35-.6.74a9.53 9.53 0 0 0-.04 1.76c.01.43.13.83.29 1.21.2.5.6.8 1.13.88 1.1.15 2.86.08 3.48-1.03zM4.29 593.89c.8-1.23 1.2-1.79 2.58-2.44.29-.68.61-1.4.7-2.2.16-1.34.39-2.3 1.56-3.11.3-.22.64-.41.98-.54.48-.17.92-.4 1.36-.64a10.72 10.72 0 0 1 4.79-1.24c1.82.07 3.54.53 5.1 1.48.5.32 1.04.52 1.53.82.8.52 1.4 1.23 1.55 2.18.1.68.35 1.29.61 1.9.2.45.25.97.6 1.41 1.16.37 1.83 1.32 2.45 2.26.18 1.08.2 2.47.08 3.78-.63.87-1 1.2-2.34 2.08-.22.31-.43.66-.8.9-5.79 3.85-12.4 3.73-18.06-.32l-.39-.62a8.01 8.01 0 0 1-2.31-1.98c-.1-1.23-.07-2.44.01-3.72zm19.32-.78c-.1.05-.23.09-.33.16-1.01.72-2.28.76-3.47.77-.76 0-1.48-.19-2.18-.47a2.47 2.47 0 0 1-1.32-1.09c-.05-.1-.13-.17-.23-.3-.12.18-.22.3-.3.44-.26.4-.63.67-1.05.87a6.94 6.94 0 0 1-4.4.38 3.46 3.46 0 0 1-1.16-.43c-.18-.1-.34-.23-.57-.23-.3.75-.36.95-.38 2.56-.01 1.16-.07 2.33.4 3.46 2.02 1.58 4.76 2.12 7.27 2.24 2.5.05 5.78-.64 7.75-2.26.6-.94.39-4 .3-5.2-.02-.24-.1-.48-.16-.72-.02-.06-.1-.11-.17-.18zm-6.03-5.31c-.1.94-.09 1.85-.03 2.77.06.91.52 1.43 1.41 1.67.8.22 1.65.32 2.46.1.52-.15.87-.49 1.04-1 .13-.39.25-.8.25-1.21.02-.58.04-1.17-.05-1.68a1.27 1.27 0 0 0-.8-.83 7.18 7.18 0 0 0-3.4-.6c-.47.07-.64.43-.88.78zm-3.15 3.54c.37-1.03.25-2.15.19-3.27a1.17 1.17 0 0 0-.97-1.01 2.2 2.2 0 0 0-.63-.02c-.83.09-1.64.24-2.43.53-.46.2-.85.38-1.02.96-.08.88-.13 2 .22 2.87.15.42.43.71.84.88.86.34 1.83.16 2.7-.07.46-.13.83-.38 1.1-.87zm10.15 1054.24.99 2.5a5.2 5.2 0 0 1 2.62 2.57c.1 1.13.08 2.33.03 3.52a7.33 7.33 0 0 1-2.34 2.08c-.25.26-.41.6-.74.82-5.81 3.88-12.41 3.8-18.12-.22l-.42-.6a8.05 8.05 0 0 1-2.3-2c-.13-1.19-.07-2.43-.02-3.63.37-.73.86-1.3 1.4-1.82.35-.32.76-.48 1.2-.7.34-.83.69-1.68.75-2.6.1-1.34.74-2.4 1.92-3.03.14-.08.29-.17.44-.22.71-.24 1.37-.6 2.05-.92a11.3 11.3 0 0 1 4.1-.97c.67.07 1.33.11 1.99.23 1.1.2 2.15.63 3.14 1.17l1 .52a3.7 3.7 0 0 1 2.3 3.3zm-.97 10.28c.25-.41.31-.78.35-1.15.13-1.42.1-2.83-.04-4.24-.01-.2-.08-.41-.14-.6-.02-.07-.1-.12-.17-.2-.1.06-.23.1-.33.16-.87.63-1.82.7-2.85.77-1.46.08-3.57-.29-4.25-1.76-.01-.03-.06-.04-.1-.06-.08.1-.17.18-.23.28-.27.5-.7.82-1.2 1.04a6.79 6.79 0 0 1-3.8.42 4.05 4.05 0 0 1-1.66-.5c-.18-.1-.35-.22-.6-.2-.4.8-.33 1.69-.36 2.55-.03 1.16-.07 2.33.37 3.43 1.76 1.47 4.1 1.93 6.3 2.17 3 .24 6.24-.3 8.7-2.1zm-6.06-11.42c0 .39-.03.8-.03 1.22.03 1.2-.21 2.6 1.22 3.07.76.27 1.55.32 2.34.25.73-.07 1.2-.47 1.43-1.2.28-.89.26-1.8.14-2.7-.02-.2-.17-.37-.26-.56a7 7 0 0 0-3.69-.97c-.35 0-.64.17-.86.44-.1.12-.18.28-.29.45zm-3.11 3.45a7.8 7.8 0 0 0 .17-3.27c-.05-.49-.36-.83-.86-.95-.2-.04-.42-.09-.62-.06a7.85 7.85 0 0 0-2.98.8c-.36.18-.57.5-.59.89-.04 1.25-.22 3.44 1.44 3.66 1.11.12 2.83.05 3.44-1.07zm-7.8 167.77a7.72 7.72 0 0 1-2.32-1.97c-.13-1.06-.13-2.56.01-3.8.3-.55.73-1.06 1.19-1.55a2.56 2.56 0 0 1 .8-.57l.55-.27c.4-.9.71-1.8.79-2.77a3.43 3.43 0 0 1 2.14-2.99c.88-.39 1.74-.8 2.62-1.18 1.12-.48 2.3-.69 3.51-.8.2-.02.42-.02.63 0 1.54.14 3.03.5 4.41 1.24.47.26.94.55 1.44.75a3.51 3.51 0 0 1 2.07 2.64c.08.5.25.96.44 1.42.22.54.41 1.09.6 1.58.1.1.16.18.23.2a3.6 3.6 0 0 1 1.74 1.37c.22.3.49.57.63.92.16 1.05.18 2.5.05 3.73a7.67 7.67 0 0 1-2.35 2.08l-.37.53c-5.58 3.97-12.21 4.13-17.95.37a1.99 1.99 0 0 1-.86-.93zm1.94-.48c1.71 1.45 3.99 1.9 6.15 2.18 2.7.39 6.88-.43 8.99-2.21.08-.3.18-.58.22-.87.16-1.53.13-3.07-.04-4.6a.94.94 0 0 0-.24-.57h-.12c-.07.03-.16.05-.22.1-.62.46-1.35.62-2.1.73-1.66.25-4.15 0-5.02-1.66-.01-.04-.05-.06-.08-.08-.07.05-.16.09-.2.15a2.78 2.78 0 0 1-1.62 1.28 6.2 6.2 0 0 1-2.7.38 5.49 5.49 0 0 1-2.61-.7c-.1-.07-.23-.09-.35-.13-.29.57-.31.61-.36 1.42-.08 1.54-.2 3.08.3 4.58zm14.1-10.68c-.2-.53-.46-.74-.77-.87a7.2 7.2 0 0 0-3.4-.63c-.56.07-.93.57-.97 1.12v2.37c.02.24.1.48.18.72.1.32.33.56.63.73.84.44 2.38.67 3.26.3.38-.14.63-.41.79-.76.19-.46.32-.95.32-1.45 0-.54-.02-1.08-.03-1.53zm-13.06-.2c-.12.7-.1 1.28-.1 1.86.02.47.14.9.32 1.33.15.36.41.62.79.75.2.07.4.15.6.16a5.36 5.36 0 0 0 2.32-.32c.55-.2.89-.6 1-1.18.03-.16.08-.33.09-.5 0-.74.02-1.49 0-2.23a1.17 1.17 0 0 0-.75-1.07c-1.03-.23-2.71.18-3.62.62-.08.03-.16.07-.22.12l-.44.46zM24.58 652.76l.99 2.49c.12.07.22.16.33.2.91.29 1.44 1.1 2 1.82.1.13.17.28.26.44.14 1.2.1 2.4.06 3.63-.59.88-1.4 1.5-2.36 2.08a3.37 3.37 0 0 1-1.11 1.06c-5.78 3.6-12.18 3.4-17.75-.49l-.42-.6a7.91 7.91 0 0 1-2.27-1.91c-.02-.17-.07-.33-.07-.49-.02-1.08-.05-2.16.06-3.27.28-.55.69-1.02 1.1-1.48.36-.4.46-.45 1.48-1 .33-.76.67-1.56.73-2.45.1-1.05.38-1.95 1.2-2.65.81-.74 1.91-.98 2.87-1.47 1.32-.68 2.74-.98 4.2-1.14.24-.02.5-.02.74 0 1.59.17 3.1.55 4.52 1.33.61.34 1.28.6 1.87 1 1.05.72 1.45 1.67 1.57 2.9zm-8.45 3.18c-.17.06-.25.2-.33.35-.42.71-1.21 1-1.96 1.22-1.39.46-3.71.3-4.95-.52-.07-.04-.16-.05-.24-.07-.05.06-.13.1-.15.17-.07.24-.14.48-.17.73-.13 1.32-.3 4.06.33 5.2 2.02 1.55 4.67 1.98 7.16 2.17 2.41.07 5.94-.69 7.83-2.23.59-.98.37-3.92.3-5.13-.03-.29-.12-.57-.2-.85-.02-.05-.12-.09-.2-.15-.22.1-.41.25-.64.36-.26.12-.53.25-.8.31-1.22.27-2.49.4-3.7.04-1.16-.33-1.55-.58-2.28-1.6zm6.52-3.8a1.22 1.22 0 0 0-.56-.67c-.93-.53-2.97-1-3.99-.6-.07.07-.17.14-.25.24-.1.13-.18.28-.26.41-.11.92-.08 1.83-.04 2.74.05.63.35 1.24.95 1.5.15.06.3.15.46.17.5.09.98.18 1.48.22.28.02.58-.03.86-.08.58-.11.96-.46 1.16-1.01.15-.39.25-.79.26-1.21.01-.58.03-1.16-.07-1.72zm-13.05.03c-.1.58-.1 1.2-.07 1.82.02.33.1.65.2.97.23.85 1.01 1.2 1.83 1.2.59 0 1.16-.1 1.72-.25.5-.13.92-.4 1.18-.95.33-.99.23-2.07.16-3.14-.03-.44-.29-.77-.75-1a6.7 6.7 0 0 0-3.68.68c-.27.14-.46.35-.6.67zm16 964c1.15.32 1.73 1.18 2.37 2.04.07.1.11.22.2.38.13 1.15.08 2.36.06 3.58a7.23 7.23 0 0 1-2.44 2.13c-.18.37-.49.65-.84.87-3.6 2.3-8.09 3.42-12.28 2.27a18.06 18.06 0 0 1-5.02-2.17c-.42-.27-.85-.54-1-.99a8.08 8.08 0 0 1-2.35-1.98c-.15-1.24-.05-2.48-.03-3.66.38-.74.87-1.3 1.4-1.83.35-.32.78-.48 1.2-.69.33-.81.68-1.61.74-2.5.12-1.46.63-2.43 1.9-3.16.26-.15.53-.27.8-.37.51-.17 1-.39 1.49-.63a9.8 9.8 0 0 1 8.9.02c.7.37 1.43.67 2.11 1.06 1.18.75 1.64 1.7 1.77 3.06l1.02 2.57zm-16.98 7.63c2.47 2.01 7.3 2.59 10.36 1.92a13.4 13.4 0 0 0 3.54-1.2c.4-.21.81-.43 1.12-.74.2-.3.27-.64.3-.97.16-1.45.05-2.91-.01-4.37a1.26 1.26 0 0 0-.3-.83l-.54.29c-.22.11-.43.26-.67.32a7.4 7.4 0 0 1-4.3.04c-.83-.26-1.54-.65-1.94-1.46 0-.03-.05-.04-.12-.08l-.28.4c-.25.4-.6.68-1.03.87-1.3.64-2.76.67-4.16.44a3.78 3.78 0 0 1-1.52-.53c-.14-.09-.29-.16-.47-.15-.2.28-.24.62-.27.94-.14 1.4-.29 3.84.3 5.1zm14.04-10.81a1.45 1.45 0 0 0-.87-.86c-1-.4-2.07-.65-3.15-.6-.6.03-.82.4-1.08.86-.07.87-.04 1.7-.03 2.52.02.86.44 1.54 1.28 1.78 1.23.35 3.2.66 3.68-.9.1-.35.21-.71.22-1.09.02-.58.04-1.16-.05-1.71zm-13.09.1c-.03.5-.06 1.07-.04 1.59 0 .46.13.9.3 1.33.13.36.39.63.76.76.23.09.48.16.72.18.74.05 1.5-.09 2.2-.32 1.02-.35 1.07-1.19 1.16-2.13.02-.5 0-1-.01-1.5a2.97 2.97 0 0 0-.06-.48 1.2 1.2 0 0 0-1.03-.94c-.2-.03-.42-.05-.62 0a28.27 28.27 0 0 0-1.94.41c-.32.09-.62.25-.91.4-.23.11-.38.31-.53.7zm16.03-1277c1.3.67 1.64 1 2.55 2.45.03.25.08.58.08.91.02.91.07 1.83-.03 2.7a7.02 7.02 0 0 1-2.33 2.1c-.25.26-.44.59-.77.8-3.72 2.44-8.39 3.56-12.73 2.27a18.69 18.69 0 0 1-4.78-2.11c-.39-.25-.78-.5-.92-.92a8.5 8.5 0 0 1-2.32-1.94c-.04-.13-.1-.25-.1-.37a29.88 29.88 0 0 1 .04-3.33c.23-.64.7-1.07 1.09-1.55.37-.48.9-.71 1.46-.97.35-.79.7-1.58.76-2.47.14-1.42.52-2.34 1.76-3.13.73-.47 1.62-.64 2.38-1.06a9.86 9.86 0 0 1 9.01.02c.74.38 1.52.68 2.22 1.14a3.32 3.32 0 0 1 1.51 2.34c.07.5.23.96.43 1.42.24.55.4 1.18.69 1.7zm-17.02 7.64c.2.15.37.34.59.45a14.45 14.45 0 0 0 7.68 1.77c2.25-.13 5.07-.77 6.83-2.23.24-.49.28-.94.3-1.4a21.2 21.2 0 0 0-.11-4.24c-.02-.16-.11-.3-.18-.48-.14.05-.27.06-.36.12-.63.46-1.36.62-2.1.73-.96.13-1.9.14-2.85-.14-1.17-.35-1.53-.58-2.27-1.62-.09.1-.2.17-.25.28-.32.58-.84.9-1.44 1.13-.87.34-1.76.5-2.7.42a5.67 5.67 0 0 1-2.74-.7c-.1-.07-.23-.08-.35-.12-.3.7-.32.7-.38 1.94-.06 1.37-.12 2.74.33 4.09zm14.06-10.8a1.2 1.2 0 0 0-.7-.75 6.65 6.65 0 0 0-3.65-.6c-.36.16-.6.44-.73.89-.07.76-.04 1.59-.02 2.42.01.57.24 1.2.74 1.51 1.02.6 3.63.99 4.14-.46.35-.94.4-2.07.22-3.02zm-13.04.05c-.11.63-.1 1.33-.03 2.03.03.33.13.65.25.96.14.36.4.62.76.77.86.37 1.82.13 2.69-.06.55-.16 1.1-.5 1.23-1.1.08-.37.14-.74.16-1.1.03-.5.01-1 0-1.5a3 3 0 0 0-.06-.5 1.16 1.16 0 0 0-1.03-.92c-.2-.02-.41-.04-.62 0-.97.14-1.99.28-2.84.8-.23.12-.38.31-.51.62zm15.8 362.94c-5.65 3.87-12.22 4-17.95.27a3.27 3.27 0 0 1-.49-.38c-.12-.12-.2-.27-.35-.46a7.98 7.98 0 0 1-2.29-1.95c-.13-1-.13-2.46 0-3.79.3-.6.77-1.14 1.27-1.64.2-.2.47-.34.71-.5l.56-.28c.37-.85.7-1.7.77-2.62 0-.13.04-.25.05-.37.15-1.51 1.24-2.56 2.61-3.04.64-.2 1.24-.5 1.84-.78a9.67 9.67 0 0 1 8.1-.04c.76.33 1.5.7 2.25 1.08.88.46 1.66 1.2 1.9 2.2.09.35.15.72.23 1.13l.94 2.35c.1.08.15.16.22.18.74.26 1.27.78 1.73 1.38.23.3.49.58.63.93.15 1.08.17 2.57.03 3.78-.6.81-1.41 1.45-2.29 1.96l-.47.6zm-16.74-7.1c-.05.05-.14.1-.16.16-.07.24-.14.48-.17.73-.12 1.23-.3 4.14.32 5.16 1.6 1.25 3.3 1.62 5.21 1.96 3.06.52 7.36-.05 9.82-2.03.19-.41.26-.78.29-1.15a23.12 23.12 0 0 0-.04-4.12c-.02-.2-.08-.4-.13-.6-.03-.12-.08-.24-.28-.24l-.4.22c-.45.3-.97.47-1.5.55a7.38 7.38 0 0 1-3.47-.15c-1.06-.35-1.37-.57-2.01-1.54-.07.04-.16.07-.19.13-1.1 1.94-4.26 1.9-6.15 1.37-.23-.06-.45-.2-.68-.3-.15-.07-.28-.18-.46-.16zm8.94-5.47c-.08.81-.11 2.24-.05 2.77.05.63.36 1.22.96 1.48.77.33 1.61.42 2.44.37.8-.04 1.3-.43 1.56-1.19.3-.93.26-1.87.11-2.82-.03-.15-.15-.29-.24-.44a7.16 7.16 0 0 0-3.67-.98c-.55.03-.87.35-1.11.8zm-3.16 3.5a7.6 7.6 0 0 0 .17-3.24c-.06-.82-.89-1.07-1.6-1-1.01.16-2.08.3-2.97.85a.99.99 0 0 0-.46.7c-.13.9-.1 1.84.18 2.7.2.68.69 1.03 1.37 1.1a5.5 5.5 0 0 0 2.2-.23 1.8 1.8 0 0 0 1.1-.87zm10.15 29.74.98 2.48c.11.06.24.16.4.22.51.21.92.55 1.27.98.31.39.66.75.9 1.28.19 1.17.1 2.42.1 3.61a6.3 6.3 0 0 1-1.64 1.62c-.4.3-.85.52-1.15.95-.1.13-.25.21-.4.3-3.95 2.56-8.96 3.6-13.48 1.99a18.23 18.23 0 0 1-3.95-1.84 4.5 4.5 0 0 1-.6-.44c-.16-.13-.28-.31-.43-.5a8.08 8.08 0 0 1-2.27-1.92c-.02-.15-.07-.3-.08-.47-.02-1.08-.04-2.17.05-3.22.25-.62.7-1.06 1.1-1.54.38-.47.92-.7 1.46-.97.36-.84.72-1.67.77-2.6.1-1.14.42-2 1.32-2.73a4.57 4.57 0 0 1 1.53-.83c.6-.19 1.17-.43 1.73-.69a9.57 9.57 0 0 1 7.54-.2c.93.36 1.83.8 2.73 1.22.26.12.5.3.74.47.95.71 1.27 1.73 1.38 2.83zm-.96 3.97c-.1.02-.2.02-.26.07-.68.44-1.42.67-2.23.72-.12 0-.24.04-.37.06a5.94 5.94 0 0 1-3.4-.56 2.17 2.17 0 0 1-1-.9l-.23-.33c-.1.08-.22.14-.27.23-.3.6-.82.93-1.42 1.15a5.84 5.84 0 0 1-3.18.4 6.86 6.86 0 0 0-.74-.1 3.53 3.53 0 0 1-1.19-.36l-.55-.29c-.06-.02-.14.03-.26.05a10.95 10.95 0 0 0-.3 3.44c0 .87 0 1.76.38 2.56 1.08 1 3.04 1.58 4.46 1.85 2.5.55 5.08.43 7.52-.33a9.12 9.12 0 0 0 3.05-1.51c.59-1 .39-3.9.3-5.12a4.53 4.53 0 0 0-.13-.74c-.03-.1-.12-.2-.18-.3zm-1.25-5.18a7.08 7.08 0 0 0-3.74-.93c-.2 0-.4.1-.53.13-.37.3-.56.6-.57 1 0 .8-.03 1.58.01 2.37.05.83.5 1.39 1.3 1.62.72.23 1.48.24 2.23.21a1.54 1.54 0 0 0 1.43-1.17c.28-.9.26-1.8.12-2.7-.02-.16-.13-.3-.25-.53zm-7.94 3.3c.32-.96.27-2.11.19-3.12-.05-.44-.27-.78-.75-1a3.48 3.48 0 0 0-1.54.02c-.85.19-2.36.39-2.73 1.31-.12.55-.1 1.13-.08 1.7.04.93.38 2.08 1.46 2.17 1.1.1 2.88.07 3.45-1.08zm-7.81 873.57a8.1 8.1 0 0 1-2.28-1.89c-.03-.12-.09-.24-.1-.36a28.89 28.89 0 0 1 .04-3.34c.22-.64.7-1.06 1.08-1.55.37-.48.9-.72 1.46-.97.36-.79.7-1.59.77-2.48.12-1.24.4-2.14 1.43-2.93a4.58 4.58 0 0 1 1.43-.75 11.45 11.45 0 0 0 1.5-.6 9.81 9.81 0 0 1 8.57.01c.81.42 1.69.73 2.46 1.22.79.55 1.34 1.28 1.47 2.23.08.64.3 1.21.55 1.78.23.5.3 1.04.61 1.48 1.28.66 1.64 1 2.49 2.38.17 1.02.2 2.48.06 3.78a7.35 7.35 0 0 1-2.3 1.98c-.17.2-.32.41-.5.57a17.4 17.4 0 0 1-7.25 2.88c-3.7.55-7.46-.59-10.6-2.55a2.35 2.35 0 0 1-.9-.89zm17.03-6.67c-.3.04-.46.18-.64.29-.4.22-.83.4-1.3.44-.2.02-.4.06-.6.1a6.07 6.07 0 0 1-2.73-.14c-1.14-.32-1.54-.59-2.3-1.66-.08.1-.18.2-.23.3-.29.55-.77.87-1.32 1.1-.86.33-1.74.56-2.68.49a6.24 6.24 0 0 1-2.98-.78c-.07-.04-.16-.03-.25-.05-.23.26-.26.6-.3.92-.13 1.32-.31 4.07.33 5.2 2.11 1.58 4.85 2 7.43 2.15 2.43-.01 5.75-.69 7.64-2.28.37-1.15.32-2.32.3-3.48-.04-1.82-.06-1.82-.37-2.6zm-1.02-4.68a1.26 1.26 0 0 0-.7-.75 7.22 7.22 0 0 0-3.39-.66c-.19.02-.3.1-.52.16l-.45.63c-.1.89-.07 1.72-.04 2.55 0 .25.07.5.14.73.1.38.35.66.7.85a5 5 0 0 0 3.15.33 1.37 1.37 0 0 0 .89-.83c.15-.38.27-.78.29-1.2.02-.63.05-1.25-.07-1.8zm-13.03 0c-.12.58-.1 1.2-.07 1.82.01.42.13.82.28 1.2.16.4.45.7.88.82.28.07.57.15.85.13 1.31-.1 2.91-.17 3.07-1.82.09-.83.08-1.66 0-2.48-.04-.44-.28-.77-.76-1-.13-.01-.34-.06-.54-.05-1 .01-1.96.24-2.9.61a1.4 1.4 0 0 0-.81.78zm-2.76-28.8c.35-.86.73-1.7.77-2.63.1-1.16.46-2.09 1.41-2.8a4.5 4.5 0 0 1 1.43-.75c.64-.2 1.25-.45 1.86-.72a9.22 9.22 0 0 1 2.76-.75l1.16-.13c.78.12 1.62.13 2.42.38 1.3.34 2.5.94 3.7 1.5a3.6 3.6 0 0 1 2.06 2.36c.07.33.11.66.18 1.04l.98 2.45c1.33.7 1.65 1 2.56 2.45.03.23.08.51.09.8.02.96.07 1.91-.03 2.87-.4.66-1 1.13-1.6 1.58-.39.3-.83.52-1.15.93-.14.19-.39.31-.6.44a16.45 16.45 0 0 1-9.49 2.6 17.22 17.22 0 0 1-7.74-2.59c-.32-.2-.62-.4-.86-.7-.15-.2-.38-.33-.58-.47a8 8 0 0 1-1.87-1.67c-.02-.16-.07-.32-.07-.48-.02-1.08-.05-2.17.06-3.24.25-.6.7-1.04 1.1-1.52.38-.47.92-.7 1.45-.95zm9.3.43c-.08.05-.16.08-.2.14-.39.76-1.06 1.13-1.83 1.39-1.4.47-2.79.36-4.18.04-.42-.1-.76-.34-1.14-.5-.06-.03-.14.03-.26.05-.35 1.03-.32 2.11-.32 3.19 0 .95 0 1.92.39 2.82.53.49 1.17.79 1.82 1.06a15.62 15.62 0 0 0 9.91.52c.76-.21 1.5-.5 2.2-.86.4-.2.82-.4 1.12-.75.58-.94.36-4.25.25-5.45-.02-.24-.07-.5-.24-.69-.18-.03-.32.06-.45.15-.85.6-1.87.65-2.86.73a6.01 6.01 0 0 1-2.91-.55c-.67-.3-.96-.66-1.3-1.29zm6.2-4.23a7.92 7.92 0 0 0-3.33-.96c-.64-.05-1.14.2-1.46.9-.06.86-.08 1.8 0 2.76.07.73.48 1.22 1.18 1.47a6 6 0 0 0 2.46.25 1.46 1.46 0 0 0 1.23-.92c.38-1 .38-2.03.16-3.06-.03-.12-.12-.22-.24-.44zm-12.76.6c-.1.54-.07 1.12-.05 1.7 0 .42.12.82.27 1.21.22.55.65.86 1.23.91 1.1.08 2.81.02 3.4-1.11.35-1 .26-2.09.18-3.16-.03-.35-.22-.62-.57-.87-.17-.04-.41-.14-.65-.14a7.15 7.15 0 0 0-3.13.71c-.3.15-.54.38-.68.76zM4.27 757.18a37.03 37.03 0 0 1 .02-3.64c.34-.66.8-1.2 1.3-1.7.2-.2.46-.35.7-.5.18-.1.37-.18.57-.27.2-.52.4-1.02.58-1.53.07-.2.1-.4.12-.6.19-1.45.23-2.34 1.46-3.32a4.76 4.76 0 0 1 1.66-.84c.56-.16 1.1-.37 1.63-.61a11.9 11.9 0 0 1 3.75-.87c.17-.02.34-.01.5 0 1.46.17 2.88.45 4.2 1.14.59.3 1.24.48 1.82.8 1.34.72 1.9 1.78 2.01 3.28l1.02 2.53c.46.25.98.42 1.35.84.44.5.9.99 1.21 1.61.14 1.19.1 2.39.06 3.59a5.63 5.63 0 0 1-1.48 1.52c-.45.36-.98.62-1.36 1.08-.19.21-.47.34-.72.49-3.53 2.1-7.83 3.11-11.87 2.06a18.08 18.08 0 0 1-5.16-2.16c-.32-.2-.64-.38-.86-.7-.15-.21-.38-.32-.6-.45a8 8 0 0 1-1.91-1.75zm4.35-4.66c-.19.24-.21.54-.25.82-.17 1.27-.35 4.22.3 5.29 1.79 1.45 4.43 1.9 6.67 2.1 2.66.18 6.2-.49 8.33-2.14.6-1.08.37-4.1.26-5.39a1.47 1.47 0 0 0-.28-.82c-.12.05-.24.07-.34.14-1.43.93-3.85 1-5.42.4-.68-.25-1.28-.6-1.62-1.28-.04-.06-.1-.1-.16-.15-.06.06-.15.1-.18.17a2.8 2.8 0 0 1-1.64 1.26c-.83.3-1.68.44-2.57.37a5.83 5.83 0 0 1-2.63-.64c-.15-.09-.3-.16-.47-.13zm8.95-5.38a23.18 23.18 0 0 0-.02 2.6c.04.64.33 1.25.93 1.52.15.07.3.16.46.18.53.1 1.06.18 1.6.25.84.08 1.71-.27 1.97-1.15.3-.93.3-1.88.1-2.82-.02-.16-.14-.3-.21-.43-1.02-.7-2.25-.88-3.44-1-.12-.02-.25 0-.37.01-.55.06-.75.42-1.02.84zm-7.75.25c-.08.17-.18.31-.2.47a6.95 6.95 0 0 0-.02 2.1c.04.29.14.57.25.84a1.2 1.2 0 0 0 .68.7c.94.4 1.98.13 2.92-.12.47-.16.9-.5 1.04-1 .06-.2.12-.4.14-.6.1-.78.08-1.57 0-2.36-.06-.78-.8-1.18-1.54-1.08-1.17.22-2.25.29-3.27 1.05zm14.78 1409.21 1.01 2.47a5.36 5.36 0 0 1 2.59 2.57c.1 1.13.07 2.33.04 3.5a6.17 6.17 0 0 1-1.72 1.69c-.37.26-.75.5-1.09.82a17.67 17.67 0 0 1-7.13 2.8c-3.36.51-6.77-.3-9.76-1.88-.66-.35-1.33-.69-1.85-1.24-.17-.18-.4-.3-.62-.43a8.2 8.2 0 0 1-1.76-1.6c-.13-1.24-.07-2.48-.02-3.66a5.45 5.45 0 0 1 2.58-2.58c.25-.66.6-1.36.7-2.08l.16-1.24c.2-1.49 1.52-2.56 2.89-2.96.8-.24 1.58-.52 2.35-.81a9.36 9.36 0 0 1 6.95.15c.61.26 1.22.53 1.86.73 1.3.43 2.45 1.45 2.7 2.84.05.29.08.58.12.91zm-15.95 10c2.03 1.57 5.15 2.02 7.65 2.11.29.01.58-.01.87-.04 2.26-.24 4.68-.69 6.5-2.12.18-.36.26-.68.3-1.02.13-1.45.1-2.91-.05-4.36-.03-.29-.07-.58-.29-.83-.1.04-.24.06-.34.12-.6.4-1.27.6-2 .66-1.29.3-2.57.08-3.77-.43a2.39 2.39 0 0 1-1.21-1.04c-.05-.1-.08-.23-.26-.2-.05.05-.12.1-.15.17-.31.6-.83.92-1.43 1.15-1.06.41-2.15.6-3.3.4-.78-.13-1.56-.24-2.26-.67-.06-.04-.16-.03-.24-.05-.05.06-.12.1-.14.18-.14.44-.22.89-.25 1.35-.07 1.16-.09 2.33.04 3.49.04.37.13.74.33 1.13zm13.75-11.34c-.5-.37-1.07-.6-1.68-.73-.73-.15-1.46-.35-2.22-.25-.5.06-.68.4-.93.8-.06.76-.04 1.55-.03 2.33 0 .77.3 1.53 1.06 1.81.91.36 1.86.43 2.82.29.49-.07.83-.39 1-.84.39-1 .41-2.02.18-3.06-.02-.08-.08-.15-.2-.35zm-12.83.6-.03 1.44c0 .54.15 1.2.44 1.66.23.33.54.53.93.57 1.1.1 2.98.05 3.55-1.1.34-1 .25-2.08.16-3.16-.05-.54-.44-.74-.89-.97a7.68 7.68 0 0 0-3.6.83c-.23.13-.39.31-.56.74zM24.59 301.59l.98 2.44c.07.07.12.15.2.17.72.28 1.27.78 1.73 1.38.23.3.49.57.67 1.04.16 1.13.08 2.37.07 3.57a6.47 6.47 0 0 1-1.64 1.61c-.4.29-.85.53-1.17.92-.1.13-.26.21-.4.3-4.05 2.46-8.38 3.5-13.14 2.02a17.23 17.23 0 0 1-3.78-1.62c-.5-.28-1.02-.56-1.4-1.03-.11-.15-.32-.25-.5-.36-.7-.45-1.32-1-1.85-1.65-.03-.12-.09-.24-.1-.37a33.56 33.56 0 0 1 .03-3.4c.61-1.04 1.32-2 2.52-2.44.31-.52.44-1.1.66-1.63.07-.19.08-.4.1-.61.16-1.3.24-2.23 1.3-3.13a4.35 4.35 0 0 1 1.52-.85 32.95 32.95 0 0 0 2.34-.87 9.5 9.5 0 0 1 7.18.07c.73.3 1.44.64 2.19.91 1.22.5 2.2 1.48 2.4 2.81l.1.72zm-.98 3.84c-.13.07-.29.12-.42.21-1.07.66-2.4.72-3.62.69-1.1-.09-2.72-.51-3.25-1.55-.05-.1-.13-.18-.2-.28-.07.08-.16.12-.2.19a2.63 2.63 0 0 1-1.62 1.27 6.8 6.8 0 0 1-5.2-.26c-.16-.07-.3-.15-.5-.11-.5 1.1-.4 3.67-.29 4.92a3 3 0 0 0 .34 1.17c1.77 1.4 4.15 1.84 6.33 2.06 2.95.22 6.2-.3 8.65-2.04.22-.36.3-.72.33-1.1a22.07 22.07 0 0 0-.04-4.36c-.02-.27-.04-.57-.3-.81zm-6.02-5.22c-.1.88-.08 1.86-.01 2.8.11.72.52 1.2 1.21 1.43.76.25 1.54.34 2.33.27.63-.06 1.1-.38 1.33-.97.14-.35.25-.71.26-1.09l-.01-1.49a1.2 1.2 0 0 0-.72-1.08 8.05 8.05 0 0 0-3-.75c-.63-.06-1.12.2-1.4.88zm-3.19 3.45a3.22 3.22 0 0 0 .28-1.3c0-.67 0-1.34-.07-2-.05-.48-.38-.81-.88-.92-.2-.04-.42-.07-.62-.04-.6.1-1.22.23-1.83.35-.37.07-.7.23-1.04.4-.3.16-.53.4-.67.88-.01.39-.03.93-.03 1.47 0 .46.12.9.3 1.32.2.52.57.7 1.05.87a5.99 5.99 0 0 0 2.42-.22c.45-.13.83-.37 1.1-.81zM28.14 785.4c.14 1.13.15 2.65.02 3.75a6.68 6.68 0 0 1-1.71 1.6c-.35.23-.68.47-1 .75-.26.25-.59.45-.91.63-3.03 1.73-6.54 2.74-10.05 2.28-1.96-.24-3.8-.86-5.57-1.73-.82-.41-1.64-.81-2.28-1.5-.16-.18-.4-.29-.61-.43a7.17 7.17 0 0 1-1.72-1.59c-.12-1.08-.11-2.57.02-3.79.3-.56.73-1.07 1.19-1.55.23-.24.5-.44.8-.58.16-.06.3-.14.42-.2.56-1.06.72-1.55.86-2.6.12-1.1.3-1.93 1.13-2.7a4.42 4.42 0 0 1 1.71-1 36.49 36.49 0 0 0 2.46-.88 10.6 10.6 0 0 1 2.93-.6c.28-.04.58-.03.87 0 1.2.13 2.38.36 3.5.86.98.44 2.06.69 2.93 1.35 1.02.77 1.37 1.77 1.46 3l1 2.44c.08.07.13.15.2.17.7.25 1.21.72 1.65 1.3.25.32.55.63.7 1.02zM8.6 784.36c-.34.72-.33 1.51-.36 2.29a10.2 10.2 0 0 0 .33 3.77c1.47 1.29 3.74 1.79 5.61 2.04a14.7 14.7 0 0 0 8.39-1.3c.4-.18.82-.4 1.18-.83.34-1.05.3-2.22.28-3.38-.04-1.86-.06-1.93-.38-2.68-.18-.02-.31.07-.45.16a4.05 4.05 0 0 1-1.88.6 5.79 5.79 0 0 0-.62.08c-.84.16-1.66 0-2.46-.23-1.14-.34-1.45-.58-2.13-1.6-.08.1-.18.18-.24.28-.29.55-.76.88-1.31 1.1-1.02.4-2.07.64-3.17.44-.2-.04-.42-.05-.62-.07a4.1 4.1 0 0 1-1.55-.45c-.18-.1-.35-.24-.62-.21zm9.52-6.06c-.35.29-.53.53-.56.83-.07.91-.1 1.83.02 2.74.21 1.61 2.34 1.69 3.62 1.61 1.13-.06 1.48-1.3 1.52-2.26 0-.54.02-1.08-.08-1.59a1.24 1.24 0 0 0-.67-.74 7.65 7.65 0 0 0-3.26-.72c-.2 0-.4.09-.59.13zm-8.52 1.38a9.92 9.92 0 0 0-.07 1.61c.04.84.32 2.03 1.3 2.16.95.14 1.9.06 2.8-.32.48-.2.8-.57.91-1.1.2-.94.16-1.9.07-2.84-.04-.58-.58-.93-1.13-.95a7.07 7.07 0 0 0-3.34.78c-.23.13-.39.31-.54.66zm-2.72 1347.6.6-1.6c.07-.48.15-.98.2-1.47.17-1.74 1.65-2.82 3.21-3.25.48-.15.95-.31 1.4-.51a12 12 0 0 1 3.76-.86c.66.07 1.33.1 1.98.21 1.49.26 2.82 1 4.22 1.52a3.66 3.66 0 0 1 2.22 2.67c.06.28.09.57.12.83l.99 2.44c.08.07.13.15.2.17.69.25 1.22.71 1.65 1.29.25.33.55.62.74 1.15.12 1.12.12 2.36.02 3.6a7.21 7.21 0 0 1-1.73 1.63c-.35.23-.71.42-.98.76-.1.13-.26.21-.4.3a17.52 17.52 0 0 1-6.83 2.58c-3.66.56-7.36-.48-10.52-2.34-.35-.22-.7-.44-.98-.76-.19-.2-.46-.35-.7-.51a8.13 8.13 0 0 1-1.76-1.6 25.4 25.4 0 0 1-.01-3.67 5.51 5.51 0 0 1 2.6-2.58zm16.8 1.33c-.15.05-.28.06-.37.13-.67.46-1.45.61-2.23.72-1.63.22-4.04-.07-4.89-1.7-.01-.02-.05-.04-.1-.07-.08.1-.18.17-.24.28-.65 1.19-2.74 1.63-4 1.56-1-.07-1.99-.17-2.87-.71-.1-.06-.24-.07-.4-.1a9.15 9.15 0 0 0-.36 3.2c0 1-.03 2 .4 2.93 1.9 1.51 4.58 1.94 6.95 2.12 2.35.15 6.3-.6 8.1-2.15.57-1.1.37-4.2.23-5.49-.02-.24-.14-.47-.22-.72zm-6.12-5.18c-.07.8-.05 1.63-.02 2.46.03.72.36 1.4 1.09 1.65a5.98 5.98 0 0 0 2.44.35c.2-.02.4-.1.6-.16.44-.16.7-.57.84-1 .3-.9.26-1.8.12-2.7-.03-.16-.13-.3-.2-.43-.82-.69-1.82-.82-2.79-1.02-.44-.09-.9-.1-1.28 0-.4.16-.61.4-.8.85zm-2.87 1.42c-.02-.41-.01-.83-.07-1.24-.09-.8-.86-1.14-1.57-1.03-.65.13-1.3.25-1.94.42-.32.08-.63.22-.92.37-.36.17-.59.47-.61.88-.03.57-.05 1.15-.01 1.73.02.33.13.65.24.96.2.67.92.97 1.58.97.63 0 1.24-.12 1.85-.25.16-.03.3-.12.46-.19 1-.44.97-1.69 1-2.62zm9.91-639.34 1 2.46c1.34.68 1.7 1.11 2.54 2.4.16 1.21.14 2.47.07 3.71a6.56 6.56 0 0 1-1.7 1.64c-.37.26-.76.5-1.08.82-.14.15-.33.26-.5.36a17.62 17.62 0 0 1-7.75 2.58 16.4 16.4 0 0 1-8.86-2.12c-.58-.31-1.17-.62-1.63-1.13-.14-.15-.33-.25-.5-.36a8.2 8.2 0 0 1-1.89-1.68c-.14-1.22-.07-2.46-.02-3.7.29-.58.71-1.04 1.1-1.52.39-.47.93-.69 1.46-.96l.65-1.69c.2-1.41.14-2.6 1.28-3.6.5-.46 1.07-.8 1.72-.99.87-.27 1.72-.6 2.58-.9.9-.34 1.86-.46 2.8-.57.21-.02.43-.02.63 0 1.16.11 2.31.3 3.4.75.65.27 1.3.55 1.97.78 1.2.42 2.3 1.38 2.57 2.67.07.33.1.66.16 1.05zm-15.94 3.83c-.6.65-.44 3.83-.38 4.8.04.45.13.9.33 1.32 1.42 1.23 3.85 1.78 5.69 2 2.1.3 4.25.09 6.3-.51.87-.27 2.53-.89 3.12-1.58.13-.26.2-.59.24-.92.13-1.46.1-2.91-.04-4.36a1.48 1.48 0 0 0-.28-.84c-.1.02-.23.03-.32.09-.68.46-1.43.65-2.23.71l-.5.05c-.84.1-1.66 0-2.46-.27-1.09-.36-1.35-.56-2.02-1.57-.08.1-.19.17-.24.28-.51.96-1.63 1.27-2.62 1.5-1.3.2-3.1.07-4.25-.6-.1-.05-.23-.07-.34-.1zm8.9-5.41a25.37 25.37 0 0 0-.02 2.56c0 .2.05.41.1.6.14.47.43.8.87 1.01.98.4 2.03.47 3.09.31.49-.36.73-.48.91-1.1.28-.86.25-1.73.13-2.6a.98.98 0 0 0-.48-.7c-1.02-.62-2.19-.75-3.38-.9l-.79.24-.43.58zm-3.13 3.43c.37-.99.28-2.07.18-3.15-.05-.6-.5-.97-1.1-.98a7.01 7.01 0 0 0-3.26.73 1.2 1.2 0 0 0-.66.78c-.08.48-.06 1.02-.06 1.56a4 4 0 0 0 .18.98c.15.57.47.97 1.1 1.17 1.09.1 3.02.08 3.62-1.1zm10.16 30.18 1.02 2.5a5.03 5.03 0 0 1 2.5 2.39c.17 1.01.2 2.5.06 3.76a6.46 6.46 0 0 1-1.69 1.6c-.34.24-.69.45-.98.76-.22.24-.52.41-.8.58a17.55 17.55 0 0 1-6.17 2.3c-3.64.64-7.38-.33-10.54-2.16-.3-.16-.62-.3-.84-.54-.45-.5-1.05-.8-1.56-1.23-.49-.39-.95-.8-1.29-1.27-.11-1.25-.1-2.73.04-3.8.19-.42.51-.76.8-1.11.38-.5.84-.91 1.46-1.13.07-.02.13-.09.21-.14.2-.26.27-.6.4-.9l.29-.79.2-1.52c.17-1.56 1.5-2.65 2.92-3.07a16.04 16.04 0 0 0 1.87-.69 12.1 12.1 0 0 1 3.52-.78 2.37 2.37 0 0 1 .5 0c1.42.15 2.8.43 4.09 1.06.37.18.76.32 1.15.47 1.8.7 2.7 1.75 2.84 3.7zm-8.44 2.82c-.15.16-.22.22-.26.29-.64 1.25-2.78 1.7-4.09 1.62a6.56 6.56 0 0 1-2.98-.78c-.06-.03-.15.01-.23.02-.16.25-.2.54-.24.83-.14 1.17-.34 4.4.33 5.31 2.03 1.5 4.7 1.92 7.17 2.07 2.43.07 5.94-.6 7.82-2.19.2-.37.26-.7.28-1.03.04-.5.07-1 .08-1.49a21.94 21.94 0 0 0-.11-2.86c-.03-.28-.06-.58-.3-.78-.09.02-.18.03-.24.07-.82.57-1.76.71-2.72.8-1.52.15-3.85-.25-4.51-1.89zm1.4-4.17c-.05.78-.04 1.6-.01 2.43a2.2 2.2 0 0 0 .04.37c.15.78.63 1.22 1.39 1.43.57.08 1.14.17 1.72.23.29.03.57-.04.85-.13.43-.14.73-.42.88-.82.36-.92.4-2.07.22-2.98-.16-.4-.4-.61-.72-.76a7.12 7.12 0 0 0-3.6-.64c-.34.15-.57.38-.77.87zm-7.97.63c-.07.55-.07 1.13-.05 1.71.02.43.14.83.3 1.21.14.36.4.63.78.75.2.07.4.15.6.15.8.02 1.57-.07 2.32-.35.55-.2.9-.58 1.02-1.16.2-.95.16-1.9.06-2.85-.06-.5-.52-.91-1.01-.96a2.44 2.44 0 0 0-.62 0c-.99.14-1.98.33-2.86.8-.23.12-.38.32-.54.7zm15.01-63.38 1 2.43c.06.06.1.1.13.1a5.2 5.2 0 0 1 2.43 2.39c.15.94.1 1.86.1 2.77 0 .33.02.67-.1 1-.3.45-.7.83-1.13 1.14-4.17 3.44-9.83 5.08-15.07 3.47a18.54 18.54 0 0 1-3.58-1.46c-.59-.31-1.18-.62-1.66-1.1-.14-.15-.34-.24-.5-.36-.85-.56-1.11-.8-1.87-1.66-.16-.4-.1-.81-.11-1.23-.02-.81.01-1.67.05-2.47.27-.61.7-1.06 1.1-1.54.38-.47.9-.72 1.44-.95l.68-1.73.19-1.53c.16-1.61 1.52-2.73 3-3.16 1.56-.43 3.04-1.16 4.68-1.3 2.24-.28 4.34.62 6.4 1.4 1.29.45 2.46 1.44 2.7 2.84.06.33.09.66.12.95zm-8.47 2.7c-.12.12-.2.17-.24.24-.67 1.33-3.1 1.78-4.46 1.6a6.06 6.06 0 0 1-2.5-.71c-.11-.09-.22-.01-.35.02a3.72 3.72 0 0 0-.26 1.07 18.9 18.9 0 0 0 0 3.86c.04.41.13.82.35 1.2 2.12 1.54 5.01 1.97 7.58 2.05 2.29-.02 5.6-.68 7.41-2.1.59-1.08.38-3.93.29-5.21-.03-.29-.11-.57-.18-.85-.02-.07-.1-.13-.15-.2-.22.01-.37.16-.56.24-.3.14-.6.3-.92.38a6.76 6.76 0 0 1-4.63-.28 2.3 2.3 0 0 1-1.13-.94l-.25-.37zm1.43-4.26c-.02.87-.05 1.74 0 2.61.09 1.6 1.78 1.79 3.06 1.85.82.02 1.52-.12 1.83-.96.35-.92.34-1.87.2-2.83a.9.9 0 0 0-.4-.6 6.86 6.86 0 0 0-3.93-.87c-.42.27-.42.27-.76.8zm-7.05 4.32c1.01.28 2.1.15 3.18-.26.37-.18.7-.49.8-.9.08-.28.16-.57.17-.85.03-.62.01-1.25 0-1.87a1.6 1.6 0 0 0-.06-.37c-.13-.61-.74-.92-1.33-.88-1.1.13-2.25.3-3.22.89a.93.93 0 0 0-.45.7c-.04.5-.05 1-.05 1.5-.01.38.09.74.2 1.1.12.37.33.67.76.95zm14.09-643.8 1 2.47c.07.05.1.1.14.1 1.11.42 1.76 1.37 2.41 2.31.17 1.23.12 2.48.08 3.59-.14.42-.35.62-.57.81-.37.34-.74.68-1.14.97-.37.27-.76.5-1.1.81-.21.2-.48.35-.73.49-3.88 2.29-8.64 3.15-12.97 1.73a18.55 18.55 0 0 1-3.34-1.4c-.59-.3-1.18-.62-1.65-1.1-.14-.15-.33-.26-.51-.36a7.77 7.77 0 0 1-1.87-1.65c-.03-.13-.08-.24-.08-.37a33.78 33.78 0 0 1 .01-3.37 5.09 5.09 0 0 1 2.56-2.48l.66-1.7.2-1.54c.17-1.67 1.6-2.78 3.12-3.2 2.1-.64 4.04-1.58 6.3-1.26.96.12 1.9.32 2.78.7a21.6 21.6 0 0 0 1.75.66c1.46.47 2.7 1.54 2.87 3.13l.08.66zm-8.46 2.78c-.1.1-.2.16-.26.26-1.3 2.05-5.16 1.78-6.65 1-.19-.1-.36-.22-.62-.2-.32.72-.35 1.5-.36 2.3-.02 1.27-.12 2.57.35 3.8.47.45 1.04.71 1.6.96a15.63 15.63 0 0 0 10.38.53 10.91 10.91 0 0 0 2.52-1.06c.22-.12.43-.25.6-.46.54-.93.34-4.13.23-5.3-.03-.24-.1-.49-.17-.72-.02-.06-.1-.1-.17-.16-.21.02-.37.17-.55.26-.26.12-.53.27-.8.34-1.55.4-3.16.43-4.64-.22a2.42 2.42 0 0 1-1.24-1c-.06-.11-.14-.2-.23-.33zm1.45-4.36a14.5 14.5 0 0 0-.02 2.75c.06.72.44 1.23 1.15 1.48s1.46.32 2.2.34c.25 0 .5-.09.73-.16.4-.13.68-.5.82-.88.34-.93.32-1.88.17-2.83a.86.86 0 0 0-.43-.6c-.88-.56-1.94-.72-2.96-.88-.2-.03-.41-.01-.62 0-.53.03-.79.35-1.04.78zm-7.99.77c-.08.5-.06 1.05-.06 1.59 0 .38.1.74.21 1.1.24.85 1.05 1.18 1.87 1.1 1.13-.13 2.68-.17 2.95-1.56.19-.9.14-1.82.06-2.73-.07-.8-.89-1.1-1.6-1-.66.12-1.33.2-1.96.42a9.72 9.72 0 0 0-.91.4c-.23.1-.4.3-.56.68zm-5.3 41.46c-.11-1.25-.06-2.45-.01-3.67.6-1.07 1.34-2.01 2.54-2.48l.67-1.7.21-1.66c.17-1.5 1.45-2.6 2.83-3.02 1-.3 1.98-.65 2.97-.95 2.1-.64 4.2-.52 6.25.26.58.23 1.16.45 1.76.64 1.43.43 2.75 1.49 2.98 3.04.05.29.07.58.1.84l1 2.45c.06.05.11.14.19.16.73.27 1.26.79 1.72 1.4.23.29.49.57.63.92.16 1.11.17 2.62.02 3.8-.73.99-1.9 1.7-2.9 2.43-4.01 2.56-9.06 3.56-13.63 2.03a19.9 19.9 0 0 1-3-1.22 8.26 8.26 0 0 1-1.9-1.2c-.15-.14-.33-.24-.51-.35-.72-.44-1.32-1-1.92-1.72zm4.33 1.22c1.87 1.55 5.38 2.07 7.77 2.1 2.15-.07 4.33-.48 6.27-1.46.36-.19.75-.36 1.02-.69.52-.95.35-3.78.28-4.94a3.11 3.11 0 0 0-.23-1.1c-.03-.05-.11-.09-.17-.13-.23 0-.39.14-.57.24a4.41 4.41 0 0 1-1.54.48 6.6 6.6 0 0 1-3.32-.2c-1.09-.36-1.34-.55-2.02-1.56-.08.1-.19.18-.24.28-.29.55-.76.87-1.31 1.1a6.52 6.52 0 0 1-3.67.4 4.7 4.7 0 0 1-1.67-.47c-.18-.1-.35-.23-.6-.2-.17.27-.23.6-.27.92-.16 1.42-.3 3.93.26 5.23zm9.48-12.2c-.4.36-.55.65-.56 1a49.41 49.41 0 0 0-.02 1.62c0 .28.01.58.06.86.1.67.48 1.14 1.12 1.37.83.3 1.7.37 2.57.3.5-.05.93-.4 1.14-.86.4-.95.38-1.94.22-2.93a.9.9 0 0 0-.42-.6 7.05 7.05 0 0 0-3.44-.89c-.24 0-.48.1-.67.14zm-8.48 1.33c-.13.53-.1 1.11-.09 1.7 0 .41.13.81.27 1.2.15.48.51.68.9.89 1.45.1 3.12.03 3.76-1.12.32-.97.25-2.04.15-3.12-.05-.52-.5-.9-1-.93a3.6 3.6 0 0 0-.5-.01 9.1 9.1 0 0 0-2.54.58c-.15.05-.3.14-.44.22a1.2 1.2 0 0 0-.5.59zm14.97 992.74 1.02 2.48a5.29 5.29 0 0 1 2.5 2.4c.17 1.02.2 2.44.07 3.72-.1.24-.26.43-.45.6-.4.35-.8.72-1.23 1.04-.37.27-.77.5-1.1.82-.15.14-.34.24-.52.35a18.34 18.34 0 0 1-5.79 2.26A15.9 15.9 0 0 1 8.35 1848c-.58-.32-1.18-.62-1.65-1.11-.14-.15-.34-.24-.51-.36-.81-.55-1.1-.8-1.87-1.69-.03-.13-.07-.3-.08-.46-.02-1.08-.04-2.16.06-3.27a5.1 5.1 0 0 1 2.53-2.45l.66-1.66c.23-1.73.16-2.95 1.75-4.04a5.32 5.32 0 0 1 1.59-.73c.68-.2 1.34-.43 2-.67a9.51 9.51 0 0 1 7.08.12c.58.23 1.15.47 1.75.65 1.4.44 2.62 1.52 2.83 3.03.05.25.06.5.1.78zm-.98 3.72c-.23 0-.38.16-.57.24-.3.13-.6.3-.92.37-1.7.4-3.16.43-4.75-.35-.63-.29-.86-.66-1.22-1.2-.18.05-.27.2-.35.33-.57 1.04-2.69 1.58-3.8 1.5a6.44 6.44 0 0 1-3.01-.72c-.1-.06-.24-.06-.37-.1-.21.4-.27.8-.31 1.22-.1 1.29-.28 3.87.34 4.97 2.05 1.62 5.86 2.19 8.43 2.06 2.12-.16 4.82-.76 6.54-2.06.24-.37.31-.73.34-1.11.03-.5.07-1 .08-1.5.03-.96-.04-1.91-.13-2.87-.03-.27-.05-.58-.3-.78zm-5.73-1.68c.66.82 1.78.82 2.75.9.74 0 1.46-.1 1.77-.87.37-.9.4-2.07.25-2.96-.18-.48-.5-.69-.84-.84a6.83 6.83 0 0 0-3.5-.59c-.52.23-.78.63-.78 1.18v2c0 .42.11.82.34 1.18zm-8-3.36c-.18.2-.3.43-.31.68l-.04 1.37c0 .38.1.74.2 1.1.14.41.36.75.82.98.85.28 1.75.11 2.64-.09 1.05-.22 1.46-1.02 1.47-2.04 0-.58.02-1.16 0-1.74-.04-1-.8-1.4-1.75-1.25-.57.11-1.14.23-1.7.36-.5.12-.96.3-1.33.63zm-3.06 260.81.68-1.74c.06-.5.13-.99.18-1.49.16-1.94 1.91-3.01 3.65-3.43.4-.1.8-.21 1.19-.36.98-.37 1.99-.62 3.03-.7l.66-.08c.78.11 1.62.13 2.43.37 1.04.28 2.03.74 3.07 1.04 1.35.44 2.53 1.5 2.77 2.94.05.28.07.58.1.89l1.04 2.5a5.22 5.22 0 0 1 2.53 2.5c.13 1.17.14 2.5.02 3.65-.4.6-.97 1.1-1.57 1.54a18.06 18.06 0 0 1-7.42 3.4c-4.24.89-8.81-.28-12.34-2.73-.2-.14-.4-.3-.6-.43-.72-.44-1.33-1-1.86-1.62-.04-.1-.1-.18-.1-.26-.1-1-.07-2.59.06-3.67.61-.94 1.27-1.9 2.48-2.32zm1.77 7.34c2.22 1.66 5.63 2.15 8.35 2.05 2.2-.12 4.92-.68 6.7-2.04.2-.3.27-.63.3-.96.15-1.42.13-2.83 0-4.24a2.18 2.18 0 0 0-.33-1.1c-.15.07-.3.12-.44.2-.5.32-1.07.5-1.65.57a6.83 6.83 0 0 1-3.92-.37 2.5 2.5 0 0 1-1.3-1.1c-.06-.1-.08-.25-.25-.2-.78 1.02-1.08 1.25-2.3 1.57a6.75 6.75 0 0 1-4.52-.34c-.19-.08-.35-.22-.62-.17-.38.84-.36 1.76-.39 2.67a9.24 9.24 0 0 0 .37 3.46zm8.96-11.48a26.24 26.24 0 0 0-.01 2.46 2 2 0 0 0 .05.37 1.6 1.6 0 0 0 1.07 1.27 5.8 5.8 0 0 0 2.56.33c.58-.06 1-.38 1.22-.93.15-.38.27-.78.27-1.2v-1c.02-.8-.35-1.32-1.12-1.59a10.59 10.59 0 0 0-2.66-.58c-.57-.05-1.05.17-1.38.87zm-6.73 4.42c.85.12 1.67-.02 2.47-.24.96-.26 1.28-.9 1.36-1.85 0-.66.04-1.33 0-1.99-.07-.84-.6-1.12-1.24-1.12a7.56 7.56 0 0 0-3.12.72 1.25 1.25 0 0 0-.68.75c-.11.52-.1 1.1-.07 1.68 0 .42.12.82.28 1.2.18.48.54.68 1 .84zm-6.57-665.98c-.03-1.23-.06-2.43.05-3.62.34-.66.82-1.18 1.3-1.7.33-.34.78-.48 1.22-.74l.67-1.68.2-1.62c.17-1.6 1.55-2.73 3.02-3.14.93-.26 1.83-.58 2.74-.86 3.2-.97 5.17-.16 8.13.9 1.44.44 2.72 1.53 2.92 3.09l.08.76 1.03 2.5a5.51 5.51 0 0 1 2.58 2.58c.09 1.13.08 2.33.03 3.52a6.2 6.2 0 0 1-1.7 1.67 18.19 18.19 0 0 1-7.45 3.37c-3.63.76-7.38-.08-10.63-1.76-.6-.3-1.18-.62-1.69-1.07-.21-.19-.48-.32-.72-.49a7.15 7.15 0 0 1-1.78-1.71zm11.84-5.94c-.08.1-.18.18-.24.29-.63 1.13-2.42 1.54-3.63 1.56a6.66 6.66 0 0 1-3.37-.74c-.06-.03-.15 0-.23.02a7.72 7.72 0 0 0-.4 3.19c.01.99-.03 2 .4 2.96 2.5 1.79 6.32 2.25 9.32 1.94 1.37-.16 2.7-.45 3.98-1a6.22 6.22 0 0 0 1.7-.95c.2-.27.28-.55.31-.84.17-1.58.15-3.16-.04-4.73-.03-.25-.07-.5-.24-.7-.23-.04-.4.1-.56.2-.51.3-1.08.47-1.65.54a15.22 15.22 0 0 1-1.62.1c-.72.01-1.4-.17-2.06-.43-.64-.25-1.2-.6-1.5-1.24-.03-.06-.1-.1-.17-.17zm1.46-4.21c-.05.76-.04 1.59-.01 2.42 0 .16.03.33.07.49.17.66.62 1.04 1.27 1.24.72.2 1.45.32 2.2.27a1.48 1.48 0 0 0 1.4-1.05c.3-.89.3-1.79.16-2.7-.05-.3-.24-.53-.5-.69-.98-.6-2.28-.8-3.38-.9-.55.07-.93.27-1.2.92zm-6.78 4.38c.88.13 1.7 0 2.5-.22.49-.13.91-.39 1.2-.96.31-.96.26-2.03.13-3.1-.06-.57-.5-.88-1.03-.9a7.02 7.02 0 0 0-3.36.76 1.2 1.2 0 0 0-.6.67c-.12.57-.08 1.2-.07 1.81.01.38.14.73.27 1.08.17.48.53.68.95.86zM4.25 278.13c-.03-1.22-.06-2.42.05-3.63.27-.53.67-.96 1.04-1.41.38-.47.89-.74 1.46-.98.21-.53.44-1.07.64-1.61.07-.2.09-.4.12-.61l.15-1.24c.2-1.45 1.42-2.51 2.75-2.95 1.2-.37 2.38-.75 3.58-1.07.64-.17 1.32-.22 1.97-.31a12.42 12.42 0 0 1 3.9.76c.42.18.86.32 1.3.45 1.67.47 3.19 1.59 3.32 3.45.01.2.03.41.08.61l1 2.43c.4.24.8.46 1.16.72.23.17.41.41.6.64.28.35.61.68.8 1.22.14 1.1.07 2.3.06 3.48-.42.7-1 1.18-1.6 1.63-2.32 1.76-5.03 2.99-7.91 3.5-3.52.63-7.12-.2-10.27-1.81-.6-.3-1.17-.63-1.69-1.06-.22-.19-.48-.33-.72-.5-.7-.47-1.05-.8-1.8-1.7zm19.4-4.97a.77.77 0 0 0-.37.1c-.95.61-2.02.72-3.11.77-1.23.05-3.26-.43-3.87-1.6-.05-.1-.08-.23-.27-.2-.06.09-.15.18-.21.28a2.3 2.3 0 0 1-1.12.96c-1.75.8-3.83.75-5.57-.06-.16-.08-.3-.15-.48-.11-.33.74-.37.88-.41 2.3-.04 1.28-.1 2.58.33 3.8 1.55 1.24 3.48 1.6 5.38 1.92 3.1.48 7.07-.04 9.67-1.85.27-.41.31-.83.35-1.25.11-1.29.1-2.58-.02-3.86a2.82 2.82 0 0 0-.3-1.2zm-5.79-1.71c.66.83 1.78.81 2.74.95.37.04.74-.02 1.1-.17 1.14-.46 1.12-2.59.93-3.6-.03-.2-.17-.37-.26-.55a7.18 7.18 0 0 0-3.56-1.02c-.59-.05-1.02.28-1.25.9-.07.78-.04 1.6-.02 2.43 0 .38.13.73.32 1.06zm-3.16-2.17c-.07-.77.1-1.88-.9-2.08-.2-.04-.41-.08-.61-.06a7.6 7.6 0 0 0-3.09.86 1 1 0 0 0-.52.8 7.08 7.08 0 0 0 0 1.86c.11.68.37 1.48 1.13 1.64.23.05.49.1.73.09.53-.04 1.07-.12 1.6-.2.2-.04.4-.13.58-.21 1.08-.42 1.04-1.72 1.08-2.7zM4.3 2197.1c-.1-1.17-.1-2.47.01-3.76a5.09 5.09 0 0 1 2.51-2.42l.67-1.72c.22-1.58.13-2.8 1.5-3.86 1.08-.9 2.53-1.03 3.8-1.52 3.55-1.25 5.51-.5 8.84.7 1.45.47 2.7 1.54 2.88 3.13l.08.71 1 2.45c.06.06.11.14.18.17a3.9 3.9 0 0 1 1.73 1.39c.22.3.48.57.66 1.02.16 1.15.08 2.4.07 3.6-.8 1.09-1.82 1.72-2.88 2.45a17.96 17.96 0 0 1-7.82 2.77 16.6 16.6 0 0 1-10.73-3c-.19-.16-.4-.3-.61-.43a7.78 7.78 0 0 1-1.88-1.68zm4.29 1.13c.47.47 1.01.7 1.54.93 3.99 1.71 9.96 1.66 13.56-.9.08-.28.2-.55.23-.84a20.01 20.01 0 0 0-.02-4.6c-.04-.28-.06-.59-.27-.81-.23-.02-.39.13-.57.22-.55.3-1.15.48-1.78.54a6.64 6.64 0 0 1-3.67-.4 2.5 2.5 0 0 1-1.3-1.1c-.06-.09-.14-.16-.2-.23-.08.07-.17.12-.2.19-.33.63-.89.98-1.52 1.21a6.93 6.93 0 0 1-5.45-.28c-.1-.05-.22-.03-.34-.04-.4 1.02-.37 2.07-.38 3.1 0 1-.03 2 .37 3zm9.57-12.2c-.4.3-.6.58-.6.93-.02.83-.01 1.65 0 2.48 0 .16.07.32.12.48.17.54.65.86 1.16 1.03a6.2 6.2 0 0 0 2.33.26 1.38 1.38 0 0 0 1.25-.88c.39-.95.37-1.94.2-2.93a.98.98 0 0 0-.34-.5 2.34 2.34 0 0 0-.64-.38 7.93 7.93 0 0 0-2.65-.58c-.28-.02-.57.06-.82.09zm-3.71 4.01c.05-.2.17-.53.19-.85.03-.7.01-1.41 0-2.11 0-.16-.07-.33-.14-.48-.23-.51-.74-.63-1.25-.6-.97.02-1.89.25-2.77.63-.23.1-.43.25-.61.36-.17.24-.3.43-.3.71l-.03 1.5c0 .37.11.73.25 1.08.2.55.62.87 1.2.93.8.07 1.58-.03 2.34-.26.45-.14.83-.38 1.12-.9zM4.28 881.26c.73-1 1.29-1.96 2.5-2.35.26-.6.48-1.16.7-1.75l.23-1.74c.15-1.25 1.07-2.18 2.17-2.7 1.05-.5 2.22-.69 3.31-1.09 1-.36 1.95-.42 3-.54.32.03.69.08 1.06.1a7.02 7.02 0 0 1 1.6.32c1.03.31 2.05.67 3.07 1.03 1.24.46 2.33 1.48 2.55 2.83.06.33.09.66.13.96l1.02 2.47c.76.46 1.25.69 1.81 1.44.27.32.56.62.74 1.11.13 1.12.09 2.32.06 3.5-.4.7-.98 1.18-1.58 1.62a18.29 18.29 0 0 1-8.92 3.6c-3.83.4-7.7-.75-10.87-2.89-1.04-.69-1.7-1.1-2.57-2.23-.13-1.19-.05-2.43-.01-3.7zm4.3-1.2a9.82 9.82 0 0 0-.36 3.47c.02.9 0 1.83.39 2.66 2.76 2.06 7.79 2.47 11.07 1.66a13.24 13.24 0 0 0 2.6-.85c.49-.22.98-.45 1.36-.81.2-.3.28-.63.3-.96.14-1.41.13-2.83 0-4.24-.03-.37-.1-.74-.3-1.08-.11.03-.24.03-.34.1-.64.41-1.37.58-2.11.7-1.66.25-4.13-.06-5-1.7-.02-.03-.07-.04-.1-.05-.06.05-.14.1-.18.16-.86 1.56-3.48 1.85-5.07 1.56a5.81 5.81 0 0 1-1.89-.6c-.1-.05-.23-.02-.36-.03zm9-5.38c-.1.81-.07 1.68-.03 2.55 0 .2.07.4.14.6.12.37.37.64.71.82.64.34 2.22.58 2.9.45.59-.11.97-.44 1.17-1 .32-.88.3-1.78.18-2.7a.97.97 0 0 0-.48-.69c-1-.6-2.18-.8-3.32-.9-.6-.04-1.04.24-1.28.87zm-4.23-.81a9.08 9.08 0 0 0-3.12.8c-.4.2-.64.53-.66.98-.03.5-.03 1-.02 1.49 0 .38.12.73.25 1.08.27.75 1 .95 1.73.91 1.08-.12 2.72-.16 3-1.47.2-.81.13-1.65.13-2.47 0-.82-.45-1.26-1.31-1.32zm-6.53 485.8c.2-.5.43-1.04.63-1.58.07-.2.09-.4.12-.61.05-.41.08-.83.14-1.24.15-1.23 1.07-2.2 2.16-2.72.48-.24 1-.42 1.52-.54.7-.16 1.37-.37 2.05-.56 2.81-.91 4.86-.3 7.55.6 1.68.5 3.24 1.4 3.5 3.3.05.28.07.58.1.84l1.07 2.58c1.17.42 1.85 1.35 2.46 2.31.16 1.12.18 2.61.04 3.82a6.16 6.16 0 0 1-1.48 1.44 19.02 19.02 0 0 1-10.2 3.64 17.95 17.95 0 0 1-10.16-3.3 7.84 7.84 0 0 1-2-1.74c-.03-.21-.08-.46-.08-.7 0-1.04-.06-2.08.08-3.08a5.6 5.6 0 0 1 2.5-2.46zm1.8 1.16c-.42.97-.39 2.02-.4 3.05-.01 1.04-.04 2.1.39 3.1 1.79 1.37 4.39 1.81 6.59 2 2.48.2 6.49-.44 8.46-2.01.57-.89.36-4.06.28-5.2a2.19 2.19 0 0 0-.33-1.1l-.45.16c-1.6.8-3.26.92-4.97.41-1.04-.3-1.39-.58-2.06-1.54-.09.07-.2.13-.25.22-.32.58-.83.92-1.43 1.15-1.7.68-3.68.63-5.34-.16a.68.68 0 0 0-.5-.08zm8.94-5.37a19 19 0 0 0-.02 2.36c0 .24.07.49.14.73.31 1.23 2.44 1.34 3.49 1.33.62-.07 1.1-.4 1.3-1 .31-.89.31-1.8.17-2.7a.96.96 0 0 0-.5-.7 7.71 7.71 0 0 0-3.21-.88c-.58-.05-1.06.17-1.37.86zm-3.41-.6a1.75 1.75 0 0 0-.9-.17 8.54 8.54 0 0 0-2.89.7c-.5.22-.79.6-.8 1.15-.02.42-.02.83-.02 1.25 0 .33.09.65.18.97.25.85.8 1.07 1.46 1.13h.25c.53-.06 1.08-.09 1.6-.22 1.2-.29 1.5-.77 1.6-1.78.07-.7.03-1.41.01-2.12 0-.34-.16-.64-.5-.9zm-9.83 43.11c-.13-1.1-.12-2.6.02-3.82.3-.54.73-1.06 1.2-1.53.2-.2.45-.37.69-.52.17-.11.37-.18.57-.28l.69-1.71c.21-1.54.12-2.82 1.44-3.87a4.99 4.99 0 0 1 1.88-.97c.96-.26 1.92-.54 2.87-.84.72-.23 1.47-.27 2.21-.38a2.25 2.25 0 0 1 .62-.01c1.08.13 2.15.28 3.17.67.5.2 1.02.35 1.54.51 2.1.65 3.27 1.75 3.37 4.02l1.02 2.49c.12.17.34.21.51.31.26.15.52.29.72.49a7.11 7.11 0 0 1 1.32 1.68c.14 1.19.1 2.4.06 3.62-1.2 1.9-5.04 3.8-7.2 4.48a16.14 16.14 0 0 1-12.8-1.35c-1.41-.81-2.87-1.69-3.9-2.99zm19.33-5.12c-.1 0-.19-.01-.25.03-.72.44-1.53.61-2.36.75-1.52.25-4.19-.18-4.86-1.75-.01-.02-.06-.03-.11-.06-.1.13-.2.26-.28.4a1.96 1.96 0 0 1-.81.76c-.98.5-2.02.8-3.13.72-.99-.07-1.99-.18-2.88-.7-.1-.06-.23-.05-.35-.07a8.82 8.82 0 0 0-.4 3.46c.02.91-.02 1.84.37 2.68.34.37.75.56 1.17.76a16 16 0 0 0 5.68 1.32c2.42.16 6.34-.51 8.23-2.07.21-.38.26-.7.3-1.04.12-1.33.1-2.67-.02-4a2.65 2.65 0 0 0-.3-1.2zm-5.27-6.07c-.61.26-.85.67-.85 1.22v1.87c.01.73.26 1.44.97 1.75.99.42 2.13.48 3.11.32 1.27-.55 1.2-2.51 1.02-3.65-.04-.19-.18-.36-.28-.55a7.05 7.05 0 0 0-3.97-.96zm-7.77 5.17c.87.15 2.05.07 2.9-.26.54-.21.92-.57 1.03-1.16.05-.25.11-.5.12-.74.02-.58 0-1.17 0-1.75-.01-.6-.4-1.15-1.03-1.22a2.48 2.48 0 0 0-.62 0c-1.02.17-2.08.34-2.97.9a.85.85 0 0 0-.42.6c-.18 1.1-.27 3.1.99 3.63zM4.3 916.97a21.52 21.52 0 0 1 .01-3.69c.23-.56.7-1 1.08-1.48.38-.47.92-.7 1.42-.96l.69-1.75c.21-1.63.12-2.84 1.55-3.93a4.81 4.81 0 0 1 1.66-.85c1.76-.49 3.5-1.1 5.33-1.24h.38c1.07.13 2.14.26 3.17.65.46.17.95.3 1.42.46 1.65.44 3.28 1.46 3.5 3.3l.08.8c.33.78.7 1.67 1.02 2.48.06.06.11.14.18.16.69.26 1.22.72 1.65 1.3.25.33.55.63.73 1.13.13 1.1.09 2.3.06 3.48-1.2 2.03-5.57 4.07-7.83 4.67-5.5 1.57-11.6-.24-15.74-4.07-.14-.15-.26-.33-.36-.46zm4.3-5.04c-.41 1.14-.38 2.32-.38 3.48 0 .9 0 1.83.4 2.74 2.14 1.52 4.89 1.87 7.45 2.03.33.02.67 0 1-.03 2.26-.22 4.64-.66 6.53-1.98.25-.35.32-.68.35-1.01.13-1.42.11-2.83-.01-4.24a2.33 2.33 0 0 0-.3-1.07c-.08 0-.18-.02-.24.02-.77.47-1.61.63-2.49.77-1.47.22-4.1-.25-4.73-1.77-.01-.03-.06-.03-.1-.04-.17.12-.25.32-.36.49a1.8 1.8 0 0 1-.64.59c-.96.54-2 .84-3.1.79a6.48 6.48 0 0 1-3.02-.71c-.1-.06-.22-.04-.36-.06zm8.98-5.43c-.1.88-.06 1.67-.05 2.46.01.72.36 1.4 1.06 1.68 1 .37 2.02.46 3.1.29.42-.34.63-.47.8-1.02.3-.85.28-1.72.14-2.59-.03-.2-.17-.37-.25-.55a6.66 6.66 0 0 0-3.94-.99c-.44.07-.61.36-.86.72zm-3.17 3.42a3 3 0 0 0 .25-1.08v-1.87c-.02-.58-.5-1.13-1.09-1.17-.12 0-.25-.02-.37 0-.98.14-2.73.39-3.4 1.16-.04.07-.13.17-.15.29-.19.9-.2 1.81.1 2.7.14.47.4.81.94 1 1.07.14 3.1.08 3.72-1.03zm10.18 1310.37 1.06 2.52a5.24 5.24 0 0 1 2.47 2.4c.16 1.03.18 2.54.04 3.75a6.13 6.13 0 0 1-1.58 1.54c-3.27 2.25-7.2 3.73-11.23 3.5-2.99-.2-5.9-1.21-8.42-2.83a8.34 8.34 0 0 1-2.63-2.21 21.27 21.27 0 0 1 .01-3.69c.23-.56.7-.99 1.08-1.48.37-.47.93-.68 1.42-.96l.7-1.77.18-1.6c.13-1.41 1.18-2.4 2.41-2.95a7.27 7.27 0 0 1 1.06-.37c.92-.25 1.85-.48 2.77-.74.68-.2 1.4-.21 2.1-.33.11-.02.24-.02.36 0 .91.1 1.83.18 2.7.48.71.24 1.43.45 2.15.65 1.6.44 3.12 1.58 3.27 3.35l.08.74zm-15.96 3.6c-.2.34-.27.75-.31 1.16-.11 1.31-.28 3.89.3 5.03 1.37 1.15 3.77 1.66 5.51 1.87 2.93.43 7.06-.1 9.5-1.85.25-.4.3-.78.33-1.15.12-1.33.1-2.66-.02-3.99-.03-.32-.12-.65-.2-.97-.01-.07-.1-.12-.16-.2-.1.03-.24.03-.34.1-1 .61-2.12.7-3.24.73a5.76 5.76 0 0 1-2.65-.63c-.64-.31-.85-.62-1.2-1.22-.07.05-.16.07-.2.13-.4.75-1.07 1.13-1.84 1.38a6.84 6.84 0 0 1-4.87-.23c-.19-.07-.35-.22-.6-.17zm8.92-5.44a25.39 25.39 0 0 0-.01 2.44c0 .25.07.5.14.73.15.54.64.87 1.15 1.04.76.22 1.53.35 2.33.3.62-.04 1.1-.4 1.3-.98.33-.89.32-1.79.18-2.7a.9.9 0 0 0-.4-.62 6.82 6.82 0 0 0-3.17-.94c-.33-.02-.66 0-1.03.17l-.49.56zm-3.13 3.4c.4-1 .29-2.12.18-3.23-.05-.45-.5-.8-.97-.84a3.32 3.32 0 0 0-.62 0 7.4 7.4 0 0 0-3.15 1c-.1.18-.2.32-.23.48-.2 1.17-.28 3.28 1.15 3.67.82.1 1.6-.01 2.36-.2.5-.14.94-.36 1.28-.88zM4.29 1333.78c-.11-1.26-.05-2.46-.02-3.58.26-.69.72-1.11 1.1-1.6.38-.47.93-.7 1.43-.97l.7-1.77.19-1.6c.34-2.87 3.32-3.27 5.6-3.9 3.1-.92 4.86-.35 7.8.58.77.21 1.49.55 2.12 1.03 1.03.77 1.31 1.87 1.38 3.1l1.05 2.5a5.61 5.61 0 0 1 2.55 2.58c.09 1.13.08 2.33.03 3.5-1.26 2.06-5.7 4.02-8.02 4.61-4.95 1.37-10.18-.08-14.31-2.97a7.7 7.7 0 0 1-1.6-1.51zm4.33 1.08c.42.4.96.61 1.49.85 1.23.54 2.53.82 3.85.98 3.05.47 7.04-.03 9.64-1.78.26-.36.32-.69.35-1.02a22.1 22.1 0 0 0-.02-4.24 2.4 2.4 0 0 0-.3-1.06c-.17-.05-.32.02-.47.1a6.65 6.65 0 0 1-5.67.13 2.34 2.34 0 0 1-1.2-1.05c-.04-.1-.07-.23-.22-.22-.06.06-.13.11-.17.18-.7 1.36-2.93 1.73-4.34 1.63a6.87 6.87 0 0 1-2.74-.74c-.05-.02-.15.04-.22.07a10.49 10.49 0 0 0-.37 3.7c.03.82 0 1.67.4 2.47zm8.96-11.67c-.1.91-.06 1.7-.05 2.48.02.74.37 1.4 1.08 1.67.91.33 1.96.46 2.86.34 1.4-.49 1.27-2.23 1.21-3.42a1.16 1.16 0 0 0-.65-.99l-.33-.17a8.86 8.86 0 0 0-2.78-.62c-.29-.01-.58.01-.9.18l-.45.53zm-3.16 3.42c.39-.97.27-2.05.2-3.13-.1-.62-.64-1-1.26-.95-.88.06-3.58.48-3.74 1.51-.17 1.14-.27 3.21 1.1 3.63.82.12 1.63.02 2.44-.2.5-.13.93-.35 1.26-.86zM4.3 980.97c-.1-1.1-.1-2.4 0-3.68.24-.57.7-1 1.09-1.48.37-.47.92-.69 1.4-.96l.72-1.81c.2-1.78.13-3 1.79-4.12a6.62 6.62 0 0 1 2.05-.88c1.64-.42 3.3-.91 5.01-.95.66 0 1.32.16 1.97.27.33.06.65.17.97.26l1.32.37c1.88.51 3.62 1.35 3.9 3.5l.07.8a86.03 86.03 0 0 1 1.05 2.51c.33.2.7.4 1.03.63.2.14.38.34.54.52.32.38.66.75.88 1.17.17.43.14.85.15 1.27a43.48 43.48 0 0 1-.01 2.47 5.43 5.43 0 0 1-1.7 1.68c-3.1 2.05-6.75 3.47-10.52 3.42a18.18 18.18 0 0 1-8.86-2.67 8.32 8.32 0 0 1-2.85-2.32zm11.84-6.26c-.21.1-.29.3-.41.47a2.25 2.25 0 0 1-.86.7c-1.49.77-3.26.86-4.86.4-.4-.13-.77-.31-1.16-.46-.06-.02-.15.04-.26.06-.4 1.11-.38 2.28-.37 3.44 0 .91-.03 1.84.41 2.74 1.46 1.1 3.33 1.48 5.1 1.77 3.1.5 7.34.06 9.92-1.8.23-.38.29-.75.32-1.12.1-1.66.17-3.35-.23-4.97-.01-.08-.08-.14-.14-.22-.11.03-.25.03-.35.09a6.4 6.4 0 0 1-3.62.73c-.99-.05-2.68-.53-3.22-1.42-.08-.14-.18-.27-.27-.41zm1.42-4.22a17.86 17.86 0 0 0-.02 2.46c.05.84.5 1.39 1.3 1.64.12.03.24.08.36.1.5.08.99.15 1.49.2.8.07 1.53-.2 1.79-1.02.31-.89.3-1.8.13-2.7-.03-.2-.19-.37-.27-.52a7.46 7.46 0 0 0-3.49-1c-.53-.05-.98.16-1.3.84zm-2.89 1.32c0-.88.09-1.93-1.03-2.06a7.51 7.51 0 0 0-3.47.79c-.34.2-.57.49-.6.89a21.68 21.68 0 0 0 0 1.6c0 .38.13.74.28 1.08.27.65 1.04.86 1.68.78.7-.08 1.4-.12 2.06-.4 1.08-.4 1.1-1.7 1.08-2.68zm-7.9 35.1.74-1.86.18-1.59c.14-1.61 1.49-2.74 2.95-3.2a40.9 40.9 0 0 1 4.36-1.03c1.97-.36 3.88.28 5.76.79 1.81.49 3.53 1.44 3.75 3.49l.08.77 1.06 2.53c.04.04.09.11.16.14 1 .36 1.66 1.32 2.24 2.1.2.52.18.94.2 1.35.02.82 0 1.67-.02 2.48a5.58 5.58 0 0 1-1.8 1.74c-3.41 2.2-7.43 3.61-11.55 3.24a19.89 19.89 0 0 1-8.6-3.08 7.5 7.5 0 0 1-1.98-1.75c-.13-1.23-.07-2.47-.02-3.7.63-1.03 1.3-1.97 2.5-2.42zm16.88.84c-.18-.07-.34-.02-.48.07-.54.34-1.15.48-1.76.6-1.57.31-4.22 0-5.11-1.5-.06-.1-.09-.24-.2-.2-.1.08-.18.13-.22.2-.32.57-.84.9-1.43 1.13a6.65 6.65 0 0 1-5.34-.16c-.15-.07-.3-.12-.5-.04-.15.4-.26.87-.3 1.3-.1 1.37-.27 3.69.32 4.9 1.86 1.35 4.33 1.71 6.56 1.92 2.73.17 6.13-.37 8.44-1.91.22-.35.29-.67.32-1 .15-1.42.1-2.83-.02-4.25-.03-.37-.1-.74-.28-1.06zm-6.06-5.38c-.11.88-.1 1.75-.03 2.62.05.72.42 1.25 1.13 1.5 1 .32 2.13.53 3.17.16.98-.62.94-2.45.77-3.47-.03-.15-.14-.3-.18-.39-.37-.4-.8-.57-1.23-.7a14.05 14.05 0 0 0-2.2-.46 1.6 1.6 0 0 0-1.11.27l-.33.46zm-7.18 4.32c.3.12.62.17.96.14.53-.04 1.08-.06 1.6-.19 1.16-.28 1.59-.69 1.69-1.98.04-.58 0-1.17 0-1.75a1.58 1.58 0 0 0-.1-.48c-.15-.47-.58-.71-1.06-.7-1.22.04-2.73.28-3.7 1.08-.06.19-.19.41-.22.65-.04.41-.04.83-.04 1.24-.01.43.1.82.24 1.22.11.33.31.58.63.77zm14.18 286.29 1.07 2.52c1.3.74 1.59 1.02 2.46 2.39.16 1.04.18 2.45.06 3.76-1.38 1.97-5.13 3.62-7.42 4.31-5.05 1.56-10.42.23-14.72-2.66a7.04 7.04 0 0 1-1.71-1.58c-.14-1.03-.14-2.5 0-3.84.6-.92 1.27-1.87 2.44-2.3l.74-1.84.18-1.64c.13-1.35 1.12-2.34 2.3-2.88 1.3-.57 2.72-.78 4.08-1.16.56-.14 1.14-.2 1.72-.27.29-.03.58-.04.87 0 1.41.13 2.77.53 4.13.94 1.72.48 3.38 1.32 3.69 3.26.06.33.08.66.11.99zm-.97 3.41c-.11.03-.25.03-.35.1-.65.4-1.38.54-2.12.67-1.45.28-4.08-.14-4.85-1.53-.06-.1-.08-.24-.3-.17-.3.46-.57.84-1.1 1.09a6.48 6.48 0 0 1-5.77.05.68.68 0 0 0-.51-.08c-.19.4-.27.84-.31 1.3a19.32 19.32 0 0 0-.01 3.73c.04.42.13.82.34 1.2 2.18 1.58 5.84 2.06 8.48 1.94 2.17-.16 4.77-.67 6.55-1.98.18-.34.26-.66.29-1 .12-1.37.1-2.74-.01-4.1-.04-.42-.1-.83-.32-1.22zm-.98-4.5a1.24 1.24 0 0 0-.66-.77 8.6 8.6 0 0 0-3.12-.8c-.6-.05-1.05.23-1.3.86a14.45 14.45 0 0 0 0 2.56c.06.73.46 1.23 1.16 1.48.84.3 1.7.35 2.58.3.56-.03.93-.35 1.13-.85.16-.39.27-.79.28-1.21.01-.54.03-1.08-.07-1.57zm-9.28-1.51c-1.05.14-2.08.3-3.03.76-.3.16-.57.36-.72.77-.17.8-.11 1.8.15 2.64.11.41.36.74.86.94.67.11 1.41.04 2.16-.08.79-.15 1.58-.48 1.76-1.35.04-.16.1-.32.1-.49 0-.7.04-1.41 0-2.12-.06-.74-.55-1-1.28-1.07zM25.7 1071c1.16.44 1.85 1.37 2.44 2.33.15 1.26.15 2.77.01 3.8a6.36 6.36 0 0 1-1.82 1.65c-3.47 2.1-7.5 3.5-11.6 3.08-3-.32-5.83-1.43-8.4-2.96a7.06 7.06 0 0 1-2.06-1.83 30.67 30.67 0 0 1 .01-3.65 5.83 5.83 0 0 1 2.53-2.51c.2-.54.48-1.24.7-1.76l.2-1.79c.25-2.03 2.35-3.03 4.15-3.4.77-.16 1.55-.31 2.31-.5 2.16-.57 4.3 0 6.39.55 1.88.48 3.75 1.44 3.96 3.6l.07.76 1.1 2.63zm-17.13 7.02c1.42 1.16 3.47 1.5 5.21 1.8 2.93.48 7.5.03 9.9-1.8.52-1.04.35-3.66.28-4.88a3.68 3.68 0 0 0-.25-1.22c-.03-.06-.11-.1-.17-.15-.18-.04-.33.05-.47.12-1.7.83-3.71.86-5.45.13a2.56 2.56 0 0 1-1.32-1.1c-.05-.08-.08-.22-.26-.19-.04.05-.12.1-.15.17-.32.59-.83.92-1.43 1.15a6.68 6.68 0 0 1-5.33-.14c-.15-.07-.3-.12-.47-.07a5.86 5.86 0 0 0-.43 2.56c-.03 1.2-.07 2.41.34 3.62zm9.48-12.18c-.27.2-.5.46-.5.81-.01.79-.04 1.58.01 2.36.04.73.44 1.24 1.14 1.48a5.3 5.3 0 0 0 3.15.19c1-.64.95-2.43.77-3.47a.94.94 0 0 0-.3-.52 6.11 6.11 0 0 0-2.68-.93c-.53-.08-1.07-.17-1.59.08zm-4.12-.03c-.76-.19-1.52.03-2.29.2-.65.16-1.28.36-1.76.78-.2.23-.3.45-.31.7l-.03 1.38c0 .33.1.65.2.97.12.37.32.66.77.9 1.02.22 2.12.09 3.17-.34.44-.18.74-.53.85-1.01.04-.2.11-.4.12-.61.01-.66.03-1.33 0-1.99a1.08 1.08 0 0 0-.72-.98zM7.5 941.08c.09-.7.14-1.24.22-1.78.16-1.31 1.21-2.31 2.4-2.8 1-.43 2.07-.6 3.1-.92 3.05-.9 4.54-.44 7.56.48 1.73.43 3.5 1.45 3.72 3.38l.1.88c.36.8.72 1.68 1.04 2.49a5.23 5.23 0 0 1 2.48 2.4c.16 1.09.18 2.62.04 3.77a6.36 6.36 0 0 1-1.59 1.52c-3.24 2.22-7.14 3.7-11.11 3.49a18.32 18.32 0 0 1-8.66-2.9c-.89-.59-1.8-1.18-2.44-2.04a1.28 1.28 0 0 1-.13-.65c0-1.04-.04-2.08.07-3.15.62-.98 1.27-1.94 2.46-2.36.3-.6.48-1.24.74-1.81zm16.16 9c.57-1.16.37-3.7.3-5.04a3.37 3.37 0 0 0-.24-1.09c-.02-.06-.1-.1-.16-.15-.18-.03-.32.08-.47.15-1.65.8-3.36.84-5.09.3-.77-.25-1.44-.65-1.8-1.43-.02-.03-.06-.04-.1-.07-.05.06-.13.1-.17.17a2.77 2.77 0 0 1-1.62 1.28 6.93 6.93 0 0 1-5.45-.33c-.06-.03-.15 0-.24.02-.53 1-.44 3.86-.31 5.05.04.41.12.82.35 1.17 1.36 1.03 3.12 1.43 4.77 1.73 3.35.53 7.36.2 10.23-1.76zm-6.1-11.63a25.15 25.15 0 0 0-.02 2.44c.05.64.24 1.25.85 1.56.15.08.3.16.45.2.77.2 1.54.35 2.33.3a1.36 1.36 0 0 0 1.25-.89c.39-.95.38-1.94.18-2.93-.03-.15-.16-.29-.23-.4-.82-.62-1.76-.78-2.7-.95a2.57 2.57 0 0 0-1.65.1l-.47.57zm-3.73-.65c-.2-.01-.5-.06-.78-.02a7.36 7.36 0 0 0-2.96.85c-.3.17-.5.45-.51.8a21.3 21.3 0 0 0-.03 1.62c.01.42.16.81.34 1.19.23.47.73.7 1.23.7.76.05 1.5-.1 2.21-.29.5-.17 1.02-.5 1.16-1.03.05-.2.12-.4.14-.61.08-.74.08-1.5 0-2.24-.04-.44-.29-.77-.8-.97zM24.6 237.39l1.06 2.53a5.51 5.51 0 0 1 2.46 2.38c.17 1.02.2 2.4.07 3.73-.1.28-.32.48-.53.68-.37.33-.73.69-1.15.95-4.47 2.99-10.13 4.35-15.32 2.54a22.4 22.4 0 0 1-5.15-2.48c-.63-.4-1.1-.87-1.72-1.62-.12-1.03-.11-2.51.02-3.76.6-.98 1.3-1.9 2.45-2.36l.73-1.82.19-1.65c.15-1.64 1.6-2.78 3.1-3.21 1.44-.4 2.89-.77 4.37-1.02 1.92-.32 3.79.36 5.62.85 1.74.42 3.48 1.46 3.71 3.39l.09.87zm-15.96 3.5c-.36.8-.37 1.67-.4 2.53-.02 1.25-.09 2.5.36 3.68.5.45 1.08.67 1.65.92 1.28.54 2.63.78 4 .94 2.1.3 4.24.1 6.3-.45.8-.22 2.6-.84 3.14-1.44.54-.79.36-4.12.25-5.18-.04-.37-.1-.74-.32-1.08-.11.02-.25 0-.35.07-.85.49-1.78.65-2.75.72-1.35.09-3.53-.32-4.22-1.6-.05-.1-.07-.25-.24-.2-.77 1.01-1.06 1.23-2.28 1.57-1.5.42-2.96.3-4.4-.26-.23-.09-.42-.28-.74-.21zm9.55-6.06c-.43.24-.64.58-.65 1.04v2c0 .2.04.4.1.6.13.47.4.82.85 1.02.15.07.3.15.46.19.69.16 1.38.3 2.1.28.58-.02 1.04-.24 1.34-.77.34-1.07.4-1.55.3-2.56a1.44 1.44 0 0 0-.32-.85c-.69-.6-1.61-.73-2.5-.93a3.01 3.01 0 0 0-1.68-.02zm-3.77 4a2.78 2.78 0 0 0 .25-1.06v-1.87c0-.08-.03-.16-.05-.24-.1-.45-.51-.82-.96-.86-.17-.02-.34-.04-.5-.01a7.57 7.57 0 0 0-3.29 1.03c-.08.17-.2.3-.23.46-.2 1.12-.27 3.21 1.08 3.62.85.15 1.67-.02 2.48-.21.5-.13.93-.36 1.22-.87zM4.28 1269.58c-.1-1.24-.07-2.45 0-3.65.25-.6.7-1.04 1.1-1.52.37-.46.9-.7 1.4-.98l.73-1.82.19-1.66c.16-1.57 1.48-2.63 2.9-3.11.59-.22 4.23-1.05 4.85-1.11 1.76-.2 3.46.36 5.14.8.87.27 1.77.51 2.5 1.09 1.13.85 1.43 1.89 1.5 3.24l1.1 2.6a5.14 5.14 0 0 1 2.43 2.3c.16 1.11.18 2.6.05 3.77-.16.35-.45.6-.73.84-.3.28-.61.57-.96.79a21.06 21.06 0 0 1-7.08 2.99c-3.85.85-7.9-.01-11.35-1.8-.48-.25-.94-.53-1.41-.79a7.95 7.95 0 0 1-2.36-1.98zm4.32 1.03c3.75 2.56 11.26 2.6 15 .03.26-.35.32-.68.35-1.01a22.57 22.57 0 0 0-.02-4.24c-.03-.38-.1-.74-.29-1.07-.17-.07-.33-.02-.47.06a6.68 6.68 0 0 1-5.57.17 2.55 2.55 0 0 1-1.31-1.1c-.05-.08-.07-.24-.24-.18-.05.06-.12.11-.16.18-.68 1.22-2.58 1.63-3.87 1.62a6.6 6.6 0 0 1-3.02-.67c-.1-.05-.23-.04-.37-.06-.4 1-.4 2.05-.4 3.1-.01 1.03-.05 2.08.38 3.17zm8.98-11.74a14.42 14.42 0 0 0-.02 2.68c.04.83.59 1.36 1.36 1.59.7.15 1.38.3 2.1.28 1.83.02 1.8-2.37 1.6-3.68-.03-.2-.15-.38-.43-.65a7.25 7.25 0 0 0-3.66-.87c-.18.02-.31.1-.5.15l-.45.5zm-3.66-.54c-1.06-.22-2.87.26-3.8.8-.3.19-.51.45-.53.8-.04.87-.12 1.76.2 2.59.19.52.58.82 1.12.87a6 6 0 0 0 2.69-.4c.5-.19.82-.55.94-1.08.05-.25.11-.5.12-.74a28.08 28.08 0 0 0 0-1.75c-.02-.49-.24-.87-.74-1.1zm-9.64-216.98c.63-1.03 1.33-1.96 2.48-2.41.24-.6.49-1.17.7-1.75.08-.19.08-.4.11-.6l.14-1.25c.15-1.37 1.24-2.41 2.48-2.9 1.36-.52 2.8-.77 4.22-1.09 2.07-.5 4.15.07 6.14.62.91.28 1.86.53 2.61 1.15 1.08.83 1.37 1.9 1.43 3.2l1.09 2.58c.44.28 1 .47 1.38.94.4.48.84.93 1.13 1.58a24.5 24.5 0 0 1 .01 3.48c-.17.43-.47.67-.74.92-.34.3-.68.62-1.07.86-5.73 3.66-12 4.34-18.15 1.21-.63-.3-1.24-.67-1.86-1.02a7.23 7.23 0 0 1-2.03-1.75c-.17-.45-.11-.87-.12-1.29-.02-.82.01-1.67.05-2.48zm19.36 4.7c.24-.44.3-.8.33-1.18a22.6 22.6 0 0 0-.02-3.87c-.03-.37-.13-.74-.22-1.1-.01-.07-.09-.13-.14-.2a.67.67 0 0 0-.47.13 5 5 0 0 1-1.77.58c-1.3.25-2.57.08-3.79-.44-.5-.22-.94-.53-1.23-1.02l-.2-.3c-.08.07-.17.1-.2.18-.7 1.33-2.95 1.77-4.34 1.67a7.06 7.06 0 0 1-2.3-.53c-.18-.08-.35-.23-.58-.16-.05.06-.14.11-.15.18-.1.4-.21.8-.26 1.22a18.14 18.14 0 0 0 0 3.61c.03.42.13.82.33 1.22.7.57 1.59.9 2.44 1.17 3.85 1.2 9.13 1.13 12.57-1.16zm-1.82-7.39c.34-.18.55-.48.67-.85.13-.4.22-.8.23-1.22 0-.5.02-1-.1-1.46-.11-.3-.3-.53-.56-.66-.26-.13-.52-.27-.8-.36a10.2 10.2 0 0 0-2.3-.49c-.64-.05-1.14.17-1.4.88-.07.76-.07 1.6-.01 2.42.05.78.45 1.33 1.2 1.57 1 .3 2.05.47 3.07.17zm-11.44 0c.55.22 1.13.14 1.71.1a4.65 4.65 0 0 0 1.57-.36c.3-.14.55-.36.77-.73.33-.92.27-2.02.2-3a.94.94 0 0 0-.06-.23c-.14-.38-.4-.64-.8-.7-1-.13-2.87.3-3.7.86-.3.2-.47.48-.5.83a16.4 16.4 0 0 0 0 1.61c.01.29.12.57.2.85.1.33.3.58.6.77zM6.8 1199.2l.7-1.78c.07-.58.12-1.16.2-1.74.54-3.37 4.77-3.48 7.43-4.09a5.56 5.56 0 0 1 2.1-.01c.62.11 1.24.2 1.84.37.35.11.73.17 1.09.27 2.02.49 4.08 1.3 4.34 3.65l.08.78 1.08 2.57c.07.05.2.16.34.22.52.21.92.57 1.26 1 .32.38.67.74.86 1.2.15 1.14.16 2.65.03 3.76a6.37 6.37 0 0 1-1.8 1.66c-2.02 1.2-4.12 2.17-6.4 2.72-4.67 1.2-9.46-.11-13.5-2.5a7.3 7.3 0 0 1-2.14-1.86c-.13-1.05-.12-2.53 0-3.8.3-.51.7-.98 1.1-1.46.39-.46.99-.6 1.39-.96zm1.81 7.17c.14.1.3.24.48.33 1.36.75 2.86 1.15 4.38 1.37 3.17.52 7.5.16 10.17-1.72.08-.14.13-.21.15-.29.05-.16.1-.32.12-.48.2-1.54.15-3.08-.01-4.62-.03-.24-.1-.48-.18-.72-.02-.07-.1-.13-.15-.19-.22-.06-.4.08-.58.17-1.63.74-3.3.8-5 .24-.76-.25-1.44-.65-1.81-1.42-.02-.03-.06-.04-.09-.06-.06.05-.14.1-.18.16a2.76 2.76 0 0 1-1.64 1.28 6.8 6.8 0 0 1-4.88-.09c-.23-.09-.42-.28-.7-.23-.05.06-.13.11-.15.18-.09.4-.2.81-.24 1.22a19.05 19.05 0 0 0-.02 3.62c.04.42.14.82.33 1.25zm8.92-11.66c0 .93-.05 1.7 0 2.57.09.9.64 1.37 1.49 1.62.99.17 2.74.67 3.32-.46.43-.9.44-1.94.27-2.92-.03-.19-.17-.36-.23-.47a3.4 3.4 0 0 0-1.4-.7c-.88-.22-2.1-.62-2.97-.22l-.48.58zm-2.87 1.4c.04-1.1.03-2.16-1.4-2.09a8.03 8.03 0 0 0-3.1.84c-.34.2-.57.49-.59.89-.05.9-.11 1.84.3 2.68.17.44.62.67 1.09.71.8.05 1.57-.1 2.33-.3.16-.04.31-.1.46-.19.92-.46.93-1.64.9-2.54zm9.92-95.68 1.08 2.54a5.55 5.55 0 0 1 2.45 2.4c.16 1.03.18 2.5.05 3.77-1.47 2.2-6.47 4.1-9.06 4.57-4.41.88-8.87-.46-12.67-2.69a7.02 7.02 0 0 1-2.13-1.86 18.97 18.97 0 0 1 .02-3.76 5.82 5.82 0 0 1 2.46-2.44l.72-1.77.19-1.67c.21-2.04 2.13-3.05 3.94-3.47 1.26-.26 2.52-.55 3.8-.74a4.87 4.87 0 0 1 1.61 0c.66.12 1.32.2 1.96.39.4.12.82.17 1.22.28 1 .3 2.04.52 2.87 1.18 1.14.87 1.42 1.9 1.49 3.27zm-15.98 3.45c-.15.45-.27.96-.32 1.43-.07 1.33-.25 3.69.36 4.84 1.38 1 3.12 1.37 4.78 1.66 3.31.52 7.3.18 10.17-1.65.26-.36.32-.69.35-1.02a21.67 21.67 0 0 0-.02-4.24 2.4 2.4 0 0 0-.29-1.06c-.17-.1-.32-.05-.47.03-1.75.9-3.9.91-5.68.12a2.38 2.38 0 0 1-1.2-1.05c-.05-.1-.07-.24-.26-.18-.07.08-.15.17-.21.28-.27.45-.67.74-1.13.94-1.74.8-3.84.77-5.57-.04-.11-.05-.24-.07-.35-.1l-.16.04zm13.38-1.26c.84-.71.82-2.39.63-3.39-.04-.15-.15-.3-.2-.4a3.63 3.63 0 0 0-1.59-.78c-.91-.22-1.88-.53-2.81-.18l-.45.56a18.6 18.6 0 0 0-.03 2.39c.05 1 .44 1.5 1.42 1.79a7.45 7.45 0 0 0 2.08.29c.34 0 .65-.09.94-.28zm-12.15-3.78c-.08.18-.23.4-.25.63-.07.9-.12 1.84.27 2.69.15.36.45.6.84.67.74.14 1.5 0 2.22-.14 1.3-.31 1.62-.8 1.73-1.94.05-.62.03-1.24 0-1.86-.02-.5-.26-.87-.75-1.06-.7-.2-1.39.04-2.07.18-.7.14-1.36.37-2 .83zm-5.58 777c-.05-1.21-.07-2.46.04-3.67.65-.98 1.3-1.9 2.43-2.33.29-.64.5-1.2.78-1.89l.18-1.68c.22-2.08 2.23-3.08 4.06-3.49 1.23-.24 2.44-.53 3.68-.7a5.57 5.57 0 0 1 1.61 0c1.32.2 2.6.52 3.9.85.4.1.79.26 1.17.41a3.77 3.77 0 0 1 2.4 2.96l.08.89 1.07 2.55c.03.02.09.1.16.13 1.05.4 1.67 1.33 2.3 2.2.04.26.1.5.1.75.04 1 .07 2-.01 3.02a6.56 6.56 0 0 1-2.1 1.9 23.03 23.03 0 0 1-6.57 2.63c-3.38.76-6.95.24-10.12-1.1-1.9-.86-3.9-1.66-5.16-3.42zm11.88-6.38c-.08.06-.17.1-.2.16-.38.71-1.02 1.08-1.75 1.33-1.6.54-3.19.5-4.76-.11-.2-.08-.38-.18-.58-.24-.06-.02-.14.04-.23.07-.52 1.1-.44 3.8-.32 5.06.05.41.12.83.35 1.17.47.4 1.01.61 1.55.83a17.42 17.42 0 0 0 10.44.48c.76-.2 2.63-.85 3.07-1.45.13-.24.21-.56.25-.9a21.29 21.29 0 0 0-.04-4.23 2.24 2.24 0 0 0-.3-1.07c-.28-.09-.48.1-.7.2a6.66 6.66 0 0 1-5.46-.03c-.46-.21-.86-.5-1.12-.95l-.2-.32zm2-4.88c-.4.24-.6.59-.6 1.04-.01.66-.02 1.32 0 1.98 0 .25.08.5.15.73.12.37.38.64.72.82.15.07.3.15.46.19.76.2 1.53.35 2.33.3.64-.04 1.06-.38 1.28-.99.3-.84.29-1.7.16-2.58-.03-.19-.16-.37-.23-.5-.81-.68-1.77-.8-2.7-1.01a2.65 2.65 0 0 0-1.57.02zm-8.3 1.02c-.07.15-.16.25-.18.37-.22.99-.21 1.97.19 2.92.17.42.52.64.95.73.78.1 1.58-.05 2.33-.23.98-.24 1.4-.73 1.5-1.73.06-.66.04-1.33.02-1.99-.01-.5-.24-.87-.75-1.09a3.3 3.3 0 0 0-1.56.07c-.84.2-1.7.35-2.5.95zm14.74 98.1c.47.86.87 1.73 1.2 2.58 1.17.7 1.38.9 2.34 2.33.03.15.08.35.1.56.05 1.04.05 2.08 0 3-.1.37-.28.54-.45.72a7.59 7.59 0 0 1-3.23 2.05c-1.26.42-2.53.84-3.8 1.21-.44.13-.9.15-1.36.2-.29.02-.59-.02-.87.03-2.13.38-4.6.04-6.65-.12l-3.14-1.04a8.17 8.17 0 0 1-4.42-2.81c-.11-1.21-.1-2.7.04-3.77a5.87 5.87 0 0 1 2.32-2.36l.95-2.19c.08-1.4-.06-2.64 1.08-3.69 1.25-1.19 3-1.64 4.67-1.89a3.81 3.81 0 0 1 1.7.15c.65-.08 1.26-.18 1.9-.06.19.03.4-.02.6-.05.63-.1 1.25-.07 1.87.06 2.17.4 4.92 1.44 5.09 4 .03.32.04.65.06 1.1zm-1.2 2.61c-.3-.03-.5.12-.73.22-.86.38-1.76.5-2.68.45a7.33 7.33 0 0 1-2.18-.5 2.72 2.72 0 0 1-1.54-1.21c-.03-.06-.11-.09-.17-.13-.06.06-.15.1-.18.17-.42.77-1.25 1.09-2.03 1.34a6.08 6.08 0 0 1-4.39-.14c-.18-.08-.38-.14-.56-.2l-.3.26a11.7 11.7 0 0 0-.39 3.97c.04.74.02 1.5.4 2.24 2 1.28 5.8 1.7 8.17 1.64a19.3 19.3 0 0 0 5.5-.99c.47-.16.94-.32 1.32-.64.27-.32.31-.7.34-1.07a23.13 23.13 0 0 0 0-3.86 4.71 4.71 0 0 0-.31-1.34l-.28-.21zm-5.82-5.25c-.07.71-.04 1.42-.03 2.12.03.65.33 1.22.93 1.5a6.6 6.6 0 0 0 3.34.46c.35-.15.53-.37.64-.65.33-.84.34-1.7.16-2.57-.04-.15-.15-.3-.2-.38-1.04-.86-2.38-1.03-3.67-1.21-.48-.07-.88.16-1.17.73zm-7.7.47c-.08.16-.19.3-.22.46-.17.87-.16 1.73.18 2.57a1 1 0 0 0 .65.6c.92.15 1.85-.04 2.77-.29.49-.13.93-.37 1.19-.86.16-.37.25-.77.24-1.2 0-.53-.01-1.07-.05-1.6-.02-.26-.2-.46-.41-.62-.3-.16-.62-.19-.96-.15a7.6 7.6 0 0 0-3.39 1.09zm-5.59-791.87a5.83 5.83 0 0 1 2.53-2.54l.72-1.8c.06-.62.12-1.2.2-1.77.17-1.5 1.49-2.57 2.85-3.02a19.65 19.65 0 0 1 1.8-.5c.65-.14 1.3-.24 1.96-.39a8.45 8.45 0 0 1 3.84.02c.85.2 1.7.37 2.55.6 1.77.44 3.6 1.47 3.79 3.47l.08.85 1.08 2.55a5.53 5.53 0 0 1 2.45 2.4c.16 1.05.18 2.51.05 3.72-.13.33-.38.55-.63.77-.37.33-.74.68-1.16.93-4.41 2.76-9.87 4.1-14.93 2.45a24.47 24.47 0 0 1-4.9-2.17 7.15 7.15 0 0 1-2.2-1.86c-.03-.1-.09-.21-.1-.33a36.3 36.3 0 0 1 .02-3.38zm4.36 4.61c2.1 1.53 5.89 2.04 8.46 1.92 2.17-.17 4.77-.63 6.56-1.93.22-.35.27-.68.3-1.01.13-1.42.11-2.83-.02-4.24a2.3 2.3 0 0 0-.3-1.06c-.19-.07-.34 0-.48.08-.63.37-1.32.5-2.02.63a6.24 6.24 0 0 1-3.65-.52c-.47-.2-.86-.5-1.13-.95l-.22-.32c-.1.09-.21.15-.27.25a2.4 2.4 0 0 1-1.32 1.09 6.66 6.66 0 0 1-5.45-.12c-.1-.06-.23-.06-.33-.08-.08.07-.18.12-.2.18-.1.4-.21.8-.25 1.22-.12 1.39-.26 3.6.32 4.86zm13.73-11.38a7.6 7.6 0 0 0-3.5-1.05c-.58-.06-1.04.2-1.3.84-.08.8-.05 1.69 0 2.55.08.76.55 1.28 1.28 1.5a6.16 6.16 0 0 0 2.86.2c.43-.22.66-.5.78-.87.14-.4.24-.8.24-1.21 0-.5 0-1-.1-1.52l-.26-.44zm-12.74.51c-.11.49-.09.99-.09 1.48 0 .42.1.82.24 1.21.12.37.34.66.79.86.91.12 1.9.08 2.85-.25.45-.16.81-.4 1.09-.97.04-.24.14-.6.16-.97.02-.62 0-1.24-.03-1.86a1.03 1.03 0 0 0-.5-.8c-.5-.26-1.07-.16-1.6-.08-.87.18-2.54.43-2.9 1.38zm-5.36 74.06a36.14 36.14 0 0 1 .02-3.6c.25-.64.72-1.07 1.1-1.56.38-.47.94-.67 1.4-.96l.73-1.82.19-1.68c.26-2.35 2.79-3.28 4.82-3.62.7-.1 1.37-.33 2.07-.46.53-.1 1.07-.13 1.5-.19 1.79.05 3.37.6 4.99.99.48.1.94.31 1.38.55 1.35.7 2.08 1.9 2.1 3.43l.05.26 1.05 2.5a5.44 5.44 0 0 1 2.46 2.4c.16 1 .18 2.49.05 3.76-1.43 2.17-6.46 4.16-9.02 4.6-4.52.9-9.12-.46-12.96-2.86-.72-.44-1.32-1-1.93-1.74zm4.3.95c2.1 1.67 6.28 2.16 8.8 1.99 2.19-.25 4.49-.64 6.33-1.95.06-.2.14-.34.17-.5.05-.25.09-.5.11-.74.09-.6.2-5.1-.45-5.08-.08.02-.17.02-.23.06a6.6 6.6 0 0 1-2.13.68 6.3 6.3 0 0 1-3.42-.39 2.59 2.59 0 0 1-1.5-1.24c-.05-.1-.11-.12-.22-.06-.05.06-.14.15-.2.25-.25.41-.6.7-1.03.89-1.15.52-2.35.8-3.63.58a6.43 6.43 0 0 1-2.14-.63c-.1-.05-.24-.04-.4-.06-.3.8-.36 1.62-.38 2.45-.03 1.25-.1 2.5.32 3.75zm8.98-11.46c0 .83-.06 1.73.03 2.58.1.67.47 1.14 1.11 1.37.91.34 1.86.41 2.82.3 1.35-.2 1.35-2.68 1.08-3.7-.03-.14-.15-.28-.23-.4a7.59 7.59 0 0 0-3.44-1.05c-.58-.07-1.05.18-1.37.9zm-3.12 3.17c.39-.94.27-1.98.2-3.01-.05-.7-.57-.9-1.2-1-1.26.19-2.5.31-3.56 1.08-.08.15-.2.29-.23.44-.18 1.05-.27 3.06.94 3.55.87.15 1.81.07 2.74-.21.45-.14.83-.38 1.11-.85zM4.3 17.23C5.34 15.7 5.5 15.57 6.8 14.8l.72-1.79.2-1.77c.17-1.46 1.4-2.5 2.71-2.98.97-.39 2-.53 3.02-.76 2.96-.83 4.62-.26 7.46.49 1.68.44 3.38 1.47 3.6 3.35.04.29.06.58.09.9l1.08 2.57c.78.42 1.19.66 1.77 1.4.27.32.56.62.73 1.13.13 1.1.09 2.3.06 3.5a5.8 5.8 0 0 1-2 1.87 21.26 21.26 0 0 1-7.64 2.92 17.3 17.3 0 0 1-10.72-2.02c-1.38-.71-2.61-1.37-3.58-2.65-.1-1.25-.09-2.49.01-3.74zm4.3 4.72c2.08 1.5 4.97 1.82 7.46 1.98.3.02.59 0 .88-.02 2.02-.17 4.07-.51 5.9-1.44.3-.15.6-.3.85-.57.52-.92.35-3.9.25-5.04-.04-.37-.14-.73-.23-1.1-.02-.05-.11-.1-.17-.14-.18-.03-.32.08-.46.16-1.8.98-5.77 1.02-6.9-1.16 0-.03-.05-.04-.1-.08l-.29.4a1.97 1.97 0 0 1-.8.76 6.54 6.54 0 0 1-5.68.2c-.15-.07-.3-.15-.46-.2-.06-.01-.15.04-.25.08-.39 1.01-.37 2.1-.38 3.18 0 1-.02 2 .38 2.99zm8.96-11.6a16.1 16.1 0 0 0-.01 2.5c.05.78.46 1.32 1.2 1.56a5.9 5.9 0 0 0 2.88.26c1.24-.52 1.16-2.42 1-3.52-.05-.42-.45-.7-.8-.88a8.47 8.47 0 0 0-3-.73c-.55-.04-.97.2-1.27.82zm-6.97 4.33c.44.09.86.06 1.27.04.5-.01.99-.14 1.46-.28.87-.24 1.26-.87 1.33-1.75 0-.66.04-1.33 0-1.99-.05-.9-.84-1.17-1.52-1.09-1.11.27-2.35.32-3.27 1.08l-.23.4c-.12.53-.1 1.03-.1 1.52 0 .38.1.74.2 1.1.14.42.37.74.86.97zM4.26 2069.86a30.1 30.1 0 0 1 .04-3.68c.65-.98 1.28-1.9 2.43-2.33.29-.63.5-1.2.78-1.88l.19-1.68c.14-1.47 1.33-2.54 2.65-3.04 1.08-.45 2.25-.56 3.38-.86.64-.18 1.3-.23 1.96-.34.32-.05.67-.05 1 0 .73.1 1.48.17 2.2.39.44.13.9.2 1.33.32 1 .29 2.03.53 2.86 1.18 1.14.85 1.44 1.9 1.5 3.26l1.1 2.6c.42.24.93.43 1.3.84.42.46.83.94 1.13 1.45.17 1.05.2 2.42.07 3.8-1.45 2.16-6.12 4-8.65 4.54-4.62 1.06-9.38-.34-13.33-2.78a6.48 6.48 0 0 1-1.94-1.8zm4.37 1.1c2.42 1.57 6.17 2.07 9.02 1.82 2.06-.23 4.26-.64 5.97-1.84.27-.4.32-.81.35-1.23.07-.86.22-4.69-.4-5.13-.23-.04-.4.1-.58.19-1.89.95-5.83.9-6.85-1.28-.09.08-.17.12-.2.19a2.79 2.79 0 0 1-1.63 1.28c-1.63.6-3.26.54-4.88-.07-.2-.07-.37-.18-.57-.25-.06-.02-.15.04-.25.07-.4 1.01-.39 2.1-.39 3.18 0 .99-.04 2 .41 3.07zm9.6-12.38c-.47.25-.69.6-.7 1.04l.01 2.12c.05.83.48 1.39 1.28 1.65a6.2 6.2 0 0 0 2.76.25c1.26-.5 1.2-2.37 1.07-3.48-.03-.2-.15-.38-.21-.53a4 4 0 0 0-1.72-.81c-.8-.19-1.6-.46-2.49-.24zm-3.83 4.02c.17-.43.27-.83.27-1.25 0-.62 0-1.25-.05-1.86-.08-.68-.77-1.01-1.4-.94-1.15.16-2.45.37-3.4 1.1-.07.16-.18.3-.2.46-.16 1.11-.26 3.09 1.05 3.54.87.16 1.73-.03 2.57-.23.45-.11.85-.34 1.16-.82zM4.28 53.03c-.1-1.27-.05-2.47 0-3.7.62-1 1.28-1.94 2.37-2.36.32-.3.32-.66.46-.96.15-.3.26-.61.4-.93l.19-1.72c.14-1.52 1.4-2.6 2.77-3.09 1.13-.45 2.34-.57 3.51-.84 2.38-.65 4.46-.03 6.76.54 1.81.48 3.55 1.44 3.77 3.49.04.29.06.58.08.83l1.08 2.56a5.54 5.54 0 0 1 2.49 2.46c.15 1.14.1 2.35.07 3.58a6.66 6.66 0 0 1-2.51 2.18c-1.3.66-2.6 1.3-3.98 1.79-5.24 1.9-10.51.81-15.22-1.92a7.69 7.69 0 0 1-2.24-1.91zm4.32.94c2.18 1.5 4.93 1.79 7.51 1.95.25.02.5 0 .75-.01 2.35-.21 4.86-.57 6.83-1.97.18-.4.25-.75.28-1.13.12-1.33.08-2.66-.03-4-.03-.4-.1-.82-.33-1.2-.11.02-.25.02-.34.07-.75.41-1.55.58-2.38.7-1.36.21-3.94-.27-4.6-1.6-.05-.08-.07-.23-.26-.19-.26.38-.47.76-.89 1-1.03.6-2.15.9-3.34.84-.95-.05-1.9-.2-2.77-.67-.1-.06-.23-.04-.34-.06-.35.78-.41 1.02-.45 2.56-.04 1.25-.1 2.5.36 3.7zm8.95-11.58a26.26 26.26 0 0 0-.01 2.31c.02.69.33 1.32.98 1.6.94.39 2.16.54 3.11.37.46-.2.72-.51.86-.93.3-.89.3-1.79.12-2.7-.04-.15-.15-.29-.26-.48a7.78 7.78 0 0 0-3.63-1.01c-.5-.03-.87.22-1.17.84zm-3.13 3.21c.39-.95.27-1.99.21-3.02-.06-.74-.82-1.04-1.5-.96a8.48 8.48 0 0 0-2.96.85c-.27.14-.44.37-.56.67a5.51 5.51 0 0 0 .13 2.56c.12.47.4.8.9.99.85.12 1.7 0 2.55-.22.5-.13.93-.36 1.23-.87zM6.64 1933.72l.96-2.22c.09-1.54-.03-2.73 1.23-3.82.44-.4.94-.7 1.48-.92a8.63 8.63 0 0 1 4.62-.75c.96-.1 1.91.01 2.87-.05 1.58-.11 3.05.32 4.46.99 1.22.6 2.17 1.65 2.26 3.06l.06.99 1.22 2.69c.42.27.96.51 1.33.98.37.46.79.87 1.05 1.5.11 1.12.08 2.32.05 3.52a7.12 7.12 0 0 1-3.49 2.56 81.3 81.3 0 0 1-4.03 1.32c-.45.13-.9.2-1.36.19-.58-.02-1.16.04-1.74.11a12.53 12.53 0 0 1-3 .01c-.61-.07-1.23-.13-1.86-.12-.55 0-1.06-.13-1.58-.33-2.55-.97-5.05-1.27-6.86-3.6-.02-.15-.06-.31-.07-.48-.02-1.08-.05-2.16.06-3.28a5.43 5.43 0 0 1 2.34-2.34zm1.98 6.52c2.15 1.27 4.7 1.45 7.14 1.66.25.02.5.02.75 0 2.23-.14 4.52-.37 6.57-1.34.22-.1.45-.2.6-.4.2-.3.25-.63.28-.97.1-1.32.22-4.14-.34-5.26l-.3-.18c-.55.2-1.16.42-1.74.56a6.26 6.26 0 0 1-3.44-.25c-1.08-.37-1.35-.56-2.03-1.51-.06.05-.15.1-.18.17-.33.62-.9.97-1.53 1.21-1.9.75-3.58.68-5.45-.16l-.33.2a9.77 9.77 0 0 0-.4 3.34c.01.95-.04 1.92.4 2.93zm9.62-12.4c-.3.1-.54.32-.68.72-.07.68-.06 1.43-.02 2.18a1.6 1.6 0 0 0 1.12 1.5c.11.05.23.11.35.14.73.15 1.46.33 2.21.3.42 0 .86-.1 1.08-.5a4.1 4.1 0 0 0 .33-2.66c-.03-.23-.2-.44-.28-.61-.67-.5-1.39-.7-2.12-.88-.64-.14-1.28-.37-2-.2zm-3.54 1.98c-.03-.48-.02-.81-.07-1.14-.08-.6-.78-.93-1.34-.84-.78.12-1.56.28-2.3.55-.31.11-.6.28-.9.44a.96.96 0 0 0-.47.7c-.14.83-.13 1.66.19 2.46.17.42.49.66.95.68a7.8 7.8 0 0 0 2.58-.36c1.36-.43 1.25-1.37 1.36-2.49zm9.89 66.62c.22.43.44.83.63 1.25.19.41.34.84.5 1.23a6.01 6.01 0 0 1 2.38 2.37c.19 1.03.21 2.73.05 3.87a7.53 7.53 0 0 1-3.4 2.4c-1.3.46-2.58.92-3.9 1.3a4.89 4.89 0 0 1-.98.2l-1.74.14c-2.05.19-4.31-.01-6.32-.2l-2.85-.99c-1.81-.56-3.5-1.34-4.65-2.88a18.48 18.48 0 0 1 .03-3.8 5.47 5.47 0 0 1 2.33-2.3l.9-2.12c.13-1.41-.01-2.65 1.07-3.68 1.34-1.29 3.24-1.74 5.03-1.93.37-.03.75.04 1.28.08a6.5 6.5 0 0 1 2.2-.07c.2.03.41.02.62 0 1.83-.06 4.2.53 5.6 1.75 1.05.93 1.17 2.02 1.22 3.38zm-1.2 2.68c-.73.28-1.26.55-1.98.65a6.87 6.87 0 0 1-4.02-.57c-.43-.2-.79-.47-1.03-.88a3.02 3.02 0 0 0-.22-.3l-.1.03c-.05.06-.12.11-.16.18-.3.53-.79.85-1.34 1.08a6.58 6.58 0 0 1-4.99.12c-.23-.08-.44-.23-.73-.2-.07.06-.2.14-.23.24a13.87 13.87 0 0 0-.3 4.83c.03.46.12.9.32 1.29.35.31.74.47 1.12.62 3.99 1.5 10.11 1.6 13.87-.54.25-.33.31-.61.34-.9.14-1.46.14-2.92-.02-4.37a5.25 5.25 0 0 0-.24-.97c-.03-.1-.16-.17-.3-.31zm-1.33-1.19c.72-.87.74-2.04.57-3.1-.06-.34-.28-.6-.59-.76a7.76 7.76 0 0 0-3.33-.88c-.55-.02-.97.2-1.16.83-.06.64-.03 1.35-.02 2.05.01.7.37 1.3 1 1.59.99.36 2.02.5 3.06.4.12-.01.24-.06.47-.13zm-7.64-.98c.37-.9.27-1.86.22-2.81-.08-.41-.37-.8-.8-.84a3.68 3.68 0 0 0-1 0c-.69.13-1.37.3-2.04.54-.53.23-1.02.43-1.2 1.1-.1.99-.2 2.06.53 2.96.16.06.28.13.4.15a6.47 6.47 0 0 0 3.05-.37c.32-.12.58-.33.84-.73zM24.58 76.4l1.11 2.55c.01.02.07.1.14.13 1.02.4 1.65 1.3 2.24 2.14.19.5.16.91.17 1.33.03.84 0 1.66-.02 2.5a7.1 7.1 0 0 1-2.78 2.27c-1.22.53-2.42 1.11-3.68 1.54a17.26 17.26 0 0 1-13.13-.81l-1.25-.56a7.7 7.7 0 0 1-3.08-2.36c-.02-.16-.06-.37-.06-.57-.02-1.04-.04-2.08.05-3.14.61-1 1.31-1.92 2.46-2.4l.78-1.92c.06-.59.1-1.13.17-1.67.24-2.4 2.85-3.34 4.9-3.69.74-.13 1.5-.2 2.23-.35a7 7 0 0 1 2.85.02c.93.2 1.88.34 2.81.55 2.02.49 3.9 1.49 4.04 3.8l.05.64zm-8.44 2.13c-.21.1-.29.3-.4.46-.67.98-2.6 1.46-3.72 1.43a6.2 6.2 0 0 1-2.9-.64c-.18-.1-.27-.1-.46-.03-.04.07-.1.14-.12.22a14.47 14.47 0 0 0-.19 5.2c.03.28.17.55.26.83 2.06 1.4 4.6 1.67 7.03 1.89.28.03.58.04.87.02a22.9 22.9 0 0 0 3.82-.52c.75-.17 2.98-.89 3.37-1.48.5-.9.33-3.85.24-4.96-.03-.37-.13-.73-.22-1.1-.03-.1-.15-.17-.21-.24-.12.03-.2.04-.28.08a6.67 6.67 0 0 1-6 0 2 2 0 0 1-.89-.84l-.2-.32zm6.28-3.84c-.94-.77-2.43-1-3.6-1.13-.6-.05-1.04.23-1.27.86-.06.7-.04 1.45-.02 2.2.04.62.25 1.27.84 1.57.15.07.3.16.46.2.92.25 1.86.43 2.77.27 1.27-.43 1.21-2.53 1-3.6-.02-.12-.1-.22-.18-.37zm-11.74 4 .72.02a7.2 7.2 0 0 0 1.85-.29c.8-.21 1.28-.74 1.37-1.58.09-.74.08-1.49.02-2.23-.06-.7-.73-1.02-1.37-.96-.45.05-.91.12-1.35.22-.75.19-2.06.46-2.31 1.31-.1.46-.08.96-.07 1.46 0 .42.1.82.25 1.21.13.37.38.64.89.84zm5.49 1048.63c1.68.1 3.12.54 4.58.87a6.29 6.29 0 0 1 2.47 1.15c1.07.82 1.3 1.91 1.38 3.19l1.08 2.55a5.38 5.38 0 0 1 2.44 2.4c.16 1.09.18 2.63.03 3.78a6.5 6.5 0 0 1-1.9 1.71c-4.3 2.6-9.54 3.95-14.47 2.45a24.4 24.4 0 0 1-5.37-2.33 7.4 7.4 0 0 1-2-1.7c-.04-.05-.07-.14-.11-.2-.1-1.09-.1-2.39.01-3.7.58-.95 1.25-1.89 2.43-2.34.28-.6.48-1.25.76-1.83l.2-1.75c.14-1.47 1.34-2.54 2.66-3.04.66-.25 1.34-.45 2.04-.57.33-.05.66-.1.98-.18.93-.25 1.88-.36 2.79-.46zm7.44 8.54c-.04 0-.09-.03-.12-.02-.12.04-.24.06-.35.12-1.76.91-4.01.92-5.78.04-.64-.31-.85-.62-1.2-1.21-.05.01-.09 0-.11.03-.06.06-.12.11-.16.19-.31.58-.83.92-1.42 1.15-1.73.7-3.76.62-5.45-.19-.1-.05-.23-.04-.38-.06-.4.96-.41 1.96-.42 2.95 0 1.12-.07 2.25.38 3.3 1.35 1.08 3.48 1.55 5.16 1.77 2.3.37 4.66.2 6.92-.42.75-.21 2.6-.82 3.04-1.43.11-.23.2-.54.22-.8a22.03 22.03 0 0 0-.01-4.36c-.04-.37-.1-.74-.31-1.06zm-1.24-5.05a7.34 7.34 0 0 0-3.8-1.03c-.53.05-.77.35-1 .79-.08.8-.06 1.6-.03 2.38.02.63.3 1.24.9 1.53.14.07.3.15.45.19.89.23 1.78.39 2.64.25 1.34-.45 1.26-2.43 1.1-3.56-.02-.2-.17-.37-.26-.55zm-11.75 4.1c.9.14 1.7-.01 2.52-.2.86-.2 1.38-.72 1.48-1.62.1-.74.08-1.49.02-2.23-.07-.79-.84-1.15-1.57-1.02a45.88 45.88 0 0 0-2.06.47c-.36.1-.7.26-1 .48a.94.94 0 0 0-.4.61c-.15 1.08-.24 3.02 1 3.5zM4.27 213.89c-.06-1.27-.07-2.47.03-3.64a5.59 5.59 0 0 1 2.46-2.5l.77-1.87.15-1.55c.19-2.45 2.83-3.49 4.94-3.8.87-.1 1.73-.28 2.59-.41.66-.1 1.32-.13 1.98 0 1.07.2 2.14.37 3.2.6 1.95.46 3.85 1.37 4.12 3.58l.08.95c.37.75.75 1.65 1.06 2.46.06.05.11.13.18.16 1.06.41 1.67 1.34 2.3 2.22.04.3.1.59.1.88.02.95.06 1.91-.03 2.88-.68 1-1.7 1.74-2.77 2.26-1.18.51-2.34 1.07-3.56 1.5-5.2 1.84-10.04.93-14.84-1.5a7.3 7.3 0 0 1-2.76-2.22zm19.2-5.53a6.74 6.74 0 0 1-5.01.6 3.47 3.47 0 0 1-2.36-1.65c-.18.12-.26.32-.37.49-.17.25-.38.44-.64.58a6.6 6.6 0 0 1-6.23.08l-.27.2c-.52 1.7-.42 3.48-.25 5.22.04.33.1.66.37.98 1.97 1.4 6.2 1.99 8.6 1.78 1.9-.17 3.8-.51 5.53-1.36.3-.15.6-.29.83-.54.21-.33.26-.7.3-1.07a22.18 22.18 0 0 0-.02-3.86c-.04-.4-.15-.81-.24-1.22-.02-.06-.11-.1-.24-.23zm-1.88-.91c1.27-.49 1.19-2.34 1.06-3.43-.04-.3-.2-.53-.46-.71a3.37 3.37 0 0 0-1.12-.52c-.65-.16-1.3-.3-1.94-.43-.43-.09-.83 0-1.24.28l-.31.45c-.1.8-.08 1.59-.04 2.38.04.96.5 1.49 1.47 1.76.85.23 1.7.31 2.58.22zm-11.05-.02a6.5 6.5 0 0 0 2.7-.23c.5-.13.93-.38 1.2-.9.36-.92.25-1.92.2-2.9a1 1 0 0 0-.52-.81c-.79-.37-2.35.07-3.16.34-.31.11-.6.27-.9.43a.93.93 0 0 0-.46.7c-.13 1.05-.22 2.83.94 3.37zm-6.26-90.12c-.1-1.26-.06-2.46 0-3.61.23-.62.66-1.03 1.02-1.48a3.6 3.6 0 0 1 1.34-.98c.33-.34.33-.75.5-1.08.15-.3.27-.6.39-.88.17-1.55.04-2.83 1.33-3.92 1.21-1.03 3.08-1.51 4.64-1.63.42-.03.83-.07 1.24-.15a8.19 8.19 0 0 1 2.99 0c.32.05.65.12.98.14 2.37.24 5.53 1.16 5.8 3.94.04.3.05.58.08.92.3.82.8 1.6 1.05 2.51.48.37 1.1.58 1.5 1.09.36.45.76.88 1 1.35.14 1.18.15 2.48.04 3.73-.31.55-.84.97-1.36 1.38a6.7 6.7 0 0 1-1.72 1c-.93.37-1.86.74-2.8 1.08a17.2 17.2 0 0 1-12.56-.15c-2.13-.83-3.93-1.34-5.46-3.26zm19.15-5.67a6.72 6.72 0 0 1-5.8.27c-.59-.25-1.1-.6-1.38-1.2-.03-.06-.1-.1-.18-.17-.1.14-.2.27-.28.41a1.92 1.92 0 0 1-.83.75 6.55 6.55 0 0 1-5.78.14c-.1-.05-.23-.07-.37-.1-.09.09-.21.16-.25.26a3.91 3.91 0 0 0-.18.72c-.23 1.5-.22 3-.04 4.49.04.32.12.65.36.94 2.06 1.4 6.32 1.96 8.8 1.72 1.7-.17 3.4-.46 4.97-1.15.41-.18.84-.35 1.15-.63.27-.36.31-.73.34-1.1a21.58 21.58 0 0 0-.02-4 6.45 6.45 0 0 0-.24-1.09c-.02-.1-.16-.16-.27-.26zm-1.8-.97c.48-.2.7-.48.84-.85.29-.85.3-1.71.15-2.58-.03-.16-.13-.3-.18-.4-.75-.8-2.48-1.06-3.53-1.22-.34-.04-.66.06-1 .27l-.33.45c-.1.84-.09 1.67-.03 2.5.05.73.43 1.24 1.13 1.5a6.61 6.61 0 0 0 2.96.33zm-11.06.02.96.02c.63 0 1.24-.14 1.83-.32.93-.27 1.26-.98 1.3-1.9.01-.55.02-1.09 0-1.63-.01-.44-.19-.8-.58-1.02a3.5 3.5 0 0 0-1.85.03c-.84.21-1.72.36-2.4.97-.06.12-.14.22-.17.34-.2.9-.2 1.81.12 2.7.12.33.32.58.79.8zm14.02 1788.03 1.15 2.56c.02.02.1.13.2.17 1 .41 1.57 1.34 2.2 2.16.03.31.08.6.09.89.02.95.06 1.91-.03 2.87a6.92 6.92 0 0 1-3.23 2.46c-1.6.57-3.19 1.22-4.85 1.59-2.15.33-4.3.53-6.47.19-.28-.05-.57-.06-.86-.1a6.35 6.35 0 0 1-1.7-.4c-1.08-.42-2.19-.76-3.29-1.15a7.26 7.26 0 0 1-3.48-2.52c-.13-1.03-.13-2.54.01-3.73a5.48 5.48 0 0 1 2.37-2.39l.86-2.01c.13-1.48 0-2.7 1.2-3.8 1.27-1.19 3.62-1.76 5.34-1.78.5 0 1-.04 1.5-.1.9-.13 1.81.1 2.73.1 2.46.17 5.87 1.08 6.18 3.97.04.33.05.66.08 1.02zm-15.93 9.43c2.18 1.29 4.75 1.54 7.22 1.71.24.03.5.02.74 0 2.24-.14 4.5-.45 6.53-1.46.19-.09.36-.21.46-.27.27-.4.32-.77.35-1.15a21.54 21.54 0 0 0 0-3.86c-.04-.37-.13-.74-.22-1.1-.05-.21-.17-.37-.44-.37-1.7.84-3.53.97-5.31.33-.77-.26-1.45-.65-1.82-1.42 0-.02-.06-.02-.09-.03-.06.06-.14.1-.17.18-.34.62-.9.96-1.54 1.2-1.8.71-3.7.61-5.45-.23l-.32.18c-.4 1.27-.4 2.56-.37 3.85.03.78 0 1.58.43 2.44zm13.71-11.42a7.89 7.89 0 0 0-3.69-1.1c-.57.07-.9.28-1.11.77-.1.76-.08 1.6-.01 2.42.05.83.64 1.32 1.4 1.54.78.18 1.55.34 2.35.3.55-.03.94-.3 1.14-.82.34-.88.34-1.78.14-2.7-.02-.1-.1-.21-.22-.41zm-8.2-.84a1.6 1.6 0 0 0-.97-.16c-1.2.14-2.41.4-3.4 1.13-.08.24-.2.47-.22.7-.05.38-.04.75-.04 1.13-.01.42.1.82.26 1.2.19.48.54.73 1.04.76.8.06 1.58-.1 2.34-.28 1.84-.44 1.46-2.19 1.47-3.65-.01-.35-.2-.63-.48-.84zm-9.9 138.1c1-1.5 1.2-1.68 2.47-2.47l.8-1.93c.06-.58.1-1.17.17-1.74.14-1.52 1.43-2.58 2.77-3.09a11.68 11.68 0 0 1 3.29-.72c.58-.05 1.16-.09 1.74-.17.5-.08.99-.07 1.49 0 .5.08.99.12 1.49.17 2.43.24 5.76 1.1 6.02 4l.07.9 1.14 2.57c.02.02.1.13.2.17 1 .4 1.58 1.33 2.2 2.15.04.27.1.52.1.76.04 1 .07 2-.02 3.02-.8 1.16-2.02 2-3.33 2.5-1.14.4-2.26.86-3.4 1.23-2.08.64-4.25.93-6.42.76-.95-.1-1.9-.23-2.85-.36a2.94 2.94 0 0 1-.6-.15l-3.99-1.47a7.64 7.64 0 0 1-3.3-2.42c-.16-1.23-.06-2.47-.04-3.7zm19.1-2a6.67 6.67 0 0 1-6 .1c-.42-.2-.77-.48-1.02-.88l-.23-.32c-.09.1-.2.16-.26.26-.3.54-.79.85-1.33 1.07a6.75 6.75 0 0 1-5.7-.19c-.09.09-.22.15-.25.25-.46 1.61-.42 3.3-.28 4.95.04.42.12.83.34 1.2.67.5 1.46.78 2.25 1.03 3.16.93 6.55 1.03 9.73.21.85-.2 1.68-.5 2.46-.9.22-.1.44-.22.61-.42.16-.25.23-.53.26-.82.1-1.28.24-4.33-.31-5.41l-.28-.12zm-.95-4.87c-.95-.75-2.47-1.08-3.66-1.13-.24-.01-.48.07-.66.1-.26.2-.43.37-.54.73a13.46 13.46 0 0 0 0 2.37c.05.67.4 1.17 1.04 1.42a5.9 5.9 0 0 0 3.23.31c1.01-.61.97-2.37.78-3.38-.02-.16-.13-.3-.2-.42zm-12.12 3.8c1.24.18 2.33.09 3.4-.37.43-.2.72-.53.84-1.01.22-.86.16-1.73.09-2.6-.08-.68-.76-.98-1.4-.9a7.65 7.65 0 0 0-3.35 1.08c-.1.16-.18.26-.2.38-.24.95-.23 1.89.15 2.8.1.22.3.4.47.62zm-6-1881.41a21.8 21.8 0 0 1 .02-3.76 5.35 5.35 0 0 1 2.4-2.36l.82-1.97c.15-1.46.04-2.76 1.26-3.8 1.17-1.06 3.06-1.57 4.61-1.69.42-.02.83-.07 1.24-.14a7.73 7.73 0 0 1 2.61-.07c1.07.2 2.16.2 3.2.5 2 .54 3.9 1.47 4.07 3.8l.05.73 1.15 2.63c.36.24.88.42 1.25.83.42.47.83.94 1.17 1.54.03.28.08.6.08.94.02.91.07 1.83-.03 2.75a5.93 5.93 0 0 1-1.4 1.42 6.3 6.3 0 0 1-1.61.94c-1.2.46-2.4.94-3.63 1.35a17.6 17.6 0 0 1-10.1.25l-3.96-1.5a7.53 7.53 0 0 1-3.2-2.4zm4.31.74c1.39 1 3.22 1.37 4.86 1.63 3.05.47 7.65.15 10.22-1.67.2-.39.25-.75.28-1.13.1-1.29.08-2.58-.02-3.87-.03-.41-.1-.82-.29-1.2-.03-.07-.12-.1-.18-.15-.27-.02-.47.16-.7.25-1.48.6-2.99.66-4.51.2-1.17-.36-1.44-.56-2.16-1.58-.09.1-.19.18-.25.28-.3.54-.78.84-1.33 1.08-1.69.7-3.68.71-5.34-.07-.11-.05-.23-.08-.37-.13-.08.08-.22.15-.25.25a14.09 14.09 0 0 0-.3 4.71c.04.46.12.9.34 1.4zm8.93-11.57c-.03.68-.04 1.47 0 2.26.02.2.07.4.14.6.15.55.65.87 1.16 1.03.88.23 1.8.43 2.7.3.4-.1.7-.32.85-.68.39-.91.4-1.86.22-2.82a.9.9 0 0 0-.43-.59c-1-.63-2.17-.83-3.32-.97-.6-.07-1.05.18-1.32.87zm-7.68.3c-.08.16-.21.34-.24.53-.14.83-.14 1.66.13 2.47.2.59.58.9 1.19.92.8.04 1.57-.11 2.34-.3l.34-.14c.5-.21.8-.57.93-1.1.2-.86.16-1.73.07-2.6-.09-.65-.6-.78-1.15-.9-1.27.2-2.51.36-3.6 1.12zm6.43 28.84c2.94.41 7.74.5 8.22 4.25l.08.9 1.12 2.58c.73.42 1.17.7 1.74 1.42.26.31.56.62.72 1.13.13 1.1.09 2.3.06 3.49a6.8 6.8 0 0 1-3 2.41c-2.6 1.02-5.21 2.09-8.03 2.23a17.35 17.35 0 0 1-6.4-.86c-2.28-.99-5.03-1.48-6.5-3.7-.11-1.15-.1-2.63.04-3.72a5.44 5.44 0 0 1 2.4-2.38l.8-1.91.16-1.73c.13-1.38 1.2-2.42 2.42-2.95 1.96-.9 4.03-.88 6.17-1.16zm-.22 7.17c-.08.1-.17.18-.23.29a2.3 2.3 0 0 1-1.12.95 6.6 6.6 0 0 1-5.46.05c-.1-.05-.22-.11-.34-.14-.07-.01-.16.03-.23.04a6.3 6.3 0 0 0-.46 2.8c-.03 1.17-.06 2.34.35 3.47.18.12.33.26.52.35.49.23.98.46 1.49.64 3.87 1.29 9.5 1.27 13.03-.92.22-.34.3-.66.33-1 .14-1.37.12-2.74-.01-4.12a6.59 6.59 0 0 0-.23-1.1c-.03-.1-.16-.16-.26-.26a6.8 6.8 0 0 1-5.69.32 2.64 2.64 0 0 1-1.51-1.23c-.03-.05-.11-.09-.18-.14zm1.84-.75c.14.1.32.3.54.4.93.42 1.91.53 2.92.48 1.5-.08 1.46-2.52 1.21-3.59-.03-.15-.15-.28-.23-.44a8.2 8.2 0 0 0-3.56-1.05c-.67-.04-1.24.4-1.25 1.09-.02.66-.01 1.32 0 1.99 0 .38.12.73.37 1.12zm-7.67.68c.3.18.62.25.96.22a24.58 24.58 0 0 0 1.73-.22c.75-.16 1.46-.52 1.62-1.34.2-.86.17-1.73.06-2.6-.06-.66-.85-.96-1.44-.86a8.43 8.43 0 0 0-3.08.93.92.92 0 0 0-.48.7c-.13.97-.2 2.47.63 3.17z"}),l=(0,n.jsx)("path",{d:"M12.3 502.81a14.32 14.32 0 0 1-.05-2.3l.33-.48c.44-.13.68-.22 1.1.12l.26.48c.04.8.09 1.58.02 2.4l-.36.42c-.62.2-1-.03-1.3-.64zm2.96-2.24c.11-.1.22-.23.36-.3a.88.88 0 0 1 1.32.63 5 5 0 0 1-.01 1.72c-.1.6-.86.88-1.37.55a.72.72 0 0 1-.34-.5 5.5 5.5 0 0 1 .04-2.1zm3.62 2.11c-.26-.14-.52-.24-.63-.54a1.25 1.25 0 0 1 .01-.86c.27-.73 1.4-.75 1.57.08.07.3.05.58-.1.84-.16.28-.4.41-.85.48zM14 471.04c-.17.38-.38.57-.73.65-.42 0-.73-.24-.96-.78a11.49 11.49 0 0 1-.03-2.38c.1-.12.17-.27.3-.37a.8.8 0 0 1 1.18.17c.09.14.17.3.19.46.07.78.06 1.57.05 2.25zm1.38-2.44.48-.28c.55-.04.75.1 1.1.72.06.47.05.97.01 1.47-.07.96-1.51 1.13-1.74.18a5.03 5.03 0 0 1 0-1.73c.01-.11.1-.22.15-.36zm4.49 1.12c.04.82-1.01 1.36-1.53.61a.99.99 0 0 1 .1-1.15c.49-.55 1.43-.25 1.43.54zm-5.9 1281.52c-.1.14-.15.26-.23.34-.33.31-.83.25-1.12-.04a1.05 1.05 0 0 1-.32-.66 13.6 13.6 0 0 1-.04-2.2c.1-.14.16-.25.24-.34.22-.21.47-.34.79-.24.34.1.55.36.64.7.03.12.04.25.04.37v2.07zm2.43.02c-.17 0-.34.03-.5.01a.8.8 0 0 1-.67-.62 3.23 3.23 0 0 1 .06-1.63c.14-.1.28-.25.46-.33a.88.88 0 0 1 1.18.58c.1.44.1.9 0 1.34-.05.25-.21.43-.53.65zm2.53-2.24c.13.03.3.03.45.1.37.16.53.5.47.9-.15.93-1.47 1.02-1.63.07-.05-.35.05-.65.35-.87.1-.07.21-.12.36-.2zM16.95 566.54c-.2.42-.44.63-.8.68-.28.05-.42-.03-.87-.44-.03-.12-.1-.27-.1-.43a29.13 29.13 0 0 1 0-1.85c.02-.42.42-.75.84-.76.62.01.95.49.96 1.06 0 .58.04 1.15-.03 1.74zm-4.05-2.75c.52-.11 1 .34 1.04.83.06.66.08 1.33.03 1.91a.93.93 0 0 1-.65.66c-.46.03-.77-.2-1-.68-.13-.62-.08-1.33-.1-1.92.12-.46.35-.69.68-.8zm6.83 2.35c-.18.25-.4.41-.72.42-.4.02-.75-.25-.8-.62-.07-.72-.1-1.39.76-1.65.1.02.26.04.41.1.62.23.58 1.25.35 1.75zM13.99 407.3c-.13.14-.2.24-.3.33-.26.25-.82.21-1.1-.14a1.25 1.25 0 0 1-.26-.55 8.66 8.66 0 0 1-.03-2.32c.22-.37.56-.7 1.01-.55.34.11.55.35.64.7.02.08.04.16.04.24v2.29zm1.26-2.1c.06-.1.12-.2.2-.3.27-.25.58-.3.93-.17.3.11.45.36.52.65.08.37.07.75.01 1.12-.1.78-1.14 1-1.59.31-.15-.68-.15-.68-.07-1.62zm4.57.68c0 .49-.34.87-.82.9-.83.07-1.09-1-.57-1.53.56-.56 1.42-.15 1.4.63zM13.96 1783.2c-.07.12-.11.2-.16.26-.28.43-1 .44-1.34-.14-.1-.17-.17-.38-.18-.58-.06-.7-.09-1.4-.02-2.12.09-.12.16-.27.28-.38.52-.48 1.14-.11 1.3.33.07.15.11.32.12.47v2.16zm1.35-.27c-.02-.06-.1-.18-.1-.3a15.02 15.02 0 0 1-.03-1.36c.1-1.01 1.53-1.02 1.75-.08.02.08.04.16.04.24 0 .33.02.67 0 1-.06.77-.76 1.12-1.45.72-.07-.04-.12-.12-.21-.22zm4.4-1.6c.2.35.19.7-.06 1.1-.1.06-.22.18-.37.24a.76.76 0 0 1-.96-.32c-.5-.89.64-1.87 1.38-1.02zM13.95 439.2c-.07.12-.11.2-.16.26-.28.43-1 .44-1.34-.14a1.38 1.38 0 0 1-.18-.58c-.06-.7-.09-1.4-.02-2.12.09-.12.16-.27.28-.38.52-.48 1.14-.11 1.3.33.07.15.11.31.12.47v2.15zm1.31-.3a4.25 4.25 0 0 1-.09-1.64.87.87 0 0 1 .85-.77c.53 0 .93.45.94.95 0 .34.02.67 0 1-.06.76-.78 1.1-1.46.7-.07-.04-.12-.12-.24-.23zm3.58-1.88c.55-.1 1.04.3 1 .84-.03.91-1.28 1.25-1.6.33-.17-.54.1-.97.6-1.17zm-5.27 1282.7c-.68.14-1-.12-1.25-.62-.13-.73-.11-1.52-.08-2.28.4-.74.65-.82 1.42-.47l.27.5c.04.8.1 1.6.02 2.41l-.38.45zm1.73-2.63c.12-.1.2-.2.31-.24.57-.3 1.25.03 1.32.64.04.32.05.66 0 .98-.1.63-.85 1.02-1.43.57a.8.8 0 0 1-.3-.51c-.08-.45-.11-.9.1-1.44zm2.95.47c.1-.12.18-.23.27-.3.38-.28.62-.28 1.02-.02.07.04.12.11.17.18.34.56-.03 1.35-.71 1.36-.4.01-.75-.25-.79-.64-.02-.2.02-.4.04-.58zM13.97 534.8c-.32.65-.85.73-1.38.33l-.29-.47c-.07-.76-.11-1.5-.03-2.27.1-.13.19-.28.31-.38a.8.8 0 0 1 1.25.33c.06.15.12.31.13.47.03.67.07 1.33.01 1.99zm3-2.19c0 .6.02 1.14 0 1.68 0 .4-.15.74-.54.9-.43.19-.81.09-1.14-.34a.84.84 0 0 1-.1-.42c-.02-.58-.02-1.16 0-1.73 0-.26.16-.47.38-.61a.89.89 0 0 1 1.04.07c.12.1.2.25.36.45zm1.93-.09c.43 0 .66.14.84.39.15.31.16.63.1.97-.13.72-1 .96-1.42.5l-.18-.25c-.02-.16-.06-.36-.05-.56 0-.55.1-.7.71-1.05zm-4.95 1154.65c-.4.87-1.34.64-1.6-.08a1.33 1.33 0 0 1-.08-.36c-.03-.66-.09-1.32 0-1.97.07-.1.13-.22.2-.31.33-.4 1.16-.39 1.4.31.03.08.06.16.07.24.05.73.1 1.47.01 2.17zm1.33-1.9a.96.96 0 0 1 .81-.48c.6.08.9.57.9 1.15 0 .39-.08.73-.44 1.04-.1.03-.25.1-.4.12a.85.85 0 0 1-.96-.74 2 2 0 0 1 .09-1.1zm4.58.63a.88.88 0 0 1-.87.87c-1.19-.04-.93-1.8.14-1.73.43.05.74.42.73.86zM16.93 630.4c-.28.51-.59.67-1 .62-.33-.03-.67-.3-.7-.61-.05-.41-.07-.82-.08-1.24 0-.45-.06-.9.1-1.34a.97.97 0 0 1 .7-.5c.26-.03.48.08.72.25l.26.4c.08.81.1 1.63 0 2.43zm-2.96-.28c-.22.4-.43.6-.75.62-.43.02-.7-.26-.9-.63a6.21 6.21 0 0 1-.05-1.85c.09-.12.17-.28.29-.38a.83.83 0 0 1 1.32.4c.03.12.07.24.08.36.04.49.03 1 0 1.48zm5.75-.06c-.44.53-.95.57-1.4.1-.26-.57-.12-1.18-.1-1.72.3-.42.3-.42.75-.63.4.08.77.2.86.67.1.54.1 1.07-.11 1.58zm-5.7-257.53c0 1.03.18 1.97-.05 2.85-.22.23-.41.38-.69.36-.36-.03-.6-.23-.8-.6-.14-.66-.18-1.4-.16-2.14a1.63 1.63 0 0 1 .1-.48.8.8 0 0 1 1.22-.39c.13.1.23.23.38.4zm4.4 2.2c-.55-.5-.5-1.37.05-1.78.57-.4 1.18.05 1.26.49.04.24.04.5-.01.73-.04.18-.2.35-.3.53-.17.05-.32.13-.48.13-.2 0-.39-.07-.53-.1zm-3.1-.29c-.07-.45-.1-.81.02-1.16.29-.58.88-.69 1.32-.2.23.45.16.93.1 1.4-.52.7-.9.68-1.45-.04zm1.64 224.04-.32.48-.51.19c-.42-.03-.69-.18-.9-.55-.13-.72-.1-1.5-.05-2.28 0-.15.1-.3.15-.47l.48-.3.18-.02c.61.08.95.37.97.91.02.66 0 1.32 0 2.04zm-3.66.5c-.5-.02-.76-.24-.97-.64a6.81 6.81 0 0 1-.06-2.05c.1-.12.18-.27.3-.37a.8.8 0 0 1 1.19.18c.1.18.19.37.2.57.03.58.07 1.15 0 1.66a.95.95 0 0 1-.66.65zm5-.82c-.17-.45-.13-.86-.1-1.27.06-.73 1.01-1.18 1.55-.42.2.5.17 1.02.04 1.49-.3.64-1.05.78-1.49.2zm-4.34 1056.9a.9.9 0 0 1-.77.59c-.12.01-.3-.07-.48-.17a.99.99 0 0 1-.43-.72 11.48 11.48 0 0 1-.03-1.94c.1-.14.15-.26.23-.34.46-.46 1.2-.3 1.4.3.02.08.06.16.06.24.05.7.1 1.4.02 2.04zm2.62-2.03c.4.36.46.8.36 1.26-.16.67-.96.94-1.46.49a.83.83 0 0 1-.25-.4 2.5 2.5 0 0 1-.04-.74c.06-.68.83-.96 1.4-.6zm3.1.28c.23.38.22.74-.03 1.14-.13.07-.29.21-.48.27a.76.76 0 0 1-.94-.58c-.09-.4.02-.73.36-.98.32-.25.72-.17 1.1.15zm-6.52 157.72c.53.15.79.46.8.92.04.7.04 1.4.03 2.1-.04.92-1.3 1-1.6.22a1.71 1.71 0 0 1-.11-.48c-.04-.7-.07-1.4-.02-2.03.18-.46.45-.68.9-.73zm3.57 3.1c-.13.12-.21.21-.31.28-.35.23-.93.1-1.08-.47-.1-.4-.08-.82-.01-1.28l.21-.35c.21-.14.4-.23.62-.18.25.05.45.2.58.47.1.46.08.95 0 1.52zm2.07-2.15c.47-.03.84.06 1 .54.25.66-.22 1.43-.99 1.28-.82-.2-.83-1.43 0-1.82zM15.13 661.02c.02-.38.02-.75.06-1.12a.84.84 0 0 1 .73-.73.93.93 0 0 1 1.04.85c0 .7.02 1.4-.01 2.1-.02.36-.25.6-.58.75-.46.21-1.07-.15-1.16-.61l-.03-.25v-1h-.05zm-2.88-.75c.26-.6.8-.8 1.32-.47.27.21.4.52.4.86v1.17c-.06.11-.12.27-.23.4-.43.51-1.17.24-1.4-.34a1.1 1.1 0 0 1-.08-.36v-1.26zm6.65 2.18-.53-.28c-.06-.14-.13-.25-.15-.36a4.75 4.75 0 0 1 .04-1.7c.28-.35.28-.35.74-.54.1.03.27.06.41.13.24.1.38.3.43.56.09.45.07.9 0 1.35a.88.88 0 0 1-.58.74c-.07.03-.15.05-.36.1zm-6.64 958.37c.1-.14.15-.26.23-.34.47-.46 1.2-.28 1.39.33.03.12.07.24.07.36v1.74c-.25.75-1.27.81-1.57.07a1.25 1.25 0 0 1-.1-.35c-.06-.6-.05-1.24-.02-1.81zm3.01 1.57c-.23-.51-.1-1.28.51-1.44.54-.19 1.12.21 1.18.77.05.4-.07.74-.4.98a.9.9 0 0 1-1.29-.3zm2.96-.19c0-.25-.04-.42 0-.57a.84.84 0 0 1 1.05-.64c.44.12.68.62.52 1.1a.82.82 0 0 1-1.3.43c-.1-.07-.16-.19-.28-.32zM14.2 342.94c-.15.39-.37.61-.75.63-.43.01-.7-.22-.9-.64-.13-.8-.12-1.66-.07-2.44.17-.42.41-.62.76-.68.53-.04.93.46.94.95.03.75.09 1.49.02 2.18zm3.82-.57c-.12-.4-.1-.8-.04-1.21a.87.87 0 0 1 .79-.68c.89-.03 1.04 1.03.84 1.7a.85.85 0 0 1-1.6.19zm-1.6.12c-.2.03-.31.06-.43.06-.26-.02-.48-.22-.52-.45-.05-.32-.07-.65.1-1l.3-.22c.37-.05.66.12.75.39.14.41.11.65-.2 1.22zM15.3 691.35c.14-.11.22-.21.33-.26a.9.9 0 0 1 1.28.55c.02.08.05.16.05.24v2.1c-.02.36-.36.7-.7.78-.53.1-1.04-.23-1.06-.76-.04-.74-.03-1.48-.02-2.22 0-.12.06-.24.12-.43zm2.94.47c.16-.14.27-.26.4-.36.46-.31 1.09.05 1.18.51.12.58.1 1.16-.02 1.73-.19.8-1.5.86-1.6-.04a8.1 8.1 0 0 1 .04-1.84zm-4.3 1.85c-.21.42-.57.7-1.04.53a.92.92 0 0 1-.62-.73 3.72 3.72 0 0 1-.01-1.23c.13-.41.41-.62.85-.7l.5.23c.5.62.37 1.28.32 1.9zm3.01 32.3-.3.45c-.53.3-.97.24-1.35-.22-.04-.12-.1-.24-.1-.36-.03-.66-.04-1.33-.05-1.99 0-.52.23-.87.78-1.03.5-.03.83.23 1.02.77.06.74.05 1.52 0 2.39zm2.8-.16c-.36.43-.69.53-1.13.4l-.35-.31c-.17-.74-.1-1.48-.05-2.24.1-.13.19-.28.32-.37a.82.82 0 0 1 1.3.56c.09.66.1 1.32-.1 1.96zm-7.46-1.74.24-.32c.5-.47 1.13-.16 1.33.32.18.43.18.9.05 1.34-.29.93-1.51.69-1.64-.25a4 4 0 0 1 .02-1.09zm1.68 866.76-.29.36a.86.86 0 0 1-.95.04c-.2-.1-.3-.28-.43-.56a6.85 6.85 0 0 1-.02-1.88c.34-.75 1.35-.77 1.6.03.04.12.07.24.08.36.04.56.03 1.07 0 1.65zm1.32-.55a1.1 1.1 0 0 1 .01-1c.36-.44.8-.5 1.31-.22.42.4.49 1.02.04 1.41-.42.4-1.02.28-1.36-.19zm3.82-1.4c.55.21.74.42.73.85 0 .36-.17.63-.5.79-.37.18-.66.08-1.06-.34-.15-.87 0-1.12.83-1.3zm-6.82-32.14c.07-.1.15-.24.28-.35a.81.81 0 0 1 1.25.27c.06.15.12.31.13.47.04.5.07.98 0 1.47-.4.88-1.28.7-1.6.02a1.14 1.14 0 0 1-.09-.36c-.03-.49-.07-.98.03-1.52zm4.21 1.75c-.22.02-.42.07-.62.05a.75.75 0 0 1-.64-.52c-.12-.33-.08-.66.16-.92.24-.25.54-.37.9-.26.48.15.8.7.57 1.16-.1.17-.24.32-.37.5zm2.38-1.72c.88-.04 1.2.73.8 1.42-.12.07-.27.22-.46.29a.78.78 0 0 1-1.01-.65c-.07-.53.2-.86.67-1.06zm-3.6-798.8c-.14-.31-.12-.65-.12-.98 0-.5-.01-1 .02-1.5.1-1 1.53-1.01 1.74-.07.03.12.05.24.06.37v1.62c-.01.57-.3.93-.86 1.04a.93.93 0 0 1-.83-.47zm4.47-.17c-.42.36-.79.6-1.3.2-.06-.04-.1-.12-.2-.24a8 8 0 0 1 0-2.4c.11-.11.2-.25.34-.34.5-.31 1.16-.03 1.25.54.11.74.07 1.47-.09 2.24zm-5.77-1.08c0 .05 0 .18-.02.3a.87.87 0 0 1-.74.73.9.9 0 0 1-.88-.56c-.24-.61-.15-1.62.66-1.7a.8.8 0 0 1 .75.34c.18.24.23.52.23.89zm-.95 1408.76c-.1-.84-.1-1.62-.07-2.4a.87.87 0 0 1 .22-.57c.42-.47 1.21-.32 1.41.27.04.12.09.24.1.36 0 .7.04 1.4.01 2.1-.08.68-.85 1.05-1.38.58-.1-.08-.16-.19-.3-.34zm5.1.5c-.08-.02-.16-.04-.23-.09-.1-.06-.2-.15-.28-.22-.04-.09-.1-.16-.11-.23a13 13 0 0 1-.02-2.65c.17-.4.42-.58.79-.59.35 0 .67.2.78.5.06.15.12.31.13.47v1.86c-.01.54-.5 1.05-1.07.96zM14.26 308.14c.02.96.16 1.9-.03 2.78-.43.61-1.2.52-1.52-.12-.19-.72-.17-1.51-.16-2.3a1.11 1.11 0 0 1 .2-.58c.28-.44.94-.48 1.28-.08.06.06.1.13.22.3zm5.22.45c.06.55.06 1.05.01 1.45a1.09 1.09 0 0 1-.5.68c-.09.02-.2.07-.33.07-.4 0-.76-.25-.83-.61-.1-.5-.12-1 0-1.48.14-.55.82-.95 1.37-.46.09.08.15.19.28.35zm-3.2 1.39-.33.06c-.42-.23-.45-.56-.28-.97l.26-.2c.26-.01.46.1.52.29.09.29.1.57-.16.82zm-.16 476.65.51.19.33.56v1.84c0 .12-.02.25-.05.36-.16.56-.81.85-1.28.56l-.33-.26a6.91 6.91 0 0 1-.1-2.7.99.99 0 0 1 .92-.55zm2.1 3.01a9.24 9.24 0 0 1-.01-2.27c.03-.37.38-.66.76-.67.53-.01.85.36.89.83.04.7.05 1.4-.08 2-.32.72-1.2.83-1.56.11zm-4.26-.95c-.03.09-.07.3-.17.47-.24.42-.83.5-1.19.18-.15-.14-.3-.3-.32-.52a2.95 2.95 0 0 1 0-.73c.04-.33.34-.6.68-.63.7-.07 1.05.54 1 1.23zm-.34 1341.86c.57-.12 1.06.4 1.06.94.02.74.07 1.48 0 2.25-.1.12-.17.28-.28.39-.41.38-1.2.22-1.38-.44a1.64 1.64 0 0 1-.06-.37c-.02-.7-.06-1.4 0-2.01.1-.45.34-.64.66-.76zm3.86.5c.33-.5.68-.66 1.13-.48.4.16.55.5.56.9.03.61.01 1.23 0 1.85-.03.42-.23.83-.67.94-.43.12-.78-.05-1-.46-.13-.86-.08-1.8-.02-2.76zm-3.54-636.91c-.16.38-.37.62-.75.64-.43.02-.69-.22-.88-.62-.12-.45-.1-.94-.06-1.36.23-.66.85-.84 1.4-.44l.29.47c.01.42.06.91 0 1.3zm3.02-.76c-.07.45-.24.68-.55.88-.14 0-.35.06-.54.03-.66-.06-.93-.98-.48-1.44.4-.44 1.03-.39 1.38.1.1.13.13.3.2.43zm2.73-.52c.48.76-.28 1.78-1.12 1.3a.89.89 0 0 1-.25-1.21.89.89 0 0 1 .6-.41c.23-.05.38.01.77.32zm-5.76 33.55c-.25.66-.98.78-1.4.3-.08-.08-.14-.2-.2-.29-.14-.5-.12-.99-.09-1.48a.84.84 0 0 1 .72-.74c.54-.07.94.36.99.87.03.46.07.9-.02 1.34zm2.16.06c-.34.03-.88-.25-.91-.81-.06-1.24 1.7-1.24 1.76-.09 0 .44-.4.87-.85.9zm2.83-.05c-.13-.05-.25-.08-.35-.14a.88.88 0 0 1-.24-1.2.8.8 0 0 1 .84-.38c.32.05.52.24.62.54.18.6-.2 1.13-.87 1.18zm-5.83-66.37.57.23c.09.19.23.37.26.56.04.32.05.66.02.99-.05.58-.67.85-1.2.63-.08-.07-.16-.11-.2-.18-.09-.1-.15-.2-.21-.29a2.85 2.85 0 0 1-.07-1.23c.1-.36.34-.57.83-.71zm3.85 1.2c.03.45-.34.87-.82.94-1.16.07-1.3-1.72-.09-1.76a.9.9 0 0 1 .9.83zm2.12-.86c.36.08.6.22.71.52a.9.9 0 0 1-.02.72c-.23.57-1.08.68-1.42.15a.9.9 0 0 1 .32-1.27c.14-.07.3-.09.41-.12zm-3.81-638.81a8.17 8.17 0 0 1-.08-2.26c.04-.41.45-.76.85-.77.36 0 .76.28.86.61.03.08.06.16.07.24 0 .59.03 1.17 0 1.75-.05.93-1.15 1.18-1.7.43zm3.07-2.77c.13-.09.25-.21.4-.27a.83.83 0 0 1 1.1.65c.11.74.09 1.48-.04 2.21-.07.4-.5.69-.93.65-.27-.03-.58-.28-.63-.53-.02-.08-.05-.16-.05-.24l.04-2.1c0-.08.04-.15.1-.36zm-5.26.55c.08.01.16.02.24.05.11.04.22.1.3.15.68.62.34 1.9-.65 1.73-.96-.19-.98-1.88.1-1.93zm5.16 34.19c-.1-.96-.12-1.9.02-2.74a1 1 0 0 1 .63-.52c.37-.04.64.12.86.43.03.1.09.2.1.33a7.82 7.82 0 0 1-.04 2.2.95.95 0 0 1-.21.44c-.3.35-.7.39-1.1.12-.07-.04-.12-.11-.26-.26zm-1.3-.4c-.17.42-.44.65-.86.66a.83.83 0 0 1-.87-.7 8.18 8.18 0 0 1-.02-1.86.89.89 0 0 1 .74-.73c.59-.07 1.02.4 1.05.96.02.57.06 1.15-.04 1.67zm-3.3-.15-.48.15c-.14-.03-.27-.04-.37-.1a.93.93 0 0 1-.48-1.15c.11-.34.35-.56.71-.6.65-.08 1.16.72.88 1.29-.07.15-.18.27-.26.4zm.36 989.3c.1.84.08 1.67.06 2.5 0 .3-.17.55-.47.7-.44.12-.8.02-1.1-.45a7.31 7.31 0 0 1-.15-2.4c.01-.17.09-.33.16-.47a.8.8 0 0 1 1.18-.24c.12.1.22.24.32.35zm5.74 1.81c-.2.37-.45.54-.87.59l-.47-.2c-.58-.63-.36-1.91.56-1.95.39 0 .78.36.83.77.04.24 0 .58-.05.8zm-3.35-.77c.25.43.26.9 0 1.33-.24.14-.43.13-.65 0-.04-.1-.12-.2-.16-.3a1.25 1.25 0 0 1 0-.74c.03-.11.12-.21.16-.29.22-.14.42-.14.65 0zm-2.49 255.22.47.23c.22.26.32.49.33.74l.02 1.98c0 .26-.1.48-.34.72l-.45.18a1 1 0 0 1-.88-.58c-.13-.84-.12-1.75-.06-2.57.16-.42.41-.6.9-.7zm3.62.46c.12-.1.22-.24.35-.33.4-.27.96-.13 1.16.3.09.17.16.38.17.58.02.58.01 1.16 0 1.73 0 .16-.06.33-.1.48-.24.74-1.38.76-1.6-.02-.08-.9-.09-1.81.02-2.74zm-4.83-668.83-.33-.39a2.16 2.16 0 0 1-.09-1.04.9.9 0 0 1 .75-.73c.35-.04.73.21.87.57.12.32.12.65.07.98-.06.58-.72.89-1.27.6zm4.3-.9c-.12.16-.2.36-.34.5a.85.85 0 0 1-1.22-.03.9.9 0 0 1 0-1.23.87.87 0 0 1 1.22-.04c.2.18.3.4.33.8zm1.24.17c0-.23-.03-.4.01-.56.1-.44.49-.7.93-.65.41.06.71.43.69.9-.01.16-.08.31-.12.44-.68.57-.92.55-1.5-.13zM14.45 278.31c-.16.4-.4.62-.75.65-.44.03-.7-.25-.9-.61a11.1 11.1 0 0 1-.06-2.42.82.82 0 0 1 .7-.74c.55-.08.97.33 1.01.85.03.78.09 1.56 0 2.27zm3.2-1.27c.02-.33.04-.66.08-.99.04-.3.38-.57.71-.6.41-.03.78.2.88.55.17.54.15 1.59-.04 2.08-.12.33-.52.54-.92.49a.8.8 0 0 1-.65-.66c-.05-.29-.03-.58-.03-.87h-.03zm-1.71.3c-.05-.1-.13-.2-.15-.3-.03-.12.06-.22.17-.27.06-.02.15 0 .22.03.03 0 .06.05.08.07.01.41.01.41-.32.46zM14.7 2197c-.2.46-.46.65-.81.7a.95.95 0 0 1-.8-.51 8.13 8.13 0 0 1-.05-2.82.9.9 0 0 1 .8-.5c.55.07.8.42.84.92.05.74.07 1.48.02 2.21zm3.59.64a.95.95 0 0 1-.8-.54 14 14 0 0 1 0-2.72c.19-.33.41-.5.7-.55.28-.03.5.08.75.29.07.16.22.39.23.62.04.66.04 1.32 0 1.98-.03.5-.3.84-.88.92zm-.02-1312.16-.05-.15c-.1-.82-.06-1.65 0-2.48.1-.89 1.4-.9 1.6-.08.01.08.04.16.04.24a9.5 9.5 0 0 1-.05 2.12.97.97 0 0 1-.2.44c-.34.43-.99.45-1.34-.09zM17 884.02c-.02.29-.02.58-.07.86-.1.6-.8.9-1.34.58a.73.73 0 0 1-.39-.6 17.87 17.87 0 0 1-.02-1.6c.02-.42.4-.75.82-.77.53-.02.94.41.97.92v.61H17zm-4.27-.74c.52-.12.84 0 1.07.35.5.73-.37 1.76-1.14 1.2-.59-.42-.5-1.15.07-1.55zm.83 480.73c.33.31.46.65.4 1.04-.07.34-.24.61-.6.72-.82.25-1.36-.72-1.01-1.41a.8.8 0 0 1 .8-.47c.15.02.3.1.4.12zm3.39.74c.04.44-.33.87-.8.95-.43.07-.9-.3-.96-.76-.06-.5.25-.92.71-.99a.9.9 0 0 1 1.05.8zm1.99.97c-.17-.09-.3-.12-.39-.2a.92.92 0 0 1-.22-1.2c.35-.63 1.37-.48 1.5.25.1.44-.06.79-.48 1.02-.1.06-.23.07-.4.13zm-6.21 32.24c-.5-.42-.54-.86-.45-1.33a.85.85 0 0 1 .66-.65c.87-.14 1.24.9.93 1.58-.18.46-.68.58-1.14.4zm3.32-1.89c.37.06.65.2.8.53.12.24.13.47.02.71-.46 1-2 .47-1.63-.63.05-.15.17-.27.27-.4.13-.13.38-.16.54-.2zm2.2.48c.13-.13.24-.26.38-.34a.78.78 0 0 1 1.18.45c.2.64-.38 1.32-1.04 1.11a.7.7 0 0 1-.55-.6c-.02-.2.02-.41.03-.62zm1.52-479.31c-.3.64-1.06.77-1.49.18-.03-.11-.1-.27-.1-.43 0-.82-.07-1.65.07-2.5.1-.1.21-.24.34-.33.46-.35 1.06 0 1.2.43.03.08.06.16.07.24.06.83.07 1.65-.09 2.41zm-3.17 0-.44.18a1 1 0 0 1-.9-.5 4.48 4.48 0 0 1-.08-1.67.88.88 0 0 1 .72-.75c.58-.08 1.04.36 1.07.92v1.11c-.02.25-.14.47-.37.7zm-2.96-.57c-.34.26-.69.24-1.03.02-.48-.64-.48-.8.02-1.43l.4-.13c.48.02.75.25.88.64.12.36-.02.65-.26.9zm5.27 1312.47c-.37.22-.6.28-.86.2-.25-.08-.43-.24-.56-.55a17.86 17.86 0 0 1-.02-2.56c.1-.3.24-.44.42-.55.38-.21.88-.1 1.09.26.08.14.18.3.18.45.02.7.04 1.4 0 2.1 0 .24-.17.46-.25.65zm-4.56-3.33c.22.2.34.47.34.77v2.17l-.27.49-.52.2a1.03 1.03 0 0 1-.87-.61 12.26 12.26 0 0 1-.04-2.61c.49-.67.65-.72 1.36-.41zm1.7-894.05a.93.93 0 0 1 .9.84c.03.37-.31.96-.94.93a.87.87 0 0 1-.83-.9.9.9 0 0 1 .86-.87zm-2.4 1.64c-.58.38-1.19.12-1.37-.48-.12-.41.14-1.12.84-1.14.4.05.68.29.8.68.1.35-.02.65-.26.94zm6.08-1.3c.18.35.18.7-.01 1.06-.32.47-1.03.53-1.37.06-.26-.36-.2-.95.1-1.26.34-.36.9-.3 1.28.13zm.06-351.07c-.35.75-1.22.82-1.56.1-.13-.55-.04-1.13-.05-1.71-.01-.33-.03-.67.08-.97.28-.72 1.37-.61 1.54.1.04.15.08.32.08.48.03.67.03 1.34-.09 2zm-3.34-.04c-.14.01-.35.06-.55.05-.91-.14-.82-1.3-.59-2.07a1 1 0 0 1 .6-.42c.55-.09 1.05.4 1.06.95.03.6.07 1.1-.52 1.49zm-3.29-.25c-.43.03-.86-.37-.9-.83a.88.88 0 0 1 .79-.92c.44-.02.85.35.9.83.04.44-.34.9-.79.92zm6.6 32.27c-.2.36-.46.54-.83.53-.33-.02-.67-.27-.7-.58-.1-.78-.08-1.56 0-2.34.03-.3.34-.67.78-.65.44.02.8.35.84.76.07.79.08 1.56-.08 2.28zm-3.85-.06c-.38-.16-.66-.32-.72-.77-.06-.37-.06-.74.08-1.08.16-.28.39-.43.74-.48.76.04.99.56.97 1.25 0 .61-.36 1.09-1.06 1.08zm-2.76-.21c-.92-.15-1.21-1.16-.47-1.66a.82.82 0 0 1 1.1.26c.28.41.2.91-.2 1.2-.14.1-.3.14-.43.2zm6.52 288.4c-.08.06-.16.15-.27.21-.55.35-1.14-.12-1.2-.61a1.58 1.58 0 0 1 .07-.73c.1-.29.47-.52.78-.52.82.04 1.02 1.04.62 1.64zm-3.7-1.58.61.2c.5.7.5.79 0 1.47-.13.04-.28.11-.44.13a.85.85 0 0 1-.9-.51c-.13-.38-.06-.76.24-1.01.12-.1.28-.16.5-.28zm-2.8 1.88c-.76-.05-1.2-.89-.69-1.48.49-.56 1.44-.2 1.46.55a.8.8 0 0 1-.36.75c-.13.09-.3.13-.4.18zm5.08-226.83c.1-.1.19-.24.32-.33a.82.82 0 0 1 1.26.51 5.38 5.38 0 0 1-.05 2.1c-.25.35-.49.5-.8.52-.33-.01-.68-.27-.74-.55-.02-.08-.05-.16-.05-.24-.02-.66-.06-1.32.06-2zm-3.08 1.17c-.06-.97 1.15-1.4 1.66-.53.4.67-.1 1.65-.92 1.52-.48-.08-.75-.52-.74-1zm-1.22.03a.9.9 0 0 1-.8.91c-.43.02-.86-.39-.89-.84a.87.87 0 0 1 .8-.9c.45-.02.85.36.89.82zm4.35-126.42c-.04-.15-.11-.3-.11-.46v-2.1c0-.35.1-.46.5-.8.44-.14.8-.03 1.06.38.02.08.06.15.07.23a8.3 8.3 0 0 1-.01 2.34c-.04.3-.23.52-.5.67-.42.2-.7.03-1.01-.26zm-3.16-1.6.04-.51a.9.9 0 0 1 .72-.76c.4-.08.88.2.99.59.15.53.17 1.07-.02 1.59-.2.53-.9.7-1.36.34a.8.8 0 0 1-.3-.52c-.04-.25-.05-.5-.07-.73zm-1.18.1c-.22.82-.44.96-1.23.8-.72-.44-.6-1.4.24-1.65.55-.02.88.29.99.84zm.53-704.72c.12.85.08 1.63.08 2.42 0 .43-.22.73-.59.85-.43.14-.76-.07-1-.43-.04-.18-.13-.42-.14-.66-.04-.53-.04-1.07-.05-1.6 0-.13.03-.25.06-.37a.86.86 0 0 1 1.35-.53c.1.07.17.18.3.32zm3.03.4c.2-.51.42-.74.78-.79.43-.06.7.18.92.57.12.74.09 1.52.02 2.34-.12.14-.23.32-.4.44-.4.3-1.09.13-1.26-.52-.1-.36-.05-.74-.06-1.1v-.94zm.72 1025.32c-.08-.67-.17-1.36.63-1.61.33-.05.58.06.8.31.23.31.23.68.17 1.06-.16.8-1.14 1.05-1.6.24zm-1.29-.57c.02.44-.37.87-.83.92-1.19.04-1.27-1.76-.06-1.77a.92.92 0 0 1 .9.85zm-3 0c.01.71-.7 1.21-1.29.8-.33-.24-.48-.62-.37-.96.1-.33.33-.57.68-.63.55-.1.86.34.99.8zm4.43-226.01.43-.29c.52-.05.96.23 1.03.74a5.9 5.9 0 0 1-.05 2.1c-.1.42-.7.82-1.18.52l-.28-.23c-.26-.51-.14-1.06-.15-1.59-.01-.4-.06-.83.2-1.25zm-1.37 1.47c-.06.21-.1.42-.2.6-.25.5-.94.58-1.37.22-.35-.3-.4-1.36.04-1.7.4-.3 1.05-.24 1.3.2.12.2.16.45.23.68zm-4.3-.74c.81-.14 1 0 1.24.81a.92.92 0 0 1-.53.78.63.63 0 0 1-.49.05c-.68-.23-.85-.94-.48-1.4.08-.09.18-.16.26-.24zm6.3 159.77c.31.05.53.16.72.42.23.5.2 1.07.03 1.6-.32.53-.58.44-1.11.43l-.4-.42c-.1-.54-.11-1.03.02-1.56.28-.3.35-.36.73-.47zm-2.94.4c.47.01.87.4.88.86.02.5-.47.95-.97.9a.89.89 0 0 1-.8-.92.85.85 0 0 1 .9-.84zm-3.03.05c.44-.03.85.34.9.82.06.44-.32.9-.77.93-.44.03-.87-.35-.9-.81a.89.89 0 0 1 .77-.94zm6.77-94.5c-.24.4-.47.55-.78.57-.39.02-.77-.25-.81-.61a8.64 8.64 0 0 1 0-1.92l.27-.34c.44-.44 1.22-.13 1.34.48.02.08.04.16.04.25.01.24.03.5.02.74l-.08.83zm-3.7 0a.87.87 0 0 1-.93-.8c-.15-1.3 1.64-1.45 1.78-.21.05.5-.36.98-.85 1.01zm-3.07-1.75c.45-.04.85.33.9.8.05.45-.33.9-.77.94-.44.03-.87-.35-.9-.81a.88.88 0 0 1 .77-.94zm1.16 768.4-.32.56-.44.16c-.42 0-.68-.18-.9-.54-.14-.85-.13-1.76-.07-2.59.31-.87 1.36-.88 1.62-.06.02.13.06.25.07.37l.04 2.1zm4.66-.02c-.37-.03-.63-.2-.82-.58a2.77 2.77 0 0 1 0-1.27l.15-.23c.47-.62 1.38-.29 1.5.43.05.2.04.41.04.62 0 .26-.08.49-.23.7-.16.2-.4.3-.64.33zm-2.72-.53c-.38-.14-.47-.34-.26-.62a.27.27 0 0 1 .21-.08c.06 0 .14.08.17.14.1.21.04.4-.12.56zm1.16 93.91.25-.19c.54-.03 1.1-.11 1.63.14l.08.13a5.1 5.1 0 0 1 0 2.07c-.03.11-.14.2-.2.3-.5.13-.99.08-1.37.03-.3-.15-.4-.33-.42-.54a7.6 7.6 0 0 1 .03-1.94zm-2.65 2.43a3.09 3.09 0 0 1-1.37.2.75.75 0 0 1-.45-.62 6 6 0 0 1-.01-1.8l.22-.22c.5-.09 1.03-.14 1.56-.06l.17.19c.15 1.38.14 1.6-.12 2.31zm4.39-800.59c.42.08.72.28.8.71.08.41.07.83 0 1.24-.1.76-1.03.98-1.53.38a3.5 3.5 0 0 1-.07-1.76c.17-.34.39-.5.8-.57zm-5.43 2.13c-.9.58-1.83-.6-1.07-1.35.53-.46 1.3-.14 1.4.56.03.31-.1.56-.33.79zm2.4-1.67c.12.03.2.03.28.06.11.04.22.1.38.18l.28.54c.02 1.17-1.49 1.33-1.74.35-.12-.57.2-1 .8-1.13zm3.72 64.36c.2.43.2.87.07 1.32-.14.5-.76.72-1.22.46a.66.66 0 0 1-.35-.48 5.16 5.16 0 0 1-.03-.87c.05-.76 1-1.17 1.53-.43zm-2.77.73a.95.95 0 0 1-.47.82c-.5.24-1.16.02-1.28-.55-.1-.5.12-.9.6-1.07.2-.08.4-.05.6.04.33.15.49.42.55.76zm-3.01.2c-.1.45-.35.74-.89.78l-.39-.13c-.97-.73-.05-2.1.95-1.43.26.36.27.36.33.78zM17.49 17.92c.17-.34.4-.5.7-.56.08 0 .17-.01.24.02.16.05.3.12.4.16.25.27.36.54.36.84v1.73c0 .3-.1.57-.34.85l-.44.21a.9.9 0 0 1-.8-.38c-.04-.07-.1-.14-.1-.22a13.36 13.36 0 0 1-.02-2.65zm-4.47 2.65c-.1-.76-.1-1.59-.04-2.41.03-.43.4-.74.84-.75a.8.8 0 0 1 .76.52c.05.16.1.32.11.48v2.06c-.25.93-1.28 1.01-1.67.1zm-.14 2046.72c.56-.3 1.13-.26 1.67-.19.08.1.16.16.17.23.11.7.1 1.41.03 2.11-.01.08-.07.15-.12.24-.36.22-.78.22-1.2.2-.11 0-.22-.08-.36-.14a4.81 4.81 0 0 1-.19-2.45zm4.63-.23a3.6 3.6 0 0 1 1.54-.01c.07.09.16.15.17.22.12.7.12 1.4 0 2.1-.02.1-.12.2-.17.31-.46.18-.9.11-1.3.08-.27-.1-.39-.29-.41-.5a7.2 7.2 0 0 1 .01-1.97c.01-.07.1-.13.16-.23zM12.98 49.98c.5-.65.67-.7 1.43-.37l.29.53.02 1.98c0 .12 0 .25-.03.37-.1.53-.76 1-1.34.54-.12-.1-.22-.24-.32-.36a11.84 11.84 0 0 1-.05-2.69zm5.21 3.2c-.3-.1-.51-.22-.69-.55-.13-.85-.08-1.8-.03-2.7.27-.4.27-.4.67-.58.27-.04.5.06.7.2.19.18.32.4.33.65.02.7.03 1.41 0 2.12-.03.52-.45.84-.98.86zm1.03 1885.22c-.15.4-.36.63-.74.66-.42.04-.72-.13-.9-.52-.1-.88-.11-1.36-.03-2.62.14-.39.41-.6.83-.63.48.17.49.16.8.6.15.83.1 1.7.04 2.51zm-4.72.2c-.2.36-.47.53-.82.55-.56-.07-.8-.43-.85-.94-.07-.7-.07-1.4-.04-2.1l.3-.51c.54-.39 1.13-.27 1.41.35.05.88.1 1.79 0 2.64zm2.75 64.91.05-.36c.07-.04.1-.07.14-.08a7.17 7.17 0 0 1 1.7.02c.07.01.14.08.2.12l-.01.21c-.07.03-.15.09-.22.09h-1.86zm-4.37 0 .06-.21c1.28-.17 1.48-.17 1.9.04-.03.04-.04.1-.07.1-.41.17-1.23.23-1.8.14-.03 0-.06-.05-.1-.07zm1.49-1918.5-.45.2a1 1 0 0 1-.86-.54 9.7 9.7 0 0 1-.06-2.72c.26-.75 1.39-.76 1.6 0 .06.16.1.32.1.48.02.58.02 1.16.02 1.74 0 .3-.1.57-.35.84zm3.11-3.13c.18-.34.4-.5.7-.56.28-.03.49.1.75.28.07.17.23.4.24.63.04.66.05 1.33.01 1.99-.03.5-.3.85-.86.92-.35 0-.62-.16-.83-.54a13.15 13.15 0 0 1 0-2.72zm.77 1059a5.45 5.45 0 0 1-.04-1.75c.13-.9 1.42-.88 1.61-.07.1.5.1 1 .01 1.5-.1.65-.73.93-1.31.59-.07-.04-.12-.12-.26-.28zm-1.26-1.03c-.15.48-.16.5-.5.86-.18.02-.34.07-.5.06-.74 0-1.07-.98-.59-1.49a.85.85 0 0 1 1.32.02c.12.16.18.36.28.55zm-3.85-.8c.41.08.68.31.78.71.1.42-.1.73-.42.95a.86.86 0 0 1-1.2-.54c-.18-.54.27-1.12.84-1.11zm1.1-928.74c.26.22.37.4.38.61.03.74.05 1.49.05 2.23a1 1 0 0 1-.17.46.79.79 0 0 1-1.08.27c-.14-.09-.25-.21-.37-.32-.04-.18-.1-.34-.1-.5-.02-.66-.04-1.32-.03-1.98.01-.75.73-1.1 1.32-.77zm3.24 2.98c-.04-.76-.03-1.5-.01-2.24l.03-.24c.05-.3.36-.58.7-.61.5-.05.75.19.97.62.11.73.08 1.47.04 2.2-.01.26-.14.48-.36.7l-.46.19c-.42-.03-.68-.2-.9-.62zm-2.78-99.15.02 1.96c0 .17-.02.34-.07.5-.13.44-.74.86-1.3.43-.12-.1-.21-.24-.32-.36a11.89 11.89 0 0 1-.05-2.68c.5-.66.66-.7 1.42-.39l.3.54zm4.25-.5c.07.15.18.3.2.45.1.75.09 1.5.02 2.24-.01.12-.07.23-.12.35-.13.33-.7.67-1.15.37-.14-.1-.25-.21-.37-.32-.04-.18-.09-.34-.09-.5 0-.79-.06-1.58.03-2.29a.93.93 0 0 1 .68-.6c.27-.03.49.07.8.3zm-1.17 1792.85c-.1-.55-.04-1.1-.05-1.63 0-.33.02-.66.03-.91a.97.97 0 0 1 .64-.66c.57-.1 1.06.42 1.06.96v1.88a1.2 1.2 0 0 1-.08.36c-.24.71-1.1.72-1.4.3-.08-.1-.14-.2-.2-.3zm-4.95-2.9.57-.25c.34 0 .4.05.82.46.02.12.08.28.08.44.01.7.05 1.4.02 2.1a.81.81 0 0 1-1.28.64l-.26-.2a8.11 8.11 0 0 1-.15-2.66c.02-.15.11-.3.2-.54zm6.46 132.53-.05.22c-.07.04-.14.1-.22.1-.44.02-1.32.14-1.68-.13l.03-.22a3.61 3.61 0 0 1 1.92.03zm-4.57.32c-1.01.14-1.1.14-1.78 0l.1-.24c.5-.1 1.01-.16 1.54-.1a.27.27 0 0 1 .19.13c.02.05-.03.14-.05.2zM14.4 149.17c-.54.34-1.08.2-1.35-.32a9.82 9.82 0 0 1-.04-2.72c.34-.78 1.32-.76 1.6 0 .05.16.09.32.09.49.02.58.02 1.16.02 1.74 0 .29-.01.3-.32.8zm3.08-.4a15.64 15.64 0 0 1 0-2.76c.11-.12.2-.25.34-.35.48-.37 1.08-.03 1.24.36.06.16.13.32.13.48v1.86c-.04.8-.82 1.24-1.5.7-.06-.05-.1-.13-.2-.29zm-4.5 29.63c.16-.35.39-.51.68-.61.65.05.99.3 1.02.84.04.74.04 1.49.06 2.21l-.3.53c-.34.23-.65.27-1.02.11-.16-.08-.29-.24-.41-.5-.09-.83-.13-1.74-.02-2.57zm5.8 3.03c-.6.2-.96.1-1.27-.38-.15-.87-.09-1.82-.04-2.79.11-.12.2-.25.33-.36.37-.33 1.1-.17 1.3.45.16.46.17 2.11 0 2.58-.06.19-.22.34-.32.5z"}),i[0]=a,i[1]=l):(a=i[0],l=i[1]),i[2]!==r||i[3]!==d||i[4]!==u?(c=(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:d,height:u,viewBox:"0 0 32 2240",className:"Thinking-module__thinking--S6ZhG","data-animation-state":r,fill:"currentColor","aria-hidden":!0,children:[a,l]}),i[2]=r,i[3]=d,i[4]=u,i[5]=c):c=i[5],c}try{k.displayName||(k.displayName="CopilotAnimationThinking")}catch{}function b(e){let a,l,c,i=(0,t.c)(6),{scale:s,state:r}=e,o=void 0===s?1:s,d=32*o,u=1184*o;return i[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)("path",{d:"m6.88 597.26-.27-1.72-1.18-1.4a1.43 1.43 0 0 1-.33-.91c0-1-.04-2.12.61-2.93.42-.5.85-.97 1.39-1.4.31-1.51.65-2.87 2.32-3.36.45-.49.95-.93 1.43-1.38.19-.16.4-.3.54-.51.14-.22.36-.34.6-.45a9.15 9.15 0 0 1 9.18.61c.1.25.29.46.51.66a8.37 8.37 0 0 1 2.75 5.27c.15.2.34.23.51.3.46.17.83.46 1.12.86l.58.82c.3.4.42.84.41 1.34 0 .88-.05 1.75-.3 2.6a7.27 7.27 0 0 1-2.59 1.76l-.63 1.28c-5.82 4.22-11.99 4.64-16.65-1.44zm14.77.8c.37-1.48.22-3.06.2-4.58 0-.24-.05-.48-.15-.76-.92 1.63-2.43 2.14-4.22 2.08-1.2-.09-2.9-.46-3.39-1.7-.02-.08-.09-.13-.16-.23-.72 1.1-2.12 1.42-3.34 1.36a4.12 4.12 0 0 1-2.46-.95c-.06-.05-.13-.08-.25-.14-.21 1.22-.26 3.62.73 4.5 3.03 3.27 8.28 3.4 11.97 1.2.38-.21.77-.42 1.07-.77zm-1.16-9.1c-.55-.9-2.68-1.12-3.65-1.08-.78.02-1.24.67-1.32 1.41-.07.95-.3 1.9-.15 2.85.05.38.28.64.62.8.76.34 1.63.34 2.45.27 2-.14 2.16-2.69 2.05-4.25zm-8.4 3.6c.35-.25.49-.62.53-1.02.08-1 .2-1.99.24-2.98 0-.25-.04-.5-.2-.71-.6-.62-2.01-.42-2.8-.3-1.14.13-1.1.9-1.18 1.8-.14 1.14-.1 2.82 1.27 3.14.72.14 1.4.36 2.14.08zM24.58 684.58c.8.36 1.33 1.04 1.88 1.69.5.7.57 1.99.54 2.84-.01.3-.1.56-.29.8-.36.49-.72.97-1.2 1.38l-.26 1.83c-4.57 6.12-10.7 5.87-16.62 1.75l-.65-1.3a7.26 7.26 0 0 1-2.59-1.71 9.43 9.43 0 0 1-.37-2.69c0-.4.08-.78.32-1.12.79-1.17.82-1.48 2.2-2.05a8.67 8.67 0 0 1 3-5.71l.17-.36a9.14 9.14 0 0 1 9.17-.8c.23.09.45.22.6.43.13.19.3.33.5.46.5.35.93.77 1.33 1.22.18.2.37.38.62.52 1.09.54 1.35 1.73 1.65 2.82zm-6.79 4.35c-.03.03-.07.06-.08.1-.67 1.75-3.29 2.05-4.91 1.78-1.01-.18-1.84-.63-2.45-1.47-.05-.07-.1-.13-.2-.08-.22 1.12-.26 4.18.31 5.13 3.94 2.92 10.48 2.73 13.37-1.56a8.1 8.1 0 0 0 .1-3.88 4.55 4.55 0 0 1-4.1 1.16 2.9 2.9 0 0 1-1.94-1.12c-.02-.03-.07-.04-.1-.06zm-1.38-1.54c-.09-.64-.17-1.4-.3-2.17-.13-.83-.66-1.25-1.52-1.24-1 .04-2 .23-2.89.68a.87.87 0 0 0-.52.91c.03.4.05.8.1 1.18.16 1.08.58 2.38 1.83 2.52a5.9 5.9 0 0 0 2.52-.2c.75-.33.77-.9.78-1.68zm6.36-3.54c-.75-.64-1.76-.44-2.66-.46-.61.03-1.26.27-1.3.98-.03.9.14 1.82.22 2.73.07.7.27 1.59 1.14 1.6.08 0 .16.02.25 0 .45-.06.9-.1 1.35-.21.8-.2 1.23-.74 1.33-1.54.1-.93.1-2.25-.33-3.1zM6.87 789.07l-.17-1.68c-.5-.38-.9-.88-1.32-1.37a1.53 1.53 0 0 1-.36-1.1c.07-.86.08-2.43.72-3.04.55-.55 1.05-1.22 1.85-1.42.06-.01.11-.06.19-.1.25-1 .54-2.04 1.5-2.6.12-.08.22-.2.31-.31a9.05 9.05 0 0 1 1.78-1.65c.37-.24.6-.65 1.02-.8a9.21 9.21 0 0 1 9.12.9c.07.26.27.46.48.66a8.67 8.67 0 0 1 2.66 5.4c.15.08.31.18.48.24.9.32 1.28 1.22 1.78 1.94.13.2.19.42.18.65-.05 1.04-.1 2.08-.35 3.11a7.56 7.56 0 0 1-2.64 1.7l-.38 1.23a15.11 15.11 0 0 1-6.24 2.86c-4.13.96-8.15-1.43-10.61-4.62zm1.4-.2c1.63 2.26 4.5 3.4 7.23 3.5 2.32-.03 4.66-.66 6.48-2.16.44-1.51.45-3.12.42-4.68 0-.09-.03-.17-.17-.19-.9 1.32-2.58 1.7-4.1 1.56-1.2-.16-2.73-.55-3.17-1.84-.03-.1-.01-.25-.18-.29-.73 1.4-2.54 1.57-3.93 1.35a4 4 0 0 1-2.38-1.27c-.04-.04-.1-.07-.15-.1-.4 1.07-.41 2.9-.05 4.11zm13.09-7.8a1.99 1.99 0 0 0-.94-.66 8.43 8.43 0 0 0-2.37-.47c-.85-.05-1.42.47-1.55 1.3-.12.93-.3 1.86-.25 2.8.06 1.33 1.77 1.31 2.77 1.32.76-.04 1.52-.3 1.85-1.04.47-1 .63-2.18.49-3.25zm-11.67-1.25c-.35.85-.39 1.79-.34 2.7.01.73.27 1.5 1.01 1.78.72.3 1.48.4 2.26.33.73-.05.88-.84.98-1.42.1-.9.24-1.81.25-2.73 0-.67-.65-1.03-1.24-1.07-.6-.02-1.21-.04-1.81 0-.37.02-.74.14-1.1.41zM24.41 813.38c.2.08.37.16.55.21.96.3 1.5 1.31 2.03 2.08.15 1 .1 2.76-.12 3.54a7.79 7.79 0 0 1-2.49 1.84l-.37 1.25c-2.44 2.05-5.55 3.53-8.78 3.56-3.17-.12-6.04-1.9-8.1-4.23-.2-.51-.22-1.08-.31-1.66-.53-.45-1.06-.92-1.5-1.46a1.2 1.2 0 0 1-.3-.74c-.05-.83-.1-2.5.44-3.15.64-.8.97-1.3 1.88-1.72.19-1.06.41-2.24 1.4-2.85.22-.14.39-.32.54-.52.4-.51.85-.97 1.35-1.38.22-.19.45-.36.62-.61.08-.13.24-.23.38-.3a9.18 9.18 0 0 1 9.26.26c.1.22.27.42.48.6a8.55 8.55 0 0 1 3.04 5.28zm-2.22 8.4c.34-1.11.23-3.2.14-4.6 0-.15-.01-.32-.17-.5-1.2 2.08-4.05 2.32-6.1 1.5a2.13 2.13 0 0 1-1.3-1.25c-.03-.07-.03-.17-.15-.17l-.09.08c-.32.64-.87 1-1.52 1.21a4.7 4.7 0 0 1-4.54-.7c-.07-.07-.16-.12-.3-.23a8.78 8.78 0 0 0 .26 4.15c3.39 3.99 10 3.9 13.77.5zm-1.22-9.2c-.76-.82-2-.75-3.01-.9-1.3-.1-1.88.5-1.93 1.77-.04.59-.07 1.17-.08 1.75-.01.63.07 1.39.76 1.64.76.27 1.6.24 2.4.15 2.04-.24 2.04-2.84 1.86-4.4zm-11.79-.4c-.21.64-.19 1.3-.2 1.97 0 .42.06.83.17 1.24.33 1.4 2.03 1.45 3.2 1.33a.89.89 0 0 0 .77-.64c.32-1.13.21-2.32.25-3.47.01-.4-.16-.76-.51-.93a1.45 1.45 0 0 0-.54-.16c-.98-.05-2.4-.12-3.14.66zM23.6 567c-6.01 4.2-12.1 4.06-16.75-1.93l-.16-1.65a13.2 13.2 0 0 1-1.53-1.75c-.24-.93 0-2.12.2-3.02.1-.49.5-.8.82-1.15a3.3 3.3 0 0 1 1.56-1.07c.33-1.03.5-2.05 1.53-2.64.2-.12.37-.27.52-.45a8.28 8.28 0 0 1 1.62-1.45c.2-.15.4-.3.56-.49.11-.13.29-.24.45-.3a9.14 9.14 0 0 1 9.16.95c.03.27.24.44.43.63a8.62 8.62 0 0 1 2.63 5.44c1.45.63 1.37.86 2.2 2.11.18.26.23.53.22.83-.03.98-.12 1.96-.35 2.96a7.3 7.3 0 0 1-2.65 1.7L23.6 567zm-15.36-6.3c-.26 1.22-.31 2.3-.17 3.51.06.48.27.86.59 1.21 3.27 3.65 9.36 3.9 13.16.93.44-.86.54-3.56.5-4.79 0-.07-.05-.14-.1-.24a3.8 3.8 0 0 1-2.63 1.57 5.6 5.6 0 0 1-3.85-.7c-.4-.23-.7-.57-.86-1.03-.04-.1-.03-.25-.17-.31-.03.02-.07.04-.09.07-.77 1.22-2.44 1.4-3.76 1.2a4 4 0 0 1-2.3-1.14l-.32-.28zm10.3.73v-.02c1.08.08 2.03-.25 2.39-1.36.29-.81.4-1.65.42-2.5.08-1.19-2.56-1.48-3.43-1.54-.8-.07-1.44.56-1.51 1.34-.12.92-.33 1.85-.26 2.79.09 1.2 1.48 1.14 2.39 1.29zm-9.3-3.36c.1.93.13 1.91 1.17 2.28.64.24 1.32.33 2.01.3.73 0 1-.7 1.07-1.31.1-.79.18-1.57.26-2.36.04-.5.06-1.04-.45-1.32-.8-.4-2.32-.35-3.18-.09a.86.86 0 0 0-.63.7c-.11.6-.21 1.19-.25 1.8zM7.39 854.09l-.33-1.51c-.7-.45-1.34-1-1.94-1.69-.21-.9-.11-1.88-.14-2.8 0-.37.12-.7.35-.99.5-.63.91-1.4 1.73-1.65.08-.02.15-.07.24-.12.14-.97.18-2.05.97-2.75.2-.19.35-.4.5-.63a8.1 8.1 0 0 1 1.39-1.6c.25-.22.49-.45.64-.77a9.15 9.15 0 0 1 9.57-.41c.1.26.34.43.57.6 1.73 1.18 2.73 3.05 3.28 5.03.19.06.36.13.54.17.92.2 1.4 1.07 2 1.71.13.15.2.32.21.51.07 1.08.15 2.16.07 3.25-.65.9-1.5 1.47-2.41 2.08-.07.37-.12.78-.16 1.16a15.29 15.29 0 0 1-5.2 3.39c-4.16 1.78-8.78.08-11.88-2.98zm.92-4.76a9.78 9.78 0 0 0 .47 4.33c1.97 2.05 5 2.8 7.77 2.54 2.23-.33 4.62-1.25 6.13-2.99.25-1.49.09-3-.1-4.5-.01-.13-.03-.28-.14-.38-.06.05-.1.07-.12.1-1.24 1.96-3.99 2.24-6.01 1.48-.55-.21-.96-.58-1.2-1.13-.03-.09-.04-.2-.19-.23-.62 1.87-3.29 2.18-4.95 1.71a4.34 4.34 0 0 1-1.66-.93zm12.63-5.35a5.8 5.8 0 0 0-3.52-.57c-.83.05-1.23.8-1.24 1.6-.02.81-.03 1.62.07 2.43.1.78.5 1.2 1.28 1.28 1.33.11 3.17 0 3.48-1.6.21-.9.18-1.81.08-2.72-.01-.12-.09-.24-.15-.42zm-7.36 2.12h-.06c0-.5 0-1-.04-1.5-.04-.68-.61-1.02-1.25-1.04-.88.05-3.17.1-3.2 1.3-.06 1-.02 2 .36 2.95.15.41.46.67.85.86.51.25 2.12.25 2.58.06a.99.99 0 0 0 .64-.71c.15-.63.12-1.28.12-1.92zM27.1 882.19a9.27 9.27 0 0 1-2.16 1.97l-.1 1.22a13.34 13.34 0 0 1-8.36 4.35c-3.27.09-6.42-1.35-8.85-3.49l-.29-1.31c-.8-.48-1.54-1.04-2.22-1.7-.2-1.2-.16-2.4-.16-3.62l.9-1.22c.34-.49.85-.76 1.41-.95.17-.16.18-.38.23-.58.23-.86.5-1.7.95-2.5a8.2 8.2 0 0 1 1.76-2.17c.22-.2.43-.4.5-.67a9.21 9.21 0 0 1 9.6-.51c.14.22.33.43.58.6a8.9 8.9 0 0 1 3.34 4.84c.01.04.04.07.09.14.1.03.24.08.38.11.96.18 1.53 1.14 2.15 1.75.17.6.31 2.95.24 3.74zm-17.95 3.58c3.43 3.15 10.1 3.45 13.93-.74.27-.93.28-2.44.02-4.28-.02-.16-.01-.32-.18-.46-1.28 1.76-3.71 2.1-5.67 1.44a2.03 2.03 0 0 1-1.4-1.32c-.02-.07-.08-.13-.15-.23-.25 1-.73 1.47-1.68 1.82a5.12 5.12 0 0 1-5.25-.81c-.31.91-.1 3.38.38 4.58zm7.74-8.15c.04.5.06 1.07.13 1.63.14 1.55 1.96 1.3 3.08 1.11 1.96-.32 1.77-2.72 1.59-4.23-.07-.3-.23-.54-.53-.65-.23-.09-.46-.18-.7-.23a7.96 7.96 0 0 0-2.3-.1c-.78.05-1.25.57-1.27 1.35-.01.36 0 .71 0 1.12zm-4.71 3.12c.75.03 1.9 0 2.07-.93.19-1.01.02-2.04-.03-3.05-.04-1-.78-1.43-1.72-1.33-.85.14-2.9.2-2.97 1.33-.05.92 0 1.83.29 2.71.33 1.1 1.33 1.36 2.36 1.27zM11.54 711.48a9.17 9.17 0 0 1 9.14-.03c.25.13.45.28.61.52.12.17.27.32.42.45.5.45.96.93 1.34 1.48.14.2.31.38.51.54.93.68 1.03 1.81 1.24 2.87.94.37 1.44 1.2 1.98 1.99.36.66.28 2 .23 2.76-.03.37-.16.69-.43.95l-1.39 1.32-.32 1.51a12.01 12.01 0 0 1-4.28 3.2c-4.3 2.07-9.16-.03-12.54-2.9l-.42-1.3-.61-.37a7.56 7.56 0 0 1-1.67-1.4.82.82 0 0 1-.22-.5c-.1-.94-.1-1.88 0-2.81.02-.21.11-.4.24-.57.59-.68 1.06-1.57 2-1.8.15-.06.3-.12.47-.17a8.71 8.71 0 0 1 3.23-5.2c.2-.15.42-.28.47-.54zm12.31 9.93c-.47.38-.79.59-1.3.8-1.67.61-4.04.35-5-1.3l-.1.02-.1.16c-.86 1.84-4.54 1.79-6.05.82-.46-.3-.86-.66-1.16-1.12-.05-.07-.1-.12-.22-.07-.23 1.2-.35 2.41-.3 3.65.02.45.03.91.2 1.34 3.65 3.4 10.26 3.71 13.61-.25.45-1.29.53-2.6.42-4.05zm-7.61-2.96h.02l-.1-1.49a1.32 1.32 0 0 0-1.28-1.22c-.99-.05-2 0-2.94.37-.48.16-.69.5-.68 1 0 .42-.03.83.01 1.25.17 2.43 1.32 2.74 3.53 2.61 1.53-.05 1.47-1.32 1.44-2.52zm6.68-2.2c-.7-.54-1.94-.6-2.81-.6-.9.04-1.23.53-1.23 1.26.05 1.1-.12 2.22.15 3.29.13.55.64.72 1.16.76.52.05 1.04 0 1.55-.11.82-.17 1.23-.8 1.37-1.6.14-.67.27-2.47-.2-3zM20.5 903.01c.2.19.37.4.58.55 1.72 1.23 2.69 3.05 3.38 5 1.37.3 1.67 1 2.54 1.98.21 1.16.29 2.32.23 3.47-.51.87-1.3 1.4-2.05 2.03l-.17 1.28a13.67 13.67 0 0 1-5.55 3.72c-4.05 1.53-8.48-.23-11.69-2.8-.22-.42-.16-.86-.32-1.26-.87-.54-1.74-1.04-2.42-1.86l-.13-3.58c.57-.82 1.08-1.78 2.08-2.1.12-.03.23-.08.38-.14.53-2.14 1.2-3.82 2.91-5.3.24-.2.5-.39.57-.69a9.43 9.43 0 0 1 9.65-.4l.01.1zm-4.2 8.96c-.15.05-.13.2-.17.3-.16.53-.5.9-.99 1.16-1.9.99-4.54.94-6.07-.7-.38.89-.22 3.75.28 4.99 4 3.26 10.48 3.1 14-.79.35-1.33.27-2.7.14-4.06-.03-.32-.03-.32-.22-.63a3.76 3.76 0 0 1-2.07 1.3c-1.22.36-2.5.26-3.66-.24-.6-.24-1-.75-1.23-1.33zm-6.26-3.92c-.26 1.1-.1 2.25.28 3.32.5 1.36 2.44 1.21 3.6.97.74-.17 1-.82.99-1.53l-.1-2.24c-.01-.76-.55-1.43-1.2-1.45-.94-.07-2.94.14-3.57.93zm12.04-.5c-.36-.35-.44-.41-.8-.51a8.03 8.03 0 0 0-2.47-.24c-.6.05-1.08.3-1.3.92-.07.88.03 1.78.04 2.66.04.76.23 1.65 1.13 1.76 1.07.16 2.94.1 3.34-1.13.35-.94.27-1.97.18-2.95-.01-.18-.08-.36-.12-.5zM24.06 652.43c1.27.24 1.53.79 2.4 1.63.5.47.61 2.86.55 3.62a7.61 7.61 0 0 1-1.77 1.9l-.13 1.57c-4.69 5.8-11.02 6.1-16.86 1.74l-.3-1.27a7.84 7.84 0 0 1-2.57-1.68 27.5 27.5 0 0 1-.34-3.52c.5-.8.93-1.75 1.83-2.15l.53-.23c.31-2.03 1.1-4.03 2.69-5.42.18-.17.34-.36.41-.6a9.12 9.12 0 0 1 9.03-1.01c.54.2.52.45.92.71 1.76 1.13 2.84 2.8 3.61 4.71zm-7.53 4.22c-.13.97-.7 1.49-1.48 1.83-.63.27-1.3.47-1.99.5-1.3.04-2.53-.19-3.5-1.18-.05-.06-.1-.13-.2-.07-.24 1.1-.01 3.37.48 4.62 2.03 1.68 4.87 2.23 7.45 1.99a9.23 9.23 0 0 0 6.22-3.5 9 9 0 0 0-.18-4.25 4.83 4.83 0 0 1-5.15 1.47c-.88-.25-1.18-.64-1.65-1.41zm-6.4-3.36c-.04 1.47.16 4.1 2.19 4.08.7.02 1.42 0 2.08-.24.66-.2.8-.87.77-1.48-.04-.85-.15-1.7-.3-2.54-.12-.79-.92-1.15-1.66-1.06-.9.16-1.82.24-2.62.71a.88.88 0 0 0-.45.53zm12.15.71c-.06-.55-.12-1.06-.2-1.58-.05-.4-.25-.7-.67-.8a5.66 5.66 0 0 0-2.9-.1c-.61.13-.94.58-.96 1.21.02.85.15 1.7.23 2.55.03.24.1.49.17.72a1 1 0 0 0 .92.73c.78.07 1.54-.03 2.26-.33 1.08-.4 1.03-1.45 1.15-2.4zM7.35 630.05l-.33-1.54c-.26-.2-.53-.4-.78-.62-.24-.2-.44-.44-.68-.64a1.4 1.4 0 0 1-.48-.98c-.06-.8-.18-2.42.3-3.06.53-.69.98-1.5 1.88-1.76.22-1.07.22-2.14 1.18-2.87.21-.17.38-.38.53-.6.37-.54.8-1.01 1.28-1.45.22-.2.44-.38.6-.64a1 1 0 0 1 .36-.32 9.21 9.21 0 0 1 9.21-.15c.09.3.37.45.61.64a8.67 8.67 0 0 1 3.17 5.04l.6.19c.91.26 1.46 1.2 2.03 1.88.21.98.24 2.85.07 3.6a7.8 7.8 0 0 1-2.39 1.95l-.26 1.24c-5.34 4.9-11.64 5.47-16.9.09zm14.89-5.54a3.8 3.8 0 0 1-1.8 1.6c-1.69.7-4.84.71-5.64-1.27-.08.01-.11.06-.15.12a2.44 2.44 0 0 1-1.46 1.28c-1.52.56-3.31.5-4.62-.54-.08-.07-.15-.16-.3-.1a8.93 8.93 0 0 0 .43 4.08c3.57 3.77 10.23 3.43 13.75-.2.24-1.43.14-4-.21-4.97zm-1.42-4.13c-.8-.75-1.96-.63-2.97-.73-2.29-.06-1.77 1.84-1.85 3.43-.03.91.23 1.73 1.23 1.87 1.46.13 3.27.09 3.61-1.67a6.3 6.3 0 0 0-.02-2.9zm-11.79.36c-.1 1.05-.1 2.13.24 3.14.38 1.2 1.83 1.13 2.85 1.11 1-.03 1.26-.7 1.25-1.58l-.01-2.38c.02-.81-.47-1.27-1.28-1.27-.6-.04-1.2.07-1.8.17-.26.04-.5.17-.76.27a.88.88 0 0 0-.49.54zM7.22 757.26l-.09-1.3c-.76-.63-1.5-1.2-2.04-2.04 0-1.16.18-2.31.3-3.5.59-.7 1.24-1.6 2.2-1.8l.5-.13c.72-1.97 1.78-3.68 3.59-4.81.24-.14.39-.3.55-.54 3-1.46 6.7-1.13 9.4.85.12.28.3.52.53.73 1.5 1.38 2.22 3.22 2.59 5.17.08.06.1.1.14.1 1.08.33 1.56 1.33 2.14 2.2.05 1.2-.04 2.4-.25 3.54-.7.66-1.4 1.22-2.25 1.59l-.35 1.38c-2.47 2.05-5.7 3.48-8.96 3.17-3.13-.4-5.95-2.25-8-4.6zm8.98-4.72c-.25.68-.56 1.14-1.22 1.41-.9.36-1.89.45-2.82.3-1.13-.2-2.17-.61-2.87-1.6-.06-.08-.11-.18-.24-.13-.42 1.68-.54 3.47-.21 4.55a10.12 10.12 0 0 0 9.16 3.17c1.66-.33 3.4-.94 4.6-2.15.47-1.24.75-3.54.5-4.33-.07.04-.15.06-.2.11-1.5 1.34-3.81 1.28-5.51.38-.74-.38-.97-.92-1.19-1.71zm6.28-3.44c-.5-.94-2.33-1.1-3.28-1.14-.74-.02-1.22.38-1.33 1.12-.15 1.05-.31 2.12-.2 3.17.05.38.26.65.6.81.74.3 1.56.33 2.34.24 1.9-.27 1.93-2.73 1.87-4.2zm-7.32.77h-.02c.02-.33.07-.66.06-1 0-.88-.72-1.34-1.47-1.36-.87.02-1.76-.1-2.59.2a.83.83 0 0 0-.63.77c-.16.86-.2 1.74-.06 2.6.2 1.46 1.87 1.68 3.08 1.68 1.71.07 1.45-1.68 1.63-2.89zM7.53 949.88l-.19-1.1a8 8 0 0 1-2.42-1.87c-.1-.58-.12-2.87-.04-3.73.28-.45.63-.89 1-1.3.4-.48.93-.68 1.5-.86.13-.25.17-.52.24-.77a8.57 8.57 0 0 1 3-4.63c.2-.15.34-.3.44-.55 3-1.93 7.22-1.79 9.85-.04.09.28.35.46.59.66.71.55 1.28 1.24 1.83 1.95.3.33.49.72.64 1.13.23.65.48 1.29.73 1.96l.38.15c.88.24 1.34 1.09 1.91 1.72.17.2.25.43.27.69.1 1.03.18 2.12 0 3.14a7.76 7.76 0 0 1-2.02 1.8l-.22 1.33c-5.48 5.2-11.76 5.06-17.49.32zm8.91-6.42-.17.43c-.22.62-.77 1-1.34 1.23-1.83.7-4.23.68-5.65-.83-.05-.05-.13-.08-.2-.13-.37 1.24-.31 3.78.1 5.16 1.31 1.28 3.13 1.94 4.9 2.29 3.2.67 7.05-.2 9.31-2.66.4-1.2.42-3.94.06-4.82-.44.36-.83.76-1.38.94a5.66 5.66 0 0 1-4.37-.17c-.7-.3-.98-.75-1.26-1.44zm-6.29-3.79c-.12.93-.07 1.95.18 2.87.35 1.59 2.21 1.55 3.5 1.36 1.23-.21 1.27-1.02 1.29-1.88-.01-.54-.02-1.08-.05-1.62-.02-1.33-.54-1.92-1.9-1.82-.8.08-2.72.24-3.02 1.1zm7.64-.33v2.74c.04.79.29 1.62 1.2 1.73.74.12 1.49.1 2.22-.1.92-.24 1.16-1.04 1.28-1.88.11-.62.02-1.25.02-1.87.02-.75-.5-1.1-1.15-1.27a8.58 8.58 0 0 0-2.28-.26c-.62 0-1.08.28-1.3.9zM6.9 120.23l-.13-.61c-.44-.3-.9-.58-1.32-.92-.41-.35-.78-.75-1.14-1.1-.1-.67-.06-2.89.06-3.94.34-.51.75-1 1.2-1.47.38-.4.92-.56 1.43-.73.24-.7.44-1.39.74-2.07.08-.19.14-.39.17-.6a3.28 3.28 0 0 1 2.01-2.52c.37-.17.66-.43.96-.67l.15-.29c1.6-.94 3.44-1.4 5.3-1.43 1.77.14 3.44.65 5 1.55.18.45.55.72 1 .91 1.17.5 2 1.52 2.15 2.79.04.38.16.72.3 1.07l.52 1.47c1.3.45 1.5.98 2.32 2 .14.2.23.4.24.64.03 1.14.15 2.3-.08 3.43a7.93 7.93 0 0 1-2.27 1.87l-.19.78c-5.65 4.63-12.8 4.34-18.42-.16zm9.39-7.65-.15.31c-.25.86-1.03 1.29-1.84 1.52a7 7 0 0 1-3.76.12 4.2 4.2 0 0 1-1.84-1c-.05.06-.11.1-.12.15-.37 1.9-.47 3.87 0 5.77 2.23 1.95 6.26 2.77 9.11 2.45 2.08-.34 4.32-.9 5.9-2.37.46-1.32.47-4.59.1-5.8-.16.04-.25.16-.36.25-.35.27-.72.5-1.16.6-1.83.45-5.41.38-5.88-2zm-6.4-3.92c-.04.14-.11.32-.13.5-.1.99-.1 2.01.26 2.95.48 1.26 2.06 1.02 3.15.98.63-.08 1.37-.37 1.55-1.05.08-.26.14-.53.15-.8.02-.72 0-1.45 0-2.18.02-.64-.31-1.2-.97-1.35a2.25 2.25 0 0 0-.68-.06c-1.12.13-2.42.2-3.33 1zm7.88-.18c-.1.91-.04 1.86-.05 2.78 0 .96.44 1.64 1.4 1.85.66.16 1.32.17 1.98.1 1.19-.1 1.56-1.1 1.64-2.16.03-.47 0-.95.02-1.43.04-.73-.3-1.16-.97-1.4a9.37 9.37 0 0 0-2.67-.56c-.58-.04-1.06.17-1.35.82zM7.1 532.05c-.75-.7-1.43-1.24-2.01-2.05-.02-1.17.18-2.32.3-3.5.43-.53.89-1.04 1.44-1.45.35-.24.8-.37 1.2-.45.2-.17.23-.4.32-.62.31-.77.7-1.5 1.19-2.18a8.6 8.6 0 0 1 2.09-1.95c.21-.16.4-.34.6-.54a9.05 9.05 0 0 1 9.4.81c.12.28.3.52.54.73a8.77 8.77 0 0 1 2.54 5.1c0 .04.03.08.07.16.08.04.18.1.3.14.97.33 1.38 1.34 1.94 2.1.05 1.22-.09 2.4-.25 3.56a7.43 7.43 0 0 1-2.33 1.62l-.33 1.3c-2.42 2.02-5.62 3.36-8.8 3.14-3.2-.37-6.12-2.24-8.16-4.7l-.06-1.22zm8.99-3.5c-.25.43-.36.77-.73 1.08-.31.27-.68.41-1.06.5-1.88.47-4.08.03-5.26-1.6-.2.3-.22.61-.27.91-.2 1.2-.27 2.4-.07 3.6a8.72 8.72 0 0 0 4.3 2.86 9.8 9.8 0 0 0 9.5-1.66c.54-1.38.62-2.86.6-4.32l-.08-.2a4.3 4.3 0 0 1-1.7 1.03c-1.83.47-4.94.13-5.23-2.2zm6.28-3.38c-.52-.91-2.25-1.06-3.2-1.16-.81-.08-1.43.5-1.5 1.3-.06 1-.28 2-.16 3 .04.35.24.6.56.77.7.33 1.5.33 2.26.29 2.01-.1 2.1-2.68 2.04-4.2zm-9.64-1.65a4.84 4.84 0 0 0-1.72.23c-.36.1-.55.34-.61.71-.15.9-.23 1.83-.04 2.73.12.66.53 1.08 1.14 1.3.73.27 1.5.32 2.27.25.77-.04 1.02-.81 1.09-1.47.08-.74.13-1.49.2-2.24.04-1.4-1.17-1.57-2.33-1.51zM24.63 461.47c.84.24 1.25.89 1.78 1.49.78.8.65 2.23.62 3.28-.02.33-.14.6-.36.84-.4.47-.86.94-1.36 1.32l-.28 1.61c-5.02 5.69-11.12 5.12-16.81.8l-.47-1.19c-.42-.26-.89-.5-1.3-.8-.42-.31-.8-.68-1.13-.98-.3-.82-.37-2.4-.19-3.56.47-.73 1.07-1.77 1.94-2.08l.6-.23a8.7 8.7 0 0 1 3.07-5.34c.2-.16.4-.3.43-.55a9.19 9.19 0 0 1 9.2-.33c.23.11.43.25.58.46.12.17.27.31.43.45.43.36.85.73 1.2 1.18.14.18.3.33.5.46 1.14.66 1.33 1.97 1.55 3.17zM9.9 470.2c3.69 3.26 10.49 3.4 13.67-.64.41-1.3.5-3.21.2-4.15a4.74 4.74 0 0 1-5.2.61c-.42-.2-.78-.47-1-.9-.03-.06-.05-.16-.16-.13-.11.2-.2.41-.33.6-.96 1.21-3.21 1.4-4.65 1.09a3.76 3.76 0 0 1-2.33-1.44c-.04-.06-.11-.1-.22-.18-.27 1.76-.34 3.45.02 5.14zm1.29-9.36c-.12.24-.16.48-.15.73.03.48.04.96.11 1.43.06.39.18.77.32 1.14.22.7 1 1 1.68 1.07 1.1.02 2.85.26 2.95-1.31a13.9 13.9 0 0 0-.16-2.8c-.09-.68-.6-1.1-1.29-1.13-.95-.03-2.82.1-3.46.87zm11.68-.38c-.65-.83-2-.73-2.94-.77-1 .04-1.33.56-1.27 1.52.03.75.07 1.5.12 2.24.04.72.3 1.5 1.15 1.52 1.23.09 2.83-.06 3.03-1.56.18-1 .12-1.98-.09-2.95zM7.75 502.03l-.24-1.2c-.43-.3-.87-.56-1.27-.9-.4-.33-.74-.72-1.11-1.1-.09-1.18-.07-2.34.1-3.48.6-.79 1.2-1.74 2.19-1.99.16-.03.32-.09.48-.14.13-.2.17-.43.24-.64a8.26 8.26 0 0 1 3.16-4.44c.2-.15.42-.27.48-.53a9.15 9.15 0 0 1 9.2.23c.39.18.54.61.85.89.58.54 1.11 1.12 1.54 1.8.08.14.19.27.3.39.5.49.74 1.1.85 1.77.05.37.07.75.26 1.1.38.18.82.34 1.07.7.34.42.67.85.97 1.3.4.64.29 2.82.03 3.54a9.14 9.14 0 0 1-1.83 1.57l-.37 1.54c-5.46 5.21-11.53 4.5-16.9-.41zm15.43-.1c.48-1.4.68-3.39.44-4.21-.08-.02-.16.05-.22.09-.52.48-1.17.7-1.85.83-1.11.22-2.15.02-3.15-.45a2.2 2.2 0 0 1-1.17-1.17c-.02-.05-.07-.09-.13-.16a2.3 2.3 0 0 1-1.64 1.41c-2.02.63-4.46.2-5.73-1.6a11.47 11.47 0 0 0-.25 5c3.6 3.5 10.08 3.97 13.7.25zm-12-9.53a5.97 5.97 0 0 0-.08 2.78c.12.69.47 1.35 1.18 1.56.8.27 1.63.3 2.47.2.41-.07.81-.3.97-.7.06-.16.12-.32.13-.48.1-.96.1-1.92.02-2.87-.04-.7-.68-1.13-1.34-1.16-1.04 0-2.52-.08-3.35.67zm7.34 2.07c0 .46-.02 1.34.14 1.87.1.5.6.74 1.08.78.52.01 1.04.04 1.56-.01 1.8-.15 1.72-2.4 1.72-3.77.03-1.44-2-1.35-3.02-1.5-1.7-.05-1.34 1.32-1.48 2.63zM7.1 152.7l-.14-.66a8.52 8.52 0 0 1-2.55-2.15c-.05-1.24.07-2.48.1-3.72.54-.74 1.25-1.8 2.15-2.04l.56-.17c.32-.96.62-1.94 1.13-2.82.31-.68.6-1.18 1.2-1.65.47-.37.93-.76 1.39-1.16.12-.1.2-.26.34-.43a9.71 9.71 0 0 1 10.13.3c.24.48.62.8 1.08 1.01 1.19.5 2 1.55 2.15 2.85.05.83.38 1.57.68 2.34.46.18.93.38 1.24.79.32.39.61.79.92 1.18.14.17.22.37.23.58.07 1.13.19 2.29-.13 3.4a8.37 8.37 0 0 1-2.12 1.74l-.21.97c-5.63 4.67-12.62 4.22-18.15-.36zm1.71-.72c3.8 3.26 10.96 3.65 14.78.25.47-1.44.57-4.33.2-5.54-.48.34-.94.7-1.53.81a6.7 6.7 0 0 1-4.5-.5c-.5-.26-.86-.64-1.03-1.2-.02-.07-.02-.16-.13-.18l-.05.03-.1.23c-.23.66-.83 1.03-1.46 1.25-1.92.64-4.36.65-5.86-.89-.03-.03-.1-.03-.2-.05-.38 1.93-.49 3.85-.12 5.8zm1.46-10.47c-.2.66-.13 1.42-.13 2.12.02.44.14.86.3 1.27.21.6.8.9 1.4 1 1.27.16 3.29.24 3.42-1.46.13-.94.07-1.87-.02-2.8-.04-.79-.82-1.16-1.54-1.12-1.06.06-2.65.13-3.43.99zm7.88-.16c-.08.73-.06 1.5-.07 2.23 0 1 .05 2.03 1.16 2.37.69.2 1.4.22 2.1.14a1.55 1.55 0 0 0 1.43-1.2c.28-.87.32-2.32.07-3.18-.69-.88-2.34-1.03-3.38-1.13-.56-.03-1.03.15-1.31.77zM11.06 967.23l.13-.27c3.2-1.89 6.8-1.73 9.99.1.13.3.34.52.59.72.41.35.78.76 1.2 1.08.7.5 1.16 1.14 1.3 1.98.14.77.5 1.46.67 2.18.1.05.14.1.2.11 1.02.26 1.6 1.3 2.2 2.03.24.91.25 2.94.02 3.77a8.36 8.36 0 0 1-2.06 1.71l-.21 1.08a13.33 13.33 0 0 1-8.47 3.65c-3.42 0-6.76-1.51-9.33-3.71l-.1-.75c-.14-.22-.38-.32-.59-.44a7.9 7.9 0 0 1-1.9-1.65c-.08-.6-.06-2.35.05-3.76.44-.64 1.2-1.73 1.98-1.96l.61-.2c.87-2.68 1.44-3.88 3.72-5.67zm12.52 8.63c-.52.42-1.03.83-1.71.95a6 6 0 0 1-4.3-.5 1.8 1.8 0 0 1-.96-1.1c-.02-.08-.01-.18-.16-.2-.15.37-.3.78-.64 1.02-.26.17-.52.35-.81.46-1.86.73-4.3.7-5.78-.8-.05-.05-.12-.08-.25-.16-.3 1.87-.42 3.68 0 5.5 3.78 3.4 10.67 3.57 14.45.07.43-1.42.52-4.2.16-5.24zm-8.35-3.38h-.04c-.05-.57.03-1.18-.17-1.73a1.2 1.2 0 0 0-1.12-.77 7 7 0 0 0-3.1.53c-.44.17-.66.48-.66.96-.01.8-.06 1.62.15 2.42.18.78.67 1.29 1.47 1.42.75.11 1.5.13 2.24-.04 1.38-.23 1.13-1.73 1.23-2.79zm7.35-1.51c-.65-.84-2.23-.92-3.22-1-.82-.04-1.45.36-1.45 1.23 0 1.02-.1 2.05.1 3.05.11.6.5.96 1.07 1.08 1.34.28 3.26.29 3.52-1.42.2-.93.22-2.03-.02-2.94zM10.68 424.59a9.14 9.14 0 0 1 9.2-.79c.22.1.4.22.55.41.1.15.25.27.4.38.63.46 1.2.97 1.69 1.58.09.11.19.22.3.3.5.42.82.95.98 1.57.12.44.27.87.5 1.3.45.13.92.26 1.25.63l.94 1c.6.57.63 2.8.54 3.65a7.95 7.95 0 0 1-1.73 1.82l-.19 1.47c-4.87 5.7-11.09 5.68-16.91 1.39l-.34-1.13a8.07 8.07 0 0 1-2.58-1.77 20.4 20.4 0 0 1-.26-3.44c.49-.8.98-1.79 1.87-2.16l.58-.24a8.78 8.78 0 0 1 2.78-5.39c.19-.19.43-.34.43-.58zm-1.15 9.07c-.3 1.35-.14 3.79.32 5.07 2.18 1.74 5.18 2.33 7.92 2 2.22-.39 4.47-1.4 5.82-3.27.3-1.4.21-2.79 0-4.17-.02-.05-.07-.1-.13-.16a4.8 4.8 0 0 1-5.31 1.03c-.5-.2-.91-.5-1.17-1-.03-.06-.1-.11-.18-.21-.2 1.04-.98 1.5-1.86 1.8-1.82.64-4.1.46-5.4-1.1zm3.55-.16v.01c.2 0 .41 0 .62-.03.73-.09 1.61-.24 1.73-1.12.13-.86-.08-1.74-.14-2.6-.04-.61-.26-1.24-.88-1.46a1.5 1.5 0 0 0-.8-.1c-.96.2-2.02.18-2.86.77a.75.75 0 0 0-.35.62c-.02.93.08 1.83.4 2.7.33 1.02 1.3 1.3 2.28 1.2zm6.92-5.75c-.34 0-.67-.02-1 0-.6.02-1.16.57-1.1 1.2l.25 2.85c.08.55.41 1.13 1.02 1.18.75.08 1.5.03 2.2-.23.79-.24 1.08-1.03 1.12-1.78.06-.75.02-1.5-.13-2.23a.9.9 0 0 0-.54-.7c-.57-.27-1.2-.31-1.82-.3zM21.55 73.13c1.46.51 2.7 1.55 2.83 3.2.04.3.12.6.24.89.26.62.48 1.28.73 1.9.07.05.12.1.18.1 1.08.27 1.67 1.34 2.31 2.12.2.95.22 3.07.05 3.94a7.78 7.78 0 0 1-2.37 1.92l-.17.53c-5.62 4.3-12.9 4.16-18.55-.03l-.19-.53a7.88 7.88 0 0 1-1.71-1.24l-.7-.72c-.12-.84-.08-3.01.06-3.95.6-.78 1.2-1.78 2.21-2.08l.32-.1c.29-.57.46-1.2.67-1.8.07-.2.1-.4.13-.6.19-2.24 1.18-2.92 3.17-3.73 1.38-1 3.37-1.47 5.1-1.6 1.78-.01 4.3.63 5.69 1.78zm2.05 7.49c-.61.49-1.19.86-1.96.95a6.83 6.83 0 0 1-4.4-.48 2.1 2.1 0 0 1-1.08-1.22c-.04-.1 0-.24-.12-.3-.04.04-.07.07-.08.1-.34 1.48-2.01 1.82-3.3 2-.71.06-1.41-.04-2.11-.13a4.17 4.17 0 0 1-2.02-.9c-.6 1.43-.54 4.5-.1 6.08 2.88 2.4 7.92 2.88 11.46 1.86 1.26-.35 2.77-.92 3.72-1.85.33-1.25.32-2.54.28-3.83a8.51 8.51 0 0 0-.3-2.28zm-1.13-4.8c-.7-.87-2.74-1.14-3.78-1.18-.72.04-1.17.46-1.2 1.18 0 .9-.05 1.8.03 2.68.08.63.4 1.1 1 1.33 1.17.43 3.45.75 3.88-.81.3-1 .36-2.2.07-3.2zm-7.84 1.22h-.01c0-.42.02-.84 0-1.25-.21-1.75-2.43-.98-3.55-.76-.36.09-.7.26-1.04.42-.3.15-.48.4-.51.74-.1 1-.14 2.06.27 3.01.41 1 1.68.97 2.59.88 2.15-.25 2.3-1.08 2.25-3.04zM27.4 182.7a9.5 9.5 0 0 1-2.02 1.68l-.25 1.06c-5.68 4.68-12.32 3.91-17.82-.61l-.23-.67c-.57-.4-1.2-.73-1.69-1.26-.26-.3-.54-.58-.82-.87-.07-1.26 0-2.5.17-3.75.7-.74 1.25-1.77 2.33-1.98l.4-.12c.63-2.16 1.66-4 3.53-5.33.2-.15.43-.27.48-.54a9.66 9.66 0 0 1 10.07.43c.23.52.6.84 1.08 1.02.46.18.85.45 1.2.8.74.7 1 1.72 1.05 2.72 0 .6.24 1.08.46 1.64.41.2.85.42 1.12.81.36.47.7.94 1.02 1.38.22 1.25.2 2.44-.08 3.59zm-18.28 1.53c3.82 3.16 10.6 3.77 14.45.37.53-1.44.6-4.1.32-5.3-.45.27-.86.59-1.38.69a6.49 6.49 0 0 1-4.43-.57c-.46-.25-.79-.6-.96-1.1-.02-.07 0-.18-.16-.18-.38.8-.73 1.08-1.56 1.38-2 .68-4.5.52-5.97-1.14-.05.07-.11.11-.13.16-.39 1.89-.62 3.77-.18 5.7zm1.65-10.35c-.04.13-.1.29-.11.45-.02.62-.04 1.25-.01 1.87.01.32.12.65.22.96.45 1.43 2.56 1.3 3.74 1.06.69-.13 1.06-.73 1.11-1.4v-2.56c0-.26-.09-.5-.24-.7a1.31 1.31 0 0 0-1.06-.56c-1.04-.02-2.9.08-3.65.88zm7.75 1.62c-.02 1.23-.22 2.7 1.34 3 1.16.24 2.83.3 3.15-1.11a6.8 6.8 0 0 0 .16-2.78.95.95 0 0 0-.52-.74 6.48 6.48 0 0 0-3.12-.73c-.53-.01-1.03.5-1.01 1.05.02.44 0 .87 0 1.3zM19.93 392.14c.3.27.47.48.69.63a9.29 9.29 0 0 1 3.5 4.82c.14.05.28.1.42.13.98.18 1.53 1.1 2.2 1.75.24 1.19.3 2.37.33 3.54a7.62 7.62 0 0 1-2.02 1.98l-.11 1.23a13.12 13.12 0 0 1-8.09 4.38c-3.25.22-6.4-1.06-8.95-3.05l-.29-1.2a7.3 7.3 0 0 1-2.34-1.64c-.17-1.15-.2-2.32-.26-3.47.44-.77 1-1.81 1.86-2.14l.48-.2a9.2 9.2 0 0 1 2.69-5.3c.1-.1.22-.2.3-.3.1-.12.15-.26.22-.39a9.11 9.11 0 0 1 9.37-.77zM9.44 406.97c3.92 3.17 10.47 2.68 13.8-1.15.2-.98.2-2.1-.02-3.83-.04-.32-.07-.65-.24-1l-.36.4c-1.08 1.16-2.82 1.44-4.34 1.2-1.23-.28-1.87-.47-2.36-1.72-.23.94-.51 1.37-1.4 1.8-1.81.84-4 .78-5.57-.54-.25 1.27-.02 3.83.5 4.84zm12.16-10.4c-.69-.86-2.45-.7-3.43-.67-.73.07-1.24.68-1.18 1.28.05.85.1 1.7.17 2.55.01.14.06.29.1.43.17.6.5.9 1.13.97 1.23.1 3.01 0 3.31-1.48.24-1 .12-2.1-.1-3.07zm-7.1 2.93h.03c-.2-1.24.19-3.22-1.62-3.15-.98.05-2 .23-2.86.75a.8.8 0 0 0-.4.72c0 .3-.02.58 0 .87.11 1.1.31 2.7 1.64 2.9 1.04.14 3.17.22 3.21-1.22.02-.3 0-.58 0-.87zM27.6 1011.47a8.06 8.06 0 0 1-2.14 1.75c-.2.26-.16.53-.28.88-5.65 4.42-12.56 4.14-18.09-.32l-.13-.54a9.18 9.18 0 0 1-2.49-2.09c-.01-1.22.02-2.47.06-3.67a7.12 7.12 0 0 1 1.41-1.71c.38-.27.8-.44 1.25-.58.29-.78.49-1.59.88-2.33.08-.15.12-.31.15-.47a3.1 3.1 0 0 1 1.76-2.22c.57-.28.9-.56 1.32-1.08a9.8 9.8 0 0 1 10.03.28c.14.39.45.62.87.77a3.51 3.51 0 0 1 2.27 2.9c.04.9.52 1.65.73 2.43.09.07.12.11.15.12 1.08.3 1.61 1.33 2.26 2.15.2 1.24.17 2.46 0 3.73zm-18.84 1.52c2.8 2.5 7.96 3.12 11.47 1.96.95-.27 2.78-1.06 3.33-1.86.42-1.79.43-3.66.15-5.46 0-.03-.05-.05-.1-.1-.85.65-1.4.84-2.45.94a6.78 6.78 0 0 1-3.24-.46c-.86-.34-1.2-.76-1.5-1.6-.07.03-.1.13-.13.2-.24.91-1.14 1.3-1.97 1.52-1.72.43-3.83.4-5.2-.85-.06-.05-.14-.08-.28-.16-.4 2.01-.5 3.96-.08 5.87zm6.34-9.1h-.01c.03-1.32.05-2.52-1.64-2.42-.94.14-3.35.16-3.44 1.41-.1.91-.1 1.83.17 2.72.45 1.5 2.39 1.36 3.62 1.1 1.37-.29 1.32-1.69 1.3-2.82zm2.8-1.56c-.06.89-.04 1.79-.03 2.68-.02.96.48 1.63 1.43 1.84 1.34.28 3.12.26 3.34-1.29.22-.88.2-1.77.09-2.66a.72.72 0 0 0-.32-.52 6.65 6.65 0 0 0-3.27-.9c-.58-.02-1 .23-1.25.85zM10.7 361.16a10.35 10.35 0 0 1 4.56-1.63 9.91 9.91 0 0 1 5.04 1.14c.1.23.33.4.57.58a8.85 8.85 0 0 1 3.33 4.98l.43.14c.99.2 1.62 1.14 2.22 1.87.13.97.22 2.8.17 3.6a8.06 8.06 0 0 1-2.35 2.06l-.08.95a15.28 15.28 0 0 1-4.67 3.1c-4.19 1.98-9.07.6-12.42-2.38l-.3-1.27a7.6 7.6 0 0 1-2.05-1.67c-.22-1.04-.18-2.06-.15-3.08 0-.23.1-.44.23-.63.54-.67.95-1.54 1.83-1.81l.22-.1c.29-.6.18-1.27.33-1.9.25-1.3.9-1.48 1.68-2.33.27-.31.56-.61.86-.9.22-.22.46-.42.55-.72zm-1.8 13.78c3.57 3.45 10.61 2.94 13.93-.64.23-1.63.12-3.33-.2-4.95-.01-.05-.05-.1-.1-.18l-.3.34c-1.05 1.27-2.85 1.57-4.4 1.36-.96-.16-2.08-.45-2.47-1.45l-.16-.31c-.17.54-.4 1-.89 1.28-1.14.7-2.5 1-3.83.75-.62-.12-1.2-.3-1.7-.72-.07-.06-.14-.15-.3-.08-.15.55-.1 1.13-.09 1.7.03.99.16 1.95.5 2.9zm7.49-8.42c-.04 2.6.3 3.06 2.95 2.84 2.1-.08 2.1-2.45 1.91-4.02-.02-1.29-2.78-1.27-3.7-1.2-1.28.16-1.2 1.37-1.16 2.38zm-7.1-1.13c-.27.91-.11 2.27.2 3.16.23.66.7 1 1.39 1.08.64.06 1.3.06 1.92-.08.53-.13.82-.48.92-1 .13-.94 0-1.9 0-2.86.02-.8-.5-1.33-1.26-1.3-.98.07-2.52.2-3.18 1zM7.37 335.1c.16-1.52.24-3.23 1.78-4 .31-.17.6-.35.84-.63.34-.37.84-.63 1.05-1.11a9.32 9.32 0 0 1 9.65-.18c.07.28.3.44.5.6a8.74 8.74 0 0 1 3.19 5.18l.45.17c1.01.27 1.55 1.23 2.17 2 .1 1.18.16 2.36.03 3.55a7.74 7.74 0 0 1-2.47 1.99l-.25.96c-5.51 4.45-11.83 5.03-17.11-.12l-.25-1.24c-.62-.35-1.11-.86-1.62-1.36a1.18 1.18 0 0 1-.34-.77c-.08-.81-.06-1.62.01-2.43.03-.32.13-.61.34-.86.58-.71 1.02-1.52 2.03-1.74zm15.16 7.88c.2-.85.22-1.69.21-2.52 0-.93-.07-1.87-.26-2.79 0-.02-.05-.04-.08-.06-.1.03-.15.14-.22.21a3.46 3.46 0 0 1-2.04 1.24c-1.34.34-2.7.22-3.95-.36-.48-.2-.83-.54-1.05-1.02-.03-.1-.04-.22-.18-.22-.43.81-.58 1-1.65 1.4-1.6.63-3.55.53-4.92-.61-.21.43-.17.88-.2 1.3a9.53 9.53 0 0 0 .41 3.46 8.67 8.67 0 0 0 4.8 2.35c3.17.65 6.68-.27 9.13-2.38zm-6.27-7.89h.02c-.03 1.09-.16 2.32 1.2 2.55.6.12 1.2.12 1.8.05 1.08-.12 1.54-.54 1.83-1.58.23-.82.16-1.65.12-2.48a.7.7 0 0 0-.4-.6 6.19 6.19 0 0 0-3.56-.56c-1.16.3-.94 1.7-1.01 2.62zm-6.96-1.75c-.2.6-.17 1.21-.17 1.81.03 1.05.25 2.3 1.48 2.48.64.12 1.28.11 1.92 0 .47-.1.79-.38.93-.83.08-.25.13-.52.14-.79 0-.95.08-1.94-.02-2.88-.29-.59-.79-.7-1.33-.68-.98.08-2.22.12-2.95.89zM25.34 209.08c.71.26 1.14.9 1.56 1.5.9.98.6 2.96.33 4.15a8.15 8.15 0 0 1-1.9 1.58c-.15.17-.16.37-.2.55l-.14.54c-5.49 4.72-12.34 3.73-17.58-.8l-.25-.67a8.63 8.63 0 0 1-2.45-2.18 17.1 17.1 0 0 1 .19-3.56c.54-.7 1.26-1.72 2.13-1.96l.61-.16c.13-.2.17-.42.24-.64a8.86 8.86 0 0 1 3.65-4.82l.18-.3a9.41 9.41 0 0 1 9.94.62c.13.33.39.6.71.86a3.7 3.7 0 0 1 2.56 3.64c0 .57.14 1.1.42 1.65zm-16.12 6.94a9.76 9.76 0 0 0 4.1 2.2c3.36 1.05 7.44.82 10.16-1.62.54-1.6.6-3.31.47-4.98 0-.05-.06-.1-.1-.16-.47.32-.93.58-1.48.67-1.61.33-4.77-.07-5.17-2.02-.33.56-.55.97-1.16 1.24a6.35 6.35 0 0 1-3.97.37c-.9-.2-1.68-.59-2.28-1.3-.05-.07-.1-.14-.2-.1-.48 1.13-.67 4.1-.37 5.7zm6.78-8.48h-.03c0-.89.12-2.2-1-2.4a6.93 6.93 0 0 0-3.33.33c-.47.2-.74.51-.74 1.04 0 .52-.04 1.04-.01 1.56.01.33.1.66.19.98.4 1.52 2.5 1.41 3.73 1.2 1.32-.24 1.07-1.7 1.19-2.71zm2.76-1.6c-.06.93-.11 1.87-.1 2.8 0 .9.33 1.64 1.25 1.84 1.14.28 2.82.36 3.16-1.07.28-1 .29-2 .15-2.95-.48-.94-2.4-1.19-3.34-1.28-.47-.04-.85.17-1.12.66zM4.14 49.16c.59-.75 1.15-1.72 2.07-2.1l.44-.17.68-1.7c.09-.22.11-.44.13-.67.06-1.15.2-2.27 1.13-3.07a4.85 4.85 0 0 1 1.65-.99c2.83-.79 5.04-1.86 8.03-1.06 1.18.34 2.34.74 3.5 1.14.61.22 1.15.58 1.61 1.05.82.77.92 1.78 1.06 2.87a32 32 0 0 1 .98 2.41c.03.03.06.07.1.08 1.03.25 1.59 1.16 2.21 1.93.17.2.24.43.26.69.05 1.12.05 2.24 0 3.37a7.22 7.22 0 0 1-2.2 1.92 17.2 17.2 0 0 1-9.61 3.23c-3.38 0-6.78-1.12-9.55-3.04-.18-.11-.35-.23-.53-.33A8.87 8.87 0 0 1 4.12 53c-.08-1.28-.04-2.54.02-3.84zm4.21 4.94c1.67 1.32 3.82 1.7 5.87 1.98 2.73.43 7.21-.24 9.39-2.02.4-1.83.34-3.7.1-5.56-.03-.26-.03-.54-.24-.76-.07.03-.14.04-.19.07-.77.63-1.74.76-2.7.86a5.95 5.95 0 0 1-3.22-.5c-.69-.3-1.19-.76-1.36-1.52 0-.04-.04-.07-.08-.14-.3 1-.68 1.35-1.63 1.74-1.9.76-4.1.58-5.85-.47-.3.78-.35 1.59-.4 2.38a11.8 11.8 0 0 0 .31 3.94zm14.2-9.9c0-.18-.03-.5-.05-.8a.85.85 0 0 0-.49-.75 8.75 8.75 0 0 0-2.78-.85 3.06 3.06 0 0 0-.87-.02c-.57.06-.97.47-.98 1.03-.02.83-.02 1.66.02 2.49.06 1.68 2.2 1.77 3.48 1.8 1.53-.01 1.71-1.62 1.68-2.9zm-8.02-.14h-.03v-1.19c-.17-1.73-2.55-.87-3.62-.61-.67.22-1.51.52-1.49 1.36-.02 1.26-.19 3.43 1.57 3.47 1.35 0 3.48-.14 3.53-1.9l.04-1.13zM7.12 311.68l-.18-1.15A8.37 8.37 0 0 1 5 308.76c-.19-1.15-.04-2.32.1-3.46.33-.5.7-.9 1.06-1.3.36-.43.85-.64 1.39-.8.35-.67.34-1.45.56-2.16.37-1.47 1.3-1.58 2.27-2.44.17-.16.35-.3.53-.44.21-.17.44-.32.49-.58a9.42 9.42 0 0 1 9.68.16c.11.27.3.48.53.67a8.43 8.43 0 0 1 2.82 4.6c.05.2.1.4.17.6 0 .02.02.03.05.08.12.05.27.12.43.17.98.32 1.47 1.26 2.04 2.06.02 1.2-.03 2.4-.1 3.57-.5.52-.4.63-2.5 1.94l-.17.83c-5.6 4.4-12 4.45-17.22-.58zm15.5-.14c.44-1.66.39-3.42.23-5.12-.01-.08-.02-.16-.15-.2-.5.51-1.08 1-1.8 1.15-.83.2-1.67.3-2.53.14-1.06-.23-2.4-.55-2.78-1.71l-.13-.34-.18.36c-.22.56-.74.9-1.28 1.1-1.68.62-3.79.63-5.2-.61-.05-.05-.13-.08-.24-.14-.33 1.67-.38 3.3.01 4.91 3.41 3.65 10.34 3.66 14.06.46zm-.89-9.71a1.8 1.8 0 0 0-1.04-.72 7.11 7.11 0 0 0-2.76-.37c-.57.07-.99.63-1.03 1.18-.05.8-.1 1.61-.12 2.42.01.56.18 1.23.77 1.45.73.3 1.67.3 2.45.23 1.93-.23 1.87-2.75 1.73-4.2zm-7.52-.39c-.24-.72-.86-.9-1.52-.86-.85.08-1.7.1-2.49.48a.87.87 0 0 0-.56.76l-.1 1c-.05 1.14.09 2.71 1.48 2.9 1.04.14 2.68.35 3-.96.21-1.08.2-2.24.19-3.32zM4.25 1043.7l.12-3.73c.38-.57.8-1.06 1.25-1.52.34-.38.9-.57 1.36-.72.3-.87.7-1.62.89-2.46.04-.29.07-.58.13-.86.21-1.34 1.37-2.3 2.6-2.68.45-.13.87-.31 1.28-.5a9.63 9.63 0 0 1 8.72.16c.56.27 1.16.46 1.73.72a3.56 3.56 0 0 1 2.16 3.06c.07 1.06.6 1.92.94 2.92.45.17.92.4 1.23.78l1.13 1.42a16.3 16.3 0 0 1 0 3.79 8.4 8.4 0 0 1-2.33 1.86l-.18.42c-3.81 2.73-8.91 3.73-13.4 2.2a18.83 18.83 0 0 1-4.18-1.93c-.33-.21-.69-.4-.91-.75-.08-.12-.26-.2-.4-.28a7.5 7.5 0 0 1-2.14-1.9zm4.54-4.75c-.55 1.14-.64 4.67-.17 6.2 1.7 1.43 4.1 1.94 6.26 2.2 2.53.38 6.76-.32 8.72-2.03.4-1.68.43-3.35.23-5.04-.03-.34-.03-.7-.22-1.04l-.5.3c-.33.22-.7.38-1.1.43-.61.09-1.24.16-1.86.18-1.33 0-3.5-.5-3.8-2.02 0-.04-.06-.07-.14-.14-.31 1.66-2.58 2.08-3.99 2.03-.54-.04-1.07-.1-1.6-.2-.7-.1-1.27-.44-1.83-.87zm1.1-4.61c-.22.98-.2 2.07.11 3.05.2.66.75.99 1.4 1.07 1.25 0 3.25.02 3.45-1.58.11-.89.1-1.78.02-2.68-.03-.68-.71-1.05-1.34-1.02-1.06.1-2.93.27-3.63 1.16zm7.87-.37c-.06.91-.07 1.84-.02 2.78.05.8.46 1.32 1.22 1.56 1.16.33 3.07.75 3.55-.74.33-.9.28-1.85.2-2.78-.03-.45-.43-.7-.8-.88a8.3 8.3 0 0 0-2.95-.68c-.53-.04-.93.16-1.2.74zM5.03 241.8c.4-.53.83-1.01 1.3-1.45.39-.37.91-.48 1.41-.6.14-.24.2-.48.28-.71a8.8 8.8 0 0 1 3.65-4.67l.16-.28a9.37 9.37 0 0 1 9.76.63c1.18 2 2.83 1.15 3.12 4.39.03.23.02.46.08.68.1.34.22.67.33.98.05.05.07.09.11.1.86.32 1.32 1.12 1.82 1.83.18.24.27.51.29.81.05 1 .04 2.05-.23 3.02a8.52 8.52 0 0 1-2.07 1.67l-.26 1a13.18 13.18 0 0 1-6.16 2.88c-4.1.78-8.16-1.16-11.24-3.78l-.18-.75a9.27 9.27 0 0 1-2.4-2.18c-.01-1.18.09-2.38.23-3.57zm4.49.26c-.5 1.08-.8 4.42-.37 5.7 2.06 1.9 5 2.73 7.75 2.8 2.26-.07 4.68-.6 6.37-2.2.5-1.56.58-3.22.48-4.86 0-.08-.02-.16-.14-.19-1.57 1.21-3.75.95-5.45.16a1.97 1.97 0 0 1-1.19-1.36c0-.03-.04-.05-.09-.12-.4.78-.74 1.13-1.58 1.4a6.38 6.38 0 0 1-4.11-.05 3.52 3.52 0 0 1-1.67-1.28zm1.39-4.28c-.18.54-.19 1.1-.2 1.66 0 1.23.27 2.44 1.67 2.66 3 .3 3.35-.12 3.36-3.02.1-1.46-.22-2.17-1.8-2.15-.79.02-1.58.11-2.33.36-.26.07-.5.2-.7.49zm7.6.13c-.1.99-.13 1.99-.12 2.99 0 .73.39 1.37 1.11 1.54 1.13.28 2.87.46 3.29-.95.32-1.01.37-2.04.21-3-.42-.92-2.41-1.23-3.33-1.27-.5-.02-.9.16-1.15.69zM24.42 1164.35c.36.79.76 1.56 1 2.44.1.06.23.13.37.18.9.3 1.38 1.17 1.97 1.85.15.19.22.4.23.64.05 1.14.06 2.29.01 3.45a8.3 8.3 0 0 1-2.38 1.98c-3.18 1.82-6.8 3.09-10.51 2.84-3.52-.21-8.66-2.09-11-4.78-.1-1.28-.05-2.55.02-3.83.65-.94 1.36-1.92 2.5-2.28.15-.47.32-.94.52-1.39.17-.36.27-.72.27-1.14 0-.43.08-.87.15-1.3.42-2.3 3.02-3.06 5.04-3.4.2-.03.4-.07.6-.13.87-.25 1.76-.4 2.65-.45 1.1 0 2.2.22 3.25.53.42.13.86.18 1.27.3 1.75.47 3.54 1.26 3.88 3.24l.16 1.25zm-15.96 3.16c-.58 1.4-.63 4.73-.1 6.37 2.06 1.53 5.34 1.94 7.85 2 2.24-.07 5.7-.62 7.42-2.1.4-1.97.31-4.02-.02-6-.02-.14-.07-.28-.27-.35a6.35 6.35 0 0 1-4.58.81c-1.22-.27-2.51-.68-2.84-2.05-.06.1-.12.16-.13.23-.2.83-.94 1.24-1.69 1.51a6.5 6.5 0 0 1-5.47-.4l-.17-.02zm8.85-3.99h-.03l.08 1.37c.12 1.69 2.2 1.77 3.5 1.82 1.89.04 1.74-2.36 1.6-3.68a.82.82 0 0 0-.45-.64c-.31-.17-.63-.35-.96-.45-.9-.24-1.81-.52-2.75-.46-1.07.08-1.01 1.24-.99 2.04zm-2.83.12v-1c-.03-1-.95-1.24-1.8-1.07-.95.2-1.94.32-2.78.85-.3.18-.5.45-.52.8-.02.46-.05.92-.04 1.38.03.82.27 1.93 1.22 2.08.87.1 1.76-.04 2.6-.29 1.39-.4 1.33-1.53 1.32-2.75zM4.12 20.95c-.12-1.28-.06-2.55.01-3.83.65-.94 1.36-1.92 2.5-2.29.17-.63.46-1.23.71-1.84.13-.64.12-1.33.23-1.98.41-2.28 2.99-3.05 4.98-3.39.24-.04.5-.08.73-.15a8.78 8.78 0 0 1 4.07-.3c.6.08 1.18.22 1.76.4.95.21 1.9.44 2.81.8 1.15.49 2.15 1.47 2.34 2.74.06.38.1.78.16 1.24.34.75.76 1.54 1 2.44.11.06.23.14.37.18.88.3 1.35 1.14 1.93 1.8.17.2.26.43.27.69a39.8 39.8 0 0 1 0 3.46 8.3 8.3 0 0 1-2.37 1.97c-3.18 1.82-6.8 3.09-10.52 2.84-3.5-.21-8.65-2.1-10.98-4.78zm4.22.93c1.24.9 2.77 1.35 4.27 1.64 2.52.5 5.12.46 7.6-.2 1.09-.28 2.6-.77 3.42-1.54.4-1.99.31-4.06-.03-6.05-.03-.14-.09-.28-.3-.3-.77.6-1.77.8-2.73.89a6.02 6.02 0 0 1-3.5-.66c-.53-.26-.9-.67-1.07-1.25-.02-.06.02-.17-.11-.16-.03.04-.07.07-.08.1a1.98 1.98 0 0 1-1.24 1.39c-1.2.55-2.46.76-3.77.53a4.93 4.93 0 0 1-2.06-.67c-.08-.05-.18-.07-.27-.1-.57 1.32-.63 4.33-.13 6.38zm8.97-10.36h-.03c.03.47.04.95.09 1.43.15 1.71 2.41 1.74 3.73 1.75 1.03-.08 1.24-.93 1.4-1.8.1-.55.01-1.11-.01-1.68a.95.95 0 0 0-.53-.85 7.98 7.98 0 0 0-3.6-.9c-1.11.06-1.08 1.2-1.05 2.05zm-2.83.14c0-.35.02-.7 0-1.06-.17-1.74-2.33-.9-3.42-.68-.4.1-.78.28-1.14.5a.99.99 0 0 0-.54.85c-.02.4-.05.79-.05 1.18 0 1.01.34 2.33 1.59 2.26.73 0 1.45-.08 2.15-.29 1.44-.37 1.44-1.5 1.41-2.76zM28 1140.87c-1.14 1.39-2.58 2.14-4.11 2.9a18.15 18.15 0 0 1-7.87 1.95c-3.02-.02-5.99-.94-8.63-2.39l-1.1-.6a8.64 8.64 0 0 1-2.16-1.8c-.1-1.28-.05-2.57 0-3.84.4-.58.8-1.1 1.27-1.58.31-.36.78-.53 1.21-.7l.82-2.08.05-1.09c.05-2.26 2.17-3.5 4.17-3.87 1.33-.27 2.63-.63 3.98-.76 1.53-.15 4.26.71 5.74 1.1.5.19 1 .41 1.44.73 1.28.9 1.49 2 1.62 3.47.33.77.76 1.56 1 2.46l.43.2c.87.31 1.32 1.18 1.9 1.83.2.23.23.49.23.76.02 1.1.06 2.2 0 3.31zm-12.07-6.8-.13.34c-.21.88-1.06 1.26-1.82 1.54-1.72.59-3.74.5-5.3-.44l-.2-.07c-.64 1.73-.6 4.54-.16 6.32 1.4 1.28 4.09 1.72 5.92 1.95 2.64.4 7.24-.24 9.35-1.92.08-.23.13-.48.16-.72.25-1.8.18-3.62-.16-5.4-.02-.13-.07-.24-.25-.27a4.6 4.6 0 0 1-1.8.74c-1.53.3-3.11.22-4.5-.54-.62-.31-.94-.83-1.11-1.52zm1.38-2.44.06 1.18c.1 1.84 2.44 1.87 3.83 1.83 1.46-.16 1.35-2.13 1.33-3.22-.01-.71-.4-1.1-1.02-1.33a9.8 9.8 0 0 0-2.78-.67c-.66-.06-1.35.3-1.36 1.03-.03.37-.04.74-.06 1.18zm-7.74-.96c-.14.2-.19.43-.2.66 0 .41-.02.83 0 1.24.08.8.16 1.74 1.06 2.04.97.15 2.03 0 2.97-.33.73-.25 1.08-.91 1.09-1.65v-2.06c-.01-.94-.9-1.18-1.7-1.04-1.02.18-2.47.37-3.22 1.14zM4.13 1108.7c-.04-1.18-.04-2.33.02-3.47 0-.26.1-.49.26-.69.6-.67 1.08-1.54 2-1.8l.25-.12.8-2.01c.05-.55.08-1.05.15-1.54.16-1.69 1.7-2.75 3.22-3.18 1.5-.38 3.02-.78 4.57-1 1.73-.16 3.42.43 5.08.84 2.48.68 3.92 1.7 3.95 4.46.34.82.79 1.57 1 2.45.12.06.24.14.38.19.91.32 1.44 1.3 2.04 1.97.18.74.23 2.97.08 3.98-.5.54-1.03 1.12-1.71 1.54-4.45 2.91-10.13 4.21-15.24 2.38a19.1 19.1 0 0 1-3.55-1.54l-1.2-.65a8.35 8.35 0 0 1-2.1-1.81zm19.32-5.44c-.56.34-1.09.65-1.74.74a6.56 6.56 0 0 1-4.55-.5c-.52-.25-.9-.65-1.06-1.23-.02-.09-.05-.16-.18-.16-.16.78-.7 1.24-1.41 1.54-2.04.82-4 .7-5.94-.36-.59.76-.72 5.24-.08 6.47 1.15.73 2.51 1.27 3.87 1.5 1.4.24 2.8.5 4.22.43 2.3-.17 5.17-.58 7.03-2.05.48-1.97.36-4.07.01-6.06-.02-.1-.1-.2-.17-.32zm-.97-4.56c-.54-.96-2.7-1.26-3.72-1.4-.68-.06-1.34.38-1.35 1.08 0 .68-.02 1.37 0 2.06-.02 1.88 1.69 1.95 3.3 2.13.58.03 1.29-.1 1.53-.7a5.3 5.3 0 0 0 .24-3.17zm-12.95 0c-.24 1.1-.3 3.77 1.26 3.8.9 0 1.84.02 2.7-.34.87-.34 1.07-1.04 1.1-1.91-.04-1.77.4-3.21-2.03-2.8-.81.15-2.64.47-3.03 1.26zM27.88 1076.52c-2.6 2.82-7.05 4.61-10.84 4.83-4.4.24-9.77-1.78-12.83-4.98-.13-1.26.03-2.57.02-3.83.4-.59.83-1.12 1.32-1.6.32-.36.8-.5 1.23-.67l.77-1.94c.05-.13.07-.28.09-.42.09-1.58.37-2.68 1.78-3.56 1.27-.8 2.8-.9 4.2-1.37a8.57 8.57 0 0 1 3.27-.3c.98.12 1.93.33 2.85.69.27.1.56.14.84.23.88.3 1.82.52 2.53 1.15.9.68 1.3 1.74 1.36 2.84 0 .4.14.77.3 1.13l.73 1.75.2.1c1 .34 1.5 1.33 2.17 2.1.15 1.29.16 2.57 0 3.85zm-19.23-5.46c-.3.45-.28.98-.36 1.49-.23 1.61-.21 3.23.17 4.83 2.85 2.09 7.61 2.5 11 1.79 1.37-.3 3.05-.75 4.13-1.68.46-1.53.38-3.17.26-4.75-.02-.37-.08-.75-.14-1.12-.02-.15-.06-.31-.2-.44-1.13.7-1.55.72-2.84.87a5.81 5.81 0 0 1-3.38-.65 1.9 1.9 0 0 1-1.07-1.24c-.02-.07-.06-.13-.1-.2l-.07.05a1.96 1.96 0 0 1-1 1.29 6.46 6.46 0 0 1-6.4-.24zm8.89-3.73h-.05c.1 1.41-.07 2.5 1.6 2.9.6.16 1.21.25 1.84.25.6.03 1.18-.2 1.43-.79.37-.85.36-1.78.28-2.7a1.1 1.1 0 0 0-.66-.97c-.94-.49-2-.7-3.05-.83-1.52-.04-1.41 1.04-1.4 2.14zm-2.78.03h-.05c0-.38.02-.75 0-1.12a1.1 1.1 0 0 0-1.01-1.01 7.47 7.47 0 0 0-3.65.87.77.77 0 0 0-.42.65c-.04.46-.09.91-.08 1.37.02.92.33 2.24 1.47 2.25.83.04 1.67-.03 2.46-.28 1.36-.38 1.2-1.58 1.28-2.73zM27.23 274.68c.04 1.2-.03 2.35-.17 3.46-.68.7-1.4 1.3-2.28 1.71l-.26 1c-5.74 4.38-12 3.92-17.3-.88-.05-.32-.1-.62-.14-.97a8.53 8.53 0 0 1-2.2-2c.05-1.19.1-2.37.24-3.57.48-.64 1.22-1.64 2.03-1.85l.55-.16c1.7-3.8.56-2.59 3.9-5.39l.14-.23a9.44 9.44 0 0 1 9.7.53c.1.22.22.43.42.59.63.52 1.11 1.18 1.66 1.78.25.28.4.63.5 1l.87 2.64c.06.02.14.08.24.11.5.16.88.47 1.19.88.32.43.66.85.9 1.35zm-11.03-1.01c-.24.57-.46.98-1.03 1.26-1.27.6-2.7.72-4.07.36-.7-.18-1.32-.5-1.82-1.02-.07-.07-.12-.18-.3-.13-.38 1.72-.52 3.47-.18 5.2 1.2 1.32 2.84 2 4.52 2.47 3.16.88 7.11.4 9.63-1.81.46-1.6.47-3.3.4-4.95-.01-.08-.02-.16-.16-.19-.47.38-.99.76-1.6.88-1.1.24-2.2.23-3.26-.16-.8-.3-1.73-.63-1.98-1.54l-.15-.37zm1.43-1.72h.01v.87c.03 1.54 1.82 1.6 2.98 1.55 1.93-.06 1.93-2.46 1.86-3.9a.84.84 0 0 0-.34-.63c-.75-.58-2.29-.86-3.22-.84-.65.03-1.1.44-1.16 1.08-.06.62-.09 1.24-.13 1.87zm-2.6-.85h.02c0-.33.03-.67.02-1-.01-1.83-2.22-1.36-3.43-1.17-.26.04-.51.15-.76.25-.37.14-.56.42-.6.8-.15 1.23-.37 3.34 1.11 3.8.79.25 1.6.27 2.4.13.57-.1.93-.46 1.07-1.02.15-.58.15-1.2.17-1.8z"}),l=(0,n.jsx)("path",{d:"M18.48 597.21c-1.36-.61-2.51-.22-3.58.54-.18 0-.26-.32-.27-.46.58-1.14 2.26-1.66 3.4-1.14.43.16.6.6.45 1.06zM9.93 596.57c-.13-.3-.02-.59.13-.85 1.03-.4 2.26.03 3.16 1.12.05.2.05.49.01.7-.13.07-.21 0-.3-.06-.81-.63-1.78-1.23-2.85-.88l-.15-.03zM17.06 693c.08.3.13.56-.08.82-1.16-.63-2.39-.88-3.62-.35-.14-.07-.14-.17-.14-.27 0-.24.06-.45.22-.66a3.29 3.29 0 0 1 3.62.46zM21.79 691.67c.1.25.16.49.04.76-1.22-.4-2.25.46-3.1 1.2-.22-.13-.24-.3-.24-.5.44-.97 2.31-2.3 3.3-1.46zM15.41 789.8c-.16-.17-.2-.37-.14-.64a3.42 3.42 0 0 1 2.9-1.03c.66.12 1.1.38.9 1.16-.04 0-.09.02-.12 0-1.22-.6-2.4-.05-3.54.5zM10.4 788.57a.96.96 0 0 1 .13-.9c.96-.48 2.6.27 3.3 1.2.05.25.07.5-.14.77-.98-.7-1.97-1.35-3.3-1.07zM19.09 820.22c.14.24.22.48.1.76-.07 0-.14.02-.2 0-1.2-.5-2.4.12-3.4.75-.2-.17-.25-.36-.22-.62.7-.97 2.69-1.73 3.72-.9zM13.88 820.82c.1.29.17.56-.05.82-1.42-.74-1.47-1-3.38-.89-.13-.29-.01-.55.08-.79.17-.17.35-.2.54-.22 1.04-.1 2.08.35 2.8 1.08zM18.94 565.35l-.18-.04c-1.14-.62-2.45-.16-3.43.52-.19-.14-.21-.32-.2-.56a2.94 2.94 0 0 1 2.85-1.16c.33.07.85.22.97.58.08.21.11.43 0 .66zM13.72 564.82c.02.32.08.57-.14.8-.83-.67-1.83-1.41-2.96-1.15-.1.02-.2.02-.32.03-.11-.35 0-.62.2-.89 1.19-.44 2.47.3 3.22 1.21zM16.18 853.6c-.21-.1-.24-.31-.28-.51.51-1.06 2.65-1.98 3.67-1.23.17.24.26.5.14.79-1.4-.36-2.42.14-3.53.95zM14.45 852.87c.07.27.1.5 0 .73-.2.06-.3-.07-.43-.12-.9-.4-1.88-.83-2.87-.49-.06.02-.13 0-.2.01-.17-.32-.1-.63.04-.9 1.11-.46 2.45-.16 3.46.77zM12.78 885.52c-.3-.4-.14-.89-.24-1.32-.05-.28.08-.55.28-.76.55-.13 1.1-.02 1.61.08.2.16.31.34.33.55.05.45.09.91.11 1.37 0 .09-.06.18-.1.28l-1.99-.2zM19.27 884.95l-2.06.55c-.23-.34-.17-.72-.2-1.09-.02-.28-.05-.58.17-.88.44-.27.97-.41 1.53-.51.3.1.47.35.52.64.07.42.08.86.04 1.29zM12.68 725.13c-.12-.42.03-.69.18-.93a3.27 3.27 0 0 1 3.58.74c.08.47.08.47-.14.83-1.1-.72-2.26-1.12-3.63-.64zM18.07 725.74c-.19-.15-.2-.33-.18-.58.66-.86 1.77-1.54 2.91-1.38.2.02.4.12.55.32.08.2.11.45.02.7-.07 0-.14.02-.18 0-1.12-.42-2.24.32-3.12.94zM14.69 918c-.54.04-1.14-.08-1.2-.7a19.5 19.5 0 0 1-.12-1.73c-.03-.9 1.2-1.1 1.6-.38.08.16.13.35.14.53.04.5.05.99.06 1.49 0 .4-.03.45-.48.78zM19.24 914.98c.1.6.11 1.18.1 1.76 0 .32 0 .32-.24.72-.38.08-.78.18-1.15.18-.25-.16-.3-.36-.3-.57-.03-.54-.04-1.08-.04-1.62 0-.9 1.17-1.34 1.63-.47zM16.08 661.07c.08.27.11.5 0 .78-.12-.04-.24-.06-.34-.12-1-.55-2.23-.7-3.29-.23-.18-.37-.18-.44.06-.92 1.1-.6 2.5-.4 3.57.49zM17.76 661.75l-.24-.5c.4-1.11 2.3-2.3 3.42-1.57.16.23.24.47.17.74-.07.02-.11.05-.15.04-1.23-.34-2.36.44-3.2 1.29zM15.94 629.76c-.22-.11-.24-.3-.28-.53.6-1.14 2.51-2 3.65-1.16.17.23.24.47.17.78-.08 0-.14.02-.19 0-1.2-.47-2.44.14-3.35.9zM10.76 629.03c-.14-.27-.04-.54.05-.82.93-.72 2.66-.04 3.38.72.1.28.14.53.03.78-.2.05-.3-.08-.42-.15-.83-.51-1.87-.9-2.83-.53-.08.03-.12.05-.21 0zM11.58 755.8c1.14-.38 2.5.06 3.41 1.1.04.26.07.53-.1.75-.14.06-.2-.04-.3-.09-1.04-.72-1.91-1.13-3.22-.86a.86.86 0 0 1 .21-.9zM20.1 756.48c.1.26.16.5.03.73-.12.08-.2 0-.3-.04-1.09-.43-2.29.09-3.21.68-.17-.23-.18-.23-.21-.54.68-.96 2.72-1.75 3.7-.83zM15.12 949.23c-.35.74-1.45.53-1.57-.23-.07-.61-.05-1.24-.06-1.86-.01-1.12 1.57-1.06 1.62-.04.04.7.01 1.4.01 2.13zM17.74 949.13c-.02-.64-.02-1.4-.02-2.05 0-.24.07-.45.24-.62a.78.78 0 0 1 .85-.22c.31.1.47.35.48.67 0 .62.01 1.24-.01 1.86 0 .58-.58.9-1.1.78-.2-.04-.33-.18-.44-.42zM14.86 117.66v.88c-.04 1.24-1.78 1.19-1.87.05a21.3 21.3 0 0 1-.01-2c.04-.95 1.38-1.13 1.76-.28.17.43.11.9.12 1.35zM18.7 119.35h-.73c-.36-.15-.5-.45-.5-.84 0-.58 0-1.16.02-1.74 0-.4.19-.72.56-.9.65-.34 1.33.2 1.31.9 0 .54 0 1.08-.03 1.62-.02.4-.15.73-.62.96zM14.83 532.9c.04.47.04.47-.14.82-.51-.39-1-.8-1.62-1a3.01 3.01 0 0 0-1.82-.03c-.08-.42-.08-.43.22-.9 1.16-.51 2.64.16 3.36 1.1zM16.45 533.88c-.2-.14-.2-.32-.18-.57.69-1.01 2.68-1.8 3.68-.78.11.24.14.5.03.8l-.29-.1c-1.08-.53-2.32.02-3.24.65zM16.55 469.15c.1.28.1.54-.04.79-.21.02-.31-.14-.45-.22a3.27 3.27 0 0 0-3.26-.28c-.1-.45-.1-.45.19-.94 1.05-.7 2.87-.25 3.56.65zM18.15 469.96l-.18-.54c.55-1.1 2.3-2.27 3.4-1.35.17.25.18.51.12.8h-.19c-1.17-.5-2.3.3-3.15 1.09zM12.25 501.05c-.01-.55-.01-.55.3-.96.97-.5 2.71-.09 3.43.9.06.4.06.4-.05.82-.07-.02-.16-.02-.22-.06a3.36 3.36 0 0 0-3.46-.7zM20.98 500.31c.08.27.15.5 0 .77-.04 0-.1 0-.15-.02-1.11-.55-2.33.13-3.2.83-.2-.14-.19-.32-.19-.5.7-1.14 2.36-2.07 3.54-1.07zM12.97 151.63c-.42-.54-.32-1.47-.17-2.09.25-1.04 1.83-1.09 2.33-.2.32.44.32 1.98-.07 2.4-.68-.1-1.38-.13-2.09-.1zM19.83 151.51c-.36 0-.7-.02-1.02 0-.33.03-.65.1-.95.15-.47-.15-.3-1.53-.21-1.9.3-1.25 2.21-1.34 2.44-.03.09.6.15 1.27-.26 1.78zM15.08 979.66c0 .3.02.59 0 .88-.02 1.09-1.54 1.03-1.63.06a22.2 22.2 0 0 1 0-2.06c.01-.43.33-.68.73-.7.4-.03.74.2.85.59.1.4.05.82.06 1.23zM17.72 979.7v-1.06c.11-1.15 1.67-1.09 1.62.12-.02.58-.03 1.16-.07 1.74-.01.95-1.54 1.17-1.59.14-.02-.31 0-.63 0-.94h.04zM12.5 437.77c-.14-.4-.03-.7.14-.97 1.15-.68 2.53-.48 3.57.5.09.26.14.53-.02.85-.95-.6-1.82-.95-2.95-.68-.26.05-.48.22-.74.3zM21.1 436.09c.17.22.2.48.15.73-.1.11-.17.05-.24.03-1.14-.44-2.3.35-3.06 1.15-.24-.09-.23-.29-.26-.52.5-1.13 2.2-2.32 3.4-1.4zM14.63 84.67v1.06c-.2 1.2-1.77.92-1.73-.3l-.02-1.74c0-.14.02-.3.07-.43.2-.7 1.29-.74 1.55-.06.18.46.1.98.11 1.47h.02zM17.36 84.61v-1a.9.9 0 0 1 .18-.58c.39-.56 1.33-.4 1.48.27a.9.9 0 0 1 .04.25c0 .7 0 1.41-.03 2.12-.04.98-1.59 1.1-1.66.07-.03-.38 0-.75 0-1.13zM15.83 183.65c-1.55-1.34-2.3-1.46-3.8-.66-.03-.1-.08-.18-.07-.24.04-.2.09-.4.16-.6.08-.2.24-.33.44-.42a2.8 2.8 0 0 1 3.23.77c.23.26.3.9.04 1.15zM17.64 183.76c-.19-.21-.18-.4-.17-.62.5-1.12 1.92-2 3.14-1.4.58.29.73.62.6 1.36l-.27-.14c-1.1-.79-2.47-.07-3.3.8zM11.8 405.94c-.12-.37-.05-.68.13-1 1.06-.73 2.63-.37 3.5.5.11.28.13.54.07.8-.13.1-.21.01-.3-.04-1.23-.76-2.07-.94-3.4-.26zM20.45 404.3c.14.24.27.5.14.8-1.4-.54-2.43.14-3.4 1.08-.21-.07-.21-.27-.25-.45.47-1.33 2.28-2.39 3.51-1.43zM14.95 1011.27c0 .33.02.66 0 1-.03.8-1.02 1-1.47.44a.8.8 0 0 1-.2-.52c0-.66-.02-1.33 0-1.99.04-.9 1.26-1.16 1.6-.3.15.44.08.92.1 1.37h-.03zM17.64 1011.28c.03-.64-.2-1.53.56-1.82a.8.8 0 0 1 1.08.68c0 .71 0 1.42-.04 2.12-.03.95-1.58 1.1-1.62.08-.02-.35 0-.7 0-1.06h.02zM19.89 373.46h-.12c-1.2-.6-2.52.04-3.34.95-.26-.06-.21-.3-.3-.42a2.56 2.56 0 0 1 3.23-1.6c.45.17.61.47.6.98 0 .03-.05.06-.07.09zM14.6 373.55c.16.29.18.57.1.9-.09-.02-.17-.02-.23-.06-.25-.15-.48-.33-.73-.47a2.5 2.5 0 0 0-2.54.04c-.33-.07-.11-.78.04-.99 1.03-.72 2.55-.27 3.36.58zM19.45 341.04c.16.25.26.53.14.85-1.45-.64-2.5-.26-3.6.8-.17-.13-.21-.3-.24-.49.6-1.41 2.42-2.23 3.7-1.16zM10.94 341c1.18-.57 2.33-.3 3.3.75.16.53.16.53-.02.9-1.1-.87-2.1-1.35-3.43-.63-.16-.4-.06-.71.15-1.02zM15.93 215.63l-.21-.15c-1.05-1.12-2.22-1.26-3.58-.6-.1-.44.07-.75.3-1.07a2.74 2.74 0 0 1 3.55.82c.12.33.12.65-.06 1zM17.66 215.76l-.17-.48a2.57 2.57 0 0 1 2.57-1.67c.76.08 1.45.7 1.16 1.5-.17.01-.25-.1-.35-.17-1.1-.7-2.37.03-3.21.82zM19 51.6c-.04.63.2 1.52-.56 1.82-.65.28-1.2-.26-1.17-.92v-1.8c-.03-.52.3-1.04.84-1.04 1.07.06.88 1.16.9 1.93h-.02zM14.53 51.68c0 .37.01.75-.02 1.12-.1.92-1.4.95-1.64.1-.09-.73-.05-1.48-.09-2.22 0-.1.02-.21.04-.31.21-.9 1.55-.86 1.67.07.04.41.01.83.02 1.24h.02zM19.83 310.3c-.08-.02-.14-.02-.19-.05-1.02-.67-2.3-.26-3.14.5l-.28.22c-.18-.15-.2-.33-.22-.55.57-1.24 2.26-2.01 3.48-1.2.35.21.51.69.35 1.08zM14.5 309.96c.12.3.15.59-.02.92-.38-.18-.64-.51-1.01-.71a2.4 2.4 0 0 0-2.47-.02c-.16-.06-.13-.17-.13-.27.02-.25.1-.49.24-.7 1.06-.66 2.4-.36 3.38.78zM17.53 1042.93c0-.69-.15-1.8.83-1.84.52-.03.88.45.87.93-.03.73.02 1.46-.09 2.18-.24.89-1.58.84-1.63-.15-.02-.37 0-.74 0-1.12h.02zM14.8 1042.96c0 .35.02.7 0 1.06-.07 1.04-1.53 1.02-1.67.04-.04-.66-.01-1.33-.02-2-.05-.51.33-1.02.86-1 1.06.05.8 1.16.82 1.9h.02zM11.89 246.68c-.05-.5.1-.82.34-1.1 1.3-.62 2.56-.3 3.5.9.05.3.13.6-.13.93-.4-.37-.75-.72-1.25-.93-.85-.38-1.64-.23-2.46.2zM17.42 247.51c-.23-.13-.18-.33-.2-.56.57-1.09 1.85-1.82 3.09-1.32.6.26.75.6.63 1.34-.1-.05-.2-.08-.27-.13-1.06-.77-2.4-.1-3.25.67zM18.08 1169.27c.68.2.88.4.9 1.04.02.6.01 1.2 0 1.8 0 1.34-1.79 1.35-1.73 0v-1.81c0-.61.17-.81.83-1.03zM14.5 1171.31c0 .35.02.7 0 1.06-.04.95-1.41 1.06-1.65.17a2.2 2.2 0 0 1-.06-.49c0-.68-.1-1.37 0-2.05.2-.89 1.55-.87 1.67.07.05.4.02.83.03 1.24h.01zM18.1 17.28c.68.2.86.41.88 1.05.02.58.02 1.16 0 1.74 0 .17-.03.34-.08.49-.28.8-1.44.72-1.62-.1-.07-.73-.01-1.46-.03-2.19-.03-.53.3-.95.85-1zM14.5 19.33c0 .35.02.7 0 1.05-.04.91-1.37 1.05-1.63.2a1.74 1.74 0 0 1-.08-.48l-.03-1.74c-.02-.54.34-1.06.92-1.02 1.02.08.79 1.26.81 1.99h.01zM17.26 1139.15v-1c0-.21.07-.4.2-.58.4-.54 1.31-.35 1.48.31.06.62.25 2.59-.24 2.96a.83.83 0 0 1-1.37-.33c-.12-.44-.05-.9-.06-1.36zM13.66 1137.29c.64.17.83.38.84.98.02.62.02 1.24.02 1.87.1 1.15-1.49 1.37-1.67.25-.05-.74-.08-1.49-.06-2.23 0-.5.32-.8.87-.87zM14.6 1107.1c-.02.71.19 1.76-.79 1.88-.55.06-.95-.46-.93-1l-.03-1.8c-.06-.53.36-1.05.91-1.02 1.01.1.78 1.2.8 1.93h.04zM17.34 1107.02c.02-.47-.07-.97.1-1.42a.8.8 0 0 1 .8-.46c.5.04.81.48.8.96v1.87c.04.54-.42 1.05-.97.98-.74-.11-.76-.76-.73-1.37v-.56zM17.42 1074.89c.02-.7-.2-1.7.73-1.88.54-.08.99.43.98.96l-.01 1.8c0 .57-.36 1.1-.98 1.03-.96-.11-.7-1.22-.74-1.91h.02zM14.68 1074.9c-.04.7.23 1.78-.75 1.9-.57.07-.99-.42-.95-.97l-.02-1.8c-.04-.51.33-1.02.86-1.02 1.05.06.83 1.14.83 1.89h.03zM20.34 278.73c-1.1-.95-2.59-.35-3.52.52-.25-.14-.2-.36-.22-.55.64-1.33 2.63-2.11 3.73-.89.08.3.18.57.01.92zM15.12 278.24c.06.3.08.57-.03.83-.12.06-.19.01-.25-.05-.91-.95-2.14-1.32-3.36-.66-.14-.07-.12-.18-.11-.27.02-.28.12-.53.3-.73 1.03-.68 2.68-.23 3.45.88z"}),i[0]=a,i[1]=l):(a=i[0],l=i[1]),i[2]!==r||i[3]!==d||i[4]!==u?(c=(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:d,height:u,viewBox:"0 0 32 1184",fill:"currentColor",className:"Tickle-module__tickle--rmq_s","data-animation-state":r,"aria-hidden":!0,children:[a,l]}),i[2]=r,i[3]=d,i[4]=u,i[5]=c):c=i[5],c}try{b.displayName||(b.displayName="CopilotAnimationTickle")}catch{}function z(e){let a,l,c,i=(0,t.c)(6),{scale:s,state:r}=e,o=void 0===s?1:s,d=32*o,u=928*o;return i[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)("path",{d:"m7.52 504.87-.5-1.25c-.5-.3-1.01-.58-1.5-.9-.45-.32-.87-.7-1.24-1.1-.21-.47-.22-.96-.25-1.43-.05-.6-.03-1.2-.04-1.81 0-.34.09-.66.3-.94l.84-1.16c.3-.39.69-.66 1.15-.83.18-.06.35-.13.5-.2.15-.18.16-.4.2-.6a9.08 9.08 0 0 1 3.16-5.31c.1-.1.23-.18.32-.3.07-.09.11-.21.16-.31a10 10 0 0 1 10.03-.47c.28.14.54.3.71.58.08.12.19.22.3.31a10.4 10.4 0 0 1 1.63 1.6c1.69.92 1.8 1.96 2.16 3.7l.3.17c.14.08.3.15.43.25.6.5 1.1 1.08 1.53 1.72.35.57.43 2.06.4 2.75a1.97 1.97 0 0 1-.56 1.41c-.43.42-.84.86-1.32 1.35l-.08.48-.04.37c-.21 1.01 0 .73-.74 1.52a13.32 13.32 0 0 1-4.84 3.36c-4.44 1.8-9.42-.18-13-2.96zm1.92-.56c1.66 1.46 3.83 2.14 5.99 2.42a9.9 9.9 0 0 0 8.59-2.91c.24-.27.4-.56.49-.92.28-1.26.28-2.52.16-3.79-.01-.1 0-.21-.15-.26a5.13 5.13 0 0 1-5.58.74c-.53-.25-1-.62-1.25-1.15-.2.06-.2.24-.25.36-.18.37-.44.66-.78.87a6.34 6.34 0 0 1-4.77.63 4.37 4.37 0 0 1-2.47-1.66c-.06.05-.1.07-.11.1-.2 1.17-.22 2.36-.18 3.54.02.69.09 1.37.3 2.03zM10.67 494a6.73 6.73 0 0 0 .36 3.52c.52 1.42 2.2 1.25 3.43 1.2.81-.04 1.62-.41 1.68-1.33.07-.78-.04-1.57-.08-2.36-.06-.97-.22-1.84-1.32-2.05-.2-.04-.4-.06-.61-.05-.98.08-2.84.24-3.46 1.07zm12.71-.8a2.56 2.56 0 0 0-.87-.42c-.79-.19-1.6-.23-2.4-.17-.65.05-1.2.38-1.16 1.27.05 1.05.12 2.11.2 3.17 0 .18.06.37.13.54.17.46.5.75 1.02.79 1.3.09 3.08-.02 3.33-1.6.18-.88.16-1.74.05-2.61-.05-.3-.06-.63-.3-.97zM7.54 472.88l-.51-1.25c-.5-.3-1.02-.57-1.5-.9-.45-.33-.85-.73-1.22-1.04-.24-.53-.25-1.01-.29-1.49-.04-.6-.02-1.2-.03-1.8 0-.35.09-.66.3-.94.61-.8 1.06-1.75 2.1-2.04.14-.04.27-.1.4-.15.14-.19.14-.4.18-.6a9.1 9.1 0 0 1 3.2-5.36c.1-.08.2-.16.28-.25.07-.1.1-.22.16-.33a10 10 0 0 1 9.96-.5c.33.15.63.32.82.64.06.1.16.2.26.27.6.47 1.15 1.01 1.63 1.58 1.62.86 1.9 2.02 2.17 3.7l.07.07c.96.41 1.54 1.24 2.15 2.03.4.61.48 2.18.43 2.93-.03.47-.17.89-.51 1.23l-1.35 1.42-.28 1.7c-2.03 2.48-4.95 4.39-8.2 4.7-3.7.24-7.31-1.4-10.22-3.62zm1.91-.56a11.04 11.04 0 0 0 5.8 2.39 9.9 9.9 0 0 0 8.82-2.95c.84-.84.71-3.5.62-4.66 0-.1-.01-.21-.17-.25a5.06 5.06 0 0 1-5.64.68 2.17 2.17 0 0 1-1.08-.99c-.03-.04-.09-.07-.15-.12l-.17.35c-.26.64-.86 1.01-1.48 1.26-2.2.88-5.13.64-6.57-1.43-.4.93-.38 4.15.02 5.71zm1.2-10.17c-.1 1.36-.07 3.92 1.52 4.44.25.08.52.14.79.15.51.02 1.04.02 1.55-.02.3-.02.62-.11.9-.22.4-.15.64-.46.72-.88.05-.22.1-.45.08-.68-.06-.89-.14-1.78-.22-2.67a1.42 1.42 0 0 0-1.17-1.28 2.88 2.88 0 0 0-.8-.05c-.52.05-1.04.13-1.55.22-.6.12-1.53.37-1.83.99zm8.34.5.15 2.1c.06.74.31 1.58 1.2 1.63.65.04 1.29.02 1.92-.14.72-.18 1.2-.62 1.37-1.37.25-1.1.18-2.18-.02-3.27-.06-.3-.24-.48-.5-.6-.39-.21-.81-.32-1.25-.36-.64-.04-1.29-.11-1.92 0-1.13.18-.95 1.19-.95 2zM10.6 520.74c1.48-.91 3.01-1.4 4.64-1.6 1.86-.12 3.7.3 5.38 1.1.3.15.58.32.76.62.08.12.2.22.3.31.55.43 1.04.9 1.49 1.43.12.14.27.26.42.36 1.37.79 1.56 2.11 1.83 3.54.78.23 1.25.85 1.78 1.41.53.56.78 1.2.85 1.96.06.77.13 1.53-.07 2.33-.46.71-1.1 1.32-1.76 1.9l-.29 1.74c-2.8 3.38-7.23 5.54-11.6 4.39a17.01 17.01 0 0 1-6.86-3.43l-.48-1.22c-.57-.36-1.2-.6-1.7-1.06l-1.04-.9c-.29-1.06-.27-2.15-.26-3.23 0-.4.1-.74.34-1.05.6-.77 1.03-1.65 2.03-1.94.16-.05.31-.12.5-.2a9.32 9.32 0 0 1 3.36-5.92c.18-.15.34-.31.38-.54zm6.94 9.62c-.26.64-.46 1.01-1.06 1.37a6.4 6.4 0 0 1-4.6.57 4.1 4.1 0 0 1-2.33-1.46c-.06-.08-.1-.2-.28-.19-.25 1.76-.4 3.92.12 5.64 2.15 1.88 5.35 2.64 8.19 2.53 2.55-.23 5.15-1.37 6.75-3.41.42-1.14.54-3.76.18-4.59a5.14 5.14 0 0 1-5.6.79 2.3 2.3 0 0 1-1.23-1.1c-.03-.05-.08-.08-.14-.15zm-3.93.4c.36-.03.82-.02 1.2-.11.91-.19 1.29-.7 1.3-1.63 0-.9-.11-1.78-.2-2.67-.09-1.12-1.06-1.56-2.08-1.42-.92.15-3.3.26-3.31 1.51a7.3 7.3 0 0 0 .44 3.06c.44 1.12 1.56 1.29 2.65 1.26zm9.87-5.34c-.2-.3-.4-.43-.61-.5-.36-.1-.72-.2-1.09-.26a6.45 6.45 0 0 0-2.04 0c-.73.16-.9.79-.85 1.46.04.9.08 1.78.14 2.67.05.73.34 1.54 1.18 1.59 1.26.1 3.04.01 3.35-1.5.27-1.19.2-2.35-.08-3.46zM7.5 440.85l-.49-1.24c-.47-.28-.98-.55-1.45-.89-.46-.32-.87-.72-1.23-1.03-.27-.5-.27-.96-.3-1.42-.04-.66-.02-1.33-.03-2 0-.3.09-.57.26-.81.3-.4.59-.81.9-1.2.29-.4.68-.67 1.15-.83l.54-.2a9.34 9.34 0 0 1 3.31-5.91c.2-.16.41-.3.43-.57a10 10 0 0 1 10.03-.5c.3.14.58.31.76.61.08.12.2.22.3.31.6.47 1.13 1 1.63 1.6 1.69.88 1.76 1.96 2.11 3.67.04.03.05.05.07.05.8.31 1.33.98 1.87 1.62.41.42.6.94.65 1.51.06.89.22 1.7-.04 2.6a9.34 9.34 0 0 1-1.74 1.84c-.06.4-.15.8-.19 1.22-.04.39-.2.7-.47.98a13.63 13.63 0 0 1-5.3 3.65c-4.4 1.65-9.24-.34-12.77-3.06zm1.94-.54a11.25 11.25 0 0 0 6.18 2.42c3.2.44 6.66-.8 8.72-3.31.26-.72.34-1.47.38-2.22.04-.77.05-1.54-.11-2.3 0-.02-.06-.04-.11-.07a5.14 5.14 0 0 1-5.66.7 2.2 2.2 0 0 1-1.1-.99c-.03-.06-.1-.11-.16-.19l-.14.33c-.26.69-.9 1.09-1.56 1.33-2.11.81-4.96.64-6.39-1.3-.03-.05-.1-.07-.14-.1-.03.05-.07.08-.08.12-.2 1.45-.23 2.9-.1 4.36.04.41.1.83.27 1.22zm1.2-10.33c-.03.19-.1.43-.1.67-.02.98.1 1.96.48 2.87.32.84 1.17 1.17 2.02 1.2.68.04 1.38.03 2.04-.15.66-.18 1-.61 1.04-1.3.02-.15.02-.3.02-.44l-.17-2.43c-.06-.65-.43-1.27-1.1-1.42a2.35 2.35 0 0 0-.68-.08c-.81.04-1.61.15-2.4.38a2.1 2.1 0 0 0-1.15.7zm8.33 1.09h.01c.01.8.04 1.62.24 2.4.15.57.56.88 1.14.9 1.38.05 3.02-.05 3.26-1.72.2-1 .11-1.99-.03-2.98a.9.9 0 0 0-.49-.68c-.35-.2-.73-.3-1.12-.34-.74-.06-1.5-.18-2.24 0-.62.14-.87.7-.83 1.3l.06 1.12zM25.36 558.52c1 .25 1.5 1.04 2.11 1.74a2 2 0 0 1 .5 1.06c.16.98.24 2 .02 2.97a9.82 9.82 0 0 1-1.8 1.86l-.3 1.74c-5.46 6.2-12.26 5.74-18.47.92l-.44-1.26c-.47-.27-.97-.53-1.42-.86-.46-.32-.86-.72-1.3-1.09-.05-.18-.11-.36-.14-.54-.13-.93-.14-1.87-.12-2.8 0-.35.1-.66.3-.94.6-.74 1.05-1.67 2.04-1.95l.45-.17c.16-.18.15-.4.2-.6a9 9 0 0 1 3.2-5.29c.2-.17.4-.35.46-.6a10.9 10.9 0 0 1 4.6-1.58c1.86-.12 3.72.31 5.38 1.12.3.15.58.32.76.62.08.14.23.24.36.35.52.42 1 .88 1.43 1.39.13.16.29.3.46.41 1.34.87 1.42 2.07 1.72 3.5zm-7.92 3.75c-.28.67-.46 1.06-1.1 1.43a6.4 6.4 0 0 1-4.3.61c-1.09-.2-1.99-.7-2.66-1.59-.05-.07-.11-.11-.22-.05-.22 1.86-.34 3.72.11 5.53 1.44 1.37 3.47 2.08 5.38 2.41 2.47.5 5.05.1 7.24-1.16a7.58 7.58 0 0 0 2.4-2.05c.43-1.4.41-2.89.28-4.34 0-.1 0-.2-.18-.24-.42.42-.92.75-1.5.94-1.7.63-4.6.38-5.45-1.49zm-4.02.49v-.05c.44.02.88-.03 1.3-.1.99-.17 1.31-.94 1.26-1.86-.04-.77-.1-1.54-.15-2.3-.05-.64-.37-1.26-1-1.45-.87-.25-1.79-.01-2.66.12-.4.07-.75.22-1.12.38a1 1 0 0 0-.64.97 7.24 7.24 0 0 0 .46 3c.43 1.15 1.5 1.19 2.55 1.29zm5.35-4.21.13 2.21c.06.76.35 1.57 1.23 1.61.63.06 1.25.03 1.86-.1a1.8 1.8 0 0 0 1.52-1.53 8.3 8.3 0 0 0-.03-3.1.8.8 0 0 0-.48-.6 6.08 6.08 0 0 0-2.86-.46c-.72.02-1.34.36-1.37 1.14v.83zM6.86 399.19a9.32 9.32 0 0 1 3.23-5.8c.13-.11.27-.21.38-.34.07-.08.11-.2.18-.33a10 10 0 0 1 10.04-.44c.27.13.5.28.67.54.1.15.24.28.39.4.5.4.97.84 1.38 1.34.14.16.3.29.48.4 1.36.8 1.5 2.13 1.78 3.55.91.25 1.43.98 2 1.65.4.4.57.9.62 1.46.06.9.24 1.75-.04 2.66a9.27 9.27 0 0 1-1.77 1.85c-.13.6-.13 1.2-.34 1.8-2.11 2.43-5.05 4.27-8.32 4.56-3.68.17-7.23-1.46-10.09-3.68l-.47-1.27c-.2-.1-.4-.23-.6-.32-.74-.36-1.34-.91-1.94-1.46a.96.96 0 0 1-.3-.6 15.68 15.68 0 0 1-.13-3.05c.01-.23.08-.45.22-.64l.88-1.21c.32-.43.74-.72 1.26-.88l.49-.19zm2.44 3.36c-.05.09-.1.13-.11.19-.2 1.85-.35 3.67.15 5.5a11.09 11.09 0 0 0 5.88 2.43c3.35.5 6.95-.61 9.1-3.29.42-1.44.45-2.9.28-4.39 0-.07-.05-.14-.1-.25l-.36.31c-1.35 1.1-3.26 1.2-4.86.67-.7-.23-1.34-.6-1.68-1.3-.02-.03-.07-.04-.12-.06l-.1.15c-.23.68-.73 1.1-1.37 1.36a6.5 6.5 0 0 1-4.03.39 4.2 4.2 0 0 1-2.68-1.71zm1.22-4.5c-.1 1.05-.06 2.2.34 3.26.27.8.85 1.19 1.66 1.32a7 7 0 0 0 2.18-.04c.22-.03.44-.12.64-.22.36-.17.56-.49.64-.87.03-.25.08-.5.07-.75a53.1 53.1 0 0 0-.2-2.49c-.08-1.01-.9-1.46-1.85-1.39-.76.02-1.5.16-2.22.35-.26.07-.5.19-.75.3a.96.96 0 0 0-.51.54zm12.95-.62c-.18-.3-.4-.44-.63-.54a7.27 7.27 0 0 0-3-.3c-.42.08-.74.27-.96.72-.02.2-.07.47-.06.74.01.68.05 1.37.1 2.05.08 1.03.11 2.2 1.4 2.25 1.2.07 2.85-.03 3.18-1.43.3-1.15.22-2.37-.03-3.49zM25.87 375.9c-2.24 2.53-5.18 4.28-8.54 4.58-3.65.08-7.1-1.5-9.95-3.73l-.42-1.22c-.48-.3-1-.58-1.47-.9a8.78 8.78 0 0 1-1.28-1.15c-.23-1.02-.22-2.1-.21-3.14 0-.44.1-.82.38-1.16.58-.74 1.04-1.61 2.02-1.86.14-.03.27-.1.44-.17.53-2.43 1.38-4.26 3.36-5.86.19-.16.4-.3.43-.57 3.21-2 6.85-2.1 10.19-.38.2.1.4.23.5.44.1.19.27.31.44.44.5.4.97.85 1.39 1.34.13.16.29.3.46.42 1.34.87 1.4 2.06 1.72 3.48.06.05.08.1.12.1.93.25 1.45 1.07 2.05 1.75.27.29.41.63.47 1 .16 1 .24 2 .03 3a9.22 9.22 0 0 1-1.84 1.88l-.29 1.72zm-16.65.26c1.86 1.63 4.16 2.31 6.54 2.55 2.94.3 6.07-.75 8.14-2.88.25-.26.43-.55.5-.91.27-1.36.3-2.73.1-4.1 0-.03-.05-.05-.09-.09-.05.03-.1.05-.15.1-1.5 1.4-3.83 1.46-5.62.63-.5-.22-.92-.56-1.15-1.08l-.12-.2-.2.4c-.26.71-.94 1.1-1.62 1.34-2.05.76-4.76.58-6.2-1.24-.04-.05-.11-.08-.22-.15-.28 1.92-.36 3.78.1 5.63zm6.65-8.1h.01c-.03-.64-.06-1.28-.15-1.92a1.44 1.44 0 0 0-1.22-1.31 2.75 2.75 0 0 0-.8-.04c-.56.07-1.12.15-1.67.25-.39.07-.76.22-1.11.4-.37.19-.57.47-.56.9 0 1.03 0 2.09.43 3.05.25.58.68.94 1.28 1.1.64.17 1.32.12 1.98.1.85-.05 1.76-.36 1.8-1.34.04-.4.01-.79.01-1.18zm2.88-2.8c-.01.21-.04.44-.04.66l.08 2.37c.04.43.08.88.25 1.28.16.37.43.6.83.68.81.17 1.62.08 2.4-.15.76-.21 1.1-.85 1.22-1.59.14-.7.15-1.4.06-2.1-.05-.4-.05-.8-.26-1.17-.66-.75-2.36-.76-3.31-.73-.5.02-.93.2-1.23.75zM10.54 585l.13-.3c1.37-.88 2.9-1.35 4.51-1.57 1.9-.14 3.8.3 5.5 1.14.29.14.54.3.7.59.09.14.23.24.36.35.55.44 1.06.93 1.51 1.48.13.16.29.3.45.42 1.23.88 1.24 2.04 1.59 3.36.07.06.1.1.13.11.98.24 1.5 1.08 2.11 1.78.27.29.4.63.46 1 .15 1 .22 2.04 0 3.03a9.77 9.77 0 0 1-1.88 1.89l-.27 1.66a13.2 13.2 0 0 1-8.62 4.55c-3.63.06-7.14-1.52-9.92-3.79l-.35-1.2a9.6 9.6 0 0 1-2.75-2.08c-.02-.1-.06-.2-.07-.3-.1-.96-.15-1.92-.12-2.88 0-.4.1-.77.36-1.1.62-.76 1-1.57 2.03-1.85.14-.04.27-.1.44-.16l.15-.53a9.24 9.24 0 0 1 3.55-5.6zm-1.35 15.18c2.29 1.95 5.22 2.66 8.16 2.57a9.7 9.7 0 0 0 6.83-3.28c.25-.77.32-.98.38-2.4.04-.75-.07-1.5-.11-2.25 0-.03-.05-.05-.1-.1l-.33.27c-.39.35-.84.6-1.35.75a5.6 5.6 0 0 1-4.19-.27c-.5-.23-.91-.58-1.13-1.1l-.12-.2-.18.4c-.2.48-.54.83-1 1.07-1.35.7-2.87.86-4.36.53a4.18 4.18 0 0 1-2.37-1.4c-.06-.07-.1-.18-.23-.17-.39 1.23-.34 4.2.1 5.58zm6.57-8.05c-.03-.7-.06-1.26-.14-1.93-.1-1.1-1.03-1.53-2.04-1.4-.94.13-1.93.17-2.77.65-.35.18-.54.46-.54.85a7.04 7.04 0 0 0 .43 3.13c.28.67.9 1.03 1.6 1.13.77.09 1.54.1 2.3-.07 1.27-.28 1.18-1.33 1.16-2.36zm2.86-1.06h.04c0 .7-.03 1.42.11 2.12.14.76.65 1.12 1.4 1.16 1.23.04 2.87-.07 3.17-1.54.23-.96.19-1.94.08-2.91-.06-.7-.52-.97-1.14-1.14-.78-.19-2.28-.4-3.01-.08-.37.15-.62.42-.66.84-.06.52-.01 1.03.01 1.55zM25.32 334.58c1.08.24 1.58 1.07 2.23 1.81.23.26.37.56.42.9.16 1 .25 2.07.04 3.07-.46.65-.9 1.1-1.92 1.97l-.25 1.55c-2.17 2.53-5.45 4.42-8.82 4.55-3.57.04-6.99-1.56-9.73-3.77l-.35-1.18c-.5-.3-1-.59-1.48-.92a8.92 8.92 0 0 1-1.24-1.12c-.04-.12-.08-.22-.09-.32a21.4 21.4 0 0 1-.12-2.93c.01-.41.11-.77.38-1.1.64-.79.98-1.52 2.04-1.83.14-.04.27-.1.42-.16l.24-.9a9.11 9.11 0 0 1 3.44-5.2l.15-.32c1.4-.87 2.9-1.34 4.49-1.55 1.91-.15 3.84.3 5.55 1.15.27.14.5.3.66.56.08.13.22.25.35.35.53.43 1.03.9 1.47 1.43.13.16.3.3.46.42 1.35.97 1.22 2.1 1.66 3.54zm-.96 4.05c-.12.09-.22.15-.31.24-1.45 1.31-3.9 1.32-5.6.51a2.18 2.18 0 0 1-1.1-1.05c-.04-.07-.06-.19-.17-.2-.14.28-.26.55-.43.78-.92 1.24-3.58 1.53-5 1.18a4.14 4.14 0 0 1-2.52-1.5c-.05-.06-.1-.11-.2-.06-.35 1.59-.29 4.59.15 5.6 2.29 2 5.73 2.8 8.72 2.51 2.38-.33 4.75-1.34 6.3-3.23.34-1.13.38-2.3.33-3.46-.02-.43.02-.87-.17-1.32zm-8.62-2.47h.02l-.16-2.05c-.07-.65-.49-1.25-1.17-1.36a2.3 2.3 0 0 0-.62-.05c-1.04.14-2.14.14-3.08.68a.85.85 0 0 0-.47.75c-.03 1.57-.05 4.05 1.95 4.32.76.1 1.54.11 2.3-.05.82-.18 1.19-.63 1.23-1.49v-.75zm2.85-1.08h.05c-.01.72-.04 1.46.14 2.17.14.52.47.89 1.03.96 1.06.11 2.78.15 3.32-.98.48-1.12.4-2.38.23-3.56-.06-.38-.25-.66-.62-.8-.25-.09-.5-.2-.77-.24-.47-.08-.94-.11-1.42-.18-.3-.04-.58-.02-.87.02-1.47.2-1.12 1.51-1.1 2.61zM25.33 302.6l.38.14c.36.13.67.33.93.61l1.05 1.24c.17.2.24.44.28.68a9 9 0 0 1 .03 3.24 8.57 8.57 0 0 1-1.96 1.89l-.27 1.59c-2.78 2.91-6.9 5.04-11 4.2a16.39 16.39 0 0 1-7.59-3.64l-.25-1.1c-.15-.19-.4-.28-.61-.39-.8-.4-1.43-1-2.05-1.62-.04-.04-.07-.1-.13-.2-.1-1.22-.2-2.48-.05-3.77.37-.55.75-1.09 1.2-1.58.26-.28.58-.48.94-.6l.6-.22c.05-.13.1-.27.13-.4a9.31 9.31 0 0 1 3.59-5.7l.15-.32a10.07 10.07 0 0 1 9.96-.4c.3.14.6.3.75.63.06.12.2.2.3.3a9.4 9.4 0 0 1 1.53 1.48c.12.16.29.29.45.42a3.64 3.64 0 0 1 1.3 2.41c.05.38.18.73.34 1.11zm-8.27 3.36c-.08.07-.13.1-.14.13-.24.8-.84 1.25-1.6 1.55a6.17 6.17 0 0 1-5.19-.23 3.7 3.7 0 0 1-.99-.85c-.06-.07-.1-.19-.25-.12-.2 1.46-.3 2.94-.1 4.4.04.42.1.83.3 1.25 1.2.97 2.6 1.7 4.12 2.07 1.64.42 3.3.64 5 .35 2.2-.38 4.42-1.33 5.88-3.06.45-1.08.52-4.04.15-4.91-.12.09-.24.17-.34.27-.4.37-.88.6-1.4.77-1.66.56-4.75.27-5.44-1.62zm-6.9-4.22c-.08.57-.06 1.2-.03 1.81.03.5.15.99.32 1.46.5 1.5 2.1 1.4 3.4 1.33.3-.02.58-.1.85-.19.43-.15.7-.46.78-.9.07-.32.1-.66.1-.99-.02-.68-.07-1.37-.11-2.05-.04-.76-.4-1.48-1.22-1.58a3.1 3.1 0 0 0-.74-.04c-.52.04-1.04.11-1.55.2-.6.1-1.51.34-1.8.95zm13.24 1.25-.15-1.43a.84.84 0 0 0-.49-.68c-.98-.5-2.2-.57-3.29-.49-.64.06-1.1.6-1.09 1.22.02 1.02.02 2.04.13 3.06.02.22.08.45.16.66.17.44.5.72.97.78.7.09 1.41.08 2.11-.07 1.5-.28 1.6-1.8 1.65-3.05zM26 630.43l-.25 1.57c-3.2 3.39-8.04 5.39-12.6 3.82-2.2-.7-4.27-1.76-6-3.3l-.23-1.08c-.17-.22-.43-.3-.67-.43a8.9 8.9 0 0 1-2.05-1.66c-.17-.85-.21-2.95-.08-3.93.33-.54.73-1.07 1.18-1.56.26-.28.58-.48.94-.6l.6-.2c.04-.15.1-.28.13-.42a9.31 9.31 0 0 1 3.59-5.66l.13-.3c1.35-.89 2.9-1.34 4.5-1.55 1.92-.16 3.84.31 5.56 1.16.26.13.5.28.65.56.06.12.18.22.3.3.6.49 1.16 1 1.63 1.63.08.1.17.19.26.26a3.42 3.42 0 0 1 1.3 2.27c.08.46.25.88.42 1.28l.08.05c1.04.24 1.6 1.12 2.24 1.89.22.24.32.53.36.85a9.9 9.9 0 0 1 .02 3.17 8.34 8.34 0 0 1-2 1.88zm-1.94 1.04c.42-1.4.5-3.95.14-4.95-.45.37-.87.77-1.44.96-1.38.5-2.77.49-4.15-.02-.75-.27-1.36-.71-1.64-1.5 0-.02-.03-.03-.05-.05-.03.05-.07.1-.09.16-.4 1.39-2 1.8-3.28 1.96-.33.03-.66.07-.99.04-.4-.02-.78-.1-1.17-.17-1-.15-1.8-.73-2.44-1.47-.18.07-.16.21-.17.33-.2 1.74-.28 3.48.16 5.18 1.84 1.75 4.35 2.43 6.81 2.67 3.04.22 6.23-.85 8.3-3.14zm-13.92-9.91c-.03.2-.09.43-.1.65-.02.35-.02.7 0 1.06.1 1.2.34 2.7 1.73 2.98a5.8 5.8 0 0 0 2.23.05c1.07-.16 1.46-.63 1.49-1.72 0-.35 0-.7-.02-1.06-.12-1.25.14-2.78-1.52-2.94a2.8 2.8 0 0 0-.56 0c-1.16.16-2.3.11-3.25.98zm12.95-.36a2.28 2.28 0 0 0-1.36-.67 6.25 6.25 0 0 0-2.65-.04c-.7.23-.82.86-.78 1.52.02.8.05 1.58.09 2.37 0 .23.05.45.1.67.18.71.54 1.04 1.26 1.08.56.03 1.12 0 1.68-.03.18 0 .37-.07.54-.13.93-.3 1.11-1.03 1.27-1.9.13-.79.04-1.58-.03-2.36-.01-.19-.09-.36-.12-.5zM6.87 271a9.58 9.58 0 0 1 3.68-6.02l.16-.32c1.37-.9 2.95-1.34 4.57-1.54 2.05-.15 4.18.39 5.94 1.45.14.31.4.53.69.75.47.38.9.8 1.28 1.27.12.15.26.28.4.4a3.27 3.27 0 0 1 1.2 1.99c.1.57.3 1.12.52 1.63l.07.06c1.07.25 1.6 1.09 2.25 1.88.21.24.33.52.37.84.13 1.06.2 2.16 0 3.22a8.5 8.5 0 0 1-2.05 1.9l-.23 1.49c-2.63 2.63-6.27 4.58-10.08 4.23a16.13 16.13 0 0 1-8.53-3.77l-.24-1.14a8.43 8.43 0 0 1-2.73-2.1 28.2 28.2 0 0 1-.03-3.84c.31-.48.66-.92 1.02-1.36.35-.43.8-.72 1.33-.88.12-.03.23-.08.4-.14zm1.94 3.2c-.39 2.19-.32 4.5.14 5.73 1.76 1.56 4.09 2.29 6.38 2.54 3.13.34 6.59-.7 8.71-3.1.44-1.57.4-3.18.2-4.79 0-.07.01-.17-.14-.2-.37.32-.75.7-1.23.88a5.88 5.88 0 0 1-4.79-.15c-.5-.23-.9-.59-1.12-1.12-.04-.1-.09-.18-.16-.31l-.13.33c-.27.83-1 1.25-1.78 1.51a6.47 6.47 0 0 1-3.81.16 4.25 4.25 0 0 1-2.27-1.48zm1.22-4.67c-.18 1.11-.1 2.29.28 3.36.5 1.54 2.59 1.43 3.88 1.18.82-.16 1.19-.77 1.19-1.6l-.07-2.24c-.04-1.4-.7-1.93-2.08-1.81-.88.1-1.78.19-2.6.57-.23.1-.43.24-.6.54zm8.23-.5c-.01.14-.05.28-.04.42.01.96.03 1.92.06 2.87.05.69.29 1.44 1.04 1.6.14.04.29.07.43.08.5 0 1 .02 1.5-.03 1.09-.1 1.64-.6 1.86-1.68a6.87 6.87 0 0 0-.1-3.21c-.73-.8-2.43-.86-3.44-.85-.56.01-1 .21-1.3.8zM21.25 232.56c.13.3.37.52.63.73.65.52 1.18 1.17 1.8 1.73.5.44.81 1 .95 1.65.15.7.46 1.33.67 2l.18.09c1.03.23 1.6 1.16 2.22 1.92.15.18.26.38.28.62.13 1.11.23 2.23.02 3.4a7.78 7.78 0 0 1-2.08 1.88c-.22.46-.1.98-.34 1.46-2.53 2.46-6.04 4.22-9.64 4.07a15.8 15.8 0 0 1-8.9-3.76c-.13-.32-.13-.68-.2-1.06-.47-.3-.98-.6-1.44-.94a8.92 8.92 0 0 1-1.22-1.12c-.1-.6-.12-2.8-.05-3.95.36-.56.79-1.12 1.28-1.62.24-.24.52-.42.85-.52l.6-.21c.66-2.63 1.54-4.28 3.71-5.98l.19-.34a11.11 11.11 0 0 1 5.05-1.56c1.92.03 3.77.54 5.44 1.5zm-4.69 8.72c-.22 1.06-.87 1.58-1.72 1.87a6.49 6.49 0 0 1-3.74.28 4.16 4.16 0 0 1-2.12-1.13c-.08-.08-.14-.21-.3-.2-.39 1.3-.36 4.5.12 5.62 1.97 1.8 4.69 2.5 7.3 2.63 2.82.1 5.87-.94 7.83-3 .4-1.72.44-4.25.08-5.24a3.9 3.9 0 0 1-1.79 1.09c-1.5.44-3.03.29-4.43-.4a2 2 0 0 1-1.05-1.1l-.18-.42zm-6.62-4.18c-.3 1-.17 2.66.2 3.58.57 1.42 2.13 1.2 3.38 1.17.27-.01.53-.1.78-.19.4-.14.65-.44.77-.84.04-.14.06-.29.07-.43.07-.98 0-1.96-.06-2.93a1.42 1.42 0 0 0-1.42-1.32 8.58 8.58 0 0 0-2.76.4c-.37.1-.67.34-.96.56zm8.1-.22c-.01.1-.03.23-.03.35 0 .86 0 1.7.03 2.56.05.94.28 1.8 1.35 1.94.64.1 1.29.09 1.92-.01.84-.13 1.41-.59 1.6-1.45.26-.98.21-1.98.08-2.97a.9.9 0 0 0-.52-.73 4.5 4.5 0 0 0-.82-.3 9.34 9.34 0 0 0-2.22-.27c-.65 0-1.12.26-1.4.88zM28 660.74a8.08 8.08 0 0 1-2.14 1.88l-.22 1.34a13.95 13.95 0 0 1-8.87 4.16c-3.55.06-7.08-1.56-9.77-3.8l-.19-1.05c-.97-.61-1.94-1.2-2.68-2.13a62.52 62.52 0 0 1-.01-3.86c.37-.56.78-1.09 1.23-1.57.26-.28.58-.48.95-.6l.55-.18c.74-2.7 1.48-4.22 3.72-5.98l.19-.35c1-.58 2.05-1.04 3.19-1.27.61-.11 1.23-.2 1.85-.27 1.93.05 3.47.38 5.44 1.5.14.27.36.51.63.72.46.35.87.77 1.26 1.21.13.16.29.3.44.43.52.46.89 1.01 1.03 1.68.15.72.5 1.36.69 2.08.14.06.27.12.41.16.41.12.75.36 1.03.67l1 1.2c.15.19.24.4.26.63.12 1.14.22 2.26 0 3.4zm-19.26 2.93c2.59 2.37 7.17 3.24 10.5 2.3 1.33-.36 2.59-.9 3.7-1.74.36-.28.73-.56.98-.92.4-1.58.44-4.24.08-5.21l-.33.28c-1.48 1.3-3.74 1.28-5.5.6-.75-.29-1.33-.75-1.57-1.57l-.06-.07c-.23.7-.47 1.15-1.12 1.52-1.3.67-2.75.84-4.19.58a4.06 4.06 0 0 1-2.33-1.22c-.06-.07-.12-.17-.29-.11-.27 1.84-.37 3.7.13 5.56zm6.39-8.6h.02l-.12-1.68a1.4 1.4 0 0 0-1.39-1.26c-.96 0-1.9.13-2.82.42-.54.2-1.03.44-1.03 1.1 0 .57 0 1.15.03 1.73.02.42.13.82.28 1.22a1.7 1.7 0 0 0 1.28 1.15c.92.2 1.86.19 2.77-.05 1.16-.36.97-1.67.98-2.63zm2.88-2.22c-.01.2-.04.38-.04.57l.05 2.55c.07.89.36 1.67 1.34 1.74.62.06 1.25.02 1.87 0 .18 0 .37-.07.54-.14.86-.29 1.05-1 1.22-1.8.15-.81.09-1.62-.01-2.43a.92.92 0 0 0-.5-.74 3.86 3.86 0 0 0-.8-.33 9.07 9.07 0 0 0-2.28-.27c-.62 0-1.09.23-1.39.85zM25.33 206.74c.1.04.22.1.34.13.43.13.8.36 1.08.7.35.4.67.8 1 1.2.14.17.22.36.24.57.1 1.14.19 2.28 0 3.47a8.27 8.27 0 0 1-2.2 1.9c-.1.45-.15.74-.22 1.24-3.16 2.75-7.49 4.65-11.71 3.62a16.54 16.54 0 0 1-6.96-3.48l-.18-.96a7.95 7.95 0 0 1-1.92-1.36c-.21-.23-.44-.44-.68-.67v-3.89a9.6 9.6 0 0 1 1.32-1.65c.23-.22.5-.39.8-.48l.61-.22c.6-2.33 1.48-4.12 3.4-5.65.23-.19.45-.37.53-.64a10.04 10.04 0 0 1 10.5-.01c.1.3.34.48.58.68.24.2.46.42.7.63.9.83 1.66 1.27 1.96 2.57.2.79.52 1.52.8 2.3zm-9.01 2.17c-.25.93-.77 1.37-1.64 1.71-1.9.71-4.33.73-5.88-.75-.07-.07-.15-.12-.24-.18-.4 1.55-.4 4.64.11 5.79 2.05 1.83 5.13 2.55 7.82 2.59 2.46-.06 5.7-1.05 7.36-2.93.39-1.74.37-3.53.12-5.28 0-.05-.07-.09-.11-.15-.44.4-.85.76-1.4.95a6.33 6.33 0 0 1-4.86-.29 1.99 1.99 0 0 1-1.11-1.2c-.03-.1-.02-.22-.17-.26zm-1.33-2.5h-.04l-.07-1.2c-.07-1.03-.56-1.49-1.6-1.49-.79 0-1.57.14-2.33.36-.26.07-.5.19-.75.3a.94.94 0 0 0-.55.91v1.56c.02.44.13.86.27 1.28.24.73.76 1.12 1.5 1.24.73.11 1.46.08 2.18-.04.81-.13 1.2-.6 1.29-1.31.06-.54.07-1.08.1-1.62zm2.78-.32h.01c-.01.64 0 1.3.11 1.93.12.68.51 1.12 1.21 1.26.12.02.24.06.37.06.5.01 1 .02 1.5 0 .72-.06 1.45-.42 1.68-1.17.15-.45.25-.92.25-1.4l-.03-1.5c0-.7-.4-1.03-1.01-1.24-.9-.3-1.82-.42-2.76-.4-.79-.03-1.36.66-1.33 1.28.02.4 0 .79 0 1.18zM6.85 695.98l-.16-.84c-.44-.3-.92-.58-1.36-.93-.42-.33-.8-.73-1.16-1.06-.08-.6-.1-2.74-.03-3.98a9.2 9.2 0 0 1 1.34-1.66c.22-.22.5-.37.8-.47l.54-.18c.06-.16.12-.31.16-.47.18-.69.42-1.35.73-2 .03-.05.06-.1.07-.16.2-.71.63-1.25 1.14-1.76.49-.49.97-.97 1.5-1.41.15-.13.27-.3.48-.56 3.38-1.95 6.9-1.86 10.34 0l.2.35c.44.4.85.79 1.27 1.16.1.1.23.18.35.26.73.51 1.2 1.2 1.42 2.06.07.3.17.6.28.9l.56 1.52c.05.03.1.08.16.09 1.07.2 1.62 1.18 2.27 1.94.15.19.23.4.25.63.07 1.15.18 2.3-.02 3.45a8.5 8.5 0 0 1-2.25 1.92l-.2 1.1a14.53 14.53 0 0 1-9.3 3.84 15.41 15.41 0 0 1-9.38-3.74zm1.72-.67c1.56 1.42 3.58 2.08 5.62 2.42a11.81 11.81 0 0 0 9.05-2.11c.2-.17.43-.33.56-.58.32-1.24.35-2.5.27-3.78-.03-.57-.01-1.15-.24-1.75a4 4 0 0 1-1.9 1.1c-1.48.36-3 .2-4.38-.42-.58-.26-1-.68-1.18-1.3-.02-.07-.01-.18-.17-.14-.23.89-.79 1.33-1.62 1.64-1.8.68-4.07.74-5.64-.53l-.4-.34c-.22.38-.2.79-.24 1.16-.14 1.54-.16 3.08.27 4.63zm1.06-10.54c-.11 1-.15 2.22.23 3.22.22.62.66 1 1.3 1.13.85.19 1.7.15 2.53-.05.91-.2 1.13-1 1.16-1.84 0-.69-.01-1.37-.03-2.06-.02-1.05-.5-1.65-1.58-1.64a7.89 7.89 0 0 0-3.08.67c-.21.1-.39.25-.53.57zm8.04 1.26h.04c0 .62-.01 1.26.1 1.87.14.66.57 1.06 1.22 1.18.72.13 1.46.14 2.18.02.78-.1 1.3-.64 1.47-1.42a7.2 7.2 0 0 0 .07-2.91.79.79 0 0 0-.4-.6c-.3-.16-.6-.31-.92-.4a10.4 10.4 0 0 0-2.28-.33c-.73 0-1.39.38-1.43 1.16-.05.47-.04.95-.05 1.43zM10.65 168.85l.14-.3c1.54-.95 3.26-1.4 5.04-1.53 1.91 0 3.76.55 5.44 1.52l.18.34c.37.32.78.66 1.26.93a3.16 3.16 0 0 1 1.68 2.21c.09.45.24.88.41 1.3.2.5.35.98.54 1.48l.47.17c.36.12.68.33.93.61l1.04 1.25c.13.17.2.36.21.57.07 1.15.14 2.3 0 3.48-.62.81-1.48 1.42-2.33 2.02l-.17.8c-3.31 2.84-7.96 4.43-12.27 3.3a16.66 16.66 0 0 1-6.34-3.13c-.03-.02-.05-.06-.1-.12l-.12-.66c-.44-.3-.9-.58-1.32-.91-.43-.34-.8-.73-1.21-1.11-.06-1.32-.03-2.63 0-3.92.4-.57.8-1.1 1.26-1.58.25-.25.55-.44.9-.56l.53-.18c.16-.5.3-1 .48-1.5.18-.46.34-.93.44-1.42.19-.86.7-1.51 1.44-1.95.53-.32.98-.7 1.47-1.11zm13.08 14.03c.04-.2.11-.42.14-.65.2-1.63.24-3.28-.03-4.91-.01-.07-.07-.13-.13-.22-.56.46-1.1.87-1.81 1-1.5.35-3.12.23-4.52-.44-.66-.3-1-.8-1.2-1.5-.14.06-.13.2-.17.32-.24.79-.95 1.2-1.68 1.44-1.15.4-2.31.5-3.51.3-.8-.12-1.52-.4-2.13-.96-.07-.07-.15-.14-.29-.06-.33 1.93-.4 3.87.08 5.82.18.15.34.32.53.44a13.15 13.15 0 0 0 9.93 1.77c1.67-.4 3.57-1.09 4.79-2.35zm-8.99-9.2h-.02c-.02-.98.2-2.27-1.05-2.54a1.77 1.77 0 0 0-.43-.05c-.9.03-1.78.18-2.63.46-.6.23-1.1.45-1.1 1.17 0 .57-.02 1.13.02 1.69.02.34.12.69.22 1.03.38 1.55 2.48 1.4 3.7 1.13 1.43-.33 1.3-1.72 1.29-2.89zm2.88-1.78c-.08 1.04-.07 2.1.02 3.16.08.84.56 1.38 1.4 1.53.6.11 1.22.17 1.85.08 1.06-.15 1.5-.55 1.73-1.58.2-.82.15-1.65.1-2.48a1.07 1.07 0 0 0-.64-.93A7.95 7.95 0 0 0 19 171c-.61-.02-1.1.22-1.38.9zM6.79 727.76l-.18-.75c-.56-.35-1.15-.67-1.63-1.14l-.86-.85c-.06-1.3-.03-2.58 0-3.87.4-.58.82-1.12 1.3-1.61.24-.24.52-.41.84-.52l.54-.2c.16-.48.3-.95.47-1.42.16-.43.3-.86.37-1.32.18-1.1.82-1.9 1.8-2.4.44-.22.82-.5 1.2-.83l.16-.3c1.52-.96 3.25-1.4 5.03-1.53 1.91 0 3.77.55 5.44 1.52.2.46.6.74 1.04.98a3.43 3.43 0 0 1 2.06 2.5c.06.35.18.68.31 1l.67 1.78c.08.03.17.08.27.1 1 .26 1.53 1.18 2.15 1.92.12.15.2.32.21.51.08 1.19.12 2.37.02 3.57a8.13 8.13 0 0 1-2.36 1.96l-.18.82a16 16 0 0 1-6.02 3.13c-4.42 1.26-9.12-.3-12.66-3.05zm1.68-.8c.56.51 1.29.96 2 1.26a13.46 13.46 0 0 0 11.37-.13c.67-.33 1.32-.7 1.83-1.24.44-1.62.44-4.81 0-5.91-.66.58-1.25.96-2.14 1.07-1.4.27-2.8.13-4.1-.44a1.98 1.98 0 0 1-1.22-1.33c-.03-.09-.04-.2-.16-.22-.32.96-.67 1.32-1.6 1.69-1.2.43-2.44.55-3.7.35a3.9 3.9 0 0 1-2.17-1c-.03-.04-.1-.04-.16-.05-.38 1.09-.46 4.5.05 5.94zm9.05-9.67c0 .67-.04 1.34.13 1.99.1.45.38.78.8.97.2.08.39.17.6.2 1.18.16 2.95.35 3.4-1.09a6.4 6.4 0 0 0 .19-2.96c-.06-.36-.23-.6-.54-.79-.38-.22-.8-.36-1.22-.45-.73-.14-1.48-.31-2.23-.25a1.2 1.2 0 0 0-1.12 1.2c-.02.4 0 .79 0 1.18zm-2.84.31c-.02-.57-.02-1-.06-1.44-.07-.93-.81-1.25-1.65-1.18-.7.02-1.37.16-2.03.33-.32.09-.62.24-.92.38a.87.87 0 0 0-.53.79c-.12.95-.09 1.91.2 2.84.45 1.52 2.38 1.34 3.62 1.1 1.47-.31 1.33-1.55 1.37-2.82zM25.56 758.92l-.13.6c-3.12 2.3-7.08 3.73-10.99 3.21a16.7 16.7 0 0 1-7.7-3.22c-.06-.17-.1-.35-.16-.5-.9-.63-1.77-1.19-2.47-2.06-.08-1.26-.02-2.53.02-3.83.4-.58.84-1.17 1.37-1.67.2-.2.46-.35.74-.45l.53-.2c.15-.45.28-.88.44-1.31.17-.4.3-.82.3-1.27.08-1.2.73-2.27 1.79-2.83.41-.24.87-.4 1.38-.62l.15-.25c3.42-1.98 6.98-1.92 10.4-.03l.21.37c1.52.51 2.7 1.42 2.92 3.1.05.33.15.63.28.94.25.63.46 1.25.7 1.88.16.07.31.14.47.19.36.12.68.32.93.61l1.07 1.3c.12.15.17.33.18.52.06 1.17.08 2.33.01 3.5a8.3 8.3 0 0 1-2.44 2.02zm-9.55-7.42-.07.03a.45.45 0 0 0-.05.11 1.99 1.99 0 0 1-1.14 1.33 6.88 6.88 0 0 1-4.26.5 3.61 3.61 0 0 1-1.82-.78c-.07-.06-.16-.1-.25-.15-.48 1.25-.53 4.9.03 6.13 1.87 1.56 4.59 2.14 7 2.3 1.81.12 3.56-.21 5.27-.79a7.82 7.82 0 0 0 2.94-1.67c.44-1.9.34-3.88.06-5.8-.01-.1-.03-.2-.2-.23a3.4 3.4 0 0 1-1.54.87 7.9 7.9 0 0 1-3.1.15c-1.1-.23-2.48-.6-2.78-1.86-.02-.05-.07-.1-.1-.14zm6.44-3.94c-.75-.76-1.77-.84-2.74-1.03-.31-.06-.62-.1-.93-.1-.8-.03-1.4.56-1.37 1.37v1.94c.05.82.15 1.56.98 1.93.77.33 1.63.4 2.46.32 1.08-.1 1.4-.64 1.6-1.33.24-.88.2-1.77.12-2.66-.02-.15-.08-.28-.12-.44zm-12.93.1c-.03.16-.1.38-.12.6a6.89 6.89 0 0 0 .23 2.59c.18.66.66 1.02 1.3 1.11.8.12 1.62.08 2.4-.17a1.59 1.59 0 0 0 1.19-1.39c.12-.95.08-1.91.01-2.86-.17-.9-.95-1.14-1.78-1.02-.65.12-1.3.23-1.95.4-.46.11-.9.3-1.28.74zM25.34 142.75l.13.1c1.08.25 1.67 1.18 2.3 2 .13.15.2.31.22.5.06 1.2.09 2.38 0 3.56-.69.8-1.46 1.49-2.4 1.98l-.16.58c-5.89 4.39-12.76 4.34-18.67.03l-.16-.5c-.45-.3-.91-.59-1.33-.92-.4-.33-.76-.71-1.15-1.07-.07-1.31-.04-2.6.01-3.88.39-.59.81-1.13 1.3-1.62.23-.24.51-.41.83-.52l.49-.18c.21-.56.41-1.13.6-1.7.07-.2.1-.4.14-.6l.1-.68c.2-1.7 1.51-2.55 3.01-3.06.17-.1.27-.3.46-.4a11.6 11.6 0 0 1 3.83-1.26c2.21-.32 4.4.35 6.31 1.36l.22.31c1.53.57 2.72 1.4 2.95 3.11.05.4.17.77.33 1.13.23.56.44 1.17.64 1.73zm-9.33.55-.15.45c-.21.64-.78 1.03-1.38 1.27a6.6 6.6 0 0 1-3.73.38 3.68 3.68 0 0 1-2.07-.8c-.07-.06-.14-.15-.26-.1-.44 1.3-.53 4.73.05 6.15 1.75 1.36 4 1.94 6.18 2.18 1.63.22 3.3.04 4.89-.35 1.24-.32 2.42-.77 3.5-1.48.23-.16.49-.3.64-.56.4-1.8.37-4.97-.08-6.03-.12.08-.24.15-.35.24-.47.37-1 .6-1.58.7-.66.09-1.32.19-1.99.15-1.29-.1-3.26-.51-3.57-1.99l-.1-.2zm6.64-2.4-.05-.91a1 1 0 0 0-.55-.85 7.93 7.93 0 0 0-3.12-.77c-.79-.05-1.42.34-1.47 1.16-.07.87-.04 1.74.03 2.61.06.83.5 1.35 1.28 1.57.88.24 1.82.34 2.7.06.62-.2.89-.7 1.03-1.3.14-.5.15-1.03.15-1.57zm-8.04-.1c0-.4 0-.83-.03-1.24a1.19 1.19 0 0 0-1.03-1.1c-.2-.02-.42-.04-.62-.02-.48.06-.95.13-1.42.22-.67.15-1.98.46-2.05 1.27-.11.94-.13 1.87.17 2.79.22.69.68 1.07 1.39 1.17.8.11 1.58.03 2.34-.2 1.37-.4 1.25-1.72 1.25-2.88zM24.42 780.32l.97 2.47.18.09c1.02.26 1.57 1.18 2.2 1.95.13.17.21.35.22.57.05 1.16.07 2.33 0 3.5a8.18 8.18 0 0 1-2.43 2.02l-.18.43a17.3 17.3 0 0 1-6.94 2.94c-4.1.74-8.32-.58-11.7-2.92l-.2-.44a8.3 8.3 0 0 1-2.43-1.99c-.1-1.27-.03-2.54.02-3.82.4-.58.83-1.14 1.33-1.64.21-.21.46-.37.73-.47l.5-.19c.06-.13.13-.28.18-.44.07-.17.1-.36.18-.53.28-.63.4-1.3.46-1.99.1-1.5 1.18-2.6 2.55-3.1.54-.17 1.05-.4 1.55-.66 1.34-.68 2.78-1 4.27-1.08 1.74.01 3.49.48 5.02 1.3.8.44 1.72.7 2.38 1.35.84.75.99 1.6 1.14 2.65zM8.41 790.43c2.63 2.03 7.29 2.6 10.49 1.91 1.62-.35 3.47-.9 4.74-2.04.29-1.26.32-2.56.25-3.87-.07-1.42-.14-1.82-.37-2.34-.51.4-1.05.77-1.7.87a9.8 9.8 0 0 1-2.3.2c-1.18-.09-3.06-.53-3.44-1.82-.03-.1-.08-.21-.15-.36l-.14.4c-.21.68-.8 1.07-1.42 1.32-1.4.58-2.4.52-3.86.34-.68-.07-1.3-.3-1.84-.71-.07-.06-.15-.15-.26-.1-.52 1.34-.53 4.7 0 6.2zm8.98-10.03h-.04c.02.46.02.91.05 1.37.06.79.47 1.32 1.23 1.56.7.2 1.43.33 2.16.26 1.05-.09 1.4-.56 1.6-1.25.26-.86.25-1.77.13-2.66a.98.98 0 0 0-.5-.75c-.34-.2-.7-.36-1.09-.45-1.15-.21-3.42-1.04-3.54.8-.02.37 0 .74 0 1.12zm-2.9.16h.01c0-.41.02-.83 0-1.24-.04-.91-.82-1.27-1.65-1.14-1 .13-2.02.3-2.92.8a.93.93 0 0 0-.54.85l-.02 1.62c0 .4.12.77.26 1.15.15.41.44.7.85.85.83.3 1.86.13 2.7-.1 1.43-.38 1.35-1.56 1.31-2.79zM24.44 108.36l.99 2.43c.03.03.06.06.1.07 1.04.27 1.62 1.2 2.24 1.99.12.15.2.31.22.5.06 1.2.07 2.38.01 3.56-.7.8-1.46 1.5-2.42 2-.13.25-.34.44-.6.6a17.41 17.41 0 0 1-8 2.73c-3.5.24-6.95-.9-9.88-2.75-.23-.15-.45-.31-.56-.57a7.99 7.99 0 0 1-2.43-1.98c-.09-1.26-.04-2.53.02-3.83a9.8 9.8 0 0 1 1.37-1.67c.2-.17.45-.3.68-.43.15-.08.31-.12.5-.19l.26-.67c.05-.12.07-.25.12-.36.3-.61.4-1.25.44-1.93.09-1.38.8-2.38 2.04-3 .77-.4 1.65-.56 2.45-.91a9.67 9.67 0 0 1 7.87-.1c.58.23 1.14.5 1.74.69.54.17 1.03.44 1.47.8 1.06.87 1.2 1.72 1.37 3.02zm-16.06 9.88c.17.13.35.28.55.4.45.24.91.49 1.39.69 3.2 1.25 6.81 1.4 10.1.42.93-.26 1.81-.64 2.63-1.15.21-.13.43-.26.6-.5.32-1.42.3-2.9.2-4.37-.03-.62-.07-1.24-.28-1.81-.18-.04-.26.07-.36.15-.42.31-.89.53-1.4.63a6.8 6.8 0 0 1-4.7-.46 1.9 1.9 0 0 1-1.03-1.19l-.13-.35-.16.45c-.2.62-.75 1-1.33 1.24a6.6 6.6 0 0 1-4.04.37 3.64 3.64 0 0 1-1.67-.64l-.32-.16a12.9 12.9 0 0 0-.05 6.28zm9-10.05h-.02c.01.44.01.88.05 1.31a1.6 1.6 0 0 0 1.14 1.5c.78.26 1.58.36 2.4.3a1.47 1.47 0 0 0 1.43-1.17c.26-.84.25-1.73.15-2.6a.94.94 0 0 0-.53-.79c-.35-.17-.71-.35-1.09-.45-.58-.16-1.18-.27-1.77-.37-.83-.14-1.7.12-1.75 1.09-.02.4 0 .79 0 1.18zm-2.86.03c0-.37-.01-.75 0-1.12 0-.55-.44-1.1-1.11-1.13-.94-.02-1.86.2-2.75.48-.22.07-.42.19-.63.28-.42.2-.63.53-.64.99 0 .91-.1 1.85.27 2.7.16.42.48.68.9.8.2.06.41.1.62.1a5.7 5.7 0 0 0 2.49-.47c.35-.18.6-.46.7-.83.18-.59.16-1.2.15-1.8zM4.11 820.95c-.1-1.3-.04-2.57.02-3.83.39-.57.8-1.1 1.26-1.57.25-.26.54-.45.89-.57l.39-.16c.22-.58.45-1.14.65-1.7.06-.16.07-.33.09-.5.06-.47.1-.94.19-1.41.22-1.27 1.33-2.23 2.5-2.64 1.66-.49 3.22-1.3 4.96-1.46 2.41-.34 4.32.58 6.5 1.4 1.26.4 2.46 1.4 2.7 2.77l.16 1.03 1 2.49.05.04c1.08.28 1.67 1.19 2.3 2 .13.16.2.33.21.52.06 1.19.08 2.37.01 3.57-.6.65-1.2 1.27-1.96 1.72-.25.15-.5.27-.67.54-.08.13-.26.21-.4.3a17.83 17.83 0 0 1-6.83 2.6c-3.61.55-7.29-.45-10.42-2.24-.43-.24-.88-.47-1.18-.9-.06-.1-.2-.14-.3-.2a8.54 8.54 0 0 1-2.12-1.8zm19.4-5.06c-.14-.04-.23.07-.32.14-.46.35-.97.56-1.54.65-.29.04-.58.07-.86.12-1.06.2-2.08.03-3.07-.32-.74-.28-1.43-.66-1.67-1.46l-.12-.4-.13.36a1.9 1.9 0 0 1-1.07 1.23 6.4 6.4 0 0 1-4.2.54c-.67-.1-1.3-.28-1.85-.7-.07-.05-.17-.08-.25-.13-.49 1.1-.6 4.82-.05 6.31 2.05 1.51 4.67 1.98 7.15 2.13a14.71 14.71 0 0 0 7.07-1.53c.36-.2.74-.38 1-.69.44-1.64.38-5.1-.09-6.25zm-3.12-.6v-.03c.94.07 1.76-.19 2.02-1.32.18-.76.19-1.52.12-2.3-.05-.48-.26-.8-.7-1.01a8.25 8.25 0 0 0-3.25-.76c-.7-.03-1.25.53-1.22 1.2.01.46-.03.92-.03 1.37 0 .38.02.75.07 1.12.14 1.52 1.8 1.57 3 1.73zm-5.9-3.06v-.56c.03-.8 0-1.52-.93-1.71a2.2 2.2 0 0 0-.75-.02c-.61.1-1.23.21-1.83.37-.37.1-.73.3-1.08.46-.3.15-.48.4-.5.74-.1.93-.12 1.89.2 2.78.2.59.64.91 1.25.96.78.05 1.54 0 2.29-.24 1.44-.4 1.38-1.52 1.35-2.78zM6.63 846.84c.21-.54.4-1.03.6-1.5.1-.28.17-.55.19-.85.03-.47.1-.95.18-1.42.22-1.23 1.28-2.15 2.41-2.58.53-.19 1.07-.33 1.6-.5.27-.08.53-.13.78-.23 1.12-.44 2.29-.63 3.47-.74.3-.02.62.04.93.07 1.09.1 2.14.36 3.14.78.23.1.48.15.71.23.46.16.91.3 1.36.47.4.16.77.41 1.1.7 1.04.85 1.16 1.78 1.32 3.03l1.03 2.51.08.06c1.06.29 1.6 1.18 2.25 1.99.12.15.2.32.2.51.06 1.19.07 2.37.02 3.56-.45.5-.88.98-1.41 1.34-2.34 1.74-5.02 3-7.9 3.53-4 .73-8.12-.3-11.55-2.4-.52-.34-1.04-.7-1.54-1.06-.55-.38-1-.87-1.48-1.38-.12-1.27-.05-2.56.01-3.83.39-.58.8-1.1 1.26-1.58.25-.26.55-.45.89-.57l.35-.14zm1.8.89c-.3.74-.35 1.5-.4 2.23-.08 1.37-.07 2.75.31 4.12.21.15.42.32.66.44.5.26 1.01.5 1.53.7 1.8.67 3.73.91 5.64.96 2.3-.08 5.68-.67 7.45-2.2.4-1.99.34-4.07-.02-6.06-.01-.1-.08-.18-.14-.28l-.24.15c-.5.39-1.09.6-1.71.7a6.66 6.66 0 0 1-4.05-.33c-.6-.25-1.18-.61-1.38-1.26l-.17-.45-.15.42c-.2.62-.74 1-1.31 1.26a6.75 6.75 0 0 1-4.29.34c-.5-.09-.96-.27-1.38-.55l-.36-.19zm8.96-5.26c-.1.92-.11 1.83-.02 2.75.07.77.47 1.27 1.2 1.5.84.29 1.7.36 2.59.28 1.54-.13 1.47-2.57 1.32-3.7a.9.9 0 0 0-.41-.67c-1-.62-2.19-.81-3.34-.94-.57-.06-1.06.15-1.34.78zm-2.9 1.51c0-.37.01-.75-.01-1.12-.08-1.09-1.04-1.2-1.94-1.04a8.2 8.2 0 0 0-2.66.82c-.32.16-.47.44-.5.8a7.9 7.9 0 0 0 0 1.8c.14.85.4 1.73 1.41 1.77.9.04 1.85-.02 2.7-.38.48-.21.8-.57.9-1.1.12-.5.1-1.03.1-1.55zM4.14 84.97c-.12-.93-.1-2.88.02-3.88.35-.53.77-1.05 1.23-1.53.23-.25.5-.43.82-.56l.42-.17.6-1.54c.12-.28.18-.55.2-.85.03-.47.1-.95.17-1.42.21-1.2 1.22-2.06 2.3-2.54.6-.27 1.25-.43 1.9-.6.36-.08.73-.17 1.08-.29 1-.34 2.02-.5 3.06-.57.43-.03.87.06 1.3.12.8.11 1.6.3 2.36.6.27.1.56.16.83.25 1.08.34 2.12.6 2.93 1.46.84.8.93 1.77 1.07 2.86l1.05 2.53.32.14c.39.13.71.35.97.65l1 1.2c.13.17.21.36.22.58.05 1.16.07 2.33 0 3.51a8.45 8.45 0 0 1-1.58 1.48 19.07 19.07 0 0 1-8.54 3.44A16.86 16.86 0 0 1 6.29 86.8a8.3 8.3 0 0 1-2.15-1.82zm19.33-5.44c-1.58 1.23-4.08 1.28-5.87.6-.81-.33-1.47-.8-1.65-1.81-.08.17-.13.25-.15.34a1.9 1.9 0 0 1-1.08 1.23 6.44 6.44 0 0 1-4.07.57 4.5 4.5 0 0 1-2.03-.73c-.05-.04-.11-.04-.17-.06-.54 1.26-.6 4.37-.11 6.3.18.23.43.36.69.5 1.7.95 3.64 1.34 5.56 1.53.66.06 1.32.14 2 .08.65-.07 1.32-.13 1.98-.23 1.3-.19 2.56-.53 3.75-1.1.45-.22.91-.42 1.3-.8.36-1.5.32-3.04.2-4.58-.05-.6-.07-1.2-.35-1.84zm-6.16-3.59c.08 1.3-.09 2.3 1.48 2.75.64.18 1.3.23 1.97.26.16 0 .33-.02.5-.05.63-.1.97-.6 1.13-1.18.24-.84.22-1.69.1-2.54a.9.9 0 0 0-.44-.65c-.35-.22-.73-.39-1.13-.5-.84-.2-1.7-.47-2.57-.39-.57.05-.95.46-.98 1.02-.03.4-.04.8-.06 1.28zm-2.82-.08V74.8c-.03-.92-.86-1.25-1.67-1.1-1.01.21-2.06.35-2.97.9a.86.86 0 0 0-.45.7 7.43 7.43 0 0 0 0 1.99c.13.73.42 1.54 1.28 1.62a7.42 7.42 0 0 0 2.64-.32c1.29-.43 1.18-1.61 1.17-2.73zM24.42 876.28l1.05 2.55c.02.01.07.05.13.07 1 .26 1.53 1.17 2.15 1.91.15.19.24.4.24.63v3.37l-.03.16a8.46 8.46 0 0 1-2.64 2.11 17.1 17.1 0 0 1-11 2.72c-2.9-.34-5.55-1.4-7.99-2.99A8.39 8.39 0 0 1 4.15 885c-.13-.77-.12-2.87.02-3.92.37-.53.79-1.07 1.27-1.56.3-.33.76-.5 1.17-.66.24-.6.48-1.17.7-1.75.07-.2.07-.4.1-.61.06-.5.1-1 .18-1.48.23-1.3 1.39-2.24 2.58-2.66.94-.34 1.92-.52 2.88-.81.65-.22 1.33-.33 2-.43 1.96-.32 3.78.41 5.62.91 1.6.38 3.32 1.38 3.59 3.14l.16 1.12zm-8.5 2.07c-.05.1-.1.14-.12.2-.16.69-.64 1.1-1.25 1.37-1.56.74-2.86.7-4.51.37a3.42 3.42 0 0 1-1.27-.51c-.1-.07-.21-.1-.32-.16-.55 1.22-.63 5.18-.06 6.39.5.44 1.14.7 1.78.97 1.5.6 3.08.85 4.68 1 2.64.23 6.6-.39 8.74-2.04.34-1.36.35-2.8.26-4.2-.05-.63-.1-1.28-.25-1.9-.03-.13-.06-.25-.22-.28-.05.02-.1.04-.15.08a3.7 3.7 0 0 1-1.6.68 6.57 6.57 0 0 1-4.33-.38c-.53-.24-1.03-.6-1.22-1.17l-.15-.42zm1.36-2.55.08 1.23c.05.8.48 1.3 1.24 1.54.82.26 1.66.35 2.52.3 1.55-.17 1.42-2.15 1.4-3.31 0-.96-.64-1.2-1.4-1.5-.77-.22-1.54-.4-2.33-.47-.77-.08-1.4.3-1.44 1.02l-.07 1.2zm-2.8.07c0-.38.02-.75 0-1.12-.04-.94-.88-1.22-1.7-1.07-.6.11-1.22.23-1.82.4-.38.1-.73.29-1.08.46a.88.88 0 0 0-.5.75c-.08.9-.12 1.85.22 2.71.22.56.63.86 1.24.88.96.02 1.94-.08 2.8-.5.4-.2.64-.53.73-.96.13-.51.12-1.03.11-1.55zM24.43 908.36c.34.76.74 1.57 1 2.45.06.03.13.08.2.1.56.18 1 .52 1.37.96.33.4.67.8.97 1.28.08 1.23.07 2.5.04 3.77-.56.6-1.1 1.18-1.77 1.6-2.74 1.73-5.82 3.02-9.08 3.25-4.04.32-7.96-1.11-11.32-3.26-.66-.41-1.18-.98-1.72-1.55-.12-1.27-.05-2.54.01-3.82.39-.6.82-1.15 1.33-1.64.2-.2.48-.33.73-.48.14-.08.3-.13.4-.17.24-.59.45-1.13.68-1.66.1-.22.13-.43.15-.66.03-.5.08-1 .16-1.5.26-1.63 1.85-2.59 3.34-3 1.25-.3 2.5-.59 3.77-.86.38-.09.78-.14 1.17-.14 1.17.02 2.33.22 3.43.6.3.1.6.15.91.22 1.73.37 3.72 1.3 4.05 3.22.07.4.1.79.18 1.3zm-8.53 1.84-.13.33c-.2.78-.9 1.18-1.6 1.45-1.72.68-4 .6-5.58-.4-.03-.02-.08-.01-.15-.02-.3.69-.34 1.44-.4 2.17-.1 1.4-.09 2.79.28 4.15.25.24.53.42.83.57a16.34 16.34 0 0 0 7.33 1.48c2.25-.1 4.54-.54 6.53-1.64.22-.13.44-.25.61-.49.42-1.96.31-4.01-.01-5.98-.02-.11-.1-.22-.16-.34-.1.03-.18.05-.25.1a6.47 6.47 0 0 1-5.7.35c-.58-.26-1.14-.55-1.39-1.18-.06-.15-.12-.3-.2-.55zm1.4-2.56h-.02c.1 1.25-.12 2.38 1.34 2.84a7 7 0 0 0 2.53.27 1.2 1.2 0 0 0 1.04-.7c.43-.86.4-1.93.3-2.87a.93.93 0 0 0-.48-.76 8.18 8.18 0 0 0-2.9-.88 3.35 3.35 0 0 0-.81-.01c-.4.03-.7.27-.87.63-.18.47-.11 1-.12 1.48zm-2.81.08h-.01c0-.37.02-.75-.01-1.12-.05-.83-.78-1.09-1.5-1-.75.06-1.48.23-2.2.46-.33.1-.64.3-.95.46a.83.83 0 0 0-.43.72c-.02.48-.06.96-.05 1.43.03.83.3 2.01 1.3 2.08.87.06 1.74-.02 2.58-.29 1.34-.42 1.28-1.56 1.27-2.74zM24.42 44.35c.36.79.76 1.57 1 2.45.13.06.27.14.42.2.38.14.7.36.97.67l.95 1.16c.15.18.22.39.23.63.05 1.14.06 2.29.01 3.45a7.8 7.8 0 0 1-1.68 1.56c-1.95 1.22-4.01 2.21-6.25 2.8-4.9 1.35-9.97-.04-14.17-2.72-.68-.42-1.22-1-1.79-1.59-.11-1.26-.04-2.52.02-3.83.4-.58.83-1.17 1.36-1.67.2-.18.45-.3.68-.43.15-.08.3-.13.43-.18.24-.6.45-1.15.69-1.7.1-.22.12-.44.12-.68.02-.52.06-1.03.18-1.54.51-2.22 2.98-2.93 4.95-3.29l.66-.15c.89-.27 1.8-.39 2.7-.47.3-.02.59.04.87.07.84.08 1.65.25 2.44.5.36.12.73.18 1.1.27 1.74.39 3.74 1.4 3.97 3.37l.14 1.12zM8.35 53.93c1.9 1.3 4.24 1.73 6.5 1.93a15.8 15.8 0 0 0 4.95-.4c1.1-.24 2.16-.61 3.15-1.16.24-.13.48-.26.68-.5a16.87 16.87 0 0 0-.05-6.11c-.03-.1-.09-.19-.25-.2l-.3.16c-.36.24-.76.41-1.2.5a6.68 6.68 0 0 1-4.46-.3c-.7-.3-1.23-.76-1.4-1.54l-.05-.04c-.13.07-.13.2-.17.32-.14.43-.42.76-.8 1a6.19 6.19 0 0 1-3.86.77 5.4 5.4 0 0 1-2.47-.79c-.04-.03-.12-.02-.17-.03-.55 1.39-.6 4.45-.1 6.39zm14.2-9.78c-.02-.25-.05-.45-.04-.66.06-.73-.4-1.14-1.04-1.36-.77-.32-1.59-.49-2.4-.61a3 3 0 0 0-.76 0c-.62.04-.97.57-.99 1.15-.01.75-.04 1.5.03 2.25.09.77.49 1.26 1.2 1.5.8.28 1.63.34 2.46.32 1.34.01 1.53-1.59 1.54-2.59zm-8.06-.46h-.01c0-.37.02-.75 0-1.12-.06-.81-.82-1.09-1.53-1-.65.12-1.3.25-1.95.4-.43.1-.82.3-1.2.53a.86.86 0 0 0-.41.66c-.07.67-.1 1.33 0 2 .13.77.47 1.59 1.37 1.58.9.01 1.8-.03 2.64-.37.54-.23.9-.6 1-1.19.1-.49.1-.99.09-1.49zM4.11 20.93c-.1-1.28-.05-2.54.03-3.8.37-.58.8-1.1 1.25-1.57.22-.23.48-.4.77-.53l.48-.2c.16-.63.44-1.2.68-1.8.07-.16.07-.36.09-.55.06-.5.09-1 .17-1.48.41-2.29 3-3.04 4.98-3.38.25-.05.5-.09.73-.16.85-.24 1.72-.35 2.59-.43.24-.03.5.03.74.05.85.07 1.69.23 2.5.5.24.07.5.1.74.16 1.86.36 4.09 1.27 4.4 3.38l.16 1.22c.34.78.77 1.57 1 2.47l.44.2c.35.13.67.34.92.63.34.39.66.8.99 1.2.14.17.21.36.22.57.05 1.17.07 2.33 0 3.52a8 8 0 0 1-1.74 1.58c-3.48 2.15-7.52 3.59-11.66 3.17a19.08 19.08 0 0 1-7.04-2.21 9.66 9.66 0 0 1-3.44-2.54zm4.21.9c1.78 1.5 5.52 2.02 7.8 2.04 2.3-.05 4.64-.46 6.7-1.52.28-.15.55-.3.8-.57.42-1.97.32-4.05-.02-6.03-.02-.15-.08-.28-.24-.31-.36.18-.7.4-1.07.53a6.68 6.68 0 0 1-5.15-.27c-.57-.29-.98-.7-1.15-1.33 0-.05-.04-.09-.1-.18-.05.12-.1.19-.11.26-.2.8-.93 1.2-1.66 1.48-1.7.66-3.83.58-5.42-.35-.06-.04-.15-.06-.24-.09-.32.66-.34 1.35-.4 2.02-.13 1.44-.12 2.87.26 4.33zm8.99-10.22h-.03l.08 1.25c.04.88.62 1.36 1.43 1.59.77.18 1.55.3 2.35.25.7-.08 1.08-.55 1.24-1.22.24-.8.16-1.6.09-2.41a.81.81 0 0 0-.43-.66 7.76 7.76 0 0 0-2.71-.88c-.7-.15-1.68-.16-1.93.66-.14.45-.09.95-.1 1.42zm-2.82.02h-.01c0-.33.02-.67 0-1-.05-1.02-.94-1.22-1.8-1.06-.53.1-1.06.21-1.59.34-.43.1-.82.3-1.2.52a.96.96 0 0 0-.5.8c-.09 1.25-.25 3.46 1.5 3.48.89 0 1.8-.1 2.62-.46.47-.2.77-.56.87-1.07.12-.5.12-1.03.1-1.55z"}),l=(0,n.jsx)("path",{d:"M19.34 504.1c-.35-.07-.58-.24-.7-.53-.1-.25-.18-.51-.02-.77.7-.2 1.4-.42 2.08-.63.18.14.18.33.17.52a1.3 1.3 0 0 1-1.08 1.32l-.45.09zM14.45 504.24c-.3-.3-.5-.6-.43-1.01.08-.03.13-.07.19-.06.73.05 1.45.06 2.18-.01.06-.01.12.02.17.03.13.47.09.6-.35 1.05h-1.76zM18.84 470.36l1.74-.78c.03.1.1.2.1.3 0 .5 0 1-.04 1.48-.05.98-1.77 1.42-1.83.23-.01-.41.02-.83.03-1.23zM14.36 470.93h1.95c.02.08.07.17.08.26 0 .23.01.46-.01.68a.81.81 0 0 1-.76.71c-.16.02-.33.02-.5 0a.84.84 0 0 1-.76-.69c-.05-.3-.08-.61 0-.96zM13.88 535.72l-.04-.16c.04-.03.07-.08.1-.08.5-.04 2.43 0 2.74.05l-.02.2c-.54.17-2.07.16-2.78 0zM20.94 534.94l-.22.37c-.73.18-1.46.3-2.22.34l-.1-.31c.1-.04.18-.07.26-.08l2.28-.32zM18.88 439.97v-1.68c0-.08.03-.16.04-.21l1.5-.73c.03.1.08.16.08.24v1.8c-.02.41-.2.72-.57.91-.2.1-.4.13-.6.08-.2-.04-.33-.16-.45-.41zM14.43 438.78h1.64c.03.1.08.2.08.29.02.27 0 .54.01.8.01.47-.35.76-.73.8-.5.04-.9-.21-.99-.66a3.75 3.75 0 0 1-.01-1.23zM18.42 567.64c-.06-.08-.1-.13-.12-.18v-.12c.33-.1 1.92-.34 2.38-.35.12.13.02.22-.1.33-.7.16-1.43.29-2.16.32zM16.57 567.45c0 .13-.01.19-.02.24-.04.03-.07.07-.1.07-.88.1-1.75.03-2.65 0l-.1-.28c.25-.12.48-.04.7-.04l.75.01h1.42zM20.38 405.35c.08.71.03 1.4 0 2.12.02.95-1.58 1.38-1.62.23 0-.54.02-1.08.04-1.61.22-.23.54-.24.79-.37.25-.12.44-.38.79-.37zM14.35 406.75h1.63c.14.46.11.91.04 1.36-.03.17-.16.29-.3.39-.48.33-1.39.07-1.4-.66 0-.35-.07-.7.03-1.09zM18.66 374c.3-.13.56-.22.8-.33.24-.11.47-.26.71-.4.05.09.1.14.1.19 0 .67.02 1.33-.01 2 .01.92-1.54 1.35-1.62.26-.02-.56.01-1.12.02-1.73zM14.21 374.69h1.64c.03.12.07.21.07.3l-.01.94c-.02.27-.18.45-.42.57-.51.26-1.28-.05-1.3-.7-.01-.36-.1-.73.02-1.11zM13.58 599.65l-.06-.2c.04-.04.07-.08.1-.08.12-.02.25-.02.37-.02.8 0 1.56 0 2.37.04l-.02.24c-.15.14-.32.12-.49.11-.76 0-1.52.05-2.27-.1zM20.6 598.88l-.12.38c-.75.2-1.5.28-2.3.33l-.1-.31c.42-.16.84-.14 1.25-.2l1.27-.2zM18.49 343.82c0-.62 0-1.25.02-1.86l1.53-.71c.03.06.1.13.1.2 0 .66.01 1.32-.02 1.98a.89.89 0 0 1-.71.84 1.3 1.3 0 0 1-.49 0c-.2-.04-.31-.19-.43-.45zM15.73 342.62c.05.46.05.85.03 1.24a.64.64 0 0 1-.28.48.92.92 0 0 1-1.44-.51 3.9 3.9 0 0 1 .03-1.2c.26-.08.52 0 .79-.01h.87zM18.37 309.87l1.52-.71c.03.07.1.14.1.2 0 .65.02 1.3-.01 1.94 0 1-1.53 1.36-1.64.34-.02-.6-.03-1.2.03-1.77zM13.9 310.52c.07-.02.13-.04.19-.04.47 0 .94.02 1.43.04.12.46.12.9.04 1.35a.63.63 0 0 1-.45.48c-.7.23-1.27-.25-1.25-.79l-.01-.87c0-.05.04-.1.06-.17zM13.5 630.29h2.18c.25.23.29.5.29.77 0 .3-.08.57-.35.8-.62.06-1.26.04-1.88 0a1.1 1.1 0 0 1-.41-.77c-.03-.27-.03-.54.17-.8zM18.06 630.2c.07-.03.13-.06.19-.06l1.83-.2c.05.11.14.21.16.32.08.5-.04.95-.46 1.31-.47.08-.96.18-1.44.17a.84.84 0 0 1-.45-.66c-.05-.31-.05-.63.17-.88zM18.2 277.71l1.51-.68c.04.09.1.18.1.27 0 .66 0 1.33-.03 2-.03.86-1.45 1.2-1.64.25-.04-.2.01-1.59.06-1.84zM13.7 278.31l1.6.06c.1.37.14 1.1.07 1.32a.83.83 0 0 1-.17.32c-.4.44-1.26.3-1.45-.28a2.58 2.58 0 0 1-.05-1.42zM19.57 244.8c.03.14.06.22.06.3v1.75c0 .14-.03.29-.07.43-.19.71-1.38.94-1.6.14a.7.7 0 0 1-.03-.19l.03-1.76.83-.3c.24-.1.44-.3.78-.37zM13.47 246.06l1.58.06c.13.08.12.19.13.29 0 .29.03.58.01.86-.01 1.02-1.52.97-1.68.13-.08-.42-.1-.86-.04-1.34zM13.85 660.76h.5c.52.03.88.33.92.84.05.49.05.99.05 1.48 0 .34-.16.6-.52.79h-.9c-.43-.17-.62-.54-.64-1.01l-.02-1.12c0-.43.16-.76.61-.98zM18.41 660.65l.7-.05c.44.17.6.49.62.89.01.4 0 .82-.02 1.24-.02.5-.35.99-.89 1.02-.16.02-.33 0-.5 0-.4-.15-.56-.45-.56-.86v-1.18c.01-.45.17-.8.65-1.06zM17.75 213.05c.32-.1.57-.18.82-.29.24-.1.48-.23.75-.36.03.12.08.19.08.26 0 .68.02 1.37-.01 2.05 0 .95-1.55 1.25-1.66.22a15.4 15.4 0 0 1 .02-1.88zM13.25 213.64l1.63.05c.03.1.07.17.08.24.01.3.03.59.02.88 0 1.14-1.6 1.07-1.72.07a6.2 6.2 0 0 1 0-1.24zM14.88 693.75v.94c-.08 1.16-1.67.97-1.73-.1-.02-.66-.03-1.32-.03-1.99 0-.12.03-.25.09-.35.27-.64 1.2-.62 1.5-.03.12.19.16.39.15.6v.93h.02zM17.62 693.59c0-.35-.02-.7 0-1.06.06-.92 1.4-1.15 1.66-.24.02.1.05.2.05.3 0 .65-.01 1.3-.03 1.94 0 .1-.02.2-.06.3-.27.77-1.57.8-1.62-.12v-1.12zM19.1 179.77c.06.1.11.18.11.25 0 .7.02 1.41 0 2.11-.02.42-.27.7-.67.82-.62.2-1.1-.32-1.04-.93l.02-1.5c0-.03.02-.07.05-.13l.8-.27c.25-.1.48-.23.74-.35zM13.04 181h1.51c.04 0 .07.04.12.05.13.16.07.36.08.54.02.2 0 .41.01.62a.79.79 0 0 1-.7.82c-.47.04-.88-.22-.97-.68-.06-.26-.06-.54-.07-.8-.01-.17 0-.33.02-.54zM14.7 725.1v.7c.06.54-.16 1.05-.73 1.1a.9.9 0 0 1-.99-.96l-.04-1.75c-.04-.53.26-1.03.81-1.05.42-.02.82.3.89.72.05.41.02.83.03 1.25h.03zM17.46 725.02c0-.38-.02-.75 0-1.12.04-.49.41-.81.87-.8.39 0 .73.28.8.65 0 .8.04 1.58-.01 2.37-.03.5-.6.83-1.06.72a.73.73 0 0 1-.6-.7c-.02-.38 0-.75 0-1.12zM14.61 756.59v.68c.04.52-.12 1-.66 1.11a.9.9 0 0 1-1.05-.8c-.02-.73-.05-1.46-.03-2.19a.8.8 0 0 1 .93-.77.8.8 0 0 1 .72.6c.1.45.06.91.07 1.37h.02zM17.35 756.47v-1c0-.21.05-.41.2-.58a.82.82 0 0 1 .88-.3c.38.1.59.4.62.78.06.72.06 1.45 0 2.17-.06.98-1.57 1.14-1.68.11-.03-.4 0-.79 0-1.18h-.02zM19.05 147.61c.05.07.09.1.09.13v1.56c0 .28-.14.51-.42.73l-.83.1c-.4-.14-.56-.42-.57-.78-.02-.4-.03-.82.02-1.26l1.71-.48zM14.48 150h-1.34c-.41-.42-.3-.92-.3-1.44.1-.02.2-.06.3-.06h1.5c.1.52.18 1-.16 1.5zM17.3 788.05c0-.42-.04-.84.04-1.24.22-.9 1.43-.88 1.65.01.02.1.03.2.03.31v1.8c.04.52-.33 1-.86 1.04a.8.8 0 0 1-.8-.56c-.1-.45-.05-.91-.06-1.36zM14.55 788.18v1c0 .27-.1.49-.32.65a.87.87 0 0 1-1.38-.73l-.05-1.8c0-.11 0-.22.02-.32a.85.85 0 0 1 1.7.02c.02.4 0 .79 0 1.18h.03zM16.91 116.65l-.03-.33c.52-.1 2.08-.11 2.57-.02l-.06.24c-.07.04-.1.08-.13.08l-2.04.08c-.08 0-.16-.03-.3-.05zM12.37 116.72l-.05-.26c.46-.1 2.2-.14 2.74-.06l.04.04-.01.22c-.45.12-2.04.15-2.72.06zM17.26 819.72v-.87c.01-.15.03-.3.07-.43a.8.8 0 0 1 .8-.58c.52 0 .88.45.87.95v1.93c0 .1-.02.2-.05.3-.25.88-1.56.84-1.67-.12-.03-.4 0-.79-.01-1.18zM14.52 819.81c0 .33.02.67 0 1 0 .16-.04.33-.11.47-.33.67-1.38.49-1.54-.21-.03-.1-.04-.2-.04-.3l-.06-1.81c-.03-.55.29-1.07.86-1.08.4 0 .76.28.85.7.06.4.02.82.03 1.23h.01zM14.52 851.66c-.01.37.01.75-.02 1.12-.14.88-1.34.95-1.63.12a1.67 1.67 0 0 1-.06-.43l-.05-1.8c0-.54.3-1 .87-1.01a.8.8 0 0 1 .78.52c.05.15.08.32.08.49.02.33 0 .66 0 1h.03zM17.25 851.51v-.87c0-.12.01-.25.04-.37.1-.37.4-.62.75-.65.57-.05.96.44.95.99v1.8c0 .15-.02.3-.07.43-.27.85-1.54.78-1.65-.14-.03-.4 0-.8-.01-1.19zM19.43 83.93l-.06.26a8.8 8.8 0 0 1-2.44.1l-.1-.32c.42-.11 1.9-.14 2.6-.04zM12.31 84.37l-.02-.28c.12-.02.22-.06.32-.06l2.3-.04c.06 0 .12.04.2.07l-.09.27c-.58.08-2.15.1-2.7.04zM14.51 883.49c0 .37.02.75-.01 1.12a.83.83 0 0 1-.75.72.85.85 0 0 1-.9-.62 1.9 1.9 0 0 1-.06-.43l-.03-1.75c0-.18.04-.37.11-.54.28-.68 1.33-.64 1.55.08.05.13.06.28.07.42v1h.02zM17.25 883.33v-.87c0-.14.02-.3.06-.43a.8.8 0 0 1 .75-.56c.5-.04.88.36.92.83v2.12c0 .08-.02.16-.05.24-.26.88-1.56.81-1.67-.14-.02-.4 0-.8 0-1.19zM17.25 915.27c0-.4-.02-.8.02-1.19.13-.86 1.34-.97 1.63-.15.05.15.08.32.09.48v1.75c.01.58-.4 1.1-.99 1.02a.81.81 0 0 1-.74-.79c-.02-.37 0-.75 0-1.12h-.01zM14.51 915.4v.8c0 .12 0 .25-.02.37a.85.85 0 0 1-.8.67.86.86 0 0 1-.82-.57 1.85 1.85 0 0 1-.08-.49l-.03-1.74c0-.16.03-.34.08-.49a.84.84 0 0 1 1.6.08c.04.13.05.28.05.43v.93h.02zM13.22 49.73l.43-.04c.6-.03.94.42.96.98a100.26 100.26 0 0 1 0 1.68c-.18.97-1.66 1.04-1.88.03-.02-.1-.04-.2-.04-.31-.02-.44-.04-.87-.04-1.3-.01-.45.16-.81.57-1.04zM17.83 49.63h.56c.48.18.67.53.68.98.02.47 0 .95 0 1.43-.02 1.21-1.74 1.36-1.9.13 0-.56-.02-1.12 0-1.68.02-.41.24-.7.66-.86zM18.1 17.28c.68.2.86.41.88 1.05.02.58.02 1.16 0 1.74 0 .17-.03.34-.08.5a.84.84 0 0 1-1.62-.12l-.03-.3v-1.88c-.02-.54.29-.94.85-1zM14.5 19.32c0 .36.02.71 0 1.06-.05.92-1.36 1.06-1.63.21a1.72 1.72 0 0 1-.08-.49l-.03-1.74c-.01-.55.31-1.04.91-1.02a.8.8 0 0 1 .77.62c.04.14.04.29.05.43v.93h.01z"}),i[0]=a,i[1]=l):(a=i[0],l=i[1]),i[2]!==r||i[3]!==d||i[4]!==u?(c=(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:d,height:u,viewBox:"0 0 32 928",fill:"currentColor",className:"UserInput-module__userInput--zF2uw","data-animation-state":r,"aria-hidden":!0,children:[a,l]}),i[2]=r,i[3]=d,i[4]=u,i[5]=c):c=i[5],c}try{z.displayName||(z.displayName="CopilotAnimationUserInput")}catch{}let F="idle",I="starting",S="running",C="ending",v={Affirmative:"affirmative",Celebrate:"celebrate",Tickle:"tickle",JumpWiggle:"jumpWiggle",Confirm:"confirm",Idle:"idle",Negative:"negative",Static:"static",Thinking:"thinking",UserInput:"userInput",Activate:"activate"},x={[v.Thinking]:{[F]:33,[I]:429,[S]:1390,[C]:429},[v.Affirmative]:{[F]:33,[S]:627},[v.Celebrate]:{[F]:33,[S]:1056},[v.Negative]:{[F]:250,[S]:792},[v.Idle]:{[S]:13483},[v.Confirm]:{[F]:33,[S]:627},[v.UserInput]:{[F]:33,[I]:363,[S]:3e3,[C]:528},[v.Tickle]:{[F]:33,[S]:1188},[v.JumpWiggle]:{[F]:33,[S]:1254},[v.Activate]:{[F]:33,[S]:2e3}},j=(0,r.memo)(function(e){let a,l,j,M,T,_,N,K,L,w,P,A=(0,t.c)(58),{animationType:E,onAnimationEnd:V,loopAnimation:R,className:D,style:O,size:B}=e,$=void 0===B?32:B,[U,q]=(0,r.useState)(F),H=(0,r.useRef)(null),W=$>=16?$:16,G=W?W/32:1;A[0]===Symbol.for("react.memo_cache_sentinel")?(a=()=>{H.current=null,q(F)},A[0]=a):a=A[0],A[1]!==E?(l=[E],A[1]=E,A[2]=l):l=A[2],(0,r.useEffect)(a,l);let Q=(0,i.M)(V);A[3]!==U||A[4]!==E||A[5]!==R||A[6]!==Q?(j=()=>{let e,a=x[E];if(a&&E!==v.Static){if(U===F&&(R||null===H.current)&&(e=setTimeout(()=>{q(I)},a[F]||0)),U===I&&(e=setTimeout(()=>{q(S),H.current=Date.now()},a[I]||0)),U===S&&!R){let l=H.current?Date.now()-H.current:0,n=a[S]||0;e=setTimeout(()=>{q(C)},n-l%n)}return U===C&&(e=setTimeout(()=>{q(F),R||Q.current?.()},a[C]||0)),()=>clearTimeout(e)}},M=[U,R,E,Q],A[3]=U,A[4]=E,A[5]=R,A[6]=Q,A[7]=j,A[8]=M):(j=A[7],M=A[8]),(0,r.useEffect)(j,M);e:{switch(E){case v.Thinking:{let e;A[9]!==U||A[10]!==G?(e=(0,n.jsx)(k,{state:U,scale:G}),A[9]=U,A[10]=G,A[11]=e):e=A[11],T=e;break e}case v.Static:{let e;A[12]!==U||A[13]!==G?(e=(0,n.jsx)(f,{state:U,scale:G}),A[12]=U,A[13]=G,A[14]=e):e=A[14],T=e;break e}case v.Affirmative:{let e;A[15]!==U||A[16]!==G?(e=(0,n.jsx)(m,{state:U,scale:G}),A[15]=U,A[16]=G,A[17]=e):e=A[17],T=e;break e}case v.Celebrate:{let e;A[18]!==U||A[19]!==G?(e=(0,n.jsx)(d,{state:U,scale:G}),A[18]=U,A[19]=G,A[20]=e):e=A[20],T=e;break e}case v.Negative:{let e;A[21]!==U||A[22]!==G?(e=(0,n.jsx)(h,{state:U,scale:G}),A[21]=U,A[22]=G,A[23]=e):e=A[23],T=e;break e}case v.Idle:{let e;A[24]!==U||A[25]!==G?(e=(0,n.jsx)(g,{state:U,scale:G}),A[24]=U,A[25]=G,A[26]=e):e=A[26],T=e;break e}case v.Confirm:{let e;A[27]!==U||A[28]!==G?(e=(0,n.jsx)(p,{state:U,scale:G}),A[27]=U,A[28]=G,A[29]=e):e=A[29],T=e;break e}case v.UserInput:{let e;A[30]!==U||A[31]!==G?(e=(0,n.jsx)(z,{state:U,scale:G}),A[30]=U,A[31]=G,A[32]=e):e=A[32],T=e;break e}case v.Tickle:{let e;A[33]!==U||A[34]!==G?(e=(0,n.jsx)(b,{state:U,scale:G}),A[33]=U,A[34]=G,A[35]=e):e=A[35],T=e;break e}case v.JumpWiggle:{let e;A[36]!==U||A[37]!==G?(e=(0,n.jsx)(y,{state:U,scale:G}),A[36]=U,A[37]=G,A[38]=e):e=A[38],T=e;break e}case v.Activate:{let e;A[39]!==U||A[40]!==G?(e=(0,n.jsx)(u,{state:U,scale:G}),A[39]=U,A[40]=G,A[41]=e):e=A[41],T=e;break e}}T=void 0}let Y=T,X=E===v.Activate&&o;A[42]!==D||A[43]!==X?(_=(0,s.$)(D,"CopilotAnimation-module__copilotAnimationHolder--y50tP",X),A[42]=D,A[43]=X,A[44]=_):_=A[44],A[45]===Symbol.for("react.memo_cache_sentinel")?(N=(0,c.G)("copilot-animation"),A[45]=N):N=A[45],A[46]!==G||A[47]!==O?(K={...O,"--copilot-animation-scale":G},A[46]=G,A[47]=O,A[48]=K):K=A[48];let Z=E===v.Activate&&o;return A[49]!==Z?(L=(0,s.$)("CopilotAnimation-module__copilotAnimation--JSfrc",Z),A[49]=Z,A[50]=L):L=A[50],A[51]!==Y||A[52]!==L?(w=(0,n.jsx)("div",{className:L,children:Y}),A[51]=Y,A[52]=L,A[53]=w):w=A[53],A[54]!==K||A[55]!==w||A[56]!==_?(P=(0,n.jsx)("div",{className:_,...N,style:K,children:w}),A[54]=K,A[55]=w,A[56]=_,A[57]=P):P=A[57],P});try{j.displayName||(j.displayName="CopilotAnimation")}catch{}},75553:(e,a,l)=>{l.d(a,{A:()=>p,v:()=>m});var n=l(74848),t=l(16522),c=l(69599),i=l(53419),s=l(11680),r=l(96540),o=l(25641),d=l(79064),u=l(79184);function m(){let e,a,l=(0,t.c)(3),{chatQuotaRemaining:n,isLicensedLimited:i,chatQuotaExceeded:s,resetDate:o}=(0,u.xR)();l[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,c.G7)("copilot_coding_agent_free_users_exp"),l[0]=e):e=l[0];let m=e&&i;l[1]!==o?(a=()=>!!o&&d.Jt.getCodingAgentQuotaBannerDismissed(o),l[1]=o,l[2]=a):a=l[2];let[p]=(0,r.useState)(a);return m&&!s&&n<=50&&!p||m&&s}function p(e){let a,l,m,p,g,y,h,f,k,b,z=(0,t.c)(27),{onQuotaExhaustedChange:F,entrypointLocation:I}=e,{chatQuotaRemaining:S,isLicensedLimited:C,chatQuotaExceeded:v,resetDate:x}=(0,u.xR)();z[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,c.G7)("copilot_coding_agent_free_users_exp"),z[0]=a):a=z[0];let j=100-S,M=a&&C;z[1]!==I?(l=()=>{(0,i.BI)("copilot_growth.free_cca",{target:`QUOTA_UPSELL_CLICK_${I}`})},z[1]=I,z[2]=l):l=z[2];let T=l;z[3]!==x?(m=()=>!!x&&d.Jt.getCodingAgentQuotaBannerDismissed(x),z[3]=x,z[4]=m):m=z[4];let[_,N]=(0,r.useState)(m),K=M&&v;z[5]!==F||z[6]!==K?(p=()=>{F?.(K)},g=[K,F],z[5]=F,z[6]=K,z[7]=p,z[8]=g):(p=z[7],g=z[8]),(0,r.useEffect)(p,g),z[9]!==x?(y=()=>{x&&(d.Jt.setCodingAgentQuotaBannerDismissed(x),N(!0))},z[9]=x,z[10]=y):y=z[10];let L=y;if(!(M&&!v&&S<=50&&!_)&&!K)return null;z[11]!==L||z[12]!==j||z[13]!==x||z[14]!==K?(h=K?{variant:"upsell",title:"Limit reached",testId:"coding-agent-quota-exhausted-banner",message:`You have reached your free plan limit. Limit resets on ${x}.`,onDismiss:void 0}:{variant:"info",title:"Quota approaching",testId:"coding-agent-quota-approaching-banner",message:`You've used ${j}% of your free requests this month.`,onDismiss:L},z[11]=L,z[12]=j,z[13]=x,z[14]=K,z[15]=h):h=z[15];let w=h;return z[16]!==T?(f=(0,n.jsx)(s.l.PrimaryAction,{as:"a",href:o.Zs,onClick:T,children:"Upgrade To Copilot Pro"}),z[16]=T,z[17]=f):f=z[17],z[18]!==w.message||z[19]!==w.onDismiss||z[20]!==w.title||z[21]!==w.variant||z[22]!==f?(k=(0,n.jsx)(s.l,{variant:w.variant,title:w.title,hideTitle:!0,primaryAction:f,onDismiss:w.onDismiss,children:w.message}),z[18]=w.message,z[19]=w.onDismiss,z[20]=w.title,z[21]=w.variant,z[22]=f,z[23]=k):k=z[23],z[24]!==w.testId||z[25]!==k?(b=(0,n.jsx)("div",{className:"CopilotCodingAgentQuotaBanner-module__container--vyBW6","data-testid":w.testId,children:k}),z[24]=w.testId,z[25]=k,z[26]=b):b=z[26],b}try{p.displayName||(p.displayName="CopilotCodingAgentQuotaBanner")}catch{}},75908:(e,a,l)=>{function n(e,a){switch(a){case 403:return`${e}: Please check that you have permission to assign issues in the target repository.`;case 404:return`${e}: The repository or branch may not exist or may not be accessible.`;case 422:return`${e}: Request could not be processed. Please try again or contact support if the issue persists.`;case 429:return`${e}: Rate limit exceeded. Please wait a few moments and try again.`;case 0:return`${e}. Please check your network connection and try again.`;default:if(a>=500)return`${e}: There was a server error. Please try again in a few moments.`;return`${e}. Please try again or contact support if the issue persists.`}}function t(e,a){return e.errorMessage?`${a}: ${e.errorMessage}`:n(a,e.status)}function c(e,a){if(!e||0===e.length)return"Assignment failed";let l=new Set((a||[]).map(e=>e.issue_number)),n=[];for(let a of e)"number"!=typeof a||isNaN(a)||l.has(a)||n.push(a);if(n.sort((e,a)=>e-a),0===n.length||n.length===e.length)return"Assignment failed";if(1===n.length)return`Assignment failed for #${n[0]}`;if(2===n.length)return`Assignment failed for #${n[0]} and #${n[1]}`;let[t,c,...i]=n,s=i.length;return`Assignment failed for #${t}, #${c} and ${s} other${1===s?"":"s"}`}function i(e,a){return e instanceof Error?`${a} failed: ${e.message}`:n(`${a} failed`,500)}l.d(a,{Ah:()=>c,VJ:()=>i,v0:()=>t})},78137:(e,a,l)=>{l.d(a,{j:()=>f});let n=(t=[{defaultValue:null,kind:"LocalArgument",name:"input"}],c=[{kind:"Variable",name:"input",variableName:"input"}],s=[{kind:"Literal",name:"first",value:20}],r={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},p={kind:"InlineFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"isCopilot",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isAgent",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"displayName",storageKey:null}],type:"Bot",abstractKey:null},g={alias:null,args:[{kind:"Literal",name:"first",value:10}],concreteType:"UserConnection",kind:"LinkedField",name:"participants",plural:!1,selections:[{alias:null,args:null,concreteType:"User",kind:"LinkedField",name:"nodes",plural:!0,selections:[i={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},o={alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null},d={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},u={alias:null,args:null,kind:"ScalarField",name:"profileResourcePath",storageKey:null},m={alias:null,args:[{kind:"Literal",name:"size",value:64}],kind:"ScalarField",name:"avatarUrl",storageKey:"avatarUrl(size:64)"}],storageKey:null}],storageKey:"participants(first:10)"},y={kind:"InlineFragment",selections:[i],type:"Node",abstractKey:"__isNode"},{fragment:{argumentDefinitions:t,kind:"Fragment",metadata:null,name:"replaceActorsForAssignableRelayMutation",selections:[{alias:null,args:c,concreteType:"ReplaceActorsForAssignablePayload",kind:"LinkedField",name:"replaceActorsForAssignable",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"assignable",plural:!1,selections:[{kind:"InlineFragment",selections:[i,{alias:null,args:s,concreteType:"AssigneeConnection",kind:"LinkedField",name:"assignedActors",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"nodes",plural:!0,selections:[{kind:"InlineFragment",selections:[r,i,o,d,u,m,p],type:"Actor",abstractKey:"__isActor"}],storageKey:null}],storageKey:"assignedActors(first:20)"},g],type:"Issue",abstractKey:null}],storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:t,kind:"Operation",name:"replaceActorsForAssignableRelayMutation",selections:[{alias:null,args:c,concreteType:"ReplaceActorsForAssignablePayload",kind:"LinkedField",name:"replaceActorsForAssignable",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"assignable",plural:!1,selections:[r,{kind:"InlineFragment",selections:[i,{alias:null,args:s,concreteType:"AssigneeConnection",kind:"LinkedField",name:"assignedActors",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"nodes",plural:!0,selections:[r,{kind:"InlineFragment",selections:[i,o,d,u,m,p],type:"Actor",abstractKey:"__isActor"},y],storageKey:null}],storageKey:"assignedActors(first:20)"},g],type:"Issue",abstractKey:null},y],storageKey:null}],storageKey:null}]},params:{id:"ee72afca78d0ae23983b34798f68e4df",metadata:{},name:"replaceActorsForAssignableRelayMutation",operationKind:"mutation",text:null}});n.hash="8210d585bd47f54a754f44a7bedc0903";var t,c,i,s,r,o,d,u,m,p,g,y,h=l(18312);function f({environment:e,input:{issueId:a,assignedActors:l,participants:t},clientMutationId:c,onError:i,onCompleted:s}){let r=[...new Map([...l,...t].filter(e=>!e.isCopilot&&!e.isAgent).map(e=>[e.login,e])).values()].slice(0,5);return(0,h.commitMutation)(e,{mutation:n,variables:{input:{assignableId:a,actorIds:l.map(e=>e.id),clientMutationId:c}},optimisticResponse:{replaceActorsForAssignable:{assignable:{__typename:"Issue",__isNode:"Issue",id:a,assignedActors:{nodes:l.map(e=>"Bot"===e.__typename?{__typename:"Bot",__isActor:"Bot",__isNode:"Bot",id:e.id,login:e.login,name:e.name??null,avatarUrl:e.avatarUrl,profileResourcePath:e.profileResourcePath,displayName:e.displayName??"",isCopilot:e.isCopilot||!1,isAgent:e.isAgent||!1}:{__typename:"User",__isActor:"User",__isNode:"User",id:e.id,login:e.login,name:e.name??null,avatarUrl:e.avatarUrl,profileResourcePath:e.profileResourcePath})},participants:{nodes:r.map(e=>({id:e.id,login:e.login,name:e.name??null,avatarUrl:e.avatarUrl,profileResourcePath:e.profileResourcePath}))}}}},onError:e=>i&&i(e),onCompleted:e=>s&&s(e)})}},78211:(e,a,l)=>{l.d(a,{e:()=>s});var n=l(96540),t=l(10231),c=l(38621),i=l(85962);function s({state:e,stateReason:a,options:l}){let s=(0,n.useMemo)(()=>{switch(`${e}${l?.longText?" long":""}`){case"OPEN":case"OPEN long":return"Open";case"CLOSED long":let n="Closed";return"NOT_PLANNED"===a?`${n} as not planned`:"DUPLICATE"===a?`${n} as duplicate`:n;case"CLOSED":return"NOT_PLANNED"===a?"Not planned":"DUPLICATE"===a?"Duplicate":"Closed";default:return""}},[e,l?.longText,a]),r=(0,n.useMemo)(()=>{switch(e){case"OPEN":return"issueOpened";case"CLOSED":return"NOT_PLANNED"===a||"DUPLICATE"===a?"issueClosedNotPlanned":"issueClosed";default:return"issueClosed"}},[e,a]),o=(0,n.useCallback)(()=>{let e={stateChangeQuery:"",stateReasonString:""};if(a){if(a in t.Pu)e.stateChangeQuery=t.Pu[a];else throw Error(`Invalid state change: ${a}`);if(a in t.d6)e.stateReasonString=t.d6[a];else throw Error(`Invalid state change: ${a}`)}return e},[a]),d=(0,n.useMemo)(()=>a===t.DD.NOT_PLANNED||a===t.DD.DUPLICATE?"var(--fgColor-muted)":"var(--fgColor-done)",[a]);return{stateString:s,stateStatus:r,getStateQuery:o,issueStateColor:d,issueStateTimelineIcon:(0,n.useMemo)(()=>a===t.DD.NOT_PLANNED||a===t.DD.DUPLICATE?c.CircleSlashIcon:c.CheckCircleIcon,[a]),sourceIcon:(0,n.useCallback)((l,n,t)=>"Issue"===l?null==a||"REOPENED"===a?i.r.OPEN:a in i.r?i.r[a]:c.SkipIcon:n&&"OPEN"===e?i.I.DRAFT:t?i.I.IN_MERGE_QUEUE:null==e?i.I.OPEN:e in i.I?i.I[e]:c.SkipIcon,[e,a])}}},79403:(e,a,l)=>{l.d(a,{Zf:()=>c,bV:()=>i,m5:()=>r,tT:()=>n,wK:()=>t,xv:()=>o});let n={repositoriesPreloadCount:5,localStorageMetadataKeys:{issueLabels:e=>`${e}.create-issue-labels`,issueAssignees:e=>`${e}.create-issue-assignees`,issueMilestone:e=>`${e}.create-issue-milestone`,issueProjects:e=>`${e}.create-issue-projects`,issueIssueType:e=>`${e}.create-issue-type`,issueIssueFields:e=>`${e}.create-issue-fields`},localStorageKeys:{issueCreateMore:e=>`${e}.create-issue-create-more`,issueRepoId:e=>`${e}.create-issue-repo-id`,issueTemplateId:e=>`${e}.create-issue-template-id`},localTitleAndBodyStorageKeys:{issueTitle:e=>`${e}.create-issue-title`,issueBody:e=>`${e}.create-issue-body`},storageKeyPrefixes:{defaultFallback:"hyperlist",globalAdd:"issue-global-add"}};function t(e){return Object.values({...n.localStorageKeys,...n.localStorageMetadataKeys,...n.localTitleAndBodyStorageKeys}).map(a=>a(e))}function c(e){return Object.values(n.localStorageMetadataKeys).map(a=>a(e))}function i(e){return Object.values(n.localTitleAndBodyStorageKeys).map(a=>a(e))}let s={title:n.localTitleAndBodyStorageKeys.issueTitle,body:n.localTitleAndBodyStorageKeys.issueBody};function r(e){return Object.values(s).map(a=>a(e))}let o="temp-sub-issue-"},81124:(e,a,l)=>{l.d(a,{F:()=>i});var n=l(16522),t=l(69599),c=l(96540);function i(e){let a,l,i,s,r,o,d,u,m,p=(0,n.c)(48),{editorRef:g,body:y,onChange:h,shouldShowCopilotFunctionality:f,repoOwner:k,repoName:b,title:z,generateTitle:F,commandId:I,canToggle:S}=e,C=void 0===k?"":k,v=void 0===b?"":b,x=void 0===z?"":z,j=void 0!==F&&F,M=void 0===I?"copilot-panel:toggle":I,T=void 0===S||S,[_,N]=(0,c.useState)(!1),[K,L]=(0,c.useState)(!1),[w,P]=(0,c.useState)(0);p[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,t.G7)("write_issue_body_with_copilot"),p[0]=a):a=p[0];let A=a&&void 0!==f&&f&&!!C&&!!v;p[1]!==g?(l=()=>{N(!1),g.current?.focus()},p[1]=g,p[2]=l):l=p[2];let E=l;p[3]!==T||p[4]!==E||p[5]!==K||p[6]!==_||p[7]!==A?(i=()=>{A&&!K&&T&&(_?E():N(!0))},p[3]=T,p[4]=E,p[5]=K,p[6]=_,p[7]=A,p[8]=i):i=p[8];let V=i;p[9]!==j||p[10]!==h?(s=(e,a)=>{h(a,j?e:void 0)},p[9]=j,p[10]=h,p[11]=s):s=p[11];let R=s;p[12]!==y||p[13]!==_?(r=()=>{_&&!y.trim()&&N(!1)},p[12]=y,p[13]=_,p[14]=r):r=p[14];let D=r;p[15]!==M||p[16]!==V?(o={[M]:V},p[15]=M,p[16]=V,p[17]=o):o=p[17];let O=o,B=y.trim()||K?"bottom":"top";e:{if(_){let e,a;p[18]!==y||p[19]!==K||p[20]!==w?(e=y.trim()||K?`${w}px`:void 0,p[18]=y,p[19]=K,p[20]=w,p[21]=e):e=p[21];let l=`${w+100}px`;p[22]!==e||p[23]!==l?(a={"--markdown-input-bottom-padding":e,"--markdown-editor-min-height":l},p[22]=e,p[23]=l,p[24]=a):a=p[24],d=a;break e}d=void 0}let $=d;p[25]!==B||p[26]!==y||p[27]!==E||p[28]!==g||p[29]!==j||p[30]!==R||p[31]!==_||p[32]!==v||p[33]!==C||p[34]!==x?(u={isOpen:_,onClose:E,onGenerate:R,repoOwner:C,repoName:v,title:x,body:y,onPendingChange:L,anchorPosition:B,onHeightChange:P,editorRef:g,generateTitle:j},p[25]=B,p[26]=y,p[27]=E,p[28]=g,p[29]=j,p[30]=R,p[31]=_,p[32]=v,p[33]=C,p[34]=x,p[35]=u):u=p[35];let U=u;return p[36]!==E||p[37]!==O||p[38]!==$||p[39]!==R||p[40]!==D||p[41]!==K||p[42]!==_||p[43]!==w||p[44]!==U||p[45]!==A||p[46]!==V?(m={isPanelOpen:_,isGenerating:K,panelHeight:w,shouldShowCopilot:A,togglePanel:V,closePanel:E,handleGenerate:R,handleInputFocus:D,commands:O,panelProps:U,containerStyle:$,setIsGenerating:L,setPanelHeight:P},p[36]=E,p[37]=O,p[38]=$,p[39]=R,p[40]=D,p[41]=K,p[42]=_,p[43]=w,p[44]=U,p[45]=A,p[46]=V,p[47]=m):m=p[47],m}},81289:(e,a,l)=>{l.d(a,{y:()=>s});var n=l(74848),t=l(83494),c=l(96540);let i=({anchorElement:e,anchorProps:a,anchorRef:l})=>e(a,l);function s({anchorElement:e,createChild:a,keybindingCommandId:l}){let[s,r]=(0,c.useState)(!1),o=(0,c.useRef)(null),d=(0,c.useCallback)(()=>{s||r(!0)},[s,r]);return s?a():(0,n.jsxs)(n.Fragment,{children:[l&&(0,n.jsx)(t.ak,{commands:{[l]:d}}),(0,n.jsx)(i,{anchorElement:e,anchorProps:{onClick:()=>r(!0),onKeyPress:e=>{("Enter"===e.key||" "===e.key)&&(e.preventDefault(),r(!0))}},anchorRef:o})]})}try{i.displayName||(i.displayName="AnchorRenderer")}catch{}try{s.displayName||(s.displayName="LazyItemPicker")}catch{}},81688:(e,a,l)=>{l.d(a,{Z:()=>F});let n=(t=[{defaultValue:null,kind:"LocalArgument",name:"connections"},{defaultValue:null,kind:"LocalArgument",name:"input"}],c=[{kind:"Variable",name:"input",variableName:"input"}],s={alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},r={alias:null,args:null,kind:"ScalarField",name:"closed",storageKey:null},o={alias:null,args:null,kind:"ScalarField",name:"number",storageKey:null},d={alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},u={alias:null,args:null,kind:"ScalarField",name:"viewerCanUpdate",storageKey:null},m={alias:null,args:null,kind:"ScalarField",name:"hasReachedItemsLimit",storageKey:null},p=[{kind:"Literal",name:"name",value:"Status"}],g={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},y={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},h={alias:null,args:null,kind:"ScalarField",name:"optionId",storageKey:null},f={alias:null,args:null,kind:"ScalarField",name:"nameHTML",storageKey:null},k={alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null},b={kind:"InlineFragment",selections:[i={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null}],type:"Node",abstractKey:"__isNode"},{fragment:{argumentDefinitions:t,kind:"Fragment",metadata:null,name:"updateIssueProjectsRelayMutation",selections:[{alias:null,args:c,concreteType:"AddProjectV2ItemByIdPayload",kind:"LinkedField",name:"addProjectV2ItemById",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2ItemEdge",kind:"LinkedField",name:"projectEdge",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2Item",kind:"LinkedField",name:"node",plural:!1,selections:[{args:null,kind:"FragmentSpread",name:"ProjectItemSection"},{alias:null,args:null,concreteType:"ProjectV2",kind:"LinkedField",name:"project",plural:!1,selections:[i,s,r,o,d,u,m],storageKey:null}],storageKey:null}],storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:t,kind:"Operation",name:"updateIssueProjectsRelayMutation",selections:[{alias:null,args:c,concreteType:"AddProjectV2ItemByIdPayload",kind:"LinkedField",name:"addProjectV2ItemById",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2ItemEdge",kind:"LinkedField",name:"projectEdge",plural:!1,selections:[{alias:null,args:null,concreteType:"ProjectV2Item",kind:"LinkedField",name:"node",plural:!1,selections:[i,{alias:null,args:null,kind:"ScalarField",name:"isArchived",storageKey:null},{alias:null,args:null,concreteType:"ProjectV2",kind:"LinkedField",name:"project",plural:!1,selections:[i,s,{alias:null,args:null,kind:"ScalarField",name:"template",storageKey:null},u,d,{alias:null,args:p,concreteType:null,kind:"LinkedField",name:"field",plural:!1,selections:[g,{kind:"InlineFragment",selections:[i,y,{alias:null,args:null,concreteType:"ProjectV2SingleSelectFieldOption",kind:"LinkedField",name:"options",plural:!0,selections:[i,h,y,f,k,{alias:null,args:null,kind:"ScalarField",name:"descriptionHTML",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"description",storageKey:null}],storageKey:null}],type:"ProjectV2SingleSelectField",abstractKey:null},b],storageKey:'field(name:"Status")'},r,o,m],storageKey:null},{alias:null,args:p,concreteType:null,kind:"LinkedField",name:"fieldValueByName",plural:!1,selections:[g,{kind:"InlineFragment",selections:[i,h,y,f,k],type:"ProjectV2ItemFieldSingleSelectValue",abstractKey:null},b],storageKey:'fieldValueByName(name:"Status")'}],storageKey:null}],storageKey:null},{alias:null,args:null,filters:null,handle:"appendEdge",key:"",kind:"LinkedHandle",name:"projectEdge",handleArgs:[{kind:"Variable",name:"connections",variableName:"connections"}]}],storageKey:null}]},params:{id:"b9a688cdfd72ea1627e9e0c19b9b67f1",metadata:{},name:"updateIssueProjectsRelayMutation",operationKind:"mutation",text:null}});n.hash="dbe2b16a81c1878c83467c6e3a8a0a7c";var t,c,i,s,r,o,d,u,m,p,g,y,h,f,k,b,z=l(18312);function F({environment:e,connectionId:a,projectId:l,issueId:t,clientMutationId:c,onError:i,onCompleted:s}){if(l)return(0,z.commitMutation)(e,{mutation:n,variables:{input:{contentId:t,projectId:l,clientMutationId:c},connections:a?[a]:[]},onError:e=>i&&i(e),onCompleted:e=>s&&s(e)})}},81709:(e,a,l)=>{l.d(a,{j:()=>s});var n=l(74848),t=l(73454),c=l(31604),i=l(96540);function s({errorMessage:e,anchorElement:a,open:l=!1}){let[s,r]=(0,i.useState)(l);return{createFallbackComponent:(0,i.useCallback)(l=>a?(0,n.jsx)(c.T,{width:"medium",height:"small",open:s,onOpen:()=>r(!0),onClose:()=>r(!1),renderAnchor:a,children:(0,n.jsx)("div",{className:"useItemPickerErrorFallback-module__errorOverlayContainer--Z5I2C",children:(0,n.jsx)(t.h,{message:e,retry:l,className:"useItemPickerErrorFallback-module__errorWithRetry--kl8Hn"})})}):null,[a,e,s])}}},81724:(e,a,l)=>{l.d(a,{$K:()=>t,AI:()=>d,Al:()=>i,GQ:()=>c,rp:()=>n,t7:()=>r,yJ:()=>s});let n="Blank issue",t="BLANK_ISSUE";function c(e){return"IssueForm"===e.__typename}function i(e){return"IssueTemplate"===e.__typename}function s(e){return"BlankIssue"===e.__typename}let r={IssueForm:"IssueForm",IssueTemplate:"IssueTemplate",ContactLink:"ContactLink",BlankIssue:"BlankIssue"},o={name:n,fileName:t,kind:r.BlankIssue,data:{__typename:"BlankIssue",__id:t,title:"",body:"",assignees:{edges:[]},labels:{edges:[]}}};function d(){return o}},83116:(e,a,l)=>{l.d(a,{D:()=>ei});var n,t,c,i,s,r,o,d,u,m,p,g,y,h,f,k,b,z,F,I,S,C,v,x,j,M,T,_,N,K,L=l(74848),w=l(34267),P=l(38621),A=l(26108),E=l(96540),V=l(18312);let R=(n=[{defaultValue:null,kind:"LocalArgument",name:"ids"}],t=[{kind:"Variable",name:"ids",variableName:"ids"}],i={alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},s={alias:null,args:null,kind:"ScalarField",name:"state",storageKey:null},r={alias:null,args:null,kind:"ScalarField",name:"stateReason",storageKey:null},o={alias:null,args:null,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[c={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"nameWithOwner",storageKey:null}],storageKey:null},{fragment:{argumentDefinitions:n,kind:"Fragment",metadata:null,name:"IssuePickerSelectedIssuesQuery",selections:[{alias:null,args:t,concreteType:null,kind:"LinkedField",name:"nodes",plural:!0,selections:[{kind:"InlineFragment",selections:[c,i,s,r,o,d={alias:null,args:null,kind:"ScalarField",name:"databaseId",storageKey:null},u={alias:null,args:null,kind:"ScalarField",name:"number",storageKey:null},m={alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},p={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null}],type:"Issue",abstractKey:null}],storageKey:null}],type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:n,kind:"Operation",name:"IssuePickerSelectedIssuesQuery",selections:[{alias:null,args:t,concreteType:null,kind:"LinkedField",name:"nodes",plural:!0,selections:[p,c,{kind:"InlineFragment",selections:[i,s,r,o,d,u,m],type:"Issue",abstractKey:null}],storageKey:null}]},params:{id:"ab7e8eddc2f0411413899568c6f97ae4",metadata:{},name:"IssuePickerSelectedIssuesQuery",operationKind:"query",text:null}});R.hash="c4d195f7754769a3937a686385b27e39",({argumentDefinitions:[],kind:"Fragment",metadata:null,name:"IssuePickerIssue",selections:[g={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"state",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"stateReason",storageKey:null},{alias:null,args:null,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[g,{alias:null,args:null,kind:"ScalarField",name:"nameWithOwner",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"databaseId",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"number",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null}],type:"Issue",abstractKey:null}).hash="196c5dfa10bac249c09a7e5a825a3eb9";var D=l(19918),O=l(86391),B=l(81709),$=l(30721),U=l(10436);let q={fragment:{argumentDefinitions:[y={defaultValue:null,kind:"LocalArgument",name:"assignee"},h={defaultValue:null,kind:"LocalArgument",name:"author"},f={defaultValue:null,kind:"LocalArgument",name:"commenters"},k={defaultValue:10,kind:"LocalArgument",name:"first"},b={defaultValue:null,kind:"LocalArgument",name:"mentions"},z={defaultValue:null,kind:"LocalArgument",name:"other"},F={defaultValue:null,kind:"LocalArgument",name:"queryIsUrl"},I={defaultValue:null,kind:"LocalArgument",name:"resource"}],kind:"Fragment",metadata:null,name:"useIssueFilteringQuery",selections:[{args:null,kind:"FragmentSpread",name:"useIssueFilteringFragment"}],type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:[f,b,y,h,z,k,I,F],kind:"Operation",name:"useIssueFilteringQuery",selections:[{alias:"commenters",args:[S={kind:"Variable",name:"first",variableName:"first"},{kind:"Variable",name:"query",variableName:"commenters"},C={kind:"Literal",name:"type",value:"ISSUE"}],concreteType:"SearchResultItemConnection",kind:"LinkedField",name:"search",plural:!1,selections:j=[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"nodes",plural:!0,selections:x=[{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},{kind:"InlineFragment",selections:[v={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"state",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"stateReason",storageKey:null},{alias:null,args:null,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[v,{alias:null,args:null,kind:"ScalarField",name:"nameWithOwner",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"databaseId",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"number",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null}],type:"Issue",abstractKey:null},{kind:"InlineFragment",selections:[v],type:"Node",abstractKey:"__isNode"}],storageKey:null}],storageKey:null},{alias:"mentions",args:[S,{kind:"Variable",name:"query",variableName:"mentions"},C],concreteType:"SearchResultItemConnection",kind:"LinkedField",name:"search",plural:!1,selections:j,storageKey:null},{alias:"assignee",args:[S,{kind:"Variable",name:"query",variableName:"assignee"},C],concreteType:"SearchResultItemConnection",kind:"LinkedField",name:"search",plural:!1,selections:j,storageKey:null},{alias:"author",args:[S,{kind:"Variable",name:"query",variableName:"author"},C],concreteType:"SearchResultItemConnection",kind:"LinkedField",name:"search",plural:!1,selections:j,storageKey:null},{alias:"other",args:[S,{kind:"Variable",name:"query",variableName:"other"},C],concreteType:"SearchResultItemConnection",kind:"LinkedField",name:"search",plural:!1,selections:j,storageKey:null},{condition:"queryIsUrl",kind:"Condition",passingValue:!0,selections:[{alias:null,args:[{kind:"Variable",name:"url",variableName:"resource"}],concreteType:null,kind:"LinkedField",name:"resource",plural:!1,selections:x,storageKey:null}]}]},params:{id:"fd3a643214580202448e306c6dc70a42",metadata:{},name:"useIssueFilteringQuery",operationKind:"query",text:null}};q.hash="7805f5acc9dd7dba8b26177327542d38";let H={argumentDefinitions:[{kind:"RootArgument",name:"assignee"},{kind:"RootArgument",name:"author"},{kind:"RootArgument",name:"commenters"},{kind:"RootArgument",name:"first"},{kind:"RootArgument",name:"mentions"},{kind:"RootArgument",name:"other"},{kind:"RootArgument",name:"queryIsUrl"},{kind:"RootArgument",name:"resource"}],kind:"Fragment",metadata:null,name:"useIssueFilteringFragment",selections:[{alias:"commenters",args:[M={kind:"Variable",name:"first",variableName:"first"},{kind:"Variable",name:"query",variableName:"commenters"},T={kind:"Literal",name:"type",value:"ISSUE"}],concreteType:"SearchResultItemConnection",kind:"LinkedField",name:"search",plural:!1,selections:K=[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"nodes",plural:!0,selections:N=[{kind:"InlineFragment",selections:[_={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"state",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"stateReason",storageKey:null},{alias:null,args:null,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[_,{alias:null,args:null,kind:"ScalarField",name:"nameWithOwner",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"databaseId",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"number",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null}],type:"Issue",abstractKey:null}],storageKey:null}],storageKey:null},{alias:"mentions",args:[M,{kind:"Variable",name:"query",variableName:"mentions"},T],concreteType:"SearchResultItemConnection",kind:"LinkedField",name:"search",plural:!1,selections:K,storageKey:null},{alias:"assignee",args:[M,{kind:"Variable",name:"query",variableName:"assignee"},T],concreteType:"SearchResultItemConnection",kind:"LinkedField",name:"search",plural:!1,selections:K,storageKey:null},{alias:"author",args:[M,{kind:"Variable",name:"query",variableName:"author"},T],concreteType:"SearchResultItemConnection",kind:"LinkedField",name:"search",plural:!1,selections:K,storageKey:null},{alias:"other",args:[M,{kind:"Variable",name:"query",variableName:"other"},T],concreteType:"SearchResultItemConnection",kind:"LinkedField",name:"search",plural:!1,selections:K,storageKey:null},{condition:"queryIsUrl",kind:"Condition",passingValue:!0,selections:[{alias:null,args:[{kind:"Variable",name:"url",variableName:"resource"}],concreteType:null,kind:"LinkedField",name:"resource",plural:!1,selections:N,storageKey:null}]}],type:"Query",abstractKey:null};H.hash="c49d3e50365f7955d0d96fe3eaaa3d66";var W=l(38143),G=l(89850),Q=l(46747);let Y=e=>e.id,X={groupId:"selected",header:{title:"Selected"}},Z={groupId:"suggestions",header:{title:"Suggestions",variant:"filled"}},J=[X,Z],ee=new Map;function ea({onIssueSelection:e,selectedIssueIds:a,hiddenIssueIds:l,owner:n,repositoryNameWithOwner:t,pickerId:c,isLoading:i=!1,...s}){let[r,o]=(0,E.useState)(""),{isLoading:d,isError:u,items:m}=((e,a="",l,n)=>{let t=(0,V.useRelayEnvironment)(),[c,i]=(0,E.useState)(!0),[s,r]=(0,E.useState)(!1),[o,d]=(0,E.useState)(null),u=(0,E.useRef)(null),m=(0,E.useCallback)(e=>{i(!0),u.current?.unsubscribe(),u.current=(0,$.SD)({environment:t,query:q,variables:(0,G.A2)(a,e,l)}).subscribe({next:e=>{d(e??null),i(!1),r(!1)},error:()=>{r(!0),i(!1)}})},[t,a,l]),p=(0,Q.d)(e=>m(e),W.t.pickerDebounceTime);(0,E.useEffect)(()=>{p(e)},[p,e]),(0,E.useEffect)(()=>()=>{u.current?.unsubscribe()},[]);let g=(0,V.useFragment)(H,o);return{isLoading:c,isError:s,items:(0,E.useMemo)(()=>{if(!g)return new Map;{if(g.resource?.__typename==="Issue")return new Map([[g.resource?.id,g.resource]]);let e=[...g.commenters?.nodes||[],...g.mentions?.nodes||[],...g.assignee?.nodes||[],...g.author?.nodes||[],...g.other?.nodes||[]].filter(e=>e?.__typename==="Issue"),a=new Map;for(let l of e)n?.some(e=>e===l.id)||a.set(l.id,l);return a}},[n,g])}})(r,n,t,l),{createFallbackComponent:p}=(0,B.j)({errorMessage:D.k.cantEditItems("issues"),anchorElement:s.anchorElement,open:!0});return u?p(()=>{}):(0,L.jsx)(el,{items:i?ee:m,isLoading:d||i,...s,selectedIssueIds:a,hiddenIssueIds:l,filter:r,setFilter:o,onIssueSelection:e,repositoryNameWithOwner:t,pickerId:c})}function el({items:e,onIssueSelection:a,anchorElement:l,setFilter:n,isLoading:t,title:c,onClose:i,triggerOpen:s,selectedIssueIds:r,filter:o,pickerId:d,selectionVariant:u="single",subtitle:m,className:p,notice:g,insidePortal:y,responsiveOnNarrow:h}){let f=(0,V.useRelayEnvironment)(),[k,b]=(0,E.useState)({}),z=(0,E.useCallback)(e=>new Promise((a,l)=>{(0,$.SD)({environment:f,query:R,variables:{ids:e}}).subscribe({next:e=>{null!==e&&a(e)},error:e=>{l(e)}})}),[f]);for(let[a,l]of((0,E.useEffect)(()=>{if(!t&&r){let l=[];for(let a of r){let n=e.get(a);n?b(e=>({...e,[a]:n})):k?.[a]||l.push(a)}l.length>0&&a(l)}async function a(e){let{nodes:a=[]}=await z(e);for(let e of a)e&&"Issue"===e.__typename&&b(a=>({...a,[e.id]:e}))}},[t,e]),Object.entries(k)))e.set(a,l);let F=Array.from(e.values()),I=F.findIndex(e=>e.number===Number(o));if(I>0){let[e]=F.splice(I,1);e&&F.unshift(e)}let S=(0,E.useCallback)(e=>{var a,l;let n,t,{icon:c,fill:i}=(a=e.state,l=e.stateReason,n=P.IssueOpenedIcon,t="open.fg","CLOSED"===a&&(n="COMPLETED"===l?P.IssueClosedIcon:P.SkipIcon,t="COMPLETED"===l?"done.fg":"muted.fg"),{icon:n,fill:t}),s=r?.includes(e.id);return{id:e.id,text:e.title,sx:{wordBreak:"break-word"},source:e,groupId:s?X.groupId:Z.groupId,leadingVisual:()=>(0,L.jsx)(U.m4,{icon:c,sx:{path:{fill:i}}}),trailingVisual:()=>(0,L.jsx)("span",{className:"IssuePicker-module__issueNumberText--eQZT6",children:`#${e.number}`}),description:s?e.repository.nameWithOwner:void 0,descriptionVariant:"block"}},[r]),C=(0,E.useRef)(null),v=(0,E.useMemo)(()=>r?.length?J:J.filter(e=>e.groupId!==X.groupId),[r]),x=(0,E.useMemo)(()=>0===F.length,[F.length]);return(0,L.jsx)(O.O,{loading:t,items:F,initialSelectedItems:r||[],filterItems:n,title:c||D.k.issueHeader,getItemKey:Y,convertToItemProps:S,placeholderText:"Search issues",selectionVariant:u,onSelectionChange:a,renderAnchor:l,height:"large",width:"medium",maxVisibleItems:-1,resultListAriaLabel:"issue results",selectPanelRef:C,triggerOpen:s,groups:v,onClose:i,pickerId:d,subtitle:m,className:p,notice:g,suppressNoMatchItem:!0,improvedNoMatchAccessibility:x,noMatchMessage:x?{title:"No issues found",body:"Try changing your search term or selecting a different repository.",variant:"empty"}:void 0,insidePortal:y,responsiveOnNarrow:h})}try{ea.displayName||(ea.displayName="IssuePicker")}catch{}try{el.displayName||(el.displayName="IssuePickerInternal")}catch{}var en=l(81171);let et="repository-picker",ec="issue-picker";function ei({pickerType:e=null,anchorElement:a,onPickerTypeChange:l,selectedIssueIds:n,hiddenIssueIds:t,...c}){let[i,s]=(0,E.useState)(e);return((0,E.useEffect)(()=>{s(e)},[e]),(0,E.useEffect)(()=>{e!==i&&l?.(i)},[l,i]),null===i)?a({onClick:()=>s("Issue")}):(0,L.jsx)(es,{anchorElement:a,selectedIssueIds:n,hiddenIssueIds:t,...c,setPickerType:s,pickerType:i})}function es({anchorElement:e,onIssueSelection:a,organization:l,defaultRepositoryNameWithOwner:n,pickerType:t,setPickerType:c,selectedIssueIds:i,hiddenIssueIds:s,issuePickerProps:r,repositoryPickerProps:o}){let[d,u]=(0,E.useState)(n),[m,p]=(0,E.useState)(void 0),[g,y]=(0,E.useState)(null),{updateOpenState:h}=(0,w.t)(),f=(0,V.useRelayEnvironment)(),k=(0,E.useCallback)(()=>{c("Repository")},[c]),b=(0,E.useCallback)(()=>{c(e=>"Issue"===e?"Issue":null),h(et,!1)},[c,h]),z=(0,E.useCallback)(()=>{c(e=>"Repository"===e?"Repository":null),h(ec,!1)},[c,h]),F=(0,E.useCallback)(e=>{e?.nameWithOwner&&u(e?.nameWithOwner),(d||e?.nameWithOwner)&&c("Issue")},[c,d]);switch((0,E.useEffect)(()=>{(async()=>{y(await (0,en.St)(f,{first:5,hasIssuesEnabled:!0}))})()},[]),(0,E.useEffect)(()=>{!async function(){let[e,a]=d.split("/");if(e&&a){let l=await (0,en.tZ)(f,e,a);null!=l&&p(l)}}()},[d,f]),t){case"Repository":if(!g)return null;return(0,L.jsx)(en.f0,{initialRepository:m,preventDefault:!0,onSelect:F,organization:l,topRepositories:g,anchorElement:e,onClose:b,triggerOpen:!0,title:"Select a repository",pickerId:et,...o});case"Issue":return(0,L.jsx)(ea,{selectedIssueIds:i,hiddenIssueIds:s,onIssueSelection:e=>{a(e),c(null)},anchorElement:e,repositoryNameWithOwner:d,onClose:z,title:(0,L.jsxs)("div",{className:"RepositoryAndIssuePicker-module__BackToRepositorySelectionButton--bl2wm",children:[(0,L.jsx)(A.K,{icon:P.ArrowLeftIcon,variant:"invisible","data-testid":"back-to-repo-selection-button","aria-label":"Back to repository selection",tooltipDirection:"n",onClick:k}),(0,L.jsx)("span",{children:d})]}),triggerOpen:!0,pickerId:ec,...r})}}try{ei.displayName||(ei.displayName="RepositoryAndIssuePicker")}catch{}try{es.displayName||(es.displayName="RepositoryAndIssuePickerInternal")}catch{}},85346:(e,a,l)=>{l.d(a,{u:()=>z,R:()=>k});var n=l(74848),t=l(19918),c=l(81289),i=l(81709),s=l(22829),r=l(97665),o=l(96540),d=l(96379),u=l(47544);async function m({owner:e,repo:a,query:l,count:n}){let t={owner:e,repo:a};l&&(t.query=l),n&&(t.count=n);let c=(0,u.JF)("issue_types",t),i=await (0,d.lS)(c);return await i.json()}var p=l(73049),g=l(30459),y=l(27849);function h(e){return"object"==typeof e&&null!==e&&"string"==typeof e.id&&"string"==typeof e.name&&("string"==typeof e.description||null===e.description||void 0===e.description)&&"string"==typeof e.color&&("boolean"==typeof e.isEnabled||void 0===e.isEnabled)}let f={Check:e=>"object"==typeof e&&null!==e&&Array.isArray(e.issueTypes)&&e.issueTypes.every(h),Code:()=>"manual-validator",*Errors(){}};async function k(e,{owner:a,repo:l,query:n,count:t,persister:c}){return await e.fetchQuery({queryKey:["item_picker","issue_types",{owner:a,repo:l,query:n,count:t}],queryFn:async()=>{let e=await m({owner:a,repo:l,query:n,count:t});return{issueTypes:(0,p.A)(e).data.repository.issueTypes.edges.map(e=>e.node)}},persister:c})}function b({owner:e,repo:a,...l}){let[c,d]=(0,o.useState)(!1),[u,m]=(0,o.useState)(0),[p,h]=(0,o.useState)(!1),[b,z]=(0,o.useState)(null),[F,I]=(0,o.useState)(1),S=(0,r.jE)(),{sendAnalyticsEvent:C}=(0,g.s)();(0,o.useEffect)(()=>{performance.mark("issue-type-picker-opened")},[]),(0,o.useEffect)(()=>{(async()=>{try{d(!0);let l=async(e,a,l)=>(0,y.y)({validator:f,sendAnalyticsEvent:C,alwaysRefetch:!0,enabled:!0})(e,a,l),n=await k(S,{owner:e,repo:a,query:"",persister:l});z(n),d(!1),h(!1)}catch{h(!0),d(!1)}})()},[u,e,a,S,C]),(0,o.useEffect)(()=>{if(!c&&b&&F>0)try{performance.mark("issue-type-picker-rendered");let e=performance.measure("issue-type-picker-duration","issue-type-picker-opened","issue-type-picker-rendered");C("issue_type_picker.render_duration",void 0,{duration:e.duration,caching_enabled:!0}),performance.clearMarks("issue-type-picker-opened"),performance.clearMarks("issue-type-picker-rendered"),performance.clearMeasures("issue-type-picker-duration")}catch{}},[c,b,C,F]);let v=(0,o.useRef)(null),x=(0,o.useCallback)(()=>{performance.mark("issue-type-picker-opened"),I(e=>e+1)},[]),{createFallbackComponent:j}=(0,i.j)({errorMessage:t.k.cantEditItems("types"),anchorElement:e=>l.anchorElement(e,v),open:!0});return p?j(()=>m(e=>e+1)):(0,n.jsx)(s.f,{issueTypes:b?.issueTypes??[],isLoading:c,...l,onOpen:x})}function z({owner:e,repo:a,anchorElement:l,readonly:t,activeIssueType:i,...s}){return(0,n.jsx)(c.y,{keybindingCommandId:"item-pickers:open-issue-type",anchorElement:(e,a)=>l(e,a),createChild:()=>(0,n.jsx)(b,{owner:e,repo:a,readonly:t,activeIssueType:i,triggerOpen:!0,anchorElement:l,...s}),insidePortal:s.insidePortal})}try{b.displayName||(b.displayName="ItemPickerFetcher")}catch{}try{z.displayName||(z.displayName="IssueTypePicker")}catch{}},85962:(e,a,l)=>{l.d(a,{I:()=>i,r:()=>c});var n=l(74848),t=l(38621);let c={OPEN:({className:e="",...a})=>(0,n.jsx)(t.IssueOpenedIcon,{"aria-label":"Open",...a,className:`fgColor-open ${e}`}),COMPLETED:({className:e="",...a})=>(0,n.jsx)(t.IssueClosedIcon,{"aria-label":"Completed",...a,className:`fgColor-done ${e}`}),NOT_PLANNED:({className:e="",...a})=>(0,n.jsx)(t.SkipIcon,{"aria-label":"Not planned",...a,className:`fgColor-muted ${e}`}),DUPLICATE:({className:e="",...a})=>(0,n.jsx)(t.SkipIcon,{"aria-label":"Duplicate",...a,className:`fgColor-muted ${e}`})},i={MERGED:({className:e="",...a})=>(0,n.jsx)(t.GitMergeIcon,{"aria-label":"Merged",...a,className:`fgColor-done ${e}`}),IN_MERGE_QUEUE:({className:e="",...a})=>(0,n.jsx)(t.GitMergeQueueIcon,{"aria-label":"In merge queue",...a,className:`fgColor-attention ${e}`}),OPEN:({className:e="",...a})=>(0,n.jsx)(t.GitPullRequestIcon,{"aria-label":"Open",...a,className:`fgColor-open ${e}`}),CLOSED:({className:e="",...a})=>(0,n.jsx)(t.GitPullRequestClosedIcon,{"aria-label":"Closed",...a,className:`fgColor-closed ${e}`}),DRAFT:({className:e="",...a})=>(0,n.jsx)(t.GitPullRequestDraftIcon,{"aria-label":"Draft",...a,className:`fgColor-draft ${e}`})}},88743:(e,a,l)=>{l.d(a,{e:()=>a4});var n,t,c,i,s,r,o,d,u,m,p,g,y,h,f,k,b,z,F,I,S,C,v,x,j,M,T,_,N,K,L,w,P,A,E=l(74848),V=l(20538),R=l(17855),D=l(42118),O=l(24550),B=l(25641),$=l(21327),U=l(81124),q=l(62559),H=l(38102),W=l(69599),G=l(98646),Q=l(977),Y=l(3047),X=l(81688),Z=l(27408),J=l(43258),ee=l(83494),ea=l(30459),el=l(96459),en=l(38621),et=l(57387),ec=l(11680),ei=l(72511),es=l(10095),er=l(43715),eo=l(12683),ed=l(34164),eu=l(96540),em=l(18312),ep=l(16642),eg=l(98338),ey=l(96480),eh=l(17831),ef=l(53419),ek=l(96379),eb=l(69726),ez=l(86877),eF=l(10576);function eI({isOpen:e,onClose:a,onGenerate:l,repoOwner:n,repoName:t,title:c,body:i,returnFocusRef:s}){let[r,o]=(0,eu.useState)(""),[d,u]=(0,eu.useState)(!1),[m,p]=(0,eu.useState)(null),{sendAnalyticsEvent:g}=(0,ea.s)(),y=!!(c?.trim()||i?.trim()||r?.trim()),h=(0,eu.useCallback)(()=>{o(""),p(null),a()},[a]),f=(0,eu.useCallback)(async()=>{g("analytics.click","ISSUE_CREATE_GENERATE_DESCRIPTION_WITH_COPILOT",{repoNWO:`${n}/${t}`,hasTitle:!!c,hasExistingDescription:!!i,hasAdditionalContext:!!r}),u(!0),p(null);try{let e=await (0,ek.lS)(`/${n}/${t}/issues/new/generate_copilot_description`,{method:"POST",body:{title:c,body:i,context:r}});if(!e.ok){p(eg.k.copilotGenerateError),eS("response_not_ok");return}let a=await e.json(),s=a.title,d=a.description;if(!s||!d||0===s.trim().length||0===d.trim().length){p(eg.k.copilotGenerateError),eS(`response_missing${!s?"_title":""}${!d?"_description":""}`);return}eS(),l(s,d),o("")}catch(e){p(eg.k.copilotGenerateError),eS(e instanceof Error?e.message:"unknown_error"),(0,H.N7)(e)}finally{u(!1)}},[g,n,t,c,i,r,l]);return e?(0,E.jsx)(et.l,{title:eg.k.copilotGenerateDialogTitle,onClose:h,footerButtons:[{buttonType:"default",content:"Cancel",onClick:h,disabled:d},{buttonType:"primary",content:d?(0,E.jsx)(eb.A,{size:"small",className:"mt-1 mr-1"}):eg.k.copilotGenerateDialogGenerateButton,onClick:f,disabled:d||!y}],returnFocusRef:s,children:(0,E.jsxs)(eo.az,{sx:{display:"flex",flexDirection:"column",gap:3},children:[m&&(0,E.jsxs)(ei.A,{variant:"danger",children:[(0,E.jsx)(es.A,{icon:en.AlertIcon}),m]}),!y&&(0,E.jsxs)(ei.A,{variant:"warning",children:[(0,E.jsx)(es.A,{icon:en.AlertIcon}),eg.k.copilotGenerateValidationWarning]}),(0,E.jsxs)(ez.A,{disabled:d,children:[(0,E.jsx)(ez.A.Label,{children:eg.k.copilotGenerateDialogTextareaLabel}),(0,E.jsx)(eF.Ay,{value:r,onChange:e=>o(e.target.value),placeholder:eg.k.copilotGenerateDialogTextareaPlaceholder,rows:6,block:!0,className:"mt-3"})]})]})}):null}function eS(e,a,l,n){(0,ef.BI)("copilot.create_issue_description",{hasTitle:!!a,hasExistingDescription:!!l,hasAdditionalContext:!!n,error:e})}try{eI.displayName||(eI.displayName="CopilotGenerateDescriptionDialog")}catch{}var eC=l(62180),ev=l(71651),ex=l(30093);let ej=({title:e,titleValidationResult:a,titleInputRef:l,handleTitleChange:n})=>{let{settings:t}=(0,ev.z)(),c=(0,E.jsx)(ex.A,{ref:l,"aria-label":eg.k.issueCreateTitleLabel,placeholder:eg.k.issueCreateTitlePlaceholder,"aria-describedby":"issue-create-pane-title title-validation",value:e,onChange:n,onInput:n,"data-hpc":!0,autoFocus:!0,"data-react-autofocus":!0});return(0,E.jsx)("div",{className:"CreateIssueFormTitle-module__container--GhqlY",children:(0,E.jsxs)(ez.A,{className:"CreateIssueFormTitle-module__formControl--H5ulr",required:!0,children:[(0,E.jsx)(ez.A.Label,{className:"CreateIssueFormTitle-module__formControlLabel--ksDPF",children:eg.k.issueCreateTitleLabel}),(0,E.jsxs)("div",{className:"CreateIssueFormTitle-module__subcontainer--wchOC",children:[(0,E.jsx)(eu.Suspense,{fallback:c,children:(0,E.jsx)(eC.x,{tone:t.emojiTone,children:c})}),a&&(0,E.jsx)("span",{role:"alert","aria-live":"assertive",children:(0,E.jsx)(ez.A.Validation,{variant:"error",id:"title-validation",children:a})})]})]})})};try{ej.displayName||(ej.displayName="CreateIssueFormTitle")}catch{}let eM={fragment:{argumentDefinitions:n=[{defaultValue:null,kind:"LocalArgument",name:"id"}],kind:"Fragment",metadata:null,name:"useIssueFormSecondaryQuery",selections:[{alias:null,args:t=[{kind:"Variable",name:"id",variableName:"id"}],concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[{kind:"InlineFragment",selections:[c={alias:null,args:null,kind:"ScalarField",name:"securityPolicyUrl",storageKey:null},i={alias:null,args:null,kind:"ScalarField",name:"contributingFileUrl",storageKey:null},s={alias:null,args:null,kind:"ScalarField",name:"codeOfConductFileUrl",storageKey:null},r={alias:null,args:null,kind:"ScalarField",name:"supportFileUrl",storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"owner",plural:!1,selections:[{kind:"InlineFragment",selections:[{alias:null,args:o=[{kind:"Literal",name:"first",value:10}],concreteType:"IssueFieldsConnection",kind:"LinkedField",name:"pinnedIssueFields",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"nodes",plural:!0,selections:[d={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},p={kind:"InlineFragment",selections:m=[u={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"dataType",storageKey:null}],type:"IssueFieldText",abstractKey:null},g={kind:"InlineFragment",selections:m,type:"IssueFieldSingleSelect",abstractKey:null},y={kind:"InlineFragment",selections:m,type:"IssueFieldDate",abstractKey:null},h={kind:"InlineFragment",selections:m,type:"IssueFieldNumber",abstractKey:null}],storageKey:null}],storageKey:"pinnedIssueFields(first:10)"}],type:"Organization",abstractKey:null}],storageKey:null}],type:"Repository",abstractKey:null}],storageKey:null}],type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:n,kind:"Operation",name:"useIssueFormSecondaryQuery",selections:[{alias:null,args:t,concreteType:null,kind:"LinkedField",name:"node",plural:!1,selections:[d,{kind:"InlineFragment",selections:[c,i,s,r,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"owner",plural:!1,selections:[d,{kind:"InlineFragment",selections:[{alias:null,args:o,concreteType:"IssueFieldsConnection",kind:"LinkedField",name:"pinnedIssueFields",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"nodes",plural:!0,selections:[d,p,g,y,h,{kind:"InlineFragment",selections:[u],type:"Node",abstractKey:"__isNode"}],storageKey:null}],storageKey:"pinnedIssueFields(first:10)"}],type:"Organization",abstractKey:null},u],storageKey:null}],type:"Repository",abstractKey:null},u],storageKey:null}]},params:{id:"d3765abb61ac2c4f9019e654724d3043",metadata:{},name:"useIssueFormSecondaryQuery",operationKind:"query",text:null}};eM.hash="72c60bf38c11334e07dfc92e81deade1";var eT=l(30721);l(69487);var e_=l(46747),eN=l(65249),eK=l(4559),eL=l(97286),ew=l(24880),eP=l(23490),eA=l(77430),eE=l(19918),eV=l(46377),eR=l(59672);let eD=({ref:e,assignees:a,anchorProps:l,displayHotkey:n,MAX_DISPLAYED_ASSIGNEES:t=2,readonly:c})=>(0,E.jsx)(eV._,{leadingIconElement:a.slice(0,t).map(e=>(0,E.jsx)(eO,{assignee:e},e.login)),anchorText:a.length>1?eE.k.assignees:eE.k.noAssignees,anchorProps:l,sharedPickerMainValue:a.slice(0,t).map(e=>e.isCopilot?"Copilot":e.login).join(", ").concat(a.length>t?`, ${a.length-t}+`:""),ariaLabel:eE.k.selectAssignees,readonly:c,leadingIcon:en.PeopleIcon,hotKey:!c&&n?"A":void 0,ref:e});function eO({assignee:e}){return e.isCopilot?(0,E.jsx)(en.CopilotIcon,{}):(0,E.jsx)(eA.r,{"data-hovercard-url":(0,eR.dCN)({owner:e.login}),src:e.avatarUrl,size:16,alt:`@${e.login}`,className:"CompressedAssigneeAnchor-module__compressedAssigneeAvatar--y2Hg2"})}eD.displayName="CompressedAssigneeAnchor";try{eO.displayName||(eO.displayName="AssigneeLeadingVisual")}catch{}let eB=({ref:e,assignees:a,readonly:l,anchorProps:n})=>(0,E.jsx)(eD,{assignees:a||[],displayHotkey:!1,anchorProps:l?void 0:n,readonly:l,ref:e});eB.displayName="DefaultAssigneePickerAnchor";var e$=l(45750),eU=l(14307);let eq=({color:e})=>{let a=eU.i4.find(a=>a===e),{fg:l}=(0,eU.Wk)(a);return(0,E.jsx)("div",{style:{"--bg":`${l}`},className:"DefaultIssueTypePickerAnchor-module__issueTypeDot--KX5Dc"})},eH=({ref:e,activeIssueType:a,readonly:l,anchorProps:n})=>(0,E.jsx)(eV._,{anchorText:eE.k.noIssueTypes,sharedPickerMainValue:a?.name,anchorProps:l?void 0:n,ariaLabel:eE.k.selectIssueTypes,readonly:l,leadingIcon:en.IssueOpenedIcon,hotKey:void 0,ref:e,leadingIconElement:a&&(0,E.jsx)(eq,{color:a.color})});eH.displayName="DefaultIssueTypePickerAnchor";try{eq.displayName||(eq.displayName="IssueTypeDot")}catch{}var eW=l(85346),eG=l(73017);let eQ=({MAX_DISPLAYED_LABELS:e=5,labelColors:a})=>(0,E.jsx)("div",{className:"LabelDots-module__labelDotsContainer--sNiXI",children:a.slice(0,e).map((e,a)=>(0,E.jsx)(eo.az,{sx:{backgroundColor:`#${e}`},className:"LabelDots-module__labelDot--MZUOf"},`${a}-${e}`))});try{eQ.displayName||(eQ.displayName="LabelDots")}catch{}let eY=({ref:e,size:a="large",labelNamesWithColor:l,anchorProps:n,MAX_DISPLAYED_LABELS:t=5,readonly:c,leadingIcon:i,hotKey:s,anchorText:r})=>{let o=l.slice(0,t).map(e=>e.nameHTML).join(", ").concat(l.length>t?`, ${l.length-t}+`:"");return(0,E.jsx)(eV._,{anchorProps:n,readonly:c,anchorText:r||(l.length>1?eE.k.labels:eE.k.noLabels),sharedPickerMainValue:l.length>0&&(0,E.jsx)(eX,{labelNamesWithColor:l,MAX_DISPLAYED_LABELS:t,compressedLabelTitle:o}),leadingIconElement:l.length>0&&(0,E.jsx)(eQ,{MAX_DISPLAYED_LABELS:t,labelColors:l.map(e=>e.color)}),ariaLabel:eE.k.selectLabels,size:a,leadingIcon:i,hotKey:s,ref:e,compressedTitle:o})};eY.displayName="CompressedLabelsToken";let eX=({compressedLabelTitle:e})=>(0,E.jsx)(eG.JR,{html:e});try{eX.displayName||(eX.displayName="LabelNames")}catch{}let eZ=({ref:e,size:a="small",labels:l,anchorProps:n,displayHotkey:t,MAX_DISPLAYED_LABELS:c=2,readonly:i})=>(0,E.jsx)(eY,{size:a,labelNamesWithColor:l.map(e=>({nameHTML:e.nameHTML,color:e.color})),anchorProps:n,MAX_DISPLAYED_LABELS:c,readonly:i,leadingIcon:en.TagIcon,hotKey:!i&&t?"L":void 0,anchorText:l?.length===0?eE.k.noLabels:void 0,ref:e});eZ.displayName="CompressedLabelAnchor";let eJ=({ref:e,labels:a,readonly:l,anchorProps:n})=>(0,E.jsx)(eZ,{labels:a,readonly:l,displayHotkey:!1,anchorProps:l?void 0:n,ref:e});eJ.displayName="DefaultLabelAnchor";var e1=l(49669);let e0=({ref:e,activeMilestone:a,readonly:l,nested:n,anchorProps:t})=>(0,E.jsx)(eV._,{anchorText:eE.k.noMilestones,sharedPickerMainValue:a?.title,anchorProps:l?void 0:t,ariaLabel:eE.k.selectMilestones,readonly:l,nested:n,leadingIcon:en.MilestoneIcon,hotKey:void 0,ref:e});e0.displayName="DefaultMilestonePickerAnchor";var e2=l(90921),e3=l(5643),e4=l(25820),e5=l(75202),e6=l(41057);let e7=()=>(0,E.jsx)("div",{className:"MetadataFooterLoading-module__MetadataFooterLoadingContainer--MlVdF",children:(0,E.jsx)(e6.Q,{borderRadius:"pill",height:"lg",width:"400px"})});try{e7.displayName||(e7.displayName="MetadataFooterLoading")}catch{}var e8=l(36683),e9=l(43570),ae=l(68065),aa=l(72690),al=l(26108);let an="MetadataFooter-module__MetadataFooterSeparator--zajRG",at="MetadataFooter-module__animationClass--JG8Qb",ac=({fieldWithValue:e,buttonProps:a,className:l,readonly:n})=>{let t=(0,G.HZ)(e.field.dataType),c=(0,Y.nB)(t,e.value),i=ai(e),s=c?`${e.field.name}:`:e.field.name;return(0,E.jsx)(eV._,{anchorText:s,sharedPickerMainValue:c,leadingIcon:(0,G.mQ)(t),leadingIconElement:i,anchorProps:a,className:l,readonly:n},e.field.id)},ai=e=>{if("SINGLE_SELECT"===e.field.dataType&&e.value){let a=e.value,l=a?.color||"GRAY";return(0,E.jsx)(as,{color:l})}return null},as=({color:e})=>{let a=eU.i4.find(a=>a===e),{fg:l}=(0,eU.Wk)(a);return(0,E.jsx)("div",{style:{"--bg":`${l}`},className:"MetadataFooter-module__SingleSelectFieldDot--V_G0U"})},ar=(e,a)=>(0,E.jsx)(al.K,{onClick:a=>{e.onClick?.(a)},ref:a,icon:en.PlusIcon,variant:"default","aria-label":eg.k.setAdditionalFields,tooltipDirection:"n",size:"small"});try{ac.displayName||(ac.displayName="IssueFieldValueSharedEditorAnchor")}catch{}try{as.displayName||(as.displayName="SingleSelectFieldDot")}catch{}let ao="256px",ad=({pendingField:e,onCommit:a,onClose:l})=>ah((0,Y.Y0)(e,null),a,l,!0),au=({field:e,onChange:a,className:l,readonly:n})=>{let t=(0,eu.useCallback)((l,n)=>{a(e,n)},[a,e]);return e.field.id&&e.field.name?ah(e,t,void 0,!1,l,n):null},am=(e,a,l,n=!1,t)=>(0,E.jsx)(ae.lT,{fieldId:e.field.id,fieldName:e.field.name,initialValue:e.value,onCommit:a,renderAnchor:l,overrideWidth:ao,isNumber:!0,validate:e9.H,shouldOpen:n,onClose:t}),ap=(e,a,l,n=!1,t)=>(0,E.jsx)(ae.lT,{fieldId:e.field.id,fieldName:e.field.name,initialValue:e.value,onCommit:a,renderAnchor:l,overrideWidth:ao,shouldOpen:n,onClose:t}),ag=(e,a,l,n=!1,t)=>{let[c,i]=(0,eu.useState)(n);return(0,E.jsx)(e8.DatePicker,{anchor:e=>l(e),showClearButton:!0,showTodayButton:!0,variant:"single",dateFormat:"long",onChange:l=>{a(e.field.id,l)},value:e.value,placeholder:"Set date",open:c,onOpen:()=>{i(!0)},onClose:()=>{i(!1),t?.()},anchoredOverlayProps:{side:"outside-top"}},e.field.id)},ay=(e,a,l,n=!1,t)=>{let c=e.value;return(0,E.jsx)(aa.CZ,{fieldId:e.field.id,fieldName:e.field.name||"",selectedOption:c?.name||null,onSelectionChange:l=>{a(e.field.id,l)},anchorElement:e=>l(e),readonly:!1,isLazy:!0,shouldOpen:n,onClose:t,insidePortal:!0},e.field.id)},ah=(e,a,l,n=!1,t,c)=>{let i=a=>(0,E.jsx)(ac,{fieldWithValue:e,buttonProps:a,className:t,readonly:c},e.field.id);switch(e.field.dataType){case"SINGLE_SELECT":return ay(e,a,i,n,l);case"DATE":return ag(e,a,i,n,l);case"TEXT":return ap(e,a,i,n,l);case"NUMBER":return am(e,a,i,n,l)}};try{ad.displayName||(ad.displayName="IssueFieldValueSharedPendingEditor")}catch{}try{au.displayName||(au.displayName="IssueFieldValueSharedEditor")}catch{}try{am.displayName||(am.displayName="IssueFieldNumberEditor")}catch{}try{ap.displayName||(ap.displayName="IssueFieldTextEditor")}catch{}try{ag.displayName||(ag.displayName="IssueFieldDateEditor")}catch{}try{ay.displayName||(ay.displayName="IssueFieldSingleSelectEditor")}catch{}try{ah.displayName||(ah.displayName="IssueFieldEditor")}catch{}let af=({repo:e,owner:a,canSetAssignees:l,canSetLabels:n,canSetMilestone:t,canSetProjects:c,canSetIssueFields:i,canSetType:s,issueTypesEnabled:r,orgPinnedFields:o})=>{let{optionConfig:d}=(0,ey.a)(),{repository:u,labels:m,setLabels:p,assignees:g,setAssignees:y,projects:h,setProjects:f,milestone:k,setMilestone:b,issueType:z,setIssueType:F,setIssueFields:I}=(0,eh.u)(),S={insidePortal:d.insidePortal},C=(0,W.G7)("issue_metadata_add_field_button"),{pendingSelectedField:v,setPendingSelectedField:x,pinnedFields:j,unpinnedFields:M,selectedFieldNames:T,onPendingFieldCommit:_,onIssueFieldPickerSelectionChange:N,onIssueFieldValueChanged:K}=function({pinnedFieldsFromType:e,setIssueFieldsWithValues:a,scopedFields:l}){let[n,t]=(0,eu.useState)([]),[c,i]=(0,eu.useState)(null),s=(0,eu.useMemo)(()=>e||[],[e]),r=(0,eu.useCallback)(e=>{t(e);let l=[];for(let a of e)a.value&&l.push(a);a(l)},[a]),o=(0,eu.useCallback)((e,a)=>{if(!c||c.id!==e)return;i(null);let l=(0,G.HZ)(c.dataType),t=(0,Y.vl)(l,a);if("string"==typeof t?!t.trim():!t)return;let s=[...n];c.name&&!s.some(e=>e.field.name===c.name)&&s.push((0,Y.Y0)(c,a)),r(s)},[n,c,r]),d=(0,eu.useCallback)(e=>{let a=e[0];a?.id&&a?.name&&a?.dataType&&i({id:a.id,name:a.name,dataType:(0,G.HZ)(a.dataType)})},[]),u=(0,eu.useCallback)((e,a)=>{s.find(a=>a.id===e.field.id)&&!n.find(a=>a.field.id===e.field.id)?r([...n,(0,Y.Y0)(e.field,a)]):r(n.map(l=>l.field.id===e.field.id?(0,Y.Y0)(l.field,a):l).filter(e=>null!==e))},[n,s,r]),m=((e,a,l)=>{let n=[];for(let t of a){let a=e.find(e=>e.field.id===t.id);if(a)n.push(a);else{let e=l.find(e=>e.fieldId===t.id);n.push((0,Y.IE)(t,e?e.value:null,!!e))}}return n})(n,s,l),p=((e,a,l)=>{let n=l?.map(e=>e.fieldId)||[],t=[...new Set([...e.map(e=>e.field.id).filter(e=>void 0!==e),...n])],c=[];for(let n of t)if(!a.find(e=>e.id===n)){let a=l?.find(e=>e.fieldId===n),t=e.find(e=>e.field.id===n);c.push(t||(0,Y.IE)({id:n,name:a.fieldName,dataType:a.fieldType},a.value,!0))}return c})(n,s,l),g=m.map(e=>e.field.name).concat(p.map(e=>e.field.name)).filter(e=>void 0!==e);return{pendingSelectedField:c,setPendingSelectedField:i,pinnedFields:m,unpinnedFields:p,selectedFieldNames:g,onPendingFieldCommit:o,onIssueFieldPickerSelectionChange:d,onIssueFieldValueChanged:u}}({pinnedFieldsFromType:(0,eu.useMemo)(()=>(0,G.IR)(z?.pinnedFields?.filter(e=>e?.__typename!=="%other"))??o??[],[z,o]),setIssueFieldsWithValues:I,scopedFields:d.scopedFields||[]}),L=h[0]?.title||"",{sendAnalyticsEvent:w}=(0,ea.s)(),P=u&&(l||g.length>0)&&!d.scopedAssignees?{repo:u.name,owner:u.owner.login,readonly:!l,includeAuthorableBots:!1,includeAssignableBots:!0,assignees:g,assigneeTokens:[],anchorElement:(e,a)=>(0,E.jsx)(eB,{assignees:g,readonly:!l,anchorProps:{...e,id:"assignees-select-menu"},ref:a,...S}),onSelectionChange:y,...S}:null,A=null;return P&&(A=(0,E.jsx)(e$._,{...P})),(0,E.jsx)(eu.Suspense,{fallback:(0,E.jsx)(e7,{}),children:(0,E.jsxs)("div",{className:"MetadataFooter-module__MetadataFooterContainer--omn3p",children:[A,d.scopedAssignees&&(0,E.jsx)(eD,{assignees:d.scopedAssignees,displayHotkey:!1,anchorProps:void 0,readonly:!0}),(n||m.length>0)&&(0,E.jsx)(e1.t,{repo:e,owner:a,readonly:!n,canCreateLabel:n,labels:m,anchorElement:(e,a)=>(0,E.jsx)(eJ,{readonly:!n,labels:m,anchorProps:e,ref:a,...S}),onSelectionChange:p,...S}),r&&(s||null!==z)&&!d.scopedIssueType&&(0,E.jsx)(eW.u,{owner:a,repo:e,onSelectionChange:e=>{let a=e?.[0]||null;w("issue_create.update_issue_type","ISSUE_CREATE_UPDATE_ISSUE_TYPE_DIALOG",{issueTypeId:a?.id??""}),F(a)},anchorElement:e=>(0,E.jsx)(eH,{readonly:!s,activeIssueType:z,anchorProps:e,...S}),readonly:!s,activeIssueType:z??null,width:"medium",...S}),i&&j.map(e=>(0,E.jsx)(au,{field:e,onChange:K,className:at,readonly:e.readonly},e.field.id)),(r&&(s||null!==z)||i&&j.length>0)&&(0,E.jsx)("div",{className:an,"data-testid":"issue-fields-divider"}),d.scopedIssueType&&(0,E.jsx)(eV._,{anchorText:d.scopedIssueType,leadingIcon:en.IssueOpenedIcon,readonly:!0}),u&&!d.scopedProjectTitle&&(c||h.length>0)&&(0,E.jsx)(e5.t,{fallback:(0,E.jsx)(eV._,{anchorText:"Projects are unavailable",leadingIcon:en.AlertIcon,readonly:!0}),children:(0,E.jsx)(e4.w,{pickerId:"create-issue-projects-picker",readonly:!c,onSave:f,selectedProjects:h,owner:u.owner.login,repo:u.name,anchorElement:e=>(0,E.jsx)(e3.C,{nested:!1,readonly:!c,anchorProps:e,firstSelectedProjectTitle:L,...S}),...S})}),d.scopedProjectTitle&&(0,E.jsx)(eV._,{anchorText:d.scopedProjectTitle,leadingIcon:en.TableIcon,readonly:!0}),(t||null!==k)&&!d.scopedMilestone&&(0,E.jsx)(e2.D,{repo:e,owner:a,readonly:!t,canCreateMilestone:t,activeMilestone:k,anchorElement:(e,a)=>(0,E.jsx)(e0,{nested:!1,readonly:!t,activeMilestone:k,anchorProps:e,ref:a,...S}),onSelectionChange:e=>b(e?.[0]||null),...S}),d.scopedMilestone&&(0,E.jsx)(eV._,{anchorText:d.scopedMilestone,leadingIcon:en.MilestoneIcon,readonly:!0}),i&&M.map(e=>(0,E.jsx)(au,{field:e,onChange:K,className:at,readonly:e.readonly},e.field.id)),v&&(0,E.jsx)(ad,{pendingField:v,onCommit:_,onClose:()=>{x(null)}}),i&&C&&(0,E.jsxs)(E.Fragment,{children:[(0,E.jsx)("div",{className:an}),(0,E.jsx)(eP.iF,{owner:a,title:eg.k.addIssueField,fieldsSet:T,onSelectionChange:N,anchorElement:ar,...S})]})]})})};try{af.displayName||(af.displayName="MetadataFooter")}catch{}var ak=l(95104),ab=l(21725),az=l(63487),aF=l(43952),aI=l(14128),aS=l(83116),aC=l(5524),av=l(94236),ax=l(93513),aj=l(44871),aM=l(2495),aT=l(16810),a_=l(21798);let aN="RelationshipsSection-module__groupHeading--l5iUA",aK=[],aL=({sectionHeader:e,relationships:a,className:l})=>{let{parent:n,blockedBy:t,blocking:c}=a,i=t&&t.length>0,s=c&&c.length>0,r=n||i||s?void 0:ax.k.emptySections.relationships;return(0,E.jsx)(aT.w,{id:"sidebar-relationships-section",sectionHeader:e,emptyText:r,className:l,children:(0,E.jsxs)(aC.l,{variant:"full",className:"RelationshipsSection-module__actionListOverrides--ysNvn",children:[n&&(0,E.jsxs)(aC.l.Group,{children:[(0,E.jsx)(aC.l.GroupHeading,{as:"h4",className:aN,children:ax.k.relationNames.parentIssue}),(0,E.jsx)(aj.H,{issue:n})]}),i&&(0,E.jsxs)(E.Fragment,{children:[n&&(0,E.jsx)(aC.l.Divider,{}),(0,E.jsxs)(aC.l.Group,{children:[(0,E.jsx)(aC.l.GroupHeading,{as:"h4",className:aN,children:ax.k.relationNames.blockedByIssues}),t.map(e=>(0,E.jsx)(aj.H,{issue:e},e.id))]})]}),s&&(0,E.jsxs)(E.Fragment,{children:[(n||i)&&(0,E.jsx)(aC.l.Divider,{}),(0,E.jsxs)(aC.l.Group,{children:[(0,E.jsx)(aC.l.GroupHeading,{as:"h4",className:aN,children:ax.k.relationNames.blockingIssues}),c.map(e=>(0,E.jsx)(aj.H,{issue:e},e.id))]})]})]})})};function aw({owner:e,repo:a,readonly:l,parentIssue:n,onParentChange:t,blockedByIssues:c=aK,onBlockedByChange:i,blockingIssues:s=aK,onBlockingChange:r,className:o}){let[d,u]=(0,eu.useState)(!1),[m,p]=(0,eu.useState)(null),[g,y]=(0,eu.useState)(null),h=(0,eu.useRef)(null),f=(0,eu.useCallback)(e=>{p(e)},[]),k=(0,eu.useCallback)(e=>{t(e[0]||null),p(null),y(null)},[t]),b=(0,eu.useCallback)(e=>{i(e),p(null),y(null)},[i]),z=(0,eu.useCallback)(e=>{r(e),p(null),y(null)},[r]),F=(0,eu.useCallback)(e=>{"parent"===g?k(e):"blockedBy"===g?b(e):"blocking"===g&&z(e)},[g,k,b,z]),I=(0,eu.useMemo)(()=>"parent"===g?n?[n.id]:[]:"blockedBy"===g?c.map(e=>e.id):"blocking"===g?s.map(e=>e.id):[],[g,n,c,s]),S=(0,eu.useMemo)(()=>"parent"===g?"Select parent issue":"blockedBy"===g?"Mark current issue as blocked by\u2026":"blocking"===g?"Mark current issue as blocking\u2026":void 0,[g]),C=(0,eu.useMemo)(()=>"blockedBy"===g?s.map(e=>e.id):"blocking"===g?c.map(e=>e.id):[],[g,s,c]),v=(0,eu.useCallback)(()=>{u(!1),y("parent"),p("Issue")},[]),x=(0,eu.useCallback)(()=>{u(!1),y("blockedBy"),p("Issue")},[]),j=(0,eu.useCallback)(()=>{u(!1),y("blocking"),p("Issue")},[]),M=(0,eu.useCallback)(()=>{p(null),y(null),u(e=>!e)},[]),T=(0,eu.useCallback)(e=>{let{ref:a}=e;return a&&(a.current=h.current),(0,E.jsx)(E.Fragment,{})},[h]),_=l?(0,E.jsx)(aM.h,{title:ax.k.sectionTitles.relationships}):(0,E.jsxs)(E.Fragment,{children:[(0,E.jsx)(ee.ak,{commands:{"issue-create:edit-parent":v,"issue-create:mark-blocked-by":x,"issue-create:mark-blocking":j}}),(0,E.jsx)(a_.X,{ref:h,buttonProps:{onClick:M},readonly:l,title:ax.k.sectionTitles.relationships}),(0,E.jsx)(aS.D,{onPickerTypeChange:f,selectedIssueIds:I,hiddenIssueIds:C,onIssueSelection:F,organization:e,defaultRepositoryNameWithOwner:`${e}/${a}`,pickerType:m,issuePickerProps:{selectionVariant:"parent"===g?"single":"multiple",subtitle:S},anchorElement:T}),(0,E.jsx)(av.W,{open:d,onOpenChange:u,anchorRef:h,children:(0,E.jsx)(av.W.Overlay,{width:"medium",children:(0,E.jsx)(aC.l,{children:(0,E.jsxs)(aC.l.Group,{children:[(0,E.jsx)(ee.Vr,{commandId:"issue-create:edit-parent",onSelect:v,children:n?"Change or remove parent":"Add parent"}),(0,E.jsx)(ee.Vr,{commandId:"issue-create:mark-blocked-by",onSelect:x,children:c.length>0?"Add or change blocked by":"Mark as blocked by"}),(0,E.jsx)(ee.Vr,{commandId:"issue-create:mark-blocking",onSelect:j,children:s.length>0?"Add or change blocking":"Mark as blocking"})]})})})})]});return(0,E.jsx)(aL,{sectionHeader:_,relationships:{parent:n,blockedBy:c,blocking:s},className:o})}try{aL.displayName||(aL.displayName="RelationshipsSection")}catch{}try{aw.displayName||(aw.displayName="CreateIssueRelationshipsSection")}catch{}var aP=l(1293);let aA="MetadataSidebar-module__CreateIssueAssigneesSection--CPHmR",aE=({canSetAssignees:e,canSetLabels:a,canSetMilestone:l,canSetProjects:n,canSetType:t,canSetIssueFields:c,canSetRelationships:i,issueTypesEnabled:s,orgPinnedFields:r,isPinnedFieldsLoading:o})=>{let{optionConfig:d}=(0,ey.a)(),{repository:u,labels:m,setLabels:p,assignees:g,setAssignees:y,projects:h,setProjects:f,milestone:k,setMilestone:b,issueType:z,setIssueType:F,setIssueFields:I,parentIssue:S,setParentIssue:C,blockedByIssues:v,setBlockedByIssues:x,blockingIssues:j,setBlockingIssues:M}=(0,eh.u)(),T={insidePortal:d.insidePortal};return u?(0,E.jsxs)("div",{className:"MetadataSidebar-module__MetadataSidebarContainer--Q36lm",children:[(0,E.jsx)("h2",{className:"sr-only",children:"Metadata"}),u&&(0,E.jsx)(ak.b2,{repo:u.name,owner:u.owner.login,readonly:!e,assignees:g,onSelectionChange:y,className:aA,repository:u,issueNumber:void 0,onIssueUpdate:void 0,...T}),(0,E.jsx)(az.qn,{repo:u.name,owner:u.owner.login,readonly:!a,labels:m,onSelectionChange:p,...T}),s&&(0,E.jsx)(aP.pf,{owner:u.owner.login,repo:u.name,...T,viewerCanType:t,type:z,onSelectionChange:F}),c&&(0,E.jsx)(ab.u,{owner:u.owner.login,ownerId:u.owner.databaseId,onSelectionChange:I,issueType:z,orgPinnedFields:r,isPinnedFieldsLoading:o,...T}),(0,E.jsx)(aI.PH,{owner:u.owner.login,repo:u.name,projects:h,readonly:!n,onSelectionChange:f,...T}),(0,E.jsx)(aF.C5,{repo:u.name,owner:u.owner.login,milestone:k,onSelectionChange:b,viewerCanSetMilestone:l??!1,className:aA,...T}),(0,W.G7)("issue_create_relationships")&&(0,E.jsx)(aw,{owner:u.owner.login,repo:u.name,readonly:!i,parentIssue:S,onParentChange:C,blockedByIssues:v,onBlockedByChange:x,blockingIssues:j,onBlockingChange:M})]}):null};try{aE.displayName||(aE.displayName="MetadataSidebar")}catch{}let aV=({orgPinnedFields:e,isPinnedFieldsLoading:a})=>{let{optionConfig:l}=(0,ey.a)(),n=!l.insidePortal,{repository:t}=(0,eh.u)(),c=t?.viewerIssueCreationPermissions?.assignable??!1,i=t?.viewerIssueCreationPermissions?.labelable??!1,s=t?.viewerIssueCreationPermissions?.milestoneable??!1,r=t?.viewerIssueCreationPermissions?.triageable??!1,o=t?.viewerIssueCreationPermissions?.typeable??!1,d=t?.viewerIssueCreationPermissions?.canSetIssueFields??!1,u=t?.viewerIssueCreationPermissions?.triageable??!1,m=t?.owner?.issueTypesEnabled??!1,p={repo:t?.name||"",owner:t?.owner.login||"",canSetAssignees:c,canSetLabels:i,canSetMilestone:s,canSetProjects:r,canSetType:o,canSetIssueFields:d,canSetRelationships:u,issueTypesEnabled:m,orgPinnedFields:e,isPinnedFieldsLoading:a};return n?(0,E.jsx)(aE,{...p}):(0,E.jsx)(af,{...p})};try{aV.displayName||(aV.displayName="MetadataSelectors")}catch{}let aR=(f={defaultValue:!1,kind:"LocalArgument",name:"fetchParent"},k={defaultValue:null,kind:"LocalArgument",name:"input"},b=[{kind:"Variable",name:"input",variableName:"input"}],z={alias:null,args:null,kind:"ScalarField",name:"databaseId",storageKey:null},I={alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},S={alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null},C={alias:null,args:null,kind:"ScalarField",name:"number",storageKey:null},v={alias:null,args:null,kind:"ScalarField",name:"title",storageKey:null},x={alias:null,args:null,kind:"ScalarField",name:"url",storageKey:null},T={alias:null,args:null,concreteType:"Issue",kind:"LinkedField",name:"parent",plural:!1,selections:[F={alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,concreteType:"SubIssuesSummary",kind:"LinkedField",name:"subIssuesSummary",plural:!1,selections:[j={alias:null,args:null,kind:"ScalarField",name:"total",storageKey:null},M={alias:null,args:null,kind:"ScalarField",name:"completed",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"percentCompleted",storageKey:null}],storageKey:null}],storageKey:null},{fragment:{argumentDefinitions:[f,k],kind:"Fragment",metadata:null,name:"createIssueMutation",selections:[{alias:null,args:b,concreteType:"CreateIssuePayload",kind:"LinkedField",name:"createIssue",plural:!1,selections:[{alias:null,args:null,concreteType:"Issue",kind:"LinkedField",name:"issue",plural:!1,selections:[z,{alias:null,args:null,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[z,F,I,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"owner",plural:!1,selections:[S],storageKey:null}],storageKey:null},C,v,F,x,{condition:"fetchParent",kind:"Condition",passingValue:!0,selections:[{args:null,kind:"FragmentSpread",name:"SubIssuesListItem"},T]}],storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"errors",plural:!0,selections:[_={alias:null,args:null,kind:"ScalarField",name:"message",storageKey:null}],storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:[k,f],kind:"Operation",name:"createIssueMutation",selections:[{alias:null,args:b,concreteType:"CreateIssuePayload",kind:"LinkedField",name:"createIssue",plural:!1,selections:[{alias:null,args:null,concreteType:"Issue",kind:"LinkedField",name:"issue",plural:!1,selections:[z,{alias:null,args:null,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[z,F,I,{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"owner",plural:!1,selections:[N={alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},S,F],storageKey:null}],storageKey:null},C,v,F,x,{condition:"fetchParent",kind:"Condition",passingValue:!0,selections:[{alias:null,args:null,kind:"ScalarField",name:"state",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"stateReason",storageKey:null},{alias:null,args:null,concreteType:"IssueDependenciesSummary",kind:"LinkedField",name:"issueDependenciesSummary",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"blockedBy",storageKey:null}],storageKey:null},{alias:null,args:[{kind:"Literal",name:"first",value:10}],concreteType:"UserConnection",kind:"LinkedField",name:"assignees",plural:!1,selections:[K={alias:null,args:null,kind:"ScalarField",name:"totalCount",storageKey:null},{alias:null,args:null,concreteType:"UserEdge",kind:"LinkedField",name:"edges",plural:!0,selections:[{alias:null,args:null,concreteType:"User",kind:"LinkedField",name:"node",plural:!1,selections:[F,S,{alias:null,args:null,kind:"ScalarField",name:"avatarUrl",storageKey:null}],storageKey:null}],storageKey:null}],storageKey:"assignees(first:10)"},{alias:null,args:null,kind:"ScalarField",name:"titleHTML",storageKey:null},{alias:null,args:null,concreteType:"IssueType",kind:"LinkedField",name:"issueType",plural:!1,selections:[F,I,{alias:null,args:null,kind:"ScalarField",name:"color",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"SubIssuesSummary",kind:"LinkedField",name:"subIssuesSummary",plural:!1,selections:[j,M],storageKey:null},{alias:null,args:[{kind:"Literal",name:"first",value:0},{kind:"Literal",name:"includeClosedPrs",value:!0}],concreteType:"PullRequestConnection",kind:"LinkedField",name:"closedByPullRequestsReferences",plural:!1,selections:[K],storageKey:"closedByPullRequestsReferences(first:0,includeClosedPrs:true)"},T]}],storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"errors",plural:!0,selections:[N,_],storageKey:null}],storageKey:null}]},params:{id:"f06cbfa3acc3dd5ed6724c55e1fd64a2",metadata:{},name:"createIssueMutation",operationKind:"mutation",text:null}});aR.hash="a0fc1d6cb2e696257826bd50783fb175";var aD=l(10991),aO=l(79403);function aB(e,a){if(!a)return null;let l=a.getLinkedRecord("subIssues",{first:100});return l||null}var a$=l(78211),aU=l(84268),aq=l(79431);let aH="SimilarIssues-module__emptyState--LyYdg",aW=({state:e,stateReason:a})=>{let{sourceIcon:l}=(0,a$.e)({state:e,stateReason:a}),n=l("Issue");return(0,E.jsx)(n,{})};function aG({items:e,isLoading:a,isError:l,onExpandedChange:n,repoOwner:t,repoName:c}){let[i,s]=(0,eu.useState)(!1),r=(0,eu.useCallback)(()=>{let e=!i;s(e),n?.(e)},[i,n]);return(0,E.jsxs)("section",{className:"SimilarIssues-module__container--rpnBl","aria-labelledby":"similar-issues-heading",children:[(0,E.jsxs)("div",{className:"SimilarIssues-module__header--HUsxV",children:[(0,E.jsx)(al.K,{"aria-label":i?"Collapse similar issues":"Expand similar issues","aria-expanded":i,"aria-controls":"similar-issues-content",icon:en.ChevronDownIcon,variant:"invisible",size:"small",onClick:r,className:(0,ed.$)("SimilarIssues-module__chevronButton--HNLZT",i&&"SimilarIssues-module__chevronExpanded--Pm6VX")}),(0,E.jsxs)("h3",{id:"similar-issues-heading",className:"SimilarIssues-module__heading--PazCT",children:["Similar issues",i&&(0,E.jsxs)("span",{className:"SimilarIssues-module__count--KRh1I",children:["(",e.length,")"]})]}),i&&a&&(0,E.jsx)(eb.A,{className:"SimilarIssues-module__loadingState--aT09A",size:"small",srText:"Searching for similar issues"})]}),i&&(0,E.jsxs)("div",{id:"similar-issues-content",className:"SimilarIssues-module__content--b8jCB",children:[l&&(0,E.jsx)(aq.v,{className:aH,size:"small",variant:"unavailable",children:"Unable to load similar issues."}),!l&&0===e.length&&(0,E.jsx)("p",{className:aH,children:"No similar issues found."}),e.length>0&&(0,E.jsx)("ul",{className:"SimilarIssues-module__list--JrDqv",children:e.map(e=>(0,E.jsxs)("li",{className:"SimilarIssues-module__item--Mo1MK",children:[(0,E.jsx)(aW,{state:e.state,stateReason:e.stateReason}),(0,E.jsxs)(aU.A,{href:(0,eR.dRG)({owner:t,repo:c,issueNumber:e.number}),"data-hovercard-url":(0,eR.Nbg)({owner:t,repo:c,issueNumber:e.number}),children:[e.title," ",(0,E.jsxs)("span",{className:"SimilarIssues-module__number--Nd43t",children:["#",e.number]})]})]},e.id))})]})]})}try{aW.displayName||(aW.displayName="IssueIcon")}catch{}try{(A=Icon).displayName||(A.displayName="Icon")}catch{}try{aG.displayName||(aG.displayName="SimilarIssues")}catch{}var aQ=l(21373);let aY=({reasonHTML:e,issuesUrl:a})=>(0,E.jsxs)("div",{className:"UserRestrictedView-module__userRestrictedContainer--Ootl2",children:[e&&(0,E.jsx)(ec.l,{"aria-label":"Warning",variant:"warning",hideTitle:!0,title:"Action restricted",children:(0,E.jsx)(ec.l.Description,{children:(0,E.jsx)(eG.JR,{html:e})})}),a&&(0,E.jsx)(aQ.Q,{as:"a",href:a,className:"UserRestrictedView-module__backToAllIssuesButton--pt4aq",children:eg.k.backToAllIssues})]});try{aY.displayName||(aY.displayName="UserRestrictedView")}catch{}var aX=l(50167),aZ=l(81724);let aJ={fragment:{argumentDefinitions:L=[{defaultValue:null,kind:"LocalArgument",name:"input"}],kind:"Fragment",metadata:null,name:"createIssueAddBlockedByMutation",selections:P=[{alias:null,args:[{kind:"Variable",name:"input",variableName:"input"}],concreteType:"AddBlockedByPayload",kind:"LinkedField",name:"addBlockedBy",plural:!1,selections:[{alias:null,args:null,concreteType:"Issue",kind:"LinkedField",name:"issue",plural:!1,selections:w=[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:"Issue",kind:"LinkedField",name:"blockingIssue",plural:!1,selections:w,storageKey:null}],storageKey:null}],type:"Mutation",abstractKey:null},kind:"Request",operation:{argumentDefinitions:L,kind:"Operation",name:"createIssueAddBlockedByMutation",selections:P},params:{id:"e0daa3cc39578a0c6d16892c620ba652",metadata:{},name:"createIssueAddBlockedByMutation",operationKind:"mutation",text:null}};async function a1(e,a,l){let n=(await Promise.allSettled(a.map(({issueId:a,blockingIssueId:l})=>new Promise(n=>{!function({environment:e,input:a,onError:l,onCompleted:n}){(0,em.commitMutation)(e,{mutation:aJ,variables:{input:a},onError:e=>l&&l(e),onCompleted:e=>n&&n(e)})}({environment:e,input:{issueId:a,blockingIssueId:l},onError:e=>{n({success:!1,issueId:l,error:e.message})},onCompleted:e=>{n({success:null!==e.addBlockedBy,issueId:l})}})})))).filter(e=>"fulfilled"===e.status&&!e.value.success).length;n>0&&setTimeout(()=>{throw Error(`Failed to add ${n} of ${a.length} ${l} relationship(s)`)})}async function a0(e,a,l,n){let t=[];l.length>0&&t.push(a1(e,l.map(e=>({issueId:a,blockingIssueId:e})),"blocked-by")),n.length>0&&t.push(a1(e,n.map(e=>({issueId:e,blockingIssueId:a})),"blocking")),await Promise.all(t)}aJ.hash="bddab089b466747a365e4f8c57ef56f1";var a2=l(94007);let a3=[],a4=({repository:e,title:a,setTitle:l,body:n,setBody:t,clearOnCreate:c,onCreateSuccess:i,onCreateError:s,selectedTemplate:r,footer:o,issueFormRef:d,onBeforeCreate:u,defaultValuesById:m,showSimilarIssues:p=!0,showUserRestrictedView:g=!1,onFieldChange:y})=>{let{optionConfig:h,createMore:f,createMoreCreatedPath:k,setCreateMoreCreatedPath:b,isSubmitting:z,setIsSubmitting:F,onCreateAction:I,setIsFileUploading:S,displayMode:C,isCreatingSubIssueFromProject:v}=(0,ey.a)(),x=!h.insidePortal,j=(0,eu.useRef)(null),M=(0,eu.useRef)(void 0),[T,_]=(0,eu.useState)(),[N,K]=(0,eu.useState)(void 0),[L,w]=(0,eu.useState)(void 0),[P,A]=(0,eu.useState)(null),ef=function({repoId:e}){let a=(0,em.useRelayEnvironment)(),[l,n]=(0,eu.useState)(null);return(0,eu.useEffect)(()=>{(0,eT.SD)({environment:a,query:eM,variables:{id:e}}).subscribe({next:e=>{let a=(0,G.IR)(e.node?.owner?.pinnedIssueFields?.nodes?.filter(e=>e?.__typename!=="%other"));n({securityPolicyUrl:e.node?.securityPolicyUrl??null,contributingFileUrl:e.node?.contributingFileUrl??null,codeOfConductFileUrl:e.node?.codeOfConductFileUrl??null,supportFileUrl:e.node?.supportFileUrl??null,orgPinnedFields:a})}})},[a,e]),l}({repoId:e.id}),eb=(0,eu.useRef)(null),ez=(0,em.useRelayEnvironment)(),{sendAnalyticsEvent:eF}=(0,ea.s)(),{addToast:eS}=(0,J.Y6)(),{labels:eC,assignees:ev,projects:ex,milestone:eP,issueType:eA,issueFields:eE,parentIssueId:eV,blockedByIssueIds:eR,blockingIssueIds:eD,usedStorageKeyPrefix:eO,isCopilotAssignmentDialogOpen:eB,setIsCopilotAssignmentDialogOpen:e$,copilotAssignmentAttributes:eU,setCopilotAssignmentAttributes:eq}=(0,eh.u)(),eH=(0,eN.E)({additionalConditions:[!r||!(0,aZ.GQ)(r.data)],repositoryVisibility:e.visibility,userCanPushToRepo:e.viewerCanPush}),eW=(e=>{let{sendAnalyticsEvent:a}=(0,ea.s)(),l=(0,W.G7)("issues_create_semantic_similarity_analytics");return(0,e_.d)(async(n,t)=>{l&&(n.trim().length>=10||t.trim().length>=25)&&a("analytics.issue.content_update","SEMANTIC_SIMILAR_ISSUE_ANALYTICS",{repoNWO:`${e.owner.login}/${e.name}`,titleLength:n.length,bodyLength:t.length})},800,{onChangeBehavior:"cancel"})})(e);(0,eu.useEffect)(()=>{eH&&eF("analytics.view","ISSUE_CREATE_NEW_ISSUE_WITH_COPILOT_BUTTON_VIEW",{repoNWO:`${e.owner.login}/${e.name}`})},[e.name,e.owner.login,eF,eH]);let eG=(0,eu.useRef)(!1);(0,eu.useEffect)(()=>{eU&&eG.current&&(eG.current=!1,I.current?.onCreate(!1,!1))},[eU]),(0,eu.useEffect)(()=>{eB||eU||(eG.current=!1)},[eB,eU]);let eQ=(0,E.jsx)(aY,{reasonHTML:e.viewerInteractionLimitReasonHTML,issuesUrl:`/${e.owner.login}/${e.name}/issues`}),eY=e.viewerIssueCreationPermissions.typeable,eX=e.viewerIssueCreationPermissions.canSetIssueFields,eZ=e=>{let a=e.map(e=>e?.message).filter(Boolean).join(", ");return(a?a.charAt(0).toUpperCase()+a.slice(1):null)??ep.S.createIssueError},eJ=m||(0,a2.Zi)();(0,eu.useEffect)(()=>{P&&P.length>0&&eb?.current&&eb.current.focus()},[eb,P]),(0,eu.useImperativeHandle)(I,()=>({onCreate:async(l,t)=>{let o,m;if(l)return;let p=(0,q.O_)(a);K(p.errorMessage),!p.isValid&&j.current&&(o=j.current);let g=r&&(0,aZ.GQ)(r.data),y=n;if(g&&d.current){let e=d.current.getInvalidInputs();e.length>0?o=o||e[0]:y=d.current.markdown()??""}if(o||void 0!==N||0===(a??"").trim().length||void 0===e||void 0!==L)return void o?.focus();if(A(null),F(!0),ev.some(e=>(0,R.v)(e.login))&&!eU){eG.current=!0,e$(!0),F(!1);return}u&&(y=await u(y)),r&&(r.kind===aZ.t7.IssueTemplate||r.kind===aZ.t7.IssueForm)&&(m=r.name);let h={repositoryId:e.id,title:a?a.trim():"",body:y,labelIds:eC.length>0?eC.map(e=>e.id):void 0,assigneeIds:ev.length>0?ev.map(e=>e.id):void 0,milestoneId:eP?.id,issueTypeId:eY||m?eA?.id:null,issueFields:eX?eE.map(e=>{if(void 0===e.field.dataType||void 0===e.field.id)return null;let a=(0,Y.vl)((0,G.HZ)(e.field.dataType),e.value);return{fieldId:e.field.id,...(0,G.Ft)((0,G.HZ)(e.field.dataType),a)}}).filter(e=>!!e):null,issueTemplate:m,isDuplicated:C===aX.q.IssueDuplication,parentIssueId:eV,clientMutationId:M.current??(M.current=crypto.randomUUID()),copilotAssignment:eU??void 0},f=!v&&!!eV&&!t;!function({environment:e,input:a,onError:l,onCompleted:n}){(0,em.commitMutation)(e,{mutation:aR,variables:{input:a,fetchParent:!!a.parentIssueId},optimisticUpdater:e=>(function(e,a){if(!a.parentIssueId)return;let l=e.get(a.parentIssueId);if(!l)return;let n=aB(e,l);if(!n)return;let t=function(e,a,l){let n=`${aO.xv}${Date.now()}`,t=e.create(n,"Issue");t.setValue(n,"id"),t.setValue(a.title,"title"),t.setValue(a.title,"titleHTML"),t.setValue("OPEN","state"),t.setValue(null,"stateReason");let c=function(e,a,l){let n=`${a}-assignees`,t=e.create(n,"UserConnection"),c=[];if(l&&l.length>0)for(let n of l){let l=e.get(n);if(l){let t=`${a}-assignee-edge-${n}`,i=e.create(t,"UserEdge");i.setLinkedRecord(l,"node"),c.push(i)}}return t.setValue(c.length,"totalCount"),t.setLinkedRecords(c,"edges"),t}(e,n,a.assigneeIds);t.setLinkedRecord(c,"assignees",{first:10});let i=e.get(a.repositoryId);if(i)t.setLinkedRecord(i,"repository");else{let e=l.getLinkedRecord("repository");e&&t.setLinkedRecord(e,"repository")}t.setValue("","url");let s=`${n}-deps`,r=e.create(s,"IssueDependenciesSummary");r.setValue(0,"blockedBy"),t.setLinkedRecord(r,"issueDependenciesSummary");let o=`${n}-subIssuesSummary`,d=e.create(o,"SubIssuesSummary");return d.setValue(0,"total"),t.setLinkedRecord(d,"subIssuesSummary"),t}(e,a,l),c=n.getLinkedRecords("nodes")||[];n.setLinkedRecords([...c,t],"nodes");let i=n.getValue("totalCount");"number"==typeof i?n.setValue(i+1,"totalCount"):n.setValue(1,"totalCount"),function(e,a,l){let n=a.getLinkedRecord("subIssuesSummary");if(!n){let t=`${l}-subIssuesSummary`;n=e.create(t,"SubIssuesSummary");let c={total:0,completed:0,percentCompleted:0};for(let e in c)n.setValue(c[e],e);a.setLinkedRecord(n,"subIssuesSummary")}let t=n.getValue("total");"number"==typeof t?n.setValue(t+1,"total"):n.setValue(1,"total")}(e,l,a.parentIssueId)})(e,a),updater:e=>(function(e,a){if(!a.parentIssueId)return;let l=e.getRootField("createIssue");if(!l)return;let n=l.getLinkedRecord("issue");if(!n)return;let t=e.get(a.parentIssueId);if(!t)return;let c=aB(e,t);if(!c)return;let i=c.getLinkedRecords("nodes")||[],s=n.getValue("id");if(!i.some(e=>e?.getValue("id")===s)){c.setLinkedRecords([...i,n],"nodes");let e=c.getValue("totalCount");"number"==typeof e?c.setValue(e+1,"totalCount"):c.setValue(i.length+1,"totalCount")}})(e,a),onError:e=>l&&l(e),onCompleted:e=>{n?.(e),(0,aD.f)()}})}({environment:ez,input:h,onError:e=>{(0,H.N7)(a5(e.message)),s(e),F(!1);let a=ep.S.createIssueError;e.cause&&Array.isArray(e.cause)&&e.cause.length>0&&(a=eZ(e.cause)),f?eS({type:"error",message:a}):A(a)},onCompleted:e=>{if(F(!1),!e.createIssue?.issue){e.createIssue?.errors.map(e=>(0,H.N7)(a5(e.message)));let a=ep.S.createIssueError;e.createIssue?.errors&&e.createIssue?.errors.length>0&&(a=eZ(e.createIssue.errors)),f?eS({type:"error",message:a}):A(a);return}let a=e.createIssue.issue;eF("analytics.click","ISSUE_CREATE_NEW_ISSUE_BUTTON",{issueId:a.id,issueNumber:a.number,issueNWO:`${a.repository.owner.login}/${a.repository.name}`}),ex.length>0&&function(e,a,l){for(let n of a)(0,X.Z)({environment:l,issueId:e,projectId:n.id})}(a.id,ex,ez),(eR.length>0||eD.length>0)&&a0(ez,a.id,eR,eD),M.current=crypto.randomUUID(),t?(_("edit"),b({...k,number:a.number})):c(),f||i({issue:a,createMore:t})}}),f&&(c(),i({issue:{id:M.current??"",number:0,repository:{name:e.name,owner:{login:e.owner.login},databaseId:void 0,id:""},databaseId:void 0,title:"",url:""," $fragmentSpreads":{}},createMore:!1}))}}),[a,r,n,d,N,e,L,F,u,eC,ev,eP?.id,eY,eA?.id,eX,eE,C,eV,eR,eD,eU,e$,ez,s,eF,ex,i,b,k,c,eS,v]);let e1=e=>{(0,q.O_)(e).isValid&&K(void 0),l(e),eW(e,n)},e0=e=>{w((0,q.QK)(e).errorMessage),t(e),eW(a,e)},e2=r&&(0,aZ.GQ)(r.data),[e3,e4]=(0,eu.useState)(""),e5=p&&(0,W.G7)("semantic_similarity_duplicate_issue_detection"),e6=e2?e3:n,{items:e7,isFetching:e8,setIsExpanded:e9,isError:ae,isExpanded:aa}=function({repoOwner:e,repoName:a,title:l,body:n,isSimilarIssuesEnabled:t}){let[c,i]=(0,eu.useState)(!1),s=(0,eu.useRef)(null),[r,o]=(0,eu.useState)(l.trim()),[d,u]=(0,eu.useState)(n.trim()),m=(0,e_.d)(e=>o(e.trim()),1500),p=(0,e_.d)(e=>u(e.trim()),1500),g=(0,eu.useCallback)(e=>{t&&(e&&(o(l.trim()),u(n.trim())),i(e))},[t,l,n]);(0,eu.useEffect)(()=>{t&&c&&m(l.trim())},[t,l,c,m]),(0,eu.useEffect)(()=>{t&&c&&p(n.trim())},[t,n,c,p]);let y=r.length+d.length>=20,{data:h,isFetching:f,isError:k}=(0,eL.I)({queryKey:["similar-issues",e,a,r,d],queryFn:async({signal:l})=>{let n=new URLSearchParams({title:r,body:d,page:"1",per_page:"5"}),t=await (0,ek.lS)(`/${e}/${a}/issues/semantically_similar?${n.toString()}`,{method:"GET",signal:l});if(!t.ok)throw Error(`Failed to fetch similar issues: ${t.status}`);return((await t.json()).similar_issues??[]).map(e=>({id:String(e.issue.id),number:e.issue.number,title:e.issue.title,state:e.issue.state.toUpperCase(),stateReason:e.issue.state_reason?.toUpperCase()}))},enabled:t&&c&&y,placeholderData:ew.rX,staleTime:6e4}),b=h??[];return(0,eu.useEffect)(()=>{if(t&&!f&&s.current!==b.length){s.current=b.length;let e=b.length;0===e?(0,eK.i)("No similar issues found"):1===e?(0,eK.i)("1 similar issue found"):(0,eK.i)(`${e} similar issues found`)}},[t,b.length,f]),{items:b,isFetching:f,isError:k,isExpanded:c,setIsExpanded:g}}({repoOwner:e.owner.login,repoName:e.name,title:a,body:e6,isSimilarIssuesEnabled:e5}),al=(0,eu.useCallback)((e,a,l)=>{aa&&d.current&&e4(d.current.markdown()??""),y?.(e,a,l)},[aa,d,y]),an=(0,eu.useMemo)(()=>{if(e)return{type:"issue",repository:{databaseId:e.databaseId,nwo:`${e.owner.login}/${e.name}`,slashCommandsEnabled:e.slashCommandsEnabled}}},[e]),at=(0,eu.useId)(),ac=[],ai=(0,el.Z)(),as=(0,eu.useRef)(null),ar=(0,eu.useRef)(null),ao=(0,eu.useRef)(null),[ad,au]=(0,eu.useState)(!1),[am,ap]=(0,eu.useState)(!1),ag=(0,W.G7)("create_issue_description_with_copilot"),ay=ag&&eH,{isPanelOpen:ah,isGenerating:af,shouldShowCopilot:ak,togglePanel:ab,handleInputFocus:az,commands:aF,panelProps:aI,containerStyle:aS}=(0,U.F)({editorRef:ao,body:n,onChange:(e,a)=>{e0(e),void 0!==a&&e1(a)},shouldShowCopilotFunctionality:eH,repoOwner:e.owner.login,repoName:e.name,title:a,generateTitle:!0,commandId:"issue-create:open-copilot-panel",canToggle:"preview"!==T});(0,eu.useEffect)(()=>{let e=document.getElementById("assignees-select-menu");e&&(ar.current=e)},[]);let aC=()=>{eF("analytics.click","ISSUE_CREATE_NEW_ISSUE_WITH_COPILOT_BUTTON",{repoNWO:`${e.owner.login}/${e.name}`});let a=new URLSearchParams({prompt:`Create an issue in ${e.nameWithOwner} to `});ai(`${B.Jz}?${a.toString()}`)};eH&&!ak&&ac.push((0,E.jsx)(Z.n.FooterButton,{ref:as,variant:"invisible",leadingVisual:ay?en.CopilotIcon:en.ArrowUpRightIcon,size:"small",className:"CreateIssueForm-module__footerButton--pogcH",onClick:()=>{ak?ab():ag?ap(!0):n.length||a.length?au(!0):aC()},children:eg.k.copilotCTAButton},"create-issue-with-copilot"));let av=()=>{e$(!1)},ax=g?eQ:(0,E.jsxs)(E.Fragment,{children:[ad&&(0,E.jsx)(et.l,{title:eg.k.copilotCTADialogTitle,onClose:()=>au(!1),footerButtons:[{buttonType:"default",content:eg.k.copilotCTADialogCancelButton,onClick:()=>au(!1)},{buttonType:"primary",content:eg.k.copilotCTADialogContinueButton,onClick:aC}],returnFocusRef:as,children:eg.k.copilotCTADialogDescription}),!ak&&ag&&(0,E.jsx)(eI,{isOpen:am,onClose:()=>ap(!1),onGenerate:(e,a)=>{l(e),t(a),ap(!1)},repoOwner:e.owner.login,repoName:e.name,title:a,body:n,returnFocusRef:as}),P&&(0,E.jsx)(ec.l,{ref:eb,title:"Error",description:(0,E.jsx)(er.o,{children:P}),variant:"critical",className:"CreateIssueForm-module__errorBanner--eNPfc",role:"alert"}),(0,E.jsx)(V.B,{isOpen:eB,onClose:av,onSubmit:(e,a,l,n,t)=>{eq({targetRepositoryId:e,baseRef:a,customInstructions:l,customAgent:n?.subAgentSlug,agentId:n?.topLevelAgentId,model:t}),av()},repository:{name:e.name,owner:{login:e.owner.login}},returnFocusRef:ar}),(0,E.jsx)(ej,{title:a,titleInputRef:j,handleTitleChange:e=>{e1(e.currentTarget.value)},titleValidationResult:N}),an&&!e2&&(0,E.jsx)(ee.tL,{commands:aF,children:(0,E.jsxs)("div",{className:"CreateIssueForm-module__commentBox--vEs40",style:aS,children:[(0,E.jsx)(D.hF,{ref:ao,subject:an,label:eg.k.issueCreateBodyLabel,showLabel:!0,placeholder:eg.k.issueBodyPlaceholder,viewMode:T,onChangeViewMode:_,value:n,onSave:()=>I?.current?.onCreate(z,f),onChange:e=>{e0(e)},saveButtonTrailingIcon:!1,minHeightLines:h.insidePortal?14:20,"aria-describedby":L?at:void 0,setIsFileUploading:S,toolbarButtons:ak?(0,E.jsx)(Z.n.ToolbarButton,{variant:"invisible",icon:en.PencilAiIcon,size:"small",className:"CreateIssueForm-module__copilotWriteButton--kQOZ7",onClick:ab,"aria-pressed":ah,"aria-label":eg.k.copilotCTAButton}):null,footerButtons:ac,disabled:af,generatingText:af,onInputFocus:az}),ak&&ah&&"preview"!==T&&(0,E.jsx)($.O,{...aI}),L&&(0,E.jsxs)(ei.A,{variant:"danger",id:at,children:[(0,E.jsx)(es.A,{icon:en.AlertIcon}),L]})]})}),an&&e2&&(0,aZ.GQ)(r.data)&&(0,E.jsx)(Q.Z,{outputRef:d,issueFormRef:r.data,subject:an,sessionStorageKey:eO,defaultValuesById:eJ,onSave:()=>I?.current?.onCreate(z,f),setIsFileUploading:S,onFieldChange:e5?al:y}),e5&&(0,E.jsx)(aG,{repoOwner:e.owner.login,repoName:e.name,items:e7,isLoading:e8,isError:ae,onExpandedChange:e9})]}),aj=(0,E.jsxs)(E.Fragment,{children:[(0,E.jsx)(aV,{orgPinnedFields:ef?.orgPinnedFields??a3,isPinnedFieldsLoading:null===ef}),ef&&(0,E.jsx)(O.t,{supportFileUrl:ef.supportFileUrl??void 0,codeOfConductFileUrl:ef.codeOfConductFileUrl??void 0,securityPolicyUrl:ef.securityPolicyUrl??void 0,contributingFileUrl:ef.contributingFileUrl??void 0})]}),aM=g?null:(0,E.jsx)(E.Fragment,{children:o&&(0,E.jsx)(eo.az,{sx:{gridArea:"footer",mt:[4,4,2*!!e2]},children:o})});return x?(0,E.jsx)("div",{className:"CreateIssueForm-module__CreateIssueFormWrapper--xluI0",children:(0,E.jsxs)(eo.az,{className:(0,ed.$)("width-fit","CreateIssueForm-module__formGridContainer--SxqjE"),sx:{gridTemplateAreas:` + "body metadata" + "footer nil" + `},children:[(0,E.jsx)("div",{className:"CreateIssueForm-module__mainContentSection--rApst",children:ax}),(0,E.jsx)("div",{className:"CreateIssueForm-module__metadataSection--r67Zi",children:aj}),aM]})}):(0,E.jsxs)(E.Fragment,{children:[ax,aj,aM]})};function a5(e){return Error(`Issue create mutation failed with error: ${e}`)}try{a4.displayName||(a4.displayName="CreateIssueForm")}catch{}},89064:(e,a,l)=>{l.d(a,{l:()=>n});let n={createMore:"Create more",createMoreSubIssues:"Create more sub-issues",createFullscreen:"Open issue creation in fullscreen",copyUrl:"Copy link",create:"Create",cancel:"Cancel"}},89946:(e,a,l)=>{l.d(a,{A:()=>n});let n={skeletonContainer:"TemplateList-module__skeletonContainer--fU4Ip",templateHeader:"TemplateList-module__templateHeader--_jTSZ"}},90651:(e,a,l)=>{l.d(a,{S:()=>i});var n=l(79403),t=l(50167);let c={showFullScreenButton:!1,navigateToFullScreenOnTemplateChoice:!1,insidePortal:!0,showRepositoryPicker:!0,storageKeyPrefix:"",canBypassTemplateSelection:!1,emojiSkinTonePreference:0,copilotShowFunctionality:!1,disableCopilotAssignmentModal:!1,hideCreateMore:!1},i=e=>{let a={...c,...e},l={storageKeyPrefix:(a.issueCreateArguments?.repository?`${a.issueCreateArguments?.repository.owner}-${a.issueCreateArguments?.repository.name}`:void 0)??a.storageKeyPrefix??n.tT.storageKeyPrefixes.defaultFallback};return{...a,...l,getDefaultDisplayMode:e=>a.defaultDisplayMode??e??t.q.TemplatePicker}}},90921:(e,a,l)=>{l.d(a,{D:()=>_,U:()=>M});var n=l(74848),t=l(19918),c=l(81289),i=l(81709),s=l(69599),r=l(49275),o=l(38143),d=l(86391),u=l(43258),m=l(46747),p=l(96540),g=l(38621),y=l(73867),h=l(67126),f=l(24453);let k={groupId:"open",header:{title:"Open",variant:"filled"}},b={groupId:"closed",header:{title:"Closed",variant:"filled"}};function z({repo:e,owner:a,milestones:l,repositoryId:c,activeMilestone:i,onSelectionChange:z,insidePortal:F,anchorElement:I,nested:S,triggerOpen:C,initialFilter:v,isLoading:x,setIsLoading:j,noMilestoneItem:M,showMilestoneDescription:T,title:_,canCreateMilestone:N,fetchMilestones:K,onCreate:L,showNoMatchItem:w=!1}){let[P,A]=(0,p.useState)(""),E=(0,p.useDeferredValue)(P),[V,R]=(0,p.useState)(!1),[D,O]=(0,p.useState)(),[B,$]=(0,p.useState)([]),{addToast:U}=(0,u.Y6)(),q=(0,p.useMemo)(()=>{if(void 0!==D&&D.length>0)return D;let e=l.slice().sort((e,a)=>e.title.localeCompare(a.title)).concat(B);return(M&&e.unshift(r.v.noMilestoneData),E)?e.filter(e=>e.title.toLowerCase().indexOf(E.toLowerCase())>=0):e},[l,E,B,M,D]),H=M&&M.selected,W=(0,p.useMemo)(()=>M?q.filter(e=>!1===e.closed):[],[M,q]),G=(0,p.useCallback)(async l=>{R(!0),A(l);try{let n=await K({query:l,owner:a,repo:e,count:10});void 0!==n&&(M&&(0,f.O)(l,M.source?.title??"")&&n.unshift(r.v.noMilestoneData),O(n))}catch{U({type:"error",message:h.S.couldNotSearchMilestones})}finally{R(!1)}},[U,K,M,a,e]),Q=(0,m.d)(e=>G(e),o.t.pickerDebounceTime),Y=(0,p.useCallback)(async e=>{let a=e.trim();if(P!==a){if(""===a){O(void 0),A(a);return}Q(a)}},[Q,P]),X=(0,p.useCallback)(e=>e.id,[]),Z=(0,p.useCallback)((e,a,l)=>{l.preventDefault(),l.stopPropagation(),c&&(j(!0),L({repositoryId:c,title:a.title},{onError:()=>{U({type:"error",message:h.S.couldNotCreateMilestone}),j(!1)},onSuccess:e=>{e&&$([{...e,__isNew__:!0},...B]),j(!1)}}))},[U,B,L,c,j]),J=(0,p.useCallback)(e=>{if(M&&e.id===r.v.noMilestoneData.id)return{...M};if(e.id===P)return{id:e.id,text:`Create new milestone: "${e.title}"`,source:e,trailingVisual:g.PlusIcon,className:"ItemPickerMilestone-module__MilestoneFilterItem--fSFTu",onAction:(a,l)=>Z(a,e,l)};let{closed:a,closedAt:l,progressPercentage:t,dueOn:c}=e;return{id:e.id,text:e.title,description:T?(0,n.jsx)(y.R,{closed:a,closedAt:l,progressPercentage:t,dueOn:c,showProgressPercentage:!1}):void 0,descriptionVariant:"block",className:"ItemPickerMilestone-module__MilestoneItem--J0_9F",source:e,groupId:e.closed?b.groupId:k.groupId,leadingVisual:()=>(0,n.jsx)(g.MilestoneIcon,{size:16})}},[Z,P,M,T]),ee=(0,p.useMemo)(()=>{let e=[];return q.some(e=>!e.closed)&&e.push(k),q.some(e=>e.closed)&&e.push(b),e},[q]);M&&H&&(i=r.v.noMilestoneData);let ea=(0,p.useRef)(null),el=(0,p.useMemo)(()=>i?[i]:[],[i]),en=(0,p.useMemo)(()=>{let e=!V&&!P&&0===q.length,a=!w&&!!P&&0===q.length;return e||a},[P,V,q.length,w]),et=(0,s.G7)("issues_react_select_panel_fullscreen_on_narrow");return(0,n.jsx)(d.O,{loading:x||V,items:M?W:q,initialSelectedItems:el,filterItems:Y,title:_??t.k.milestonesHeader,getItemKey:X,convertToItemProps:J,placeholderText:`Filter milestones ${l.length>=o.t.milestonesMaxPreloadCount?`(${o.t.milestonesMaxPreloadCount} milestones loaded)`:""}`,selectionVariant:"single",onSelectionChange:z,groups:M?void 0:ee,renderAnchor:e=>I(e,ea),insidePortal:F,height:"large",width:"medium",nested:S,resultListAriaLabel:"Milestone results",triggerOpen:C,initialFilter:v,selectPanelRef:ea,keybindingCommandId:"item-pickers:open-milestone",customNoMatchItem:N&&w&&P?{id:P,closed:!1,progressPercentage:0,title:P,url:""}:void 0,improvedNoMatchAccessibility:en,noMatchMessage:en?{title:"No milestones were found",body:"Try searching with a different query for results.",variant:"empty"}:void 0,responsiveOnNarrow:et})}try{z.displayName||(z.displayName="MilestonePickerBase")}catch{}var F=l(97665),I=l(96379),S=l(47544);async function C({owner:e,repo:a,query:l,count:n}){let t={owner:e,repo:a};l&&(t.query=l),n&&(t.count=n);let c=(0,S.JF)("milestones",t),i=await (0,I.lS)(c);return await i.json()}var v=l(73049),x=l(94747);async function j(e){let a=(0,S.kP)("milestones");return(await (0,I.lS)(a,{method:"POST",body:e})).json()}async function M(e,{owner:a,repo:l,query:n,count:t}){return await e.fetchQuery({queryKey:["item_picker","milestones",{owner:a,repo:l,query:n,count:t}],queryFn:async()=>{var e;let c=await C({owner:a,repo:l,query:n,count:t});return{milestones:(e=(0,v.A)(c).data).repository.milestones.nodes,repositoryId:e.repository.id}}})}function T({repo:e,owner:a,...l}){let[c,s]=(0,p.useState)(!0),[r,o]=(0,p.useState)(0),[d,u]=(0,p.useState)(!1),[m,g]=(0,p.useState)(null),y=(0,F.jE)(),{mutate:h}=(0,x.n)({mutationFn:async e=>{let a=await j(e);return(0,v.A)(a).data.createMilestone.milestone}});(0,p.useEffect)(()=>{(async()=>{try{let l=await M(y,{owner:a,repo:e,query:""});g(l),s(!1),u(!1)}catch{u(!0),s(!1)}})()},[r,a,y,e]);let f=(0,p.useRef)(null),{createFallbackComponent:k}=(0,i.j)({errorMessage:t.k.cantEditItems("milestones"),anchorElement:e=>l.anchorElement(e,f),open:!0}),b=(0,p.useCallback)(async e=>(await M(y,e)).milestones,[y]),I=(0,p.useCallback)((e,{onSuccess:a,onError:l})=>{h(e,{onSuccess:a,onError:l})},[h]);return d?k(()=>o(e=>e+1)):(0,n.jsx)(z,{repo:e,owner:a,repositoryId:m?.repositoryId??"",milestones:m?.milestones??[],isLoading:c,setIsLoading:s,fetchMilestones:b,onCreate:I,...l})}function _({repo:e,owner:a,anchorElement:l,readonly:t,activeMilestone:i,noMilestoneItem:s,...r}){return(0,n.jsx)(c.y,{keybindingCommandId:"item-pickers:open-milestone",anchorElement:(e,a)=>l(e,a),createChild:()=>(0,n.jsx)(T,{repo:e,owner:a,readonly:t,initialFilter:"",activeMilestone:i,triggerOpen:!0,anchorElement:l,noMilestoneItem:s,...r}),insidePortal:r.insidePortal})}try{T.displayName||(T.displayName="ItemPickerFetcher")}catch{}try{_.displayName||(_.displayName="MilestonePicker")}catch{}},91253:(e,a,l)=>{l.d(a,{l:()=>C,Y:()=>z});var n=l(74848),t=l(12360),c=l(77430),i=l(67126),s=l(19918),r=l(49275),o=l(38143),d=l(86391),u=l(43258),m=l(46747),p=l(26607),g=l(96540);function y(e,a,l){let n=l.toLowerCase().trim(),t=e.filter(e=>`${e.login.toLowerCase()}#${e.name?.toLowerCase()}`.includes(n)),c=a.filter(e=>!t.some(a=>a.id===e.id));return c.sort((e,a)=>e.isCopilot!==a.isCopilot?e.isCopilot?-1:1:e.login.localeCompare(a.login)),t.concat(c)}let h={groupId:"assignees"},f={groupId:"suggestions",header:{title:"Suggestions",variant:"filled"}};var k=l(69599);let b="AssigneePickerBase-module__Item--n9KU9",z=10,F={Copilot:"GitHub",Codex:"OpenAI",Claude:"Anthropic"},I=[],S=[];function C({assignees:e=I,suggestions:a=S,searchAssignees:l,onSelectionChange:C,insidePortal:x,anchorElement:j,nested:M,isLoading:T=!1,noAssigneeOption:_,triggerOpen:N,selectionVariant:K="multiple",title:L,maximumAssignees:w=z,name:P="assignee",showNoMatchItem:A=!1,viewer:E,responsiveOnNarrow:V=!1}){let[R,D]=(0,g.useState)(""),[O,B]=(0,g.useState)(void 0),[$,U]=(0,g.useState)(e),q=(0,g.useRef)(R),{addToast:H}=(0,u.Y6)(),W=V||(0,k.G7)("issues_react_select_panel_fullscreen_on_narrow");(0,g.useEffect)(()=>{U(e)},[e]);let G=(0,g.useCallback)(e=>e.login,[]),Q=(0,g.useMemo)(()=>{let l=[];if(l=O?y(e,O,R):y(e,e.concat(a.filter(a=>!e.find(e=>e.login===a.login))),R),E){let e=l.findIndex(e=>e.login===E.login);if(-1!==e)l.splice(e,1);else if(O)return l;l.unshift(E)}return!_||_.selected||l.find(e=>e.id===r.v.noAssigneeData.id)||l.unshift(r.v.noAssigneeData),l},[O,E,_,e,R,a]),Y=(0,g.useCallback)(a=>0===e.length?f.groupId:e.find(e=>e.id===a.id)?h.groupId:f.groupId,[e]),X=(0,g.useMemo)(()=>!!(w&&$.length>=w),[$.length,w]),Z=(0,g.useCallback)(e=>{let a=$.some(a=>a.id===e.id),l=X&&!a;if(_&&e.id===r.v.noAssigneeData.id){let a={..._};return a.groupId=Y(e),a.disabled=l,a}if(A&&e.id===r.v.noMatchData.id)return{...r.v.noMatchData,groupId:Y(e),source:e,text:`${P}:${R}`,className:b,disabled:l};let i=e.isCopilot,o="Bot"===e.__typename,d=i||e.isAgent,u=i?s.k.copilotDisplayName:o&&e.displayName?e.displayName:e.login,m=(i||e.isAgent)&&e.displayName?F[e.displayName]??"":e.name||"";return{id:e.id,text:u,description:m,source:e,groupId:Y(e),leadingVisual:()=>i?(0,n.jsx)(t.C,{}):0===e.avatarUrl.length?null:(0,n.jsx)(c.r,{alt:"",src:e.avatarUrl}),trailingVisual:()=>d?(0,n.jsx)(p.A,{children:"AI"}):o?(0,n.jsx)(p.A,{children:"bot"}):null,className:b,disabled:l}},[R,Y,P,_,A,X,$]),J=(0,g.useCallback)(()=>{B(void 0)},[]),ee=(0,g.useCallback)(async e=>{if(""===e)return void B(void 0);try{let a=await l(e),n=q.current;e.trim()===n.trim()&&B(a)}catch{H({type:"error",message:i.S.couldNotSearchAssignees})}},[H,l]),ea=(0,m.d)(e=>ee(e),o.t.pickerDebounceTime,{leading:!0,trailing:!0,onChangeBehavior:"flush"}),el=(0,g.useCallback)(e=>{let a=e.trim();R!==a&&(ea(a),D(e),q.current=a)},[ea,R]),en=(0,g.useCallback)(e=>{let a=new Set(Q.map(e=>e.id)),l=new Set(e.map(e=>e.id));U([...e,...$.filter(e=>!a.has(e.id)&&!l.has(e.id))])},[$,Q]),et=(0,g.useMemo)(()=>{let a=[],l=Q.filter(a=>e.find(e=>e.id===a.id)),n=Q.filter(a=>!e.find(e=>e.id===a.id));return l.length>0&&a.push(h),n.length>0&&a.push(f),a},[e,Q]),ec=(0,g.useRef)(null),ei=(0,g.useMemo)(()=>!A&&0===Q.length,[A,Q.length]);return(0,n.jsx)("div",{children:(0,n.jsx)(d.O,{items:Q,initialSelectedItems:e,loading:T,filterItems:el,title:L||s.k.assigneesHeader,getItemKey:G,triggerOpen:N,convertToItemProps:Z,placeholderText:s.k.filterUsers(P),selectionVariant:1===w?"single":K||"multiple",onSelectionChange:C,onLiveSelectionChange:en,onClose:J,renderAnchor:e=>j(e,ec),groups:et,insidePortal:x,height:"large",width:"medium",nested:M,resultListAriaLabel:"User results",selectPanelRef:ec,notice:w&&X?{text:s.k.limitWarning(w),variant:"warning"}:void 0,customNoMatchItem:A?{id:r.v.noMatchData.id,avatarUrl:r.v.noMatchData.avatarUrl,login:R}:void 0,improvedNoMatchAccessibility:ei,noMatchMessage:ei?{title:"No assignees were found",body:"Try searching for a different name for results.",variant:"empty"}:void 0,keybindingCommandId:v(P),responsiveOnNarrow:W})})}let v=e=>"author"===e?"item-pickers:open-author":"item-pickers:open-assignees";try{C.displayName||(C.displayName="AssigneePickerBase")}catch{}},91835:(e,a,l)=>{l.d(a,{x:()=>n});let n=l(27408).n.ActionButton},92233:(e,a,l)=>{l.d(a,{A:()=>n});let n={container:"IssueFieldSingleSelectValueToken-module__container--lARRk",tokenText:"IssueFieldSingleSelectValueToken-module__tokenText--U98W6",token:"IssueFieldSingleSelectValueToken-module__token--TxIqq",compactContainer:"IssueFieldSingleSelectValueToken-module__compactContainer--zLlQR",compactValueContainer:"IssueFieldSingleSelectValueToken-module__compactValueContainer--OvZ0C",fieldEditorContainer:"IssueFieldSingleSelectValueToken-module__fieldEditorContainer--Ya3I1",noValueContainer:"IssueFieldSingleSelectValueToken-module__noValueContainer--FlWSG"}},92858:(e,a,l)=>{l.d(a,{Y:()=>n});let n={createIssueButton:"create-issue-button",createMoreIssuesCheckbox:"create-more-check",templateList:"template-list",issueCreatedLink:"issue-created-link",issueCreatedAnnouncement:"issue-created-announcement",repositoryAndTemplateDialog:"repository-and-template-picker-dialog",templatePickerButton:"template-picker-button"}},93513:(e,a,l)=>{l.d(a,{k:()=>n});let n={archivedDescription:"Archived in project:",archivedError:"Issue could not be restored in project",archivedSuccess:"Issue restored in project",emptySections:{labels:"No labels",assignees:e=>e?"No one - ":"No one assigned",selfAssign:"Assign yourself",milestones:"No milestone",projects:"No projects",status:"No status",types:"No type",relationships:"None yet",noValue:e=>`No ${e.toLowerCase()}`,iterationPlaceholder:"Choose an iteration",datePlaceholder:"Choose a date",numberPlaceholder:"Enter number\u2026",iterationFilterPlaceholder:"Choose an option",singleSelectFilterPlaceholder:"Choose an option"},sectionTitles:{assignees:"Assignees",labels:"Labels",milestones:"Milestone",projects:"Projects",types:"Type",relationships:"Relationships"},awaitingTriage:"Awaiting triage",defaultProjectFieldName:"Status",moveCardToColumn:"Move card to column",selectProjects:"Select projects",filterProjects:"Filter projects",showClosedProjects:"Show closed projects",showMoreProjectFields:"Show more project fields",hideMoreProjectFields:"Hide project fields",relationNames:{parentIssue:"Parent issue",blockedByIssues:"Blocked by",blockingIssues:"Is blocking"},textEditorUpdateButton:"Update"}},94007:(e,a,l)=>{l.d(a,{E2:()=>p,Hx:()=>g,Qg:()=>m,Qy:()=>s,RG:()=>d,TV:()=>h,Zi:()=>u,jk:()=>r,pM:()=>y});var n=l(56038),t=l(74731);let c="/issues/new",i=`${c}/choose`,s=(e,a)=>{let l=new URLSearchParams(n.fV.search||"");return l.set("template",a),`/${e}/issues/new?${l.toString()}`},r=e=>o(e,i),o=(e,a)=>e.endsWith("/")?e.substring(0,e.length-1)+a:e+a,d=({repositoryAbsolutePath:e,fileName:a})=>{let l=new URL(o(e,c),n.cg?.location?.origin),i=new URLSearchParams(l.search);return i.set(t.t.queryParams.template,a),l.search=i.toString(),l.toString()},u=e=>{let a=e??new URLSearchParams(n.cg?.location?.search||""),l={};for(let[e,n]of a)if(t.d.includes(e))continue;else null===n?l[e]="":l[e]=n.substring(0,t.t.maxQueryLengthLimits.body);return l},m=(e,a,l)=>{let n=e.get(a);if(null!==n)return n.substring(0,l)},p=(e,a,l,n)=>{void 0!==l&&e.set(a,l.substring(0,n))},g=(e,a,l,n)=>{l&&e.set(a,l.slice(0,n).join(","))};function y(){return`/login?return_to=${n.fV?.href}`}function h(e){return`/${e}/issues/new/choose`}},94252:(e,a,l)=>{l.d(a,{K:()=>s});var n=l(59672),t=l(96540),c=l(17831),i=l(81724);let s=({issueFormRef:e,callback:a,handleTemplateChange:l,navigate:s,template:r})=>{let{clearTitleAndBody:o,clearSessionData:d,clearSessionMetadata:u,clearSessionTitleAndBody:m,clearSessionCreateMore:p}=(0,c.u)(),g=(0,t.useCallback)(({issue:t,createMore:c})=>{a?.({issue:t,createMore:c}),c?(r&&r.kind!==i.t7.BlankIssue?r:void 0)?(m(),e.current?.resetInputs({textOnly:!0}),l(r)):o():(e.current?.clearSessionStorage(),d(),s?.((0,n.dRG)({owner:t.repository.owner.login,repo:t.repository.name,issueNumber:t.number})))},[a,e,r,m,l,o,d,s]);return(0,t.useEffect)(()=>()=>{u(),p()},[p,u]),g}},95104:(e,a,l)=>{l.d(a,{b2:()=>ec,rC:()=>er,sC:()=>ei,Qq:()=>es});var n,t=l(74848);let c={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"AssigneesSectionLazyFragment",selections:[{alias:null,args:[{kind:"Literal",name:"first",value:10}],concreteType:"AssigneeConnection",kind:"LinkedField",name:"suggestedActors",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"nodes",plural:!0,selections:[{kind:"InlineFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"profileResourcePath",storageKey:null},{alias:null,args:[{kind:"Literal",name:"size",value:64}],kind:"ScalarField",name:"avatarUrl",storageKey:"avatarUrl(size:64)"},{kind:"InlineFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"isCopilot",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isAgent",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"displayName",storageKey:null}],type:"Bot",abstractKey:null}],type:"Actor",abstractKey:"__isActor"}],storageKey:null}],storageKey:"suggestedActors(first:10)"},{alias:null,args:null,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[{alias:null,args:null,concreteType:"ViewerCopilotCodingAgentEligibility",kind:"LinkedField",name:"viewerCopilotCodingAgentEligibility",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"hasRequestedCca",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"canRequestCca",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"canGrantOrgCca",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"canGrantEnterpriseCca",storageKey:null}],storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"owner",plural:!1,selections:[{kind:"InlineFragment",selections:[{alias:null,args:null,concreteType:"Enterprise",kind:"LinkedField",name:"enterprise",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"slug",storageKey:null}],storageKey:null}],type:"Organization",abstractKey:null}],storageKey:null}],storageKey:null}],type:"Issue",abstractKey:null};c.hash="0e1824db017a959a889c292e1487254a";let i={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"AssigneesSectionAssignees",selections:[{alias:null,args:[{kind:"Literal",name:"first",value:20}],concreteType:"AssigneeConnection",kind:"LinkedField",name:"assignedActors",plural:!1,selections:[{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"nodes",plural:!0,selections:[{kind:"InlineFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"profileResourcePath",storageKey:null},{alias:null,args:[{kind:"Literal",name:"size",value:64}],kind:"ScalarField",name:"avatarUrl",storageKey:"avatarUrl(size:64)"},{kind:"InlineFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"isCopilot",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isAgent",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"displayName",storageKey:null}],type:"Bot",abstractKey:null}],type:"Actor",abstractKey:"__isActor"}],storageKey:null}],storageKey:"assignedActors(first:20)"}],type:"Issue",abstractKey:null};i.hash="7c02afe88adfc0a220653be81704a19f";let s={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"AssigneesSectionCopilotRepositoryFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"isArchived",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isCopilotAgentEnabled",storageKey:null}],type:"Repository",abstractKey:null};s.hash="d0d5039c0af037561a9f4ee503f04833";let r={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"AssigneesSectionFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"number",storageKey:null},{alias:null,args:null,concreteType:"Repository",kind:"LinkedField",name:"repository",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,concreteType:null,kind:"LinkedField",name:"owner",plural:!1,selections:[{alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null}],storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isArchived",storageKey:null},{args:null,kind:"FragmentSpread",name:"AssigneesSectionCopilotRepositoryFragment"}],storageKey:null},{args:null,kind:"FragmentSpread",name:"AssigneesSectionAssignees"},{alias:null,args:null,kind:"ScalarField",name:"viewerCanAssign",storageKey:null}],type:"Issue",abstractKey:null};r.hash="d3c6b2757554e31ea145489e96bddf6e";let o={argumentDefinitions:[],kind:"Fragment",metadata:null,name:"AssigneesSectionViewer",selections:[{alias:null,args:null,kind:"ScalarField",name:"__typename",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"login",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"name",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"profileResourcePath",storageKey:null},{alias:null,args:[{kind:"Literal",name:"size",value:64}],kind:"ScalarField",name:"avatarUrl",storageKey:"avatarUrl(size:64)"},{kind:"InlineFragment",selections:[{alias:null,args:null,kind:"ScalarField",name:"isCopilot",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"isAgent",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"displayName",storageKey:null}],type:"Bot",abstractKey:null}],type:"Actor",abstractKey:"__isActor"};o.hash="46cd158d7367cb350d33a4333817d807";var d=l(16522),u=l(38621),m=l(21373),p=l(30459);let g=e=>{let a,l,n=(0,d.c)(6),{ref:c,onClick:i}=e,{sendClickAnalyticsEvent:s}=(0,p.S)();n[0]!==i||n[1]!==s?(a=()=>{s({category:"copilot_assignment",action:"click_assign_to_copilot_button",label:"ref_cta:assign_to_copilot"}),i()},n[0]=i,n[1]=s,n[2]=a):a=n[2];let r=a;return n[3]!==r||n[4]!==c?(l=(0,t.jsx)(m.Q,{ref:c,leadingVisual:u.AgentIcon,size:"small",block:!0,onClick:r,children:"Assign to Copilot"}),n[3]=r,n[4]=c,n[5]=l):l=n[5],l};g.displayName="CopilotAssignmentButton";var y=l(20538),h=l(96540),f=l(84268),k=l(11680),b=l(86877),z=l(46720),F=l(57387),I=l(12683),S=l(29731);function C({darkImagePath:e,lightImagePath:a,sx:l,...n}){let{colorScheme:c}=(0,I.DP)(),i=c&&/^dark/.test(c),s={display:"flex",flexDirection:"column",justifyContent:"flex-end",backgroundSize:"cover",backgroundPosition:"center",height:200,borderTopLeftRadius:"6px",borderTopRightRadius:"6px",...l,backgroundImage:`url(${i?e:a})`};return(0,t.jsx)(I.az,{sx:s,...(0,S.G)("splash-dialog-image"),...n,children:(0,t.jsx)(I.az,{sx:{height:"9px",background:i?"linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(255, 255, 255, 0.04) 100%)":"linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.04) 100%)"}})})}try{C.displayName||(C.displayName="SplashDialogImage")}catch{}try{(n=function({children:e,...a}){return(0,t.jsx)(I.az,{sx:{backgroundColor:"canvas.default",borderBottomLeftRadius:"6px",borderBottomRightRadius:"6px",padding:"24px"},...(0,S.G)("splash-dialog-body"),...a,children:e})}).displayName||(n.displayName="SplashDialogBody")}catch{}var v=l(58615),x=l(94011),j=l(47723);let M="hideCopilotCodingAgentRequestDialog";function T({onClose:e,eligibility:a,orgLogin:l,businessSlug:n,onEligibilityUpdate:c,onRequestSuccess:i}){let[s,r]=(0,v.M)(M,!1),{sendClickAnalyticsEvent:o}=(0,p.S)(),[d,u]=(0,h.useState)(!1),[g,y]=(0,h.useState)(null),I=(0,h.useCallback)(e=>{o({category:"member_feature_request",action:`action.copilot_coding_agent.${e}`,label:`ref_cta:${e};ref_loc:issue_assignment_dialog;`})},[o]),S=(0,h.useCallback)(async()=>{if(l&&!d){u(!0),y(null);try{await (0,x.Rp)(l),await c(),I("request"),i("request",l),e()}catch(e){y(e instanceof Error?e.message:"An error occurred")}finally{u(!1)}}},[l,d,I,c,i,e]),T=(0,h.useCallback)(async()=>{if(l&&!d){u(!0),y(null);try{await (0,x.pf)(l),await c(),I("org_enable"),i("enable",l),e()}catch(e){y(e instanceof Error?e.message:"An error occurred")}finally{u(!1)}}},[l,d,I,c,i,e]),_=(0,h.useCallback)(async()=>{if(l&&!d){u(!0),y(null);try{await (0,x.Hy)(l),await c(),I("request_removed"),e()}catch(e){y(e instanceof Error?e.message:"An error occurred")}finally{u(!1)}}},[l,d,I,c,e]),N=(0,h.useCallback)(()=>{I("enterprise_enable");let e=n||l;window.location.href=(0,j.Wt)(e)},[n,l,I]),K=(0,h.useCallback)(async()=>{a.canGrantEnterpriseCca?N():a.canGrantOrgCca?await T():a.hasRequestedCca?await _():a.canRequestCca&&await S()},[a.canGrantEnterpriseCca,a.canGrantOrgCca,a.hasRequestedCca,a.canRequestCca,N,T,_,S]),L="Request access";a.canGrantEnterpriseCca?L="See Copilot policies":a.canGrantOrgCca?L=d?"Enabling...":"Enable feature":a.hasRequestedCca?L=d?"Removing...":"Remove request":a.canRequestCca&&(L=d?"Requesting...":"Request access");let w="Request access from your admin, and let GitHub Copilot work independently in the background to complete tasks, with Copilot coding agent.";return a.canGrantEnterpriseCca||a.canGrantOrgCca?w="Enable Copilot coding agent to let GitHub Copilot work independently in the background to complete tasks.":a.hasRequestedCca&&(w="You have requested access to Copilot coding agent. Your admin will review your request."),(0,t.jsx)(F.l,{onClose:e,width:"large",renderHeader:({dialogLabelId:a})=>(0,t.jsxs)(t.Fragment,{children:[(0,t.jsxs)("div",{className:"CopilotCodingAgentRequestAccessDialog-module__headerContainer--MzTC7",children:[(0,t.jsx)(C,{darkImagePath:"/static/images/modules/swe_agent/agent-task-dark.png",lightImagePath:"/static/images/modules/swe_agent/agent-task-light.png",sx:{borderTopLeftRadius:"12px",borderTopRightRadius:"12px"}}),(0,t.jsx)("div",{className:"CopilotCodingAgentRequestAccessDialog-module__closeButtonContainer--kCbr6",children:(0,t.jsx)(F.l.CloseButton,{onClose:e})})]}),(0,t.jsx)(F.l.Header,{id:a,className:"CopilotCodingAgentRequestAccessDialog-module__visuallyHidden--Y3j6e",children:(0,t.jsx)(F.l.Title,{children:"Copilot coding agent is disabled"})})]}),children:(0,t.jsxs)("div",{className:"CopilotCodingAgentRequestAccessDialog-module__body--CKyA7",children:[(0,t.jsx)("h2",{className:"CopilotCodingAgentRequestAccessDialog-module__heading--qpyNv",children:"Copilot coding agent is disabled"}),(0,t.jsxs)("p",{className:"CopilotCodingAgentRequestAccessDialog-module__description--gXmI5",children:[w," ",(0,t.jsx)(f.A,{href:j.a2,target:"_blank",rel:"noreferrer",children:"Learn more"}),"."]}),g&&(0,t.jsx)("div",{"aria-live":"assertive",className:"CopilotCodingAgentRequestAccessDialog-module__errorContainer--WZEcP",children:(0,t.jsx)(k.l,{variant:"critical",title:"Error",hideTitle:!0,description:g})}),(0,t.jsxs)("div",{className:"CopilotCodingAgentRequestAccessDialog-module__footer--TVZEO",children:[(0,t.jsxs)(b.A,{children:[(0,t.jsx)(z.A,{checked:s,onChange:e=>{let a=e.currentTarget.checked;r(a),a&&I("do_not_show")}}),(0,t.jsx)(b.A.Label,{children:"Don't show this again"})]}),(0,t.jsx)(m.Q,{onClick:K,disabled:d,children:L})]})]})})}try{T.displayName||(T.displayName="CopilotCodingAgentRequestAccessDialog")}catch{}var _=l(5524),N=l(12360),K=l(77430);function L(e){let a=(0,d.c)(5),{login:l,id:n,avatarUrl:c,isCopilot:i}=e;if(i){let e;return a[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,t.jsx)(N.C,{}),a[0]=e):e=a[0],e}{let e,i=`@${l}`;return a[1]!==c||a[2]!==n||a[3]!==i?(e=(0,t.jsx)(K.r,{src:c,size:20,alt:i},n),a[1]=c,a[2]=n,a[3]=i,a[4]=e):e=a[4],e}}try{L.displayName||(L.displayName="AssigneeVisual")}catch{}var w=l(20403),P=l(26052),A=l(69599);function E(e){let a,l,n,c=(0,d.c)(10),{assignees:i,testId:s}=e,{sendAnalyticsEvent:r}=(0,p.s)();c[0]===Symbol.for("react.memo_cache_sentinel")?(a=(0,A.G7)("issues_report_sidebar_interactions"),c[0]=a):a=c[0];let o=a;if(c[1]!==i||c[2]!==r||c[3]!==s){let e;c[5]!==r||c[6]!==s?(e=e=>{let{login:a,name:l,avatarUrl:n,profileResourcePath:c,id:i,isCopilot:d,displayName:u,isAgent:m}=e;return(0,t.jsxs)(_.l.LinkItem,{href:c??void 0,target:"_blank",onClick:()=>{o&&r("analytics.click","ISSUE_SIDEBAR_ASSIGNEE_CLICK")},onContextMenu:()=>{o&&r("analytics.click","ISSUE_SIDEBAR_ASSIGNEE_RIGHT_CLICK")},...(0,w.S)(a,{isCopilot:d,isAgent:m}),children:[(0,t.jsx)(_.l.LeadingVisual,{children:(0,t.jsx)(L,{login:a,id:i,avatarUrl:n,isCopilot:d})}),(0,t.jsx)("div",{"data-testid":s,className:"Assignees-module__assigneeNameLabel--f9fCg",children:(0,t.jsx)(P.v,{login:u,profileName:l,isAgent:m})})]},i)},c[5]=r,c[6]=s,c[7]=e):e=c[7],l=[...i].sort(V).map(e),c[1]=i,c[2]=r,c[3]=s,c[4]=l}else l=c[4];return c[8]!==l?(n=(0,t.jsx)(_.l,{variant:"full",className:"Assignees-module__assigneesList--JFnuE",children:l}),c[8]=l,c[9]=n):n=c[9],n}function V(e,a){return e.login===a.login?0:e.login>a.login?1:-1}try{E.displayName||(E.displayName="Assignees")}catch{}var R=l(17855),D=l(78137),O=l(91253),B=l(45750),$=l(72274),U=l(67126),q=l(73189),H=l(91747),W=l(43258),G=l(18312),Q=l(34784),Y=l(93513),X=l(20177),Z=l(2495),J=l(16810),ee=l(21798);let ea="AssigneesSection-module__selfAssignButton--U9FC1",el=(e,a)=>{let l=e.create(a.id,a.__typename);for(let[e,n]of Object.entries({id:a.id,login:a.login,name:a.name,avatarUrl:a.avatarUrl,isCopilot:a.isCopilot,profileResourcePath:a.profileResourcePath,__typename:a.__typename,displayName:a.displayName}))l.setValue(n,e);return l},en=()=>(0,t.jsx)(Z.h,{title:Y.k.sectionTitles.assignees}),et=({sectionHeader:e,onSelfAssignClick:a,assignees:l,readonly:n,copilotAssignmentButton:c,copilotEligibility:i,owner:s,businessSlug:r,onEligibilityUpdate:o,onRequestSuccess:d})=>{let{sendAnalyticsEvent:u}=(0,p.s)(),g=(0,H.u)("cca_feature_request_issue_assignment"),y=(0,H.u)("cca_feature_request_issue_assignment_remove_flow"),[f]=(0,v.M)(M,!1),[k,b]=(0,h.useState)(!1),z=(0,h.useCallback)(e=>{b(!0),d?.(e,s)},[d,s]),F=g&&!f&&i&&!k&&(i.canRequestOrGrantCopilotAgent||y&&i.copilotAgentEligibility.hasRequestedCca);(0,h.useEffect)(()=>{0===l.length&&F&&u("request_coding_agent.show","ISSUE_SIDEBAR_ASSIGNEE_SECTION_REQUEST_CCA_LINK_SHOW",{org_login:s,ref_loc:"issue_assignee_section"})},[l.length,F,u,s]);let I=n?Y.k.emptySections.assignees(!1):(0,t.jsxs)(t.Fragment,{children:[Y.k.emptySections.assignees(!0),(0,t.jsx)(m.Q,{variant:"link",onClick:a,className:ea,children:Y.k.emptySections.selfAssign}),F&&(0,t.jsxs)(t.Fragment,{children:[" or ",(0,t.jsx)(m.Q,{variant:"link",onClick:i.openRequestAccessDialog,className:ea,children:i.copilotAgentEligibility.canGrantOrgCca||i.copilotAgentEligibility.canGrantEnterpriseCca?"enable coding agent":"request coding agent"})]})]}),S=c?(0,t.jsx)("div",{className:"width-full d-flex flex-column flex-items-stretch pt-2 px-2",children:(0,t.jsx)("div",{children:c})}):void 0,C=l.map(e=>({...e,displayName:e.displayName||e.login,isCopilot:e.isCopilot??!1,isAgent:e.isAgent??!1}));return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(J.w,{id:"sidebar-assignees-section",sectionHeader:e,sectionFooter:S,emptyText:l.length>0?void 0:I,children:(0,t.jsx)(E,{assignees:C,testId:X.Y.assignees})}),i?.requestAccessDialogOpen&&o&&d&&(0,t.jsx)(T,{onClose:i.closeRequestAccessDialog,eligibility:i.copilotAgentEligibility,orgLogin:s||"",businessSlug:r??void 0,onEligibilityUpdate:o,onRequestSuccess:z})]})};function ec({repo:e,owner:a,readonly:l,assignees:n,onSelectionChange:c,className:i,sx:s,repository:r,issueNumber:o,onIssueUpdate:d,...u}){let m=(0,$.u)(),p={repo:e,owner:a,readonly:l,includeAuthorableBots:!1,includeAssignableBots:!0,assigneeTokens:[],assignees:n,onSelectionChange:c,anchorElement:(e,a)=>(0,t.jsx)(ee.X,{title:Y.k.sectionTitles.assignees,buttonProps:{...e,id:"assignees-select-menu"},ref:a}),...u},g=l?(0,t.jsx)(en,{}):(0,t.jsx)(B._,{...p});return(0,t.jsx)(et,{sectionHeader:g,onSelfAssignClick:()=>c(m?[m]:[]),assignees:n,readonly:l,sx:s,className:i})}let ei=i,es=r;function er({issue:e,viewer:a,lazyKey:l,onIssueUpdate:n,insideSidePanel:i,readonly:r,onRequestSuccess:u}){let{sendAnalyticsEvent:m}=(0,p.s)(),f=(0,A.G7)("issues_report_sidebar_interactions"),k=(0,Q.useFragment)(es,e),{repository:b,repository:{owner:{login:z},name:F,isArchived:I},number:S}=k,C=(0,Q.useFragment)(s,k.repository),v=(0,Q.useFragment)(ei,k),x=(0,Q.useFragment)(o,a),{id:j,viewerCanAssign:M}=k,T=(0,Q.useFragment)(c,l),_=(0,h.useMemo)(()=>(T?.suggestedActors?.nodes||[]).flatMap(e=>e?[e]:[]),[T?.suggestedActors?.nodes]),N=(0,h.useMemo)(()=>(v.assignedActors?.nodes||[]).flatMap(e=>e?[e]:[]),[v.assignedActors?.nodes]),{addToast:K}=(0,W.Y6)(),L=(0,G.useRelayEnvironment)(),w=(0,h.useRef)(null),P={hasRequestedCca:T?.repository?.viewerCopilotCodingAgentEligibility?.hasRequestedCca??!1,canRequestCca:T?.repository?.viewerCopilotCodingAgentEligibility?.canRequestCca??!1,canGrantOrgCca:T?.repository?.viewerCopilotCodingAgentEligibility?.canGrantOrgCca??!1,canGrantEnterpriseCca:T?.repository?.viewerCopilotCodingAgentEligibility?.canGrantEnterpriseCca??!1,businessSlug:T?.repository?.owner?.enterprise?.slug??null},E=function(e){let a,l,n,t=(0,d.c)(6),[c,i]=(0,h.useState)(!1),s=!!(e.canRequestCca||e.canGrantOrgCca||e.canGrantEnterpriseCca);t[0]===Symbol.for("react.memo_cache_sentinel")?(a=()=>i(!0),t[0]=a):a=t[0];let r=a;t[1]===Symbol.for("react.memo_cache_sentinel")?(l=()=>i(!1),t[1]=l):l=t[1];let o=l;return t[2]!==s||t[3]!==e||t[4]!==c?(n={copilotAgentEligibility:e,canRequestOrGrantCopilotAgent:s,requestAccessDialogOpen:c,openRequestAccessDialog:r,closeRequestAccessDialog:o},t[2]=s,t[3]=e,t[4]=c,t[5]=n):n=t[5],n}(P),V=(0,A.G7)("issues_cca_assign_actor_with_agent"),$=r||!M||I,H=(0,h.useMemo)(()=>{let e=N.some(e=>(0,R.v)(e.login));return!$&&C.isCopilotAgentEnabled&&!e},[N,$,C.isCopilotAgentEnabled]),[X,Z]=(0,h.useState)(!1),[J,ea]=(0,h.useState)(0),ec=(0,h.useCallback)(()=>{Z(!0),ea(e=>e+1)},[Z]),er=(0,h.useCallback)(()=>{Z(!1)},[Z]),eo=(0,h.useCallback)(e=>{(0,D.j)({environment:L,input:{issueId:j,assignedActors:e,participants:_},onError:()=>K({type:"error",message:U.S.couldNotUpdateAssignees}),onCompleted:n})},[K,L,j,n,_]),ed=(0,h.useCallback)(e=>{let a=N.some(e=>(0,R.v)(e.login)),l=e.some(e=>e.isCopilot),n=e.filter(e=>!e.isCopilot),t=H?n:e;if(V&&x){let a=new Set(N.filter(e=>e.isAgent&&!(0,R.v)(e.login)).map(e=>e.login));if(e.some(e=>e.isAgent&&!(0,R.v)(e.login)&&!a.has(e.login))){let a=N.some(e=>e.login===x.login),l=e.some(e=>e.login===x.login);a||l||!(e.length{if(e.length!==a.length)return!1;let l=new Set(e.map(e=>e.id));return a.every(e=>l.has(e.id))})(t,N.filter(e=>!(0,R.v)(e.login)))||eo(t),l&&H&&!a&&ec()},[N,H,eo,ec,V,x]),eu=(0,h.useCallback)(e=>{e&&(0,Q.commitLocalUpdate)(L,a=>{let l=[{...e,isCopilot:!0,__typename:"Bot"}],n=N.some(e=>e.login===x?.login),t=V&&!n&&N.length+1{let n=e.get(a);if(n){let a=n.getLinkedRecord("assignedActors(first:20)");if(a){let n=a.getLinkedRecords("nodes")||[];for(let a of l)if(!n.some(e=>e&&e.getValue("id")===a.id)){let l=e.get(a.id);l||(l=el(e,a)),n=[...n,l]}let t=n.sort((e,a)=>{let l=e?.getValue("login")||"",n=a?.getValue("login")||"";return l.toLowerCase().localeCompare(n.toLowerCase())});a.setLinkedRecords(t,"nodes")}}})(a,j,l)}),n?.()},[V,N,L,j,n,x]),em=H?(0,t.jsx)(g,{onClick:ec,ref:w}):void 0,ep=H?(0,t.jsx)(y.B,{isOpen:X,onClose:er,repository:{name:b.name,owner:{login:b.owner.login}},issueNumbers:[S],onAssignmentComplete:eu,returnFocusRef:w}):void 0,eg=(0,h.useMemo)(()=>$?(0,t.jsx)(en,{}):(0,t.jsx)(B.I,{repo:F,owner:z,number:S,anchorElement:(e,a)=>(0,t.jsx)(ee.X,{title:Y.k.sectionTitles.assignees,buttonProps:{...e,onClick:a=>{f&&m("analytics.click","ISSUE_SIDEBAR_ASSIGNEE_SECTION_EDIT_CLICK"),e.onClick?.(a)}},ref:a}),readonly:$,assignees:N,onSelectionChange:e=>ed(e),insidePortal:i,suggestions:_},`assignee-picker-${J}`),[$,F,z,S,N,i,_,J,f,m,ed]);return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(et,{sectionHeader:eg,assignees:N,onSelfAssignClick:()=>x?eo([x]):q.l,readonly:$,copilotAssignmentButton:em,copilotEligibility:E,owner:z,businessSlug:P.businessSlug,onEligibilityUpdate:async()=>{n&&n()},onRequestSuccess:u}),ep]})}try{en.displayName||(en.displayName="ReadonlyAssigneesSectionHeader")}catch{}try{et.displayName||(et.displayName="AssigneesSection")}catch{}try{ec.displayName||(ec.displayName="CreateIssueAssigneesSection")}catch{}try{er.displayName||(er.displayName="EditIssueAssigneesSection")}catch{}},96480:(e,a,l)=>{l.d(a,{a:()=>o,o:()=>r});var n=l(74848),t=l(40104),c=l(96540),i=l(79403);let s=(0,c.createContext)(null);function r({optionConfig:e,overrideFallbackDisplaymode:a,children:l}){let{issueCreateMore:r}=i.tT.localStorageKeys,[o,d]=(0,c.useState)(!1),[u,m]=(0,c.useState)(!1),[p,g]=(0,t.Fo)(`config.${r(e.storageKeyPrefix)}`,!1),[y,h]=(0,c.useState)({owner:"",repo:"",number:void 0}),f=e.getDefaultDisplayMode(a),[k,b]=(0,c.useState)(f),z=(0,c.useRef)(null),F=(0,c.useMemo)(()=>({optionConfig:e,createMore:p,setCreateMore:g,createMoreCreatedPath:y,setCreateMoreCreatedPath:h,displayMode:k,setDisplayMode:b,initialDefaultDisplayMode:f,isSubmitting:o,isFileUploading:u,setIsFileUploading:m,setIsSubmitting:d,onCreateAction:z,isSubIssue:!!e.issueCreateArguments?.parentIssue?.id,isCreatingSubIssueFromProject:e.issueCreateArguments?.isCreatingSubIssueFromProject??!1}),[e,p,g,y,h,k,f,o,u]);return(0,n.jsx)(s,{value:F,children:l})}let o=()=>{let e=(0,c.use)(s);if(!e)throw Error("useIssueCreateConfigContext must be used within a IssueCreateConfigContextProvider.");return e};try{s.displayName||(s.displayName="IssueCreateContext")}catch{}try{r.displayName||(r.displayName="IssueCreateConfigContextProvider")}catch{}},98338:(e,a,l)=>{l.d(a,{k:()=>n});let n={issueCreateDialogTitleTemplatePane:(e="issue")=>`Create new ${e}`,issueCreateChooseDiffTemplate:"Choose a different template",issueCreateDialogTitleCreationPane:(e,a,l="issue")=>`Create new ${l} in ${e}${a?`: ${a}`:""}`,issueCreateDialogTitleDuplicationPane:(e,a="issue")=>`Duplicate current ${a} in ${e}`,issueCreateTitleLabel:"Add a title",issueCreateTitlePlaceholder:"Title",issueCreateBodyLabel:"Add a description",issueCreatedPrefix:"Issue created ",lastIssueCreated:e=>`Issue #${e} created`,issuesDisabledForRepo:"Issues are disabled for the selected repository. Please select a different repository.",issueBodyPlaceholder:"Type your description here\u2026",issueNumber:e=>`#${e}`,blankIssueName:"Blank issue",blankIssueDescription:"Create a new issue from scratch",securityPolicyName:"Report a security vulnerability",securityPolicyDescription:"Please review our security policy for more details",editTemplates:"Edit templates",viewTemplates:"View templates",templatesFormsTitle:"Templates and forms",noTemplates:"No templates available for the current repository",discardConfirmation:{title:"Discard changes?",content:"You have unsaved changes. Are you sure you want to discard them?",confirm:"Close and discard",cancel:"Keep editing"},loadingTooltip:"Loading...",templateId:e=>`template-item-${e}`,templateLabelId:e=>`template-item-${e}-label`,templateDescriptionId:e=>`template-item-${e}-description`,typePickerLabel:"Type",selectIssueTypeLabel:"create-issue-issue-type-label",fileUploadWarning:"Issue will be created once your upload has completed",issueTypeReadOnly:"You do not have permission to change the type",issueTypeReadOnlyReason:"You need the triage role or higher in this repository to change the issue type.",viewProfile:e=>`View ${e}'s profile`,copilotCTAButton:"Write with Copilot",copilotCTADialogTitle:"Navigate to Copilot Chat",copilotCTADialogDescription:"You have unsaved changes. Are you sure you want to discard them?",copilotCTADialogCancelButton:"Keep editing",copilotCTADialogContinueButton:"Go to Copilot",copilotGenerateDialogTitle:"Generate issue content with Copilot",copilotGenerateDialogTextareaLabel:"Additional context (optional)",copilotGenerateDialogTextareaPlaceholder:"Add any additional context to help Copilot generate a better issue...",copilotGenerateDialogGenerateButton:"Generate content",copilotGenerateError:"Failed to generate content with Copilot. Please try again.",copilotGenerateValidationWarning:"Please provide a title, existing description, or additional context to generate content.",copilotPanelInitialMessage:"How can I help you write your issue?",copilotPanelInputPlaceholder:"Type your message here...",copilotPanelSendButton:"Send",copilotPanelUpdatedMessage:"I've updated the issue title and description above.",copilotPanelLoadingMessage:"Writing\u2026",copilotPanelAcceptButton:"Accept",copilotPanelDiscardButton:"Discard",copilotPanelTryAgainButton:"Try again",copilotDiscardConfirmDialog:{title:"Discard changes?",content:"You have made edits to the generated content. Discarding will lose your changes.",confirm:"Discard",cancel:"Cancel"},copilotTryAgainConfirmDialog:{title:"Try again?",content:"You have made edits to the generated content. Trying again will replace your changes with new generated content.",confirm:"Try again",cancel:"Cancel"},backToAllIssues:"Back to all issues",crossRepoIssueDuplicationWarning:e=>`This issue is being duplicated across repositories. The following metadata might not be copied: ${e.join(", ")}.`,crossRepoIssueDuplicationDefaultWarning:"Changing the repository may remove Milestone, Labels, Type, and Assignees from the duplicate issue.",setAdditionalFields:"Set additional issue fields",addIssueField:"Add issue field"}},98646:(e,a,l)=>{l.d(a,{Ft:()=>i,HZ:()=>r,IR:()=>y,KO:()=>o,MR:()=>c,YQ:()=>s,d6:()=>t,fk:()=>u,fy:()=>p,mQ:()=>g,qH:()=>d,qg:()=>m});var n=l(38621);let t={text:{type:"text",displayName:"Text",icon:n.TypographyIcon,valueField:"textValue"},single_select:{type:"single_select",displayName:"Single Select",icon:n.SingleSelectIcon,valueField:"singleSelectOptionId"},date:{type:"date",displayName:"Date",icon:n.CalendarIcon,valueField:"dateValue"},number:{type:"number",displayName:"Number",icon:n.NumberIcon,valueField:"numberValue"}},c=Object.values(t);function i(e,a){switch(e){case"text":return{textValue:a};case"single_select":return{singleSelectOptionId:a};case"date":return{dateValue:a};case"number":{let e=Number(a);return isNaN(e)?{}:{numberValue:e}}}}function s(e){return{...e,dataType:r(e.dataType)}}function r(e){switch(e){case"TEXT":case"text":return"text";case"SINGLE_SELECT":case"single_select":return"single_select";case"DATE":case"date":return"date";case"number":case"NUMBER":return"number";default:throw Error(`Unsupported field type: ${e}`)}}let o="IssueFieldSingleSelectValue",d="IssueFieldTextValue",u="IssueFieldDateValue",m="IssueFieldNumberValue";function p(e,a){if(e)switch(a){case o:e.setValue(null,"name"),e.setValue(null,"color"),e.setValue(null,"description");break;case u:case d:case m:e.setValue(null,"value");break;default:return a}}function g(e){return t[e].icon}function y(e){if(!e||0===e.length)return null;let a=[];for(let l of e)l&&l.id&&l.name&&l.dataType&&a.push(s(l));return a.length>0?a:null}}}]); +//# sourceMappingURL=42804-8bcdefec59be.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/42804.e9445c11f35ffcef9d3c.module.css" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/42804.e9445c11f35ffcef9d3c.module.css" new file mode 100644 index 0000000..b241011 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/42804.e9445c11f35ffcef9d3c.module.css" @@ -0,0 +1,2 @@ +.RepositoryPicker-module__repositoryPickerContainer--dRyEx{display:flex;flex-direction:row;flex-wrap:wrap;gap:var(--base-size-4)}.RepositoryPicker-module__hideContainer--HKeTk{display:none}.RepositoryPicker-module__Item--F8hZe{word-break:break-word}.CheckTagNameDialog-module__DialogFooterButtons--HNAWb{display:flex;justify-content:flex-end;margin-top:var(--base-size-16)}.CreateTagDialog-module__Dialog--a69Xp{min-height:var(--overlay-height-small)}.RefSelectorAnchoredOverlay-module__RefSelectorOverlayBtn--D34zl{display:flex}.RefSelectorAnchoredOverlay-module__RefSelectorOverlayBtn--D34zl svg{color:var(--fgColor-muted)}.RefSelectorAnchoredOverlay-module__RefSelectorOverlayBtn--D34zl>span{width:inherit}.RefSelectorAnchoredOverlay-module__RefSelectorOverlayContainer--mCbv8{display:flex;width:100%}.RefSelectorAnchoredOverlay-module__RefSelectorOverlayHeader--D4cnZ{color:var(--fgColor-muted);margin-right:var(--base-size-4)}.RefSelectorAnchoredOverlay-module__RefSelectorBtnTextContainer--yO402{font-size:var(--text-body-size-medium);min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.RefSelectorAnchoredOverlay-module__RefSelectorText--bxVhQ{min-width:0}.HighlightedText-module__HighlightedText--XiJMv{text-overflow:ellipsis;white-space:nowrap}.RefItem-module__ItemIcon--uDlDK{padding-right:var(--base-size-4)}.RefItem-module__ItemIcon--uDlDK[data-icon-visibility=hidden]{visibility:hidden}.RefsList-module__FixedSizeVirtualList--sfJlf{max-height:330px;overflow-y:auto}.RefSelectorV1-module__RefSelectorContainer--DFuLg{border-bottom:var(--borderWidth-thin) solid;border-color:var(--borderColor-muted);padding-bottom:var(--base-size-8)}.RefSelectorV1-module__RefSelectorInnerContainer--pH_Dn{align-items:center;display:flex;justify-content:space-between;padding-bottom:var(--base-size-8);padding-left:var(--base-size-8);padding-right:var(--base-size-8)}.RefSelectorV1-module__RefSelectorHeading--FSd2d{font-size:inherit;padding-left:var(--base-size-8)}.RefSelectorV1-module__RefSelectorCloseButton--x91Lr{color:var(--fgColor-muted)}.RefSelectorV1-module__RefTypeTabs--slHyr{border-bottom:var(--borderWidth-thin) solid;border-color:var(--borderColor-muted);margin-left:calc(var(--base-size-8)*-1);margin-right:calc(var(--base-size-8)*-1)}.RefSelectorV1-module__RefTypeTabs--slHyr>nav{border-bottom:none}.RefSelectorV1-module__RefSelectorFilterContainer--nzwdI{padding-left:var(--base-size-8);padding-right:var(--base-size-8)}.RefSelectorV1-module__RefSelectorInput--Myj_6{width:100%}.RefSelectorV1-module__LoadingContainer--B9AR4{display:flex;justify-content:center;padding:var(--base-size-8)}.RefSelectorV1-module__ZeroStateText--ZRhw5{display:flex;justify-content:center;padding:var(--base-size-16)}.RefSelectorV1-module__ViewAllRefsActionLink--riztS{display:flex;justify-content:center}.RefSelectorV1-module__ViewAllRefsActionText--T80I4{display:flex}.RefSelectorV1-module__BranchOcticon--Fpshx{color:var(--fgColor-muted);margin-right:var(--base-size-8)}.RefSelectorV1-module__RefActionText--b19i0{font-family:var(--fontFamily-mono);font-weight:var(--base-text-weight-semibold)}.RefSelectorV1-module__Divider--fKdqp{background-color:var(--borderColor-muted)}.RefSelector-module__RefSelectorTabs--nkSFr{padding-left:var(--base-size-8)}.RefSelector-module__RefSelectorTabLink--WGX7u{border-bottom-left-radius:0;border-bottom-right-radius:0}.AutocompleteSuggestions-module__Overlay_0--LMGK_{position:fixed!important}.AutocompleteSuggestions-module__suggestion--ted1j span[id$=trailing-visual]{margin-left:var(--control-medium-gap)}.AutocompleteSuggestions-module__suggestion--ted1j[data-active]{background-color:var(--control-bgColor-active)}.AutocompleteSuggestions-module__suggestion--ted1j[data-active]>div>span>span{font-weight:var(--base-text-weight-normal)}.AutocompleteSuggestions-module__ActionList_0--iXEKc{overflow-y:auto}.ReposSelector-module__invisibleWithBorder--IwcUx{border:var(--borderWidth-thin) solid var(--borderColor-muted)}.ReposSelector-module__selected--dfRBF{background-color:var(--bgColor-accent-muted);border-color:var(--borderColor-accent-muted);color:var(--fgColor-accent)}.InlineAutocomplete-module__container--lzMAk{display:inline-block;position:relative}.InlineAutocomplete-module__container--lzMAk>*,.InlineAutocomplete-module__fullWidth--xhTmc{width:100%}.IconButtonSelector-module__anchor--t8Bzw[data-selected=true]:not(:disabled){background:var(--bgColor-accent-muted);border:var(--borderWidth-thin) solid var(--borderColor-accent-muted);color:var(--fgColor-accent)}.AgentSelector-module__anchor--SnbmM{position:relative}.AgentSelector-module__anchor--SnbmM[data-selected=true]:not(.AgentSelector-module__iconButton--C8Vdl):not(:disabled){background:var(--bgColor-success-muted);border:var(--borderWidth-thin) solid var(--borderColor-success-muted);color:var(--fgColor-success)}.AgentSelector-module__anchor--SnbmM[data-selected=true]:not(:disabled) [data-component=leadingVisual],.AgentSelector-module__anchor--SnbmM[data-selected=true]:not(:disabled) [data-component=trailingAction]{color:var(--fgColor-success);fill:currentColor}.AgentSelector-module__checkIcon--DLBv8{bottom:var(--base-size-4);display:none;position:absolute;right:var(--base-size-4)}.AgentSelector-module__anchor--SnbmM[data-selected=true] .AgentSelector-module__checkIcon--DLBv8{display:block}.AgentSelector-module__emptyStateContainer--FrxRO{align-items:center;display:flex;flex-direction:column;max-width:300px;padding:var(--base-size-16) var(--base-size-12);text-align:center;text-wrap:balance}.AgentSelector-module__emptyStateTitle--coj6M{color:var(--fgColor-default);font-size:var(--text-body-size-medium);font-weight:var(--base-text-weight-semibold);margin-bottom:var(--base-size-4)}.AgentSelector-module__emptyStateDescription--C58Xx{color:var(--fgColor-muted);font-size:var(--text-body-size-small);font-weight:var(--base-text-weight-light);margin-bottom:var(--base-size-16)}.AgentSelector-module__avatarButton--vp2Ab{min-width:auto;padding:var(--base-size-6) var(--base-size-6) var(--base-size-8)}.AgentSelector-module__avatarButton--vp2Ab>*{box-shadow:none!important}.AgentSelector-module__avatarButtonSkeleton--jkY1N{min-width:auto;padding:0}.RepoBranchAgentSelector-module__container--gHrlH{display:flex;gap:var(--base-size-8)}.RepoBranchAgentSelector-module__repoSelectorButton--tAnOR{border:var(--borderWidth-thin) solid var(--borderColor-muted);min-width:auto}.RepoBranchAgentSelector-module__repoSelectorButton--tAnOR [data-component=buttonContent]{flex-shrink:1}.RepoBranchAgentSelector-module__invisibleSelectorButton--vpcnl{border:var(--borderWidth-thin) solid var(--borderColor-muted)}.FeedbackLink-module__link--Ga4DP{font-size:var(--text-body-size-small)}.ProviderLogo-module__ProviderLogo--XAQ0O{align-items:center;display:flex;flex-shrink:0;justify-content:center}.ProviderLogo-module__ProviderLogo--XAQ0O img{aspect-ratio:1;display:flex;width:100%}:is(.ProviderLogo-module__ProviderLogo--XAQ0O,.ProviderLogo-module__ProviderLogo--XAQ0O[data-size=small]){width:16px}.ProviderLogo-module__ProviderLogo--XAQ0O[data-size=medium]{width:32px}.ProviderLogo-module__ProviderLogo--XAQ0O[data-size=large]{width:64px}@media(prefers-reduced-motion){.CopyToClipboardButton-module__tooltip--HDUYz:popover-open,.CopyToClipboardButton-module__tooltip--HDUYz:popover-open:before{animation:none!important;opacity:1!important}}.CodeBlock-module__container--QRI4L{margin:0;margin-bottom:var(--base-size-16);--header-height:var(--base-size-48)}.CodeBlock-module__container--QRI4L .CodeBlock-module__copyContent--BH7EX{right:var(--base-size-8)}.CodeBlock-module__container--QRI4L .CodeBlock-module__copyButton--eyFr8{background-color:var(--bgColor-muted)}.CodeBlock-module__container--QRI4L .CodeBlock-module__copyButton--eyFr8:hover{background-color:var(--button-invisible-bgColor-hover)}.CodeBlock-module__container--QRI4L.CodeBlock-module__assistive--IJ9ks .CodeBlock-module__copyButton--eyFr8,.CodeBlock-module__container--QRI4L.CodeBlock-module__assistive--IJ9ks .CodeBlock-module__header--K8Zrp{background-color:var(--bgColor-inset)}.CodeBlock-module__container--QRI4L.CodeBlock-module__assistive--IJ9ks .CodeBlock-module__copyButton--eyFr8:hover{background-color:var(--button-invisible-bgColor-hover)}.CodeBlock-module__container--QRI4L.CodeBlock-module__immersive--D8NjT .CodeBlock-module__header--K8Zrp{background-color:var(--bgColor-muted)}.CodeBlock-module__container--QRI4L.CodeBlock-module__immersive--D8NjT .CodeBlock-module__code--gyjSL code{font-size:var(--text-body-size-medium)}.CodeBlock-module__container--QRI4L .CodeBlock-module__header--K8Zrp{align-items:center;background-color:var(--bgColor-muted);border:var(--borderWidth-thin) solid var(--borderColor-muted);border-radius:var(--borderRadius-large) var(--borderRadius-large) 0 0;color:var(--fgColor-muted);display:flex;gap:var(--base-size-4);height:var(--header-height);padding-left:var(--base-size-16);padding-right:var(--base-size-40)}.CodeBlock-module__container--QRI4L .CodeBlock-module__codeContainer--snQei{background-color:var(--bgColor-default);border:var(--borderWidth-thin) solid var(--borderColor-muted);border-radius:0 0 var(--borderRadius-large) var(--borderRadius-large);border-top-width:0;overflow:hidden}.CodeBlock-module__container--QRI4L .CodeBlock-module__codeContainer--snQei .CodeBlock-module__code--gyjSL{padding:var(--base-size-16) var(--base-size-24)!important}.CodeBlock-module__container--QRI4L .CodeBlock-module__copyContainer--jLoHL{position:sticky;top:var(--header-height)}.CodeBlock-module__container--QRI4L .CodeBlock-module__copyContainer--jLoHL .CodeBlock-module__copyContent--BH7EX{align-items:center;bottom:0;display:flex;height:var(--header-height);position:absolute}.CodeBlock-module__container--QRI4L .CodeBlock-module__languageName--fxI6n{flex-grow:1;font-size:var(--text-body-size-medium);margin-left:var(--base-size-4)}.CodeBlock-module__container--QRI4L .CodeBlock-module__code--gyjSL{background:none!important;border-radius:0!important;margin:0!important}.CodeBlock-module__container--QRI4L .CodeBlock-module__codeWrap--UMQo8{white-space:pre-wrap;word-wrap:anywhere}.LanguageDot-module__languageDot--O6n2z{background-color:var(--bgColor-disabled);border:var(--borderWidth-thin) solid var(--borderColor-translucent);border-radius:var(--borderRadius-full);display:inline-block;height:10px;width:10px}.LanguageDot-module__languageDotCompact--V51gt{background-color:var(--bgColor-disabled);border-radius:var(--borderRadius-full);display:inline-block;height:var(--base-size-8);width:var(--base-size-8)}.AnnotationsList-module__summary--s4Hbl{align-items:center;border-radius:var(--borderRadius-large);display:flex;gap:var(--base-size-8);height:var(--base-size-36);list-style:none;padding:0 var(--base-size-8);transition:background-color 50ms linear}.AnnotationsList-module__summary--s4Hbl:hover{background-color:var(--control-bgColor-hover)}.AnnotationsList-module__summary--s4Hbl::-webkit-details-marker,.AnnotationsList-module__summary--s4Hbl::marker{display:none}.AnnotationsList-module__summaryText--fuV8i{font:var(--text-caption-shorthand);padding:0 var(--base-size-4)}.AnnotationsList-module__chevron--bQbqF{color:var(--fgColor-muted)}.AnnotationsList-module__chevron--bQbqF svg{transition:transform .25s ease}[open] .AnnotationsList-module__chevron--bQbqF svg{transform:rotate(90deg);transform-origin:50% 50%}.AnnotationsList-module__items--bRsb6{border-left:var(--borderWidth-thin) solid var(--borderColor-default);margin:0 0 0 var(--base-size-40)!important;padding:0 0 0 var(--base-size-12)!important}.AnnotationsList-module__items--bRsb6 a{text-decoration:none!important}.MarkdownRenderer-module__container--dNKcF{font-size:inherit;position:relative}.MarkdownRenderer-module__container--dNKcF .MarkdownRenderer-module__contentContainer--xz1ce>:first-child{margin-top:0!important}.MarkdownRenderer-module__container--dNKcF .MarkdownRenderer-module__contentContainer--xz1ce>:last-child{margin-bottom:0!important}.MarkdownRenderer-module__fadeInContent--e9SCi :not(.MarkdownRenderer-module__noFade--P7umO,.MarkdownRenderer-module__noFade--P7umO *,li:first-child>p:first-child,li:first-child>p:first-child *){animation-duration:var(--MarkdownRenderer_streaming-fade-duration);animation-fill-mode:forwards;animation-name:MarkdownRenderer-module__fade-in--OfmwV;animation-timing-function:ease-in;opacity:0}@keyframes MarkdownRenderer-module__fade-in--OfmwV{0%{opacity:0}to{opacity:1}}@keyframes MarkdownRenderer-module__blink--xIwk8{0%,to{opacity:1}50%{opacity:0}}.ModelPicker-module__menuButton--w_ML2{display:flex;gap:var(--base-size-4);min-width:0}.ModelPicker-module__menuButton--w_ML2>[data-component=buttonContent]{flex:1;max-width:100%}.ModelPicker-module__menuButton--w_ML2:disabled .ModelPicker-module__buttonName--Iid1H{color:var(--fgColor-muted)}.ModelPicker-module__menuHeading--PBTLv{border-bottom:var(--borderWidth-thin) solid var(--borderColor-muted);color:var(--fgColor-default);font-size:var(--text-body-size-small);font-weight:var(--base-text-weight-semibold);padding:var(--base-size-4) var(--base-size-16) var(--base-size-12)}.ModelPicker-module__buttonName--Iid1H{color:var(--fgColor-muted);font-weight:var(--base-text-weight-normal);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ModelPicker-module__messageRetryButtonGroup--UkrjO:is(:hover,:focus,:focus-within){background-color:var(--button-invisible-bgColor-hover);border-radius:var(--borderRadius-medium)}.ModelPicker-module__messageRetryButtonGroup--UkrjO:is(:hover,:focus,:focus-within) .ModelPicker-module__messageRetryDivider--gIDae{opacity:0}.ModelPicker-module__messageRetryButtonGroup--UkrjO .ModelPicker-module__messageRetryMenuButton--rNpIr{border-bottom-left-radius:0;border-top-left-radius:0;width:var(--base-size-24)}.ModelPicker-module__messageRetryButtonGroup--UkrjO .ModelPicker-module__messageRetryButton--DqHs5{border-bottom-right-radius:0;border-top-right-radius:0}.ModelPicker-module__messageRetryButtonGroup--UkrjO .ModelPicker-module__messageRetryDivider--gIDae{border-left:var(--borderWidth-thin,var(--borderWidth-thin)) solid var(--borderColor-muted,var(--color-border-muted));height:calc(var(--control-medium-size, 32px)/2);margin-top:var(--base-size-8)}.ModelPicker-module__modelNameDisabled--Vhv9R{color:var(--fgColor-disabled)}.ModelPicker-module__modelMetaLabel--zMick{background:var(--bgColor-muted);border-radius:var(--borderRadius-full);color:var(--fgColor-muted);display:inline-block;font-size:11px;margin-left:var(--base-size-8);padding:0 var(--base-size-8)}.ModelPicker-module__footer--yCNLJ{background-color:var(--bgColor-muted);border-top:var(--borderWidth-thin) solid var(--borderColor-muted);color:var(--fgColor-muted);font-size:var(--text-body-size-small);padding:var(--base-size-8) var(--base-size-16)}@media(max-width:480px){.ModelPicker-module__buttonName--Iid1H{min-width:0}}.ModelPicker-module__loadingSpinner--BTsER{margin-left:var(--base-size-8);margin-right:var(--base-size-8)}.ModelPicker-module__actionMenuOverlay--Xawta{max-height:min(100vh - 32px,600px)}.ModelPicker-module__multiplier--mlLYq{color:var(--fgColor-muted);font-size:var(--text-body-size-small);transform:translateY(1px)}.CopilotAnimation-module__copilotAnimationHolder--y50tP{color:var(--fgColor-muted);height:calc(32px*var(--copilot-animation-scale, 1));overflow:hidden;width:calc(32px*var(--copilot-animation-scale, 1))}.CopilotAnimation-module__copilotAnimationHolder--y50tP.CopilotAnimation-module__activate--dz7l9{width:calc(48px*var(--copilot-animation-scale, 1))}.CopilotAnimation-module__copilotAnimation--JSfrc{height:calc(32px*var(--copilot-animation-scale, 1));overflow:hidden;width:calc(32px*var(--copilot-animation-scale, 1))}.CopilotAnimation-module__copilotAnimation--JSfrc.CopilotAnimation-module__activate--dz7l9{width:calc(48px*var(--copilot-animation-scale, 1))}@keyframes Activate-module__spriteAnimation--JSdvk{0%{transform:translateY(0)}to{transform:translateY(-100%)}}@keyframes Activate-module__copilotScaleAnimation--_y5E2{0%{transform:scale(.01)}to{transform:scale(1)}}@keyframes Activate-module__blink-star--yo321{0%{opacity:1}20%{opacity:1}30%{opacity:.4}40%{opacity:1}}@keyframes Activate-module__trail-animation-1--RuDD5{0%{transform:rotate(-3.1415926536rad) scaleX(.01)}50%{transform:rotate(-3.1415926536rad) scaleX(1)}to{transform:rotate(-3.1415926536rad) scaleX(.01)}}@keyframes Activate-module__trail-animation-2--xWbgc{0%{transform:rotate(-2.0420352248rad) scaleX(.01)}50%{transform:rotate(-2.0420352248rad) scaleX(1)}to{transform:rotate(-2.0420352248rad) scaleX(.01)}}@keyframes Activate-module__trail-animation-3--Er3U0{0%{transform:rotate(-.9424777961rad) scaleX(.01)}50%{transform:rotate(-.9424777961rad) scaleX(1)}to{transform:rotate(-.9424777961rad) scaleX(.01)}}@keyframes Activate-module__trail-animation-4--mkE7w{0%{transform:rotate(.1570796327rad) scaleX(.01)}50%{transform:rotate(.1570796327rad) scaleX(1)}to{transform:rotate(.1570796327rad) scaleX(.01)}}@keyframes Activate-module__trail-animation-5--UlC0f{0%{transform:rotate(1.2566370614rad) scaleX(.01)}50%{transform:rotate(1.2566370614rad) scaleX(1)}to{transform:rotate(1.2566370614rad) scaleX(.01)}}@keyframes Activate-module__trail-animation-6--He6SH{0%{transform:rotate(2.3561944902rad) scaleX(.01)}50%{transform:rotate(2.3561944902rad) scaleX(1)}to{transform:rotate(2.3561944902rad) scaleX(.01)}}@keyframes Activate-module__trail-animation-7--ulIE9{0%{transform:rotate(3.4557519189rad) scaleX(.01)}50%{transform:rotate(3.4557519189rad) scaleX(1)}to{transform:rotate(3.4557519189rad) scaleX(.01)}}@keyframes Activate-module__trail-animation-8--o30kP{0%{transform:rotate(4.5553093477rad) scaleX(.01)}50%{transform:rotate(4.5553093477rad) scaleX(1)}to{transform:rotate(4.5553093477rad) scaleX(.01)}}@keyframes Activate-module__trail-animation-9--VH5lH{0%{transform:rotate(5.6548667765rad) scaleX(.01)}50%{transform:rotate(5.6548667765rad) scaleX(1)}to{transform:rotate(5.6548667765rad) scaleX(.01)}}@keyframes Activate-module__trail-animation-10--F7ZGb{0%{transform:rotate(6.7544242052rad) scaleX(.01)}50%{transform:rotate(6.7544242052rad) scaleX(1)}to{transform:rotate(6.7544242052rad) scaleX(.01)}}@keyframes Activate-module__sparkle-animation-1--MphRQ{0%{opacity:0;transform:translate(0)}20%{opacity:1}60%{opacity:1}to{opacity:0;transform:translate(calc(85px*var(--copilot-animation-scale, 1)),calc(0px*var(--copilot-animation-scale, 1)))}}@keyframes Activate-module__sparkle-animation-2--qHSbm{0%{opacity:0;transform:translate(0)}20%{opacity:1}60%{opacity:1}to{opacity:0;transform:translate(calc(38.36699px*var(--copilot-animation-scale, 1)),calc(75.29946px*var(--copilot-animation-scale, 1)))}}@keyframes Activate-module__sparkle-animation-3--pfXER{0%{opacity:0;transform:translate(0)}20%{opacity:1}60%{opacity:1}to{opacity:0;transform:translate(calc(-48.83918px*var(--copilot-animation-scale, 1)),calc(67.22136px*var(--copilot-animation-scale, 1)))}}@keyframes Activate-module__sparkle-animation-4--DPD6P{0%{opacity:0;transform:translate(0)}20%{opacity:1}60%{opacity:1}to{opacity:0;transform:translate(calc(-79.88211px*var(--copilot-animation-scale, 1)),calc(-12.65208px*var(--copilot-animation-scale, 1)))}}@keyframes Activate-module__sparkle-animation-5--txsat{0%{opacity:0;transform:translate(0)}20%{opacity:1}60%{opacity:1}to{opacity:0;transform:translate(calc(-24.13119px*var(--copilot-animation-scale, 1)),calc(-74.26816px*var(--copilot-animation-scale, 1)))}}@keyframes Activate-module__sparkle-animation-6--WaI9S{0%{opacity:0;transform:translate(0)}20%{opacity:1}60%{opacity:1}to{opacity:0;transform:translate(calc(53.03301px*var(--copilot-animation-scale, 1)),calc(-53.03301px*var(--copilot-animation-scale, 1)))}}@keyframes Activate-module__sparkle-animation-7--r3dcP{0%{opacity:0;transform:translate(0)}20%{opacity:1}60%{opacity:1}to{opacity:0;transform:translate(calc(68.39031px*var(--copilot-animation-scale, 1)),calc(22.22136px*var(--copilot-animation-scale, 1)))}}@keyframes Activate-module__sparkle-animation-8--qOfXY{0%{opacity:0;transform:translate(0)}20%{opacity:1}60%{opacity:1}to{opacity:0;transform:translate(calc(10.81309px*var(--copilot-animation-scale, 1)),calc(68.27114px*var(--copilot-animation-scale, 1)))}}@keyframes Activate-module__sparkle-animation-9--TKmPB{0%{opacity:0;transform:translate(0)}20%{opacity:1}60%{opacity:1}to{opacity:0;transform:translate(calc(-54.13119px*var(--copilot-animation-scale, 1)),calc(39.32861px*var(--copilot-animation-scale, 1)))}}@keyframes Activate-module__sparkle-animation-10--xK0Gz{0%{opacity:0;transform:translate(0)}20%{opacity:1}60%{opacity:1}to{opacity:0;transform:translate(calc(-58.35151px*var(--copilot-animation-scale, 1)),calc(-29.73158px*var(--copilot-animation-scale, 1)))}}.Activate-module__activate--w81cr{height:calc(32px*var(--copilot-animation-scale, 1));position:relative;width:calc(48px*var(--copilot-animation-scale, 1))}.Activate-module__activate--w81cr .Activate-module__copilot--dZWRK{height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}.Activate-module__activate--w81cr .Activate-module__copilot--dZWRK svg{position:relative;width:100%}.Activate-module__activate--w81cr .Activate-module__sparkles--DWcVb{--activate-sparkle-size:12px}.Activate-module__activate--w81cr .Activate-module__sparkles--DWcVb .Activate-module__sparkle--xUJlF{height:var(--activate-sparkle-size);left:calc(50% - var(--activate-sparkle-size)*.5);position:absolute;top:calc(50% - var(--activate-sparkle-size)*.5);transform:scale(0);width:var(--activate-sparkle-size)}.Activate-module__activate--w81cr .Activate-module__sparkles--DWcVb .Activate-module__sparkle--xUJlF svg{color:var(--fgColor-default);height:100%;left:0;position:absolute;top:0;width:100%}.Activate-module__activate--w81cr .Activate-module__sparkles--DWcVb .Activate-module__sparkle--xUJlF .Activate-module__sparkleTrail--J3ZVZ{background:linear-gradient(-90deg,#7f5ddc00,#7f5ddc80 50%,#3787b5 80%,#71f172);height:20%;left:50%;position:absolute;top:40%;transform-origin:0 50%;width:200%}.Activate-module__activate--w81cr[data-animation-state=idle] .Activate-module__copilot--dZWRK,.Activate-module__activate--w81cr[data-animation-state=idle] .Activate-module__copilot--dZWRK svg{transform:translateY(0)}@media(prefers-reduced-motion:no-preference){.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__copilot--dZWRK{animation:Activate-module__copilotScaleAnimation--_y5E2 .6s cubic-bezier(.49,.18,.33,.94)}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__copilot--dZWRK svg{animation:Activate-module__spriteAnimation--JSdvk 1s steps(34) 0s}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF,.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF .Activate-module__sparkleTrail--J3ZVZ{animation-timing-function:cubic-bezier(.09,.48,.2,1)}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF svg{animation:Activate-module__blink-star--yo321 1s linear}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:first-child{animation-name:Activate-module__sparkle-animation-1--MphRQ}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:first-child .Activate-module__sparkleTrail--J3ZVZ{animation-name:Activate-module__trail-animation-1--RuDD5}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(2){animation-name:Activate-module__sparkle-animation-2--qHSbm}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(2) .Activate-module__sparkleTrail--J3ZVZ{animation-name:Activate-module__trail-animation-2--xWbgc}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(3){animation-name:Activate-module__sparkle-animation-3--pfXER}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(3) .Activate-module__sparkleTrail--J3ZVZ{animation-name:Activate-module__trail-animation-3--Er3U0}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(4){animation-name:Activate-module__sparkle-animation-4--DPD6P}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(4) .Activate-module__sparkleTrail--J3ZVZ{animation-name:Activate-module__trail-animation-4--mkE7w}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(5){animation-name:Activate-module__sparkle-animation-5--txsat}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(5) .Activate-module__sparkleTrail--J3ZVZ{animation-name:Activate-module__trail-animation-5--UlC0f}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(6){animation-name:Activate-module__sparkle-animation-6--WaI9S}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(6) .Activate-module__sparkleTrail--J3ZVZ{animation-name:Activate-module__trail-animation-6--He6SH}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(7){animation-name:Activate-module__sparkle-animation-7--r3dcP}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(7) .Activate-module__sparkleTrail--J3ZVZ{animation-name:Activate-module__trail-animation-7--ulIE9}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(8){animation-name:Activate-module__sparkle-animation-8--qOfXY}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(8) .Activate-module__sparkleTrail--J3ZVZ{animation-name:Activate-module__trail-animation-8--o30kP}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(9){animation-name:Activate-module__sparkle-animation-9--TKmPB}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(9) .Activate-module__sparkleTrail--J3ZVZ{animation-name:Activate-module__trail-animation-9--VH5lH}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(10){animation-name:Activate-module__sparkle-animation-10--xK0Gz}.Activate-module__activate--w81cr[data-animation-state=running] .Activate-module__sparkle--xUJlF:nth-child(10) .Activate-module__sparkleTrail--J3ZVZ{animation-name:Activate-module__trail-animation-10--F7ZGb}}@keyframes Celebrate-module__copilotRun--sKpgB{0%{transform:translateY(calc(-32px*var(--copilot-animation-scale, 1)))}to{transform:translateY(calc(-1056px*var(--copilot-animation-scale, 1)))}}.Celebrate-module__celebrate--W7jkS[data-animation-state=idle]{transform:translateY(0)}@media(prefers-reduced-motion:no-preference){.Celebrate-module__celebrate--W7jkS[data-animation-state=running]{animation:Celebrate-module__copilotRun--sKpgB 1.056s steps(32) 1}}@keyframes Affirmative-module__copilotRun--NNvIY{0%{transform:translateY(calc(-32px*var(--copilot-animation-scale, 1)))}to{transform:translateY(calc(-640px*var(--copilot-animation-scale, 1)))}}.Affirmative-module__affirmative--yLQwP[data-animation-state=idle]{transform:translateY(0)}@media(prefers-reduced-motion:no-preference){.Affirmative-module__affirmative--yLQwP[data-animation-state=running]{animation:Affirmative-module__copilotRun--NNvIY .627s steps(19) 1}}@keyframes Confirm-module__copilotRun--hSoCd{0%{transform:translateY(calc(-32px*var(--copilot-animation-scale, 1)))}to{transform:translateY(calc(-640px*var(--copilot-animation-scale, 1)))}}.Confirm-module__confirm--rF0fe[data-animation-state=idle]{transform:translateY(0)}@media(prefers-reduced-motion:no-preference){.Confirm-module__confirm--rF0fe[data-animation-state=running]{animation:Confirm-module__copilotRun--hSoCd .627s steps(19) 1}}@keyframes Idle-module__copilotRun--y4Bix{0%{transform:translateY(calc(var(--copilot-animation-scale, 1)*0))}59.4796%{transform:translateY(calc(-32px*var(--copilot-animation-scale, 1)))}59.7249%{transform:translateY(calc(-64px*var(--copilot-animation-scale, 1)))}60.2156%{transform:translateY(calc(-96px*var(--copilot-animation-scale, 1)))}60.4610%{transform:translateY(calc(-128px*var(--copilot-animation-scale, 1)))}64.1784%{transform:translateY(calc(-160px*var(--copilot-animation-scale, 1)))}64.4238%{transform:translateY(calc(-192px*var(--copilot-animation-scale, 1)))}64.6691%{transform:translateY(calc(-224px*var(--copilot-animation-scale, 1)))}64.9145%{transform:translateY(calc(-256px*var(--copilot-animation-scale, 1)))}65.1599%{transform:translateY(calc(-288px*var(--copilot-animation-scale, 1)))}65.4052%{transform:translateY(calc(-320px*var(--copilot-animation-scale, 1)))}65.6506%{transform:translateY(calc(-352px*var(--copilot-animation-scale, 1)))}65.8959%{transform:translateY(calc(-384px*var(--copilot-animation-scale, 1)))}66.1413%{transform:translateY(calc(-416px*var(--copilot-animation-scale, 1)))}66.3866%{transform:translateY(calc(-448px*var(--copilot-animation-scale, 1)))}66.6320%{transform:translateY(calc(-480px*var(--copilot-animation-scale, 1)))}66.8773%{transform:translateY(calc(-512px*var(--copilot-animation-scale, 1)))}67.1227%{transform:translateY(calc(-544px*var(--copilot-animation-scale, 1)))}67.3680%{transform:translateY(calc(-576px*var(--copilot-animation-scale, 1)))}67.6134%{transform:translateY(calc(-608px*var(--copilot-animation-scale, 1)))}78.7658%{transform:translateY(calc(-640px*var(--copilot-animation-scale, 1)))}79.0112%{transform:translateY(calc(-672px*var(--copilot-animation-scale, 1)))}79.2565%{transform:translateY(calc(-704px*var(--copilot-animation-scale, 1)))}79.5019%{transform:translateY(calc(-736px*var(--copilot-animation-scale, 1)))}79.7472%{transform:translateY(calc(-768px*var(--copilot-animation-scale, 1)))}79.9926%{transform:translateY(calc(-800px*var(--copilot-animation-scale, 1)))}80.2379%{transform:translateY(calc(-832px*var(--copilot-animation-scale, 1)))}80.4833%{transform:translateY(calc(-864px*var(--copilot-animation-scale, 1)))}80.7286%{transform:translateY(calc(-896px*var(--copilot-animation-scale, 1)))}80.9740%{transform:translateY(calc(-928px*var(--copilot-animation-scale, 1)))}81.2193%{transform:translateY(calc(-960px*var(--copilot-animation-scale, 1)))}81.4647%{transform:translateY(calc(-992px*var(--copilot-animation-scale, 1)))}81.7100%{transform:translateY(calc(-1024px*var(--copilot-animation-scale, 1)))}81.9554%{transform:translateY(calc(-1056px*var(--copilot-animation-scale, 1)))}82.2007%{transform:translateY(calc(-1088px*var(--copilot-animation-scale, 1)))}89.6357%{transform:translateY(calc(-1120px*var(--copilot-animation-scale, 1)))}89.8810%{transform:translateY(calc(-1152px*var(--copilot-animation-scale, 1)))}90.1264%{transform:translateY(calc(-1184px*var(--copilot-animation-scale, 1)))}90.3717%{transform:translateY(calc(-1216px*var(--copilot-animation-scale, 1)))}90.6171%{transform:translateY(calc(-1248px*var(--copilot-animation-scale, 1)))}90.8625%{transform:translateY(calc(-1280px*var(--copilot-animation-scale, 1)))}91.1078%{transform:translateY(calc(-1312px*var(--copilot-animation-scale, 1)))}91.3532%{transform:translateY(calc(-1344px*var(--copilot-animation-scale, 1)))}91.5985%{transform:translateY(calc(-1376px*var(--copilot-animation-scale, 1)))}91.8439%{transform:translateY(calc(-1408px*var(--copilot-animation-scale, 1)))}92.0892%{transform:translateY(calc(-1440px*var(--copilot-animation-scale, 1)))}92.3346%{transform:translateY(calc(-1472px*var(--copilot-animation-scale, 1)))}92.5799%{transform:translateY(calc(-1504px*var(--copilot-animation-scale, 1)))}92.8253%{transform:translateY(calc(-1536px*var(--copilot-animation-scale, 1)))}93.0706%{transform:translateY(calc(-1568px*var(--copilot-animation-scale, 1)))}99.0186%{transform:translateY(calc(-1600px*var(--copilot-animation-scale, 1)))}99.2639%{transform:translateY(calc(-1632px*var(--copilot-animation-scale, 1)))}99.7546%{transform:translateY(calc(-1664px*var(--copilot-animation-scale, 1)))}to{transform:translateY(calc(-1696px*var(--copilot-animation-scale, 1)))}}.Idle-module__idle--_WWNO[data-animation-state=idle]{transform:translateY(0)}@media(prefers-reduced-motion:no-preference){.Idle-module__idle--_WWNO[data-animation-state=running]{animation:Idle-module__copilotRun--y4Bix 13.483s steps(1) infinite}}@keyframes JumpWiggle-module__copilotRun--Q4K4i{0%{transform:translateY(calc(-32px*var(--copilot-animation-scale, 1)))}to{transform:translateY(calc(-1248px*var(--copilot-animation-scale, 1)))}}.JumpWiggle-module__jumpWiggle--rDQC4[data-animation-state=idle]{transform:translateY(0)}@media(prefers-reduced-motion:no-preference){.JumpWiggle-module__jumpWiggle--rDQC4[data-animation-state=running]{animation:JumpWiggle-module__copilotRun--Q4K4i 1.254s steps(38) 1}}@media(prefers-reduced-motion:reduce){.JumpWiggle-module__jumpWiggle--rDQC4[data-animation-state=running]{transform:translateY(calc(-608px*var(--copilot-animation-scale, 1)))}}@keyframes Negative-module__copilotRun--Rdvo1{0%{transform:translateY(calc(-32px*var(--copilot-animation-scale, 1)))}to{transform:translateY(calc(-800px*var(--copilot-animation-scale, 1)))}}.Negative-module__negative--CW3iF[data-animation-state=idle]{transform:translateY(0)}@media(prefers-reduced-motion:no-preference){.Negative-module__negative--CW3iF[data-animation-state=running]{animation:Negative-module__copilotRun--Rdvo1 .792s steps(24) 1}}.Static-module__static--XPULt[data-animation-state=idle]{transform:translateY(0)}.CopilotAssignmentForm-module__formContainer--ncBDe{display:flex;flex-direction:column;gap:12px;width:100%}.CopilotAssignmentForm-module__selectorsContainer--QsXMe{width:100%}.CopilotAssignmentForm-module__selectorsRow--LskTl{align-items:flex-end;display:flex;gap:var(--base-size-8)}.CopilotAssignmentForm-module__formControl--Y9Z73,.CopilotAssignmentForm-module__formControl--Y9Z73>button{min-width:auto}.CopilotAssignmentForm-module__formControl--Y9Z73>button [data-component=buttonContent]{flex-shrink:1}.CopilotAssignmentForm-module__textareaContainer--Vki_J{width:100%}.CopilotAssignmentForm-module__textarea--wCaxl{resize:vertical;width:100%}.CopilotAssignmentForm-module__buttonsContainer--ZpsdN{width:100%}.CopilotAssignmentForm-module__buttonsRow--TlL8P{align-items:center;display:flex;gap:12px;justify-content:flex-end}.CopilotAssignmentForm-module__warningBanner--xcQ1g{margin-top:var(--base-size-16)}.CopilotAssignmentForm-module__assignButton--CzEjI{min-width:80px}.CopilotAssignmentForm-module__branchValidation--GLQgi{display:flex;justify-content:flex-end}.CopilotAssignmentForm-module__modelPickerContainer--z4faA{display:flex;margin-left:auto}@keyframes Thinking-module__copilotStart--nD4kd{to{transform:translateY(calc(-384px*var(--copilot-animation-scale, 1)))}}@keyframes Thinking-module__copilotRun--RCRv2{0%{transform:translateY(calc(-416px*var(--copilot-animation-scale, 1)))}to{transform:translateY(calc(-1728px*var(--copilot-animation-scale, 1)))}}@keyframes Thinking-module__copilotEnd--ze6hU{0%{transform:translateY(calc(-1792px*var(--copilot-animation-scale, 1)))}to{transform:translateY(calc(-2208px*var(--copilot-animation-scale, 1)))}}.Thinking-module__thinking--S6ZhG[data-animation-state=idle]{transform:translateY(0)}@media(prefers-reduced-motion:no-preference){.Thinking-module__thinking--S6ZhG[data-animation-state=starting]{animation:Thinking-module__copilotStart--nD4kd .429s steps(12) 1}.Thinking-module__thinking--S6ZhG[data-animation-state=running]{animation:Thinking-module__copilotRun--RCRv2 1.353s steps(41) infinite}.Thinking-module__thinking--S6ZhG[data-animation-state=ending]{animation:Thinking-module__copilotEnd--ze6hU .429s steps(13) 1}}.CopilotAssignmentModal-module__header--sMKO8{align-items:center;display:flex;justify-content:space-between;padding:var(--base-size-8);padding-left:var(--base-size-16)}.CopilotAssignmentModal-module__rightSection--R7yuX{align-items:center;display:flex;gap:var(--base-size-8)}.CopilotAssignmentModal-module__previewBadge--Gu2_W{flex-shrink:0}.CopilotAssignmentModal-module__feedbackLink--bcJD_{flex-shrink:0;font-size:var(--text-body-size-small)}.CopilotAssignmentModal-module__description--L15j_{color:var(--fgColor-muted);margin-bottom:var(--base-size-16)}.CopilotAssignmentModal-module__errorContainer--xYkaJ{margin-bottom:var(--base-size-16)}@media(min-width:34rem){.CopilotAssignmentModal-module__errorMarkdown--pw_FR{margin-right:var(--base-size-2)}}.CopilotCodingAgentQuotaBanner-module__container--vyBW6{margin-bottom:var(--base-size-16)}.ErrorBanner-module__errorBanner--uXkz4{border-bottom:none}@layer recipes{.Footer-module__footer--rjRmQ{align-items:center;display:flex;flex-wrap:wrap;gap:var(--stack-gap-condensed);justify-content:space-between;min-height:36px;padding-top:var(--base-size-8)}.Footer-module__footerWrapper--ObMEq{align-items:center;display:flex;font-size:var(--text-body-size-small);gap:var(--base-size-4)}.Footer-module__footerButtonWrapper--TedKn{display:flex;gap:var(--stack-gap-condensed)}.Footer-module__footerButton--zxnP6{color:var(--fgColor-muted)!important;font-weight:var(--base-text-weight-normal)!important;padding-left:var(--base-size-8);padding-right:var(--base-size-8)}.Footer-module__childrenStyling--cH0iq{display:flex;flex-wrap:wrap;gap:var(--stack-gap-condensed);justify-content:flex-end;margin-left:auto;margin-right:0}.Footer-module__spacious--VlAKA{display:none}.Footer-module__condensed--o9bUn{display:inherit}@container MarkdownEditor (width > 600px){.Footer-module__spacious--VlAKA{display:inherit}.Footer-module__condensed--o9bUn{display:none}}}.InputLabel-module__Text--xY8s7{align-self:flex-start;display:block;font-size:var(--text-body-size-medium);font-weight:var(--base-text-weight-semibold)}.InputLabel-module__Box--dyD6H{display:flex}.InputLabel-module__Box_1--HuT0E{margin-right:var(--base-size-4)}@layer recipes{.Label-module__inputLabel--EMji4{cursor:default;margin-bottom:var(--base-size-4)}}.segmented-control-module__segmentedControl--qAOgQ{color:var(--fgColor-muted)!important;cursor:pointer;white-space:nowrap}.segmented-control-module__segmentedControl--qAOgQ.segmented-control-module__active--fOdti{color:var(--fgColor-default)!important}.tab-nav-module__viewSwitch--bqW56{display:flex;flex-direction:row;margin:calc(var(--borderWidth-thin)*-1)}.tab-nav-module__tabNavLink--v2l8q{color:var(--fgColor-muted)!important;cursor:pointer;padding:calc(var(--base-size-8) + var(--borderWidth-thin)) var(--control-medium-paddingInline-spacious);white-space:nowrap}.tab-nav-module__tabNavLink--v2l8q.tab-nav-module__active--VyL0Y{color:var(--fgColor-default)!important}.tab-nav-module__tabNavLink--v2l8q .tab-nav-module__lifecycleLabel--n8PJr{margin-left:var(--base-size-8)}.Header-module__header--Sdz_S{align-items:center;background-color:var(--bgColor-muted);border-bottom:var(--borderWidth-default) solid var(--borderColor-default);container:HybridMarkdownEditor_header/inline-size;display:flex;gap:var(--base-size-16);padding-inline-end:var(--base-size-8);z-index:2}.Header-module__header--Sdz_S.Header-module__redesignEnabled--OIGdA{min-height:var(--base-size-48);padding:var(--base-size-8)}@container HybridMarkdownEditor_header (width < 500px){.Header-module__previewLabel--mn7rE{display:none}}.HybridMarkdownEditor-module__container--P0pK8{background-color:var(--bgColor-default);border:var(--border-default);border-radius:var(--borderRadius-medium);min-height:var(--markdown-editor-min-height,auto);outline:var(--focus-outline);outline-color:#0000;outline-offset:calc(var(--borderWidth-default)*-1);overflow:hidden;padding-bottom:var(--markdown-input-bottom-padding,0);transition:outline-color .125s ease;width:100%}.HybridMarkdownEditor-module__container--P0pK8:has(:focus-visible){outline-color:var(--focus-outlineColor)}.HybridMarkdownEditor-module__container--P0pK8 .cm-editor{max-height:85vh}.HybridMarkdownEditor-module__container--P0pK8 .cm-content{caret-color:var(--fgColor-default)!important;font-size:var(--text-body-size-medium);min-height:var(--base-size-128);padding:var(--base-size-16);white-space:pre-wrap}.HybridMarkdownEditor-module__container--P0pK8 .cm-focused{outline:none}.HybridMarkdownEditor-module__container--P0pK8 .cm-placeholder{color:var(--fgColor-muted);padding-block:var(--base-size-4)}.HybridMarkdownEditor-module__container--P0pK8 .cm-scroller{overflow-y:auto}.HybridMarkdownEditor-module__container--P0pK8 .cm-cursor{border-left-color:var(--borderColor-emphasis);display:block}.HybridMarkdownEditor-module__container--P0pK8 .HybridMarkdownEditor-module__modPressed--Yxc01 a:hover{cursor:pointer}.HybridMarkdownEditor-module__isDraggedOver--HtKSP{background-color:var(--bgColor-accent-muted);outline:dashed var(--base-size-2) var(--borderColor-accent-emphasis);outline-offset:calc(var(--base-size-4)*-1)}.HybridMarkdownEditor-module__editorWrapper--EZVPm{position:relative}.HybridMarkdownEditor-module__skeletonOverlay--BC4BD{background-color:var(--bgColor-default);border-radius:var(--borderRadius-medium);bottom:0;left:0;padding:var(--base-size-16);position:absolute;right:0;top:0;z-index:1}.HybridMarkdownEditor-module__generatingText--uH9Of .cm-content{caret-color:#0000!important;color:#0000}.SuspenseFallback-module__container--lkjVZ{overflow:hidden;padding:var(--base-size-20) var(--base-size-16)!important}.SuspenseFallback-module__container--lkjVZ .SuspenseFallback-module__placeholder--rtvCC{color:var(--fgColor-muted)}.Toolbar-module__container--afgOi{display:flex;flex:1;justify-content:flex-end;overflow:hidden}.Toolbar-module__container--afgOi.Toolbar-module__leftAligned--fsPhq,.Toolbar-module__container--afgOi.Toolbar-module__leftAligned--fsPhq .Toolbar-module__actionBar--Igyiz{justify-content:flex-start}.Toolbar-module__actionBar--Igyiz{flex:1;justify-content:flex-end;max-width:calc(var(--control-medium-size)*15 + 34px);min-width:0;padding-inline:0}.Toolbar-module__actionBar--Igyiz [data-component="ActionBar.VerticalDivider"]{align-items:center;display:flex;justify-content:center}.Toolbar-module__actionBar--Igyiz [aria-pressed=true]{background-color:var(--bgColor-neutral-muted)}.Toolbar-module__menuKeybindingHint--ET28p>*{border:none;gap:.2ch;padding-right:0}.Toolbar-module__menuLeadingVisualPlaceholder--X75XP{height:16px;width:16px}.MarkdownViewer-module__MarkdownViewerContainer--h7BF_{display:flex;justify-content:space-around;padding:var(--base-size-8)}@layer recipes{.MarkdownEditor-module__container--xSX9w{container:MarkdownEditor/inline-size;display:flex;flex-direction:column}.MarkdownEditor-module__inputWrapper--L6JTI{background:var(--bgColor-default);border-color:var(--borderColor-default);border-radius:var(--borderRadius-medium);border-style:solid;border-width:var(--borderWidth-thin);color:var(--fgColor-default);contain:layout style;display:flex;flex-direction:column;min-inline-size:auto;width:100%}.MarkdownEditor-module__fieldSet--QLrYu{appearance:none;border:none;min-inline-size:auto}.MarkdownEditor-module__previewHeader--ktZV6{clip-path:circle(0);position:absolute}.MarkdownEditor-module__fullHeight--No1e6{height:100%}.MarkdownEditor-module__hidden--tMY1v{display:none}.MarkdownEditor-module__disabled--jxhXI{color:var(--fgColor-muted)}.MarkdownEditor-module__inputWrapper--L6JTI:focus-within{outline:2px solid var(--bgColor-accent-emphasis);outline-offset:-1px}.MarkdownEditor-module__previewWrapper--Bfk_2{background:var(--bgColor-default);border-color:var(--borderColor-default);border-radius:var(--borderRadius-medium);border-style:solid;border-width:var(--borderWidth-thin);display:flex;flex-direction:column;min-inline-size:auto;width:100%}.MarkdownEditor-module__header--OuWiJ{background-color:var(--bgColor-muted,var(--color-canvas-subtle));border-bottom:var(--border-default);border-top-left-radius:var(--borderRadius-medium);border-top-right-radius:var(--borderRadius-medium);display:flex;gap:var(--base-size-16)}.MarkdownEditor-module__viewSwitchWrapper--oQoLo{align-items:flex-end;display:flex;flex-basis:0}.MarkdownEditor-module__redesignedViewSwitchWrapper--lLzBL{padding:var(--base-size-8)}.MarkdownEditor-module__previewViewerWrapper--rhH_h{box-sizing:border-box;overflow:auto;padding:var(--base-size-16)}.MarkdownEditor-module__previewViewerWrapper--rhH_h .js-suggested-changes-blob .blob-code-inner{overflow-wrap:break-word!important;white-space:pre-wrap!important}.MarkdownEditor-module__previewViewerWrapper--rhH_h .js-suggested-changes-blob .blob-num{vertical-align:top!important}.MarkdownInput-module__textArea--kLNLR{border-style:none!important;box-shadow:none;outline-offset:-4px}.MarkdownInput-module__textArea--kLNLR textarea{line-height:var(--text-body-lineHeight-medium,1.4285);padding:var(--base-size-16)!important;padding-bottom:calc(var(--base-size-16) + var(--markdown-input-bottom-padding, 0px))!important;resize:vertical!important}.MarkdownInput-module__fullHeight--HWXka .MarkdownInput-module__textArea--kLNLR textarea{resize:none!important}.MarkdownInput-module__textArea--kLNLR.MarkdownInput-module__monospace--ktxaS{font-family:var(--fontStack-monospace)}.MarkdownInput-module__textArea--kLNLR:focus-within{box-shadow:none!important;outline:none!important}.MarkdownInput-module__displayNone--tQubM{display:none!important}.MarkdownInput-module__fullHeight--HWXka{height:100%!important}.MarkdownInput-module__isDraggedOver--hTZEP{outline:dashed 2px var(--borderColor-default)!important}.MarkdownInput-module__inputWrapper--fDOeo{display:flex;flex:auto;position:relative}.MarkdownInput-module__skeletonOverlay--FXuMG{background-color:var(--bgColor-default);border-radius:var(--borderRadius-medium);bottom:0;left:0;padding:var(--base-size-16);position:absolute;right:0;top:0;z-index:1}.MarkdownInput-module__generatingText--fuCZ6{caret-color:#0000!important;color:#0000!important}.use-mention-suggestions-module__identifierText--jeSK0{font-weight:var(--base-text-weight-semibold)}.use-reference-suggestions-module__suggestionTitle--NZoUv{display:block;font-weight:var(--base-text-weight-semibold);max-width:400px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}@layer recipes{}@layer recipes{}@layer recipes{}.SavedReplies-module__SavedReplies--K6yeB [class*=BaseVisualContainer]:first-child{display:none}.SavedReplies-module__SavedReplies--K6yeB [class*=DescriptionContainer],.SavedReplies-module__SavedReplies--K6yeB [data-component="ActionList.Description"]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@layer recipes{.ToolbarButton-module__iconButton--o0jFl{color:var(--fgColor-muted)}.Toolbar-module__toolbar--TBvFM{flex:1;justify-content:flex-end;min-width:0;overflow:hidden;padding-inline:0}.Toolbar-module__toolbar--TBvFM [data-component="ActionBar.VerticalDivider"]{align-items:center;display:flex;justify-content:center}.Toolbar-module__toolbar--TBvFM:first-child{justify-content:flex-start;padding-left:var(--base-size-8)}.Toolbar-module__toolbar--TBvFM:last-child{padding-right:var(--base-size-4)}}@layer recipes{}.CommentBox-module__staleContentWarning--i6nrw{margin-bottom:var(--base-size-8)}.CommentBox-module__commentBoxContainer--yrAth{margin-bottom:0}.SlashCommandsProvider-module__slashCommandContainer--ZPT3l{position:relative}@keyframes Tickle-module__copilotRun--NHR0y{0%{transform:translateY(calc(-32px*var(--copilot-animation-scale, 1)))}to{transform:translateY(calc(-1184px*var(--copilot-animation-scale, 1)))}}.Tickle-module__tickle--rmq_s[data-animation-state=idle]{transform:translateY(0)}@media(prefers-reduced-motion:no-preference){.Tickle-module__tickle--rmq_s[data-animation-state=running]{animation:Tickle-module__copilotRun--NHR0y 1.188s steps(36) 1}}.ContributorFooter-module__ContributorFooterContainer--lDUwn{align-items:center;color:var(--fgColor-muted);display:flex;font-size:var(--text-body-size-small);gap:var(--base-size-4);padding-top:var(--base-size-8)}@keyframes UserInput-module__copilotStart--lPgtK{0%{transform:translateY(calc(-32px*var(--copilot-animation-scale, 1)))}to{transform:translateY(calc(-384px*var(--copilot-animation-scale, 1)))}}@keyframes UserInput-module__copilotRun--rqDIw{0%{transform:translateY(calc(-384px*var(--copilot-animation-scale, 1)))}to{transform:translateY(calc(-384px*var(--copilot-animation-scale, 1)))}}@keyframes UserInput-module__copilotEnd--xFWq0{0%{transform:translateY(calc(-416px*var(--copilot-animation-scale, 1)))}to{transform:translateY(calc(-896px*var(--copilot-animation-scale, 1)))}}.UserInput-module__userInput--zF2uw[data-animation-state=idle]{transform:translateY(0)}@media(prefers-reduced-motion:no-preference){.UserInput-module__userInput--zF2uw[data-animation-state=starting]{animation:UserInput-module__copilotStart--lPgtK .396s steps(11) 1}.UserInput-module__userInput--zF2uw[data-animation-state=running]{animation:UserInput-module__copilotRun--rqDIw 3s steps(1) 1}.UserInput-module__userInput--zF2uw[data-animation-state=ending]{animation:UserInput-module__copilotEnd--xFWq0 .528s steps(15) 1}}@keyframes WithShimmerEffect-module__shimmer--MEAYq{0%{mask-position:100% 0}to{mask-position:-100% 0}}@media(prefers-reduced-motion:no-preference){.WithShimmerEffect-module__shimmerText--Rzh6H{animation:WithShimmerEffect-module__shimmer--MEAYq 1.3s linear infinite;background-clip:text;background-color:var(--fgColor-muted);display:inline-block;mask-image:linear-gradient(75deg,#0000004d,#000 50%,#0000004d);mask-position:100% 0;mask-repeat:repeat;mask-size:200% 100%}.WithShimmerEffect-module__shimmerText--Rzh6H:first-letter{text-transform:uppercase}}.WithShimmerEffect-module__fadeIn--UnU0Y{animation:WithShimmerEffect-module__fadeInAnim--FkHJI .4s ease forwards}@keyframes WithShimmerEffect-module__fadeInAnim--FkHJI{0%{opacity:0}to{opacity:1}}@keyframes CopilotGenerateDescriptionPanel-module__fadeIn--i2epN{0%{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}.CopilotGenerateDescriptionPanel-module__container--tWHzB{background-color:var(--bgColor-default);border:var(--borderWidth-thin) solid var(--borderColor-default);border-radius:var(--borderRadius-large);box-shadow:var(--shadow-floating-small);left:var(--base-size-16);margin-top:var(--base-size-16);padding:var(--base-size-16);position:absolute;right:var(--base-size-16);transition:top .4s cubic-bezier(.4,0,.2,1);z-index:1}.CopilotGenerateDescriptionPanel-module__anchorTop--XfL7h{top:var(--base-size-48)}.CopilotGenerateDescriptionPanel-module__anchorBottom--ILivq,.CopilotGenerateDescriptionPanel-module__anchorTop--XfL7h{animation:CopilotGenerateDescriptionPanel-module__fadeIn--i2epN .2s ease-out forwards}.CopilotGenerateDescriptionPanel-module__closeButtonContainer--cec3_{align-items:center;display:flex;gap:var(--base-size-8);position:absolute;right:var(--base-size-8);top:var(--base-size-8)}.CopilotGenerateDescriptionPanel-module__staffPillLink--gI3FO{text-decoration:none}.CopilotGenerateDescriptionPanel-module__messageRow--XBPqn{align-items:flex-start;display:flex;gap:var(--base-size-8);margin-bottom:var(--base-size-8)}.CopilotGenerateDescriptionPanel-module__iconContainer--pE4pC{align-items:center;display:flex;height:24px;min-width:24px}.CopilotGenerateDescriptionPanel-module__messageContent--dahCt{flex:1}.CopilotGenerateDescriptionPanel-module__messageLabel--s2lbO{font-weight:var(--base-text-weight-semibold);line-height:var(--text-body-lineHeight-large)}.CopilotGenerateDescriptionPanel-module__messageText--UcJIt{color:var(--fgColor-muted)}.CopilotGenerateDescriptionPanel-module__errorContainer--mKmhx{margin-top:var(--base-size-4)}.CopilotGenerateDescriptionPanel-module__loadingContainer--BVnDm{align-items:center;display:flex;gap:var(--base-size-8)}.CopilotGenerateDescriptionPanel-module__loadingLabel--OwYkS{font-weight:var(--base-text-weight-semibold)}.CopilotGenerateDescriptionPanel-module__loadingText--TR8JO{color:var(--fgColor-muted);flex:1}.CopilotGenerateDescriptionPanel-module__actionButtons--I4mzB{align-items:center;display:flex;gap:var(--base-size-8);margin-left:var(--base-size-32);margin-top:var(--base-size-8)}.CopilotGenerateDescriptionPanel-module__actionButton--sLfTR,.CopilotGenerateDescriptionPanel-module__inputArea--vB1dh{border:var(--borderWidth-thin) solid var(--borderColor-default)}.CopilotGenerateDescriptionPanel-module__inputArea--vB1dh{align-items:flex-start;border-radius:var(--borderRadius-large);display:flex;flex:1;gap:var(--base-size-8);margin-top:var(--base-size-16);padding:0 var(--base-size-8)}.CopilotGenerateDescriptionPanel-module__inputArea--vB1dh:focus-within{border-color:var(--borderColor-accent-emphasis);outline:2px solid var(--borderColor-accent-emphasis);outline-offset:-1px}.CopilotGenerateDescriptionPanel-module__textarea--F0EiG{border:none;flex:1;outline:none}.CopilotGenerateDescriptionPanel-module__textarea--F0EiG:focus{box-shadow:none;outline:none}.CopilotGenerateDescriptionPanel-module__sendButton--O_2SQ{align-items:center;border-radius:var(--borderRadius-full);display:flex;height:var(--base-size-24);justify-content:center;margin-top:var(--base-size-8);width:var(--base-size-24)}.CheckboxesElement-module__CheckboxesElementGroup--cz_dJ{color:var(--fgColor-default,var(--color-fg-default));margin-bottom:var(--base-size-16);margin-top:var(--base-size-16)}.CheckboxesElement-module__CheckboxesElementGroupLabel--wixq_{color:var(--fgColor-default,var(--color-fg-default));font-size:var(--text-body-size-medium);font-weight:var(--base-text-weight-semibold)}.CheckboxesElement-module__CheckboxesElementGroupDescription--DoWqf{color:var(--fgColor-muted,var(--color-fg-subtle));font-size:var(--text-body-size-small)}.CheckboxesElement-module__checkboxOptionLabel--kENEm{font-weight:var(--base-text-weight-normal)}.CheckboxesElement-module__checkboxOptionLabel--kENEm>span>span:last-of-type{color:var(--fgColor-danger,var(--color-danger-fg))}.DropdownElement-module__dropdownElementButtonText--NRhbg{display:block;max-width:320px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.DropdownElement-module__dropdownElementContainer--ME35C{align-items:start}.DropdownElement-module__dropdownMenuOverlay--qDXwf{overflow-y:auto}.ElementWrapper-module__elementWrapperContainer--Zviz8{margin-bottom:var(--base-size-8);margin-top:var(--base-size-8)}.ElementWrapper-module__elementLabel--qX9VS{color:var(--fgColor-default,var(--color-fg-default));font-size:var(--text-body-size-medium);margin-bottom:0}.ElementWrapper-module__elementLabel--qX9VS>span>span:last-of-type{color:var(--fgColor-danger,var(--color-danger-fg))}.ElementWrapper-module__elementLabelWithDescription--c2FAt{margin-bottom:var(--base-size-8)}.ElementWrapper-module__elementDescription--EA7D6{color:var(--fgColor-muted,var(--color-fg-subtle));margin-top:0}.ElementWrapper-module__validationMessage--P3NuI{margin-top:var(--base-size-8)}.IssuesLoadingSkeleton-module__container--Z01Fm{background-color:var(--bgColor-neutral-muted)}.FormElementLoading-module__loadingSkeletonContainer--QboQa{display:flex;justify-content:space-between}.TextAreaElement-module__TextAreaElementContainer--efGjO{align-items:stretch}.TextAreaElement-module__codeViewTextArea--uyz8K{font-family:var(--fontStack-monospace);width:100%}.TextInputElement-module__issueFormTextField--dG9jp{max-width:44em;width:100%}.IssueFormElements-module__formElementsContainer--v0fMt{align-items:stretch;display:flex;flex-direction:column}.IssueFormElements-module__markdownElementWrapper--sr15G{margin-bottom:var(--base-size-16)}.CreateIssueForm-module__commentBox--vEs40{padding-right:var(--base-size-16);position:relative}@media(min-width:768px){.CreateIssueForm-module__commentBox--vEs40{padding-right:0}}@media(max-width:768px){.CreateIssueForm-module__errorBanner--eNPfc{margin-right:var(--base-size-16)}}.CreateIssueForm-module__CreateIssueFormWrapper--xluI0{display:flex;flex-direction:row;flex-wrap:wrap;gap:var(--stack-gap-spacious)}.CreateIssueForm-module__formGridContainer--SxqjE{column-gap:var(--stack-gap-spacious);display:flex;flex-direction:column;flex-grow:1;grid-template-columns:auto;row-gap:0}@media screen and (min-width:768px){.CreateIssueForm-module__formGridContainer--SxqjE{display:grid;grid-template-columns:minmax(0,1fr) 256px}}@media screen and (min-width:1012px){.CreateIssueForm-module__formGridContainer--SxqjE{grid-template-columns:minmax(0,1fr) 296px}}.CreateIssueForm-module__mainContentSection--rApst{display:flex;flex-direction:column;gap:var(--stack-gap-normal);grid-area:body}.CreateIssueForm-module__metadataSection--r67Zi{display:flex;flex-direction:column;grid-area:metadata}.CreateIssueForm-module__footerButton--pogcH{padding-left:var(--base-size-8);padding-right:var(--base-size-8)}.CreateIssueForm-module__copilotWriteButton--kQOZ7,.CreateIssueForm-module__footerButton--pogcH{color:var(--fgColor-muted);font-weight:var(--base-text-weight-normal)}.CreateIssueFormTitle-module__container--GhqlY{align-items:center;display:flex}.CreateIssueFormTitle-module__formControl--H5ulr{align-items:stretch!important;display:flex;flex:1;flex-direction:column}.CreateIssueFormTitle-module__formControlLabel--ksDPF>span>span:last-of-type{color:var(--fgColor-danger,var(--color-danger-fg))}.CreateIssueFormTitle-module__subcontainer--wchOC{display:flex;flex:1;flex-direction:column;margin-right:var(--base-size-16)}@media(min-width:768px){.CreateIssueFormTitle-module__subcontainer--wchOC{margin-right:0}}.ErrorWithRetry-module__ErrorWithRetryContainer--eDhIy{align-items:center;display:flex;gap:var(--base-size-4)}.ErrorWithRetry-module__errorAlertIcon--Iiexz{color:var(--fgColor-attention)}.ErrorWithRetry-module__errorMessage--DNJUZ{color:var(--fgColor-muted);font-size:var(--text-body-size-small)}.ErrorWithRetry-module__retryActionLink--Xys2Y{font-size:var(--text-body-size-small)}.useItemPickerErrorFallback-module__errorOverlayContainer--Z5I2C{display:flex;height:100%;justify-content:center;margin:var(--base-size-4)}.useItemPickerErrorFallback-module__errorWithRetry--kl8Hn{padding:"var(--base-size-8)"}.IssueFieldPicker-module__footer--mYJzU{align-items:center;display:flex;font-size:var(--text-body-size-small);justify-content:space-between;padding-left:var(--base-size-4);padding-right:var(--base-size-4);width:100%}.SharedPicker-module__title--CNycE{font-weight:var(--base-text-weight-semibold)}.SharedPicker-module__pickerContentContainer--Rgp_C{align-items:center;display:flex;gap:var(--base-size-4);justify-content:center}.SharedPicker-module__pickerLabelText--JSlao{color:var(--fgColor-muted);font-weight:var(--base-text-weight-normal)}.SharedPicker-module__leadingIconContainer--LQhJ_{align-items:center;justify-content:center}.SharedPicker-module__leadingIconContainer--LQhJ_>:not(:last-child){margin-right:-3px}.SharedPicker-module__dashedPickerButton--VyqkO{border-style:dashed;color:var(--fgColor-muted);font-weight:var(--base-text-weight-normal)}.SharedPicker-module__hotkeyBadge--nXrIA{border-color:var(--borderColor-default);border-radius:var(--borderRadius-medium);border-style:solid;border-width:var(--borderWidth-thin);color:var(--fgColor-muted);padding:0 var(--base-size-4)}.CompressedAssigneeAnchor-module__compressedAssigneeAvatar--y2Hg2{box-shadow:var(--shadow-resting-medium)}.CopilotAvatar-module__copilotAvatar--VK2n9{align-items:center;color:var(--fgColor-muted);display:flex;justify-content:center}.CopilotAvatar-module__small--OG22P{height:var(--base-size-20);width:var(--base-size-20)}.CopilotAvatar-module__medium--onZfu{height:var(--base-size-24);width:var(--base-size-24)}.CopilotAvatar-module__large--KgXbi{height:var(--base-size-32);width:var(--base-size-32)}.CopilotAvatar-module__defaultStyle--T4PhU{background-color:var(--bgColor-muted);border:var(--borderWidth-thin) solid var(--borderColor-muted);border-radius:var(--borderRadius-full)}.AssigneePickerBase-module__Item--n9KU9{word-break:break-word}.Anchor-module__calendarIcon--vmzmc{color:var(--fgColor-muted);margin:var(--base-size-2) 0}.DefaultIssueTypePickerAnchor-module__issueTypeDot--KX5Dc{align-items:center;background-color:var(--bg);border-radius:var(--borderRadius-full);box-shadow:var(--shadow-resting-medium);display:flex;height:8px;justify-content:center;width:8px}.ValidationErrorPopover-module__Popover--L6a2z{--caret-offset:0px;--x-offset:0px;font-size:var(--text-body-size-small);left:50%;top:calc(100% + var(--base-size-12));transform:translateX(calc(-50% + var(--x-offset)));width:max-content}.ValidationErrorPopover-module__Popover--L6a2z.ValidationErrorPopover-module__aboveCaret--n7mG4{top:calc(var(--base-size-4)*-1);transform:translateX(calc(-50% + var(--x-offset))) translateY(-100%)}.ValidationErrorPopover-module__PopoverContent--sE8qO{background-color:var(--bgColor-danger-emphasis);border-color:var(--borderColor-danger-muted);color:var(--fgColor-onEmphasis);padding:var(--base-size-4) var(--base-size-8);text-align:center;width:auto}.ValidationErrorPopover-module__PopoverContent--sE8qO:after,.ValidationErrorPopover-module__PopoverContent--sE8qO:before{left:50%;transform:translateX(var(--caret-offset))}.ValidationErrorPopover-module__PopoverContent--sE8qO.ValidationErrorPopover-module__aboveCaret--n7mG4:after,.ValidationErrorPopover-module__PopoverContent--sE8qO.ValidationErrorPopover-module__aboveCaret--n7mG4:before{border-top-color:var(--fgColor-danger)!important}.ValidationErrorPopover-module__PopoverContent--sE8qO.ValidationErrorPopover-module__belowCaret--bwBKr:after,.ValidationErrorPopover-module__PopoverContent--sE8qO.ValidationErrorPopover-module__belowCaret--bwBKr:before{border-bottom-color:var(--fgColor-danger)!important}.IssueTypePickerItemLeadingVisual-module__leadingVisual--Fk2Cc{border-radius:100%;border-style:solid;height:var(--base-size-12);width:var(--base-size-12)}.IssueTypePickerItemLeadingVisual-module__issueTypeColorIndicator--ivyh6{background-color:var(--bg);border-color:var(--accent);border-radius:var(--borderRadius-medium);border-style:solid;border-width:var(--borderWidth-thick);flex-shrink:0;height:12px;width:12px}.Input-module__container--Xcn7K{align-items:center;display:flex;flex-grow:1;justify-content:flex-end}.Input-module__rangeInputs--cCy1G{align-items:flex-end;display:flex}.Input-module__rangeInputs--cCy1G .Input-module__rangeInputsSeparator--zAoYC{flex-grow:0;height:var(--control-small-size);padding-left:var(--base-size-4);padding-right:var(--base-size-4)}.Input-module__singleDateInputContainer--UkBWU{flex-grow:0;position:relative;width:16ch}.Input-module__singleDateInputContainer--UkBWU.Input-module__hasCalendarButton--cBe1A{width:22ch}.Input-module__singleDateInputContainer--UkBWU .Input-module__singleDateInput--wfBlK{width:100%}.Input-module__singleDateInputContainer--UkBWU .Input-module__singleDateInput--wfBlK.Input-module__activeRangeEnd--fWov0{border-color:var(--fgColor-accent)}.Input-module__FormControl--scK8C{max-width:100%;position:relative;width:14ch}.Input-module__fullWidth--scl7k{flex-grow:1}.Input-module__multiDateInputContainer--aA3Z1{flex-grow:0;position:relative}.Input-module__multiDateInputContainer--aA3Z1.Input-module__insideDatePicker--LbTQe{max-width:100%;width:14ch}.Input-module__multiDateInputContainer--aA3Z1 .Input-module__multiDateInput--fWUfH{padding:0 var(--base-size-8);width:100%}.Input-module__multiDateInputContainer--aA3Z1 .Input-module__multiDateInput--fWUfH input{width:0}.Input-module__multiDateInputContainer--aA3Z1 .Input-module__multiDateInput--fWUfH input:focus{width:11ch}.Input-module__calendarIconButton--eV3PF{padding:0}.Input-module__successIcon--2jasV{color:var(--fgColor-success)}.Input-module__dangerIcon--AYHFx{color:var(--fgColor-danger)}.LabelDots-module__labelDotsContainer--sNiXI{align-items:center;display:flex;justify-content:center}.LabelDots-module__labelDotsContainer--sNiXI>:not(:last-child){margin-right:-1px}.LabelDots-module__labelDot--MZUOf{border-radius:var(--borderRadius-full);box-shadow:var(--shadow-resting-medium);height:8px;width:8px}.ConfirmCloseDialog-module__labelText--VRdFV{margin-left:var(--base-size-4)}.LabelPickerBase-module__labelNameText--wVmPP{overflow-wrap:break-word}.LabelPickerBase-module__labelColorBox--PSuNK{border-radius:var(--borderRadius-medium);border-style:solid;border-width:var(--borderWidth-thin);height:14px;width:14px}.LabelPickerBase-module__labelPickerContainer--cqqGL{display:flex;flex-direction:row;flex-wrap:wrap;gap:var(--base-size-4)}.LabelPickerBase-module__labelPickerItem--gTZua{word-break:break-word}.LabelPickerBase-module__labelPickerItem--gTZua [class*=BaseVisualContainer]:first-child{display:none}.Overlay-module__overlay--EI3QB{overflow-y:auto}.MilestoneDescription-module__danger--uV2jW{color:var(--fgColor-danger)}.MilestoneDescription-module__subtle--wCZ7c{color:var(--color-fg-subtle)}.Day-module__day--Lk_yW{align-items:center;border-radius:var(--borderRadius-medium);color:var(--text-color);display:flex;font-family:var(--fontStack-monospace);font-size:var(--text-body-size-small);height:var(--control-large-size);justify-content:center;margin:1px;transition:background-color .1s ease,color .1s ease,box-shadow .1s ease;-webkit-user-select:none;user-select:none;width:var(--control-large-size);--text-color:var(--fgColor-default)}.Day-module__day--Lk_yW[aria-disabled=true]{--text-color:var(--control-fgColor-disabled)}.Day-module__day--Lk_yW[aria-selected]:not([aria-disabled=true]){cursor:pointer}.Day-module__day--Lk_yW[aria-selected]:not([aria-disabled=true]):focus-visible{outline:var(--focus-outline);outline-offset:2px;z-index:1}.Day-module__day--Lk_yW[aria-selected]:not([aria-disabled=true]):where(:not(.Day-module__selected--qMeWD)):hover{background:var(--control-bgColor-hover)}.Day-module__day--Lk_yW[aria-selected]:not([aria-disabled=true]):where(:not(.Day-module__selected--qMeWD)):active{background:var(--control-bgColor-active)}.Day-module__day--Lk_yW.Day-module__today--ATWu5{font-weight:700;--text-color:var(--fgColor-accent)}.Day-module__day--Lk_yW.Day-module__today--ATWu5 .Day-module__date--ASCWF:after{background:var(--text-color);border-radius:1px;bottom:0;content:"";display:block;height:2px;left:50%;position:absolute;transform:translateX(-50%);width:16px}.Day-module__day--Lk_yW.Day-module__selected--qMeWD{background:var(--bgColor-accent-emphasis);--text-color:var(--fgColor-onEmphasis)}.Day-module__day--Lk_yW.Day-module__selected--qMeWD:is(.Day-module__rangeFrom--aiIAc,.Day-module__rangeTo--T4srd):not(.Day-module__activeRangeEnd--An_E2){background:var(--borderColor-accent-muted);--text-color:var(--fgColor-default)}.Day-module__day--Lk_yW.Day-module__selected--qMeWD.Day-module__rangeFrom--aiIAc{border-radius:4px 0 0 4px}.Day-module__day--Lk_yW.Day-module__selected--qMeWD.Day-module__rangeMiddle--c6Wld{background:var(--bgColor-accent-muted);border-radius:0;--text-color:var(--fgColor-default)}.Day-module__day--Lk_yW.Day-module__selected--qMeWD.Day-module__rangeTo--T4srd{border-radius:0 4px 4px 0}.Day-module__day--Lk_yW.Day-module__range--xx5j9{margin:1px 0;width:calc(var(--control-large-size) + 2px)}.Day-module__day--Lk_yW.Day-module__header--EmCNc{--text-color:var(--fgColor-muted)}.Day-module__day--Lk_yW .Day-module__date--ASCWF{line-height:2;position:relative}.ItemPickerMilestone-module__MilestoneFilterItem--fSFTu{word-break:break-word}.ItemPickerMilestone-module__MilestoneFilterItem--fSFTu [class*=BaseVisualContainer]:first-child{display:none}.ItemPickerMilestone-module__MilestoneItem--J0_9F{word-break:break-word}.Month-module__container--z5U_x{display:flex;flex-direction:column;gap:var(--base-size-16);-webkit-user-select:none;user-select:none}.Month-module__container--z5U_x .Month-module__row--vNOCW{display:flex;justify-content:space-between}.Month-module__container--z5U_x .Month-module__grid--rtixL{min-height:calc((var(--control-large-size) + 2px)*7)}.Month-module__container--z5U_x .Month-module__title--dDTE5{color:var(--fgColor-default);font-size:var(--text-body-size-medium);font-weight:700;grid-area:month;height:var(--base-size-24);text-align:center}.Month-module__container--z5U_x .Month-module__title--dDTE5.Month-module__compressedHeader--gqq2V{clip-path:circle(0)}.MetadataFooterLoading-module__MetadataFooterLoadingContainer--MlVdF{display:flex;justify-content:space-between}.Panel-module__container--QM8qh{align-items:stretch;background-color:var(--bgColor-default);display:flex;flex-direction:column;position:relative}.Panel-module__container--QM8qh [aria-disabled=true],.Panel-module__container--QM8qh [disabled]{pointer-events:none}.Panel-module__topNav--GYQdx{display:flex;justify-content:space-between;left:0;padding:var(--base-size-16);position:absolute;right:0;top:0;z-index:10}.Panel-module__months--VU5D4{align-items:flex-start;display:flex;flex-direction:row;gap:var(--base-size-40);margin-top:var(--base-size-4);overflow-x:auto;padding:var(--base-size-16);position:relative}.Panel-module__footer--szPNP{align-items:stretch;border-top:var(--borderWidth-thin) solid;border-top-color:var(--borderColor-default);display:flex;flex-direction:column;gap:var(--stack-gap-condensed);padding:var(--base-size-8) var(--base-size-16)}.Panel-module__footer--szPNP .Panel-module__footerRow--oTYAd{align-items:center;display:flex;flex-basis:0;flex-direction:row;gap:var(--base-size-8);justify-content:space-between;position:relative}.Panel-module__footer--szPNP .Panel-module__footerButtons--Fdy64{display:flex}.Panel-module__arrowButton--pKXOQ{height:28px;width:40px}.Panel-module__arrowButton--pKXOQ:not(:last-child){margin-right:var(--base-size-4)}.Panel-module__arrowButton--pKXOQ .Panel-module__icon--ozRZ6{color:var(--fgColor-muted)}.Panel-module__pickers--UAT_P{flex:1}.Panel-module__pickers--UAT_P .Panel-module__picker--Bd4ir{background:var(--bgColor-default);border:0;border-radius:var(--borderRadius-medium);color:var(--fgColor-default);font-weight:600;margin-right:var(--base-size-6);padding:var(--base-size-4)}.Panel-module__pickers--UAT_P .Panel-module__picker--Bd4ir :focus{outline:var(--focus-outline)}.Panel-module__pickers--UAT_P .Panel-module__picker--Bd4ir .Panel-module__option--RRz4t{background:var(--bgColor-default);border:0;color:var(--fgColor-default);font-weight:400;padding:var(--base-size-8)}.Section-module__SectionContainer--bIlEv{align-items:flex-start;display:flex;flex-direction:column;position:relative;width:100%}.Section-module__SectionContainer--bIlEv:has(+.d-none){margin-bottom:0}.Section-module__SectionContainer--bIlEv:has(+.d-none):after{display:none}.Section-module__headerContentWrapper--OIm9m{width:100%}.Section-module__emptyText--qZ0Bc{color:var(--fgColor-muted);display:block;font-size:var(--text-body-size-small);margin-bottom:var(--base-size-8);margin-top:var(--base-size-4);padding-left:var(--base-size-8);padding-right:var(--base-size-8)}.Section-module__hiddenChildrenContainer--X126P{border:0;height:0;margin:0;padding:0;visibility:hidden}.Section-module__childrenContainer--bY_oH{padding:0;width:100%}.SectionHeader-module__SectionHeaderTitle--TxSJL{color:var(--fgColor-muted);font-size:var(--text-body-size-small);left:var(--base-size-8);pointer-events:none}.SectionHeader-module__editButton--pMar1{align-content:start;padding-right:var(--base-size-12)}.SectionHeader-module__screenReaderText--O1ZJ0{color:var(--fgColor-muted);font-size:var(--text-body-size-small);font-weight:var(--base-text-weight-semibold);line-height:var(--text-body-lineHeight-medium)}.IssueFieldItem-module__issueFieldFormWrapper--QtLp9{align-items:flex-start;display:flex;flex-direction:row;padding-left:var(--base-size-8)}.IssueFieldItem-module__issueFieldFormWrapper--QtLp9:has([data-validation-status=error]){flex-wrap:wrap}.IssueFieldItem-module__issueFieldFormWrapperClickable--bQOwj{background-color:#0000;border:none;border-radius:var(--borderRadius-medium);cursor:pointer;padding-bottom:0;padding-top:0;width:100%}.IssueFieldItem-module__issueFieldFormWrapperClickable--bQOwj.IssueFieldItem-module__small--SjeF0{height:var(--control-small-size)}.IssueFieldItem-module__issueFieldFormWrapperClickable--bQOwj.IssueFieldItem-module__small--SjeF0 .IssueFieldItem-module__issueFieldLabel--YZrxM,.IssueFieldItem-module__issueFieldFormWrapperClickable--bQOwj.IssueFieldItem-module__small--SjeF0 .IssueFieldItem-module__issueFieldValueText--yu8Lt{padding-bottom:var(--base-size-4);padding-top:var(--base-size-4)}.IssueFieldItem-module__issueFieldFormWrapperClickable--bQOwj:hover{background-color:var(--control-bgColor-hover)}.IssueFieldItem-module__issueFieldFormWrapperClickable--bQOwj.IssueFieldItem-module__isEditing--ji_R9,.IssueFieldItem-module__issueFieldFormWrapperClickable--bQOwj:active{background-color:var(--control-bgColor-active)}.IssueFieldItem-module__issueFieldFormWrapperClickable--bQOwj.IssueFieldItem-module__isEditing--ji_R9:not(:focus-within),.IssueFieldItem-module__issueFieldFormWrapperClickable--bQOwj:active:not(:focus-within){background-color:var(--control-bgColor-hover)}.IssueFieldItem-module__issueFieldFormWrapperClickable--bQOwj[aria-expanded=true]{background-color:var(--control-bgColor-active)}.IssueFieldItem-module__issueFieldFormWrapperClickable--bQOwj:focus{outline:2px solid var(--focus-outlineColor);outline-offset:-2px}.IssueFieldItem-module__issueFieldLabel--YZrxM{align-self:stretch;flex-basis:40%;flex-shrink:0;font-size:var(--text-caption-size);margin-bottom:0;padding-bottom:var(--base-size-8);padding-right:var(--base-size-8);padding-top:var(--base-size-8)}.IssueFieldItem-module__issueFieldLabel--YZrxM,.IssueFieldItem-module__issueFieldValueText--yu8Lt{color:var(--fgColor-muted);font-weight:var(--base-text-weight-normal);line-height:var(--text-body-lineHeight-small);text-align:left}.IssueFieldItem-module__issueFieldValueText--yu8Lt{border-radius:var(--borderRadius-medium);font-size:var(--text-body-size-small);line-break:anywhere;overflow:hidden;padding:var(--base-size-8)}.IssueFieldItem-module__issueFieldValueText--yu8Lt.IssueFieldItem-module__hasValue--SfUhj{color:var(--fgColor-default)}.IssueFieldItem-module__issueFieldValueBtn--ccXFK{color:var(--fgColor-muted);container-type:inline-size;display:flex;flex:1;font-weight:var(--base-text-weight-normal);min-width:min-content;text-align:left}.IssueFieldItem-module__issueFieldValueBtn--ccXFK:hover{background:var(--control-transparent-bgColor-hover);cursor:pointer}.IssueFieldItem-module__issueFieldActionButton--OTZnS{margin:var(--base-size-4)}.IssueFieldItem-module__issueFieldTextError--R_Rhj{margin-bottom:var(--base-size-8)}.IssueFieldTextToken-module__issueFieldTextInput--_YT6n{flex:1;height:var(--control-small-size);margin-bottom:var(--base-size-4);margin-left:-3px;margin-top:var(--base-size-4);min-height:var(--control-small-size)}.IssueFieldTextToken-module__issueFieldTextInput--_YT6n [data-component=input]{padding-left:var(--base-size-8)}@supports(field-sizing:content){.IssueFieldTextToken-module__issueFieldTextInput--_YT6n:has(textarea){height:auto}}.IssueFieldTextToken-module__issueFieldTextTextarea--zoeSa textarea{font-size:var(--text-body-size-small);overflow:hidden;padding-left:var(--base-size-8);padding-block:3px}@supports(field-sizing:content){.IssueFieldTextToken-module__issueFieldTextTextarea--zoeSa textarea{field-sizing:content}}.IssueFieldTextToken-module__issuesFieldTextInputContainer--BYChH{display:flex;padding:var(--base-size-8)}.IssueFieldTextToken-module__issuesFieldTextError--AZz7r{margin-bottom:var(--base-size-8)}.IssueFieldTextToken-module__issuesFieldToolbar--gb7A0{justify-content:space-between;padding-bottom:var(--base-size-8);padding-left:var(--base-size-8);padding-right:var(--base-size-8);padding-top:0}.IssueFieldTextToken-module__issuesFieldToolbar--gb7A0,.IssueFieldTextToken-module__issuesFieldToolbarActions--gYxXu{align-items:center;display:flex;gap:var(--base-size-8);width:100%}.IssueFieldTextToken-module__actionButton--YsG8y{flex:1}.IssueFieldTextToken-module__issuesFieldText--WUTvu,.IssueFieldTextToken-module__noValueContainer--GU_ur{display:inline-block;font-size:var(--text-body-size-small);font-weight:var(--base-text-weight-normal);line-height:var(--text-body-lineHeight-small);margin-bottom:var(--base-size-8);margin-left:var(--base-size-8)}.IssueFieldTextToken-module__noValueContainer--GU_ur{color:var(--fgColor-muted)}.MetadataFooter-module__MetadataFooterContainer--omn3p{display:flex;flex-direction:row;flex-wrap:wrap;gap:var(--stack-gap-condensed)}.MetadataFooter-module__MetadataFooterSeparator--zajRG{background:var(--borderColor-default);content:"";display:block;height:var(--base-size-20,20px);margin-block:var(--base-size-4);width:var(--borderWidth-thin,1px)}.MetadataFooter-module__SingleSelectFieldDot--V_G0U{align-items:center;background-color:var(--bg);border-radius:var(--borderRadius-full);box-shadow:var(--shadow-resting-medium);display:flex;height:8px;justify-content:center;width:8px}@keyframes MetadataFooter-module__colorFlash--gduBJ{0%{background-color:var(--bgColor-accent-muted)}to{background-color:var(--animation-end-color,var(--button-default-bgColor-rest))}}.MetadataFooter-module__animationClass--JG8Qb{--animation-end-color:var(--button-default-bgColor-rest);animation:MetadataFooter-module__colorFlash--gduBJ 2s ease-in-out 1 forwards}.MetadataFooter-module__animationClass--JG8Qb:hover{--animation-end-color:var(--button-default-bgColor-hover,var(--color-btn-hover-bg));animation-play-state:paused;border-color:var(--button-default-borderColor-hover,var(--color-btn-hover-border))}.CopilotCodingAgentRequestAccessDialog-module__heading--qpyNv{font-size:var(--text-title-size-medium);font-weight:var(--base-text-weight-semibold);margin-bottom:var(--base-size-8);margin-top:0}.CopilotCodingAgentRequestAccessDialog-module__description--gXmI5{color:var(--fgColor-muted);line-height:var(--text-body-lineHeight-medium);margin-bottom:var(--base-size-16)}.CopilotCodingAgentRequestAccessDialog-module__errorContainer--WZEcP{margin-bottom:var(--base-size-8);margin-top:var(--base-size-16)}.CopilotCodingAgentRequestAccessDialog-module__footer--TVZEO{align-items:center;display:flex;gap:var(--base-size-16);justify-content:space-between;margin-top:var(--base-size-8)}.CopilotCodingAgentRequestAccessDialog-module__headerImage--EmmrD{border-top-left-radius:var(--borderRadius-large);border-top-right-radius:var(--borderRadius-large)}.CopilotCodingAgentRequestAccessDialog-module__body--CKyA7{padding:var(--base-size-16)}.CopilotCodingAgentRequestAccessDialog-module__headerContainer--MzTC7{position:relative}.CopilotCodingAgentRequestAccessDialog-module__closeButtonContainer--kCbr6{position:absolute;right:var(--base-size-8);top:var(--base-size-8)}.CopilotCodingAgentRequestAccessDialog-module__visuallyHidden--Y3j6e{height:1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0,0,0,0);border-width:0;white-space:nowrap}.Assignees-module__assigneesList--JFnuE{padding-bottom:0;padding-top:0}.Assignees-module__assigneeNameLabel--f9fCg{font-size:var(--text-body-size-small);font-weight:var(--base-text-weight-semibold);margin-left:0;margin-right:0;width:100%}.AssigneesSection-module__selfAssignButton--U9FC1{color:var(--fgColor-accent);cursor:pointer;font-weight:var(--base-text-weight-normal)}.AssigneesSection-module__selfAssignButton--U9FC1:hover{text-decoration:none}.AddIssueFieldButton-module__container--vCxXw{margin:var(--base-size-4) var(--base-size-8) var(--base-size-12)}.AddIssueFieldButton-module__button--GCUMC{width:100%}.FieldsSection-module__pinnedField--xRXo6{border-radius:var(--borderRadius-medium);transition:background-color .2s}@keyframes FieldsSection-module__colorFlash--IV0cL{0%{background-color:var(--bgColor-accent-muted)}to{background-color:var(--animation-end-color,var(--button-default-bgColor-rest))}}.FieldsSection-module__animationClass--ZaRW4{--animation-end-color:#0000;animation:FieldsSection-module__colorFlash--IV0cL 2s ease-in-out 1 forwards}.FieldsSection-module__animationFirst--sLTV_{border-radius:var(--borderRadius-medium) var(--borderRadius-medium) 0 0}.FieldsSection-module__animationMiddle--a9BOk{border-radius:0}.FieldsSection-module__animationLast--uzto7{border-radius:0 0 var(--borderRadius-medium) var(--borderRadius-medium)}.FieldsSection-module__animationOnly--wLfWL{border-radius:var(--borderRadius-medium)}.FieldsSection-module__animationClass--ZaRW4:hover{--animation-end-color:var(--button-default-bgColor-hover,var(--color-btn-hover-bg));animation-play-state:paused;border-color:var(--button-default-borderColor-hover,var(--color-btn-hover-border));border-radius:var(--borderRadius-medium)}.FieldsSection-module__animationClass--ZaRW4:focus-within{border-radius:var(--borderRadius-medium)}.FieldsSection-module__compactSectionHeader--Hk_Dl{color:var(--fgColor-muted);font-size:var(--text-body-size-small);font-weight:var(--base-text-weight-semibold);padding-block:var(--base-size-4);padding-inline:var(--base-size-8)}.FieldsSection-module__compactSectionEmptyText--De4w6{color:var(--fgColor-muted);display:block;font-size:var(--text-body-size-small);margin-bottom:var(--base-size-8);margin-top:var(--base-size-4);padding-left:var(--base-size-8);padding-right:var(--base-size-8)}.FieldsSection-module__loadingRow--wqlHp{align-items:center;display:flex;flex-direction:row;gap:8px;padding:var(--base-size-8);width:100%}.FieldEditors-module__dateAnchorContainer--I3CxZ{margin-bottom:var(--base-size-8);margin-left:var(--base-size-8)}.FieldEditors-module__dateAnchorContainerInteractive--EFP_p{cursor:pointer}.FieldEditors-module__dateText--SPr35,.FieldEditors-module__noValueContainer--jjEy0{font-size:var(--text-body-size-small);font-weight:var(--base-text-weight-normal)}.FieldEditors-module__noValueContainer--jjEy0{color:var(--fgColor-muted)}.IssueFieldSingleSelectValueToken-module__container--lARRk[data-size=large] .IssueFieldSingleSelectValueToken-module__tokenText--U98W6{font-size:var(--text-body-size-medium);white-space:nowrap}.IssueFieldSingleSelectValueToken-module__token--TxIqq{border:var(--borderWidth-thin) solid;cursor:unset;font-weight:var(--base-text-weight-semibold)}.IssueFieldSingleSelectValueToken-module__container--lARRk[data-size=large] .IssueFieldSingleSelectValueToken-module__token--TxIqq{height:32px}.IssueFieldSingleSelectValueToken-module__token--TxIqq[as=button]{background:none;cursor:pointer;padding:0}.IssueFieldSingleSelectValueToken-module__token--TxIqq[as=button]:hover{opacity:.8}.IssueFieldSingleSelectValueToken-module__token--TxIqq[as=button]:focus{outline:2px solid var(--focus-outlineColor);outline-offset:2px}.IssueFieldSingleSelectValueToken-module__token--TxIqq[data-color]{background:var(--bgColor-muted);border-color:var(--borderColor-default);color:var(--fgColor-muted)}.IssueFieldSingleSelectValueToken-module__token--TxIqq[data-color=green i]{background:var(--bgColor-success-muted);border-color:var(--borderColor-success-muted);color:var(--fgColor-success)}.IssueFieldSingleSelectValueToken-module__token--TxIqq[data-color=blue i]{background:var(--bgColor-accent-muted);border-color:var(--borderColor-accent-muted);color:var(--fgColor-accent)}.IssueFieldSingleSelectValueToken-module__token--TxIqq[data-color=yellow i]{background-color:var(--bgColor-attention-muted);border-color:var(--borderColor-attention-muted);color:var(--fgColor-attention)}.IssueFieldSingleSelectValueToken-module__token--TxIqq[data-color=orange i]{background-color:var(--bgColor-severe-muted);border-color:var(--borderColor-severe-muted);color:var(--fgColor-severe)}.IssueFieldSingleSelectValueToken-module__token--TxIqq[data-color=red i]{background-color:var(--bgColor-danger-muted);border-color:var(--borderColor-danger-muted);color:var(--fgColor-danger)}.IssueFieldSingleSelectValueToken-module__token--TxIqq[data-color=pink i]{background-color:var(--bgColor-sponsors-muted);border-color:var(--borderColor-sponsors-muted);color:var(--fgColor-sponsors)}.IssueFieldSingleSelectValueToken-module__token--TxIqq[data-color=purple i]{background-color:var(--bgColor-done-muted);border-color:var(--borderColor-done-muted);color:var(--fgColor-done)}.IssueFieldSingleSelectValueToken-module__container--lARRk{max-width:200px}.IssueFieldSingleSelectValueToken-module__container--lARRk[data-size=large]{height:32px;max-width:220px}.IssueFieldSingleSelectValueToken-module__compactContainer--zLlQR{max-width:100cqw}.IssueFieldSingleSelectValueToken-module__compactValueContainer--OvZ0C{container-type:inline-size;min-width:0;width:100%}.IssueFieldSingleSelectValueToken-module__fieldEditorContainer--Ya3I1{margin-bottom:var(--base-size-8);margin-left:var(--base-size-8);margin-top:var(--base-size-4)}.IssueFieldSingleSelectValueToken-module__noValueContainer--FlWSG{color:var(--fgColor-muted);font-size:var(--text-body-size-small)}.LabelToken-module__labelTokenBase--v0rBi{align-items:center;cursor:default;display:inline-flex;position:relative}.LabelToken-module__labelTokenDeleteButton--VLMDp{background:none;border-radius:var(--borderRadius-large);color:inherit;cursor:pointer;height:16px;opacity:0;padding:var(--base-size-2);position:absolute;right:var(--base-size-2);width:24px}.LabelToken-module__labelTokenDeleteButton--VLMDp:focus{background:var(--bgColor-default);border-radius:var(--borderRadius-large);box-shadow:none;opacity:1;outline:2px solid var(--borderColor-accent-emphasis)}.LabelToken-module__labelTokenBase--v0rBi:hover .LabelToken-module__labelTokenDeleteButton--VLMDp{background:var(--bgColor-default);opacity:1;transition:opacity .2s ease-in,visibility 0s linear 0s}.LabelsList-module__labelsListContainer--bS7BO{display:flex;flex-shrink:1;flex-wrap:wrap;font-size:var(--text-body-size-small);gap:var(--base-size-4);height:100%;justify-content:flex-start;overflow:hidden;padding:var(--base-size-4) var(--base-size-8) var(--base-size-8)}.LabelsList-module__labelDescriptionTooltip--LvHc0{position:absolute}.LabelsList-module__labelLink--hHZBM{overflow:hidden}.Milestone-module__hiddenPlaceholder--b_yit{border:0;height:0;margin:0;padding:0;visibility:hidden}.ProjectItemSection-module__ProjectItemSectionContainer--BQnwM{border:var(--borderWidth-thin) solid;border-color:var(--borderColor-default);border-radius:var(--borderRadius-medium);margin-bottom:var(--base-size-8);margin-top:var(--base-size-8);padding-bottom:var(--base-size-8);padding-top:var(--base-size-12);width:100%}.ProjectItemSectionFieldList-module__restoreLink--npi95{cursor:pointer}.ProjectsSections-module__FieldListLi--wheLp{list-style:none}.ProjectsSections-module__FieldListLi--wheLp.ProjectsSections-module__loading--VJV2C{display:flex;flex-direction:column;gap:var(--base-size-8);padding:var(--base-size-8)}.ProjectsSections-module__ArchivedLi--ELvR5{list-style:none;padding-left:var(--base-size-8);padding-right:var(--base-size-8)}.ProjectsSections-module__FieldListUl--nweud{gap:1;list-style:none}.ProjectsSections-module__FieldListLiText--zEDBh{color:var(--fgColor-muted);display:block;font-size:var(--text-caption-size);font-weight:var(--base-text-weight-medium);line-height:var(--text-body-lineHeight-medium)}.ProjectsSections-module__FieldListInternal--NLirt{border-top:var(--borderWidth-thin) solid var(--borderColor-default);margin-top:var(--base-size-8);padding:var(--base-size-8) var(--base-size-8) 0 var(--base-size-8)}.ProjectsSections-module__ListFieldWrapper--XmHs2{align-items:center;display:flex;flex-grow:1;gap:var(--base-size-8);margin-top:0;overflow:hidden}.ProjectsSections-module__projectFieldMetadataContainer--ZxkoF{display:flex;padding-left:var(--base-size-8);padding-right:var(--base-size-4)}.ProjectsSections-module__ListFieldWrapperText--cXqRk{color:var(--fgColor-muted);flex-basis:40%;flex-shrink:0;font-size:var(--text-caption-size);font-weight:var(--base-text-weight-medium);line-height:var(--text-body-lineHeight-medium);margin-bottom:0;margin-top:0;padding-bottom:var(--base-size-4);padding-right:var(--base-size-4);padding-top:var(--base-size-4)}.ProjectsSections-module__FieldBasisAuto--kiwmO{flex-basis:auto;flex-grow:1}.ProjectsSections-module__FieldWrapperLabel--EzGZt{display:contents}.FieldWrapper-module__metadataFieldButton--qr7tn{align-items:center;background-color:#0000;border:none;border-radius:var(--borderRadius-medium);color:var(--fgColor-muted);display:flex;flex-direction:row;flex-grow:1;gap:var(--base-size-4);height:auto;line-height:var(--text-body-lineHeight-small);min-height:var(--control-small-size);overflow:hidden;padding-inline:var(--base-size-8);text-align:left}.FieldWrapper-module__metadataFieldButton--qr7tn:hover{background-color:var(--control-bgColor-hover)}.FieldWrapper-module__fieldContentContainer--UA6kk{font-size:var(--text-body-size-small);overflow:hidden;text-overflow:ellipsis;word-break:break-word}.FieldWrapper-module__fieldValueText--CgERg{color:var(--fgColor-default)}.FieldWrapper-module__fieldPlaceholderText--qU9l7{color:var(--fgColor-muted);font-size:var(--text-body-size-small)}.FieldWrapper-module__fieldItemError--Rexqj{margin-bottom:var(--base-size-8)}.IterationItem-module__IterationItemContainer--DDoTl{column-gap:var(--base-size-4);display:flex;flex-direction:row;flex-wrap:wrap;row-gap:0}.IterationItem-module__iterationTitleContainer--Dlq2Q{display:flex;font-size:var(--text-body-size-small);justify-content:space-between}.IterationItem-module__iterationDateRange--V5IVr{color:var(--fgColor-muted);font-size:var(--text-body-size-small)}.IterationItem-module__currentIndicator--vXDTT{color:var(--fgColor-accent);font-size:var(--text-body-size-small);font-weight:var(--base-text-weight-medium)}.SingleSelectField-module__optionContent--xJjmm{display:flex;flex-direction:column}.SingleSelectField-module__VerifiedHTMLText--zOUZc{color:var(--fgColor-muted);font-size:var(--text-body-size-small)}.SingleSelectField-module__statusPlaceholder--VhnZp{align-items:center;display:flex;flex:1 0 auto;font-size:var(--text-body-size-small);gap:var(--stack-gap-condensed)}.SingleSelectField-module__selectedValueContainer--kmRuq{align-items:center;display:flex;flex:1 0 auto;font-size:var(--text-body-size-small);gap:var(--base-size-4)}.SingleSelectToken-module__Token--FOSN8:hover{box-shadow:none}.SingleSelectToken-module__colorIndicator--mFcTC{border-radius:var(--borderRadius-large);border-style:solid;border-width:var(--borderWidth-thick);flex-shrink:0;height:12px;width:12px}.ProjectItemSectionView-module__ProjectItemSectionViewContainer--Pjx02{align-items:flex-start;display:flex;flex-direction:column;gap:var(--base-size-4);padding-left:var(--base-size-8);padding-right:var(--base-size-8)}.ProjectItemSectionView-module__projectTitleText--AeMlK{align-items:center;color:var(--fgColor-default);display:flex;font-size:var(--text-body-size-small);font-weight:var(--base-text-weight-semibold);gap:var(--base-size-4);padding-left:var(--base-size-4);width:100%}.ProjectItemSectionView-module__truncatedProjectTitle--rFO6B{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ProjectItemSectionView-module__projectLinkContainer--aLELu{display:flex;width:100%}.ProjectItemSectionView-module__projectLink--su_OB{align-items:center;color:var(--fgColor-default);display:flex;font-size:var(--text-body-size-small);font-weight:var(--base-text-weight-semibold);gap:var(--base-size-4);width:100%}.ProjectItemSectionView-module__projectLink--su_OB:hover{text-decoration:none}.ProjectItemSectionView-module__Truncate--CxV2L{display:block;max-width:100%;padding-right:var(--base-size-8)}.ProjectItemSectionView-module__statusFieldContainer--yap_1{align-items:center;display:flex;flex-direction:row;gap:var(--base-size-8);justify-content:space-between;width:100%}.ProjectsSection-module__projectActionList--VG9Tr{padding-bottom:0;padding-top:0}.ProjectsSection-module__ActionList_LinkItem--fZc7M{word-break:break-word}.ProjectsSection-module__ActionList_LinkItem--fZc7M span{font-size:var(--text-body-size-small);margin-block-end:0}.ProjectsSection-module__projectItemsContainer--XwAWz{padding-left:var(--base-size-8);padding-right:var(--base-size-4);width:100%}.ProjectsSection-module__toggleClosedProjectsButton--E9nMY{color:var(--fgColor-muted);font-size:var(--text-body-size-small);padding:0}.ProjectsSection-module__toggleClosedProjectsButton--E9nMY:hover:not([disabled]){background:#0000}.IssuePicker-module__issueNumberText--eQZT6{color:var(--fgColor-muted)}.RepositoryAndIssuePicker-module__BackToRepositorySelectionButton--bl2wm{align-items:center;display:flex;gap:var(--base-size-4);margin-left:calc(var(--base-size-8)*-1)}.RelationshipsSection-module__actionListOverrides--ysNvn{padding:0;width:100%}.RelationshipsSection-module__actionListOverrides--ysNvn [data-component=GroupHeadingWrap]{padding-left:var(--base-size-8);padding-right:0}.RelationshipsSection-module__groupHeading--l5iUA{align-items:center;display:flex;font-weight:400;width:100%}.IssueTypeToken-module__issueTypeTokenContainer--u7mnl[data-size=large] .IssueTypeToken-module__tokenText--jTqtr{font-size:var(--text-body-size-medium);white-space:nowrap}.IssueTypeToken-module__token--QZUId{border:var(--borderWidth-thin) solid;cursor:unset;font-weight:var(--base-text-weight-semibold)}.IssueTypeToken-module__issueTypeTokenContainer--u7mnl[data-size=large] .IssueTypeToken-module__token--QZUId{height:32px}.IssueTypeToken-module__token--QZUId[data-color]{background:var(--bgColor-muted);border-color:var(--borderColor-default);color:var(--fgColor-muted)}.IssueTypeToken-module__token--QZUId[data-color=green i]{background:var(--bgColor-success-muted);border-color:var(--borderColor-success-muted);color:var(--fgColor-success)}.IssueTypeToken-module__token--QZUId[data-color=blue i]{background:var(--bgColor-accent-muted);border-color:var(--borderColor-accent-muted);color:var(--fgColor-accent)}.IssueTypeToken-module__token--QZUId[data-color=yellow i]{background-color:var(--bgColor-attention-muted);border-color:var(--borderColor-attention-muted);color:var(--fgColor-attention)}.IssueTypeToken-module__token--QZUId[data-color=orange i]{background-color:var(--bgColor-severe-muted);border-color:var(--borderColor-severe-muted);color:var(--fgColor-severe)}.IssueTypeToken-module__token--QZUId[data-color=red i]{background-color:var(--bgColor-danger-muted);border-color:var(--borderColor-danger-muted);color:var(--fgColor-danger)}.IssueTypeToken-module__token--QZUId[data-color=pink i]{background-color:var(--bgColor-sponsors-muted);border-color:var(--borderColor-sponsors-muted);color:var(--fgColor-sponsors)}.IssueTypeToken-module__token--QZUId[data-color=purple i]{background-color:var(--bgColor-done-muted);border-color:var(--borderColor-done-muted);color:var(--fgColor-done)}.IssueTypeToken-module__issueTypeTokenContainer--u7mnl[data-size=large]{height:32px}.IssueType-module__IssueTypeToken--hdXht{margin-bottom:var(--base-size-8)}.IssueType-module__hiddenPlaceholder--nnfV9{border:0;height:0;margin:0;padding:0;visibility:hidden}.TypesSection-module__typeContainer--YI5mY{margin-left:var(--base-size-8);margin-top:var(--base-size-4)}.MetadataSidebar-module__MetadataSidebarContainer--Q36lm{display:flex;flex-direction:column;gap:var(--stack-gap-condensed)}.MetadataSidebar-module__CreateIssueAssigneesSection--CPHmR{flex-grow:1}.SimilarIssues-module__container--rpnBl{border:var(--borderWidth-thin) solid var(--borderColor-default);border-radius:var(--borderRadius-medium);margin-bottom:var(--base-size-8);padding:var(--base-size-8)}.SimilarIssues-module__heading--PazCT{color:var(--fgColor-default);font-size:var(--text-body-size-medium);font-weight:var(--base-text-weight-semibold);margin:0}.SimilarIssues-module__list--JrDqv{list-style:none;margin:0;padding:0 0 0 var(--base-size-8)}.SimilarIssues-module__item--Mo1MK{align-items:center;border-bottom:var(--borderWidth-thin) solid var(--borderColor-muted);display:flex;gap:var(--base-size-8);padding:var(--base-size-8) 0}.SimilarIssues-module__item--Mo1MK:last-child{border-bottom:none;padding-bottom:0}.SimilarIssues-module__item--Mo1MK:first-child{padding-top:0}.SimilarIssues-module__iconOpen--azEmv{color:var(--fgColor-open)}.SimilarIssues-module__iconClosed--PYtDd{color:var(--fgColor-done)}.SimilarIssues-module__number--Nd43t{color:var(--fgColor-muted);font-weight:var(--base-text-weight-normal)}.SimilarIssues-module__header--HUsxV{align-items:center;display:flex}.SimilarIssues-module__chevronButton--HNLZT{flex-shrink:0;margin-right:var(--base-size-8);transform:rotate(-90deg);transition:transform .2s ease}.SimilarIssues-module__chevronExpanded--Pm6VX{transform:rotate(0deg)}.SimilarIssues-module__count--KRh1I{color:var(--fgColor-muted);font-weight:var(--base-text-weight-normal);margin-left:var(--base-size-4)}.SimilarIssues-module__loadingState--aT09A{margin-left:var(--base-size-8)}.SimilarIssues-module__content--b8jCB{margin-top:var(--base-size-8)}.SimilarIssues-module__emptyState--LyYdg{color:var(--fgColor-muted);font-size:var(--text-body-size-small);margin:0;padding:0 0 0 var(--base-size-8)}.IssueTemplateItem-module__actionListTitle--wBUhO{font:var(--text-title-shorthand-small);font-weight:var(--base-text-weight-medium)}.IssueTemplateItem-module__templateItemContainer--LLWZY>*{padding-block:var(--base-size-8)}.TemplateList-module__skeletonContainer--fU4Ip{display:flex;flex-direction:column;gap:var(--base-size-8);margin-bottom:var(--base-size-24);margin-top:var(--base-size-16)}.TemplateList-module__templateHeader--_jTSZ{font-size:var(--text-body-size-small);z-index:1}.UserRestrictedView-module__userRestrictedContainer--Ootl2{display:flex;flex-direction:column;gap:var(--base-size-16);margin-bottom:var(--base-size-16);margin-top:var(--base-size-12)}@media(max-width:768px){.UserRestrictedView-module__userRestrictedContainer--Ootl2{margin-right:var(--base-size-12)}}.UserRestrictedView-module__backToAllIssuesButton--pt4aq{width:-moz-fit-content;width:fit-content}.TemplateListPane-module__disabledStateGap--AF9Nn{gap:var(--base-size-4)}.CreateIssue-module__CreateIssueContainer--Laikr{align-items:stretch;display:flex;flex-direction:column;gap:var(--stack-gap-condensed)}.TemplatePickerButton-module__TemplatePickerButtonContainer--sNawE{width:content}.TemplatePickerButton-module__repositoryConnectorText--CKviI{font-weight:var(--base-text-weight-light)}.CreateIssueFooter-module__container--C49xM{width:100%}.CreateIssueFooter-module__Checkbox--RNE52{margin-top:0}.CreateIssueFooter-module__CreateIssueFooterContainer--iM6Iv{display:flex;flex-direction:column}.CreateIssueFooter-module__fileUploadWarningSection--M7r9j{align-items:center;color:var(--fgColor-muted);display:flex;gap:var(--base-size-4);justify-content:flex-end;margin-bottom:var(--base-size-8)}.CreateIssueFooter-module__warningMessageText--fKwCF{font:var(--text-body-shorthand-medium)}.CreateIssueFooter-module__mainContentWrapper--cs_cN{align-items:center;column-gap:var(--stack-gap-spacious);display:flex;flex-wrap:wrap;justify-content:flex-end;row-gap:var(--stack-gap-normal);width:100%}.CreateIssueFooter-module__checkboxAndLinksSection--TMq5G{align-items:center;display:flex;flex-grow:1;flex-wrap:wrap;gap:var(--stack-gap-condensed);justify-content:flex-start;row-gap:var(--base-size-4)}@media screen and (min-width:768px){.CreateIssueFooter-module__checkboxAndLinksSection--TMq5G{justify-content:flex-end}}.CreateIssueFooter-module__FormControl--g1A8W{align-items:center;display:flex}.CreateIssueFooter-module__FormControl--g1A8W>:first-child{display:contents}.CreateIssueFooter-module__separatorDot--HAWps{color:var(--fgColor-muted);display:none}@media screen and (min-width:544px){.CreateIssueFooter-module__separatorDot--HAWps{display:block}}.CreateIssueFooter-module__actionButtonsContainer--UzT1K{align-items:center;display:flex;gap:var(--stack-gap-condensed)}.CreateIssueDialog-module__CreateIssueDialogContainer--paAFp{margin:var(--base-size-24);max-height:clamp(300px,80vh,800px);max-width:800px;width:100%}.CreateIssueDialogHeader-module__CreateIssueDialogHeaderContainer--_BhIA{display:flex}.CreateIssueDialogHeader-module__dialogTitleSection--M7S4F{display:flex;flex-direction:column;flex-grow:1;padding:var(--base-size-6) var(--base-size-8)}.CreateIssueDialogHeader-module__CopyToClipboardButton--P4HRy{border-radius:var(--borderRadius-medium);padding-top:var(--base-size-2)} +/*# sourceMappingURL=42804-c0d2af9d18e1.js.map*/ \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/43184-f68241888ce7.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/43184-f68241888ce7.js" new file mode 100644 index 0000000..0af63a1 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/43184-f68241888ce7.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:43184-f68241888ce7.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[21710,43184,43539,44065,61445,66446,88827],{241:(t,e,n)=>{n.d(e,{A:()=>r});let r=n(41917).A.Symbol},10436:(t,e,n)=>{n.d(e,{lG:()=>g,m4:()=>b,jl:()=>c});var r=n(1481),i=n(49539),o=n(38267),s=n(96540),a=n(74848);let l=(0,o.Ay)(r.A).withConfig({shouldForwardProp:t=>"sx"!==t}).withConfig({displayName:"TabNav__StyledTabNav",componentId:"sc-13kad3t-0"})(["",""],i.A),u=(0,o.Ay)(r.A.Link).withConfig({shouldForwardProp:t=>"sx"!==t}).withConfig({displayName:"TabNav__StyledTabNavLink",componentId:"sc-13kad3t-1"})(["",""],i.A),c=Object.assign(({as:t,...e})=>(0,a.jsx)(l,{...e,...t?{forwardedAs:t}:{}}),{Link:(0,s.forwardRef)(({as:t,...e},n)=>(0,a.jsx)(u,{...e,...t?{forwardedAs:t}:{},ref:n}))});var d=n(29e3),h=n(45846);let f=(0,s.forwardRef)(function(t,e){return(0,a.jsx)(h.A,{as:d.A,ref:e,...t})}),p=(0,s.forwardRef)(({as:t,...e},n)=>(0,a.jsx)(f,{...e,...t?{forwardedAs:t}:{},ref:n})),m=(0,s.forwardRef)(function(t,e){return(0,a.jsx)(h.A,{as:d.A.Header,ref:e,...t})}),g=Object.assign(p,{Header:(0,s.forwardRef)(({as:t,...e},n)=>(0,a.jsx)(m,{...e,...t?{forwardedAs:t}:{},ref:n}))});var y=n(10095);let w=(0,o.Ay)(y.A).withConfig({shouldForwardProp:t=>"sx"!==t}).withConfig({displayName:"Octicon__StyledOcticon",componentId:"sc-jtj3m8-0"})(["",""],({color:t,sx:e})=>(0,i.A)({sx:{color:t,...e}})),b=(0,s.forwardRef)(({as:t,...e},n)=>(0,a.jsx)(w,{...e,...t?{forwardedAs:t}:{},ref:n}));var A=n(55255);let _=(0,o.Ay)(A.A).withConfig({shouldForwardProp:t=>"sx"!==t}).withConfig({displayName:"Tooltip__StyledTooltip",componentId:"sc-145jcib-0"})(["",""],i.A),j=(0,s.forwardRef)(function({as:t,...e},n){return(0,a.jsx)(_,{...e,...t?{forwardedAs:t}:{},ref:n})});j.alignments=A.A.alignments,j.directions=A.A.directions,j.__SLOT__=A.A.__SLOT__;var O=n(9470);let T=(0,s.forwardRef)(function(t,e){return(0,a.jsx)(h.A,{as:O.l,ref:e,...t})}),x=(0,o.Ay)(O.l.Item).withConfig({shouldForwardProp:t=>"sx"!==t}).withConfig({displayName:"ActionList__StyledActionListItem",componentId:"sc-1ugfmds-0"})(["",""],i.A);Object.assign(T,{Item:(0,s.forwardRef)(({as:t,...e},n)=>(0,a.jsx)(x,{...e,...t?{forwardedAs:t}:{},ref:n})),Group:function(t){return(0,a.jsx)(h.A,{as:O.l.Group,...t})},Divider:function(t){return(0,a.jsx)(h.A,{as:O.l.Divider,...t})}})},18679:(t,e,n)=>{n.d(e,{s:()=>AnalyticsClient});let r=["utm_source","utm_medium","utm_campaign","utm_term","utm_content","scid"];var i=n(36301);let AnalyticsClient=class AnalyticsClient{constructor(t){this.options=t}get collectorUrl(){return this.options.collectorUrl}get clientId(){return this.options.clientId?this.options.clientId:(0,i.y)()}createEvent(t){return{page:location.href,title:document.title,context:{...this.options.baseContext,...function(){let t={};try{for(let[e,n]of new URLSearchParams(window.location.search)){let i=e.toLowerCase();r.includes(i)&&(t[i]=n)}return t}catch(t){return{}}}(),...t}}}sendPageView(t){let e=this.createEvent(t);this.send({page_views:[e]})}sendEvent(t,e){let n={...this.createEvent(e),type:t};this.send({events:[n]})}send({page_views:t,events:e}){let n=JSON.stringify({client_id:this.clientId,page_views:t,events:e,request_context:{referrer:function(){let t;try{t=window.top.document.referrer}catch(e){if(window.parent)try{t=window.parent.document.referrer}catch(t){}}return""===t&&(t=document.referrer),t}(),user_agent:navigator.userAgent,screen_resolution:function(){try{return`${screen.width}x${screen.height}`}catch(t){return"unknown"}}(),browser_resolution:function(){let t=0,e=0;try{return"number"==typeof window.innerWidth?(e=window.innerWidth,t=window.innerHeight):null!=document.documentElement&&null!=document.documentElement.clientWidth?(e=document.documentElement.clientWidth,t=document.documentElement.clientHeight):null!=document.body&&null!=document.body.clientWidth&&(e=document.body.clientWidth,t=document.body.clientHeight),`${e}x${t}`}catch(t){return"unknown"}}(),browser_languages:navigator.languages?navigator.languages.join(","):navigator.language||"",pixel_ratio:window.devicePixelRatio,timestamp:Date.now(),tz_seconds:-60*new Date().getTimezoneOffset()}});try{if(navigator.sendBeacon)return void navigator.sendBeacon(this.collectorUrl,n)}catch{}fetch(this.collectorUrl,{method:"POST",cache:"no-cache",headers:{"Content-Type":"application/json"},body:n,keepalive:!1})}}},23125:(t,e,n)=>{n.d(e,{A:()=>u});var r=n(23149),i=n(41917);let o=function(){return i.A.Date.now()};var s=n(71946),a=Math.max,l=Math.min;let u=function(t,e,n){var i,u,c,d,h,f,p=0,m=!1,g=!1,y=!0;if("function"!=typeof t)throw TypeError("Expected a function");function w(e){var n=i,r=u;return i=u=void 0,p=e,d=t.apply(r,n)}function b(t){var n=t-f,r=t-p;return void 0===f||n>=e||n<0||g&&r>=c}function A(){var t,n,r,i=o();if(b(i))return _(i);h=setTimeout(A,(t=i-f,n=i-p,r=e-t,g?l(r,c-n):r))}function _(t){return(h=void 0,y&&i)?w(t):(i=u=void 0,d)}function j(){var t,n=o(),r=b(n);if(i=arguments,u=this,f=n,r){if(void 0===h)return p=t=f,h=setTimeout(A,e),m?w(t):d;if(g)return clearTimeout(h),h=setTimeout(A,e),w(f)}return void 0===h&&(h=setTimeout(A,e)),d}return e=(0,s.A)(e)||0,(0,r.A)(n)&&(m=!!n.leading,c=(g="maxWait"in n)?a((0,s.A)(n.maxWait)||0,e):c,y="trailing"in n?!!n.trailing:y),j.cancel=function(){void 0!==h&&clearTimeout(h),p=0,i=f=u=h=void 0},j.flush=function(){return void 0===h?d:_(o())},j}},23149:(t,e,n)=>{n.d(e,{A:()=>r});let r=function(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}},37732:(t,e,n)=>{n.d(e,{a:()=>s});let r=new Set(["children","localName","ref","style","className"]),i=new WeakMap,o=(t,e,n,r,o)=>{let s,a,l=null==o?void 0:o[e];void 0===l||n===r?null==n&&e in HTMLElement.prototype?t.removeAttribute(e):t[e]=n:(void 0===(s=i.get(t))&&i.set(t,s=new Map),a=s.get(l),void 0!==n?void 0===a?(s.set(l,a={handleEvent:n}),t.addEventListener(l,a)):a.handleEvent=n:void 0!==a&&(s.delete(l),t.removeEventListener(l,a)))};function s(t=window.React,e,n,i,a){let l,u,c;void 0===e?({tagName:u,elementClass:c,events:i,displayName:a}=t,l=t.react):(l=t,c=n,u=e);let d=l.Component,h=l.createElement,f=new Set(Object.keys(null!=i?i:{}));let v=class v extends d{constructor(){super(...arguments),this.o=null}t(t){if(null!==this.o)for(let e in this.i)o(this.o,e,this.props[e],t?t[e]:void 0,i)}componentDidMount(){var t;this.t(),null==(t=this.o)||t.removeAttribute("defer-hydration")}componentDidUpdate(t){this.t(t)}render(){let{_$Gl:t,...e}=this.props;this.h!==t&&(this.u=e=>{null!==t&&("function"==typeof t?t(e):t.current=e),this.o=e,this.h=t}),this.i={};let n={ref:this.u};for(let[t,i]of Object.entries(e))r.has(t)?n["className"===t?"class":t]=i:f.has(t)||t in c.prototype?this.i[t]=i:n[t]=i;return n.suppressHydrationWarning=!0,h(u,n)}};v.displayName=null!=a?a:c.name;let p=l.forwardRef((t,e)=>h(v,{...t,_$Gl:e},null==t?void 0:t.children));return p.displayName=v.displayName,p}},41917:(t,e,n)=>{n.d(e,{A:()=>o});var r=n(72136),i="object"==typeof self&&self&&self.Object===Object&&self;let o=r.A||i||Function("return this")()},45062:(t,e,n)=>{n.d(e,{s:()=>i});var r=n(70170);function i(t=0,e={}){return(n,i,o)=>{if(!o||"function"!=typeof o.value)throw Error("debounce can only decorate functions");let s=o.value;o.value=(0,r.s)(s,t,e),Object.defineProperty(n,i,o)}}},50515:(t,e,n)=>{n.d(e,{JC:()=>w,KK:()=>SequenceTracker,Vy:()=>s,ai:()=>y,rd:()=>c});let Leaf=class Leaf{constructor(t){this.children=[],this.parent=t}delete(t){let e=this.children.indexOf(t);return -1!==e&&(this.children=this.children.slice(0,e).concat(this.children.slice(e+1)),0===this.children.length&&this.parent.delete(this),!0)}add(t){return this.children.push(t),this}};let RadixTrie=class RadixTrie{constructor(t){this.parent=null,this.children={},this.parent=t||null}get(t){return this.children[t]}insert(t){let e=this;for(let n=0;n","\xbf":"?"},i={"`":"~",1:"!",2:"@",3:"#",4:"$",5:"%",6:"^",7:"&",8:"*",9:"(",0:")","-":"_","=":"+","[":"{","]":"}","\\":"|",";":":","'":'"',",":"<",".":">","/":"?",q:"Q",w:"W",e:"E",r:"R",t:"T",y:"Y",u:"U",i:"I",o:"O",p:"P",a:"A",s:"S",d:"D",f:"F",g:"G",h:"H",j:"J",k:"K",l:"L",z:"Z",x:"X",c:"C",v:"V",b:"B",n:"N",m:"M"},o={" ":"Space","+":"Plus"};function s(t,e=navigator.platform){var n,l,c;let{ctrlKey:d,altKey:h,metaKey:f,shiftKey:p,key:m}=t,g=[];for(let[t,e]of[d,h,f,p].entries())e&&g.push(a[t]);if(!a.includes(m)){let t=g.includes("Alt")&&u.test(e)&&null!=(n=r[m])?n:m,s=g.includes("Shift")&&u.test(e)&&null!=(l=i[t])?l:t,a=null!=(c=o[s])?c:s;g.push(a)}return g.join("+")}let a=["Control","Alt","Meta","Shift"];function l(t,e){let n,r,i;{var o,s,a,l=(o=t,s=e,r="u"this.reset(),SequenceTracker.CHORD_TIMEOUT)}};function c(t){return t.split(" ").map(t=>l(t)).join(" ")}function d(t){if(!(t instanceof HTMLElement))return!1;let e=t.nodeName.toLowerCase(),n=(t.getAttribute("type")||"").toLowerCase();return"select"===e||"textarea"===e||"input"===e&&"submit"!==n&&"reset"!==n&&"checkbox"!==n&&"radio"!==n&&"file"!==n||t.isContentEditable}SequenceTracker.CHORD_TIMEOUT=1500;let h=new RadixTrie,f=new WeakMap,p=h,m=new SequenceTracker({onReset(){p=h}});function g(t){if(t.defaultPrevented||!(t.target instanceof Node))return;if(d(t.target)){let e=t.target;if(!e.id||!e.ownerDocument.querySelector(`[data-hotkey-scope="${e.id}"]`))return}let e=p.get(s(t));if(!e)return void m.reset();if(m.registerKeypress(t),p=e,e instanceof Leaf){let r,i=t.target,o=!1,s=d(i);for(let t=e.children.length-1;t>=0;t-=1){let n=(r=e.children[t]).getAttribute("data-hotkey-scope");if(!s&&!n||s&&i.id===n){o=!0;break}}if(r&&o){var n;let e;n=r,e=new CustomEvent("hotkey-fire",{cancelable:!0,detail:{path:m.path}}),n.dispatchEvent(e)&&(d(n)?n.focus():n.click()),t.preventDefault()}m.reset()}}function y(t,e){0===Object.keys(h.children).length&&document.addEventListener("keydown",g);let n=(function(t){let e=[],n=[""],r=!1;for(let i=0;it.map(t=>l(t)).filter(t=>""!==t)).filter(t=>t.length>0)})(e||t.getAttribute("data-hotkey")||"").map(e=>h.insert(e).add(t));f.set(t,n)}function w(t){let e=f.get(t);if(e&&e.length)for(let n of e)n&&n.delete(t);0===Object.keys(h.children).length&&document.removeEventListener("keydown",g)}},53098:(t,e,n)=>{n.d(e,{A:()=>r});let r=function(t){return null!=t&&"object"==typeof t}},61388:(t,e,n)=>{n.d(e,{_:()=>a});var r=n(36158),i=n(26261),o=n(66500),s=n(24880),a=class extends o.Q{#t;#e=void 0;#n;#r;constructor(t,e){super(),this.#t=t,this.setOptions(e),this.bindMethods(),this.#i()}bindMethods(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)}setOptions(t){let e=this.options;this.options=this.#t.defaultMutationOptions(t),(0,s.f8)(this.options,e)||this.#t.getMutationCache().notify({type:"observerOptionsUpdated",mutation:this.#n,observer:this}),e?.mutationKey&&this.options.mutationKey&&(0,s.EN)(e.mutationKey)!==(0,s.EN)(this.options.mutationKey)?this.reset():this.#n?.state.status==="pending"&&this.#n.setOptions(this.options)}onUnsubscribe(){this.hasListeners()||this.#n?.removeObserver(this)}onMutationUpdate(t){this.#i(),this.#o(t)}getCurrentResult(){return this.#e}reset(){this.#n?.removeObserver(this),this.#n=void 0,this.#i(),this.#o()}mutate(t,e){return this.#r=e,this.#n?.removeObserver(this),this.#n=this.#t.getMutationCache().build(this.#t,this.options),this.#n.addObserver(this),this.#n.execute(t)}#i(){let t=this.#n?.state??(0,r.$)();this.#e={...t,isPending:"pending"===t.status,isSuccess:"success"===t.status,isError:"error"===t.status,isIdle:"idle"===t.status,mutate:this.mutate,reset:this.reset}}#o(t){i.jG.batch(()=>{if(this.#r&&this.hasListeners()){let e=this.#e.variables,n=this.#e.context,r={client:this.#t,meta:this.options.meta,mutationKey:this.options.mutationKey};if(t?.type==="success"){try{this.#r.onSuccess?.(t.data,e,n,r)}catch(t){Promise.reject(t)}try{this.#r.onSettled?.(t.data,null,e,n,r)}catch(t){Promise.reject(t)}}else if(t?.type==="error"){try{this.#r.onError?.(t.error,e,n,r)}catch(t){Promise.reject(t)}try{this.#r.onSettled?.(void 0,t.error,e,n,r)}catch(t){Promise.reject(t)}}}this.listeners.forEach(t=>{t(this.#e)})})}}},61882:(t,e,n)=>{n.d(e,{A:()=>o});var r=n(87385),i=n(53098);let o=function(t){return"symbol"==typeof t||(0,i.A)(t)&&"[object Symbol]"==(0,r.A)(t)}},65510:(t,e,n)=>{n.d(e,{U:()=>s});var r=n(1651),i=n(15985),o=n(60791);function s(t,e){return(0,i.t)({...t,enabled:!0,suspense:!0,throwOnError:o.R3,placeholderData:void 0},r.$,e)}},70837:(t,e,n)=>{n.d(e,{O:()=>r});function r(t="ha"){let e,n={};for(let r of Array.from(document.head.querySelectorAll(`meta[name^="${t}-"]`))){let{name:i,content:o}=r,s=i.replace(`${t}-`,"").replace(/-/g,"_");"url"===s?e=o:n[s]=o}if(!e)throw Error(`AnalyticsClient ${t}-url meta tag not found`);return{collectorUrl:e,...Object.keys(n).length>0?{baseContext:n}:{}}}},71946:(t,e,n)=>{n.d(e,{A:()=>f});var r=/\s/;let i=function(t){for(var e=t.length;e--&&r.test(t.charAt(e)););return e};var o=/^\s+/,s=n(23149),a=n(61882),l=0/0,u=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,d=/^0o[0-7]+$/i,h=parseInt;let f=function(t){if("number"==typeof t)return t;if((0,a.A)(t))return l;if((0,s.A)(t)){var e,n="function"==typeof t.valueOf?t.valueOf():t;t=(0,s.A)(n)?n+"":n}if("string"!=typeof t)return 0===t?t:+t;t=(e=t)?e.slice(0,i(e)+1).replace(o,""):e;var r=c.test(t);return r||d.test(t)?h(t.slice(2),r?2:8):u.test(t)?l:+t}},72136:(t,e,n)=>{n.d(e,{A:()=>r});let r="object"==typeof global&&global&&global.Object===Object&&global},87385:(t,e,n)=>{n.d(e,{A:()=>d});var r=n(241),i=Object.prototype,o=i.hasOwnProperty,s=i.toString,a=r.A?r.A.toStringTag:void 0;let l=function(t){var e=o.call(t,a),n=t[a];try{t[a]=void 0;var r=!0}catch(t){}var i=s.call(t);return r&&(e?t[a]=n:delete t[a]),i};var u=Object.prototype.toString,c=r.A?r.A.toStringTag:void 0;let d=function(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":c&&c in Object(t)?l(t):u.call(t)}},94747:(t,e,n)=>{n.d(e,{n:()=>l});var r=n(96540),i=n(61388),o=n(26261),s=n(24880),a=n(97665);function l(t,e){let n=(0,a.jE)(e),[l]=r.useState(()=>new i._(n,t));r.useEffect(()=>{l.setOptions(t)},[l,t]);let u=r.useSyncExternalStore(r.useCallback(t=>l.subscribe(o.jG.batchCalls(t)),[l]),()=>l.getCurrentResult(),()=>l.getCurrentResult()),c=r.useCallback((t,e)=>{l.mutate(t,e).catch(s.lQ)},[l]);if(u.error&&(0,s.GU)(l.options.throwOnError,[u.error]))throw u.error;return{...u,mutate:c,mutateAsync:u.mutate}}},97286:(t,e,n)=>{n.d(e,{I:()=>o});var r=n(1651),i=n(15985);function o(t,e){return(0,i.t)(t,r.$,e)}}}]); +//# sourceMappingURL=43184-8dc558451c80.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/43784-56ff5e06fc38.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/43784-56ff5e06fc38.js" new file mode 100644 index 0000000..a97ddaf --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/43784-56ff5e06fc38.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:43784-56ff5e06fc38.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[43784],{6986:(e,t,r)=>{function n(){if(!(this instanceof n))return new n;this.size=0,this.uid=0,this.selectors=[],this.indexes=Object.create(this.indexes),this.activeIndexes=[]}r.d(t,{A:()=>n});var o,i=window.document.documentElement,s=i.matches||i.webkitMatchesSelector||i.mozMatchesSelector||i.oMatchesSelector||i.msMatchesSelector;n.prototype.matchesSelector=function(e,t){return s.call(e,t)},n.prototype.querySelectorAll=function(e,t){return t.querySelectorAll(e)},n.prototype.indexes=[];var a=/^#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;n.prototype.indexes.push({name:"ID",selector:function(e){var t;if(t=e.match(a))return t[0].slice(1)},element:function(e){if(e.id)return[e.id]}});var l=/^\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;n.prototype.indexes.push({name:"CLASS",selector:function(e){var t;if(t=e.match(l))return t[0].slice(1)},element:function(e){var t=e.className;if(t){if("string"==typeof t)return t.split(/\s/);else if("object"==typeof t&&"baseVal"in t)return t.baseVal.split(/\s/)}}});var c=/^((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;n.prototype.indexes.push({name:"TAG",selector:function(e){var t;if(t=e.match(c))return t[0].toUpperCase()},element:function(e){return[e.nodeName.toUpperCase()]}}),n.prototype.indexes.default={name:"UNIVERSAL",selector:function(){return!0},element:function(){return[!0]}},o="function"==typeof window.Map?window.Map:function(){function e(){this.map={}}return e.prototype.get=function(e){return this.map[e+" "]},e.prototype.set=function(e,t){this.map[e+" "]=t},e}();var u=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g;function d(e,t){var r,n,o,i,s,a,l=(e=e.slice(0).concat(e.default)).length,c=t,d=[];do if(u.exec(""),(o=u.exec(c))&&(c=o[3],o[2]||!c)){for(r=0;r{r.d(t,{lB:()=>F});var n=r(6986),o=null,i=null,s=[];function a(e,t){var r=[];function n(){var e=r;r=[],t(e)}return function(){for(var t=arguments.length,o=Array(t),i=0;i{r.d(t,{jM:()=>$});var n,i=Symbol.for("immer-nothing"),o=Symbol.for("immer-draftable"),a=Symbol.for("immer-state");function s(e){throw Error(`[Immer] minified error nr: ${e}. Full error at: https://bit.ly/3cXEKWf`)}var l=Object.getPrototypeOf;function u(e){return!!e&&!!e[a]}function c(e){return!!e&&(p(e)||Array.isArray(e)||!!e[o]||!!e.constructor?.[o]||b(e)||S(e))}var f=Object.prototype.constructor.toString();function p(e){if(!e||"object"!=typeof e)return!1;let t=l(e);if(null===t)return!0;let r=Object.hasOwnProperty.call(t,"constructor")&&t.constructor;return r===Object||"function"==typeof r&&Function.toString.call(r)===f}function d(e,t){0===_(e)?Reflect.ownKeys(e).forEach(r=>{t(r,e[r],e)}):e.forEach((r,n)=>t(n,r,e))}function _(e){let t=e[a];return t?t.type_:Array.isArray(e)?1:b(e)?2:3*!!S(e)}function y(e,t){return 2===_(e)?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function h(e,t,r){let n=_(e);2===n?e.set(t,r):3===n?e.add(r):e[t]=r}function b(e){return e instanceof Map}function S(e){return e instanceof Set}function m(e){return e.copy_||e.base_}function g(e,t){if(b(e))return new Map(e);if(S(e))return new Set(e);if(Array.isArray(e))return Array.prototype.slice.call(e);let r=p(e);if(!0!==t&&("class_only"!==t||r)){let t=l(e);return null!==t&&r?{...e}:Object.assign(Object.create(t),e)}{let t=Object.getOwnPropertyDescriptors(e);delete t[a];let r=Reflect.ownKeys(t);for(let n=0;n1&&(e.set=e.add=e.clear=e.delete=w),Object.freeze(e),t&&Object.entries(e).forEach(([e,t])=>O(t,!0))),e}function w(){s(2)}function P(e){return Object.isFrozen(e)}var j={};function z(e){let t=j[e];return t||s(0,e),t}function E(e,t){t&&(z("Patches"),e.patches_=[],e.inversePatches_=[],e.patchListener_=t)}function A(e){D(e),e.drafts_.forEach(M),e.drafts_=null}function D(e){e===n&&(n=e.parent_)}function k(e){return n={drafts_:[],parent_:n,immer_:e,canAutoFreeze_:!0,unfinalizedDrafts_:0}}function M(e){let t=e[a];0===t.type_||1===t.type_?t.revoke_():t.revoked_=!0}function C(e,t){t.unfinalizedDrafts_=t.drafts_.length;let r=t.drafts_[0];return void 0!==e&&e!==r?(r[a].modified_&&(A(t),s(4)),c(e)&&(e=F(t,e),t.parent_||N(t,e)),t.patches_&&z("Patches").generateReplacementPatches_(r[a].base_,e,t.patches_,t.inversePatches_)):e=F(t,r,[]),A(t),t.patches_&&t.patchListener_(t.patches_,t.inversePatches_),e!==i?e:void 0}function F(e,t,r){if(P(t))return t;let n=t[a];if(!n)return d(t,(i,o)=>T(e,n,t,i,o,r)),t;if(n.scope_!==e)return t;if(!n.modified_)return N(e,n.base_,!0),n.base_;if(!n.finalized_){n.finalized_=!0,n.scope_.unfinalizedDrafts_--;let t=n.copy_,i=t,o=!1;3===n.type_&&(i=new Set(t),t.clear(),o=!0),d(i,(i,a)=>T(e,n,t,i,a,r,o)),N(e,t,!1),r&&e.patches_&&z("Patches").generatePatches_(n,r,e.patches_,e.inversePatches_)}return n.copy_}function T(e,t,r,n,i,o,a){if(u(i)){let a=F(e,i,o&&t&&3!==t.type_&&!y(t.assigned_,n)?o.concat(n):void 0);if(h(r,n,a),!u(a))return;e.canAutoFreeze_=!1}else a&&r.add(i);if(c(i)&&!P(i)){if(!e.immer_.autoFreeze_&&e.unfinalizedDrafts_<1)return;F(e,i),(!t||!t.scope_.parent_)&&"symbol"!=typeof n&&Object.prototype.propertyIsEnumerable.call(r,n)&&N(e,i)}}function N(e,t,r=!1){!e.parent_&&e.immer_.autoFreeze_&&e.canAutoFreeze_&&O(t,r)}var R={get(e,t){if(t===a)return e;let r=m(e);if(!y(r,t)){var n;let i;return n=e,(i=U(r,t))?"value"in i?i.value:i.get?.call(n.draft_):void 0}let i=r[t];return e.finalized_||!c(i)?i:i===I(e.base_,t)?(J(e),e.copy_[t]=K(i,e)):i},has:(e,t)=>t in m(e),ownKeys:e=>Reflect.ownKeys(m(e)),set(e,t,r){let n=U(m(e),t);if(n?.set)return n.set.call(e.draft_,r),!0;if(!e.modified_){let n=I(m(e),t),i=n?.[a];if(i&&i.base_===r)return e.copy_[t]=r,e.assigned_[t]=!1,!0;if((r===n?0!==r||1/r==1/n:r!=r&&n!=n)&&(void 0!==r||y(e.base_,t)))return!0;J(e),W(e)}return!!(e.copy_[t]===r&&(void 0!==r||t in e.copy_)||Number.isNaN(r)&&Number.isNaN(e.copy_[t]))||(e.copy_[t]=r,e.assigned_[t]=!0,!0)},deleteProperty:(e,t)=>(void 0!==I(e.base_,t)||t in e.base_?(e.assigned_[t]=!1,J(e),W(e)):delete e.assigned_[t],e.copy_&&delete e.copy_[t],!0),getOwnPropertyDescriptor(e,t){let r=m(e),n=Reflect.getOwnPropertyDescriptor(r,t);return n?{writable:!0,configurable:1!==e.type_||"length"!==t,enumerable:n.enumerable,value:r[t]}:n},defineProperty(){s(11)},getPrototypeOf:e=>l(e.base_),setPrototypeOf(){s(12)}},x={};function I(e,t){let r=e[a];return(r?m(r):e)[t]}function U(e,t){if(!(t in e))return;let r=l(e);for(;r;){let e=Object.getOwnPropertyDescriptor(r,t);if(e)return e;r=l(r)}}function W(e){!e.modified_&&(e.modified_=!0,e.parent_&&W(e.parent_))}function J(e){e.copy_||(e.copy_=g(e.base_,e.scope_.immer_.useStrictShallowCopy_))}function K(e,t){let r=b(e)?z("MapSet").proxyMap_(e,t):S(e)?z("MapSet").proxySet_(e,t):function(e,t){let r=Array.isArray(e),i={type_:+!!r,scope_:t?t.scope_:n,modified_:!1,finalized_:!1,assigned_:{},parent_:t,base_:e,draft_:null,copy_:null,revoke_:null,isManual_:!1},o=i,a=R;r&&(o=[i],a=x);let{revoke:s,proxy:l}=Proxy.revocable(o,a);return i.draft_=l,i.revoke_=s,l}(e,t);return(t?t.scope_:n).drafts_.push(r),r}d(R,(e,t)=>{x[e]=function(){return arguments[0]=arguments[0][0],t.apply(this,arguments)}}),x.deleteProperty=function(e,t){return x.set.call(this,e,t,void 0)},x.set=function(e,t,r){return R.set.call(this,e[0],t,r,e[0])};var L=new class{constructor(e){this.autoFreeze_=!0,this.useStrictShallowCopy_=!1,this.produce=(e,t,r)=>{let n;if("function"==typeof e&&"function"!=typeof t){let r=t;t=e;let n=this;return function(e=r,...i){return n.produce(e,e=>t.call(this,e,...i))}}if("function"!=typeof t&&s(6),void 0!==r&&"function"!=typeof r&&s(7),c(e)){let i=k(this),o=K(e,void 0),a=!0;try{n=t(o),a=!1}finally{a?A(i):D(i)}return E(i,r),C(n,i)}if(e&&"object"==typeof e)s(1,e);else{if(void 0===(n=t(e))&&(n=e),n===i&&(n=void 0),this.autoFreeze_&&O(n,!0),r){let t=[],i=[];z("Patches").generateReplacementPatches_(e,n,t,i),r(t,i)}return n}},this.produceWithPatches=(e,t)=>{let r,n;return"function"==typeof e?(t,...r)=>this.produceWithPatches(t,t=>e(t,...r)):[this.produce(e,t,(e,t)=>{r=e,n=t}),r,n]},"boolean"==typeof e?.autoFreeze&&this.setAutoFreeze(e.autoFreeze),"boolean"==typeof e?.useStrictShallowCopy&&this.setUseStrictShallowCopy(e.useStrictShallowCopy)}createDraft(e){var t;c(e)||s(8),u(e)&&(u(t=e)||s(10,t),e=function e(t){let r;if(!c(t)||P(t))return t;let n=t[a];if(n){if(!n.modified_)return n.base_;n.finalized_=!0,r=g(t,n.scope_.immer_.useStrictShallowCopy_)}else r=g(t,!0);return d(r,(t,n)=>{h(r,t,e(n))}),n&&(n.finalized_=!1),r}(t));let r=k(this),n=K(e,void 0);return n[a].isManual_=!0,D(r),n}finishDraft(e,t){let r=e&&e[a];r&&r.isManual_||s(9);let{scope_:n}=r;return E(n,t),C(void 0,n)}setAutoFreeze(e){this.autoFreeze_=e}setUseStrictShallowCopy(e){this.useStrictShallowCopy_=e}applyPatches(e,t){let r;for(r=t.length-1;r>=0;r--){let n=t[r];if(0===n.path.length&&"replace"===n.op){e=n.value;break}}r>-1&&(t=t.slice(r+1));let n=z("Patches").applyPatches_;return u(e)?n(e,t):this.produce(e,e=>n(e,t))}},$=L.produce;L.produceWithPatches.bind(L),L.setAutoFreeze.bind(L),L.setUseStrictShallowCopy.bind(L),L.applyPatches.bind(L),L.createDraft.bind(L),L.finishDraft.bind(L)},8964:(e,t,r)=>{r.d(t,{_:()=>i});var n=r(29304);function i(e,t){var r=(0,n._)(e,t,"update");if(r.set){if(!r.get)throw TypeError("attempted to read set only private field");return"__destrWrapper"in r||(r.__destrWrapper={set value(v){r.set.call(e,v)},get value(){return r.get.call(e)}}),r.__destrWrapper}if(!r.writable)throw TypeError("attempted to set read only private field");return r}},59914:(e,t,r)=>{r.d(t,{k:()=>o});var n=r(96540),i=r(70466);function o(e){let t=n.useRef(void 0);return r=>{let n=e(r);return(0,i.x)(t.current,n)?t.current:t.current=n}}},65510:(e,t,r)=>{r.d(t,{U:()=>a});var n=r(1651),i=r(15985),o=r(60791);function a(e,t){return(0,i.t)({...e,enabled:!0,suspense:!0,throwOnError:o.R3,placeholderData:void 0},n.$,t)}},70466:(e,t,r)=>{r.d(t,{x:()=>i});let n=(e,t)=>{let r=e instanceof Map?e:new Map(e.entries()),n=t instanceof Map?t:new Map(t.entries());if(r.size!==n.size)return!1;for(let[e,t]of r)if(!Object.is(t,n.get(e)))return!1;return!0};function i(e,t){if(Object.is(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;if(!(Symbol.iterator in e)||!(Symbol.iterator in t))return n({entries:()=>Object.entries(e)},{entries:()=>Object.entries(t)});if("entries"in e&&"entries"in t)return n(e,t);let r=e[Symbol.iterator](),i=t[Symbol.iterator](),o=r.next(),a=i.next();for(;!o.done&&!a.done;){if(!Object.is(o.value,a.value))return!1;o=r.next(),a=i.next()}return!!o.done&&!!a.done}},71323:(e,t,r)=>{r.d(t,{P:()=>o});var n=r(96540);let i=e=>e;function o(e,t=i){let r=n.useSyncExternalStore(e.subscribe,()=>t(e.getState()),()=>t(e.getInitialState()));return n.useDebugValue(r),r}},87134:(e,t,r)=>{r.d(t,{lt:()=>o});let n=new Map,i=e=>{let t=n.get(e);return t?Object.fromEntries(Object.entries(t.stores).map(([e,t])=>[e,t.getState()])):{}},o=(e,t={})=>(r,o,s)=>{let l,{enabled:u,anonymousActionType:c,store:f,...p}=t;try{l=(null==u||u)&&window.__REDUX_DEVTOOLS_EXTENSION__}catch(e){}if(!l)return e(r,o,s);let{connection:d,..._}=((e,t,r)=>{if(void 0===e)return{type:"untracked",connection:t.connect(r)};let i=n.get(r.name);if(i)return{type:"tracked",store:e,...i};let o={connection:t.connect(r),stores:{}};return n.set(r.name,o),{type:"tracked",store:e,...o}})(f,l,p),y=!0;s.setState=(e,t,n)=>{let a=r(e,t);if(!y)return a;let l=void 0===n?{type:c||"anonymous"}:"string"==typeof n?{type:n}:n;return void 0===f?null==d||d.send(l,o()):null==d||d.send({...l,type:`${f}/${l.type}`},{...i(p.name),[f]:s.getState()}),a};let h=(...e)=>{let t=y;y=!1,r(...e),y=t},b=e(s.setState,o,s);if("untracked"===_.type?null==d||d.init(b):(_.stores[_.store]=s,null==d||d.init(Object.fromEntries(Object.entries(_.stores).map(([e,t])=>[e,e===_.store?b:t.getState()])))),s.dispatchFromDevtools&&"function"==typeof s.dispatch){let e=!1,t=s.dispatch;s.dispatch=(...r)=>{"__setState"!==r[0].type||e||(console.warn('[zustand devtools middleware] "__setState" action type is reserved to set state from the devtools. Avoid using it.'),e=!0),t(...r)}}return d.subscribe(e=>{var t;switch(e.type){case"ACTION":if("string"!=typeof e.payload)return void console.error("[zustand devtools middleware] Unsupported action format");return a(e.payload,e=>{if("__setState"===e.type){if(void 0===f)return void h(e.state);1!==Object.keys(e.state).length&&console.error(` + [zustand devtools middleware] Unsupported __setState action format. + When using 'store' option in devtools(), the 'state' should have only one key, which is a value of 'store' that was passed in devtools(), + and value of this only key should be a state object. Example: { "type": "__setState", "state": { "abc123Store": { "foo": "bar" } } } + `);let t=e.state[f];return void(null==t||JSON.stringify(s.getState())!==JSON.stringify(t)&&h(t))}s.dispatchFromDevtools&&"function"==typeof s.dispatch&&s.dispatch(e)});case"DISPATCH":switch(e.payload.type){case"RESET":if(h(b),void 0===f)return null==d?void 0:d.init(s.getState());return null==d?void 0:d.init(i(p.name));case"COMMIT":if(void 0===f){null==d||d.init(s.getState());break}return null==d?void 0:d.init(i(p.name));case"ROLLBACK":return a(e.state,e=>{if(void 0===f){h(e),null==d||d.init(s.getState());return}h(e[f]),null==d||d.init(i(p.name))});case"JUMP_TO_STATE":case"JUMP_TO_ACTION":return a(e.state,e=>{void 0===f?h(e):JSON.stringify(s.getState())!==JSON.stringify(e[f])&&h(e[f])});case"IMPORT_STATE":{let{nextLiftedState:r}=e.payload,n=null==(t=r.computedStates.slice(-1)[0])?void 0:t.state;if(!n)return;void 0===f?h(n):h(n[f]),null==d||d.send(null,r);break}case"PAUSE_RECORDING":return y=!y}return}}),b},a=(e,t)=>{let r;try{r=JSON.parse(e)}catch(e){console.error("[zustand devtools middleware] Could not parse the received json",e)}void 0!==r&&t(r)}},97283:(e,t,r)=>{r.d(t,{y:()=>i});let n=e=>{let t,r=new Set,n=(e,n)=>{let i="function"==typeof e?e(t):e;if(!Object.is(i,t)){let e=t;t=(null!=n?n:"object"!=typeof i||null===i)?i:Object.assign({},t,i),r.forEach(r=>r(t,e))}},i=()=>t,o={setState:n,getState:i,getInitialState:()=>a,subscribe:e=>(r.add(e),()=>r.delete(e))},a=t=e(n,i,o);return o},i=e=>e?n(e):n}}]); +//# sourceMappingURL=43854-53249276f852.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/44185-49b5cc8e57f6.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/44185-49b5cc8e57f6.js" new file mode 100644 index 0000000..a2ec6a8 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/44185-49b5cc8e57f6.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:44185-49b5cc8e57f6.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[44185],{44185:(e,i,t)=>{t.d(i,{h:()=>N});var s=t(74848),a=t(16522),r=t(26607),n=t(55255),o=t(84268),l=t(57387),c=t(10436),m=t(99223);function d(e){let i,t,r=(0,a.c)(42),{reason:n,isViewer:l,hasSignature:c,verificationStatus:d,signatureType:h,signedByGitHub:u,keyExpired:g,keyRevoked:f}=e,_="SshSignature"===h?"SSH":"GPG";r[0]!==g||r[1]!==f?(i=g?(0,s.jsxs)("span",{children:[" The key has expired",f&&(0,s.jsx)("span",{children:" and has been revoked"}),"."]}):f?(0,s.jsx)("span",{children:" The key has been revoked."}):(0,s.jsx)(s.Fragment,{}),r[0]=g,r[1]=f,r[2]=i):i=r[2];let x=i;if("unverified"===d)if(c&&"GPGVERIFY_UNAVAILABLE"===n){let e;return r[3]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"The commit signature verification service is not available"}),r[3]=e):e=r[3],e}else if(c)switch(n){case"INVALID":{let e;return r[5]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"The signature in this commit could not be verified. Someone may be trying to trick you."}),r[5]=e):e=r[5],e}case"MALFORMED_SIG":{let e;return r[6]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"We were unable to parse the signature in this commit."}),r[6]=e):e=r[6],e}case"UNKNOWN_KEY":if(l){let e;return r[7]!==_?(e=(0,s.jsxs)("span",{children:[(0,s.jsxs)(o.A,{inline:!0,href:"/settings/keys",children:["Upload your public signing ",_," key"]})," ","to verify your signature."]}),r[7]=_,r[8]=e):e=r[8],e}{let e;return r[9]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"This user has not yet uploaded their public signing key."}),r[9]=e):e=r[9],e}case"BAD_EMAIL":{let e;return r[10]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"The email in this signature doesn\u2019t match the committer email."}),r[10]=e):e=r[10],e}case"UNVERIFIED_EMAIL":if(l){let e;return r[11]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsxs)("span",{children:[(0,s.jsx)(o.A,{inline:!0,href:"/settings/emails",children:"Verify your email address"})," ","to verify your signature."]}),r[11]=e):e=r[11],e}{let e;return r[12]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"The committer email address is not verified."}),r[12]=e):e=r[12],e}case"NO_USER":{let e;return r[13]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"No user is associated with the committer email."}),r[13]=e):e=r[13],e}case"UNKNOWN_SIG_TYPE":{let e;return r[14]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"GitHub supports GPG and S/MIME signatures. We don't know what type of signature this is."}),r[14]=e):e=r[14],e}case"GPGVERIFY_ERROR":{let e;return r[15]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"We had a problem verifying this signature. Please try again later."}),r[15]=e):e=r[15],e}case"NOT_SIGNING_KEY":{let e;return r[16]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"The key that signed this doesn't have usage flags that allow signing."}),r[16]=e):e=r[16],e}case"EXPIRED_KEY":{let e;return r[17]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"The key that signed this is expired."}),r[17]=e):e=r[17],e}case"OCSP_ERROR":{let e;return r[18]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"We had a problem checking for revoked certificates. Please try again later."}),r[18]=e):e=r[18],e}case"OCSP_REVOKED":{let e;return r[19]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"One or more certificates in the chain has been revoked."}),r[19]=e):e=r[19],e}case"BAD_CERT":{let e;return r[20]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"The signing certificate or its chain could not be verified."}),r[20]=e):e=r[20],e}default:{let e;return r[21]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"We were unable to verify this signature."}),r[21]=e):e=r[21],e}}else{let e;return r[4]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"This commit is not signed, but one or more authors requires that any commit attributed to them is signed."}),r[4]=e):e=r[4],e}if("partially_verified"===d)if(u)if((0,m.k)()){let e,i;return r[22]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{className:"text-bold",children:"verified signature"}),r[22]=e):e=r[22],r[23]!==x?(i=(0,s.jsxs)("span",{children:["This commit was created on GitHub Enterprise Server and signed with a"," ",e,".",x]}),r[23]=x,r[24]=i):i=r[24],i}else{let e,i;return r[25]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{className:"text-semibold",children:"verified signature"}),r[25]=e):e=r[25],r[26]!==x?(i=(0,s.jsxs)("span",{children:["This commit was created on GitHub.com and signed with GitHub's"," ",e,".",x]}),r[26]=x,r[27]=i):i=r[27],i}else{let e,i;return r[28]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{className:"text-semibold",children:"verified signature"}),r[28]=e):e=r[28],r[29]!==x?(i=(0,s.jsxs)("span",{children:["This commit was signed with the committer's ",e,".",x]}),r[29]=x,r[30]=i):i=r[30],i}if("verified"===d)switch(n){case"VALID":if(u)if((0,m.k)()){let e,i;return r[31]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{className:"text-semibold",children:"verified signature"}),r[31]=e):e=r[31],r[32]!==x?(i=(0,s.jsxs)("span",{children:["This commit was created on GitHub Enterprise Server and signed with a"," ",e,".",x]}),r[32]=x,r[33]=i):i=r[33],i}else{let e,i;return r[34]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{className:"text-semibold",children:"verified signature"}),r[34]=e):e=r[34],r[35]!==x?(i=(0,s.jsxs)("span",{children:["This commit was created on GitHub.com and signed with GitHub's"," ",e,".",x]}),r[35]=x,r[36]=i):i=r[36],i}{let e,i;return r[37]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{className:"text-semibold",children:"verified signature"}),r[37]=e):e=r[37],r[38]!==x?(i=(0,s.jsxs)("span",{children:["This commit was signed with the committer's ",e,".",x]}),r[38]=x,r[39]=i):i=r[39],i}case"OCSP_PENDING":{let e;return r[40]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)("span",{children:"This commit was signed with a verified signature, though we're still working on certificate revocation checking."}),r[40]=e):e=r[40],e}}return r[41]===Symbol.for("react.memo_cache_sentinel")?(t=(0,s.jsx)("span",{}),r[41]=t):t=r[41],t}try{d.displayName||(d.displayName="ReasonLabel")}catch{}function h(e){let i,t,r,n,o=(0,a.c)(18),{icon:l,iconColor:m,id:h,reason:u,isViewer:g,hasSignature:f,verificationStatus:_,signatureType:x,signedByGitHub:y,keyExpired:p,keyRevoked:j}=e;return o[0]!==m?(i={color:m},o[0]=m,o[1]=i):i=o[1],o[2]!==l||o[3]!==i?(t=(0,s.jsx)("div",{className:"pr-2",children:(0,s.jsx)(c.m4,{icon:l,sx:i})}),o[2]=l,o[3]=i,o[4]=t):t=o[4],o[5]!==f||o[6]!==g||o[7]!==p||o[8]!==j||o[9]!==u||o[10]!==x||o[11]!==y||o[12]!==_?(r=(0,s.jsx)("div",{className:"SignedCommitHeader-module__messageContent--IBgp2",children:(0,s.jsx)(d,{reason:u,isViewer:g,hasSignature:f,verificationStatus:_,signatureType:x,signedByGitHub:y,keyExpired:p,keyRevoked:j})}),o[5]=f,o[6]=g,o[7]=p,o[8]=j,o[9]=u,o[10]=x,o[11]=y,o[12]=_,o[13]=r):r=o[13],o[14]!==h||o[15]!==t||o[16]!==r?(n=(0,s.jsxs)("div",{id:h,"data-testid":"signed-commit-header",className:"d-flex p-2",children:[t,r]}),o[14]=h,o[15]=t,o[16]=r,o[17]=n):n=o[17],n}try{h.displayName||(h.displayName="SignedCommitHeader")}catch{}var u=t(38621),g=t(62935),f=t(10095),_=t(77430);function x(e){let i,t=(0,a.c)(10),{keyHex:n,signatureType:l,signer:c,verifiedAt:m,showPartiallyVerifiedMessage:d,signingLinkComponent:h,keyExpired:x,keyRevoked:y}=e,p="SshSignature"===l?"SSH Key Fingerprint:":"GPG Key ID:",j="SshSignature"===l?"SSH":"GPG";return t[0]!==x||t[1]!==n||t[2]!==p||t[3]!==j||t[4]!==y||t[5]!==d||t[6]!==c||t[7]!==h||t[8]!==m?(i=(0,s.jsx)("div",{"data-testid":"signed-commit-footer",className:"d-flex",children:(0,s.jsx)("div",{className:"SignedCommitFooter-module__footerContent--Zu2A_",children:d&&c?(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)("div",{className:"pt-3 pb-3",children:(0,s.jsxs)("div",{className:"d-flex",children:[(0,s.jsx)(_.r,{src:c.avatar_url,size:20,className:"mr-2 ml-3"}),(0,s.jsxs)("div",{className:"flex-1",children:[(0,s.jsx)(o.A,{href:`/${c.login}`,className:"SignedCommitFooter-module__Link--uRCMq",children:c.login}),(0,s.jsxs)("span",{children:["'s contribution has been verified via ",j," key."]})]})]})}),(0,s.jsxs)("div",{className:"bgColor-attention-muted p-3 d-flex",children:[(0,s.jsx)(f.A,{icon:u.InfoIcon,className:"mr-2"}),"We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed."]})]}):(0,s.jsxs)(s.Fragment,{children:[c&&c.login?(0,s.jsx)("div",{"data-testid":"github-user-data",className:"pl-3 pr-3 pt-3",children:(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(_.r,{src:c.avatar_url,size:20,className:"mr-2"}),(0,s.jsx)(o.A,{href:`/${c.login}`,className:"SignedCommitFooter-module__Link_1--teVEy",children:c.login})]})}):(0,s.jsx)(s.Fragment,{}),(0,s.jsxs)("div",{className:"p-3 flex-column",children:[n&&(0,s.jsxs)("div",{children:[p," ",(0,s.jsx)("span",{className:"bgColor-muted",children:n})]}),m&&(0,s.jsxs)("div",{children:["Verified"," ",(0,s.jsx)(g.A,{datetime:m,threshold:"PT0S",year:"numeric",hour:"2-digit",minute:"2-digit"})]}),n&&(x||y)&&(0,s.jsxs)("div",{className:"pt-1 pb-1",children:[x&&(0,s.jsx)(r.A,{variant:"accent",className:"mr-1",children:"Expired"}),y&&(0,s.jsx)(r.A,{variant:"attention",children:"Revoked"})]}),h]})]})})}),t[0]=x,t[1]=n,t[2]=p,t[3]=j,t[4]=y,t[5]=d,t[6]=c,t[7]=h,t[8]=m,t[9]=i):i=t[9],i}try{x.displayName||(x.displayName="SignedCommitFooter")}catch{}let y="SmimeCommitFooter-module__sectionHeading--j0V2k",p="SmimeCommitFooter-module__attributeLabel--VeFZX",j="SmimeCommitFooter-module__attributeValue--Zz6ai";function b(e){let i,t,r,n,o,l,c,m,d,h,u,f,_,x=(0,a.c)(30),{subject:b,issuer:v,signingLinkComponent:S,verifiedAt:N}=e;return b.organization&&b.organization_unit?f="O/OU":b.organization?f="O":b.organization_unit&&(f="OU"),v.organization&&v.organization_unit?_="O/OU":v.organization?_="O":v.organization_unit&&(_="OU"),x[0]===Symbol.for("react.memo_cache_sentinel")?(i=(0,s.jsx)("span",{className:y,children:"Certificate subject"}),x[0]=i):i=x[0],x[1]!==b.common_name?(t=b.common_name&&(0,s.jsxs)("tr",{children:[(0,s.jsx)("td",{className:p,children:"CN"}),(0,s.jsx)("td",{className:j,children:b.common_name})]}),x[1]=b.common_name,x[2]=t):t=x[2],x[3]!==b.email_address?(r=b.email_address&&(0,s.jsxs)("tr",{children:[(0,s.jsx)("td",{className:p,children:"emailAddress"}),(0,s.jsx)("td",{className:j,children:b.email_address})]}),x[3]=b.email_address,x[4]=r):r=x[4],x[5]!==b.organization||x[6]!==b.organization_unit||x[7]!==f?(n=f&&(0,s.jsxs)("tr",{children:[(0,s.jsx)("td",{className:p,children:f}),(0,s.jsxs)("td",{children:[b.organization,"O/OU"===f&&"/",b.organization_unit]})]}),x[5]=b.organization,x[6]=b.organization_unit,x[7]=f,x[8]=n):n=x[8],x[9]!==t||x[10]!==r||x[11]!==n?(o=(0,s.jsxs)("table",{className:"mb-1",children:[t,r,n]}),x[9]=t,x[10]=r,x[11]=n,x[12]=o):o=x[12],x[13]===Symbol.for("react.memo_cache_sentinel")?(l=(0,s.jsx)("span",{className:y,children:"Certificate issuer"}),x[13]=l):l=x[13],x[14]!==v.common_name?(c=v.common_name&&(0,s.jsxs)("tr",{children:[(0,s.jsx)("td",{className:p,children:"CN"}),(0,s.jsx)("td",{children:v.common_name})]}),x[14]=v.common_name,x[15]=c):c=x[15],x[16]!==v.organization||x[17]!==v.organization_unit||x[18]!==_?(m=_&&(0,s.jsxs)("tr",{children:[(0,s.jsx)("td",{className:p,children:_}),(0,s.jsxs)("td",{children:[v.organization,"O/OU"===_&&"/",v.organization_unit]})]}),x[16]=v.organization,x[17]=v.organization_unit,x[18]=_,x[19]=m):m=x[19],x[20]!==c||x[21]!==m?(d=(0,s.jsxs)("table",{className:"mb-1",children:[c,m]}),x[20]=c,x[21]=m,x[22]=d):d=x[22],x[23]!==N?(h=N&&(0,s.jsxs)("div",{children:["Verified"," ",(0,s.jsx)(g.A,{datetime:N,threshold:"PT0S",year:"numeric",hour:"2-digit",minute:"2-digit"})]}),x[23]=N,x[24]=h):h=x[24],x[25]!==S||x[26]!==h||x[27]!==o||x[28]!==d?(u=(0,s.jsx)("div",{"data-testid":"smime-commit-footer",className:"d-flex",children:(0,s.jsxs)("div",{className:"SmimeCommitFooter-module__smimeDetailsContent--WiN02",children:[i,o,l,d,h,S]})}),x[25]=S,x[26]=h,x[27]=o,x[28]=d,x[29]=u):u=x[29],u}try{b.displayName||(b.displayName="SmimeCommitFooter")}catch{}function v(e){var i;let t,r,n,c,m,d,g=(0,a.c)(34),{ariaLabel:f,hasSignature:_,isOpen:y,onDismiss:p,signature:j,verificationStatus:v}=e;g[0]!==j.helpUrl?(i=j.helpUrl,t={footerLabel:"Learn about vigilant mode",footerUrl:`${i}/github/authenticating-to-github/displaying-verification-statuses-for-all-of-your-commits`},g[0]=j.helpUrl,g[1]=t):t=g[1];let{footerLabel:S,footerUrl:N}=t;g[2]!==j.signatureVerificationReason?(r=j.signatureVerificationReason.toUpperCase(),g[2]=j.signatureVerificationReason,g[3]=r):r=g[3];let k=r,C=j.signedByGitHub;g[4]!==v?(n="unverified"===v?{icon:u.UnverifiedIcon,icon_color:"fg.muted"}:{icon:u.VerifiedIcon,icon_color:"success.fg"},g[4]=v,g[5]=n):n=g[5];let{icon:T,icon_color:w}=n;g[6]!==j.signerAvatarUrl||g[7]!==j.signerLogin||g[8]!==C||g[9]!==v?(c=void 0,"unverified"===v||C||(c={avatar_url:j.signerAvatarUrl,login:j.signerLogin}),g[6]=j.signerAvatarUrl,g[7]=j.signerLogin,g[8]=C,g[9]=v,g[10]=c):c=g[10],g[11]!==S||g[12]!==N?(m=(0,s.jsx)(o.A,{href:N,"data-testid":"signature-link",className:"Link--inTextBlock",children:S}),g[11]=S,g[12]=N,g[13]=m):m=g[13];let E=m;return g[14]!==f||g[15]!==_||g[16]!==T||g[17]!==w||g[18]!==y||g[19]!==p||g[20]!==k||g[21]!==j.isViewer||g[22]!==j.keyExpired||g[23]!==j.keyId||g[24]!==j.keyRevoked||g[25]!==j.signatureCertificateIssuer||g[26]!==j.signatureCertificateSubject||g[27]!==j.signatureType||g[28]!==j.verifiedAt||g[29]!==E||g[30]!==C||g[31]!==c||g[32]!==v?(d=y?(0,s.jsx)(l.l,{onClose:p,title:v,width:"small",renderHeader:e=>{let{dialogLabelId:i,dialogDescriptionId:t}=e;return(0,s.jsxs)("div",{"data-testid":"signed-commit-dialog",className:"SignedCommitDialog-module__dialogHeaderContainer--xEFRY",children:[(0,s.jsx)(l.l.Title,{id:i,className:"sr-only",children:f??v}),(0,s.jsx)(h,{reason:k,icon:T,iconColor:w,id:t,verificationStatus:v,isViewer:j.isViewer,hasSignature:_,signatureType:j.signatureType,signedByGitHub:C,keyExpired:j.keyExpired,keyRevoked:j.keyRevoked}),(0,s.jsx)(l.l.CloseButton,{onClose:p})]})},renderBody:()=>(0,s.jsx)(l.l.Body,{className:"p-0",children:"GpgSignature"===j.signatureType||"SshSignature"===j.signatureType?(0,s.jsx)(x,{keyHex:j.keyId,signatureType:j.signatureType,signer:c,verifiedAt:j.verifiedAt,showPartiallyVerifiedMessage:"partially_verified"===v,signingLinkComponent:E,keyExpired:j.keyExpired,keyRevoked:j.keyRevoked}):"SmimeSignature"===j.signatureType&&j.signatureCertificateSubject&&j.signatureCertificateIssuer?(0,s.jsx)(b,{issuer:j.signatureCertificateIssuer,subject:j.signatureCertificateSubject,signingLinkComponent:E,verifiedAt:j.verifiedAt}):(0,s.jsx)("div",{className:"d-flex",children:(0,s.jsx)("div",{className:"SignedCommitDialog-module__signatureLinkContent--ORyrR",children:E})})}),className:"overflow-y-auto bgColor-default "}):null,g[14]=f,g[15]=_,g[16]=T,g[17]=w,g[18]=y,g[19]=p,g[20]=k,g[21]=j.isViewer,g[22]=j.keyExpired,g[23]=j.keyId,g[24]=j.keyRevoked,g[25]=j.signatureCertificateIssuer,g[26]=j.signatureCertificateSubject,g[27]=j.signatureType,g[28]=j.verifiedAt,g[29]=E,g[30]=C,g[31]=c,g[32]=v,g[33]=d):d=g[33],d}try{v.displayName||(v.displayName="SignedCommitDialog")}catch{}var S=t(96540);function N(e){let i,t,r,o,l,c,m,d=(0,a.c)(20),{hasSignature:h,verificationStatus:u,signature:g,commitOid:f,badgeSize:_}=e,x=void 0===_?"small":_,[y,p]=(0,S.useState)(!1),j=(0,S.useRef)(null);if(!u||!g){let e;return d[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)(n.A,{"aria-label":"Verification status not available",direction:"n",noDelay:!0,children:(0,s.jsx)(C,{verificationStatus:"error",labelProps:{size:"small"}})}),d[0]=e):e=d[0],e}if("unsigned"===u){let e;return d[1]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)(s.Fragment,{}),d[1]=e):e=d[1],e}d[2]===Symbol.for("react.memo_cache_sentinel")?(i=()=>p(!0),d[2]=i):i=d[2],d[3]===Symbol.for("react.memo_cache_sentinel")?(t={cursor:"pointer"},d[3]=t):t=d[3],d[4]!==x?(r={as:"button",onClick:i,ref:j,size:x,sx:t},d[4]=x,d[5]=r):r=d[5];let b=r;d[6]!==b?(o={...b},d[6]=b,d[7]=o):o=d[7],d[8]!==o||d[9]!==u?(l=(0,s.jsx)(C,{labelProps:o,verificationStatus:u}),d[8]=o,d[9]=u,d[10]=l):l=d[10];let N=l;return d[11]!==f||d[12]!==h||d[13]!==y||d[14]!==g||d[15]!==u?(c=y&&(0,s.jsx)(v,{isOpen:y,onDismiss:()=>{p(!1),setTimeout(()=>{j.current?.focus()},0)},verificationStatus:u,signature:g,hasSignature:h,ariaLabel:`${u.replace("_"," ")}: ${f.slice(0,7)}`}),d[11]=f,d[12]=h,d[13]=y,d[14]=g,d[15]=u,d[16]=c):c=d[16],d[17]!==c||d[18]!==N?(m=(0,s.jsxs)(s.Fragment,{children:[N,c]}),d[17]=c,d[18]=N,d[19]=m):m=d[19],m}let k={verified:{label:"Verified",variant:"success"},unverified:{label:"Unverified",variant:"attention"},partially_verified:{label:"Partially verified",variant:"success"},error:{label:"Verification error",variant:"secondary"}},C=e=>{let i,t=(0,a.c)(6),{ref:n,verificationStatus:o,labelProps:l}=e,c=k[o];if(!c){let e;return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,s.jsx)(s.Fragment,{}),t[0]=e):e=t[0],e}let m=c.variant;return t[1]!==c.label||t[2]!==l||t[3]!==n||t[4]!==m?(i=(0,s.jsx)(r.A,{variant:m,...l,ref:n,children:c.label}),t[1]=c.label,t[2]=l,t[3]=n,t[4]=m,t[5]=i):i=t[5],i};C.displayName="VerificationLabel";try{N.displayName||(N.displayName="SignedCommitBadge")}catch{}}}]); +//# sourceMappingURL=44185-99d6eb59201f.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/4712-4012ead9381a.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/4712-4012ead9381a.js" new file mode 100644 index 0000000..aa26080 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/4712-4012ead9381a.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:4712-4012ead9381a.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[4712],{4712:(t,e,i)=>{i.d(e,{ak:()=>N});var s,a,n,r,o,h,l,u,m,d,c,f,g,y,w,p,b,T=function(t,e,i,s,a){if("m"===s)throw TypeError("Private method is not writable");if("a"===s&&!a)throw TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!a:!e.has(t))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===s?a.call(t,i):a?a.value=i:e.set(t,i),i},D=function(t,e,i,s){if("a"===i&&!s)throw TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!s:!e.has(t))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?s:"a"===i?s.call(t):s?s.value:e.get(t)};let ListFormatPonyFill=class ListFormatPonyFill{formatToParts(t){let e=[];for(let i of t)e.push({type:"element",value:i}),e.push({type:"literal",value:", "});return e.slice(0,-1)}};let v="u">typeof Intl&&Intl.ListFormat||ListFormatPonyFill,M=[["years","year"],["months","month"],["weeks","week"],["days","day"],["hours","hour"],["minutes","minute"],["seconds","second"],["milliseconds","millisecond"]],A={minimumIntegerDigits:2};let DurationFormat=class DurationFormat{constructor(t,e={}){s.set(this,void 0);let i=String(e.style||"short");"long"!==i&&"short"!==i&&"narrow"!==i&&"digital"!==i&&(i="short");let a="digital"===i?"numeric":i;const n=e.hours||a;a="2-digit"===n?"numeric":n;const r=e.minutes||a;a="2-digit"===r?"numeric":r;const o=e.seconds||a;a="2-digit"===o?"numeric":o;const h=e.milliseconds||a;T(this,s,{locale:t,style:i,years:e.years||"digital"===i?"short":i,yearsDisplay:"always"===e.yearsDisplay?"always":"auto",months:e.months||"digital"===i?"short":i,monthsDisplay:"always"===e.monthsDisplay?"always":"auto",weeks:e.weeks||"digital"===i?"short":i,weeksDisplay:"always"===e.weeksDisplay?"always":"auto",days:e.days||"digital"===i?"short":i,daysDisplay:"always"===e.daysDisplay?"always":"auto",hours:n,hoursDisplay:"always"===e.hoursDisplay||"digital"===i?"always":"auto",minutes:r,minutesDisplay:"always"===e.minutesDisplay||"digital"===i?"always":"auto",seconds:o,secondsDisplay:"always"===e.secondsDisplay||"digital"===i?"always":"auto",milliseconds:h,millisecondsDisplay:"always"===e.millisecondsDisplay?"always":"auto"},"f")}resolvedOptions(){return D(this,s,"f")}formatToParts(t){let e=[],i=D(this,s,"f"),a=i.style,n=i.locale;for(let[s,r]of M){let o=t[s];if("auto"===i[`${s}Display`]&&!o)continue;let h=i[s],l="2-digit"===h?A:"numeric"===h?{}:{style:"unit",unit:r,unitDisplay:h},u=new Intl.NumberFormat(n,l).format(o);"months"===s&&("narrow"===h||"narrow"===a&&u.endsWith("m"))&&(u=u.replace(/(\d+)m$/,"$1mo")),e.push(u)}return new v(n,{type:"unit",style:"digital"===a?"short":a}).formatToParts(e)}format(t){return this.formatToParts(t).map(t=>t.value).join("")}};s=new WeakMap;let C=/^[-+]?P(?:(\d+)Y)?(?:(\d+)M)?(?:(\d+)W)?(?:(\d+)D)?(?:T(?:(\d+)H)?(?:(\d+)M)?(?:(\d+)S)?)?$/,k=["year","month","week","day","hour","minute","second","millisecond"];let Duration=class Duration{constructor(t=0,e=0,i=0,s=0,a=0,n=0,r=0,o=0){this.years=t,this.months=e,this.weeks=i,this.days=s,this.hours=a,this.minutes=n,this.seconds=r,this.milliseconds=o,this.years||(this.years=0),this.sign||(this.sign=Math.sign(this.years)),this.months||(this.months=0),this.sign||(this.sign=Math.sign(this.months)),this.weeks||(this.weeks=0),this.sign||(this.sign=Math.sign(this.weeks)),this.days||(this.days=0),this.sign||(this.sign=Math.sign(this.days)),this.hours||(this.hours=0),this.sign||(this.sign=Math.sign(this.hours)),this.minutes||(this.minutes=0),this.sign||(this.sign=Math.sign(this.minutes)),this.seconds||(this.seconds=0),this.sign||(this.sign=Math.sign(this.seconds)),this.milliseconds||(this.milliseconds=0),this.sign||(this.sign=Math.sign(this.milliseconds)),this.blank=0===this.sign}abs(){return new Duration(Math.abs(this.years),Math.abs(this.months),Math.abs(this.weeks),Math.abs(this.days),Math.abs(this.hours),Math.abs(this.minutes),Math.abs(this.seconds),Math.abs(this.milliseconds))}static from(t){var e;if("string"==typeof t){let i=String(t).trim(),s=i.startsWith("-")?-1:1,a=null==(e=i.match(C))?void 0:e.slice(1).map(t=>(Number(t)||0)*s);return a?new Duration(...a):new Duration}if("object"==typeof t){let{years:e,months:i,weeks:s,days:a,hours:n,minutes:r,seconds:o,milliseconds:h}=t;return new Duration(e,i,s,a,n,r,o,h)}throw RangeError("invalid duration")}static compare(t,e){let i=Date.now(),s=Math.abs(E(i,Duration.from(t)).getTime()-i),a=Math.abs(E(i,Duration.from(e)).getTime()-i);return s>a?-1:+(s=900&&(l+=Math.round(u/1e3)),(l||h||o||r||n||a||s)&&(u=0),l>=55&&(h+=Math.round(l/60)),(h||o||r||n||a||s)&&(l=0),h>=55&&(o+=Math.round(h/60)),(o||r||n||a||s)&&(h=0),r&&o>=12&&(r+=Math.round(o/24)),!r&&o>=21&&(r+=Math.round(o/24)),(r||n||a||s)&&(o=0);let m=e.getFullYear(),d=e.getMonth(),c=e.getDate();if(r>=27||s+a+r){let t=new Date(e);t.setDate(1),t.setMonth(d+a*i+1),t.setDate(0);let o=Math.max(0,c-t.getDate()),h=new Date(e);h.setFullYear(m+s*i),h.setDate(c-o),h.setMonth(d+a*i),h.setDate(c-o+r*i);let l=h.getFullYear()-e.getFullYear(),u=h.getMonth()-e.getMonth(),f=Math.abs(Math.round((Number(h)-Number(e))/864e5))+o,g=Math.abs(12*l+u);f<27?(r>=6?(n+=Math.round(r/7),r=0):r=f,a=s=0):g<=11?(a=g,s=0):(a=0,s=l*i),(a||s)&&(r=0)}return s&&(a=0),n>=4&&(a+=Math.round(n/4)),(a||s)&&(n=0),r&&n&&!a&&!s&&(n+=Math.round(r/7),r=0),new Duration(s*i,a*i,n*i,r*i,o*i,h*i,l*i,u*i)}var F=function(t,e,i,s){if("a"===i&&!s)throw TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!s:!e.has(t))throw TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?s:"a"===i?s.call(t):s?s.value:e.get(t)},S=function(t,e,i,s,a){if("m"===s)throw TypeError("Private method is not writable");if("a"===s&&!a)throw TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!a:!e.has(t))throw TypeError("Cannot write private member to an object whose class did not declare it");return"a"===s?a.call(t,i):a?a.value=i:e.set(t,i),i};let x=globalThis.HTMLElement||null,I=new Duration,_=new Duration(0,0,0,0,0,1);let RelativeTimeUpdatedEvent=class RelativeTimeUpdatedEvent extends Event{constructor(t,e,i,s){super("relative-time-updated",{bubbles:!0,composed:!0}),this.oldText=t,this.newText=e,this.oldTitle=i,this.newTitle=s}};function Z(t){if(!t.date)return 1/0;if("duration"===t.format||"elapsed"===t.format){let e=t.precision;if("second"===e)return 1e3;if("minute"===e)return 6e4}let e=Math.abs(Date.now()-t.date.getTime());return e<6e4?1e3:e<36e5?6e4:36e5}let R=new class{constructor(){this.elements=new Set,this.time=1/0,this.timer=-1}observe(t){if(this.elements.has(t))return;this.elements.add(t);let e=t.date;if(e&&e.getTime()){let e=Z(t),i=Date.now()+e;ithis.update(),e),this.time=i)}}unobserve(t){this.elements.has(t)&&this.elements.delete(t)}update(){if(clearTimeout(this.timer),!this.elements.size)return;let t=1/0;for(let e of this.elements)t=Math.min(t,Z(e)),e.update();this.time=Math.min(36e5,t),this.timer=setTimeout(()=>this.update(),this.time),this.time+=Date.now()}};let relative_time_element_RelativeTimeElement=class relative_time_element_RelativeTimeElement extends x{constructor(){super(...arguments),a.add(this),n.set(this,!1),r.set(this,!1),h.set(this,this.shadowRoot?this.shadowRoot:this.attachShadow?this.attachShadow({mode:"open"}):this),b.set(this,null)}static define(t="relative-time",e=customElements){return e.define(t,this),this}get timeZone(){var t;return(null==(t=this.closest("[time-zone]"))?void 0:t.getAttribute("time-zone"))||this.ownerDocument.documentElement.getAttribute("time-zone")||void 0}static get observedAttributes(){return["second","minute","hour","weekday","day","month","year","time-zone-name","prefix","threshold","tense","precision","format","format-style","no-title","datetime","lang","title","aria-hidden","time-zone"]}get onRelativeTimeUpdated(){return F(this,b,"f")}set onRelativeTimeUpdated(t){F(this,b,"f")&&this.removeEventListener("relative-time-updated",F(this,b,"f")),S(this,b,"object"==typeof t||"function"==typeof t?t:null,"f"),"function"==typeof t&&this.addEventListener("relative-time-updated",t)}get second(){let t=this.getAttribute("second");if("numeric"===t||"2-digit"===t)return t}set second(t){this.setAttribute("second",t||"")}get minute(){let t=this.getAttribute("minute");if("numeric"===t||"2-digit"===t)return t}set minute(t){this.setAttribute("minute",t||"")}get hour(){let t=this.getAttribute("hour");if("numeric"===t||"2-digit"===t)return t}set hour(t){this.setAttribute("hour",t||"")}get weekday(){let t=this.getAttribute("weekday");return"long"===t||"short"===t||"narrow"===t?t:"datetime"===this.format&&""!==t?this.formatStyle:void 0}set weekday(t){this.setAttribute("weekday",t||"")}get day(){var t;let e=null!=(t=this.getAttribute("day"))?t:"numeric";if("numeric"===e||"2-digit"===e)return e}set day(t){this.setAttribute("day",t||"")}get month(){let t=this.format,e=this.getAttribute("month");if(""!==e&&(null!=e||(e="datetime"===t?this.formatStyle:"short"),"numeric"===e||"2-digit"===e||"short"===e||"long"===e||"narrow"===e))return e}set month(t){this.setAttribute("month",t||"")}get year(){var t;let e=this.getAttribute("year");return"numeric"===e||"2-digit"===e?e:this.hasAttribute("year")||new Date().getUTCFullYear()===(null==(t=this.date)?void 0:t.getUTCFullYear())?void 0:"numeric"}set year(t){this.setAttribute("year",t||"")}get timeZoneName(){let t=this.getAttribute("time-zone-name");if("long"===t||"short"===t||"shortOffset"===t||"longOffset"===t||"shortGeneric"===t||"longGeneric"===t)return t}set timeZoneName(t){this.setAttribute("time-zone-name",t||"")}get prefix(){var t;return null!=(t=this.getAttribute("prefix"))?t:"datetime"===this.format?"":"on"}set prefix(t){this.setAttribute("prefix",t)}get threshold(){let t=this.getAttribute("threshold");return t&&C.test(t)?t:"P30D"}set threshold(t){this.setAttribute("threshold",t)}get tense(){let t=this.getAttribute("tense");return"past"===t?"past":"future"===t?"future":"auto"}set tense(t){this.setAttribute("tense",t)}get precision(){let t=this.getAttribute("precision");return k.includes(t)?t:"micro"===this.format?"minute":"second"}set precision(t){this.setAttribute("precision",t)}get format(){let t=this.getAttribute("format");return"datetime"===t?"datetime":"relative"===t?"relative":"duration"===t?"duration":"micro"===t?"micro":"elapsed"===t?"elapsed":"auto"}set format(t){this.setAttribute("format",t)}get formatStyle(){let t=this.getAttribute("format-style");if("long"===t)return"long";if("short"===t)return"short";if("narrow"===t)return"narrow";let e=this.format;return"elapsed"===e||"micro"===e?"narrow":"datetime"===e?"short":"long"}set formatStyle(t){this.setAttribute("format-style",t)}get noTitle(){return this.hasAttribute("no-title")}set noTitle(t){this.toggleAttribute("no-title",t)}get datetime(){return this.getAttribute("datetime")||""}set datetime(t){this.setAttribute("datetime",t)}get date(){let t=Date.parse(this.datetime);return Number.isNaN(t)?null:new Date(t)}set date(t){this.datetime=(null==t?void 0:t.toISOString())||""}connectedCallback(){this.update()}disconnectedCallback(){R.unobserve(this)}attributeChangedCallback(t,e,i){e!==i&&("title"===t&&S(this,n,null!==i&&(this.date&&F(this,a,"m",l).call(this,this.date))!==i,"f"),F(this,r,"f")||"title"===t&&F(this,n,"f")||S(this,r,(async()=>{await Promise.resolve(),this.update(),S(this,r,!1,"f")})(),"f"))}update(){let t=F(this,h,"f").textContent||this.textContent||"",e=this.getAttribute("title")||"",i=e,s=this.date;if("u"=0?m*a:0,d>=1?(u-12*m)*a:0,0,d>=3?(l-30*u)*a:0,d>=4?(h-24*l)*a:0,d>=5?(o-60*h)*a:0,d>=6?(r-60*o)*a:0,d>=7?(n-1e3*r)*a:0)}(s,this.precision,r),b=F(this,a,"m",u).call(this,o),T=t,D=F(this,a,"m",p).call(this,b);(T=D?F(this,a,"m",y).call(this,s):"duration"===b?F(this,a,"m",m).call(this,o):"relative"===b?F(this,a,"m",d).call(this,o):F(this,a,"m",c).call(this,s))?F(this,a,"m",w).call(this,T):this.shadowRoot===F(this,h,"f")&&this.textContent&&F(this,a,"m",w).call(this,this.textContent),(T!==t||i!==e)&&this.dispatchEvent(new RelativeTimeUpdatedEvent(t,T,e,i)),"relative"===b||"duration"===b||D&&(F(this,a,"m",f).call(this,s)||F(this,a,"m",g).call(this,s))?R.observe(this):R.unobserve(this)}};n=new WeakMap,r=new WeakMap,h=new WeakMap,b=new WeakMap,a=new WeakSet,o=function(){var t;let e=(null==(t=this.closest("[lang]"))?void 0:t.getAttribute("lang"))||this.ownerDocument.documentElement.getAttribute("lang");try{return new Intl.Locale(null!=e?e:"").toString()}catch(t){return"default"}},l=function(t){return new Intl.DateTimeFormat(F(this,a,"a",o),{day:"numeric",month:"short",year:"numeric",hour:"numeric",minute:"2-digit",timeZoneName:"short",timeZone:this.timeZone}).format(t)},u=function(t){let e=this.format;if("datetime"===e)return"datetime";if("duration"===e||"elapsed"===e||"micro"===e)return"duration";if(("auto"===e||"relative"===e)&&"u">typeof Intl&&Intl.RelativeTimeFormat){let e=this.tense;if("past"===e||"future"===e||1===Duration.compare(t,this.threshold))return"relative"}return"datetime"},m=function(t){let e=F(this,a,"a",o),i=this.format,s=this.formatStyle,n=this.tense,r=I;"micro"===i?(t=U(t),r=_,0===t.months&&("past"===this.tense&&-1!==t.sign||"future"===this.tense&&1!==t.sign)&&(t=_)):("past"===n&&-1!==t.sign||"future"===n&&1!==t.sign)&&(t=r);let h=`${this.precision}sDisplay`;return t.blank?r.toLocaleString(e,{style:s,[h]:"always"}):t.abs().toLocaleString(e,{style:s})},d=function(t){let e=new Intl.RelativeTimeFormat(F(this,a,"a",o),{numeric:"auto",style:this.formatStyle}),i=this.tense;"future"===i&&1!==t.sign&&(t=I),"past"===i&&-1!==t.sign&&(t=I);let[s,n]=function(t){let e=U(t,void 0);if(e.blank)return[0,"second"];for(let t of k){if("millisecond"===t)continue;let i=e[`${t}s`];if(i)return[i,t]}return[0,"second"]}(t);return"second"===n&&s<10?e.format(0,"millisecond"===this.precision?"second":this.precision):e.format(s,n)},c=function(t){let e=new Intl.DateTimeFormat(F(this,a,"a",o),{second:this.second,minute:this.minute,hour:this.hour,weekday:this.weekday,day:this.day,month:this.month,year:this.year,timeZoneName:this.timeZoneName,timeZone:this.timeZone});return`${this.prefix} ${e.format(t)}`.trim()},f=function(t){let e=new Date,i=new Intl.DateTimeFormat(F(this,a,"a",o),{timeZone:this.timeZone,year:"numeric",month:"2-digit",day:"2-digit"});return i.format(e)===i.format(t)},g=function(t){let e=new Date,i=new Intl.DateTimeFormat(F(this,a,"a",o),{timeZone:this.timeZone,year:"numeric"});return i.format(e)===i.format(t)},y=function(t){let e={hour:"numeric",minute:"2-digit",timeZoneName:"short",timeZone:this.timeZone};if(F(this,a,"m",f).call(this,t)){let i=new Intl.RelativeTimeFormat(F(this,a,"a",o),{numeric:"auto"}).format(0,"day");i=i.charAt(0).toLocaleUpperCase(F(this,a,"a",o))+i.slice(1);let s=new Intl.DateTimeFormat(F(this,a,"a",o),e).format(t);return`${i} ${s}`}let i=Object.assign(Object.assign({},e),{day:"numeric",month:"short"});return F(this,a,"m",g).call(this,t)?new Intl.DateTimeFormat(F(this,a,"a",o),i).format(t):new Intl.DateTimeFormat(F(this,a,"a",o),Object.assign(Object.assign({},i),{year:"numeric"})).format(t)},w=function(t){if(this.hasAttribute("aria-hidden")&&"true"===this.getAttribute("aria-hidden")){let e=document.createElement("span");e.setAttribute("aria-hidden","true"),e.textContent=t,F(this,h,"f").replaceChildren(e)}else F(this,h,"f").textContent=t},p=function(t){var e;return"duration"!==t&&("true"===this.ownerDocument.documentElement.getAttribute("data-prefers-absolute-time")||(null==(e=this.ownerDocument.body)?void 0:e.getAttribute("data-prefers-absolute-time"))==="true")};let P="u">typeof globalThis?globalThis:window;try{P.RelativeTimeElement=relative_time_element_RelativeTimeElement.define()}catch(t){if(!(P.DOMException&&t instanceof DOMException&&"NotSupportedError"===t.name)&&!(t instanceof ReferenceError))throw t}let N=relative_time_element_RelativeTimeElement}}]); +//# sourceMappingURL=4712-e0d396bbdabc.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/4717.983f4471c2910178a0ff.module.css" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/4717.983f4471c2910178a0ff.module.css" new file mode 100644 index 0000000..48fc292 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/4717.983f4471c2910178a0ff.module.css" @@ -0,0 +1,2 @@ +@media(min-width:48rem){.GlobalCreateMenu-module__hideOnSmall--iImkl{display:none}}.GlobalCreateMenu-module__actionMenuButton--fOjh3{border:solid var(--borderWidth-thin) var(--control-borderColor-rest);gap:var(--base-size-4,.125rem);padding:var(--control-medium-paddingInline-condensed)}.TransactionalMessageBanner-module__squareBanner--dYptq{border-radius:0}.styles-module__appHeader--NfDnF{background:var(--bgColor-inset);box-shadow:inset 0 calc(var(--borderWidth-thin, 1px)*-1) var(--borderColor-default);color:var(--fgColor-default)}.styles-module__left--jQ3Pi{padding-right:var(--base-size-8)}.styles-module__right--zdnrg{padding-left:var(--base-size-8)}.styles-module__withLocalNavigation--Plcqw{padding-bottom:var(--base-size-4)}.styles-module__appHeaderButton--lIuw9{border:solid var(--borderWidth-thin) var(--control-borderColor-rest)}.styles-module__itemDivider--ECUto{background:var(--control-borderColor-rest);height:var(--base-size-20);margin-inline:var(--base-size-4);width:var(--borderWidth-thin)}.styles-module__center--qh40Y{flex:1;padding-inline:0}.styles-module__hideTopNav--H7dFl{display:none}@media(max-width:1024px){.styles-module__center--qh40Y{justify-content:flex-end}}.ErrorPage-module__Heading--ucgNq{align-items:center;display:flex;flex-direction:column;justify-content:center;min-height:100%;min-width:100%}.ErrorPage-module__Status--ITNSj{font-size:var(--text-title-size-large);font-weight:var(--base-text-weight-semibold)}.ErrorPage-module__Message--CAZL0{font-size:var(--text-title-size-medium);padding-top:var(--base-size-8)}.GlobalNavBar-module__noBreadcrumbs--fKsj_{justify-content:flex-end}.styles-module__appHeaderHome--FoS5_{border-radius:50%;color:var(--fgColor-default);margin-left:var(--base-size-4);outline-offset:var(--base-size-2)}.styles-module__contextRegion--C8iwV{height:var(--base-size-32)}.styles-module__contextCrumb--ZChjZ{align-items:center;border-radius:var(--borderRadius-medium);color:var(--fgColor-default);display:inline-flex;height:100%;line-height:var(--base-size-24);min-width:3ch;padding-block:var(--base-size-4);padding-inline:var(--base-size-6)}.styles-module__contextCrumb--ZChjZ:hover{background:var(--control-transparent-bgColor-hover);text-decoration:none}.styles-module__contextCrumb--ZChjZ:active{background:var(--control-transparent-bgColor-active);text-decoration:none}.styles-module__repoPickerCrumb--v8wpS{align-items:center;border-radius:var(--borderRadius-medium);border-width:0;color:var(--fgColor-default);display:inline-block;font-size:var(--text-body-size-medium);font-weight:var(--base-text-weight-semibold);height:100%;min-width:3ch;padding:var(--base-size-4)}.styles-module__repoPickerCrumb--v8wpS [data-component=text]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.styles-module__repoPickerCrumb--v8wpS svg{height:12px}.styles-module__crumbIcon--Y1Nyb{margin-bottom:var(--base-size-2);margin-right:var(--base-size-4)}.styles-module__repoPickerDropdownButton--XeZaP{min-width:var(--base-size-20);vertical-align:top;width:var(--base-size-20)}@media(pointer:coarse){.styles-module__repoPickerDropdownButton--XeZaP{min-width:var(--base-size-24);width:var(--base-size-24)}}.styles-module__repoPickerDropdownButton--XeZaP:hover{background:var(--control-transparent-bgColor-hover)}.styles-module__repoPickerDropdownButton--XeZaP:active{background:var(--control-transparent-bgColor-active)}.styles-module__contextCrumbStatic--FHFF4{cursor:default}.styles-module__contextCrumbStatic--FHFF4:hover{background:#0000;text-decoration:none}.styles-module__contextCrumbLast--TwUMh{display:inline-block;font-weight:var(--base-text-weight-semibold);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.styles-module__trailingIcon--Iijbz{margin-left:var(--base-size-4);vertical-align:text-bottom}.styles-module__notificationIndicator--Xi7hr{position:relative}.styles-module__notificationIndicator--Xi7hr:before{background:var(--fgColor-accent);border-radius:50%;box-shadow:0 0 0 calc(var(--base-size-4, 4px)/2) var(--bgColor-inset);content:"";display:block;height:var(--base-size-8,8px);position:absolute;right:calc(var(--base-size-4)/-2);top:calc(var(--base-size-4)/-2);width:var(--base-size-8,8px)}.GlobalCopilotMenu-module__proLabel--dtXSW{border-color:var(--borderColor-done-emphasis)}.CopilotItems-module__AgentsMenu--zbZ2O{padding-left:var(--base-size-6);padding-right:var(--base-size-6)}.CopilotItems-module__AgentsMenu--zbZ2O [data-component=leadingVisual]{margin-right:var(--base-size-4)}.CopilotItems-module__AgentsMenu--zbZ2O.CopilotItems-module__hasNotification--mRaxJ:before{background:var(--fgColor-attention);border-radius:50%;box-shadow:0 0 0 calc(var(--base-size-4, 4px)/2);color:#0000;content:"";display:block;height:var(--base-size-8,8px);position:absolute;right:calc(var(--base-size-4)/-2);top:calc(var(--base-size-4)/-2);width:var(--base-size-8,8px)}.CopilotItems-module__CopilotMenu--OthpP{padding-left:var(--base-size-4);padding-right:var(--base-size-8)}.CopilotItems-module__CopilotMenu--OthpP [data-component=buttonContent]{display:none}.Search-module__searchButtonGroup--L3A4O{display:flex}.Search-module__smallSearchButton--VApX0{display:none}.Search-module__searchButton--QvFX2:hover{background-color:var(--bgColor-transparent)}.Search-module__searchPage--tMw7P.Search-module__searchButtonGroup--L3A4O,.Search-module__searchPage--tMw7P.Search-module__searchButtonGroup--L3A4O .Search-module__searchButton--QvFX2,.Search-module__searchPage--tMw7P.Search-module__searchButtonGroup--L3A4O div:has(.Search-module__searchButton--QvFX2){width:100%}.Search-module__searchPage--tMw7P.Search-module__searchButtonGroup--L3A4O .Search-module__searchButton--QvFX2 [data-component=buttonContent]{justify-content:flex-start}.Search-module__kbd--zxNrv{align-items:center;background:var(--bgColor-transparent);border:var(--borderWidth-thin) solid var(--fgColor-muted);border-radius:var(--borderRadius-small);box-shadow:none;color:inherit;display:inline-grid;font-size:var(--text-caption-size,12px);height:var(--base-size-16,16px);justify-content:center;line-height:1;padding:0;vertical-align:text-bottom;width:var(--base-size-16,16px)}@media(max-width:1024px){.Search-module__searchButtonGroup--L3A4O{display:none}.Search-module__smallSearchButton--VApX0{display:flex}.search-suggestions{left:0;position:fixed!important;top:0;width:100vw!important}}.Search-module__hideButtons--kMXP0{display:none}.Search-module__childDialogOpen--uH8PU{position:absolute}.Search-module__placeholder--mA5y1{display:block;line-height:var(--text-body-lineHeight-medium);overflow:hidden;padding-right:var(--base-size-32);pointer-events:none;text-overflow:ellipsis;white-space:nowrap;width:100%}.Search-module__text--Gkpmo{font-weight:var(--text-caption-weight)}.Search-module__value--KxUll{color:var(--fgColor-muted)}.Search-module__filter--Ung89{background-color:var(--bgColor-accent-muted);border-radius:3px;box-shadow:0 0 0 1px var(--bgColor-muted);color:var(--fgColor-accent)}.Search-module__constant--G2TCV{color:var(--color-prettylights-syntax-constant)}.Search-module__entity--dPosN{color:var(--color-prettylights-syntax-entity)}.Search-module__mobileSearchContainer--wbScZ{display:block;padding:var(--base-size-16);padding-top:0}@media(min-width:1012px){.Search-module__mobileSearchContainer--wbScZ{display:none}}.Search-module__mobileSearchContainer--wbScZ.Search-module__withLocalNav--rjIe7{padding-bottom:0;padding-top:var(--base-size-8)}.Search-module__mobileSearchContainer--wbScZ .Search-module__mobileSearch--oLUJ5{display:block;width:100%}@media(min-width:1012px){.Search-module__placeholderButton--PvdNX{padding-left:var(--base-size-6);width:320px}.Search-module__placeholderButton--PvdNX [data-component=buttonContent]{justify-content:flex-start}.Search-module__mobilePlaceholderButton--Zul9E{display:none}}.Search-module__placeholderButtonGroup--FIB8d:has(.Search-module__searchText--PpJCd){background-color:var(--bgColor-default)}.Search-module__searchText--PpJCd{color:var(--fgColor-default);max-width:276px;overflow:hidden;padding-right:0;text-overflow:clip}@media(max-width:1011px){.Search-module__placeholderButtonGroup--FIB8d{display:none}}.GlobalUserNavDrawer-module__Dialog--NKXRq{width:960px}.GlobalUserNavDrawer-module__anchor--ZzsiJ{border-radius:50%;outline-offset:var(--base-size-2)}.GlobalUserNavDrawer-module__container--BxmdD{display:flex;position:relative}.GlobalUserNavDrawer-module__overlay--xnshG{background-color:var(--overlay-backdrop-bgColor);border-radius:var(--borderRadius-large);cursor:pointer;height:100%;left:0;opacity:.75;padding-left:var(--base-size-8);padding-top:var(--base-size-8);pointer-events:none;position:absolute;top:0;width:100%}.LocalNavigation-module__LocalNavigation--PimyI li:has(button) ul{z-index:100!important} +/*# sourceMappingURL=lazy-react-partial-global-nav-bar-d92992704157.js.map*/ \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/47657.e98fcb07af9d6f62d532.module.css" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/47657.e98fcb07af9d6f62d532.module.css" new file mode 100644 index 0000000..dc92a91 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/47657.e98fcb07af9d6f62d532.module.css" @@ -0,0 +1,2 @@ +.ErrorPage-module__Heading--ucgNq{align-items:center;display:flex;flex-direction:column;justify-content:center;min-height:100%;min-width:100%}.ErrorPage-module__Status--ITNSj{font-size:var(--text-title-size-large);font-weight:var(--base-text-weight-semibold)}.ErrorPage-module__Message--CAZL0{font-size:var(--text-title-size-medium);padding-top:var(--base-size-8)}.InfobarPopover-module__Box--qtcHk{border-radius:var(--borderRadius-medium);min-width:250px}.InfobarPopover-module__CircleOcticon--yvGLn{background-color:var(--bgColor-neutral-emphasis);color:var(--fgColor-onEmphasis)}.InfobarPopover-module__success--LF_X5{background-color:var(--bgColor-success-emphasis)}.LinkButton-module__code-view-link-button--thtqc:active:not([disabled]),.LinkButton-module__code-view-link-button--thtqc:focus:not([disabled]),.LinkButton-module__code-view-link-button--thtqc:hover:not([disabled]){-webkit-text-decoration:"none";text-decoration:"none"}.PullRequestLink-module__Link--i17X3{align-items:center;color:var(--fgColor-muted);display:flex;gap:var(--base-size-4)}.PullRequestLink-module__Link--i17X3:hover{color:var(--fgColor-accent)}.BranchInfoBar-module__BranchInfoBarContainer--vaFVP{align-items:center;border:var(--borderWidth-thin) solid var(--borderColor-default);border-radius:var(--borderRadius-medium);flex-direction:row;flex-wrap:wrap;justify-content:space-between;margin-bottom:var(--base-size-16);min-height:50px;padding:var(--base-size-8) var(--base-size-16)}.BranchInfoBar-module__Box--NhDLA{background:var(--bgColor-muted);display:flex;font-size:var(--text-body-size-medium);gap:var(--stack-gap-condensed)}.ScreenReaderHeading-module__userSelectNone--vlUbc{-webkit-user-select:none;user-select:none}.AddFileDropdownButton-module__ActionMenu_Overlay--WxIUs{max-height:55vh;overflow-y:auto}.CodeDropdownButton-module__TabNav--zWa9N{background:var(--bgColor-muted)}.CodeDropdownButton-module__TabNav--zWa9N .CodeDropdownButton-module__NavItem--_hXZP{border-radius:0;border-width:0;flex:1 0 auto;min-height:var(--control-large-size)}.CodeDropdownButton-module__TabNav--zWa9N .CodeDropdownButton-module__NavItem--_hXZP[aria-selected=false]:hover{background:var(--control-transparent-bgColor-hover)}.CodeDropdownButton-module__TabNav--zWa9N .CodeDropdownButton-module__NavItem--_hXZP[aria-selected=true]{border-left:var(--borderWidth-thin) solid var(--borderColor-default);border-right:var(--borderWidth-thin) solid var(--borderColor-default);border-top-left-radius:var(--borderRadius-default);border-top-right-radius:var(--borderRadius-default)}.CodeDropdownButton-module__TabNav--zWa9N .CodeDropdownButton-module__NavItem--_hXZP[aria-selected=true]:first-child{border-left:0}.CodeDropdownButton-module__TabNav--zWa9N .CodeDropdownButton-module__NavItem--_hXZP[aria-selected=true]:last-child{border-right:0}.CodeDropdownButton-module__CodespacesSkeletonWrapper--KXl0V{box-sizing:border-box;width:100%}.CodeDropdownButton-module__CodespacesSkeletonWrapper--KXl0V .CodeDropdownButton-module__SkeletonLoaderWrapper--suXcn{margin:var(--base-size-16);max-width:100%}@media(prefers-reduced-motion){.CopyToClipboardButton-module__tooltip--HDUYz:popover-open,.CopyToClipboardButton-module__tooltip--HDUYz:popover-open:before{animation:none!important;opacity:1!important}}.LocalTab-module__UnderlineNav--epbgw{border:none;font-weight:var(--base-text-weight-semibold);margin-bottom:var(--base-size-8);margin-top:var(--base-size-8);padding-left:0;padding-right:0}.LocalTab-module__PlatformContents--rz1GK{width:400px}.LocalTab-module__CloneContainer--fne3C{height:32px}.LocalTab-module__CopyToClipboardButton--G8eJx{width:32px}.CodeViewError-module__Box--ThnZK{margin:var(--base-size-16);min-height:100vh}.CheckTagNameDialog-module__DialogFooterButtons--HNAWb{display:flex;justify-content:flex-end;margin-top:var(--base-size-16)}.CreateTagDialog-module__Dialog--a69Xp{min-height:var(--overlay-height-small)}.RefSelectorAnchoredOverlay-module__RefSelectorOverlayBtn--D34zl{display:flex}.RefSelectorAnchoredOverlay-module__RefSelectorOverlayBtn--D34zl svg{color:var(--fgColor-muted)}.RefSelectorAnchoredOverlay-module__RefSelectorOverlayBtn--D34zl>span{width:inherit}.RefSelectorAnchoredOverlay-module__RefSelectorOverlayContainer--mCbv8{display:flex;width:100%}.RefSelectorAnchoredOverlay-module__RefSelectorOverlayHeader--D4cnZ{color:var(--fgColor-muted);margin-right:var(--base-size-4)}.RefSelectorAnchoredOverlay-module__RefSelectorBtnTextContainer--yO402{font-size:var(--text-body-size-medium);min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.RefSelectorAnchoredOverlay-module__RefSelectorText--bxVhQ{min-width:0}.HighlightedText-module__HighlightedText--XiJMv{text-overflow:ellipsis;white-space:nowrap}.RefItem-module__ItemIcon--uDlDK{padding-right:var(--base-size-4)}.RefItem-module__ItemIcon--uDlDK[data-icon-visibility=hidden]{visibility:hidden}.RefsList-module__FixedSizeVirtualList--sfJlf{max-height:330px;overflow-y:auto}.RefSelectorV1-module__RefSelectorContainer--DFuLg{border-bottom:var(--borderWidth-thin) solid;border-color:var(--borderColor-muted);padding-bottom:var(--base-size-8)}.RefSelectorV1-module__RefSelectorInnerContainer--pH_Dn{align-items:center;display:flex;justify-content:space-between;padding-bottom:var(--base-size-8);padding-left:var(--base-size-8);padding-right:var(--base-size-8)}.RefSelectorV1-module__RefSelectorHeading--FSd2d{font-size:inherit;padding-left:var(--base-size-8)}.RefSelectorV1-module__RefSelectorCloseButton--x91Lr{color:var(--fgColor-muted)}.RefSelectorV1-module__RefTypeTabs--slHyr{border-bottom:var(--borderWidth-thin) solid;border-color:var(--borderColor-muted);margin-left:calc(var(--base-size-8)*-1);margin-right:calc(var(--base-size-8)*-1)}.RefSelectorV1-module__RefTypeTabs--slHyr>nav{border-bottom:none}.RefSelectorV1-module__RefSelectorFilterContainer--nzwdI{padding-left:var(--base-size-8);padding-right:var(--base-size-8)}.RefSelectorV1-module__RefSelectorInput--Myj_6{width:100%}.RefSelectorV1-module__LoadingContainer--B9AR4{display:flex;justify-content:center;padding:var(--base-size-8)}.RefSelectorV1-module__ZeroStateText--ZRhw5{display:flex;justify-content:center;padding:var(--base-size-16)}.RefSelectorV1-module__ViewAllRefsActionLink--riztS{display:flex;justify-content:center}.RefSelectorV1-module__ViewAllRefsActionText--T80I4{display:flex}.RefSelectorV1-module__BranchOcticon--Fpshx{color:var(--fgColor-muted);margin-right:var(--base-size-8)}.RefSelectorV1-module__RefActionText--b19i0{font-family:var(--fontFamily-mono);font-weight:var(--base-text-weight-semibold)}.RefSelectorV1-module__Divider--fKdqp{background-color:var(--borderColor-muted)}.RefSelector-module__RefSelectorTabs--nkSFr{padding-left:var(--base-size-8)}.RefSelector-module__RefSelectorTabLink--WGX7u{border-bottom-left-radius:0;border-bottom-right-radius:0}.AuthorDisplayName-module__Text--i7M4Z{white-space:nowrap}.AuthorDisplayName-module__truncate--Iw1IE{max-width:150px}@media screen and (min-width:768px){.AuthorDisplayName-module__truncate--Iw1IE{max-width:200px}}.AuthorAvatar-module__authorAvatarImage--bQzij{margin-left:1px;margin-right:var(--base-size-8);margin-top:-1px}.AuthorAvatar-module__AuthorAvatarContainer--Z1TF8{align-items:center;display:flex;flex-direction:row}.AuthorAvatar-module__authorHoverableLink--vw9qe{white-space:nowrap}.AuthorAvatar-module__authorHoverableLink--vw9qe:hover{text-decoration:underline}.AuthorsDialog-module__PrimerLink--EKj48{margin-left:var(--base-size-4);margin-right:var(--base-size-4)}.AuthorsDialog-module__ActionList--qxNlU{overflow-y:auto;padding-bottom:var(--base-size-8);padding-top:var(--base-size-8)}.AuthorsDialog-module__ActionList_LinkItem--DrLG5{color:var(--fgColor-default);display:flex;flex-direction:row;font-size:var(--text-body-size-medium);padding-bottom:var(--base-size-8);padding-top:var(--base-size-8)}.AuthorsDialog-module__ActionList_LinkItem--DrLG5:hover{background-color:var(--bgColor-muted)}.AuthorsDialog-module__GitHubAvatar--lwnwX{margin-right:var(--base-size-8)}.AuthorLink-module__authorLinkContainer--kzOT6{align-items:center;display:flex;flex-direction:row}.AuthorLink-module__authorNameLink--dCuQh{white-space:nowrap}.AuthorLink-module__authorNameLink--dCuQh:hover{text-decoration:underline}.OrgLink-module__orgLink--mWbZQ{color:var(--fgColor-muted,var(--color-fg-muted));font-weight:400;white-space:nowrap}.OrgLink-module__orgLink--mWbZQ:hover{color:var(--fgColor-muted,var(--color-fg-muted))!important;text-decoration:underline!important}.CommitAttribution-module__AuthorLink--oMvAS{padding-left:var(--base-size-4)}.CommitAttribution-module__CommitAttributionContainer--Si80C{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap}@media screen and (min-width:1012px){.CommitAttribution-module__CommitAttributionContainer--Si80C{flex-wrap:nowrap}}.CheckRunItem-module__Box--LZ7kH{align-items:center;background-color:var(--bgColor-muted);border-bottom:var(--borderWidth-thin) solid var(--borderColor-default);display:flex;padding:var(--base-size-8) var(--base-size-16) var(--base-size-8) var(--base-size-12)}.CheckRunItem-module__Box_1--uqwhY{align-self:center;display:flex}.CheckRunItem-module__Link--sKVjI{margin-right:var(--base-size-8)}.CheckRunItem-module__Text--yCiXY{color:var(--fgColor-muted);font-size:var(--text-codeBlock-size)}.CheckRunItem-module__Text_1--byPUg{color:var(--fgColor-default);font-weight:var(--base-text-weight-semibold);margin-right:var(--base-size-2)}.CheckRunItem-module__Text_2--JMqoY{font-style:italic}.CheckRunItem-module__Link_1--i579_{font-size:var(--text-codeBlock-size);margin-left:auto;padding-left:var(--base-size-12)}.CheckRunItem-module__Box_2--Ht42S{align-self:center;height:16px;margin-left:var(--base-size-8);margin-right:var(--base-size-8);min-width:16px;width:16px}.ChecksStatusBadgeFooter-module__Box--A9a95{display:flex;flex-direction:column;max-height:230px;overflow:auto}@media screen and (min-width:544px){.ChecksStatusBadgeFooter-module__Box--A9a95{max-height:380px}}.ChecksStatusBadgeHeader-module__Text--mNbul,.ChecksStatusBadgeHeader-module__Text_1--Ccfb0{font-size:var(--text-body-size-large,--text-title-size-small);font-weight:var(--base-text-weight-semibold)}.ChecksStatusBadgeHeader-module__Text_1--Ccfb0{color:var(--fgColor-danger,var(--color-danger-fg))}.ChecksStatusBadgeHeader-module__Text_2--d8Yn7{color:var(--fgColor-attention,var(--color-attention-fg));font-size:var(--text-body-size-large,--text-title-size-small);font-weight:var(--base-text-weight-semibold)}.CheckStatusDialog-module__Dialog--k1EnR{background-color:var(--bgColor-default);border:var(--borderWidth-thin) solid var(--borderColor-default);border-bottom:0;box-shadow:none;overflow-y:auto}.CheckStatusDialog-module__Dialog_Body--sRD_i{padding:0}.CheckStatusDialog-module__Box--uYuTX{display:flex;justify-content:center;padding:var(--base-size-8)}.ChecksStatusBadge-module__ChecksStatusBadgeButton--rZYKL{color:var(--fgColor-default);font-weight:var(--base-text-weight-normal);padding:var(--base-size-4)}.ChecksStatusBadge-module__ChecksStatusBadgeIconButton--rpD4z{margin-right:var(--base-size-8);padding:0}.ChecksStatusBadge-module__ChecksStatusBadgeIconButton--rpD4z:hover:not([disabled]){background:var(--page-header-bgColor,var(--color-page-header-bg,#0d1117))}.LatestCommit-module__Box--Fimpo{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;gap:var(--stack-gap-condensed);justify-content:space-between;min-width:273px;padding:var(--base-size-8)}@media screen and (min-width:544px){.LatestCommit-module__Box--Fimpo{flex-wrap:nowrap}}.LatestCommit-module__Box_1--aQ5OG{display:flex;flex-grow:1;font-size:var(--text-body-size-medium);width:max-content}.LatestCommit-module__Box_1--aQ5OG,.LatestCommit-module__Box_2--JDY37{align-items:center;gap:var(--stack-gap-condensed);min-width:0}.LatestCommit-module__IconButton--Zxaob{color:var(--fgColor-muted);min-width:28px}.LatestCommit-module__Box_3--Egpxh{align-items:flex-start;display:flex;flex-direction:row;gap:var(--stack-gap-condensed);min-width:0}.LatestCommit-module__VerifiedHTMLText--_m6PQ>a{color:var(--fgColor-default)!important}.LatestCommit-module__VerifiedHTMLText_1--Prx0J{white-space:pre-wrap}.Table-module__Box--KyMHK{border:var(--borderWidth-thin) solid;border-collapse:initial;border-color:var(--borderColor-default);border-radius:var(--borderRadius-medium);border-spacing:0;overflow:hidden;table-layout:fixed;width:100%}.Table-module__Box_1--DkRqs{height:40px}.Table-module__Box_2--l1wjV{color:var(--fgColor-muted);font-size:var(--text-body-size-small);height:40px;padding:var(--base-size-16);text-align:left}.Table-module__Box_2--l1wjV th{background-color:var(--bgColor-muted);padding-left:var(--base-size-16)}.Table-module__Box_3--CeioY{font-size:var(--text-body-size-medium);height:40px}.Table-module__Box_3--CeioY td{border-top:var(--borderWidth-thin) solid var(--borderColor-default);padding-left:var(--base-size-16);text-align:left}.Table-module__Box_3--CeioY:hover{background:var(--bgColor-muted)}.Table-module__Box_4--xPnSl{background-color:var(--bgColor-muted);border-top-color:var(--borderColor-default);padding:var(--base-size-16)}.DirectoryRow-module__PrimerLink--MeWOM{cursor:pointer;font-weight:var(--base-text-weight-semibold);text-decoration:none}.DirectoryRow-module__PrimerLink--MeWOM:hover{text-decoration:none}.DirectoryRow-module__PrimerLink--MeWOM:focus:focus-visible div{outline:2px solid var(--focus-outlineColor,var(--color-accent-fg));outline-offset:-2px}.DirectoryRow-module__Box--uM44V{align-items:center;display:flex;letter-spacing:2px;text-align:center;width:16px}.DirectoryRow-module__Octicon--_lwmM{color:var(--treeViewItem-leadingVisual-iconColor-rest,var(--color-icon-directory));margin-right:10px}.DirectoryContent-module__Box--y3Nvf{border-top-left-radius:var(--borderRadius-medium);width:100%}@media screen and (min-width:544px){.DirectoryContent-module__Box--y3Nvf{display:none}}.DirectoryContent-module__Box_1--xeAhp{border-top-left-radius:var(--borderRadius-medium);width:40%}@media screen and (max-width:543px){.DirectoryContent-module__Box_1--xeAhp{display:none}}.DirectoryContent-module__Box_2--h912w{border-top-right-radius:var(--borderRadius-medium);padding-right:var(--base-size-16);text-align:right;width:136px}.DirectoryContent-module__Box_3--zI0N1{color:var(--fgColor-muted);font-size:var(--text-body-size-small);height:40px}.DirectoryContent-module__Box_4--QyUbd{border-top:var(--borderWidth-thin) solid;border-color:var(--borderColor-default);height:40px;text-align:center;vertical-align:center}.DirectoryContent-module__Box_5--OJZQU{border-top:var(--borderWidth-thin) solid var(--borderColor-default);cursor:pointer}.DirectoryContent-module__OverviewHeaderRow--FlrUZ{height:0!important;line-height:0px!important}.DirectoryContent-module__OverviewHeaderRow--FlrUZ tr{font-size:0!important;height:0!important}.TableOfContentsPanel-module__Box--ehst0{max-width:100vw;padding-left:var(--base-size-8);padding-right:var(--base-size-8);padding-top:var(--base-size-8)}.TableOfContentsPanel-module__NavList--LnyCZ{overflow-y:auto}.TableOfContentsPanel-module__NavList--LnyCZ>li{border-radius:var(--borderRadius-medium);width:100%}.DirectoryRichtextContent-module__SharedMarkdownContent--BTKsc{overflow:auto;padding:var(--base-size-32)}.OverviewRepoFiles-module__Box--wWkNn{align-items:center;display:flex;flex-grow:1;justify-content:center;padding-bottom:var(--base-size-24);padding-top:var(--base-size-24)}.OverviewRepoFiles-module__Box_1--yBtNT{display:flex;flex-grow:1;gap:var(--stack-gap-normal)}.OverviewRepoFiles-module__Box_2--w5aD8{border:var(--borderWidth-thin) solid;border-color:var(--borderColor-default);border-radius:var(--borderRadius-medium);display:flex;flex-direction:column;flex-grow:1}@media screen and (max-width:543px){.OverviewRepoFiles-module__Box_2--w5aD8{margin-left:-16px;margin-right:-16px;max-width:calc(100% + 32px)}}@media screen and (min-width:544px){.OverviewRepoFiles-module__Box_2--w5aD8{max-width:100%}}.OverviewRepoFiles-module__Box_3--ELDBz{align-items:center;background-color:var(--bgColor-default);border-bottom:var(--borderWidth-thin) solid;border-bottom-color:var(--borderColor-default);border-top-left-radius:var(--borderRadius-medium);border-top-right-radius:var(--borderRadius-medium);display:flex;padding-right:var(--base-size-8);position:sticky;top:0;z-index:1}.OverviewRepoFiles-module__UnderlineNav--uKbU6{border-bottom:none;flex-grow:1;margin-bottom:-1px;max-width:100%;padding-left:var(--base-size-8);padding-right:var(--base-size-8)}.OverviewRepoFiles-module__ActionMenu_Button--BfRMS{color:var(--fgColor-muted);padding-left:var(--base-size-8);padding-right:var(--base-size-8)}.OverviewRepoFiles-module__ActionMenu_Overlay--CNMYp{min-width:256px}.OverviewRepoFiles-module__Box_4--DoaAP{align-items:center;display:flex;flex-direction:column;padding:var(--base-size-32) var(--base-size-16)}.OverviewRepoFiles-module__Octicon--T6TiK{color:var(--fgColor-muted);margin-bottom:var(--base-size-16)}.OverviewRepoFiles-module__Box_5--SuNJ8{align-items:center;display:flex;flex-direction:column;gap:var(--base-size-4);margin-bottom:var(--base-size-32)}.OverviewRepoFiles-module__Heading--ORSMC{font-size:var(--base-size-24)}.OverviewRepoFiles-module__Text--NGQVb{color:var(--fgColor-muted);font-size:var(--text-body-size-small);text-align:center}.Ago-module__AgoTimestampLink--cfwj_{color:var(--fgColor-muted)}.Ago-module__timestampText--rtBsS:focus,.Ago-module__timestampText--rtBsS:hover{color:var(--fgColor-accent);text-decoration:underline}.RecentlyTouchedBranches-module__Flash--VrltC{align-items:center;display:flex;justify-content:space-between;padding:var(--base-size-8)}.RecentlyTouchedBranches-module__Box--tkx7A{margin-right:var(--base-size-4);overflow-wrap:anywhere}.RecentlyTouchedBranches-module__Box--tkx7A a:not(:hover){color:inherit}.RecentlyTouchedBranches-module__Octicon--vAunX{margin:0 var(--base-size-8)}.InterractionLimitsBanner-module__Octicon--ABDCD{margin-right:var(--base-size-4)}.InterractionLimitsBanner-module__Label--A0yI0{margin-left:var(--base-size-8)}.InterractionLimitsBanner-module__Box--ErgdI{font-size:var(--text-body-size-small);margin-top:var(--base-size-8)}.InterractionLimitsBanner-module__Box_1--IsqNs{margin-bottom:var(--base-size-8)}.InterractionLimitsBanner-module__Box_1--IsqNs,.InterractionLimitsBanner-module__Box_2--lEg0v{display:flex;flex-wrap:wrap;font-size:var(--text-body-size-small);margin-top:var(--base-size-8)}.InterractionLimitsBanner-module__Box_2--lEg0v{align-items:center}.InterractionLimitsBanner-module__Box_3--fpaC2{white-space:pre}.InterractionLimitsBanner-module__Box_4--iUgQq{margin-right:var(--base-size-16);white-space:pre}.PendingInvitationBanner-module__Box--tKvkz{align-items:center;display:flex;gap:var(--stack-gap-condensed)}.PendingInvitationBanner-module__Box_1--NNnmi{align-items:center;flex-grow:1}.PendingInvitationBanner-module__Link--VfrOb{color:var(--fgColor-default);font-weight:var(--base-text-weight-semibold)}.UseActionBanner-module__Box--NBtRV{align-items:center;display:flex;flex-direction:row;gap:var(--stack-gap-condensed)}.UseActionBanner-module__Box_1--wBlwb{display:flex;flex-direction:column;flex-grow:1}.UseActionBanner-module__Box_2--vFEpH{align-items:center;display:flex;flex-direction:row}.UseActionBanner-module__Text--GdzO7{font-weight:var(--base-text-weight-semibold)}.UseActionBanner-module__Text_1--o7o3B{font-size:var(--text-body-size-small)}.ImmutableActionsMigrationDialog-module__IconButton--CR8dJ:hover{color:var(--fgColor-muted)}.ImmutableActionsMigrationDialog-module__Text--zv4Fp{margin-bottom:auto;margin-top:auto}.ImmutableActionsMigrationDialog-module__Link--cH13D{margin-right:auto;padding-top:var(--base-size-4)}.ImmutableActionsMigrationDialog-module__Box--uyMWK{align-items:center;border:var(--borderWidth-thin) solid;border-radius:26px;box-shadow:var(--shadow-floating-medium);display:flex;height:52px;margin-bottom:var(--base-size-8);padding-left:var(--base-size-16);padding-right:var(--base-size-16)}.ImmutableActionsMigrationDialog-module__Octicon--bUOOT{color:var(--fgColor-muted);margin:auto}.ImmutableActionsHasUnmigratableTagsDialog-module__Octicon--tVp13{color:var(--fgColor-danger)}.ImmutableActionsMigrationBanner-module__Box--EKkhY{align-items:center;display:flex;flex-direction:row;gap:var(--stack-gap-condensed)}.ImmutableActionsMigrationBanner-module__Box_1--QdG8G{display:flex;flex-direction:column;flex-grow:1}.ImmutableActionsMigrationBanner-module__Box_2--UjHZH{align-items:center;display:flex;flex-direction:row}.ImmutableActionsMigrationBanner-module__Text--bXFFE{font-weight:var(--base-text-weight-semibold)}.ImmutableActionsMigrationBanner-module__Text_1--RCAr1{font-size:var(--text-body-size-small)}.TransactionalMessageBanner-module__squareBanner--dYptq{border-radius:0}.PublishBanners-module__Flash--_jVGg{align-items:center;display:flex;flex-direction:row;margin-top:var(--base-size-16)}.SpoofedCommitWarning-module__SpoofedCommitWarningBanner--MpTe3{margin-top:var(--base-size-16)}.OverviewHeader-module__Box--XXfuL{display:flex;flex-direction:column;gap:var(--stack-gap-condensed)}.OverviewHeader-module__Box--XXfuL:not(:empty){padding-block:var(--base-size-8)}.OverviewHeader-module__PublishBanners--bPCSZ{margin-top:0}.BranchRenamePopover-module__Popover--rIK7c{margin-left:var(--base-size-4);margin-top:var(--base-size-6);width:480px}.BranchRenamePopover-module__Popover_Content--q1UQe{color:var(--fgColor-default);font-size:var(--text-body-size-medium);width:480px}.BranchRenamePopover-module__Heading--tTZ3D{font-size:var(--text-body-size-large,--text-title-size-small);padding-bottom:var(--base-size-8)}.BranchRenamePopover-module__BranchName--bsnIz{background-color:var(--bgColor-accent-emphasis);color:var(--fgColor-onEmphasis)}.BranchRenamePopover-module__Text--zqdzx{margin-bottom:0}.BranchRenamePopover-module__Box--WmxqF{padding-bottom:var(--base-size-20);padding-top:var(--base-size-20)}.ParentBranchRenamePopover-module__Popover--rUWUl{margin-left:var(--base-size-4);margin-top:var(--base-size-6);width:530px}.ParentBranchRenamePopover-module__Popover_Content--I4lYX{color:var(--fgColor-default);font-size:var(--text-body-size-medium);width:530px}.ParentBranchRenamePopover-module__Heading--LB0S9{font-size:var(--text-body-size-large,--text-title-size-small);padding-bottom:var(--base-size-8)}.ParentBranchRenamePopover-module__BranchName--QyNhn{background-color:var(--bgColor-accent-emphasis);color:var(--fgColor-onEmphasis)}.OverviewContent-module__Box--AAyU2{margin-bottom:var(--base-size-16);margin-top:var(--base-size-16)}.OverviewContent-module__Box_1--BhUvC{display:flex;flex-grow:1;justify-content:space-between;padding-bottom:var(--base-size-16);padding-top:var(--base-size-8)}.OverviewContent-module__Box_2--VG_ln{display:flex;flex-direction:row;gap:var(--stack-gap-condensed)}@media screen and (max-width:320px){.OverviewContent-module__Box_2--VG_ln{flex-grow:1}}.OverviewContent-module__Box_3--x_JdB{position:relative}@media screen and (max-width:380px){.OverviewContent-module__Box_3--x_JdB .ref-selector-button-text-container{max-width:80px}}@media screen and (max-width:320px){.OverviewContent-module__Box_3--x_JdB{flex-grow:1}.OverviewContent-module__Box_3--x_JdB .overview-ref-selector{width:100%}.OverviewContent-module__Box_3--x_JdB .overview-ref-selector>span{display:flex;justify-content:flex-start}.OverviewContent-module__Box_3--x_JdB .overview-ref-selector>span>span[data-component=text]{flex-grow:1}}.OverviewContent-module__Box_4--GdyrA{display:flex}@media screen and (max-width:1079px){.OverviewContent-module__Box_4--GdyrA{display:none}}.OverviewContent-module__Button--bbZn8{color:var(--fgColor-muted);padding-left:var(--base-size-4);padding-right:var(--base-size-4)}.OverviewContent-module__Button--bbZn8 span[data-component=leading-visual]{margin-right:var(--base-size-4)!important}.OverviewContent-module__Box_5--wttWN{display:flex}@media screen and (min-width:1080px){.OverviewContent-module__Box_5--wttWN{display:none}}@media screen and (max-width:543px){.OverviewContent-module__Box_5--wttWN{display:none}}.OverviewContent-module__Button_1--AQow7{color:var(--fgColor-muted)}.OverviewContent-module__Box_6--tJpBe{padding-left:var(--base-size-8)}.OverviewContent-module__Box_6--tJpBe,.OverviewContent-module__Box_7--x594V{display:flex;gap:var(--stack-gap-condensed)}@media screen and (max-width:543px){.OverviewContent-module__Box_7--x594V{display:none}}.OverviewContent-module__Box_8--TjDBQ{display:flex}@media screen and (max-width:1011px){.OverviewContent-module__Box_8--TjDBQ{display:none}}.OverviewContent-module__FileResultsList--ZnbCo{margin:0}.OverviewContent-module__Box_9--kxlwV{display:flex}@media screen and (min-width:1012px){.OverviewContent-module__Box_9--kxlwV{display:none}}.OverviewContent-module__Box_10--UMc9C{display:flex}@media screen and (min-width:544px){.OverviewContent-module__Box_10--UMc9C{display:none}}.OverviewContent-module__Box_11--QeUk1{display:flex;flex-direction:column;gap:var(--stack-gap-normal)} +/*# sourceMappingURL=lazy-react-partial-repos-overview-6f5c2b405533.js.map*/ \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/4817-fda73c9fb317.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/4817-fda73c9fb317.js" new file mode 100644 index 0000000..ff53b19 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/4817-fda73c9fb317.js" @@ -0,0 +1,5 @@ +performance.mark("js-parse-end:4817-fda73c9fb317.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[4817],{4817:(e,t,r)=>{r.d(t,{To:()=>Z,sX:()=>J});var n=r(74848),a=r(16522),o=r(96540),l=r(85094),s=r(98755),i=r(23967),c=r(31339),d=r(57826),m=r(34164),u=r(53419),h=r(39876),p=r(26108),f=r(38621),g=r(22072);let y=()=>{let e,t=(0,a.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",viewBox:"0 0 16 16","aria-hidden":"true",children:(0,n.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 13h3M1 8h14M1 3h14"})}),t[0]=e):e=t[0],e};try{y.displayName||(y.displayName="UnwrapIcon")}catch{}let _=()=>{let e,t=(0,a.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"16",height:"16",fill:"none",viewBox:"0 0 16 16","aria-hidden":"true",children:[(0,n.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"1.5",d:"M1 13h3M1 3h14"}),(0,n.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1 7.25a.75.75 0 0 0 0 1.5h11.5a1.75 1.75 0 1 1 0 3.5H9.536v-.464a.679.679 0 0 0-1.086-.543l-1.619 1.214a.68.68 0 0 0 0 1.086l1.619 1.214a.679.679 0 0 0 1.086-.543v-.464H12.5a3.25 3.25 0 0 0 0-6.5z",clipRule:"evenodd"})]}),t[0]=e):e=t[0],e};try{_.displayName||(_.displayName="WrapIcon")}catch{}function v(e){let t,r,l,v,x,b,C,k,N,j,w,$,R,L,S,B=(0,a.c)(50),{language:M,children:O,code:I,startOffset:A,endOffset:E}=e;B[0]!==M?(t=(0,i.vL)(M),B[0]=M,B[1]=t):t=B[1];let{color:D,name:T}=t,F=(0,o.useId)(),{copilotAnnotations:H,chatMode:P,wrapCodeLines:W,onWrapCodeLinesChange:K}=(0,o.use)(d.F),[V,U]=(0,o.useState)(!1),{publicCodeReferences:Y,codeVulnerabilities:z}=(0,h.R)(H,A,E);B[2]!==P||B[3]!==K||B[4]!==W?(r=()=>{K?.(!W),(0,u.BI)("dotcom_chat.activate",{target:W?"CODE_BLOCK_UNWRAP":"CODE_BLOCK_WRAP",mode:P})},B[2]=P,B[3]=K,B[4]=W,B[5]=r):r=B[5];let Q=r,q="immersive"===P,J="assistive"===P;B[6]!==q||B[7]!==J?(l=(0,m.$)("CodeBlock-module__container--QRI4L",{"CodeBlock-module__immersive--D8NjT":q,"CodeBlock-module__assistive--IJ9ks":J}),B[6]=q,B[7]=J,B[8]=l):l=B[8],B[9]!==D?(v=(0,n.jsx)(c.q,{color:D}),B[9]=D,B[10]=v):v=B[10];let X=T||"Code";B[11]!==F||B[12]!==X?(x=(0,n.jsx)("span",{id:F,className:"CodeBlock-module__languageName--fxI6n",children:X}),B[11]=F,B[12]=X,B[13]=x):x=B[13],B[14]!==K||B[15]!==Q||B[16]!==W?(b=K&&(0,n.jsx)(p.K,{variant:"invisible",icon:W?y:_,"aria-label":W?"Unwrap":"Wrap",onClick:Q}),B[14]=K,B[15]=Q,B[16]=W,B[17]=b):b=B[17],B[18]!==P||B[19]!==z||B[20]!==Y.length?(C=(Y.length>0||z.length>0)&&(0,n.jsx)(p.K,{variant:"invisible",icon:f.ShieldIcon,"aria-label":"Code insights",onClick:()=>{U(!0),(0,u.BI)("dotcom_chat.activate",{target:"CODE_BLOCK_SHIELD",mode:P})}}),B[18]=P,B[19]=z,B[20]=Y.length,B[21]=C):C=B[21],B[22]!==C||B[23]!==v||B[24]!==x||B[25]!==b?(k=(0,n.jsxs)("div",{className:"CodeBlock-module__header--K8Zrp",children:[v,x,b,C]}),B[22]=C,B[23]=v,B[24]=x,B[25]=b,B[26]=k):k=B[26],B[27]!==P?(N=()=>{(0,u.BI)("dotcom_chat.activate",{target:"CODE_BLOCK_COPY",mode:P})},B[27]=P,B[28]=N):N=B[28],B[29]!==I||B[30]!==N?(j=(0,n.jsx)("div",{className:"CodeBlock-module__copyContainer--jLoHL",children:(0,n.jsx)("div",{className:"CodeBlock-module__copyContent--BH7EX",children:(0,n.jsx)(s.T,{textToCopy:I,ariaLabel:"Copy code",className:"CodeBlock-module__copyButton--eyFr8",onCopy:N})})}),B[29]=I,B[30]=N,B[31]=j):j=B[31];let Z=W&&"CodeBlock-module__codeWrap--UMQo8";return B[32]!==Z?(w=(0,m.$)(Z),B[32]=Z,B[33]=w):w=B[33],B[34]!==O||B[35]!==w?($=(0,n.jsx)("div",{className:"CodeBlock-module__codeContainer--snQei",children:(0,n.jsx)("pre",{className:"CodeBlock-module__code--gyjSL",tabIndex:0,children:(0,n.jsx)("code",{className:w,children:O})})}),B[34]=O,B[35]=w,B[36]=$):$=B[36],B[37]!==F||B[38]!==k||B[39]!==j||B[40]!==$||B[41]!==l?(R=(0,n.jsxs)("figure",{className:l,"aria-labelledby":F,children:[k,j,$]}),B[37]=F,B[38]=k,B[39]=j,B[40]=$,B[41]=l,B[42]=R):R=B[42],B[43]!==z||B[44]!==V||B[45]!==Y?(L=V&&(0,n.jsx)(g.t,{publicCodeReferences:Y,codeVulnerabilities:z,onClose:()=>U(!1)}),B[43]=z,B[44]=V,B[45]=Y,B[46]=L):L=B[46],B[47]!==R||B[48]!==L?(S=(0,n.jsxs)(n.Fragment,{children:[R,L]}),B[47]=R,B[48]=L,B[49]=S):S=B[49],S}try{v.displayName||(v.displayName="CodeBlock")}catch{}var x=r(47970);let b="data-codeblock-props",C=(0,l.F)(b),k={code:(e,t)=>{let r=(0,l.k)(e,b);return r?(0,n.jsx)(v,{...r,children:e.children}):t}};var N=r(15514),j=r(76814);let w=["raw.githubusercontent.com/","private-user-images.githubusercontent.com/","avatars.githubusercontent.com/","gist.github.com/assets/","github.com/user-attachments/assets/"],$=(e,t)=>(0,x.YR)(e,(e,r,n)=>{if("element"===e.type&&"img"===e.tagName&&"src"in e.properties){let a,o=e.properties.src;try{a=new URL(o,window.location.origin)}catch{}let l=a?a.hostname+a.pathname:"";if(!a||!w.some(e=>l.startsWith(e))){let a=(0,N.s)(t,e)??"";if(n&&"number"==typeof r)return n.children[r]={type:"element",tagName:"span",properties:{},children:[{type:"text",value:a}]},[j._Z,r]}}}),R=[{open:/(?:^|\\n)\$\$/,close:/\$\$/}],L=[{open:/\$`/,close:/`\$/},{open:/\$\$(?! )/,close:/(?(0,o.createElement)("math-renderer",{...n,class:r},t)},A=e=>(0,x.YR)(e,e=>{"element"===e.type&&!("a"===e.tagName&&"href"in e.properties&&e.properties.href.startsWith("#"))&&(("a"===e.tagName||"target"in e.properties)&&(e.properties.target="_blank",e.properties.rel="noopener noreferrer"),!("target"in e.properties)&&("xlink:href"in e.properties||"href"in e.properties)&&(e.properties["xlink:show"]="new"))});var E=r(26744),D=r(91905),T=r(34602),F=r(4412),H=r(23144),P=r(16961);let W=Symbol("renderFallthrough"),K=e=>Object.entries(e);function V(e){let t={};for(let r of e)for(let[e,n]of K(r))if(n){let r=t[e];t[e]=t=>{let a=n(t,W);return a!==W?a:r?.(t)??(0,o.createElement)(e,t)}}return t}function U(e){return e.map(e=>e.reactComponents).filter(e=>!!e)}var Y=r(74313);let z=/^\s*$/,Q=[[/^\s`/,/^[^\s]`/,"`"],[/^\s_/,/^[^\s]_/,"_"],[/^\s\*\*/,/^[^\s]\*\*/,"**"],[/^\s~~/,/^[^\s]~~/,"~~"],[/^\s\*/,/^[^\s]\*/,"*"],[/^\s\[/,/^[^\s]\]/,"](#)"],[/^\]\(/,/^[^\s]\)/,")"]];var q=r(54571);let J="MarkdownRenderer-module__noFade--P7umO",X=[];function Z(e){let t,r,l,s,i,c,u,h,p,f,g,y,_,v,b,N,w,W,K,J,Z=(0,a.c)(48),{ref:ea,className:eo,markdown:el,chatMode:es,openLinksInCurrentTab:ei,extensions:ec,isStreaming:ed,accessibleHeader:em,copilotAnnotations:eu,wrapCodeLines:eh,onWrapCodeLinesChange:ep}=e,ef=void 0===ec?X:ec,[eg,ey]=(0,o.useState)(ed??!1);Z[0]!==ed?(t=()=>{if(ed)ey(!0);else{let e=setTimeout(()=>{ey(!1)},750);return()=>clearTimeout(e)}},r=[ed],Z[0]=ed,Z[1]=t,Z[2]=r):(t=Z[1],r=Z[2]),(0,o.useEffect)(t,r),Z[3]===Symbol.for("react.memo_cache_sentinel")?(l={transformMarkdown:e=>(0,x.YR)(e,"code",e=>{e.data={...e.data,hName:"code",hProperties:{[C]:JSON.stringify({language:e.lang??"",code:e.value,startOffset:e.position?.start.offset??-1,endOffset:e.position?.end.offset??-1})}}}),transformHtml:e=>(0,x.YR)(e,"element",(e,t,r)=>{let n=e.children?.[0];r&&void 0!==t&&"pre"===e.tagName&&e.children?.length===1&&n?.type==="element"&&"code"===n.tagName&&C in n.properties&&r.children.splice(t,1,n)}),reactComponents:k},s={transformMarkdown:(({displayDelimiters:e=R,inlineDelimiters:t=L,codeBlockLanguages:r=S}={})=>n=>{let a,o;(a=e.map(({open:e,close:t})=>RegExp(`(?:^|\\n) *${e.source}((?: +|.)+?)${t.source}(?= *(?:\\n|$))`,"g")),e=>(0,B.T)(e,a.map(e=>[e,(e,t)=>M(t)])))(n),(e=>(0,x.YR)(e,"code",(e,t,n)=>{e.lang&&r.has(e.lang)&&n&&void 0!==t&&n.children.splice(t,1,M(e.value))}))(n),(o=t.map(({open:e,close:t})=>RegExp(`(?(0,B.T)(e,o.map(e=>[e,(e,t)=>({type:"inlinemath",value:t,data:{hName:"math-renderer",hProperties:{className:"js-inline-math",style:"display: inline-block;"},hChildren:[{type:"text",value:t}]}})])))(n)})(O),reactComponents:I},Z[3]=l,Z[4]=s):(l=Z[3],s=Z[4]),Z[5]!==ei?(i=function({openLinksInCurrentTab:e}){return{transformHtml:e?void 0:A}}({openLinksInCurrentTab:ei}),Z[5]=ei,Z[6]=i):i=Z[6],Z[7]!==eg?(c=function({isStreaming:e}){return e?{preprocessMarkdown:e=>`${function(e){let t=new Set;for(let r=-1,n=` ${e.slice(0,2)}`;r<=e.length-3;r++,n=e.slice(r,r+3))for(let[e,r,a]of Q)if(!t.has(a)&&e.test(n)){t.add(a);break}else if(t.has(a)&&r.test(n)){t.delete(a);break}for(let r of Array.from(t).reverse())e+=r;return e}(e)} +\uE000`,transformMarkdown:e=>(0,j.VG)(e,(e,t)=>{if("value"in e&&e.value?.includes("\uE000"))for(let r of(e.value=e.value.replace("\uE000",""),e.isStreaming=!0,t))r.isStreaming=!0}),transformHtml:e=>(0,x.YR)(e,"text",(e,t,r)=>{if(void 0===r||void 0===t||z.test(e.value))return;let n=e.value.split(" ").map((e,t,{length:r})=>{let n=t[[H.A,{languages:P.l}],...e_.map(et).filter(ee)],Z[16]=e_,Z[17]=f):f=Z[17],Z[18]===Symbol.for("react.memo_cache_sentinel")?(g=[],y=[],Z[18]=g,Z[19]=y):(g=Z[18],y=Z[19]);let[ex]=(0,q.I)(f,g,y),eb=function(e){let t,r,n,l=(0,a.c)(5);l[0]!==e?(t=()=>V(U(e)),l[0]=e,l[1]=t):t=l[1];let[s,i]=(0,o.useState)(t),c=(0,o.useRef)(e);return l[2]!==e?(r=()=>{let t=U(c.current),r=U(e);c.current=e;let n=null;for(let[e,a]of(t.length!==r.length&&(n=Error("A `MarkdownRenderer` extension containing a `reactComponents` field was added or removed. React extensions must remain referentially constant.")),t.entries()))a!==r[e]&&(n=Error("The `reactComponents` field in at least one `MarkdownRenderer` extension changed, or extensions containing `reactComponent` fields were reordered. React extensions must remain referentially constant.\nNOTE: This error may be safely ignored if it occurs due to hot-reloading in local development."));n&&(i(V(r)),(async()=>{throw n})())},n=[e],l[2]=e,l[3]=r,l[4]=n):(r=l[3],n=l[4]),(0,o.useEffect)(r,n),s}(e_);Z[20]!==e_||Z[21]!==el?(_=e_.reduce(G,el),Z[20]=e_,Z[21]=el,Z[22]=_):_=Z[22];let eC=_;Z[23]!==es||Z[24]!==eu||Z[25]!==ed||Z[26]!==ep||Z[27]!==eh?(v={isStreaming:ed,chatMode:es,copilotAnnotations:eu,wrapCodeLines:eh,onWrapCodeLinesChange:ep},Z[23]=es,Z[24]=eu,Z[25]=ed,Z[26]=ep,Z[27]=eh,Z[28]=v):v=Z[28];let ek=v;Z[29]!==em?(b=em&&(0,n.jsx)("h3",{className:"sr-only",children:em}),Z[29]=em,Z[30]=b):b=Z[30];let eN=eg&&"MarkdownRenderer-module__fadeInContent--e9SCi";return Z[31]!==eo||Z[32]!==eN?(N=(0,m.$)("markdown-body","MarkdownRenderer-module__container--dNKcF",eo,eN),Z[31]=eo,Z[32]=eN,Z[33]=N):N=Z[33],Z[34]===Symbol.for("react.memo_cache_sentinel")?(w={"--MarkdownRenderer_streaming-fade-duration":"750ms"},Z[34]=w):w=Z[34],Z[35]!==eb||Z[36]!==eC||Z[37]!==ex||Z[38]!==ev?(W=(0,n.jsx)(E.o,{remarkPlugins:ev,rehypePlugins:ex,components:eb,children:eC}),Z[35]=eb,Z[36]=eC,Z[37]=ex,Z[38]=ev,Z[39]=W):W=Z[39],Z[40]!==ea||Z[41]!==N||Z[42]!==W?(K=(0,n.jsx)("div",{ref:ea,className:N,style:w,"data-copilot-markdown":!0,children:W}),Z[40]=ea,Z[41]=N,Z[42]=W,Z[43]=K):K=Z[43],Z[44]!==ek||Z[45]!==b||Z[46]!==K?(J=(0,n.jsxs)(d.F,{value:ek,children:[b,K]}),Z[44]=ek,Z[45]=b,Z[46]=K,Z[47]=J):J=Z[47],J}function G(e,t){return t.preprocessMarkdown?.(e)??e}function ee(e){return!!e}function et(e){return e.transformHtml?()=>e.transformHtml:void 0}function er(e){return!!e}function en(e){return e.transformMarkdown?()=>e.transformMarkdown:void 0}try{Z.displayName||(Z.displayName="MarkdownRenderer")}catch{}},22072:(e,t,r)=>{r.d(t,{t:()=>p});var n=r(74848),a=r(16522),o=r(57387),l=r(38621),s=r(5524),i=r(77430);function c(e){let t,r,o,i,c,d=(0,a.c)(11),{summary:m,icon:u,children:h}=e;return d[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,n.jsx)("span",{className:"AnnotationsList-module__chevron--bQbqF",children:(0,n.jsx)(l.ChevronRightIcon,{size:"small"})}),d[0]=t):t=d[0],d[1]!==m?(r=(0,n.jsx)("span",{className:"AnnotationsList-module__summaryText--fuV8i",children:m}),d[1]=m,d[2]=r):r=d[2],d[3]!==u||d[4]!==r?(o=(0,n.jsxs)("summary",{className:"AnnotationsList-module__summary--s4Hbl",children:[t,u," ",r]}),d[3]=u,d[4]=r,d[5]=o):o=d[5],d[6]!==h?(i=(0,n.jsx)("div",{className:"AnnotationsList-module__items--bRsb6",children:(0,n.jsx)(s.l,{variant:"full",children:h})}),d[6]=h,d[7]=i):i=d[7],d[8]!==o||d[9]!==i?(c=(0,n.jsxs)("details",{children:[o,i]}),d[8]=o,d[9]=i,d[10]=c):c=d[10],c}try{c.displayName||(c.displayName="AnnotationsList")}catch{}function d(e){let t,r=(0,a.c)(3),{references:o}=e;if(r[0]!==o){let e,a=function(e){let t=new Map;for(let r of e){let e=function(e){let t=/^https?:\/\/github\.com\/([^/]+)\/([^/]+)/.exec(e);return t&&t[1]&&t[2]?{owner:t[1],name:t[2]}:null}(r.sourceURL);if(!e)continue;let{owner:n,name:a}=e;t.set(a,{name:a,owner:n,url:`https://github.com/${n}/${a}`,license:"NOASSERTION"===r.license?null:r.license})}return Array.from(t.values()).sort((e,t)=>e.name.localeCompare(t.name))}(o);r[2]===Symbol.for("react.memo_cache_sentinel")?(e=(0,n.jsx)("span",{style:{color:"var(--fgColor-muted)"},children:(0,n.jsx)(l.LawIcon,{})}),r[2]=e):e=r[2],t=(0,n.jsx)(c,{icon:e,summary:`Public code references from ${a.length} ${1===a.length?"repository":"repositories"}`,children:a.map(m)}),r[0]=o,r[1]=t}else t=r[1];return t}function m(e){return(0,n.jsxs)(s.l.LinkItem,{href:e.url,tabIndex:void 0,children:[(0,n.jsx)(s.l.LeadingVisual,{children:(0,n.jsx)(i.r,{src:`https://github.com/${e.owner}.png`,alt:`@${e.owner} avatar`,size:20})}),e.owner,"/",e.name,(0,n.jsx)(s.l.Description,{children:e.license?`${e.license} license`:"No license"})]},e.name)}try{d.displayName||(d.displayName="ReferenceAnnotations")}catch{}function u(e){let t,r,o,s=(0,a.c)(6),{vulnerabilities:i}=e;s[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,n.jsx)("span",{style:{color:"var(--fgColor-attention)"},children:(0,n.jsx)(l.AlertIcon,{})}),s[0]=t):t=s[0];let d=`${i.length} ${1===i.length?"vulnerability":"vulnerabilities"} detected`;return s[1]!==i?(r=i.map(h),s[1]=i,s[2]=r):r=s[2],s[3]!==d||s[4]!==r?(o=(0,n.jsx)(c,{icon:t,summary:d,children:r}),s[3]=d,s[4]=r,s[5]=o):o=s[5],o}function h(e,t){return(0,n.jsxs)(s.l.Item,{children:[e.uiType,(0,n.jsx)(s.l.Description,{variant:"block",children:e.uiDescription})]},t)}try{u.displayName||(u.displayName="VulnerabilityAnnotations")}catch{}let p=e=>{let t,r,l,s,i=(0,a.c)(10),{publicCodeReferences:c,codeVulnerabilities:m,onClose:h}=e;i[0]!==h?(t=()=>{h()},i[0]=h,i[1]=t):t=i[1];let p=t;return i[2]!==c?(r=c&&c.length>0&&(0,n.jsx)(d,{references:c.map(f)}),i[2]=c,i[3]=r):r=i[3],i[4]!==m?(l=m&&m.length>0&&(0,n.jsx)(u,{vulnerabilities:m.map(g)}),i[4]=m,i[5]=l):l=i[5],i[6]!==p||i[7]!==r||i[8]!==l?(s=(0,n.jsxs)(o.l,{title:"Code insights",subtitle:"Find matches across our platform or check for code vulnerabilities.",onClose:p,width:"xlarge",children:[r,l]}),i[6]=p,i[7]=r,i[8]=l,i[9]=s):s=i[9],s};try{p.displayName||(p.displayName="CodeInsightsDialog")}catch{}function f(e){return e.details}function g(e){return e.details}},31339:(e,t,r)=>{r.d(t,{q:()=>o});var n=r(74848),a=r(16522);function o(e){let t,r,o=(0,a.c)(5),{color:l,variant:s}=e;o[0]!==l?(t={backgroundColor:l},o[0]=l,o[1]=t):t=o[1];let i="compact"===s?"LanguageDot-module__languageDotCompact--V51gt":"LanguageDot-module__languageDot--O6n2z";return o[2]!==t||o[3]!==i?(r=(0,n.jsx)("span",{style:t,className:i}),o[2]=t,o[3]=i,o[4]=r):r=o[4],r}try{o.displayName||(o.displayName="LanguageDot")}catch{}},39876:(e,t,r)=>{r.d(t,{R:()=>a});var n=r(96540);function a(e,t,r){let{publicCodeReferences:a=[],codeVulnerabilities:o=[]}=(0,n.useMemo)(()=>{if(void 0===t||void 0===r||!e)return{publicCodeReferences:[],codeVulnerabilities:[]};let{PublicCodeReference:n,CodeVulnerability:a}=e;return{publicCodeReferences:n?.filter(e=>e.startOffset>=t&&e.endOffset<=r),codeVulnerabilities:a?.filter(e=>e.startOffset>=t&&e.endOffset<=r)}},[e,t,r]);return{publicCodeReferences:a,codeVulnerabilities:o}}},57826:(e,t,r)=>{r.d(t,{F:()=>n});let n=(0,r(96540).createContext)({});try{n.displayName||(n.displayName="ExtensionContext")}catch{}},85094:(e,t,r)=>{function n(e,t){return t in e&&"string"==typeof e[t]?JSON.parse(e[t]):null}r.d(t,{F:()=>a,k:()=>n});let a=e=>e.replaceAll(/-\w/g,e=>e[1]?.toUpperCase()??"")}}]); +//# sourceMappingURL=4817-0f686ebb0677.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/50170-a8f88a977e37.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/50170-a8f88a977e37.js" new file mode 100644 index 0000000..def2c23 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/50170-a8f88a977e37.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:50170-a8f88a977e37.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[40757,50170,57727],{13937:(e,t,n)=>{let r;n.d(t,{Ax:()=>l,JW:()=>c,ZV:()=>a});let ErrorWithResponse=class ErrorWithResponse extends Error{constructor(e,t){super(e),this.response=t}};function o(){let e,t;return[new Promise(function(n,r){e=n,t=r}),e,t]}let i=[],s=[];function a(e){i.push(e)}function l(e){s.push(e)}function c(e,t){!r&&(r=new Map,"u">typeof document&&document.addEventListener("submit",u));let n=r.get(e)||[];r.set(e,[...n,t])}function u(e){if(!(e.target instanceof HTMLFormElement)||e.defaultPrevented)return;let t=e.target,n=function(e){let t=[],n=t=>"object"==typeof t?t===e:"string"==typeof t&&e.matches(t);for(let e of r.keys())if(n(e)){let n=r.get(e)||[];t.push(...n)}return t}(t);if(0===n.length)return;let a=function(e,t){let n={method:t?.formMethod||e.method||"GET",url:e.action,headers:new Headers({"X-Requested-With":"XMLHttpRequest"}),body:null};if("GET"===n.method.toUpperCase()){let t=function(e){let t=new URLSearchParams;for(let[n,r]of[...new FormData(e).entries()])t.append(n,r.toString());return t.toString()}(e);t&&(n.url+=(~n.url.indexOf("?")?"&":"?")+t)}else n.body=new FormData(e);return n}(t,e instanceof SubmitEvent?e.submitter:null),[l,c,u]=o();e.preventDefault(),d(n,t,a,l).then(async e=>{if(e){for(let e of s)await e(t);h(a).then(c,u).catch(()=>{}).then(()=>{for(let e of i)e(t)})}else t.submit()},e=>{t.submit(),setTimeout(()=>{throw e})})}async function d(e,t,n,r){let i=!1;for(let s of e){let[e,a]=o(),l=()=>(i=!0,a(),r),c={text:l,json:()=>(n.headers.set("Accept","application/json"),l()),html:()=>(n.headers.set("Accept","text/html"),l())};await Promise.race([e,s(t,c,n)])}return i}async function h(e){let t=await window.fetch(e.url,{method:e.method,body:null!==e.body?e.body:void 0,headers:e.headers,credentials:"same-origin"}),n={url:t.url,status:t.status,statusText:t.statusText,headers:t.headers,text:"",get json(){let e=JSON.parse(this.text);return delete this.json,this.json=e,this.json},get html(){var r,o;let e;return delete this.html,this.html=(r=document,o=this.text,(e=r.createElement("template")).innerHTML=o,r.importNode(e.content,!0)),this.html}};if(n.text=await t.text(),t.ok)return n;throw new ErrorWithResponse("request failed",n)}},39595:(e,t,n)=>{let r;n.d(t,{CF:()=>g,p_:()=>j,FB:()=>d,Se:()=>E,aC:()=>T,zV:()=>M});let o=new WeakSet,i=new WeakMap;function s(e=document){if(i.has(e))return i.get(e);let t=!1,n=new MutationObserver(e=>{for(let t of e)if("attributes"===t.type&&t.target instanceof Element)u(t.target);else if("childList"===t.type&&t.addedNodes.length)for(let e of t.addedNodes)e instanceof Element&&a(e)});n.observe(e,{childList:!0,subtree:!0,attributeFilter:["data-action"]});let r={get closed(){return t},unsubscribe(){t=!0,i.delete(e),n.disconnect()}};return i.set(e,r),r}function a(e){for(let t of e.querySelectorAll("[data-action]"))u(t);e instanceof Element&&e.hasAttribute("data-action")&&u(e)}function l(e){let t=e.currentTarget;for(let n of c(t))if(e.type===n.type){let r=t.closest(n.tag);o.has(r)&&"function"==typeof r[n.method]&&r[n.method](e);let i=t.getRootNode();if(i instanceof ShadowRoot&&o.has(i.host)&&i.host.matches(n.tag)){let t=i.host;"function"==typeof t[n.method]&&t[n.method](e)}}}function*c(e){for(let t of(e.getAttribute("data-action")||"").trim().split(/\s+/)){let e=t.lastIndexOf(":"),n=Math.max(0,t.lastIndexOf("#"))||t.length;yield{type:t.slice(0,e),tag:t.slice(e+1,n),method:t.slice(n+1)||"handleEvent"}}}function u(e){for(let t of c(e))e.addEventListener(t.type,l)}function d(e,t){let n=e.tagName.toLowerCase();if(e.shadowRoot){for(let r of e.shadowRoot.querySelectorAll(`[data-target~="${n}.${t}"]`))if(!r.closest(n))return r}for(let r of e.querySelectorAll(`[data-target~="${n}.${t}"]`))if(r.closest(n)===e)return r}let h=e=>String("symbol"==typeof e?e.description:e).replace(/([A-Z]($|[a-z]))/g,"-$1").replace(/--/g,"-").replace(/^-|-$/,"").toLowerCase(),f=(e,t="property")=>{let n=h(e);if(!n.includes("-"))throw new DOMException(`${t}: ${String(e)} is not a valid ${t} name`,"SyntaxError");return n},p="attr";function g(e,t){O(e,p).add(t)}let m=new WeakSet;function b(e,t){if(m.has(e))return;m.add(e);let n=Object.getPrototypeOf(e),r=n?.constructor?.attrPrefix??"data-";for(let o of(t||(t=O(n,p)),t)){let t=e[o],n=f(`${r}${o}`),i={configurable:!0,get(){return this.getAttribute(n)||""},set(e){this.setAttribute(n,e||"")}};"number"==typeof t?i={configurable:!0,get(){return Number(this.getAttribute(n)||0)},set(e){this.setAttribute(n,e)}}:"boolean"==typeof t&&(i={configurable:!0,get(){return this.hasAttribute(n)},set(e){this.toggleAttribute(n,e)}}),Object.defineProperty(e,o,i),o in e&&!e.hasAttribute(n)&&i.set.call(e,t)}}let y=new Map,w=new Promise(e=>{"loading"!==document.readyState?e():document.addEventListener("readystatechange",()=>e(),{once:!0})}),v=new Promise(e=>{let t=new AbortController;t.signal.addEventListener("abort",()=>e());let n={once:!0,passive:!0,signal:t.signal},r=()=>t.abort();document.addEventListener("mousedown",r,n),document.addEventListener("touchstart",r,n),document.addEventListener("keydown",r,n),document.addEventListener("pointerdown",r,n)}),k={ready:()=>w,firstInteraction:()=>v,visible:e=>new Promise(t=>{let n=new IntersectionObserver(e=>{for(let r of e)if(r.isIntersecting){t(),n.disconnect();return}},{rootMargin:"0px 0px 256px 0px",threshold:.01});for(let t of document.querySelectorAll(e))n.observe(t)})},x=new WeakMap;function S(e){cancelAnimationFrame(x.get(e)||0),x.set(e,requestAnimationFrame(()=>{for(let t of y.keys()){let n=e instanceof Element&&e.matches(t)?e:e.querySelector(t);if(customElements.get(t)||n){let r=n?.getAttribute("data-load-on")||"ready",o=r in k?k[r]:k.ready;for(let e of y.get(t)||[])o(t).then(e);y.delete(t),x.delete(e)}}}))}function E(e,t){for(let[n,r]of("string"==typeof e&&t&&(e={[e]:t}),Object.entries(e)))y.has(n)||y.set(n,new Set),y.get(n).add(r);A(document)}function A(e){r||(r=new MutationObserver(e=>{if(y.size)for(let t of e)for(let e of t.addedNodes)e instanceof Element&&S(e)})),S(e),r.observe(e,{subtree:!0,childList:!0})}let C=Symbol.for("catalyst");let CatalystDelegate=class CatalystDelegate{constructor(e){const t=this,n=e.prototype.connectedCallback;e.prototype.connectedCallback=function(){t.connectedCallback(this,n)};const r=e.prototype.disconnectedCallback;e.prototype.disconnectedCallback=function(){t.disconnectedCallback(this,r)};const o=e.prototype.attributeChangedCallback;e.prototype.attributeChangedCallback=function(e,n,r){t.attributeChangedCallback(this,e,n,r,o)};let i=e.observedAttributes||[];Object.defineProperty(e,"observedAttributes",{configurable:!0,get(){return t.observedAttributes(this,i)},set(e){i=e}}),function(e){let t=e.observedAttributes||[],n=e.attrPrefix??"data-",r=e=>f(`${n}${e}`);Object.defineProperty(e,"observedAttributes",{configurable:!0,get:()=>[...O(e.prototype,p)].map(r).concat(t),set(e){t=e}})}(e),function(e){let t=h(e.name).replace(/-element$/,"");try{window.customElements.define(t,e),window[e.name]=customElements.get(t)}catch(e){if(!(e instanceof DOMException&&"NotSupportedError"===e.name))throw e}}(e)}observedAttributes(e,t){return t}connectedCallback(e,t){var n,r;for(let t of(e.toggleAttribute("data-catalyst",!0),customElements.upgrade(e),e.querySelectorAll("template[data-shadowroot]")))t.parentElement===e&&e.attachShadow({mode:"closed"===t.getAttribute("data-shadowroot")?"closed":"open"}).append(t.content.cloneNode(!0));(b(e),o.add(e),e.shadowRoot&&(a(r=e.shadowRoot),s(r)),a(e),s(e.ownerDocument),t?.call(e),e.shadowRoot)&&(a(n=e.shadowRoot),s(n),A(e.shadowRoot))}disconnectedCallback(e,t){t?.call(e)}attributeChangedCallback(e,t,n,r,o){b(e),"data-catalyst"!==t&&o&&o.call(e,t,n,r)}};function O(e,t){if(!Object.prototype.hasOwnProperty.call(e,C)){let t=e[C],n=e[C]=new Map;if(t)for(let[e,r]of t)n.set(e,new Set(r))}let n=e[C];return n.has(t)||n.set(t,new Set),n.get(t)}function T(e,t){O(e,"target").add(t),Object.defineProperty(e,t,{configurable:!0,get(){return d(this,t)}})}function M(e,t){O(e,"targets").add(t),Object.defineProperty(e,t,{configurable:!0,get(){let e=this.tagName.toLowerCase(),n=[];if(this.shadowRoot)for(let r of this.shadowRoot.querySelectorAll(`[data-targets~="${e}.${t}"]`))r.closest(e)||n.push(r);for(let r of this.querySelectorAll(`[data-targets~="${e}.${t}"]`))r.closest(e)===this&&n.push(r);return n}})}function j(e){new CatalystDelegate(e)}},45062:(e,t,n)=>{n.d(t,{s:()=>o});var r=n(70170);function o(e=0,t={}){return(n,o,i)=>{if(!i||"function"!=typeof i.value)throw Error("debounce can only decorate functions");let s=i.value;i.value=(0,r.s)(s,e,t),Object.defineProperty(n,o,i)}}},50515:(e,t,n)=>{n.d(t,{JC:()=>y,KK:()=>SequenceTracker,Vy:()=>s,ai:()=>b,rd:()=>u});let Leaf=class Leaf{constructor(e){this.children=[],this.parent=e}delete(e){let t=this.children.indexOf(e);return -1!==t&&(this.children=this.children.slice(0,t).concat(this.children.slice(t+1)),0===this.children.length&&this.parent.delete(this),!0)}add(e){return this.children.push(e),this}};let RadixTrie=class RadixTrie{constructor(e){this.parent=null,this.children={},this.parent=e||null}get(e){return this.children[e]}insert(e){let t=this;for(let n=0;n","\xbf":"?"},o={"`":"~",1:"!",2:"@",3:"#",4:"$",5:"%",6:"^",7:"&",8:"*",9:"(",0:")","-":"_","=":"+","[":"{","]":"}","\\":"|",";":":","'":'"',",":"<",".":">","/":"?",q:"Q",w:"W",e:"E",r:"R",t:"T",y:"Y",u:"U",i:"I",o:"O",p:"P",a:"A",s:"S",d:"D",f:"F",g:"G",h:"H",j:"J",k:"K",l:"L",z:"Z",x:"X",c:"C",v:"V",b:"B",n:"N",m:"M"},i={" ":"Space","+":"Plus"};function s(e,t=navigator.platform){var n,l,u;let{ctrlKey:d,altKey:h,metaKey:f,shiftKey:p,key:g}=e,m=[];for(let[e,t]of[d,h,f,p].entries())t&&m.push(a[e]);if(!a.includes(g)){let e=m.includes("Alt")&&c.test(t)&&null!=(n=r[g])?n:g,s=m.includes("Shift")&&c.test(t)&&null!=(l=o[e])?l:e,a=null!=(u=i[s])?u:s;m.push(a)}return m.join("+")}let a=["Control","Alt","Meta","Shift"];function l(e,t){let n,r,o;{var i,s,a,l=(i=e,s=t,r="u"this.reset(),SequenceTracker.CHORD_TIMEOUT)}};function u(e){return e.split(" ").map(e=>l(e)).join(" ")}function d(e){if(!(e instanceof HTMLElement))return!1;let t=e.nodeName.toLowerCase(),n=(e.getAttribute("type")||"").toLowerCase();return"select"===t||"textarea"===t||"input"===t&&"submit"!==n&&"reset"!==n&&"checkbox"!==n&&"radio"!==n&&"file"!==n||e.isContentEditable}SequenceTracker.CHORD_TIMEOUT=1500;let h=new RadixTrie,f=new WeakMap,p=h,g=new SequenceTracker({onReset(){p=h}});function m(e){if(e.defaultPrevented||!(e.target instanceof Node))return;if(d(e.target)){let t=e.target;if(!t.id||!t.ownerDocument.querySelector(`[data-hotkey-scope="${t.id}"]`))return}let t=p.get(s(e));if(!t)return void g.reset();if(g.registerKeypress(e),p=t,t instanceof Leaf){let r,o=e.target,i=!1,s=d(o);for(let e=t.children.length-1;e>=0;e-=1){let n=(r=t.children[e]).getAttribute("data-hotkey-scope");if(!s&&!n||s&&o.id===n){i=!0;break}}if(r&&i){var n;let t;n=r,t=new CustomEvent("hotkey-fire",{cancelable:!0,detail:{path:g.path}}),n.dispatchEvent(t)&&(d(n)?n.focus():n.click()),e.preventDefault()}g.reset()}}function b(e,t){0===Object.keys(h.children).length&&document.addEventListener("keydown",m);let n=(function(e){let t=[],n=[""],r=!1;for(let o=0;oe.map(e=>l(e)).filter(e=>""!==e)).filter(e=>e.length>0)})(t||e.getAttribute("data-hotkey")||"").map(t=>h.insert(t).add(e));f.set(e,n)}function y(e){let t=f.get(e);if(t&&t.length)for(let n of t)n&&n.delete(e);0===Object.keys(h.children).length&&document.removeEventListener("keydown",m)}},97797:(e,t,n)=>{function r(){if(!(this instanceof r))return new r;this.size=0,this.uid=0,this.selectors=[],this.selectorObjects={},this.indexes=Object.create(this.indexes),this.activeIndexes=[]}n.d(t,{h:()=>C,on:()=>A});var o,i=window.document.documentElement,s=i.matches||i.webkitMatchesSelector||i.mozMatchesSelector||i.oMatchesSelector||i.msMatchesSelector;r.prototype.matchesSelector=function(e,t){return s.call(e,t)},r.prototype.querySelectorAll=function(e,t){return t.querySelectorAll(e)},r.prototype.indexes=[];var a=/^#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;r.prototype.indexes.push({name:"ID",selector:function(e){var t;if(t=e.match(a))return t[0].slice(1)},element:function(e){if(e.id)return[e.id]}});var l=/^\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;r.prototype.indexes.push({name:"CLASS",selector:function(e){var t;if(t=e.match(l))return t[0].slice(1)},element:function(e){var t=e.className;if(t){if("string"==typeof t)return t.split(/\s/);else if("object"==typeof t&&"baseVal"in t)return t.baseVal.split(/\s/)}}});var c=/^((?:[\w\u00c0-\uFFFF\-]|\\.)+)/g;r.prototype.indexes.push({name:"TAG",selector:function(e){var t;if(t=e.match(c))return t[0].toUpperCase()},element:function(e){return[e.nodeName.toUpperCase()]}}),r.prototype.indexes.default={name:"UNIVERSAL",selector:function(){return!0},element:function(){return[!0]}},o="function"==typeof window.Map?window.Map:function(){function e(){this.map={}}return e.prototype.get=function(e){return this.map[e+" "]},e.prototype.set=function(e,t){this.map[e+" "]=t},e}();var u=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g;function d(e,t){var n,r,o,i,s,a,l=(e=e.slice(0).concat(e.default)).length,c=t,d=[];do if(u.exec(""),(o=u.exec(c))&&(c=o[3],o[2]||!c)){for(n=0;n3&&void 0!==arguments[3]?arguments[3]:{},i=!!o.capture,s=i?p:f,a=s[e];a||(a=new r,s[e]=a,document.addEventListener(e,E,i)),a.add(t,n)}function C(e,t,n){return e.dispatchEvent(new CustomEvent(t,{bubbles:!0,cancelable:!0,detail:n}))}}}]); +//# sourceMappingURL=50170-271b8594bbf6.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/50517-a287527395ad.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/50517-a287527395ad.js" new file mode 100644 index 0000000..8506621 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/50517-a287527395ad.js" @@ -0,0 +1,14 @@ +performance.mark("js-parse-end:50517-a287527395ad.js"); +(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[50517],{9802:(e,t,r)=>{"use strict";r.d(t,{e:()=>i});var n=r(83592);function i(e){return(0,n.s)(e,Date.now())}},10436:(e,t,r)=>{"use strict";r.d(t,{lG:()=>g,m4:()=>w,jl:()=>c});var n=r(1481),i=r(49539),s=r(38267),o=r(96540),a=r(74848);let l=(0,s.Ay)(n.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"TabNav__StyledTabNav",componentId:"sc-13kad3t-0"})(["",""],i.A),u=(0,s.Ay)(n.A.Link).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"TabNav__StyledTabNavLink",componentId:"sc-13kad3t-1"})(["",""],i.A),c=Object.assign(({as:e,...t})=>(0,a.jsx)(l,{...t,...e?{forwardedAs:e}:{}}),{Link:(0,o.forwardRef)(({as:e,...t},r)=>(0,a.jsx)(u,{...t,...e?{forwardedAs:e}:{},ref:r}))});var d=r(29e3),h=r(45846);let p=(0,o.forwardRef)(function(e,t){return(0,a.jsx)(h.A,{as:d.A,ref:t,...e})}),f=(0,o.forwardRef)(({as:e,...t},r)=>(0,a.jsx)(p,{...t,...e?{forwardedAs:e}:{},ref:r})),m=(0,o.forwardRef)(function(e,t){return(0,a.jsx)(h.A,{as:d.A.Header,ref:t,...e})}),g=Object.assign(f,{Header:(0,o.forwardRef)(({as:e,...t},r)=>(0,a.jsx)(m,{...t,...e?{forwardedAs:e}:{},ref:r}))});var _=r(10095);let y=(0,s.Ay)(_.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Octicon__StyledOcticon",componentId:"sc-jtj3m8-0"})(["",""],({color:e,sx:t})=>(0,i.A)({sx:{color:e,...t}})),w=(0,o.forwardRef)(({as:e,...t},r)=>(0,a.jsx)(y,{...t,...e?{forwardedAs:e}:{},ref:r}));var b=r(55255);let N=(0,s.Ay)(b.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"Tooltip__StyledTooltip",componentId:"sc-145jcib-0"})(["",""],i.A),x=(0,o.forwardRef)(function({as:e,...t},r){return(0,a.jsx)(N,{...t,...e?{forwardedAs:e}:{},ref:r})});x.alignments=b.A.alignments,x.directions=b.A.directions,x.__SLOT__=b.A.__SLOT__;var C=r(9470);let E=(0,o.forwardRef)(function(e,t){return(0,a.jsx)(h.A,{as:C.l,ref:t,...e})}),A=(0,s.Ay)(C.l.Item).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"ActionList__StyledActionListItem",componentId:"sc-1ugfmds-0"})(["",""],i.A);Object.assign(E,{Item:(0,o.forwardRef)(({as:e,...t},r)=>(0,a.jsx)(A,{...t,...e?{forwardedAs:e}:{},ref:r})),Group:function(e){return(0,a.jsx)(h.A,{as:C.l.Group,...e})},Divider:function(e){return(0,a.jsx)(h.A,{as:C.l.Divider,...e})}})},11561:(e,t,r)=>{"use strict";r.d(t,{A:()=>n});function n(e,t){if(!e)throw Error("Invariant failed")}},34052:(e,t,r)=>{"use strict";var n=r(9963),i=r(41241),s=r(90007).loadQuery,o=r(13635),a=r(50456),l=r(40121),u=r(7360),c=r(73720),d=r(42695),h=r(15940),p=r(39420),f=r(6505),m=r(71517),g=r(7058),_=r(53386),y=r(91529),w=r(69487);e.exports={ConnectionHandler:w.ConnectionHandler,applyOptimisticMutation:w.applyOptimisticMutation,commitLocalUpdate:w.commitLocalUpdate,commitMutation:w.commitMutation,graphql:w.graphql,readInlineData:w.readInlineData,requestSubscription:w.requestSubscription,EntryPointContainer:n,RelayEnvironmentProvider:a,ProfilerContext:o,fetchQuery:w.fetchQuery,loadQuery:s,loadEntryPoint:i,useFragment:u,useLazyLoadQuery:c,useEntryPointLoader:l,useQueryLoader:f,useMutation:d,usePaginationFragment:h,usePreloadedQuery:p,useRefetchableFragment:m,useRelayEnvironment:g,useSubscribeToInvalidationState:_,useSubscription:y}},34784:(e,t,r)=>{e.exports=r(34052)},37732:(e,t,r)=>{"use strict";r.d(t,{a:()=>o});let n=new Set(["children","localName","ref","style","className"]),i=new WeakMap,s=(e,t,r,n,s)=>{let o,a,l=null==s?void 0:s[t];void 0===l||r===n?null==r&&t in HTMLElement.prototype?e.removeAttribute(t):e[t]=r:(void 0===(o=i.get(e))&&i.set(e,o=new Map),a=o.get(l),void 0!==r?void 0===a?(o.set(l,a={handleEvent:r}),e.addEventListener(l,a)):a.handleEvent=r:void 0!==a&&(o.delete(l),e.removeEventListener(l,a)))};function o(e=window.React,t,r,i,a){let l,u,c;void 0===t?({tagName:u,elementClass:c,events:i,displayName:a}=e,l=e.react):(l=e,c=r,u=t);let d=l.Component,h=l.createElement,p=new Set(Object.keys(null!=i?i:{}));let v=class v extends d{constructor(){super(...arguments),this.o=null}t(e){if(null!==this.o)for(let t in this.i)s(this.o,t,this.props[t],e?e[t]:void 0,i)}componentDidMount(){var e;this.t(),null==(e=this.o)||e.removeAttribute("defer-hydration")}componentDidUpdate(e){this.t(e)}render(){let{_$Gl:e,...t}=this.props;this.h!==e&&(this.u=t=>{null!==e&&("function"==typeof e?e(t):e.current=t),this.o=t,this.h=e}),this.i={};let r={ref:this.u};for(let[e,i]of Object.entries(t))n.has(e)?r["className"===e?"class":e]=i:p.has(e)||e in c.prototype?this.i[e]=i:r[e]=i;return r.suppressHydrationWarning=!0,h(u,r)}};v.displayName=null!=a?a:c.name;let f=l.forwardRef((e,t)=>h(v,{...e,_$Gl:t},null==e?void 0:e.children));return f.displayName=v.displayName,f}},45062:(e,t,r)=>{"use strict";r.d(t,{s:()=>i});var n=r(70170);function i(e=0,t={}){return(r,i,s)=>{if(!s||"function"!=typeof s.value)throw Error("debounce can only decorate functions");let o=s.value;s.value=(0,n.s)(o,e,t),Object.defineProperty(r,i,s)}}},47990:(e,t,r)=>{"use strict";function n(e,t,r){return Math.min(Math.max(e,r),t)}r.d(t,{BT:()=>m,Du:()=>i});let ColorError=class ColorError extends Error{constructor(e){super(`Failed to parse color: "${e}"`)}};function i(e){if("string"!=typeof e)throw new ColorError(e);if("transparent"===e.trim().toLowerCase())return[0,0,0,0];let t=e.trim();t=h.test(e)?function(e){let t=o[function(e){let t=5381,r=e.length;for(;r;)t=33*t^e.charCodeAt(--r);return(t>>>0)%2341}(e.toLowerCase().trim())];if(!t)throw new ColorError(e);return`#${t}`}(e):e;let r=l.exec(t);if(r){let e=Array.from(r).slice(1);return[...e.slice(0,3).map(e=>parseInt(a(e,2),16)),parseInt(a(e[3]||"f",2),16)/255]}let i=u.exec(t);if(i){let e=Array.from(i).slice(1);return[...e.slice(0,3).map(e=>parseInt(e,16)),parseInt(e[3]||"ff",16)/255]}let s=c.exec(t);if(s){let e=Array.from(s).slice(1);return[...e.slice(0,3).map(e=>parseInt(e,10)),parseFloat(e[3]||"1")]}let p=d.exec(t);if(p){let[t,r,i,s]=Array.from(p).slice(1).map(parseFloat);if(n(0,100,r)!==r||n(0,100,i)!==i)throw new ColorError(e);return[...f(t,r,i),Number.isNaN(s)?1:s]}throw new ColorError(e)}let s=e=>parseInt(e.replace(/_/g,""),36),o="1q29ehhb 1n09sgk7 1kl1ekf_ _yl4zsno 16z9eiv3 1p29lhp8 _bd9zg04 17u0____ _iw9zhe5 _to73___ _r45e31e _7l6g016 _jh8ouiv _zn3qba8 1jy4zshs 11u87k0u 1ro9yvyo 1aj3xael 1gz9zjz0 _3w8l4xo 1bf1ekf_ _ke3v___ _4rrkb__ 13j776yz _646mbhl _nrjr4__ _le6mbhl 1n37ehkb _m75f91n _qj3bzfz 1939yygw 11i5z6x8 _1k5f8xs 1509441m 15t5lwgf _ae2th1n _tg1ugcv 1lp1ugcv 16e14up_ _h55rw7n _ny9yavn _7a11xb_ 1ih442g9 _pv442g9 1mv16xof 14e6y7tu 1oo9zkds 17d1cisi _4v9y70f _y98m8kc 1019pq0v 12o9zda8 _348j4f4 1et50i2o _8epa8__ _ts6senj 1o350i2o 1mi9eiuo 1259yrp0 1ln80gnw _632xcoy 1cn9zldc _f29edu4 1n490c8q _9f9ziet 1b94vk74 _m49zkct 1kz6s73a 1eu9dtog _q58s1rz 1dy9sjiq __u89jo3 _aj5nkwg _ld89jo3 13h9z6wx _qa9z2ii _l119xgq _bs5arju 1hj4nwk9 1qt4nwk9 1ge6wau6 14j9zlcw 11p1edc_ _ms1zcxe _439shk6 _jt9y70f _754zsow 1la40eju _oq5p___ _x279qkz 1fa5r3rv _yd2d9ip _424tcku _8y1di2_ _zi2uabw _yy7rn9h 12yz980_ __39ljp6 1b59zg0x _n39zfzp 1fy9zest _b33k___ _hp9wq92 1il50hz4 _io472ub _lj9z3eo 19z9ykg0 _8t8iu3a 12b9bl4a 1ak5yw0o _896v4ku _tb8k8lv _s59zi6t _c09ze0p 1lg80oqn 1id9z8wb _238nba5 1kq6wgdi _154zssg _tn3zk49 _da9y6tc 1sg7cv4f _r12jvtt 1gq5fmkz 1cs9rvci _lp9jn1c _xw1tdnb 13f9zje6 16f6973h _vo7ir40 _bt5arjf _rc45e4t _hr4e100 10v4e100 _hc9zke2 _w91egv_ _sj2r1kk 13c87yx8 _vqpds__ _ni8ggk8 _tj9yqfb 1ia2j4r4 _7x9b10u 1fc9ld4j 1eq9zldr _5j9lhpx _ez9zl6o _md61fzm".split(" ").reduce((e,t)=>{let r=s(t.substring(0,3)),n=s(t.substring(3)).toString(16),i="";for(let e=0;e<6-n.length;e++)i+="0";return e[r]=`${i}${n}`,e},{}),a=(e,t)=>Array.from(Array(t)).map(()=>e).join(""),l=RegExp(`^#${a("([a-f0-9])",3)}([a-f0-9])?$`,"i"),u=RegExp(`^#${a("([a-f0-9]{2})",3)}([a-f0-9]{2})?$`,"i"),c=RegExp(`^rgba?\\(\\s*(\\d+)\\s*${a(",\\s*(\\d+)\\s*",2)}(?:,\\s*([\\d.]+))?\\s*\\)$`,"i"),d=/^hsla?\(\s*([\d.]+)\s*,\s*([\d.]+)%\s*,\s*([\d.]+)%(?:\s*,\s*([\d.]+))?\s*\)$/i,h=/^[a-z]+$/i,p=e=>Math.round(255*e),f=(e,t,r)=>{let n=r/100;if(0===t)return[n,n,n].map(p);let i=(e%360+360)%360/60,s=t/100*(1-Math.abs(2*n-1)),o=s*(1-Math.abs(i%2-1)),a=0,l=0,u=0;i>=0&&i<1?(a=s,l=o):i>=1&&i<2?(a=o,l=s):i>=2&&i<3?(l=s,u=o):i>=3&&i<4?(l=o,u=s):i>=4&&i<5?(a=o,u=s):i>=5&&i<6&&(a=s,u=o);let c=n-s/2;return[a+c,l+c,u+c].map(p)};function m(e){let[t,r,n,s]=i(e).map((e,t)=>3===t?e:e/255),o=Math.max(t,r,n),a=Math.min(t,r,n),l=(o+a)/2;if(o===a)return[0,0,l,s];let u=o-a;return[60*(t===o?(r-n)/u+6*(r.5?u/(2-o-a):u/(o+a),l,s]}},61388:(e,t,r)=>{"use strict";r.d(t,{_:()=>a});var n=r(36158),i=r(26261),s=r(66500),o=r(24880),a=class extends s.Q{#e;#t=void 0;#r;#n;constructor(e,t){super(),this.#e=e,this.setOptions(t),this.bindMethods(),this.#i()}bindMethods(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)}setOptions(e){let t=this.options;this.options=this.#e.defaultMutationOptions(e),(0,o.f8)(this.options,t)||this.#e.getMutationCache().notify({type:"observerOptionsUpdated",mutation:this.#r,observer:this}),t?.mutationKey&&this.options.mutationKey&&(0,o.EN)(t.mutationKey)!==(0,o.EN)(this.options.mutationKey)?this.reset():this.#r?.state.status==="pending"&&this.#r.setOptions(this.options)}onUnsubscribe(){this.hasListeners()||this.#r?.removeObserver(this)}onMutationUpdate(e){this.#i(),this.#s(e)}getCurrentResult(){return this.#t}reset(){this.#r?.removeObserver(this),this.#r=void 0,this.#i(),this.#s()}mutate(e,t){return this.#n=t,this.#r?.removeObserver(this),this.#r=this.#e.getMutationCache().build(this.#e,this.options),this.#r.addObserver(this),this.#r.execute(e)}#i(){let e=this.#r?.state??(0,n.$)();this.#t={...e,isPending:"pending"===e.status,isSuccess:"success"===e.status,isError:"error"===e.status,isIdle:"idle"===e.status,mutate:this.mutate,reset:this.reset}}#s(e){i.jG.batch(()=>{if(this.#n&&this.hasListeners()){let t=this.#t.variables,r=this.#t.context,n={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};if(e?.type==="success"){try{this.#n.onSuccess?.(e.data,t,r,n)}catch(e){Promise.reject(e)}try{this.#n.onSettled?.(e.data,null,t,r,n)}catch(e){Promise.reject(e)}}else if(e?.type==="error"){try{this.#n.onError?.(e.error,t,r,n)}catch(e){Promise.reject(e)}try{this.#n.onSettled?.(void 0,e.error,t,r,n)}catch(e){Promise.reject(e)}}}this.listeners.forEach(e=>{e(this.#t)})})}}},66661:(e,t,r)=>{"use strict";function n(e){let t=e.parentNode;if(null===t||!(t instanceof HTMLElement))throw Error();let r=0;t instanceof HTMLOListElement&&1!==t.start&&(r=t.start-1);let n=t.children;for(let t=0;tQuote,g:()=>MarkdownQuote});let i=0;function s(e){return e.replace(/&/g,"&").replace(/'/g,"'").replace(/"/g,""").replace(//g,">")}let o={INPUT:e=>e instanceof HTMLInputElement&&e.checked?"[x] ":"[ ] ",CODE(e){let t=e.textContent||"";return e.parentNode&&"PRE"===e.parentNode.nodeName?(e.textContent=`\`\`\` +${t.replace(/\n+$/,"")} +\`\`\` + +`,e):t.indexOf("`")>=0?`\`\` ${t} \`\``:`\`${t}\``},P(e){let t=document.createElement("p");return t.textContent=(e.textContent||"").replace(/<(\/?)(pre|strong|weak|em)>/g,"\\<$1$2\\>"),t},STRONG:e=>`**${e.textContent||""}**`,EM:e=>`_${e.textContent||""}_`,DEL:e=>`~${e.textContent||""}~`,BLOCKQUOTE(e){let t=(e.textContent||"").trim().replace(/^/gm,"> "),r=document.createElement("pre");return r.textContent=`${t} + +`,r},A(e){let t=e.textContent||"",r=e.getAttribute("href");return/^https?:/.test(t)&&t===r?t:r?`[${t}](${r})`:t},IMG(e){let t=e.getAttribute("alt")||"",r=e.getAttribute("src");if(!r)throw Error();let n=e.hasAttribute("width")?` width="${s(e.getAttribute("width")||"")}"`:"",i=e.hasAttribute("height")?` height="${s(e.getAttribute("height")||"")}"`:"";return n||i?`${s(t)}`:`![${t}](${r})`},LI(e){let t,r,s=e.parentNode;if(!s)throw Error();let o="";if(t=e.childNodes[0],r=e.childNodes[1],!t||!(e.childNodes.length<3)||"OL"!==t.nodeName&&"UL"!==t.nodeName||r&&(r.nodeType!==Node.TEXT_NODE||(r.textContent||"").trim()))if("OL"===s.nodeName)if(i>0&&!s.previousSibling){let t=n(e)+i+1;o=`${t}\\. `}else o=`${n(e)+1}. `;else o="* ";let a=o.replace(/\S/g," "),l=(e.textContent||"").trim().replace(/^/gm,a),u=document.createElement("pre");return u.textContent=l.replace(a,o),u},OL(e){let t=document.createElement("li");return t.appendChild(document.createElement("br")),e.append(t),e},H1(e){let t=parseInt(e.nodeName.slice(1));return e.prepend(`${Array(t+1).join("#")} `),e},UL:e=>e};o.UL=o.OL;for(let e=2;e<=6;++e)o[`H${e}`]=o.H1;let Quote=class Quote{constructor(){this.selection=window.getSelection(),this.processSelectionText=e=>e}closest(e){let t=this.range.startContainer,r=t instanceof Element?t:t.parentElement;return r?r.closest(e):null}get active(){var e;return((null==(e=this.selection)?void 0:e.rangeCount)||0)>0}get range(){var e;return(null==(e=this.selection)?void 0:e.rangeCount)?this.selection.getRangeAt(0):new Range}set range(e){var t,r;null==(t=this.selection)||t.removeAllRanges(),null==(r=this.selection)||r.addRange(e)}set processSelectionTextFn(e){this.processSelectionText=e}get selectionText(){var e;return this.processSelectionText((null==(e=this.selection)?void 0:e.toString().trim())||"")}get quotedText(){return`> ${this.selectionText.replace(/\n/g,` +> `)} + +`}select(e){this.selection&&(this.selection.removeAllRanges(),this.selection.selectAllChildren(e))}insert(e){e.value?e.value=`${e.value} + +${this.quotedText}`:e.value=this.quotedText,e.dispatchEvent(new CustomEvent("change",{bubbles:!0,cancelable:!1})),e.focus(),e.selectionStart=e.value.length,e.scrollTop=e.scrollHeight}};let MarkdownQuote=class MarkdownQuote extends Quote{constructor(e="",t){super(),this.scopeSelector=e,this.callback=t}get selectionText(){var e,t;if(!this.selection)return"";let r=function(e,t){let r=e.startContainer;if(!r||!r.parentNode||!(r.parentNode instanceof HTMLElement))throw Error("the range must start within an HTMLElement");let s=r.parentNode,o=e.cloneContents();if(t){let e=o.querySelector(t);e&&(o=document.createDocumentFragment()).appendChild(e)}i=0;let a=s.closest("li");if(s.closest("pre")){let e=document.createElement("pre");e.appendChild(o),(o=document.createDocumentFragment()).appendChild(e)}else if(a&&a.parentNode&&("OL"===a.parentNode.nodeName&&(i=n(a)),!o.querySelector("li"))){let e=document.createElement("li");if(!a.parentNode)throw Error();let t=document.createElement(a.parentNode.nodeName);e.appendChild(o),t.appendChild(e),(o=document.createDocumentFragment()).appendChild(t)}return o}(this.range,null!=(e=this.scopeSelector)?e:"");null==(t=this.callback)||t.call(this,r);let s=document.createNodeIterator(r,NodeFilter.SHOW_ELEMENT,{acceptNode:e=>e.nodeName in o&&!function(e){if(e instanceof HTMLAnchorElement&&1===e.childNodes.length){let t=e.childNodes[0];if(t instanceof HTMLImageElement)return t.src===e.href}return!1}(e)&&("IMG"===e.nodeName||null!=e.firstChild||"INPUT"===e.nodeName&&e instanceof HTMLInputElement&&"checkbox"===e.type)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}),a=[],l=s.nextNode();for(;l;)l instanceof HTMLElement&&a.push(l),l=s.nextNode();for(let e of(a.reverse(),a))e.replaceWith(o[e.nodeName](e));let u=document.body;if(!u)return"";let c=document.createElement("div");c.appendChild(r),c.style.cssText="position:absolute;left:-9999px;",u.appendChild(c);let d="";try{let e=document.createRange();e.selectNodeContents(c),this.selection.removeAllRanges(),this.selection.addRange(e),d=this.selection.toString(),this.selection.removeAllRanges(),e.detach()}finally{u.removeChild(c)}return this.processSelectionText(d.trim())}}},79639:(e,t,r)=>{"use strict";r.d(t,{P:()=>s});var n=r(85551),i=r(40828);function s(e){return(0,n.r)(e,(0,i.e)(Date.now(),1))}},83592:(e,t,r)=>{"use strict";r.d(t,{s:()=>i});var n=r(2642);function i(e,t){let r=(0,n.a)(e),i=(0,n.a)(t);return r.getFullYear()===i.getFullYear()}},84929:(e,t,r)=>{"use strict";r.d(t,{H:()=>i});var n=r(2940);function i(e,t){let r,i,m=t?.additionalDigits??2,g=function(e){let t,r={},n=e.split(s);if(n.length>2)return r;if(/:/.test(n[0])?t=n[0]:(r.date=n[0],t=n[1],o.test(r.date)&&(r.date=e.split(o)[0],t=e.substr(r.date.length,e.length))),t){let e=a.exec(t);e?(r.time=t.replace(e[1],""),r.timezone=e[1]):r.time=t}return r}(e);if(g.date){let e=function(e,t){let r=RegExp("^(?:(\\d{4}|[+-]\\d{"+(4+t)+"})|(\\d{2}|[+-]\\d{"+(2+t)+"})$)"),n=e.match(r);if(!n)return{year:NaN,restDateString:""};let i=n[1]?parseInt(n[1]):null,s=n[2]?parseInt(n[2]):null;return{year:null===s?i:100*s,restDateString:e.slice((n[1]||n[2]).length)}}(g.date,m);r=function(e,t){var r,n,i,s,o,a,u,c,h,m;if(null===t)return new Date(NaN);let g=e.match(l);if(!g)return new Date(NaN);let _=!!g[4],y=d(g[1]),w=d(g[2])-1,b=d(g[3]),N=d(g[4]),x=d(g[5])-1;if(_){let e,a;return(r=N,n=x,r>=1&&r<=53&&n>=0&&n<=6)?(i=t,s=N,o=x,(e=new Date(0)).setUTCFullYear(i,0,4),a=e.getUTCDay()||7,e.setUTCDate(e.getUTCDate()+((s-1)*7+o+1-a)),e):new Date(NaN)}{let e=new Date(0);return(a=t,u=w,c=b,u>=0&&u<=11&&c>=1&&c<=(p[u]||(f(a)?29:28))&&(h=t,(m=y)>=1&&m<=(f(h)?366:365)))?(e.setUTCFullYear(t,w,Math.max(y,b)),e):new Date(NaN)}}(e.restDateString,e.year)}if(!r||isNaN(r.getTime()))return new Date(NaN);let _=r.getTime(),y=0;if(g.time&&isNaN(y=function(e){var t,r,i;let s=e.match(u);if(!s)return NaN;let o=h(s[1]),a=h(s[2]),l=h(s[3]);return(t=o,r=a,i=l,24===t?0===r&&0===i:i>=0&&i<60&&r>=0&&r<60&&t>=0&&t<25)?o*n.s0+a*n.Cg+1e3*l:NaN}(g.time)))return new Date(NaN);if(g.timezone){if(isNaN(i=function(e){var t;if("Z"===e)return 0;let r=e.match(c);if(!r)return 0;let i="+"===r[1]?-1:1,s=parseInt(r[2]),o=r[3]&&parseInt(r[3])||0;return(t=o)>=0&&t<=59?i*(s*n.s0+o*n.Cg):NaN}(g.timezone)))return new Date(NaN)}else{let e=new Date(_+y),t=new Date(0);return t.setFullYear(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()),t.setHours(e.getUTCHours(),e.getUTCMinutes(),e.getUTCSeconds(),e.getUTCMilliseconds()),t}return new Date(_+y+i)}let s=/[T ]/,o=/[Z ]/i,a=/([Z+-].*)$/,l=/^-?(?:(\d{3})|(\d{2})(?:-?(\d{2}))?|W(\d{2})(?:-?(\d{1}))?|)$/,u=/^(\d{2}(?:[.,]\d*)?)(?::?(\d{2}(?:[.,]\d*)?))?(?::?(\d{2}(?:[.,]\d*)?))?$/,c=/^([+-])(\d{2})(?::?(\d{2}))?$/;function d(e){return e?parseInt(e):1}function h(e){return e&&parseFloat(e.replace(",","."))||0}let p=[31,null,31,30,31,30,31,31,30,31,30,31];function f(e){return e%400==0||e%4==0&&e%100!=0}},94747:(e,t,r)=>{"use strict";r.d(t,{n:()=>l});var n=r(96540),i=r(61388),s=r(26261),o=r(24880),a=r(97665);function l(e,t){let r=(0,a.jE)(t),[l]=n.useState(()=>new i._(r,e));n.useEffect(()=>{l.setOptions(e)},[l,e]);let u=n.useSyncExternalStore(n.useCallback(e=>l.subscribe(s.jG.batchCalls(e)),[l]),()=>l.getCurrentResult(),()=>l.getCurrentResult()),c=n.useCallback((e,t)=>{l.mutate(e,t).catch(o.lQ)},[l]);if(u.error&&(0,o.GU)(l.options.throwOnError,[u.error]))throw u.error;return{...u,mutate:c,mutateAsync:u.mutate}}},98107:(e,t,r)=>{"use strict";r.d(t,{lG:()=>n.l,zY:()=>i.z,XI:()=>m});var n=r(85203),i=r(65729);r(49716);var s=r(55004),o=r(38267),a=r(49539),l=r(74848);let u=(0,o.Ay)(s.A).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"UnderlinePanels__StyledUnderlinePanels",componentId:"sc-1w35i85-0"})(["",""],a.A),c=({as:e,...t})=>(0,l.jsx)(u,{forwardedAs:e,...t});c.displayName="UnderlinePanels",Object.assign(c,{Tab:s.A.Tab,Panel:s.A.Panel}),c.__SLOT__=s.A.__SLOT__;var d=r(25744);let{Container:h,...p}=d.X,f=(0,o.Ay)(h).withConfig({shouldForwardProp:e=>"sx"!==e}).withConfig({displayName:"DataTable__StyleDataTableContainer",componentId:"sc-qy1ey2-0"})(["",""],a.A),m=Object.assign(d.X,{Container:function({as:e,...t}){return(0,l.jsx)(f,{...t,...e?{forwardedAs:e}:{}})},...p})}}]); +//# sourceMappingURL=50517-7fe950ec5bbe.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/51220-88337dd2c29d.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/51220-88337dd2c29d.js" new file mode 100644 index 0000000..1267f7b --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/51220-88337dd2c29d.js" @@ -0,0 +1,6 @@ +performance.mark("js-parse-end:51220-88337dd2c29d.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[51220],{38943:(e,t,s)=>{function i(e,t,s){let i,n=s.initialDeps??[],l=!0;function o(){var o,r,h;let a,u;s.key&&(null==(o=s.debug)?void 0:o.call(s))&&(a=Date.now());let d=e();if(!(d.length!==n.length||d.some((e,t)=>n[t]!==e)))return i;if(n=d,s.key&&(null==(r=s.debug)?void 0:r.call(s))&&(u=Date.now()),i=t(...d),s.key&&(null==(h=s.debug)?void 0:h.call(s))){let e=Math.round((Date.now()-a)*100)/100,t=Math.round((Date.now()-u)*100)/100,i=t/16,n=(e,t)=>{for(e=String(e);e.length{n=e},o}function n(e,t){if(void 0!==e)return e;throw Error(`Unexpected undefined${t?`: ${t}`:""}`)}s.d(t,{YV:()=>Virtualizer,vp:()=>h,Ox:()=>v,AO:()=>m,T6:()=>a,MH:()=>f,TH:()=>d,e8:()=>p});let l=(e,t,s)=>{let i;return function(...n){e.clearTimeout(i),i=e.setTimeout(()=>t.apply(this,n),s)}},o=e=>{let{offsetWidth:t,offsetHeight:s}=e;return{width:t,height:s}},r=e=>e,h=e=>{let t=Math.max(e.startIndex-e.overscan,0),s=Math.min(e.endIndex+e.overscan,e.count-1),i=[];for(let e=t;e<=s;e++)i.push(e);return i},a=(e,t)=>{let s=e.scrollElement;if(!s)return;let i=e.targetWindow;if(!i)return;let n=e=>{let{width:s,height:i}=e;t({width:Math.round(s),height:Math.round(i)})};if(n(o(s)),!i.ResizeObserver)return()=>{};let l=new i.ResizeObserver(t=>{let i=()=>{let e=t[0];if(null==e?void 0:e.borderBoxSize){let t=e.borderBoxSize[0];if(t)return void n({width:t.inlineSize,height:t.blockSize})}n(o(s))};e.options.useAnimationFrameWithResizeObserver?requestAnimationFrame(i):i()});return l.observe(s,{box:"border-box"}),()=>{l.unobserve(s)}},u={passive:!0},d=(e,t)=>{let s=e.scrollElement;if(!s)return;let i=()=>{t({width:s.innerWidth,height:s.innerHeight})};return i(),s.addEventListener("resize",i,u),()=>{s.removeEventListener("resize",i)}},c="u"{let s=e.scrollElement;if(!s)return;let i=e.targetWindow;if(!i)return;let n=0,o=e.options.useScrollendEvent&&c?()=>void 0:l(i,()=>{t(n,!1)},e.options.isScrollingResetDelay),r=i=>()=>{let{horizontal:l,isRtl:r}=e.options;n=l?s.scrollLeft*(r&&-1||1):s.scrollTop,o(),t(n,i)},h=r(!0),a=r(!1);s.addEventListener("scroll",h,u);let d=e.options.useScrollendEvent&&c;return d&&s.addEventListener("scrollend",a,u),()=>{s.removeEventListener("scroll",h),d&&s.removeEventListener("scrollend",a)}},f=(e,t)=>{let s=e.scrollElement;if(!s)return;let i=e.targetWindow;if(!i)return;let n=0,o=e.options.useScrollendEvent&&c?()=>void 0:l(i,()=>{t(n,!1)},e.options.isScrollingResetDelay),r=i=>()=>{n=s[e.options.horizontal?"scrollX":"scrollY"],o(),t(n,i)},h=r(!0),a=r(!1);s.addEventListener("scroll",h,u);let d=e.options.useScrollendEvent&&c;return d&&s.addEventListener("scrollend",a,u),()=>{s.removeEventListener("scroll",h),d&&s.removeEventListener("scrollend",a)}},g=(e,t,s)=>{if(null==t?void 0:t.borderBoxSize){let e=t.borderBoxSize[0];if(e)return Math.round(e[s.options.horizontal?"inlineSize":"blockSize"])}return e[s.options.horizontal?"offsetWidth":"offsetHeight"]},p=(e,{adjustments:t=0,behavior:s},i)=>{var n,l;null==(l=null==(n=i.scrollElement)?void 0:n.scrollTo)||l.call(n,{[i.options.horizontal?"left":"top"]:e+t,behavior:s})},v=(e,{adjustments:t=0,behavior:s},i)=>{var n,l;null==(l=null==(n=i.scrollElement)?void 0:n.scrollTo)||l.call(n,{[i.options.horizontal?"left":"top"]:e+t,behavior:s})};let Virtualizer=class Virtualizer{constructor(e){this.unsubs=[],this.scrollElement=null,this.targetWindow=null,this.isScrolling=!1,this.currentScrollToIndex=null,this.measurementsCache=[],this.itemSizeCache=new Map,this.laneAssignments=new Map,this.pendingMeasuredCacheIndexes=[],this.prevLanes=void 0,this.lanesChangedFlag=!1,this.lanesSettling=!1,this.scrollRect=null,this.scrollOffset=null,this.scrollDirection=null,this.scrollAdjustments=0,this.elementsCache=new Map,this.observer=(()=>{let e=null,t=()=>e||(this.targetWindow&&this.targetWindow.ResizeObserver?e=new this.targetWindow.ResizeObserver(e=>{e.forEach(e=>{let t=()=>{this._measureElement(e.target,e)};this.options.useAnimationFrameWithResizeObserver?requestAnimationFrame(t):t()})}):null);return{disconnect:()=>{var s;null==(s=t())||s.disconnect(),e=null},observe:e=>{var s;return null==(s=t())?void 0:s.observe(e,{box:"border-box"})},unobserve:e=>{var s;return null==(s=t())?void 0:s.unobserve(e)}}})(),this.range=null,this.setOptions=e=>{Object.entries(e).forEach(([t,s])=>{void 0===s&&delete e[t]}),this.options={debug:!1,initialOffset:0,overscan:1,paddingStart:0,paddingEnd:0,scrollPaddingStart:0,scrollPaddingEnd:0,horizontal:!1,getItemKey:r,rangeExtractor:h,onChange:()=>{},measureElement:g,initialRect:{width:0,height:0},scrollMargin:0,gap:0,indexAttribute:"data-index",initialMeasurementsCache:[],lanes:1,isScrollingResetDelay:150,enabled:!0,isRtl:!1,useScrollendEvent:!1,useAnimationFrameWithResizeObserver:!1,...e}},this.notify=e=>{var t,s;null==(s=(t=this.options).onChange)||s.call(t,this,e)},this.maybeNotify=i(()=>(this.calculateRange(),[this.isScrolling,this.range?this.range.startIndex:null,this.range?this.range.endIndex:null]),e=>{this.notify(e)},{key:!1,debug:()=>this.options.debug,initialDeps:[this.isScrolling,this.range?this.range.startIndex:null,this.range?this.range.endIndex:null]}),this.cleanup=()=>{this.unsubs.filter(Boolean).forEach(e=>e()),this.unsubs=[],this.observer.disconnect(),this.scrollElement=null,this.targetWindow=null},this._didMount=()=>()=>{this.cleanup()},this._willUpdate=()=>{var e;let t=this.options.enabled?this.options.getScrollElement():null;if(this.scrollElement!==t){if(this.cleanup(),!t)return void this.maybeNotify();this.scrollElement=t,this.scrollElement&&"ownerDocument"in this.scrollElement?this.targetWindow=this.scrollElement.ownerDocument.defaultView:this.targetWindow=(null==(e=this.scrollElement)?void 0:e.window)??null,this.elementsCache.forEach(e=>{this.observer.observe(e)}),this.unsubs.push(this.options.observeElementRect(this,e=>{this.scrollRect=e,this.maybeNotify()})),this.unsubs.push(this.options.observeElementOffset(this,(e,t)=>{this.scrollAdjustments=0,this.scrollDirection=t?this.getScrollOffset()this.options.enabled?(this.scrollRect=this.scrollRect??this.options.initialRect,this.scrollRect[this.options.horizontal?"width":"height"]):(this.scrollRect=null,0),this.getScrollOffset=()=>this.options.enabled?(this.scrollOffset=this.scrollOffset??("function"==typeof this.options.initialOffset?this.options.initialOffset():this.options.initialOffset),this.scrollOffset):(this.scrollOffset=null,0),this.getFurthestMeasurement=(e,t)=>{let s=new Map,i=new Map;for(let n=t-1;n>=0;n--){let t=e[n];if(s.has(t.lane))continue;let l=i.get(t.lane);if(null==l||t.end>l.end?i.set(t.lane,t):t.ende.end===t.end?e.index-t.index:e.end-t.end)[0]:void 0},this.getMeasurementOptions=i(()=>[this.options.count,this.options.paddingStart,this.options.scrollMargin,this.options.getItemKey,this.options.enabled,this.options.lanes],(e,t,s,i,n,l)=>(void 0!==this.prevLanes&&this.prevLanes!==l&&(this.lanesChangedFlag=!0),this.prevLanes=l,this.pendingMeasuredCacheIndexes=[],{count:e,paddingStart:t,scrollMargin:s,getItemKey:i,enabled:n,lanes:l}),{key:!1}),this.getMeasurements=i(()=>[this.getMeasurementOptions(),this.itemSizeCache],({count:e,paddingStart:t,scrollMargin:s,getItemKey:i,enabled:n,lanes:l},o)=>{if(!n)return this.measurementsCache=[],this.itemSizeCache.clear(),this.laneAssignments.clear(),[];if(this.laneAssignments.size>e)for(let t of this.laneAssignments.keys())t>=e&&this.laneAssignments.delete(t);this.lanesChangedFlag&&(this.lanesChangedFlag=!1,this.lanesSettling=!0,this.measurementsCache=[],this.itemSizeCache.clear(),this.laneAssignments.clear(),this.pendingMeasuredCacheIndexes=[]),0!==this.measurementsCache.length||this.lanesSettling||(this.measurementsCache=this.options.initialMeasurementsCache,this.measurementsCache.forEach(e=>{this.itemSizeCache.set(e.key,e.size)}));let r=this.lanesSettling?0:this.pendingMeasuredCacheIndexes.length>0?Math.min(...this.pendingMeasuredCacheIndexes):0;this.pendingMeasuredCacheIndexes=[],this.lanesSettling&&this.measurementsCache.length===e&&(this.lanesSettling=!1);let h=this.measurementsCache.slice(0,r),a=Array(l).fill(void 0);for(let e=0;e1){let i=a[e=u],n=void 0!==i?h[i]:void 0;l=n?n.end+this.options.gap:t+s}else{let i=1===this.options.lanes?h[n-1]:this.getFurthestMeasurement(h,n);l=i?i.end+this.options.gap:t+s,e=i?i.lane:n%this.options.lanes,this.options.lanes>1&&this.laneAssignments.set(n,e)}let d=o.get(r),c="number"==typeof d?d:this.options.estimateSize(n),m=l+c;h[n]={index:n,start:l,size:c,end:m,key:r,lane:e},a[e]=n}return this.measurementsCache=h,h},{key:!1,debug:()=>this.options.debug}),this.calculateRange=i(()=>[this.getMeasurements(),this.getSize(),this.getScrollOffset(),this.options.lanes],(e,t,s,i)=>this.range=e.length>0&&t>0?function({measurements:e,outerSize:t,scrollOffset:s,lanes:i}){let n=e.length-1;if(e.length<=i)return{startIndex:0,endIndex:n};let l=b(0,n,t=>e[t].start,s),o=l;if(1===i)for(;o1){let r=Array(i).fill(0);for(;oe=0&&h.some(e=>e>=s);){let t=e[l];h[t.lane]=t.start,l--}l=Math.max(0,l-l%i),o=Math.min(n,o+(i-1-o%i))}return{startIndex:l,endIndex:o}}({measurements:e,outerSize:t,scrollOffset:s,lanes:i}):null,{key:!1,debug:()=>this.options.debug}),this.getVirtualIndexes=i(()=>{let e=null,t=null,s=this.calculateRange();return s&&(e=s.startIndex,t=s.endIndex),this.maybeNotify.updateDeps([this.isScrolling,e,t]),[this.options.rangeExtractor,this.options.overscan,this.options.count,e,t]},(e,t,s,i,n)=>null===i||null===n?[]:e({startIndex:i,endIndex:n,overscan:t,count:s}),{key:!1,debug:()=>this.options.debug}),this.indexFromElement=e=>{let t=this.options.indexAttribute,s=e.getAttribute(t);return s?parseInt(s,10):(console.warn(`Missing attribute name '${t}={index}' on measured element.`),-1)},this._measureElement=(e,t)=>{let s=this.indexFromElement(e),i=this.measurementsCache[s];if(!i)return;let n=i.key,l=this.elementsCache.get(n);l!==e&&(l&&this.observer.unobserve(l),this.observer.observe(e),this.elementsCache.set(n,e)),e.isConnected&&this.resizeItem(s,this.options.measureElement(e,t,this))},this.resizeItem=(e,t)=>{let s=this.measurementsCache[e];if(!s)return;let i=t-(this.itemSizeCache.get(s.key)??s.size);0!==i&&((void 0!==this.shouldAdjustScrollPositionOnItemSizeChange?this.shouldAdjustScrollPositionOnItemSizeChange(s,i,this):s.start{e?this._measureElement(e,void 0):this.elementsCache.forEach((e,t)=>{e.isConnected||(this.observer.unobserve(e),this.elementsCache.delete(t))})},this.getVirtualItems=i(()=>[this.getVirtualIndexes(),this.getMeasurements()],(e,t)=>{let s=[];for(let i=0,n=e.length;ithis.options.debug}),this.getVirtualItemForOffset=e=>{let t=this.getMeasurements();if(0!==t.length)return n(t[b(0,t.length-1,e=>n(t[e]).start,e)])},this.getMaxScrollOffset=()=>{if(!this.scrollElement)return 0;if("scrollHeight"in this.scrollElement)return this.options.horizontal?this.scrollElement.scrollWidth-this.scrollElement.clientWidth:this.scrollElement.scrollHeight-this.scrollElement.clientHeight;{let e=this.scrollElement.document.documentElement;return this.options.horizontal?e.scrollWidth-this.scrollElement.innerWidth:e.scrollHeight-this.scrollElement.innerHeight}},this.getOffsetForAlignment=(e,t,s=0)=>{if(!this.scrollElement)return 0;let i=this.getSize(),n=this.getScrollOffset();return"auto"===t&&(t=e>=n+i?"end":"start"),"center"===t?e+=(s-i)/2:"end"===t&&(e-=i),Math.max(Math.min(this.getMaxScrollOffset(),e),0)},this.getOffsetForIndex=(e,t="auto")=>{e=Math.max(0,Math.min(e,this.options.count-1));let s=this.measurementsCache[e];if(!s)return;let i=this.getSize(),n=this.getScrollOffset();if("auto"===t)if(s.end>=n+i-this.options.scrollPaddingEnd)t="end";else{if(!(s.start<=n+this.options.scrollPaddingStart))return[n,t];t="start"}if("end"===t&&e===this.options.count-1)return[this.getMaxScrollOffset(),t];let l="end"===t?s.end+this.options.scrollPaddingEnd:s.start-this.options.scrollPaddingStart;return[this.getOffsetForAlignment(l,t,s.size),t]},this.isDynamicMode=()=>this.elementsCache.size>0,this.scrollToOffset=(e,{align:t="start",behavior:s}={})=>{"smooth"===s&&this.isDynamicMode()&&console.warn("The `smooth` scroll behavior is not fully supported with dynamic size."),this._scrollToOffset(this.getOffsetForAlignment(e,t),{adjustments:void 0,behavior:s})},this.scrollToIndex=(e,{align:t="auto",behavior:s}={})=>{"smooth"===s&&this.isDynamicMode()&&console.warn("The `smooth` scroll behavior is not fully supported with dynamic size."),e=Math.max(0,Math.min(e,this.options.count-1)),this.currentScrollToIndex=e;let i=0,n=t=>{if(!this.targetWindow)return;let i=this.getOffsetForIndex(e,t);if(!i)return void console.warn("Failed to get offset for index:",e);let[n,o]=i;this._scrollToOffset(n,{adjustments:void 0,behavior:s}),this.targetWindow.requestAnimationFrame(()=>{let t=()=>{if(this.currentScrollToIndex!==e)return;let t=this.getScrollOffset(),s=this.getOffsetForIndex(e,o);s?1.01>Math.abs(s[0]-t)||l(o):console.warn("Failed to get offset for index:",e)};this.isDynamicMode()?this.targetWindow.requestAnimationFrame(t):t()})},l=t=>{this.targetWindow&&this.currentScrollToIndex===e&&(++i<10?this.targetWindow.requestAnimationFrame(()=>n(t)):console.warn(`Failed to scroll to index ${e} after 10 attempts.`))};n(t)},this.scrollBy=(e,{behavior:t}={})=>{"smooth"===t&&this.isDynamicMode()&&console.warn("The `smooth` scroll behavior is not fully supported with dynamic size."),this._scrollToOffset(this.getScrollOffset()+e,{adjustments:void 0,behavior:t})},this.getTotalSize=()=>{var e;let t,s=this.getMeasurements();if(0===s.length)t=this.options.paddingStart;else if(1===this.options.lanes)t=(null==(e=s[s.length-1])?void 0:e.end)??0;else{let e=Array(this.options.lanes).fill(null),i=s.length-1;for(;i>=0&&e.some(e=>null===e);){let t=s[i];null===e[t.lane]&&(e[t.lane]=t.end),i--}t=Math.max(...e.filter(e=>null!==e))}return Math.max(t-this.options.scrollMargin+this.options.paddingEnd,0)},this._scrollToOffset=(e,{adjustments:t,behavior:s})=>{this.options.scrollToFn(e,{behavior:s,adjustments:t},this)},this.measure=()=>{this.itemSizeCache=new Map,this.laneAssignments=new Map,this.notify(!1)},this.setOptions(e)}};let b=(e,t,s,i)=>{for(;e<=t;){let n=(e+t)/2|0,l=s(n);if(li))return n;t=n-1}}return e>0?e-1:0}},51220:(e,t,s)=>{s.d(t,{Te:()=>h,XW:()=>a});var i=s(96540),n=s(40961),l=s(38943);let o="u">typeof document?i.useLayoutEffect:i.useEffect;function r({useFlushSync:e=!0,...t}){let s=i.useReducer(()=>({}),{})[1],r={...t,onChange:(i,l)=>{var o;e&&l?(0,n.flushSync)(s):s(),null==(o=t.onChange)||o.call(t,i,l)}},[h]=i.useState(()=>new l.YV(r));return h.setOptions(r),o(()=>h._didMount(),[]),o(()=>h._willUpdate()),h}function h(e){return r({observeElementRect:l.T6,observeElementOffset:l.AO,scrollToFn:l.Ox,...e})}function a(e){return r({getScrollElement:()=>"u">typeof document?window:null,observeElementRect:l.TH,observeElementOffset:l.MH,scrollToFn:l.e8,initialOffset:()=>"u">typeof document?window.scrollY:0,...e})}}}]); +//# sourceMappingURL=51220-b569bff8502a.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/51519-2093a99df21e.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/51519-2093a99df21e.js" new file mode 100644 index 0000000..edd2a37 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/51519-2093a99df21e.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:51519-2093a99df21e.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[51519],{2025:(e,t,n)=>{let r,o,a;n.d(t,{Av:()=>s,it:()=>u});var i=n(74057),l=n(46865),c=n(56038);function u(e,t=!1,n=!1){var c,d;return!n&&s(e)||function(e,t){let n=r instanceof Element?r:e&&e.ownerDocument&&e.ownerDocument.activeElement?e.ownerDocument.activeElement:null;return null!==n&&(!t||n!==e)&&(!!(n===e&&(0,l.Z8)(n)||e.contains(n)&&!function(e){if(e instanceof i.A)return!0;let t=e instanceof HTMLAnchorElement||e instanceof HTMLButtonElement,n=e.parentElement?.classList.contains("task-list-item");if(t&&n)return!0;if(!(a instanceof Element))return!1;let r=e.closest(f);return!!r&&r===a.closest(f)}(n))||a instanceof Element&&e.contains(a)&&!!a.closest("details[open] > summary"))}(e,t)||(c=e).matches(":active:enabled")||c.contains(o)||!!((d=e).closest(".is-dirty")||d.querySelector(".is-dirty"))}function s(e){for(let t of e.querySelectorAll("input, textarea"))if((t instanceof HTMLInputElement||t instanceof HTMLTextAreaElement)&&function(e){if(e instanceof HTMLInputElement&&("checkbox"===e.type||"radio"===e.type)){if(e.checked!==e.defaultChecked)return!0}else if(e.value!==e.defaultValue)return!0;return!1}(t))return!0;return!1}c.XC?.addEventListener("mousedown",function(e){o=e.target},!0),c.XC?.addEventListener("mouseup",function(e){o=null,a=e.target},!0),c.XC?.addEventListener("contextmenu",function(e){o=null,a=e.target},!0),c.XC?.addEventListener("dragend",function(){o=null},!0);let f="a[href], button"},46865:(e,t,n)=>{n.d(t,{Cy:()=>l,K3:()=>s,Z8:()=>c,k_:()=>a,lK:()=>f,m$:()=>i});var r=n(88578);function o(e,t,n){return e.dispatchEvent(new CustomEvent(t,{bubbles:!0,cancelable:n}))}function a(e,t){t&&(function(e,t){if(!(e instanceof HTMLFormElement))throw TypeError("The specified element is not of type HTMLFormElement.");if(!(t instanceof HTMLElement))throw TypeError("The specified element is not of type HTMLElement.");if("submit"!==t.type)throw TypeError("The specified element is not a submit button.");if(!e||e!==t.form)throw Error("The specified element is not owned by the form element.")}(e,t),(0,r.A)(t)),o(e,"submit",!0)&&e.submit()}function i(e,t){if("boolean"==typeof t)if(e instanceof HTMLInputElement)e.checked=t;else throw TypeError("only checkboxes can be set to boolean value");else if("checkbox"===e.type)throw TypeError("checkbox can't be set to string value");else e.value=t;o(e,"change",!1)}function l(e,t){for(let n in t){let r=t[n],o=e.elements.namedItem(n);o instanceof HTMLInputElement?o.value=r:o instanceof HTMLTextAreaElement&&(o.value=r)}}function c(e){if(!(e instanceof HTMLElement))return!1;let t=e.nodeName.toLowerCase(),n=(e.getAttribute("type")||"").toLowerCase();return"select"===t||"textarea"===t||"input"===t&&"submit"!==n&&"reset"!==n||e.isContentEditable}function u(e){return new URLSearchParams(e)}function s(e,t){let n=new URLSearchParams(e.search);for(let[e,r]of u(t))n.append(e,r);return n.toString()}function f(e){return u(new FormData(e)).toString()}},51519:(e,t,n)=>{n.d(t,{Hb:()=>T,Uv:()=>b,jH:()=>p,updateContent:()=>h,yQ:()=>m});var r=n(2025),o=n(21403),a=n(54852),i=n(69759),l=n(95493),c=n(82518),u=n(53627),s=n(51987);let f=new WeakMap,d={};function m(){for(let e of Object.keys(d))delete d[e];let e=(0,u.JV)();e.staleRecords=d,(0,u.C3)(e),window.location.reload()}function p(){if(Object.keys(d).length>0){let e=(0,u.JV)();e.staleRecords=d,(0,u.C3)(e)}}async function h(e,t={activateScripts:!1}){if(f.get(e))return;let n=e.hasAttribute("data-retain-focus"),o=e.getAttribute("data-url");if(!o)throw Error("could not get url");let a=new AbortController;f.set(e,a);let i={Accept:"text/html",...(0,s.kt)()};try{document.hidden?(0,c.iv)({incrementKey:"UPDATABLE_CONTENT_XHR_REQUEST_INVISIBLE",requestUrl:window.location.href,referredRequestUrl:o}):(0,c.iv)({incrementKey:"UPDATABLE_CONTENT_XHR_REQUEST_VISIBLE",requestUrl:window.location.href,referredRequestUrl:o})}catch{}try{let l=await fetch(o,{signal:a.signal,headers:i});if(!l.ok)return;let c=await l.text();if((0,r.it)(e,n))return void console.warn("Failed to update content with interactions",e);return T(c)?d[o]=c:delete d[o],E(e,c,{retainFocus:n,activateScripts:t.activateScripts}),c}catch{}finally{f.delete(e)}}async function b(e,t,n=!1){let r=f.get(e);r?.abort();let o=e.closest(".js-updatable-content[data-url], .js-updatable-content [data-url]");return!n&&o&&o===e&&(T(t)?d[o.getAttribute("data-url")||""]=t:delete d[o?.getAttribute("data-url")||""]),E(e,t,{retainFocus:!1,activateScripts:!1})}function E(e,t,n){return(0,l.JR)(document,()=>{let r=(0,i.B)(document,t.trim());n.activateScripts&&function(e){for(let t of[...Array.from(e.querySelectorAll("script[src]")),...Array.from(e.querySelectorAll("template")).flatMap(e=>Array.from(e.content.querySelectorAll("script[src]")))])!function(e){let{src:t}=e;if(!t)return;let n=document.createElement("script");(function(e,t){for(let{name:n,value:r}of t.attributes)e.setAttribute(n,r)})(n,e),e.replaceWith(n)}(t)}(r);let o=n.retainFocus&&e.ownerDocument&&e===e.ownerDocument.activeElement?r.querySelector("*"):null,l=Array.from(e.querySelectorAll("details[open][id]")).map(e=>e.id);for(let t of("DETAILS"===e.tagName&&e.id&&e.hasAttribute("open")&&l.push(e.id),e.querySelectorAll(".js-updatable-content-preserve-scroll-position"))){let e=t.getAttribute("data-updatable-content-scroll-position-id")||"";y.set(e,t.scrollTop)}for(let e of l){let t=r.querySelector(`#${e}`);t&&t.setAttribute("open","")}(0,a.r9)(e,r),o instanceof HTMLElement&&o.focus()})}let y=new Map;function T(e){return!e.includes("data-nonce")}(0,o.lB)(".js-updatable-content-preserve-scroll-position",{constructor:HTMLElement,add(e){let t=e.getAttribute("data-updatable-content-scroll-position-id");if(!t)return;let n=y.get(t);null!=n&&(e.scrollTop=n)}})},53627:(e,t,n)=>{n.d(t,{C3:()=>c,JV:()=>a,K3:()=>d,MM:()=>u,OE:()=>m,Zu:()=>f,bj:()=>i,jc:()=>s,kd:()=>l});var r=n(56038);let o=null;function a(){return r.Kn?.state||{}}function i(e){p(a(),"",e)}function l(e){r.Kn?.pushState({appId:a().appId},"",e),h()}function c(e){let t={...a(),...e};o&&(o=t),p(t,"",location.href)}function u(e){i(`?${e.toString()}${r.fV.hash}`)}function s(){i(r.fV.pathname+r.fV.hash)}function f(e){i(e.startsWith("#")?e:`#${e}`),(o=a())&&requestIdleCallback(()=>{!history.state&&o&&(c(o),o=null)})}function d(){i(r.fV.pathname+r.fV.search)}function m(){r.Kn?.back()}function p(e,t,n){r.Kn?.replaceState(e,t,n),h()}function h(){r.cg?.dispatchEvent(new CustomEvent("statechange",{bubbles:!1,cancelable:!1}))}},54852:(e,t,n)=>{n.d(t,{Eu:()=>l,r9:()=>i});var r=n(83770);function o(e){return{getNodeKey:()=>null,onBeforeElUpdated:(t,n)=>{if("TURBO-FRAME"===n.tagName||n.matches(".js-task-list-field, .contains-task-list")||"false"===n.getAttribute("data-morpheus-enabled"))return t.replaceWith(n),!1;if(t.hasAttribute("data-catalyst")&&n.setAttribute("data-catalyst",t.getAttribute("data-catalyst")||""),t.hasAttribute("data-morpheus-ignore"))for(let e of(t.getAttribute("data-morpheus-ignore")||"").trim().split(/\s+/))t.hasAttribute(e)?n.setAttribute(e,t.getAttribute(e)||""):n.removeAttribute(e);return e?.keepInputValues&&(n instanceof HTMLInputElement&&n.type===t.type||n instanceof HTMLTextAreaElement)&&(n instanceof HTMLInputElement&&("checkbox"===n.type||"radio"===n.type)?n.checked=t.checked:n.value=t.value),!0},onBeforeElChildrenUpdated:(e,t)=>{for(let n of[...e.childNodes,...t.childNodes])n.nodeType===Node.COMMENT_NODE&&n.remove();return!0},onElUpdated:e=>{e.connectedCallback&&queueMicrotask(()=>{e.disconnectedCallback?.(),e.connectedCallback?.()})}}}function a(e){let t=e.closest("[data-morpheus-enabled]");return null!=t&&"false"!==t.getAttribute("data-morpheus-enabled")}function i(e,t,n){if("string"==typeof t){let e=document.createElement("template");e.innerHTML=t,t=e.content}if(!a(e))return void e.replaceWith(t);if(t instanceof DocumentFragment){let a=Array.from(t.children);a.length?((0,r.A)(e,a[0],o(n)),e.after(...a.slice(1))):e.replaceWith(t)}else(0,r.A)(e,t,o(n))}function l(e,t,n){if(!a(e)){e.innerHTML=t;return}let i="",l="";e.firstChild?.nodeType===Node.TEXT_NODE&&(i=e.firstChild.nodeValue?.match(/^\s+/)?.[0]||""),e.lastChild?.nodeType===Node.TEXT_NODE&&(l=e.lastChild.nodeValue?.match(/\s+$/)?.[0]||"");let c=e.cloneNode(!1);c.innerHTML=`${i}${t.trim()}${l}`,(0,r.A)(e,c,o(n))}},69759:(e,t,n)=>{n.d(t,{B:()=>r});function r(e,t){let n=e.createElement("template");return n.innerHTML=t,e.importNode(n.content,!0)}},88578:(e,t,n)=>{function r(e){let t=e.closest("form");if(!(t instanceof HTMLFormElement))return;let n=o(t);if(e.name){let r=e.matches("input[type=submit]")?"Submit":"",o=e.value||r;n||((n=document.createElement("input")).type="hidden",n.classList.add("js-submit-button-value"),t.prepend(n)),n.name=e.name,n.value=o}else n&&n.remove()}function o(e){let t=e.querySelector("input.js-submit-button-value");return t instanceof HTMLInputElement?t:null}n.d(t,{A:()=>r,C:()=>o})}}]); +//# sourceMappingURL=51519-b2a07b852204.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/52302-61c263b13bc6.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/52302-61c263b13bc6.js" new file mode 100644 index 0000000..4c2f0c6 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/52302-61c263b13bc6.js" @@ -0,0 +1,15 @@ +performance.mark("js-parse-end:52302-61c263b13bc6.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[52302],{14496:(e,t,n)=>{n.d(t,{b:()=>_});var a=n(74848),r=n(16522),l=n(94236),s=n(21373),i=n(5524),o=n(73077),c=n(38621),u=n(51120),d=n(42455),h=n(69599),m=n(95869),g=n(77430),p=n(78223);function y(e){let t,n,l,s=(0,r.c)(12),{topLevelAgents:o,customAgents:c,selectedAgent:u,onSelectAgent:d}=e;return s[0]!==d||s[1]!==u||s[2]!==o?(t=o.length>0&&(0,a.jsxs)(i.l.Group,{selectionVariant:"single",children:[(0,a.jsx)(i.l.GroupHeading,{children:"Agents"}),o.map(e=>{let t=(0,p.sS)(e.slug),n=u?.typeName==="topLevel"&&u.topLevelAgentId===e.id,r=!u?.typeName&&t,l=n||r;return(0,a.jsxs)(i.l.Item,{disabled:!1,selected:l,onSelect:()=>d(l?{}:{typeName:"topLevel",topLevelAgentId:e.id}),children:[(0,a.jsx)(i.l.LeadingVisual,{children:(0,a.jsx)(g.r,{src:e.avatar_url||"",size:16,square:!0})}),e.display_name]},e.id)})]}),s[0]=d,s[1]=u,s[2]=o,s[3]=t):t=s[3],s[4]!==c||s[5]!==d||s[6]!==u||s[7]!==o.length?(n=c.length>0&&(0,a.jsxs)(a.Fragment,{children:[o.length>0&&(0,a.jsx)(i.l.Divider,{}),(0,a.jsxs)(i.l.Group,{selectionVariant:"single",children:[(0,a.jsx)(i.l.GroupHeading,{children:"Custom agents"}),c.map(e=>{let t=!!e.config_error&&e.config_error.length>0,n=u.subAgentSlug===e.name;return(0,a.jsx)(i.l.Item,{disabled:t,inactiveText:t?e.config_error:void 0,selected:n,onSelect:()=>d(n?{}:{typeName:"customSubAgent",subAgentSlug:e.name}),children:e.display_name||e.name},e.name)})]})]}),s[4]=c,s[5]=d,s[6]=u,s[7]=o.length,s[8]=n):n=s[8],s[9]!==t||s[10]!==n?(l=(0,a.jsxs)(a.Fragment,{children:[t,n]}),s[9]=t,s[10]=n,s[11]=l):l=s[11],l}try{y.displayName||(y.displayName="AgentListItems")}catch{}var b=n(82156),f=n(63422),v=n(34164),S=n(96540);function _(e){let t,n,o,_,I,A,w,j,N,k,L,O,R,T=(0,r.c)(50),{repo:B,branch:E,selectedAgent:P,onSelectAgent:$,iconOnly:F,disabled:G,buttonProps:q}=e,W=void 0===F||F,V=void 0!==G&&G;T[0]!==B?(t={repo:B},T[0]=B,T[1]=t):t=T[1];let{data:D,isLoading:M}=function(e){let t,n,a=(0,r.c)(4),{repo:l}=e;a[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,h.G7)("agent_session_retry_fetch_capi_on_401"),a[0]=t):t=a[0];let s=t;return a[1]!==l.nameOnly||a[2]!==l.owner?(n={queryKey:["custom-agents",l.owner,l.nameOnly],queryFn:async()=>{try{let e=await (0,u.I)({path:`/agents/swe/custom-agents/${l.owner}/${l.nameOnly}`,retryOn401:s});if(404===e.status)return[];return(await e.json()).agents}catch{return[]}}},a[1]=l.nameOnly,a[2]=l.owner,a[3]=n):n=a[3],(0,d.b)(n)}(t);T[2]!==D?(n=void 0===D?[]:D,T[2]=D,T[3]=n):n=T[3];let H=n,{data:K,isLoading:Q}=(0,m.n)(B.nameWithOwner);T[4]!==K?(o=void 0===K?[]:K,T[4]=K,T[5]=o):o=T[5];let U=o,z=B.isEmpty||!E||M||Q;T[6]!==H||T[7]!==U?(_=[...U,...H],T[6]=H,T[7]=U,T[8]=_):_=T[8];let Y=_;T[9]!==Y||T[10]!==z||T[11]!==$||T[12]!==P?(A=()=>{z||0===Y.length||!P?.typeName||("topLevel"===P.typeName?Y.some(e=>"id"in e&&e.id===P.topLevelAgentId):Y.some(e=>"name"in e&&e.name===P.subAgentSlug))||$({})},I=[z,Y,P,$],T[9]=Y,T[10]=z,T[11]=$,T[12]=P,T[13]=I,T[14]=A):(I=T[13],A=T[14]),(0,S.useEffect)(A,I);let J=x,X=J(P)?"Copilot":P,Z="string"==typeof X?"Copilot"===X?"topLevel":"customSubAgent":X.typeName;if(T[15]!==Z||T[16]!==Y||T[17]!==E||T[18]!==q||T[19]!==V||T[20]!==X||T[21]!==W||T[22]!==z||T[23]!==B||T[24]!==P){let e,t,n,r,i,o,u=Y.find(e=>"string"==typeof X?e.display_name===X:"topLevel"===Z?"id"in e&&e.id===X.topLevelAgentId:"customSubAgent"===Z?"name"in e&&e.name===X.subAgentSlug:void 0);e:{if("string"==typeof X){e=X;break e}if(!u){e=void 0;break e}e=u.display_name||("name"in u?u.name:void 0)}let d=e;if(T[29]!==E||T[30]!==B.nameOnly||T[31]!==B.owner){let e=new URLSearchParams({filename:".github/agents/my-agent.agent.md",value:`--- +# Fill in the fields below to create a basic custom agent for your repository. +# The Copilot CLI can be used for local testing: https://gh.io/customagents/cli +# To make this agent available, merge this file into the default repository branch. +# For format details, see: https://gh.io/customagents/config + +name: +description: +--- + +# My Agent + +Describe what your agent does here...`});t=B.owner,n=B.nameOnly,r=E,i=e.toString(),T[29]=E,T[30]=B.nameOnly,T[31]=B.owner,T[32]=t,T[33]=n,T[34]=r,T[35]=i}else t=T[32],n=T[33],r=T[34],i=T[35];N=`/${t}/${n}/new/${r}?${i}`;t:{if(J(P)){o=!0;break t}if("topLevel"===P.typeName&&u&&"slug"in u){o=(0,p.sS)(u.slug);break t}o=!1}let h=o,m=d||"None",y=d?`${"topLevel"===Z?"Agent":"Custom agent"}: ${d}`:"Select an agent";j=l.W,w=l.W.Anchor,k=W?function({isLoading:e,isCopilotSelected:t,selectedAgentObj:n,agentType:r,ariaLabel:l,disabled:i,variant:o,className:u}){return e?(0,a.jsx)(s.Q,{"aria-label":"Loading agents",disabled:!0,variant:o,className:(0,v.$)("AgentSelector-module__avatarButtonSkeleton--jkY1N",u),children:(0,a.jsx)(b.f,{width:"32px",height:"32px","data-testid":"agent-selector-skeleton"})}):t?(0,a.jsx)(f.L,{icon:c.CopilotIcon,selectedIcon:c.CopilotIcon,"aria-label":l,selected:!1,disabled:i,variant:o,className:u}):n&&"object"==typeof n&&"customSubAgent"===r?(0,a.jsx)(f.L,{icon:c.CopilotIcon,selectedIcon:c.FileCheckIcon,"aria-label":l,selected:!!n,disabled:i,variant:o,className:u}):n&&"object"==typeof n&&"avatar_url"in n?(0,a.jsx)(s.Q,{"aria-label":l,disabled:i||e,variant:o,className:(0,v.$)("AgentSelector-module__avatarButton--vp2Ab",u),children:(0,a.jsx)(g.r,{src:n.avatar_url,size:18,square:!0})}):(0,a.jsx)(f.L,{icon:c.CopilotIcon,selectedIcon:c.FileCheckIcon,"aria-label":l,selected:!!n,disabled:i,variant:o,className:u})}({isLoading:z,isCopilotSelected:h,selectedAgentObj:u,agentType:Z,ariaLabel:y,disabled:V,variant:q?.variant,className:q?.className}):(0,a.jsx)(s.Q,{leadingVisual:d?c.FileCheckIcon:c.CopilotIcon,trailingAction:c.TriangleDownIcon,"aria-label":y,className:"AgentSelector-module__anchor--SnbmM","data-selected":!!u,disabled:V||z,...q,children:m}),T[15]=Z,T[16]=Y,T[17]=E,T[18]=q,T[19]=V,T[20]=X,T[21]=W,T[22]=z,T[23]=B,T[24]=P,T[25]=w,T[26]=j,T[27]=N,T[28]=k}else w=T[25],j=T[26],N=T[27],k=T[28];return T[36]!==w||T[37]!==k?(L=(0,a.jsx)(w,{children:k}),T[36]=w,T[37]=k,T[38]=L):L=T[38],T[39]!==Y.length||T[40]!==H||T[41]!==N||T[42]!==$||T[43]!==P||T[44]!==U?(O=(0,a.jsx)(l.W.Overlay,{width:"auto",children:0===Y.length?(0,a.jsx)(C,{newFileUrl:N}):(0,a.jsxs)(i.l,{children:[(0,a.jsx)(y,{topLevelAgents:U,customAgents:H,selectedAgent:P,onSelectAgent:$}),(0,a.jsx)(i.l.Divider,{}),(0,a.jsx)(i.l.Group,{selectionVariant:!1,children:(0,a.jsxs)(i.l.LinkItem,{href:N,target:"_blank",children:[(0,a.jsx)(i.l.LeadingVisual,{children:(0,a.jsx)(c.PlusIcon,{})}),"Create a custom agent"]})})]})}),T[39]=Y.length,T[40]=H,T[41]=N,T[42]=$,T[43]=P,T[44]=U,T[45]=O):O=T[45],T[46]!==j||T[47]!==L||T[48]!==O?(R=(0,a.jsxs)(j,{children:[L,O]}),T[46]=j,T[47]=L,T[48]=O,T[49]=R):R=T[49],R}function x(e){return!e?.typeName}let C=e=>{let t,n,l,s=(0,r.c)(4),{newFileUrl:i}=e;return s[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,a.jsx)("h3",{className:"AgentSelector-module__emptyStateTitle--coj6M",children:"This repository has no custom agents"}),n=(0,a.jsx)("p",{className:"AgentSelector-module__emptyStateDescription--C58Xx",children:"Custom agents are reusable instructions and tools in your repository."}),s[0]=t,s[1]=n):(t=s[0],n=s[1]),s[2]!==i?(l=(0,a.jsxs)("div",{className:"AgentSelector-module__emptyStateContainer--FrxRO",children:[t,n,(0,a.jsx)(o.z,{href:i,children:"Create a custom agent"})]}),s[2]=i,s[3]=l):l=s[3],l};try{_.displayName||(_.displayName="AgentSelector")}catch{}try{C.displayName||(C.displayName="EmptyState")}catch{}},23568:(e,t,n)=>{n.d(t,{P:()=>m});var a=n(74848),r=n(96540),l=n(38621),s=n(9141),i=n(26108),o=n(21373),c=n(69497),u=n(70170),d=n(86391);let h="ReposSelector-module__invisibleWithBorder--IwcUx";function m({currentSelection:e,repositoryLoader:t,onSelect:n,selectionVariant:m,selectAllOption:g,additionalButtonProps:p,buttonText:y="",width:b,truncateMaxWidth:f,height:v,fullscreenOnNarrow:S,defaultOwner:_,onLoad:x,loadingElement:C,liveSelection:I=!1,onOpen:A,responsiveStyle:w="full",iconOnly:j=!1,anchorSide:N,tooltipDirection:k}){let[L,O]=(0,r.useState)(""),[R,T]=(0,r.useState)([]),[B,E]=(0,r.useState)(!0),[P,$]=(0,r.useState)(!1),F=(0,r.useCallback)((0,u.s)(async e=>{try{let n=await t(e,_);T(n),x?.(n)}catch{}E(!1),$(!0)},200),[t,_]);(0,r.useEffect)(()=>{E(!0),F(L)},[L,F,E]);let G=(0,r.useCallback)(e=>{"single"===m?!e[0]||e[0]._all?n(void 0):n(e[0]):n(e)},[m,n]),q=(0,r.useMemo)(()=>"multiple"===m?e||[]:e?[e]:[],[m,e]),W=(0,r.useCallback)(e=>{let t,n="medium"===b?35:"large"===b?60:24;return(e.name.length>n&&(t=`${e.name.substring(0,n)}...`),e._all)?{id:e.name,text:"All repositories",source:e,groupId:"all"}:{id:e.name,text:t||e.name,source:e,groupId:"select",disabled:!1===e.enabled,leadingVisual:()=>e.private?(0,a.jsx)(l.RepoLockedIcon,{size:16}):(0,a.jsx)(l.RepoIcon,{size:16})}},[b]),V=(0,r.useCallback)(e=>e.name,[]),D=(0,r.useMemo)(()=>{let e=[];return e.push(...R),g&&e.push({name:"$all$",_all:!0}),e},[R,g]),M=y,H=l.RepoIcon;M||("multiple"===m?M=q.length>0?`${q.length} repositor${q.length>1?"ies":"y"}`:"Select repositories":q.length>0&&q[0]?(M=q[0].name,H=q[0].private?l.RepoLockedIcon:l.RepoIcon):M=g?"All repositories":"Select a repository");let K=(0,s.tv)("icon-on-mobile"===w?{narrow:!0}:{narrow:!1},!1),Q=j||K;return C&&B&&!e&&!P?C:(0,a.jsx)(d.O,{renderAnchor:({"aria-labelledby":e,...t})=>{let{"aria-label":n,...r}=t,s=p?.["aria-label"]??n??M;return Q?(0,a.jsx)(i.K,{variant:"invisible",...e?{"aria-labelledby":e}:{"aria-label":s},icon:p?.leadingVisual||H,...r,className:`${h}${q.length?" ReposSelector-module__selected--dfRBF":""}`,tooltipDirection:k}):(0,a.jsx)(o.Q,{variant:"icon-on-mobile"===w?"invisible":void 0,leadingVisual:H,trailingAction:l.TriangleDownIcon,"aria-labelledby":e,...t,...p,className:`${p?.className}${"icon-on-mobile"===w?` ${h}`:""}`,children:(0,a.jsx)(c.A,{title:M,maxWidth:f??195,children:M})})},placeholderText:"Search",items:D,loading:B,groups:g?[{groupId:"all"},{groupId:"select"}]:[],selectionVariant:m,initialSelectedItems:q,onSelectionChange:G,onLiveSelectionChange:"multiple"===m&&I?G:void 0,filterItems:O,getItemKey:V,convertToItemProps:W,title:"Select a repository",width:b,height:v,responsiveOnNarrow:S,onOpen:A,anchorSide:N})}try{m.displayName||(m.displayName="ReposSelector")}catch{}},25811:(e,t,n)=>{n.d(t,{s:()=>s});var a=n(16522),r=n(96540),l=n(64846);function s(){let e,t,n,s=(0,a.c)(7),{value:i,setValue:o}=(0,l.Q)("AGENT_SESSIONS_LAST_SELECTED_AGENT");s[0]!==i?(e=()=>i??{},s[0]=i,s[1]=e):e=s[1];let[c,u]=(0,r.useState)(e);s[2]!==o?(t=e=>{u(e),o(e)},s[2]=o,s[3]=t):t=s[3];let d=t;return s[4]!==c||s[5]!==d?(n=[c,d],s[4]=c,s[5]=d,s[6]=n):n=s[6],n}},34295:(e,t,n)=>{n.d(t,{fM:()=>l});var a=n(65411);let r=null;function l(){return r||(r=new AgentSessionsTokenProvider),r}let AgentSessionsTokenProvider=class AgentSessionsTokenProvider extends a.JR{async validateAuthToken(e){return e.ssoChanged(this.ssoOrgIDs)||e.isExpired?this.fetchAuthToken():e}async tryRefreshToken(){if(this.isUnlicensed)return!1;try{return await this.fetchAuthToken(!0),!0}catch{return!1}}constructor(){super([],"/copilot/agent-sessions/token","AGENT_SESSIONS_TOKEN")}}},42455:(e,t,n)=>{n.d(t,{b:()=>o});var a=n(97286),r=n(51120),l=n(97189),s=n(34295),i=n(96540);function o(...e){let t=(0,a.I)(...e),{numberOf401s:n,increment401s:c,reset401s:u}=(0,l.eS)(),{isError:d,isLoading:h,error:m}=t,g=(0,i.useRef)(null);return(0,i.useEffect)(()=>{d&&m instanceof r.Y&&401===m.status?g.current!==m&&(n>=5?((0,s.fM)().tryRefreshToken(),g.current=m,u()):(g.current=m,c())):d||h||!(n>0)?d||(g.current=null):(g.current=null,u())},[d,h,m,c,u,n]),t}},51120:(e,t,n)=>{n.d(t,{I:()=>o,Y:()=>FetchCAPIError});var a=n(50467),r=n(34295),l=n(25641),s=n(21067),i=n(69599);let FetchCAPIError=class FetchCAPIError extends Error{constructor(e,t){super(e),(0,a._)(this,"status",void 0),this.name="FetchCAPIError",this.status=t}};async function o({path:e,method:t="GET",streamingResponse:n=!1,body:a,retryOn401:l,copilotApiUrl:o}){let u=(0,r.fM)();return c({path:e,method:t,streamingResponse:n,body:a,basePath:o??(0,s._$)().copilotApiOverrideUrl??"https://api.githubcopilot.com",retryOn401:l??(0,i.G7)("mission_control_retry_on_401")},u)}async function c(e,t,n=0){let a=await t.getAuthToken();if(!a)throw Error("No token available");let r=await (0,l.p)({authToken:a,basePath:e.basePath,method:e.method,path:e.path,streamingResponse:e.streamingResponse,body:e.body});if(!r.ok){if(e.retryOn401&&401===r.status&&n<1)return await t.tryRefreshToken()||t.removeLocalStorageAuthToken(),c(e,t,n+1);let a="error"in r?r.error:`Failed CAPI request (${r.status})`;if("response"in r&&r.response)try{let e=await r.response.text();e&&e.trim()&&(a=e.trim())}catch{}throw new FetchCAPIError(a,r.status)}return r}},63422:(e,t,n)=>{n.d(t,{L:()=>i});var a=n(74848),r=n(16522),l=n(26108),s=n(34164);let i=e=>{let t,n,i,o,c,u,d,h=(0,r.c)(14);if(h[0]!==e){let{ref:a,...r}=e;i=a;let{selected:d,icon:m,selectedIcon:g,...p}=r;t=(o=d)&&g?g:m,n=l.K,c=p,u=(0,s.$)("IconButtonSelector-module__anchor--t8Bzw",p.className),h[0]=e,h[1]=t,h[2]=n,h[3]=i,h[4]=o,h[5]=c,h[6]=u}else t=h[1],n=h[2],i=h[3],o=h[4],c=h[5],u=h[6];return h[7]!==t||h[8]!==n||h[9]!==i||h[10]!==o||h[11]!==c||h[12]!==u?(d=(0,a.jsx)(n,{...c,className:u,icon:t,"data-selected":o,ref:i}),h[7]=t,h[8]=n,h[9]=i,h[10]=o,h[11]=c,h[12]=u,h[13]=d):d=h[13],d};i.displayName="IconButtonSelector"},64846:(e,t,n)=>{n.d(t,{Q:()=>l});var a=n(82075),r=n(96540);function l(e){let t=(0,a.D)("localStorage");return{value:(0,r.useMemo)(()=>t.getItem(e)??void 0,[t,e]),setValue:n=>{t.setItem(e,n)},removeItem:()=>{t.removeItem(e)}}}},78223:(e,t,n)=>{function a(e){return"copilot-swe-agent"===e}function r(e,t){return!e.topLevelAgentId||a(t)||!!e.subAgentSlug}n.d(t,{CF:()=>r,sS:()=>a})},92352:(e,t,n)=>{n.d(t,{s:()=>v,P:()=>_});var a=n(74848),r=n(16522),l=n(14496),s=n(97189),i=n(69599),o=n(66990),c=n(23568),u=n(96379),d=n(38621),h=n(82156),m=n(26108),g=n(96540),p=n(35247),y=n(79064),b=n(63422);let f="RepoBranchAgentSelector-module__invisibleSelectorButton--vpcnl",v=e=>{let t,n,u,v,C,I,A,w=(0,r.c)(31),{hideRepoSelector:j,initialRepoNWO:N,initialBranch:k,selectedRepo:L,selectedBranch:O,selectedAgent:R,onRepoSelect:T,onBranchSelect:B,onAgentSelect:E,agentSelectionEnabled:P,iconOnly:$}=e,F=void 0===P||P,G=void 0!==$&&$,q=(0,g.useRef)(!1);w[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,i.G7)("swe_agent_member_requests_agent_panel"),w[0]=t):t=w[0];let W=t;w[1]!==k||w[2]!==N||w[3]!==B||w[4]!==T||w[5]!==L?(n=e=>{let t;if(!L&&!q.current){if(N&&(t=e.find(e=>e.nameWithOwner===N))&&(t.enabled||W&&S(t))){T(t),B(k||t.defaultBranch),q.current=!0;return}let n=y.Jt.getLastUsedRepository();if(n){let t=e.find(e=>e.nameWithOwner===`${n.ownerLogin}/${n.name}`);if(t&&(t.enabled||W&&S(t))){T(t),B(t?.defaultBranch),q.current=!0;return}}let a=e.find(x);a?(T(a),B(a.defaultBranch),q.current=!0):t&&(T(t),B(k||t.defaultBranch),q.current=!0)}},w[1]=k,w[2]=N,w[3]=B,w[4]=T,w[5]=L,w[6]=n):n=w[6];let V=n;w[7]!==N?(u=(e,t)=>_(e,t,N),w[7]=N,w[8]=u):u=w[8];let D=u;return w[9]!==j||w[10]!==G||w[11]!==B||w[12]!==V||w[13]!==T||w[14]!==D||w[15]!==L?(v=!j&&(0,a.jsx)(c.P,{repositoryLoader:D,selectionVariant:"single",iconOnly:p.W.askModeDropdown&&G,responsiveStyle:p.W.askModeDropdown?"icon-on-mobile":"full",selectAllOption:!1,onSelect:e=>{e&&(T(e),B(e.defaultBranch))},currentSelection:L,width:"medium",additionalButtonProps:{"aria-label":`Repository: ${L?.nameWithOwner||"Select repository"}`,className:"RepoBranchAgentSelector-module__repoSelectorButton--tAnOR",variant:"invisible"},onLoad:V,loadingElement:(0,a.jsx)(h.f,{width:"150px",height:"32px"})}),w[9]=j,w[10]=G,w[11]=B,w[12]=V,w[13]=T,w[14]=D,w[15]=L,w[16]=v):v=w[16],w[17]!==B||w[18]!==O||w[19]!==L?(C=(0,a.jsx)(a.Fragment,{children:L?(0,a.jsx)(o.PI,{cacheKey:"repo-branch-agent-selector",canCreate:!1,currentCommitish:O??L.defaultBranch,defaultBranch:L.defaultBranch,owner:L.owner,repo:L.nameOnly,types:["branch"],selectedRefType:"branch",closeOnSelect:!0,hideShowAll:!0,actionListHeadingText:"Select a branch",onSelectItem:B,renderAnchor:e=>(0,a.jsx)(b.L,{...e,icon:d.GitBranchIcon,selectedIcon:d.GitBranchCheckIcon,selected:O!==L.defaultBranch,"aria-label":`Branch: ${O||"Select branch"}`,"aria-labelledby":void 0,variant:"invisible",className:f})}):(0,a.jsx)(m.K,{icon:d.GitBranchIcon,"aria-label":"Loading branches\u2026",disabled:!0})}),w[17]=B,w[18]=O,w[19]=L,w[20]=C):C=w[20],w[21]!==F||w[22]!==E||w[23]!==R||w[24]!==O||w[25]!==L?(I=F&&(L?(0,a.jsx)(l.b,{repo:L,branch:O||L.defaultBranch,selectedAgent:R,onSelectAgent:e=>E(e),iconOnly:!0,buttonProps:{variant:"invisible",className:f}}):(0,a.jsx)(h.f,{width:"32px",height:"32px"})),w[21]=F,w[22]=E,w[23]=R,w[24]=O,w[25]=L,w[26]=I):I=w[26],w[27]!==v||w[28]!==C||w[29]!==I?(A=(0,a.jsx)(s.Fn,{children:(0,a.jsxs)("div",{className:"RepoBranchAgentSelector-module__container--gHrlH",children:[v,C,I]})}),w[27]=v,w[28]=C,w[29]=I,w[30]=A):A=w[30],A};function S(e){return!!(e.userCanRequestCca||e.userCanGrantOrgCca||e.userCanGrantEnterpriseCca||e.userHasRequestedCca)}async function _(e="",t,n){let a=new URL("/copilot/agent-sessions/repositories",window.location.origin);e.trim()&&a.searchParams.set("q",e.trim()),t&&a.searchParams.set("defaultOwner",t),n&&a.searchParams.set("includeInTopRepos",n);let r=await (0,u.lS)(a.href);if(r.ok){let{repositories:e}=await r.json();return e.map(e=>({id:e.id,graphQLId:e.graphQLId,nameWithOwner:e.nameWithOwner,enabled:e.enabled,name:e.nameWithOwner,nameOnly:e.name,owner:e.owner,defaultBranch:e.defaultBranch,private:"public"!==e.visibility,isEmpty:e.isEmpty,userHasRequestedCca:e.userHasRequestedCca,userCanRequestCca:e.userCanRequestCca,userCanGrantOrgCca:e.userCanGrantOrgCca,userCanGrantEnterpriseCca:e.userCanGrantEnterpriseCca,businessSlug:e.businessSlug}))}return[]}try{v.displayName||(v.displayName="RepoBranchAgentPicker")}catch{}function x(e){return e.enabled}},95869:(e,t,n)=>{n.d(t,{n:()=>l});var a=n(96379),r=n(97286);function l(e){return(0,r.I)({enabled:!!e,queryKey:["top-level-agents",e],queryFn:async()=>{try{if(!e)return[];let t=await (0,a.lS)(`/copilot/agent-sessions/${e}/agents`);if(!t.ok)return[];return(await t.json()).agents||[]}catch{return[]}}})}},97189:(e,t,n)=>{n.d(t,{Fn:()=>o,eS:()=>i});var a=n(74848),r=n(16522),l=n(96540);let s=(0,l.createContext)(void 0);function i(){let e=(0,l.use)(s);if(!e)throw Error("useConsecutiveCAPI401sContext must be used within a ConsecutiveCAPI401sProvider");return e}function o(e){let t,n,i,o,u=(0,r.c)(7),{children:d}=e,[h,m]=(0,l.useState)(0);u[0]===Symbol.for("react.memo_cache_sentinel")?(t=()=>m(c),n=()=>m(0),u[0]=t,u[1]=n):(t=u[0],n=u[1]),u[2]!==h?(i={numberOf401s:h,increment401s:t,reset401s:n},u[2]=h,u[3]=i):i=u[3];let g=i;return u[4]!==d||u[5]!==g?(o=(0,a.jsx)(s,{value:g,children:d}),u[4]=d,u[5]=g,u[6]=o):o=u[6],o}function c(e){return e+1}try{s.displayName||(s.displayName="ConsecutiveCAPI401sContext")}catch{}try{o.displayName||(o.displayName="ConsecutiveCAPI401sProvider")}catch{}}}]); +//# sourceMappingURL=52302-7151f0e1a406.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116.jpg" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..5cea20338dfa6931099dcc17dbff333524f03767 GIT binary patch literal 1924 zcmbW!dpOjI8VB&-m@7t%W~>5@E~|ALmoi9>%d{ez$YdNeg^8n- zOOnk!B}-^TlG{u!>yld(i(v+9o3*>=+2{PZd%n-}zW;pRe?HGEekUFW7ytqWgTtT* zI2wa0)mD25ABkC=eJ05_f`1000C9{T|@I0ZD)% zP#7E`DJ3ljNPxg#2?!Vpg+TT%FYR{#1O=7XFtvjnbP0fKMxzNSId>6S_BHJo*MT*h zS>T0KNhyUd6b~tB>)>_u^od8zEl8F}|8dO0@vE;XPHyfVo?hOkeS)aLA)#Ss&&B*J zHZDGae(?(9YFhfW3})^P_RU*)`30Pkd-qGr$}1jJ*4EWGG&VhHe)^)Lv+E_d`&G~2 z(C`S4|88__=Kbv4{KDdgrRDVv!RD4ww7s(n0>FQ8_V*v4|M8&qJrWQI7y|#z1Cof} zA2136)i8z0+qu94q7P~kQV?kSoVzvcl3Hf2YnZ?b15ye&;*9qCZ=~Nve+`uSe~JDC z{pk^p0Z1@t|6yPhU<*8b_99hT&B-I3-dn?Mps{S{0Dl*u&bQP2uLy+skjO6SM$-D~ z#i6Tps0lI97UR`d2Y#Wqr)w^dGr5Anc2%$$b_hr}d- zKq+NK<>;&c9fKdXq&Xb6&W#i}pKLhhkGojx^H?K$6QiE$8;AbMzo7?)jP0NQ@;W$k zWIb~60eYc6kYsze(p9^2?B6|9Wx5UfQ)iE}Syn@r-K;zQ7tKB{*)9WMnxHqj?NxNRyncm zX?@%t8Ml?U({8Elz$QgT_j{DAq@@>ZkIh$GpNwv9QXC0-WBN9EYgq-fO6iVp2LxbuyYMykI(E<4HQ<)!vjtVB-IHWuRsEvRdB z{0F^HX9oD(nO?b$zMFG4D{f^OW%@;TLMLmr`1gynOs6f?2tg#<#U0*!rdQLcRg~P1 zZJXr+8Cf#jrXR^d#HhQa!tCcf$*l$P2|M1S`Gq%_o82o0`3zJdBPNH}5U~7$tub{zon3wJIs?t&KNdT_VaVvwxE;$)IfNP z=RyaupB+aha?7SVcKK41h9iY0;XkK&(z0=yb;BrDPnbotB9psjvEHNHK`JkL4X`<#K2 z%>834BDV0*W_5dueUmrAG!%F9WXqS2(6?0?#cNsLoSvvE(HS2O%}Oqf^=#ttgi{1u z_-A2^?@!}nv$_xlVRfQIQ7A08zqO%f_NF!8@AeVjCLiVk(x)@S#Jx#?E>wjnJX)qy zo^iz0h0S2)q>&5F5zZSbg#I@grO75V$Taw)Z{Ji#gH?vK;c)hyX6t& zWWGl|f~Z>IyFZx>Ht4P(pet08kIpnB+H7sJ|!gD^4`*fKU|?coW@chxW@Tkz0jjJ8$}zAA zvI;30I#U-U>$dGXcJ4ZK_{h;?$4{I*b?NeztJkjIxOwa0qsLF4K70P+<*SdM zK7aZ8?fZ|PzZe;qA>IL!5Dy{wM-b>ACKeWE7Iu(-7@5j}m|2j8Rnd@5$T5&Tu~1ma zsF6d&Y2w0-2RW6EgFc8R6KQ!#m{`Vr(Mu#brIP!m}`f_n(=pZ~WQc$gW15ymXY zV9#(%DrQd}OV@_bG*{i+ySs4C<5|~sR=j;^wCHEM z@>90y*0K{jzbT*O$h150pW%+_cD;qmqH;6eEBN%h)jj{ja>aj!hl&^eGd%yMe{%n! zmA;)vWpeMWPZim?_0;X3u_|@}iIZ>E7KXol|HWj28D*hxvsiOtzfy)O?;{rC4mg>P^E_(b9Zx z+P)uOTIKs~>$1+fsZGynWHdAR?Hymn4)_1G z21WR@wyZ1pu{gB;eFD$ltp5z(j=ukE^`GH>X;tI1@AEX;{rkMLPpVIx!z3ie75?#P z!L6@fqS{t`7kid0$e=lM(_PDxzn-nFnElV`{J#fl+<#B)zO!^g>&bwf@=@EDz1m(C zdSb`cR37_1jqOje`m3t`9`;YL{`T?GtF}Aw8j+y}mzqM@j@y)pynp-G{$IWDzklXG Q!spNXa%;)m&h-B`0Wu!MA^-pY literal 0 HcmV?d00001 diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_003.jpg" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_003.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..fbbad4fbb1e68b6eb27c8c2bddc74e5a5b0cadd3 GIT binary patch literal 1402 zcmex=KU|?coW@chxW@Tkz0jjJ8$}zAA zvI;30I#U-U>$dGXcJ4ZK_{h;?$4{I*b?NeztJkjIxOwa0qsLF4K70P+<*SdM zK7aZ8?fZ|PzZe;qA>IL!5Dy{wM-b>ACKeWE7Iu(-7@5j}m|2j8Rnd@5$T5&Tu~1ma zsF6d&Y2w0-2RW6EgFc8R6KQ!#m{`Vr(Mu#brIP!m}`f_n(=pZ~WQc$gW15ymXY zV9#(#Y*PZ0hkVq`T(91RA?YjM$1)uk3_M}GD>Qqth{M}>!{Z;mtgU?KuG+JhNxf$N zT7}vku6Ha|QkS+&6)Vd428$z7rqag9WvcI%#7i|1b6n!U4CH~r!2lI(aJo3 zX20EXlgoK~J4|=zOsv#u{c5Qi_+MaKKaMY-HgGv zeq1~FR!N^_qeVjB(eK6QO=p)?HGMVxIybiDuU7Vj9vaVl8bC(?X<8LR(e+p>HA84j&Ux^vcgU2I>K%;PWXybqq0&faj`Fj;8B z9Jj@)ca6e7oiuq{Xle4rcG~aQ#s?LmX;U^F{Pb8|{?zK*ugf<^ap;!pOwpdZR-b8u z-XGt3*&~e#jK!Z8#??!0O?||x^0)q7r{~D8wF}+wv-|z(in)Dt=kw)%TO0SE zxm2I^WB$L&+y5EvZ;V=*xx!OwL+b|jvi}UPFYi0N;y=TA<^K$|{2!NRv@K`VZ+Wl( z&Gp%_uH`CRlO7+ovTNiK-!=Ed%{?o6dT*bzwU4^C>B`~VM>Z~+yEDAfz+URvpG@1Q z$2z3mWqU4)+$ik)*}%f~uf@@1)jL^tdFJ~0^1W~r-FoG<- zOtZC)o%JU3+cQqHg)Y85E9`f3yl+-H}oI?4Om z9B%(`oIgXrN-#(%%K53k)cQG#RT?ax?eTWMR=+v@@ADan`TM$VoUJOI-er>gSN7H| z{f#GlIEn<$BL@2n?%k?nA}hm_PwkA@jv}v&;MpK zl>fS>Uo=thVV`wS%Co7vX608Uc&y_3>>nvBptbRqU*SB>mESY1xg0WF*S#|PsAK3S jW-707W4Y|_uKGVJRm=bU>Hqz0|HH`iwW^Wq|8D{Sh@@n) literal 0 HcmV?d00001 diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_004.jpg" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_004.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..14352c27e971c61dea02dc6add82486a4a87082c GIT binary patch literal 1176 zcmex=KU|?coW@chxW@Tkz0jjJ8$}zAA zvI;30I#U-U>$dGXcJ4ZK_{h;?$4{I*b?NeztJkjIxOwa0qsLF4K70P+<*SdM zK7aZ8?fZ|PzZe;qA>IL!5Dy{wM-b>ACKeWE7Iu(-7@5j}m|2j8Rnd@5$T5&Tu~1ma zsF6d&Y2w0-2RW6EgFc8R6KQ!#m{`Vr(Mu#brIP!m}`f_n(=pZ~WQc$gW15ymXY zV9#(xEGU6_x2VC^1Kh2FZ=+v7oxrYs{npA@uW&n;tRr&eecFE2lTS^YmF!}}{y$9s>T$^<7w(9D$C68_>+`0WL`HIvmiKIPE)*Z2`U9LQRixs+Je%b@!D<@s#PUy3na^>KW$6?ytwu|n^&S0|+uX-1C zY5VNZpMlS}&9_PEUGgvV@T;mL6A$!=XV>0Xe9YdBx|&!w^LTUan9wri>jXXy_6suq z)aLb0F0bXg_b4~4@>1xw?Y&d}v_3g0Kh-StdR||An1`F)8+-lN*LI#*V|wD5r|6BJ z=`Fh7_n$ahYQ@|7^wZ|MzEAm1d7M~vd1ZLcsb+r*}QURrLdjf=f1sXi)Ovsn7#5aSJaKQD}#>tuAOk? zvHUdqsAHZvK{?+01^la(Ph2>($s||8a6t^)F@L!O{YNf7d@p#vqU?!pu3EB&db3g5Lh``V5XK3%e_vhMzMA!5-?QYLH#;?! z&-(DzKJu!`w*L&yd*?CEc_`CRw|H-9`>~a^6^C9bdsK2O$~3;S{A-&XaZ=HG{{Nc* DEidX{ literal 0 HcmV?d00001 diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_005.jpg" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_005.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..972d037de3f1d133c92260d7b556d48e3bd2a762 GIT binary patch literal 1508 zcmbW!eLT|%90%~EXE)pYm zlNDp`sDwgtbZjQ`Ow2^;I*Fa?UcK(myZgLe-|s)4??3O?S1ytd0A~Rt9FBm)kO%|< zg+eNzHI&ebifF8wx{8Lr4$eSdM^Det#EM{OY=PI)TjyYIVPk7=Z;vB5ZF3}UwX(A( zf>0i*#f<0BeGChH~=@5Xzm8PGj%VnS@VFQPzV(9(E|dft_=hO zg&Enx)m;4%;YZYsiAQ>M)u^%yA_(=LB`gfqy|4Z}*^u;3= z184|n?O_lM;0!bx=ft$mWmJ%4O&>b3^jAH#Eo@D!JE_mr3t-O1CnkFtW%DQQ?ncz^ zJYX5I{l2FhQ0T_EMB1he*R860#`QY;A3ar z_X>WT@H5UM>8W2Io9cNJb)keZA!_*TT`9lE@+vC9I(oNrLv}{|mJOFT(YmOm%;}-j zQrC>ijwa4T8$O_|FUD}j?i_(k3)rDeEuVeEmH3m0rsQGx?UO#>f6)x(iFE>>4 z#o{s@DysI2Z}4u;-~+p5G*il0e$b01I{^a{I=-HD?+hE{DBjSriW@pWnK|r+VvCob zUd9hz)dvo-2Chu)XF2sn!$L?#2f}k!;)391$??;*mdACME|$+6VM>0k>Ev==ZJ*KZ zT26!|G5Tv?t53#dy3VLl3*-Q@rQl$6eKd_8+)*wljDSxCkQ4YGyHa@IS-W?QHNM^p z+|KG(;1;z9vfN>%#wlT`FMVXtZBE71t%#~@JJ81sJK=1Veb4*+fY1?K?31h!IHN<$ z?wO3q8xAI0DMFBN_-2co#r zUm5~sMB7+J-iRm3;F|u1!udNFM|-mP4b@&X`4JXu&mxktt+37@PkQ*W)%$Lm);Hab zy83%l7){jydr@BQS-f6rng3{=rQq4bp~%VlL9=J8t133bV4}*-yaZXPmoj`s4p?J9 zbcXSJOZb;MF6?qA%!NS^wduG9uJJ$y{| zgkwIGIlU`4pDKb7ie8!*&C>(JuSoDqCqrb{CG)F-Z8?`B94U&4evdP0VNGP)w1uYZe|?sqSVOPY2#H)(UC n%W@2AkeOS_Ku_{#w+5QMwk|v9c3-+_VsStkQue|JC-46YK*X8r literal 0 HcmV?d00001 diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_006.jpg" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_006.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..9d2a3fe30294a4de34f975360338c95bd10eb5f1 GIT binary patch literal 1090 zcmex=KU|?coW@chxW@Tkz0jjJ8$}zAA zvI;30I#U-U>$dGXcJ4ZK_{h;?$4{I*b?NeztJkjIxOwa0qsLF4K70P+<*SdM zK7aZ8?fZ|PzZe;qA>IL!5Dy{wM-b>ACKeWE7Iu(-7@5j}m|2j8Rnd@5$T5&Tu~1ma zsF6d&Y2w0-2RW6EgFc8R6KQ!#m{`Vr(Mu#brIP!m}`f_n(=pZ~WQc$gW15ymXY zV9#(%DrQd}OV@_bG*{i+ySs4C<5|~sR=j;^wCHEM z@>90y*0K{jzbT*O$h150pW%+_cD;qmqH;6eEBN%h)jj{ja>aj!hl&^eGd%yMe{%n! zmA;)vWpeMWPZim?_0;X3u_|@}iIZ>E7KXol|HWj28D*hxvsiOtzfy)O?;{rC4mg>P^E_(b9Zx z+P)uOTIKs~>$1+fsZGynWHdAR?Hymn4)_1G z21WR@wyZ1pu{gB;eFD$ltp5z(j=ukE^`GH>X;tI1@AEX;{rkMLPpVIx!z3ie75?#P z!L6@fqS{t`7kid0$e=lM(_PDxzn-nFnElV`{J#fl+<#B)zO!^g>&bwf@=@EDz1m(C zdSb`cR37_1jqOje`m3t`9`;YL{`T?GtF}Aw8j+y}mzqM@j@y)pynp-G{$IWDzklXG Q!spNXa%;)m&h-B`0Wu!MA^-pY literal 0 HcmV?d00001 diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_007.jpg" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53857116_007.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..972d037de3f1d133c92260d7b556d48e3bd2a762 GIT binary patch literal 1508 zcmbW!eLT|%90%~EXE)pYm zlNDp`sDwgtbZjQ`Ow2^;I*Fa?UcK(myZgLe-|s)4??3O?S1ytd0A~Rt9FBm)kO%|< zg+eNzHI&ebifF8wx{8Lr4$eSdM^Det#EM{OY=PI)TjyYIVPk7=Z;vB5ZF3}UwX(A( zf>0i*#f<0BeGChH~=@5Xzm8PGj%VnS@VFQPzV(9(E|dft_=hO zg&Enx)m;4%;YZYsiAQ>M)u^%yA_(=LB`gfqy|4Z}*^u;3= z184|n?O_lM;0!bx=ft$mWmJ%4O&>b3^jAH#Eo@D!JE_mr3t-O1CnkFtW%DQQ?ncz^ zJYX5I{l2FhQ0T_EMB1he*R860#`QY;A3ar z_X>WT@H5UM>8W2Io9cNJb)keZA!_*TT`9lE@+vC9I(oNrLv}{|mJOFT(YmOm%;}-j zQrC>ijwa4T8$O_|FUD}j?i_(k3)rDeEuVeEmH3m0rsQGx?UO#>f6)x(iFE>>4 z#o{s@DysI2Z}4u;-~+p5G*il0e$b01I{^a{I=-HD?+hE{DBjSriW@pWnK|r+VvCob zUd9hz)dvo-2Chu)XF2sn!$L?#2f}k!;)391$??;*mdACME|$+6VM>0k>Ev==ZJ*KZ zT26!|G5Tv?t53#dy3VLl3*-Q@rQl$6eKd_8+)*wljDSxCkQ4YGyHa@IS-W?QHNM^p z+|KG(;1;z9vfN>%#wlT`FMVXtZBE71t%#~@JJ81sJK=1Veb4*+fY1?K?31h!IHN<$ z?wO3q8xAI0DMFBN_-2co#r zUm5~sMB7+J-iRm3;F|u1!udNFM|-mP4b@&X`4JXu&mxktt+37@PkQ*W)%$Lm);Hab zy83%l7){jydr@BQS-f6rng3{=rQq4bp~%VlL9=J8t133bV4}*-yaZXPmoj`s4p?J9 zbcXSJOZb;MF6?qA%!NS^wduG9uJJ$y{| zgkwIGIlU`4pDKb7ie8!*&C>(JuSoDqCqrb{CG)F-Z8?`B94U&4evdP0VNGP)w1uYZe|?sqSVOPY2#H)(UC n%W@2AkeOS_Ku_{#w+5QMwk|v9c3-+_VsStkQue|JC-46YK*X8r literal 0 HcmV?d00001 diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53996-f76352731e87.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53996-f76352731e87.js" new file mode 100644 index 0000000..58060a9 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/53996-f76352731e87.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:53996-f76352731e87.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[2215,7580,24596,31172,40437,53996,85199,96315],{5225:(t,e,n)=>{function o(...t){return JSON.stringify(t,(t,e)=>"object"==typeof e?e:String(e))}function r(t,e={}){let{hash:n=o,cache:a=new Map}=e;return function(...e){let o=n.apply(this,e);if(a.has(o))return a.get(o);let r=t.apply(this,e);return r instanceof Promise&&(r=r.catch(t=>{throw a.delete(o),t})),a.set(o,r),r}}n.d(e,{A:()=>r})},31635:(t,e,n)=>{n.d(e,{AQ:()=>i,Cg:()=>r,Me:()=>c,N3:()=>a,Tt:()=>o,xN:()=>l});function o(t,e){var n={};for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&0>e.indexOf(o)&&(n[o]=t[o]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var r=0,o=Object.getOwnPropertySymbols(t);re.indexOf(o[r])&&Object.prototype.propertyIsEnumerable.call(t,o[r])&&(n[o[r]]=t[o[r]]);return n}function r(t,e,n,o){var r,a=arguments.length,i=a<3?e:null===o?o=Object.getOwnPropertyDescriptor(e,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(t,e,n,o);else for(var c=t.length-1;c>=0;c--)(r=t[c])&&(i=(a<3?r(i):a>3?r(e,n,i):r(e,n))||i);return a>3&&i&&Object.defineProperty(e,n,i),i}function a(t){return this instanceof a?(this.v=t,this):new a(t)}function i(t,e,n){if(!Symbol.asyncIterator)throw TypeError("Symbol.asyncIterator is not defined.");var o,r=n.apply(t,e||[]),i=[];return o=Object.create(("function"==typeof AsyncIterator?AsyncIterator:Object).prototype),c("next"),c("throw"),c("return",function(t){return function(e){return Promise.resolve(e).then(t,u)}}),o[Symbol.asyncIterator]=function(){return this},o;function c(t,e){r[t]&&(o[t]=function(e){return new Promise(function(n,o){i.push([t,e,n,o])>1||l(t,e)})},e&&(o[t]=e(o[t])))}function l(t,e){try{var n;(n=r[t](e)).value instanceof a?Promise.resolve(n.value.v).then(s,u):f(i[0][2],n)}catch(t){f(i[0][3],t)}}function s(t){l("next",t)}function u(t){l("throw",t)}function f(t,e){t(e),i.shift(),i.length&&l(i[0][0],i[0][1])}}function c(t){var e,n;return e={},o("next"),o("throw",function(t){throw t}),o("return"),e[Symbol.iterator]=function(){return this},e;function o(o,r){e[o]=t[o]?function(e){return(n=!n)?{value:a(t[o](e)),done:!1}:r?r(e):e}:r}}function l(t){if(!Symbol.asyncIterator)throw TypeError("Symbol.asyncIterator is not defined.");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=function(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],o=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&o>=t.length&&(t=void 0),{value:t&&t[o++],done:!t}}};throw TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}(t),e={},o("next"),o("throw"),o("return"),e[Symbol.asyncIterator]=function(){return this},e);function o(n){e[n]=t[n]&&function(e){return new Promise(function(o,r){var a,i,c;a=o,i=r,c=(e=t[n](e)).done,Promise.resolve(e.value).then(function(t){a({value:t,done:c})},i)})}}}"function"==typeof SuppressedError&&SuppressedError},39595:(t,e,n)=>{let o;n.d(e,{CF:()=>p,p_:()=>$,FB:()=>f,Se:()=>E,aC:()=>j,zV:()=>x});let r=new WeakSet,a=new WeakMap;function i(t=document){if(a.has(t))return a.get(t);let e=!1,n=new MutationObserver(t=>{for(let e of t)if("attributes"===e.type&&e.target instanceof Element)u(e.target);else if("childList"===e.type&&e.addedNodes.length)for(let t of e.addedNodes)t instanceof Element&&c(t)});n.observe(t,{childList:!0,subtree:!0,attributeFilter:["data-action"]});let o={get closed(){return e},unsubscribe(){e=!0,a.delete(t),n.disconnect()}};return a.set(t,o),o}function c(t){for(let e of t.querySelectorAll("[data-action]"))u(e);t instanceof Element&&t.hasAttribute("data-action")&&u(t)}function l(t){let e=t.currentTarget;for(let n of s(e))if(t.type===n.type){let o=e.closest(n.tag);r.has(o)&&"function"==typeof o[n.method]&&o[n.method](t);let a=e.getRootNode();if(a instanceof ShadowRoot&&r.has(a.host)&&a.host.matches(n.tag)){let e=a.host;"function"==typeof e[n.method]&&e[n.method](t)}}}function*s(t){for(let e of(t.getAttribute("data-action")||"").trim().split(/\s+/)){let t=e.lastIndexOf(":"),n=Math.max(0,e.lastIndexOf("#"))||e.length;yield{type:e.slice(0,t),tag:e.slice(t+1,n),method:e.slice(n+1)||"handleEvent"}}}function u(t){for(let e of s(t))t.addEventListener(e.type,l)}function f(t,e){let n=t.tagName.toLowerCase();if(t.shadowRoot){for(let o of t.shadowRoot.querySelectorAll(`[data-target~="${n}.${e}"]`))if(!o.closest(n))return o}for(let o of t.querySelectorAll(`[data-target~="${n}.${e}"]`))if(o.closest(n)===t)return o}let d=t=>String("symbol"==typeof t?t.description:t).replace(/([A-Z]($|[a-z]))/g,"-$1").replace(/--/g,"-").replace(/^-|-$/,"").toLowerCase(),b=(t,e="property")=>{let n=d(t);if(!n.includes("-"))throw new DOMException(`${e}: ${String(t)} is not a valid ${e} name`,"SyntaxError");return n},h="attr";function p(t,e){k(t,h).add(e)}let y=new WeakSet;function g(t,e){if(y.has(t))return;y.add(t);let n=Object.getPrototypeOf(t),o=n?.constructor?.attrPrefix??"data-";for(let r of(e||(e=k(n,h)),e)){let e=t[r],n=b(`${o}${r}`),a={configurable:!0,get(){return this.getAttribute(n)||""},set(t){this.setAttribute(n,t||"")}};"number"==typeof e?a={configurable:!0,get(){return Number(this.getAttribute(n)||0)},set(t){this.setAttribute(n,t)}}:"boolean"==typeof e&&(a={configurable:!0,get(){return this.hasAttribute(n)},set(t){this.toggleAttribute(n,t)}}),Object.defineProperty(t,r,a),r in t&&!t.hasAttribute(n)&&a.set.call(t,e)}}let m=new Map,w=new Promise(t=>{"loading"!==document.readyState?t():document.addEventListener("readystatechange",()=>t(),{once:!0})}),v=new Promise(t=>{let e=new AbortController;e.signal.addEventListener("abort",()=>t());let n={once:!0,passive:!0,signal:e.signal},o=()=>e.abort();document.addEventListener("mousedown",o,n),document.addEventListener("touchstart",o,n),document.addEventListener("keydown",o,n),document.addEventListener("pointerdown",o,n)}),S={ready:()=>w,firstInteraction:()=>v,visible:t=>new Promise(e=>{let n=new IntersectionObserver(t=>{for(let o of t)if(o.isIntersecting){e(),n.disconnect();return}},{rootMargin:"0px 0px 256px 0px",threshold:.01});for(let e of document.querySelectorAll(t))n.observe(e)})},O=new WeakMap;function A(t){cancelAnimationFrame(O.get(t)||0),O.set(t,requestAnimationFrame(()=>{for(let e of m.keys()){let n=t instanceof Element&&t.matches(e)?t:t.querySelector(e);if(customElements.get(e)||n){let o=n?.getAttribute("data-load-on")||"ready",r=o in S?S[o]:S.ready;for(let t of m.get(e)||[])r(e).then(t);m.delete(e),O.delete(t)}}}))}function E(t,e){for(let[n,o]of("string"==typeof t&&e&&(t={[t]:e}),Object.entries(t)))m.has(n)||m.set(n,new Set),m.get(n).add(o);C(document)}function C(t){o||(o=new MutationObserver(t=>{if(m.size)for(let e of t)for(let t of e.addedNodes)t instanceof Element&&A(t)})),A(t),o.observe(t,{subtree:!0,childList:!0})}let P=Symbol.for("catalyst");let CatalystDelegate=class CatalystDelegate{constructor(t){const e=this,n=t.prototype.connectedCallback;t.prototype.connectedCallback=function(){e.connectedCallback(this,n)};const o=t.prototype.disconnectedCallback;t.prototype.disconnectedCallback=function(){e.disconnectedCallback(this,o)};const r=t.prototype.attributeChangedCallback;t.prototype.attributeChangedCallback=function(t,n,o){e.attributeChangedCallback(this,t,n,o,r)};let a=t.observedAttributes||[];Object.defineProperty(t,"observedAttributes",{configurable:!0,get(){return e.observedAttributes(this,a)},set(t){a=t}}),function(t){let e=t.observedAttributes||[],n=t.attrPrefix??"data-",o=t=>b(`${n}${t}`);Object.defineProperty(t,"observedAttributes",{configurable:!0,get:()=>[...k(t.prototype,h)].map(o).concat(e),set(t){e=t}})}(t),function(t){let e=d(t.name).replace(/-element$/,"");try{window.customElements.define(e,t),window[t.name]=customElements.get(e)}catch(t){if(!(t instanceof DOMException&&"NotSupportedError"===t.name))throw t}}(t)}observedAttributes(t,e){return e}connectedCallback(t,e){var n,o;for(let e of(t.toggleAttribute("data-catalyst",!0),customElements.upgrade(t),t.querySelectorAll("template[data-shadowroot]")))e.parentElement===t&&t.attachShadow({mode:"closed"===e.getAttribute("data-shadowroot")?"closed":"open"}).append(e.content.cloneNode(!0));(g(t),r.add(t),t.shadowRoot&&(c(o=t.shadowRoot),i(o)),c(t),i(t.ownerDocument),e?.call(t),t.shadowRoot)&&(c(n=t.shadowRoot),i(n),C(t.shadowRoot))}disconnectedCallback(t,e){e?.call(t)}attributeChangedCallback(t,e,n,o,r){g(t),"data-catalyst"!==e&&r&&r.call(t,e,n,o)}};function k(t,e){if(!Object.prototype.hasOwnProperty.call(t,P)){let e=t[P],n=t[P]=new Map;if(e)for(let[t,o]of e)n.set(t,new Set(o))}let n=t[P];return n.has(e)||n.set(e,new Set),n.get(e)}function j(t,e){k(t,"target").add(e),Object.defineProperty(t,e,{configurable:!0,get(){return f(this,e)}})}function x(t,e){k(t,"targets").add(e),Object.defineProperty(t,e,{configurable:!0,get(){let t=this.tagName.toLowerCase(),n=[];if(this.shadowRoot)for(let o of this.shadowRoot.querySelectorAll(`[data-targets~="${t}.${e}"]`))o.closest(t)||n.push(o);for(let o of this.querySelectorAll(`[data-targets~="${t}.${e}"]`))o.closest(t)===this&&n.push(o);return n}})}function $(t){new CatalystDelegate(t)}},50467:(t,e,n)=>{n.d(e,{_:()=>o});function o(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}},70170:(t,e,n)=>{function o(t,e=0,{start:n=!0,middle:r=!0,once:a=!1}={}){let i,c=n,l=0,s=!1;function u(...o){if(s)return;let f=Date.now()-l;l=Date.now(),n&&r&&f>=e&&(c=!0),c?(c=!1,t.apply(this,o),a&&u.cancel()):(r&&f{l=Date.now(),t.apply(this,o),a&&u.cancel()},r?e-f:e))}return u.cancel=()=>{clearTimeout(i),s=!0},u}function r(t,e=0,{start:n=!1,middle:a=!1,once:i=!1}={}){return o(t,e,{start:n,middle:a,once:i})}n.d(e,{n:()=>o,s:()=>r})}}]); +//# sourceMappingURL=53996-920650ce8ae2.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/55526-7849c8b38bbe.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/55526-7849c8b38bbe.js" new file mode 100644 index 0000000..b90f263 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/55526-7849c8b38bbe.js" @@ -0,0 +1,4 @@ +performance.mark("js-parse-end:55526-7849c8b38bbe.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[55526],{27646:(e,t,n)=>{n.d(t,{wr:()=>v,lI:()=>p,LU:()=>w});var i=n(50467),s=n(36186);let l=class DiffPosition{sideForCommenting(){return this.element&&this.element.classList.contains("blob-num-context")?"right":({R:"right",L:"left"})[this.side]}isContext(){return!!this.element&&this.element.classList.contains("blob-num-context")}anchor(){return`${this.diffId}${this.anchorSuffix()}`}anchorSuffix(){return`${this.side}${this.lineNumber}`}is(e){return this.diffId===e.diffId&&this.side===e.side&&this.lineNumber===e.lineNumber}constructor(e,t,n){(0,i._)(this,"diffId",void 0),(0,i._)(this,"side",void 0),(0,i._)(this,"lineNumber",void 0),(0,i._)(this,"element",void 0),this.diffId=e,this.side=t,this.lineNumber=n,this.element=(0,s.w$)(document,this.anchor())}};let DiffRange=class DiffRange{anchor(){let e=[];return e.push(this.start.anchor()),this.start.is(this.end)||e.push(this.end.anchorSuffix()),e.join("-")}parse(){if(!this.diffTable)return;let e=this.unify(this.diffTable.querySelectorAll(".js-linkable-line-number"));e=this.filterInRange(e),this.lineCount=e.length,this.elements=this.expandRelatedElements(e),this._commentOutsideTheDiff=this.diffTable.classList.contains("js-comment-outside-the-diff"),this.isParsed=!0}unify(e){if(!this.isSplit)return Array.from(e);let t=[],n=[],i=[];for(let s of e)s.classList.contains("blob-num-addition")?n.push(s):s.classList.contains("blob-num-deletion")?i.push(s):(t.push(...i,...n,s),n=[],i=[]);return t.push(...i,...n),t}filterInRange(e){if(!this.start.element||!this.end.element)return[];let t=e.indexOf(this.start.element),n=e.indexOf(this.end.element);if(t>n){[t,n]=[n,t];let[e,i]=[this.end,this.start];this.start=e,this.end=i}return e.slice(t,n+1)}isContextOnly(){return this.isParsed||this.parse(),this._isContextOnly}isAcrossHunks(){return this.isParsed||this.parse(),this._isAcrossHunks}includesExpandedLine(){return this.isParsed||this.parse(),this._includesExpandedLine}commentOutsideTheDiffEnabled(){return this.isParsed||this.parse(),this._commentOutsideTheDiff}rows(){return this.isParsed||this.parse(),this._rows}expandRelatedElements(e){let t=this.isSplit,n=e[0],i=e[e.length-1];if(n&&i){let e=n.closest("[data-hunk]"),t=i.closest("[data-hunk]");e&&t&&e.getAttribute("data-hunk")!==t.getAttribute("data-hunk")&&(this._isAcrossHunks=!0)}let s=(e,n)=>{!this._includesExpandedLine&&n.closest(".blob-expanded")&&(this._includesExpandedLine=!0);let i=n.parentElement;i instanceof HTMLElement&&this._rows.add(i);let s=n.classList.contains("blob-num-deletion")||n.classList.contains("blob-num-addition");if(s&&(this._isContextOnly=!1),!i)return e;if(t&&s)return 2>Array.from(i.children).indexOf(n)?e.add(i.children[0]).add(i.children[1]):e.add(i.children[2]).add(i.children[3]);for(let t of Array.from(i.children))e.add(t);return e};return e.reduce(s,new Set)}constructor(e,t,n,s,r){(0,i._)(this,"elements",void 0),(0,i._)(this,"isParsed",void 0),(0,i._)(this,"isSplit",void 0),(0,i._)(this,"diffId",void 0),(0,i._)(this,"diffTable",void 0),(0,i._)(this,"start",void 0),(0,i._)(this,"end",void 0),(0,i._)(this,"lineCount",void 0),(0,i._)(this,"_rows",void 0),(0,i._)(this,"_isAcrossHunks",void 0),(0,i._)(this,"_isContextOnly",void 0),(0,i._)(this,"_includesExpandedLine",void 0),(0,i._)(this,"_commentOutsideTheDiff",void 0),this.elements=new Set,this.isParsed=!1,this.isSplit=!1,this._rows=new Set,this._isAcrossHunks=!1,this._isContextOnly=!0,this._includesExpandedLine=!1,this._commentOutsideTheDiff=!1,this.diffId=e,this.diffTable=document.querySelector(`.js-diff-table[data-diff-anchor="${e}"]`),this.diffTable&&(this.isSplit=this.diffTable.classList.contains("js-file-diff-split")),this.start=new l(e,t,n),this.end=new l(e,s,r),this.lineCount=0,this.parse()}};var r=n(31803),o=n(89022),a=n(21403),c=n(97797),d=n(52738),u=n(75941),f=n(53627);let h=null,m=null,g=!1,b=null;function p(){return h}function L(e){return!!e.closest(".js-multi-line-comments-enabled")}function w(e,t){if(!L(e))return!1;let{start:{lineNumber:n},end:{lineNumber:i}}=t;return!(n===i&&t.isContextOnly()||!t.commentOutsideTheDiffEnabled()&&(t.isAcrossHunks()||t.includesExpandedLine()))&&!0}function E(e){return e.closest(".js-diff-table").classList.contains("is-selecting")}function v(){(0,f.K3)(),x(),u.o.dispatch()}function j(e,t){let n=e.id;if(t){let t=(0,o.E)(n);if(!t)return;let l=t[1],r=t[2],a=t[3];if(h&&h.diffId===l){var i,s;let t;if(r===h.start.side&&Number.parseInt(a){document.addEventListener("click",_,{once:!0})},0)}function x(){if(h){for(let e of h.elements)e.classList.remove("selected-line","selected-line-top","selected-line-bottom","selected-line-left","selected-line-right");h=null}let e=(0,o.E)(window.location.hash);if(!e)return;let t=e[1],n=e[2],i=e[3],s=e[4]||n,l=e[5]||i,r=Array.from((h=new DiffRange(t,n,+i,s,+l)).elements)[0];r&&(r.closest(".js-diff-table").classList.contains("file-diff-split")?function(){if(!h)return;for(let e of h.elements)e.classList.add("selected-line");let e=[],t=[],n=[],i=[];for(let s of h.rows()){let[l,r,o,a]=s.children;e.push(l),t.push(r),n.push(o),i.push(a)}function s(e){for(let[t,n]of e.entries()){if(n.classList.contains("empty-cell"))continue;let i=e[t-1];i&&i.classList.contains("selected-line")||n.classList.add("selected-line-top");let s=e[t+1];s&&s.classList.contains("selected-line")||n.classList.add("selected-line-bottom")}}for(let[l,r]of(s(e),s(t),s(n),s(i),t.entries()))i[l].classList.contains("selected-line")||r.classList.add("selected-line-right");for(let[e,i]of n.entries())t[e].classList.contains("selected-line")||i.classList.add("selected-line-left")}():function(){if(!h)return;for(let e of h.elements)e.classList.add("selected-line");let e=Array.from(h.rows());for(let t of e[0].children)t.classList.add("selected-line-top");for(let t of e[e.length-1].children)t.classList.add("selected-line-bottom")}())}(0,c.on)("mousedown",".js-add-line-comment",function(e){if(!(e instanceof MouseEvent)||0!==e.button)return;let t=e.target.parentElement;if(!t||!L(e.target))return;let n=S(t);if(!n)return;let i=e.target.closest(".js-diff-table");A(i),b=n,g=!0,e.target.addEventListener("mouseup",function(){k(i),b=null,g=!1},{once:!0}),h&&h.lineCount>1&&e.preventDefault()}),(0,c.on)("mousedown",".js-linkable-line-number",function(e){if(!(e instanceof MouseEvent)||0!==e.button)return;let t=e.target;if(!(t instanceof Element))return;let n=t.closest(".js-diff-table");n.classList.add("is-selecting"),A(n),document.addEventListener("mouseup",function(){t.closest(".js-diff-table").classList.remove("is-selecting"),k(n)},{once:!0}),j(t,e instanceof MouseEvent&&e.shiftKey),e.preventDefault()}),(0,r.A)(x),(0,a.lB)(".blob-expanded",x),(0,a.lB)(".js-diff-progressive-loader",function(e){e.addEventListener("load",x)}),(0,a.lB)(".js-diff-entry-loader",function(e){e.addEventListener("load",x)})},50502:(e,t,n)=>{var i=n(50467),s=n(73395),l=n(78134),r=n(31803),o=n(21403),a=n(97797),c=n(53419),d=n(3905);let u=!1;function f(e,t){return document.querySelector(`#${e}LC${t}`)}function h(){let e=(0,s.$c)(window.location.hash);!function({blobRange:e,anchorPrefix:t}){if(0!==document.querySelectorAll(".js-file-line").length&&(function(){for(let e of document.querySelectorAll(".js-file-line.highlighted"))e.classList.remove("highlighted");for(let e of document.querySelectorAll(".js-file-line .highlighted")){let t=e.closest(".js-file-line");e.replaceWith(...e.childNodes),t.normalize()}}(),e)){if(null===e.start.column||null===e.end.column)for(let n=e.start.line;n<=e.end.line;n+=1){let e=f(t,n);e&&e.classList.add("highlighted")}else if(e.start.line===e.end.line&&null!=e.start.column&&null!=e.end.column){let n=(0,s.Py)(e,e=>f(t,e));if(n){let e=document.createElement("span");e.classList.add("highlighted"),(0,d.t)(n,e)}}}}(e),function(){let e=document.querySelector(".js-file-line-actions");if(!e)return;let t=document.querySelectorAll(".js-file-line.highlighted"),n=t[0];if(n){var i;let s,l=[];for(let e of t)l.push(e.textContent);let r=document.getElementById("js-copy-lines");if(r&&"CLIPBOARD-COPY"===r.tagName){r.textContent=`Copy ${1===t.length?"line":"lines"}`,r.value=l.join(` +`);let e=`Blob, copyLines, numLines:${t.length.toString()}`;r.setAttribute("data-ga-click",e)}i=t.length,(s=document.getElementById("js-view-git-blame"))&&s.setAttribute("data-ga-click",`Blob, viewGitBlame, numLines:${i.toString()}`);let o=function(e){let t=document.querySelector(".js-permalink-shortcut");if(t instanceof HTMLAnchorElement){let n=`${t.href}${window.location.hash}`,i=document.getElementById("js-copy-permalink");if(i&&"CLIPBOARD-COPY"===i.tagName){i.value=n;let t=`Blob, copyPermalink, numLines:${e.toString()}`;i.setAttribute("data-ga-click",t)}return n}}(t.length);o&&function(e,t){let n=document.getElementById("js-new-issue");if(n instanceof HTMLAnchorElement){if(!n.href)return;let i=new URL(n.href,window.location.origin),s=new URLSearchParams(i.search);s.set("permalink",e),i.search=s.toString(),n.href=i.toString(),n.setAttribute("data-ga-click",`Blob, newIssue, numLines:${t.toString()}`)}}(o,t.length),o&&function(e,t){let n=document.getElementById("js-new-discussion");if(!(n instanceof HTMLAnchorElement)||!n?.href)return;let i=new URL(n.href,window.location.origin),s=new URLSearchParams(i.search);s.set("permalink",e),i.search=s.toString(),n.href=i.toString(),n.setAttribute("data-ga-click",`Blob, newDiscussion, numLines:${t.toString()}`)}(o,t.length),e.style.top=`${n.offsetTop-2}px`,e.classList.remove("d-none")}else e.classList.add("d-none")}();let{blobRange:t,anchorPrefix:n}=e,i=t&&f(n,t.start.line);!u&&i&&(i.scrollIntoView(),i.closest(".blob-wrapper, .js-blob-wrapper").scrollLeft=0),u=!1}(0,r.A)(function(){if(document.querySelector(".js-file-line-container")){setTimeout(h,0);let e=window.location.hash;for(let t of document.querySelectorAll(".js-update-url-with-hash"))if(t instanceof HTMLAnchorElement)t.hash=e;else if(t instanceof HTMLFormElement){let n=new URL(t.action,window.location.origin);n.hash=e,t.action=n.toString()}}}),(0,a.on)("click",".js-line-number",function(e){let t,n=(0,s.$c)(e.currentTarget.id),{blobRange:i}=n,l=(0,s.eC)(window.location.hash);l&&e.shiftKey&&(n.blobRange={start:l.start,end:i.end}),t=window.scrollY,u=!0,(()=>{window.location.hash=(0,s.JB)(n)})(),window.scrollTo(0,t)}),(0,o.lB)(".js-check-hidden-unicode",function(e){let t=!1,n=performance.now();if(m.test(e.textContent||"")){let n=e.querySelectorAll(".diff-table .blob-code-inner, .js-file-line-container .js-file-line, .js-suggested-changes-blob .blob-code-inner"),i=document.querySelector(".js-line-alert-template"),s=document.querySelector(".js-revealed-character-template");for(let r of n)if(function e(t,n){if(t.nodeType===Node.TEXT_NODE)return function(e,t){let n=!1;if(e.nodeValue)for(let i=e.nodeValue.length-1;i>=0;i--){let s=e.nodeValue.charAt(i),r="\uDB40"===s&&e.nodeValue.length>i+1;if(r&&(s=e.nodeValue.substring(i,i+2)),g[s]){if(n=!0,!t)break;let o=new l.i4(t,{revealedCharacter:g[s]}),a=new Range;a.setStart(e,i),a.setEnd(e,i+(r?2:1)),a.deleteContents(),a.insertNode(o)}}return n}(t,n);if(!t.childNodes||!t.childNodes.length)return!1;let i=!1;for(let s of t.childNodes)if(i||(i=e(s,n)),i&&!n)break;return i}(r,s)&&(t=!0,i)){let t=new l.i4(i,{});"before"===e.getAttribute("data-line-alert")?r.before(t):r.after(t)}}let i={durationMs:(performance.now()-n).toString(),result:t.toString()};if((0,c.BI)("blob_js_check_hidden_unicode_character",i),t){let t=document.querySelector(".js-file-alert-template");if(t){let n=new URL(window.location.href,window.location.origin);"1"===n.searchParams.get("h")?n.searchParams.delete("h"):n.searchParams.set("h","1");let i=new l.i4(t,{revealButtonHref:n.href});e.prepend(i)}}e.classList.remove("js-check-hidden-unicode")});let m=/[\u202A-\u202E]|[\u2066-\u2069]|\u{E0001}|\u{E007F}/u,g={"\u202A":"U+202A","\u202B":"U+202B","\u202C":"U+202C","\u202D":"U+202D","\u202E":"U+202E","\u2066":"U+2066","\u2067":"U+2067","\u2068":"U+2068","\u2069":"U+2069","\u{E0001}":"U+E0001","\u{E007F}":"U+E007F"},b=class CodeListingLine{range(e,t){e=isNaN(e)?0:e,t=isNaN(t)?0:t;let n=null,i=0,s=0;for(let[l,r]of this.lineElement.childNodes.entries()){let o=(r.textContent||"").length;if(o>e&&!n&&(n=r,i=l),o>=t){s=l;break}e-=o,t-=o}let l=document.createRange();if(i===s){for(;n&&"#text"!==n.nodeName;)n=n.childNodes[0];if(!n)return null;l.setStart(n,e),l.setEnd(n,t)}else l.setStart(this.lineElement,i),l.setEnd(this.lineElement,s+1);return l}constructor(e,t){(0,i._)(this,"lineElement",void 0),(0,i._)(this,"numberElement",void 0),this.lineElement=e,this.numberElement=t}},p=class CodeListing{findLine(e){if(!e)return null;let t=this.container.querySelector(`.js-blob-rnum[data-line-number='${e}']`);if(!t)return null;let n=t.nextElementSibling;return n&&n.classList.contains("js-file-line")?new b(n,t):null}constructor(e){(0,i._)(this,"container",void 0),this.container=e}},L=new WeakMap;function w(e){if(!e)return;let t=e.closest(".js-blob-code-container, .js-file-content"),n=e.querySelector(".js-codeowners-error-tooltip-template"),i=e.querySelector(".js-codeowners-error-line-alert-template");if(!t||!n||!i)return;let s=t.querySelector("deferred-diff-lines");if(s?.isAwaitingHighlight())return;let r=e.querySelectorAll(".js-codeowners-error"),o=new p(t);for(let e of r){if(L.get(e))continue;let t=e.getAttribute("data-line"),s=e.getAttribute("data-kind"),r=e.getAttribute("data-suggestion"),a=parseInt(e.getAttribute("data-start-offset")||"",10),c=parseInt(e.getAttribute("data-end-offset")||"",10),d=o.findLine(t),u=d?.range(a,c);if(!d||!u)continue;let f=s;r&&(f+=`: ${r}`);let h=document.createElement("SPAN");h.className="error-highlight",u.surroundContents(h);let m=new l.i4(n,{message:f}).firstElementChild;u.surroundContents(m);let g=new l.i4(i,{});d.numberElement.appendChild(g),L.set(e,!0)}}(0,o.lB)(".js-codeowners-errors",w),(0,a.on)("expander:expanded",".js-file",function(e){e.target&&e.target instanceof HTMLElement&&w(e.target.querySelector(".js-codeowners-errors"))}),(0,a.on)("deferred-highlight:applied","deferred-diff-lines",function(e){if(!e.target||!(e.target instanceof HTMLElement))return;let t=e.target.closest(".js-file");w(t?.querySelector(".js-codeowners-errors"))})},66914:(e,t,n)=>{var i=n(97797);(0,i.on)("click",".js-rich-diff.collapsed .js-expandable",function(e){e.target instanceof Element&&(e.preventDefault(),e.target.closest(".js-rich-diff").classList.remove("collapsed"))}),(0,i.on)("click",".js-show-rich-diff",function(e){let t=e.currentTarget.closest(".js-warn-no-visible-changes");if(!t)return;t.classList.add("d-none");let n=t.parentElement.querySelector(".js-no-rich-changes");n&&n.classList.remove("d-none")})},75941:(e,t,n)=>{n.d(t,{o:()=>DiffSelectionEvent});var i=n(50467);let DiffSelectionEvent=class DiffSelectionEvent extends Event{static dispatch(){window.dispatchEvent(new DiffSelectionEvent)}constructor(){super(DiffSelectionEvent.NAME,{bubbles:!1,cancelable:!0})}};(0,i._)(DiffSelectionEvent,"NAME","diff-line-selection")},89022:(e,t,n)=>{n.d(t,{E:()=>i});function i(e){let t=e.match(/^#?(diff-[a-f0-9]+)(L|R)(\d+)(?:-(L|R)(\d+))?$/i);if(null!=t&&6===t.length)return t;let n=e.match(/^#?(discussion-diff-[0-9]+)(L|R)(\d+)(?:-(L|R)(\d+))?$/i);return null!=n&&6===n.length?n:null}}}]); +//# sourceMappingURL=55526-57b20e2716ff.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/57026-caf6687379ce.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/57026-caf6687379ce.js" new file mode 100644 index 0000000..1cbd1c3 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/57026-caf6687379ce.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:57026-caf6687379ce.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[57026],{1606:(e,t,n)=>{n.d(t,{g:()=>r});let r={data:"data",whitespace:"whitespace",lineEnding:"lineEnding",lineEndingBlank:"lineEndingBlank",linePrefix:"linePrefix",lineSuffix:"lineSuffix",atxHeading:"atxHeading",atxHeadingSequence:"atxHeadingSequence",atxHeadingText:"atxHeadingText",autolink:"autolink",autolinkEmail:"autolinkEmail",autolinkMarker:"autolinkMarker",autolinkProtocol:"autolinkProtocol",characterEscape:"characterEscape",characterEscapeValue:"characterEscapeValue",characterReference:"characterReference",characterReferenceMarker:"characterReferenceMarker",characterReferenceMarkerNumeric:"characterReferenceMarkerNumeric",characterReferenceMarkerHexadecimal:"characterReferenceMarkerHexadecimal",characterReferenceValue:"characterReferenceValue",codeFenced:"codeFenced",codeFencedFence:"codeFencedFence",codeFencedFenceSequence:"codeFencedFenceSequence",codeFencedFenceInfo:"codeFencedFenceInfo",codeFencedFenceMeta:"codeFencedFenceMeta",codeFlowValue:"codeFlowValue",codeIndented:"codeIndented",codeText:"codeText",codeTextData:"codeTextData",codeTextPadding:"codeTextPadding",codeTextSequence:"codeTextSequence",content:"content",definition:"definition",definitionDestination:"definitionDestination",definitionDestinationLiteral:"definitionDestinationLiteral",definitionDestinationLiteralMarker:"definitionDestinationLiteralMarker",definitionDestinationRaw:"definitionDestinationRaw",definitionDestinationString:"definitionDestinationString",definitionLabel:"definitionLabel",definitionLabelMarker:"definitionLabelMarker",definitionLabelString:"definitionLabelString",definitionMarker:"definitionMarker",definitionTitle:"definitionTitle",definitionTitleMarker:"definitionTitleMarker",definitionTitleString:"definitionTitleString",emphasis:"emphasis",emphasisSequence:"emphasisSequence",emphasisText:"emphasisText",escapeMarker:"escapeMarker",hardBreakEscape:"hardBreakEscape",hardBreakTrailing:"hardBreakTrailing",htmlFlow:"htmlFlow",htmlFlowData:"htmlFlowData",htmlText:"htmlText",htmlTextData:"htmlTextData",image:"image",label:"label",labelText:"labelText",labelLink:"labelLink",labelImage:"labelImage",labelMarker:"labelMarker",labelImageMarker:"labelImageMarker",labelEnd:"labelEnd",link:"link",paragraph:"paragraph",reference:"reference",referenceMarker:"referenceMarker",referenceString:"referenceString",resource:"resource",resourceDestination:"resourceDestination",resourceDestinationLiteral:"resourceDestinationLiteral",resourceDestinationLiteralMarker:"resourceDestinationLiteralMarker",resourceDestinationRaw:"resourceDestinationRaw",resourceDestinationString:"resourceDestinationString",resourceMarker:"resourceMarker",resourceTitle:"resourceTitle",resourceTitleMarker:"resourceTitleMarker",resourceTitleString:"resourceTitleString",setextHeading:"setextHeading",setextHeadingText:"setextHeadingText",setextHeadingLine:"setextHeadingLine",setextHeadingLineSequence:"setextHeadingLineSequence",strong:"strong",strongSequence:"strongSequence",strongText:"strongText",thematicBreak:"thematicBreak",thematicBreakSequence:"thematicBreakSequence",blockQuote:"blockQuote",blockQuotePrefix:"blockQuotePrefix",blockQuoteMarker:"blockQuoteMarker",blockQuotePrefixWhitespace:"blockQuotePrefixWhitespace",listOrdered:"listOrdered",listUnordered:"listUnordered",listItemIndent:"listItemIndent",listItemMarker:"listItemMarker",listItemPrefix:"listItemPrefix",listItemPrefixWhitespace:"listItemPrefixWhitespace",listItemValue:"listItemValue",chunkDocument:"chunkDocument",chunkContent:"chunkContent",chunkFlow:"chunkFlow",chunkText:"chunkText",chunkString:"chunkString"}},4412:(e,t,n)=>{n.d(t,{A:()=>l});var r=n(97471),i=n(45362),a=n(82777),o=n(45535),c=n(41313),s=n(1606),u=n(63890);function l(e){let t,n,l=this.data();(l.micromarkExtensions||(l.micromarkExtensions=[])).push((t=(e||{}).singleTilde,n={name:"strikethrough",tokenize:function(e,n,a){let{now:o,sliceSerialize:l,previous:d}=this,f=(0,i.g$)(d)?(0,i.Tk)(d,o(),l):d,p=(0,i.S5)(f),h=new i.bN(f,o(),l),k=(0,i.JV)(p,h.value.bind(h),f),g=this.events,m=0;return function(d){return((0,r.ok)(d===c.F.tilde,"expected `~`"),f===c.F.tilde&&g[g.length-1][1].type!==s.g.characterEscape)?a(d):(e.enter("strikethroughSequenceTemporary"),function r(s){let d=(0,i.S5)(f);if(s===c.F.tilde)return m>1?a(s):(e.consume(s),m++,r);if(m<2&&!t)return a(s);let p=e.exit("strikethroughSequenceTemporary"),h=(0,i.y1)(s)?(0,i.rY)(s,o(),l):s,g=(0,i.S5)(h),x=(0,i.oU)(k)||(0,i.j9)(k),S=(0,i.oU)(g)||(0,i.j9)(g),b=(0,i.u_)(k)||(0,i.zU)(d);return p._open=!S||g===u.A.attentionSideAfter&&(x||b),p._close=!x||d===u.A.attentionSideAfter&&(S||(0,i.u_)(g)),n(s)}(d))}},resolveAll:function(e,t){let n=-1;for(;++n{n.d(t,{s:()=>i});var r=n(77760);function i(e,t){let n=String(e),i=(0,r.C)(e),a=t&&"object"==typeof t?"type"in t?t.position:t:void 0;if(!a)return;let o=i.toOffset(a.end),c=i.toOffset(a.start);return void 0===o||void 0===c?void 0:n.slice(c,o)}},34602:(e,t,n)=>{n.d(t,{A:()=>d});var r=n(41313),i=n(97471),a=n(45362),o=n(82777),c=n(45535),s=n(1606),u={name:"attention",resolveAll:function(e,t){let n,r,a,u,d,f,p,h,k=-1;for(;++k1&&e[k][1].end.offset-e[k][1].start.offset>1?2:1;let g={...e[n][1].end},m={...e[k][1].start};l(g,-f),l(m,f),u={type:f>1?s.g.strongSequence:s.g.emphasisSequence,start:g,end:{...e[n][1].end}},d={type:f>1?s.g.strongSequence:s.g.emphasisSequence,start:{...e[k][1].start},end:m},a={type:f>1?s.g.strongText:s.g.emphasisText,start:{...e[n][1].end},end:{...e[k][1].start}},r={type:f>1?s.g.strong:s.g.emphasis,start:{...u.start},end:{...d.end}},e[n][1].end={...u.start},e[k][1].start={...d.end},p=[],e[n][1].end.offset-e[n][1].start.offset&&(p=(0,o.V)(p,[["enter",e[n][1],t],["exit",e[n][1],t]])),p=(0,o.V)(p,[["enter",r,t],["enter",u,t],["exit",u,t],["enter",a,t]]),(0,i.ok)(t.parser.constructs.insideSpan.null,"expected `insideSpan` to be populated"),p=(0,o.V)(p,(0,c.W)(t.parser.constructs.insideSpan.null,e.slice(n+1,k),t)),p=(0,o.V)(p,[["exit",a,t],["enter",d,t],["exit",d,t],["exit",r,t]]),e[k][1].end.offset-e[k][1].start.offset?(h=2,p=(0,o.V)(p,[["enter",e[k][1],t],["exit",e[k][1],t]])):h=0,(0,o.m)(e,n-1,k-n+3,p),k=n+p.length-h-2;break}}for(k=-1;++k{n.d(t,{F:()=>r});let r={carriageReturn:-5,lineFeed:-4,carriageReturnLineFeed:-3,horizontalTab:-2,virtualSpace:-1,eof:null,nul:0,soh:1,stx:2,etx:3,eot:4,enq:5,ack:6,bel:7,bs:8,ht:9,lf:10,vt:11,ff:12,cr:13,so:14,si:15,dle:16,dc1:17,dc2:18,dc3:19,dc4:20,nak:21,syn:22,etb:23,can:24,em:25,sub:26,esc:27,fs:28,gs:29,rs:30,us:31,space:32,exclamationMark:33,quotationMark:34,numberSign:35,dollarSign:36,percentSign:37,ampersand:38,apostrophe:39,leftParenthesis:40,rightParenthesis:41,asterisk:42,plusSign:43,comma:44,dash:45,dot:46,slash:47,digit0:48,digit1:49,digit2:50,digit3:51,digit4:52,digit5:53,digit6:54,digit7:55,digit8:56,digit9:57,colon:58,semicolon:59,lessThan:60,equalsTo:61,greaterThan:62,questionMark:63,atSign:64,uppercaseA:65,uppercaseB:66,uppercaseC:67,uppercaseD:68,uppercaseE:69,uppercaseF:70,uppercaseG:71,uppercaseH:72,uppercaseI:73,uppercaseJ:74,uppercaseK:75,uppercaseL:76,uppercaseM:77,uppercaseN:78,uppercaseO:79,uppercaseP:80,uppercaseQ:81,uppercaseR:82,uppercaseS:83,uppercaseT:84,uppercaseU:85,uppercaseV:86,uppercaseW:87,uppercaseX:88,uppercaseY:89,uppercaseZ:90,leftSquareBracket:91,backslash:92,rightSquareBracket:93,caret:94,underscore:95,graveAccent:96,lowercaseA:97,lowercaseB:98,lowercaseC:99,lowercaseD:100,lowercaseE:101,lowercaseF:102,lowercaseG:103,lowercaseH:104,lowercaseI:105,lowercaseJ:106,lowercaseK:107,lowercaseL:108,lowercaseM:109,lowercaseN:110,lowercaseO:111,lowercaseP:112,lowercaseQ:113,lowercaseR:114,lowercaseS:115,lowercaseT:116,lowercaseU:117,lowercaseV:118,lowercaseW:119,lowercaseX:120,lowercaseY:121,lowercaseZ:122,leftCurlyBrace:123,verticalBar:124,rightCurlyBrace:125,tilde:126,del:127,byteOrderMarker:65279,replacementCharacter:65533}},45362:(e,t,n)=>{n.d(t,{bN:()=>M,S5:()=>f,JV:()=>p,u_:()=>g,_O:()=>x,y1:()=>b,g$:()=>T,zU:()=>m,oU:()=>k,Yp:()=>S,j9:()=>h,rY:()=>F,Tk:()=>w});var r,i,a=n(63890),o=n(40574),c=n(41313),s=Object.defineProperty,u=d(/\p{P}|\p{S}/u),l=d(/\s/);function d(e){return function(t){return null!==t&&t>-1&&e.test(String.fromCodePoint(t))}}function f(e){if(e===c.F.eof||(0,o.Ee)(e)||l(e))return a.A.characterGroupWhitespace;let t=0;if(e>=4352){if(null!==e&&e>=65024&&e<=65038)return i.nonEmojiGeneralUseVS;switch(function(e){if(!e||e<4352)return!1;switch(function(e){if(!Number.isSafeInteger(e))throw TypeError(`Expected a code point, got \`${typeof e}\`.`);return 161===e||164===e||167===e||168===e||170===e||173===e||174===e||e>=176&&e<=180||e>=182&&e<=186||e>=188&&e<=191||198===e||208===e||215===e||216===e||e>=222&&e<=225||230===e||e>=232&&e<=234||236===e||237===e||240===e||242===e||243===e||e>=247&&e<=250||252===e||254===e||257===e||273===e||275===e||283===e||294===e||295===e||299===e||e>=305&&e<=307||312===e||e>=319&&e<=322||324===e||e>=328&&e<=331||333===e||338===e||339===e||358===e||359===e||363===e||462===e||464===e||466===e||468===e||470===e||472===e||474===e||476===e||593===e||609===e||708===e||711===e||e>=713&&e<=715||717===e||720===e||e>=728&&e<=731||733===e||735===e||e>=768&&e<=879||e>=913&&e<=929||e>=931&&e<=937||e>=945&&e<=961||e>=963&&e<=969||1025===e||e>=1040&&e<=1103||1105===e||8208===e||e>=8211&&e<=8214||8216===e||8217===e||8220===e||8221===e||e>=8224&&e<=8226||e>=8228&&e<=8231||8240===e||8242===e||8243===e||8245===e||8251===e||8254===e||8308===e||8319===e||e>=8321&&e<=8324||8364===e||8451===e||8453===e||8457===e||8467===e||8470===e||8481===e||8482===e||8486===e||8491===e||8531===e||8532===e||e>=8539&&e<=8542||e>=8544&&e<=8555||e>=8560&&e<=8569||8585===e||e>=8592&&e<=8601||8632===e||8633===e||8658===e||8660===e||8679===e||8704===e||8706===e||8707===e||8711===e||8712===e||8715===e||8719===e||8721===e||8725===e||8730===e||e>=8733&&e<=8736||8739===e||8741===e||e>=8743&&e<=8748||8750===e||e>=8756&&e<=8759||8764===e||8765===e||8776===e||8780===e||8786===e||8800===e||8801===e||e>=8804&&e<=8807||8810===e||8811===e||8814===e||8815===e||8834===e||8835===e||8838===e||8839===e||8853===e||8857===e||8869===e||8895===e||8978===e||e>=9312&&e<=9449||e>=9451&&e<=9547||e>=9552&&e<=9587||e>=9600&&e<=9615||e>=9618&&e<=9621||9632===e||9633===e||e>=9635&&e<=9641||9650===e||9651===e||9654===e||9655===e||9660===e||9661===e||9664===e||9665===e||e>=9670&&e<=9672||9675===e||e>=9678&&e<=9681||e>=9698&&e<=9701||9711===e||9733===e||9734===e||9737===e||9742===e||9743===e||9756===e||9758===e||9792===e||9794===e||9824===e||9825===e||e>=9827&&e<=9829||e>=9831&&e<=9834||9836===e||9837===e||9839===e||9886===e||9887===e||9919===e||e>=9926&&e<=9933||e>=9935&&e<=9939||e>=9941&&e<=9953||9955===e||9960===e||9961===e||e>=9963&&e<=9969||9972===e||e>=9974&&e<=9977||9979===e||9980===e||9982===e||9983===e||10045===e||e>=10102&&e<=10111||e>=11094&&e<=11097||e>=12872&&e<=12879||e>=57344&&e<=63743||e>=65024&&e<=65039||65533===e||e>=127232&&e<=127242||e>=127248&&e<=127277||e>=127280&&e<=127337||e>=127344&&e<=127373||127375===e||127376===e||e>=127387&&e<=127404||e>=917760&&e<=917999||e>=983040&&e<=1048573||e>=1048576&&e<=1114109?"ambiguous":12288===e||e>=65281&&e<=65376||e>=65504&&e<=65510?"fullwidth":8361===e||e>=65377&&e<=65470||e>=65474&&e<=65479||e>=65482&&e<=65487||e>=65490&&e<=65495||e>=65498&&e<=65500||e>=65512&&e<=65518?"halfwidth":e>=32&&e<=126||162===e||163===e||165===e||166===e||172===e||175===e||e>=10214&&e<=10221||10629===e||10630===e?"narrow":e>=4352&&e<=4447||8986===e||8987===e||9001===e||9002===e||e>=9193&&e<=9196||9200===e||9203===e||9725===e||9726===e||9748===e||9749===e||e>=9776&&e<=9783||e>=9800&&e<=9811||9855===e||e>=9866&&e<=9871||9875===e||9889===e||9898===e||9899===e||9917===e||9918===e||9924===e||9925===e||9934===e||9940===e||9962===e||9970===e||9971===e||9973===e||9978===e||9981===e||9989===e||9994===e||9995===e||10024===e||10060===e||10062===e||e>=10067&&e<=10069||10071===e||e>=10133&&e<=10135||10160===e||10175===e||11035===e||11036===e||11088===e||11093===e||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12287||e>=12289&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12591||e>=12593&&e<=12686||e>=12688&&e<=12773||e>=12783&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=94176&&e<=94180||e>=94192&&e<=94198||e>=94208&&e<=101589||e>=101631&&e<=101662||e>=101760&&e<=101874||e>=110576&&e<=110579||e>=110581&&e<=110587||110589===e||110590===e||e>=110592&&e<=110882||110898===e||e>=110928&&e<=110930||110933===e||e>=110948&&e<=110951||e>=110960&&e<=111355||e>=119552&&e<=119638||e>=119648&&e<=119670||126980===e||127183===e||127374===e||e>=127377&&e<=127386||e>=127488&&e<=127490||e>=127504&&e<=127547||e>=127552&&e<=127560||127568===e||127569===e||e>=127584&&e<=127589||e>=127744&&e<=127776||e>=127789&&e<=127797||e>=127799&&e<=127868||e>=127870&&e<=127891||e>=127904&&e<=127946||e>=127951&&e<=127955||e>=127968&&e<=127984||127988===e||e>=127992&&e<=128062||128064===e||e>=128066&&e<=128252||e>=128255&&e<=128317||e>=128331&&e<=128334||e>=128336&&e<=128359||128378===e||128405===e||128406===e||128420===e||e>=128507&&e<=128591||e>=128640&&e<=128709||128716===e||e>=128720&&e<=128722||e>=128725&&e<=128728||e>=128732&&e<=128735||128747===e||128748===e||e>=128756&&e<=128764||e>=128992&&e<=129003||129008===e||e>=129292&&e<=129338||e>=129340&&e<=129349||e>=129351&&e<=129535||e>=129648&&e<=129660||e>=129664&&e<=129674||e>=129678&&e<=129734||129736===e||e>=129741&&e<=129756||e>=129759&&e<=129770||e>=129775&&e<=129784||e>=131072&&e<=196605||e>=196608&&e<=262141?"wide":"neutral"}(e)){case"fullwidth":case"halfwidth":return!0;case"wide":return!/^\p{Emoji_Presentation}/u.test(String.fromCodePoint(e));case"narrow":return!1;case"ambiguous":return 917760<=e&&e<=917999&&null;case"neutral":return/^\p{sc=Hangul}/u.test(String.fromCodePoint(e))}}(e)){case null:return i.ivs;case!0:t|=i.cjk}}return u(e)&&(t|=a.A.characterGroupPunctuation),t}function p(e,t,n){if(e!==i.nonEmojiGeneralUseVS)return e;let r=t(),a=f(r);return!r||h(a)?e:65025===n&&r&&!(r<8216)&&(8216===r||8217===r||8220===r||8221===r)?i.cjkPunctuation:a&~i.ivs}function h(e){return!!(e&a.A.characterGroupWhitespace)}function k(e){return(e&i.cjkPunctuation)===a.A.characterGroupPunctuation}function g(e){return!!(e&i.cjk)}function m(e){return e===i.ivs}function x(e){return!!(e&i.cjkOrIvs)}function S(e){return!!(e&i.spaceOrPunctuation)}function b(e){return!!(e&&e>=55296&&e<=56319)}function T(e){return!!(e&&e>=56320&&e<=57343)}function w(e,t,n){if(t._bufferIndex<2)return e;let r=n({start:{...t,_bufferIndex:t._bufferIndex-2},end:t}).codePointAt(0);return r&&r>=65536?r:e}(r=i||(i={})).spaceOrPunctuation=3,r.cjk=4096,r.cjkPunctuation=4098,r.ivs=8192,r.cjkOrIvs=12288,r.nonEmojiGeneralUseVS=16384,r.variationSelector=24576,r.ivsToCjkRightShift=1;var M=class{constructor(e,t,n){this.previousCode=e,this.nowPoint=t,this.sliceSerialize=n,((e,t)=>{let n,r;return r=void 0,(n="symbol"!=typeof t?t+"":t)in e?s(e,n,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[n]=r})(this,"cachedValue")}value(){return void 0===this.cachedValue&&(this.cachedValue=function(e,t,n){let r=e>=65536?2:1;if(t._bufferIndex<1+r)return null;let i=t._bufferIndex-r-2,a=n({start:{...t,_bufferIndex:i>=0?i:0},end:{...t,_bufferIndex:t._bufferIndex-r}}),o=a.charCodeAt(a.length-1);if(Number.isNaN(o))return null;if(a.length<2||o<56320||57343=65536?c:o}(this.previousCode,this.nowPoint,this.sliceSerialize)),this.cachedValue}};function F(e,t,n){let r=n({start:t,end:{...t,_bufferIndex:t._bufferIndex+2}}).codePointAt(0);return r&&r>=65536?r:e}},63890:(e,t,n)=>{n.d(t,{A:()=>r});let r={attentionSideAfter:2,attentionSideBefore:1,atxHeadingOpeningFenceSizeMax:6,autolinkDomainSizeMax:63,autolinkSchemeSizeMax:32,cdataOpeningString:"CDATA[",characterGroupPunctuation:2,characterGroupWhitespace:1,characterReferenceDecimalSizeMax:7,characterReferenceHexadecimalSizeMax:6,characterReferenceNamedSizeMax:31,codeFencedSequenceSizeMin:3,contentTypeContent:"content",contentTypeDocument:"document",contentTypeFlow:"flow",contentTypeString:"string",contentTypeText:"text",hardBreakPrefixSizeMin:2,htmlBasic:6,htmlCdata:5,htmlComment:2,htmlComplete:7,htmlDeclaration:4,htmlInstruction:3,htmlRawSizeMax:8,htmlRaw:1,linkResourceDestinationBalanceMax:32,linkReferenceSizeMax:999,listItemValueSizeMax:10,numericBaseDecimal:10,numericBaseHexadecimal:16,tabSize:4,thematicBreakMarkerCountMin:3,v8MaxSafeChunkSize:1e4}},91905:(e,t,n)=>{n.d(t,{A:()=>o});var r=n(81529),i=n(84600);let a={};function o(e){let t=e||a,n=this.data(),o=n.micromarkExtensions||(n.micromarkExtensions=[]),c=n.fromMarkdownExtensions||(n.fromMarkdownExtensions=[]),s=n.toMarkdownExtensions||(n.toMarkdownExtensions=[]);o.push((0,i.T)(t)),c.push((0,r.C)()),s.push((0,r.H)(t))}}}]); +//# sourceMappingURL=57026-b9c8f9bd66ea.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/57923.2603c3d3a08a9697fe5f.module.css" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/57923.2603c3d3a08a9697fe5f.module.css" new file mode 100644 index 0000000..5724fde --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/57923.2603c3d3a08a9697fe5f.module.css" @@ -0,0 +1,2 @@ +.ErrorPage-module__Heading--ucgNq{align-items:center;display:flex;flex-direction:column;justify-content:center;min-height:100%;min-width:100%}.ErrorPage-module__Status--ITNSj{font-size:var(--text-title-size-large);font-weight:var(--base-text-weight-semibold)}.ErrorPage-module__Message--CAZL0{font-size:var(--text-title-size-medium);padding-top:var(--base-size-8)}.MergeBoxSectionHeader-module__wrapper--zMA1Y{display:flex;gap:var(--base-size-8);padding:var(--base-size-16);position:relative}.MergeBoxSectionHeader-module__wrapperCanExpand--AoekL:hover{background:var(--control-transparent-bgColor-hover,var(--color-action-list-item-default-hover-bg));cursor:pointer}.MergeBoxSectionHeader-module__wrapperCanExpand--AoekL:has(:focus-visible){outline:solid 2px var(--focus-outlineColor,var(--color-accent-fg));outline-style:auto}.MergeBoxSectionHeader-module__button--mkkJX{bottom:0;cursor:pointer;height:100%;left:0;opacity:0;position:absolute;right:0;top:0;width:100%;z-index:1}.MergeBoxSectionHeader-module__button--mkkJX:after{bottom:0;content:"";left:0;position:absolute;right:0;top:0}.MergeBoxSectionHeader-module__MergeBoxSectionHeading--miHzz{font-size:var(--text-body-size-large,--text-title-size-small)}.ReviewerSection-module__reviewAuthor--ieHt5{color:var(--fgColor-default);display:flex;flex-direction:row;font-size:var(--text-body-size-medium);font-weight:var(--base-text-weight-normal);margin-left:var(--base-size-8);margin-right:var(--base-size-8);padding-top:5px;white-space:nowrap}.ReviewerSection-module__reviewAuthorAnchor--UMy9c{margin-left:var(--base-size-12)}.ReviewerSection-module__leadingVisual--_bMPf{min-height:24px}.ReviewerSection-module__reviewedIcon--KucH5{background-color:var(--bgColor-neutral-emphasis,var(--color-neutral-emphasis))}.ReviewerSection-module__readOnlyBadge--u8xtH{margin-top:var(--base-size-2)}.ReviewerSection-module__reviewerGroupsContainer--pZhlf{overflow-y:auto;padding-bottom:var(--stack-padding-condensed);padding-top:var(--stack-padding-condensed)}.ReviewerSection-module__reviewText--JiCKY{color:var(--fgColor-muted,var(--color-fg-muted));font-size:var(--text-body-size-small)}.ReviewerSection-module__reviewerActionBar--iT6ez{padding-right:var(--base-size-4)}.ReviewerSection-module__subtitleLink--J58lv{z-index:2}.MergeBoxExpandable-module__expandableContent--li_O1{border-top:var(--borderWidth-thin) solid var(--borderColor-muted);display:flex;flex-direction:column;max-height:300px;overflow-y:auto;padding-left:var(--base-size-8);padding-right:var(--base-size-8)}.MergeBoxExpandable-module__expandableWrapper--Ejab0{background-color:var(--bgColor-inset,var(--color-inset));display:grid;max-height:0;opacity:0;overflow:hidden;transition:max-height var(--transition-duration) cubic-bezier(.85,0,.3,1),visibility var(--transition-duration),opacity var(--transition-duration);--transition-duration:0.25s}@media(prefers-reduced-motion){.MergeBoxExpandable-module__expandableWrapper--Ejab0{--transition-duration:0}}.MergeBoxExpandable-module__isExpanded--PaOkp{max-height:300px;opacity:1}.ReviewGroupExpander-module__groupHeadingButton--S7IXP{--control-transparent-bgColor-selected:#0000;--button-invisible-bgColor-active:#0000;color:var(--fgColor-muted,var(--color-fg-muted))!important}.ReviewGroupExpander-module__expandableWrapper--Xlmef{display:grid;opacity:0;--transition-duration:0.25s;grid-template-rows:0fr;transition:grid-template-rows var(--transition-duration) cubic-bezier(.85,0,.3,1),visibility var(--transition-duration),opacity var(--transition-duration)}@media(prefers-reduced-motion){.ReviewGroupExpander-module__expandableWrapper--Xlmef{--transition-duration:0}}.ReviewGroupExpander-module__expandableListView--hoVAr{overflow:hidden}.ReviewGroupExpander-module__isExpanded--SHz1f{grid-template-rows:1fr;opacity:1}@layer recipes{.LeadingVisual-module__outer--qS9Ac{display:flex;flex-direction:column;grid-area:status}.LeadingVisual-module__inner--GeEeG{align-items:center;display:flex;justify-content:center}.UnreadIndicator-module__container--X6F4o{background-color:var(--fgColor-accent);border:var(--borderWidth-thick) solid;border-color:var(--bgColor-default);border-radius:var(--borderRadius-full);height:12px;margin-left:var(--base-size-4);transform:translate(-2px,2px);width:12px}}@layer recipes{}.SectionListItem-module__listItem--cGdcZ{display:flex;isolation:isolate;margin-left:var(--base-size-8);margin-right:var(--base-size-8);min-height:37px;overflow:hidden;padding-bottom:var(--base-size-2);padding-top:var(--base-size-2)}.SectionListItem-module__listItem--cGdcZ:focus,.SectionListItem-module__listItem--cGdcZ:hover{border-radius:var(--borderRadius-medium);margin-left:2px;margin-right:2px;padding-left:var(--base-size-6);padding-right:var(--base-size-6)}.ClosedOrMergedStateMergeBox-module__branchName--YOSfM{-webkit-box-decoration-break:clone;box-decoration-break:clone}.MergeabilityIcon-module__mergeabilityIcon--CV3kc{height:40px;left:-55px;top:0;width:40px}.MergeBox-module__mergeboxLoading--OhnXd{align-items:center;border:var(--borderWidth-thin) solid;border-color:var(--borderColor-default);border-radius:var(--borderRadius-medium);display:flex;flex-direction:row;justify-content:center;min-height:138px;padding:var(--base-size-4)}.MergeBox-module__mergePartialContainer--psYdf{overflow-y:clip}.MergeBox-module__mergeBoxAdjustBorders--vMX1B section:last-of-type{border-bottom:0!important;border-bottom-left-radius:var(--borderRadius-medium);border-bottom-right-radius:var(--borderRadius-medium);overflow:hidden}.MergeBoxErrorState-module__boundaryContainer--QgJ7i{margin-bottom:var(--base-size-8)}.BlockedSection-module__BlockedSectionMessage--kuN11{color:var(--fgColor-muted);margin-bottom:0}.BlockedSection-module__CircleOcticon--XMh4s{background-color:var(--bgColor-neutral-emphasis);color:var(--fgColor-onEmphasis)}.ExpandedChecks-module__checksGroupHeadingButton--PCfYf{--control-transparent-bgColor-selected:#0000;--button-invisible-bgColor-active:#0000;color:var(--fgColor-muted,var(--color-fg-muted))!important}.ExpandedChecks-module__checksContainer--ZfNYB{overflow-y:auto;padding-bottom:var(--stack-padding-condensed);padding-top:var(--stack-padding-condensed)}.ExpandedChecks-module__checksContainer--ZfNYB.ExpandedChecks-module__containPaint--TRfkR{contain:paint}.ExpandedChecks-module__expandableWrapper--aGEIv{display:grid;opacity:0;--transition-duration:0.25s;grid-template-rows:0fr;transition:grid-template-rows var(--transition-duration) cubic-bezier(.85,0,.3,1),visibility var(--transition-duration),opacity var(--transition-duration)}@media(prefers-reduced-motion){.ExpandedChecks-module__expandableWrapper--aGEIv{--transition-duration:0}}.ExpandedChecks-module__expandableListView--QDJPW{overflow:hidden}.ExpandedChecks-module__isExpanded--pq8Vj{grid-template-rows:1fr;opacity:1}.ExpandedChecks-module__groupHeader--jZHKD,.ExpandedChecks-module__unGroupedChecksHeader--yLZJm{align-items:center;display:flex;justify-content:space-between}.ExpandedChecks-module__totalChecksCountText--buDCm{--control-transparent-bgColor-selected:#0000;--button-invisible-bgColor-active:#0000;color:var(--fgColor-muted,var(--color-fg-muted))!important}.ExpandedChecks-module__checkSettingsButton--MONZT{margin-right:var(--base-size-12)}.ChecksGroup-module__ErrorFlash--WJCJc{margin-bottom:var(--base-size-16)}.ChecksGroup-module__ErrorOcticon--JPT2T{margin-right:var(--base-size-8)}@layer recipes{.LeadingContent-module__container--cui6v{align-items:flex-start;display:flex;flex-direction:row;gap:var(--stack-gap-condensed);grid-area:status;justify-content:flex-start;padding-left:var(--base-size-12);padding-right:var(--base-size-4)}.LeadingContent-module__container--cui6v:where(.LeadingContent-module__isSelectable--EzWvg){padding-left:0}.LeadingContent-module__container--cui6v:where(.LeadingContent-module__centerAligned--f1Pzo){align-items:center;justify-content:center;padding-right:var(--base-size-8)}}@layer recipes{.Metadata-module__metadata--ODMG0{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.Metadata-module__metadata--ODMG0:where(.Metadata-module__secondary--1te4w){color:var(--fgColor-muted);flex-shrink:0;font-size:var(--text-body-size-small);font-weight:400;gap:var(--base-size-4)}.Metadata-module__metadata--ODMG0:where(.Metadata-module__primary--S8Orc){gap:var(--stack-gap-normal);padding-right:var(--base-size-16)}.Metadata-module__metadata--ODMG0:where(.Metadata-module__alignRight--A1PHa){justify-content:flex-start}@media screen and (min-width:544px){.Metadata-module__metadata--ODMG0:where(.Metadata-module__alignRight--A1PHa){justify-content:flex-end}}.Metadata-module__metadata--ODMG0:empty{display:none}@media screen and (min-width:544px){.Metadata-module__metadata--ODMG0:empty{display:flex}}}.StatusCheckRow-module__spinnerWrapper--AjdFv{align-items:center;display:flex;height:var(--base-size-16);justify-content:center;left:0;position:absolute;top:0;width:var(--base-size-16)}.StatusCheckRow-module__spinnerInner--KITho{background-color:var(--fgColor-attention);border-radius:var(--borderRadius-full);height:var(--base-size-8);width:var(--base-size-8)}.StatusCheckRow-module__staticSpinner--zUcDB{opacity:.25}.StatusCheckRow-module__checksSpinnerWrapper--HgboO{color:var(--fgColor-attention);contain:paint;display:flex;position:relative}.StatusCheckRow-module__title--KooFt{color:var(--fgColor-muted);display:inline-block;margin-right:var(--base-size-4);overflow:hidden;padding-top:5px;text-overflow:ellipsis;white-space:nowrap}.StatusCheckRow-module__titleHeader--Qx8JS{color:var(--fgColor-default);font-size:var(--text-body-size-medium);font-weight:var(--base-text-weight-normal);margin-left:var(--base-size-8);margin-right:var(--base-size-8);white-space:nowrap}.StatusCheckRow-module__titleDescription--sgUXB{font-size:var(--text-body-size-small)}.StatusCheckRow-module__leadingVisual--JETy5{margin-left:var(--base-size-8)}.StatusCheckRow-module__requiredLabel--cYbp_{padding-top:var(--base-size-2)}.StatusCheckRow-module__buttonAnchorWrapper--NqQdl{color:var(--fgColor-muted);min-height:24px;min-width:24px}.StatusCheckRow-module__button--FN223{left:4px;margin-top:4px;position:relative;top:2px}.StatusCheckRowActionBar-module__statusCheckActionBar--Ipu3V{height:var(--base-size-32);min-width:var(--base-size-40);padding-right:var(--base-size-4)}@keyframes StatusCheckStatesIcon-module__smooth-appear--x7rmF{to{opacity:1;transform:scale(1)}}.StatusCheckStatesIcon-module__iconWrapper--LPiWu{height:32px;position:relative;width:32px}.StatusCheckStatesIcon-module__icon--trJdb{left:0;position:absolute;top:0}.StatusCheckStatesIcon-module__icon-animate--U9a0b{animation:StatusCheckStatesIcon-module__smooth-appear--x7rmF .3s cubic-bezier(.8,-.25,.55,1.5) forwards;animation-delay:.6s;opacity:0;transform:scale(.5)}.ConflictsSection-module__selectable--BT2Oj{-webkit-user-select:text;user-select:text}.ConflictsSection-module__ConflictsSectionLoadingSpinner--tkJ8X{margin-top:0!important;width:auto}.ConflictsSection-module__ConflictsSectionStatusSpinner--qtsen{margin-left:var(--base-size-8)}.CenteredLoadingSpinner-module__SpinnerContainer--Kwt8t{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:var(--base-size-40);width:100%}.DraftStateSection-module__DraftStateCircleIcon--APxWt{background:var(--bgColor-draft-emphasis,var(--bgColor-neutral-emphasis));color:var(--fgColor-onEmphasis)}.DraftStateSection-module__DraftStateFlashMessage--XlMkr{margin-bottom:var(--base-size-16)}.DraftStateSection-module__DraftStateIcon--_Co24{margin-right:var(--base-size-8)}.MergeQueueSection-module__MergeQueueSectionText--rEy7Y{color:var(--fgColor-muted)}.FlashError-module__Flash--fKR6V{margin-bottom:var(--base-size-16)}.FlashError-module__SafeHTMLText--J8lL9{font-weight:var(--base-text-weight-semibold)}.FlashError-module__Link--doNrG{margin-left:var(--base-size-4)}.FlashError-module__ruleViolationsTitle--rHHNU{font-weight:var(--base-text-weight-semibold);margin-bottom:var(--base-size-4)}.FlashError-module__ruleViolationRow--ekTTM{align-items:center;display:flex}.FlashError-module__Octicon--U4ZWa{color:var(--fgColor-danger)}.FlashError-module__ruleViolationText--Oe758{margin-left:var(--base-size-8)}.ConfirmMerge-module__ConfirmMergeContainer--svghz{margin-top:var(--base-size-16)}.ConfirmMerge-module__ConfirmMergeText--Lq1XQ{color:var(--fgColor-muted);font-size:var(--text-body-size-medium)} +/*# sourceMappingURL=lazy-react-partial-mergebox-partial-023c7f529b15.js.map*/ \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/59672-7a68bc81acac.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/59672-7a68bc81acac.js" new file mode 100644 index 0000000..7b5fec8 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/59672-7a68bc81acac.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:59672-7a68bc81acac.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[59672],{59672:(e,t,n)=>{n.d(t,{$66:()=>eL,$Qz:()=>en,$RX:()=>ey,$jn:()=>sU,A3O:()=>L,AGh:()=>tw,ALm:()=>N,A_D:()=>tm,Aav:()=>sB,Aoe:()=>eE,ApL:()=>tU,B2_:()=>tF,BUl:()=>S,BV1:()=>et,Blz:()=>ek,BmX:()=>e4,CF0:()=>I,CZ9:()=>eG,Cft:()=>sM,ClY:()=>eX,D2m:()=>tC,Dln:()=>tW,Do2:()=>H,Dso:()=>nU,Dx2:()=>w,E5w:()=>tP,EKo:()=>ty,EVx:()=>tM,Emp:()=>sS,FeW:()=>z,GEj:()=>n_,GGt:()=>o,GNm:()=>n3,GZ8:()=>si,Gll:()=>eZ,GpY:()=>e$,Gy_:()=>R,H1k:()=>e6,H1o:()=>to,H26:()=>nj,HPl:()=>na,I6i:()=>t_,I7E:()=>tu,IIf:()=>sl,IIj:()=>t6,IO9:()=>J,IUS:()=>sm,Ib9:()=>tH,Ir$:()=>tk,Ixh:()=>nR,JdH:()=>n0,Jjz:()=>e7,Ju:()=>nt,K11:()=>sf,KDv:()=>nW,KmT:()=>nF,L2v:()=>t7,L7I:()=>sO,LIP:()=>sD,LnB:()=>td,M1I:()=>sw,MB7:()=>nC,MCR:()=>nz,MFq:()=>tK,MLt:()=>ea,MN7:()=>tO,MYd:()=>Y,Mdp:()=>tZ,MeY:()=>sk,Mo3:()=>eo,MsP:()=>sj,MtG:()=>nM,MtY:()=>ec,N2B:()=>n1,NZR:()=>t0,N_y:()=>nT,Nbg:()=>e1,Nyd:()=>X,O0X:()=>t4,OdG:()=>tj,OqZ:()=>nr,P0E:()=>nK,PK0:()=>sr,PUd:()=>ew,PUr:()=>s_,Pe3:()=>n$,Pmq:()=>f,QDD:()=>sc,Qe$:()=>sq,QpY:()=>M,QqB:()=>t3,R0:()=>ns,R3J:()=>tt,RT3:()=>F,RTk:()=>eT,Rcb:()=>sz,SHX:()=>d,Sax:()=>Q,T3I:()=>ee,T7T:()=>e_,Ti7:()=>eB,Tk8:()=>ta,Tok:()=>nL,Ty5:()=>c,UXI:()=>tT,Uix:()=>n2,UtV:()=>e8,Utu:()=>nn,UzS:()=>sP,V$4:()=>nq,VB1:()=>nQ,VWf:()=>er,VvT:()=>s$,WJ9:()=>q,WJS:()=>t$,X6K:()=>eV,XFG:()=>sp,Xod:()=>ne,Xub:()=>nN,XyE:()=>e0,Y65:()=>V,Y8Y:()=>a,YLS:()=>sG,YPg:()=>ng,YQF:()=>eJ,ZD8:()=>eq,ZQn:()=>n7,Zn1:()=>n4,ZpJ:()=>tX,_37:()=>n6,_ON:()=>sL,_Qs:()=>th,_U0:()=>sT,__m:()=>t1,_nf:()=>p,_qn:()=>nH,_w2:()=>nw,a3t:()=>eS,a9m:()=>tR,aFD:()=>sd,aS1:()=>tc,aT_:()=>sh,bPH:()=>nA,bSK:()=>nf,bSP:()=>ez,bdU:()=>eb,buO:()=>Z,c6Y:()=>tA,cBf:()=>nh,cM2:()=>nZ,cP7:()=>nd,cTB:()=>v,cgr:()=>nO,clg:()=>eu,cmy:()=>C,cpj:()=>k,czP:()=>no,dCN:()=>l,dQy:()=>nv,dRG:()=>eW,dX8:()=>el,e87:()=>ti,eOD:()=>ex,eOR:()=>eR,eXd:()=>nY,esg:()=>sv,ev_:()=>t5,exA:()=>nI,fQd:()=>ep,ffV:()=>sn,fjg:()=>tV,fkb:()=>m,flg:()=>sg,gId:()=>eF,gT4:()=>tY,ggU:()=>nV,ggd:()=>x,guj:()=>nu,h6D:()=>nk,hgQ:()=>tL,hif:()=>sb,hmx:()=>sa,i9S:()=>e2,iT3:()=>e9,ibI:()=>su,iv9:()=>nS,j$Y:()=>tE,jIv:()=>tS,jMU:()=>A,jQC:()=>eU,jnS:()=>eQ,jzr:()=>h,k5q:()=>sy,kT_:()=>ej,lPv:()=>eD,lVp:()=>tn,l_Z:()=>i,ldz:()=>tq,lkl:()=>eA,ln4:()=>n5,luI:()=>T,lxH:()=>ny,m0O:()=>tx,m24:()=>st,m5w:()=>sY,mMZ:()=>ni,mWC:()=>sQ,mir:()=>ss,n23:()=>nX,n7E:()=>e3,nD_:()=>G,nGs:()=>ev,n_x:()=>W,nc0:()=>b,nsQ:()=>ts,o8w:()=>nD,oDn:()=>eP,oLj:()=>tI,oLy:()=>tG,oc1:()=>tr,oef:()=>u,ofs:()=>eC,ohj:()=>sR,ouN:()=>sI,oyk:()=>tQ,p01:()=>eN,p3r:()=>g,p7A:()=>j,pMt:()=>sC,pTz:()=>tv,pY7:()=>O,pjc:()=>nE,q0K:()=>nx,qsO:()=>_,rX4:()=>so,rZ8:()=>eH,rzN:()=>E,s6C:()=>t2,s7H:()=>eM,sOD:()=>te,sjS:()=>tg,sqc:()=>n8,t$I:()=>nB,t0c:()=>ei,t4j:()=>nl,tTz:()=>y,tvs:()=>eY,uSD:()=>nm,udC:()=>nb,uxJ:()=>es,vK6:()=>t8,vc8:()=>e5,vhE:()=>tN,vki:()=>eg,vm6:()=>tf,vuO:()=>nJ,w7M:()=>eI,w8S:()=>eK,wAV:()=>sx,wHS:()=>P,wYU:()=>tl,w_K:()=>U,wgM:()=>tp,whC:()=>ed,wqw:()=>n9,x21:()=>tB,x8I:()=>nP,xZU:()=>t9,xlN:()=>K,xwZ:()=>ef,y15:()=>tJ,y2B:()=>nc,yMx:()=>$,yf2:()=>tz,ygX:()=>B,ylB:()=>eh,z6W:()=>tb,zLJ:()=>eO,zUz:()=>em,zc2:()=>np,zg2:()=>se,zl4:()=>nG,zrE:()=>tD,zvd:()=>D});var s=n(56038),r=n(96518);let i=({path:e})=>new URL(e,s.fV.origin).toString(),o=({searchTerm:e})=>`/search?q=${(0,r.QU)(`${e}`)}&type=code`,a=({owner:e,repo:t,searchTerm:n})=>`/search?q=${(0,r.QU)(`repo:${e}/${t} ${n}`)}&type=code`,u=()=>"/search",$=()=>"/search/advanced",c=()=>"/search/stats",g=({owner:e})=>`/${(0,r.QU)(e)}`,U=({owner:e})=>`/${(0,r.QU)(e)}.png`,p=({bot_slug:e})=>`/copilot/hovercard?bot=${(0,r.QU)(e)}`,Q=({org:e})=>`/organizations/${(0,r.QU)(e)}/settings/copilot/models`,l=({owner:e})=>`/users/${(0,r.QU)(e)}/hovercard`,m=({owner:e,team:t})=>`/orgs/${(0,r.QU)(e)}/teams/${(0,r.QU)(t)}`,f=({owner:e,team:t})=>`/orgs/${(0,r.QU)(e)}/teams/${(0,r.QU)(t)}/hovercard`,_=({owner:e})=>`/orgs/${(0,r.QU)(e)}/hovercard`;function d({owner:e,repo:t,action:n}){return n?`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/${n}`:`/${(0,r.QU)(e)}/${(0,r.QU)(t)}`}let y=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/stats`,h=({owner:e,repo:t,framework:n,packageManager:s})=>{let i=`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/deploy`,o=new URLSearchParams;return n&&o.append("framework",n),s&&o.append("package_manager",s),o.toString()?`${i}?${o.toString()}`:i},w=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/graphs/participation`,b=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/graphs/commit-activity`,L=({owner:e,repo:t,refName:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/branches/${(0,r.QU)(n)}/rename_ref_check`,v=({owner:e,repo:t,branchName:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/branches/rename_form/${(0,r.QU)(n)}`,j=({owner:e,repo:t,refName:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/branches/${(0,r.QU)(n)}`,z=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/branches/check_tag_name_exists`,S=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/tags/check`,q=({owner:e,repo:t,branch:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/tree/${(0,r.QU)(n)}`,k=({owner:e,repo:t,tag:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/releases/tag/${(0,r.QU)(n)}`,R=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/invitations`,I=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/actions/immutable_actions/migrate`,P=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/actions/workflows/immutable-actions-migration/migrate_release`,C=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/settings/rules/new?target=branch&enforcement=disabled`,x=({owner:e})=>`/organizations/${(0,r.QU)(e)}/settings/blocked_users`,T=({owner:e})=>`/organizations/${(0,r.QU)(e)}/settings/rules/deferred_target_counts`,M=({owner:e})=>`/stafftools/users/${(0,r.QU)(e)}/organization_rules/deferred_target_counts`,D=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/settings/rules/deferred_target_counts`,Y=({owner:e,repo:t})=>`/stafftools/repositories/${(0,r.QU)(e)}/${(0,r.QU)(t)}/repository_rules/deferred_target_counts`,O=()=>"/repos/validate_regex",B=()=>"/repos/validate_regex/value",G=({owner:e,repo:t,commitish:n,filePath:s,lineNumber:i,plain:o,endLineNumber:a})=>{let u=o?`?plain=${o}`:"",$=i?`#L${i}${a?`-L${a}`:""}`:"";return`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/blob/${(0,r.QU)(n)}/${(0,r.QU)(s)}${u}${$}`},V=({owner:e,repo:t,commitish:n,filePath:s})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/delete/${(0,r.QU)(n)}/${(0,r.QU)(s)}`,X=({owner:e,repo:t,commitish:n,filePath:s,hash:i,lineNumber:o,returnToPrPath:a})=>{let u=i||(o?`#L${o}`:""),$=a?`?pr=${encodeURI(a)}`:"";return`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/edit/${(0,r.QU)(n)}/${(0,r.QU)(s)}${u}${$}`},Z=({owner:e,repo:t,commitish:n,filePath:s,lineNumber:i})=>{let o=i?`#L${i}`:"";return`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/blame/${(0,r.QU)(n)}/${(0,r.QU)(s)}${o}`};function A({login:e}){return`/users/${(0,r.QU)(e)}/dismiss_repository_notice`}function N({repo:e,commitish:t,path:n}){return["",e.ownerLogin,e.name,"deferred-metadata",t,n].map(r.QU).join("/")}function E({repo:e,commitish:t,path:n}){return["",e.ownerLogin,e.name,"deferred-ast",t,n].map(r.QU).join("/")}function H(e){return`/${(0,r.QU)(e.ownerLogin)}/${(0,r.QU)(e.name)}`}function K(e){return`/${(0,r.QU)(e.ownerLogin)}/${(0,r.QU)(e.name)}?files=1`}function J({repo:e,commitish:t,action:n,path:s}){let i=["",e.ownerLogin,e.name,n,t];return s&&"/"!==s&&i.push(s),i.map(r.QU).join("/")}let W=({owner:e,repo:t})=>`/${e}/${t}/sidepanel-metadata`;function F(e,t,n){return`/${e.ownerLogin}/${e.name}/detect_language?filename=${t}${n?"&full_details=true":""}`}let ee=({owner:e,repo:t,filePath:n,commitish:s})=>`${(({owner:e,repo:t,filePath:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/wiki/${n.substring(0,n.lastIndexOf("."))}`)({owner:e,repo:t,filePath:n})}/${s}`,et=({owner:e,repo:t,commitish:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/wiki/_compare/${n}`,en=({owner:e,repo:t,commitish:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/commit/${n}`,es=({owner:e,repo:t,entry:n,sha1:s,sha2:i})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/diffs/${n}/diff-lines?sha1=${s}&sha2=${i}`,er=({owner:e,repo:t,sha1:n,sha2:s,oid:i})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/diffs?commit=${i}&sha2=${s}${null!=n?`&sha1=${n}`:""}`,ei=({owner:e,repo:t,commitish:n})=>`${en({owner:e,repo:t,commitish:n})}/context_lines`,eo=({owner:e,repo:t,commitOid:n,beforeCommentId:s})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/commit/${n}/discussion_comments${s?`?before_comment_id=${s}`:""}`,ea=({owner:e,repo:t,commitOid:n,path:s,position:i})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/commit/${n}/inline_comments/?path=${(0,r.QU)(s)}&position=${(0,r.QU)(i)}`,eu=({owner:e,repo:t,commitOid:n,untilCommentId:s})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/commit/${n}/deferred_comment_data${s?`?until_comment_id=${s}`:""}`,e$=({owner:e,repo:t,ref:n,path:s})=>{var i;let o=`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/commits`;return n?s?`${o}/${(0,r.QU)(n)}/${(0,r.QU)((i=s).startsWith("/")?i.slice(1):i)}`:`${o}/${(0,r.QU)(n)}`:o};function ec({repo:e,branch:t,path:n,author:s}){let i=[e.ownerLogin,e.name,"commits",t,n].map(r.QU).join("/");return`/${i}?author=${(0,r.QU)(s)}`}function eg(e,t){return`/${e.ownerLogin}/${e.name}/commit/${t}/status-details`}function eU({repo:e,author:t}){let n=[e.ownerLogin,e.name];return`/${n.map(r.QU).join("/")}/commits?author=${(0,r.QU)(t)}`}let ep=({owner:e,repo:t,commitish:n})=>`/${(0,r.QU)(`${e}/${t}/commit/${n}/hovercard`)}`,eQ=({owner:e,repo:t,commitish:n})=>`/${(0,r.QU)(`${e}/${t}/branch_commits/${n}`)}`,el=({topicName:e})=>`/topics/${e}`,em=({categoryName:e})=>`/marketplace/category/${(0,r.y9)(e)}`,ef=({slug:e})=>`/marketplace/actions/${(0,r.QU)(e)}`,e_=({owner:e,repo:t,runId:n,attempt:s})=>{let i=[e,t,"actions"];return n&&i.push("runs",n),n&&s&&i.push("attempts",s),`/${i.map(r.QU).join("/")}`},ed=({owner:e,repo:t,runId:n})=>{let s=[e,t,"actions"];return n&&s.push("runs",n,"workflow"),`/${s.map(r.QU).join("/")}`},ey=({owner:e,repo:t,commitish:n,filePath:s})=>`/${e}/${t}/codeowners-validity/${n}/${s}`;function eh(e){return e.split("/").slice(0,-1).join("/")}function ew({repo:e,baseUrl:t="",branch:n,filter:s,pagination:i,perPage:o=30}){let a=[e.ownerLogin,e.name,"activity"],u=[];return n&&u.push(`ref=${(0,r.QU)(n)}`),s&&(s.activityType&&"all"!==s.activityType.toLocaleLowerCase()&&u.push(`activity_type=${(0,r.QU)(s.activityType)}`),s.actor?.login&&u.push(`actor=${(0,r.QU)(s.actor.login)}`),s.timePeriod&&"all"!==s.timePeriod.toLocaleLowerCase()&&u.push(`time_period=${(0,r.QU)(s.timePeriod)}`),s.sort&&"desc"!==s.sort.toLocaleLowerCase()&&u.push(`sort=${(0,r.QU)(s.sort)}`)),i&&(i.after?u.push(`after=${(0,r.QU)(i.after)}`):i.before&&u.push(`before=${i.before}`)),o&&30!==o&&u.push(`per_page=${o}`),`${t}/${a.map(r.QU).join("/")}${u.length>0?`?${u.join("&")}`:""}`}function eb({repo:e,baseUrl:t="",branch:n,timePeriod:s}){let i=[e.ownerLogin,e.name,"activity","actors"],o=[];return n&&o.push(`ref=${(0,r.QU)(n)}`),s&&o.push(`time_period=${(0,r.QU)(s)}`),`${t}/${i.map(r.QU).join("/")}${o.length>0?`?${o.join("&")}`:""}`}function eL(){return"insights/actors"}function ev(){return"bypass_requests/requesters"}function ej(){return"bypass_requests/approvers"}function ez({repo:e,base:t,head:n}){let s=[e.ownerLogin,e.name,"compare"].map(r.QU).join("/"),i=t?`${(0,r.QU)(t)}...${(0,r.QU)(n)}`:(0,r.QU)(n);return`/${s}/${i}`}function eS({repo:e,base:t,head:n}){let s=[e.ownerLogin,e.name,"branches","pre_mergeable"].map(r.QU).join("/"),i=`${(0,r.QU)(t)}...${(0,r.QU)(n)}`;return`/${s}/${i}`}function eq({repo:e}){let t=[e.ownerLogin,e.name,"toggle_generic_feature"];return`/${t.map(r.QU).join("/")}`}function ek(e,t){return`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/pulls`}function eR(e,t){return`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/stargazers`}function eI({repo:e,refName:t}){return`/${[e.ownerLogin,e.name,"pull","new",t].map(r.QU).join("/")}`}function eP({repo:e,number:t}){return`/${[e.ownerLogin,e.name,"pull",t.toString()].map(r.QU).join("/")}`}let eC=({owner:e,repo:t,number:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/pull/${n}`,ex=({owner:e,repo:t,number:n,contentId:s})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/pull/${n}#issue-${s}`,eT=({owner:e,repo:t,number:n,contentId:s})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/pull/${n}#issuecomment-${s}`,eM=({owner:e,repo:t,number:n,contentId:s})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/pull/${n}#pullrequestreview-${s}`,eD=({owner:e,repo:t,number:n,contentId:s})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/pull/${n}#discussion_r${s}`,eY=({owner:e,repo:t,number:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/pull/${n}/changes`,eO=({owner:e,repo:t,number:n,base:s,head:i})=>s?`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/pull/${n}/changes/${s}..${i}`:`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/pull/${n}/changes/${i}`,eB=({owner:e,repo:t,number:n,baseOid:s,headOid:i})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/pull/${n}/copilot_diff_chat/?base_oid=${s}&head_oid=${i}`,eG=({owner:e,repo:t,number:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/pull/${n}/partials/processing_indicator`;function eV({repo:e,refName:t,discard:n}){return`/${[e.ownerLogin,e.name,"branches","fetch_and_merge",t].map(r.QU).join("/")}${n?"?discard_changes=true":""}`}function eX({repo:e,commitOid:t,includeDirectories:n=!1}){let s=`/${[e.ownerLogin,e.name,"tree-list",t].map(r.QU).join("/")}`;return n?`${s}?include_directories=${n}`:s}function eZ(e){let t=[e.ownerLogin,e.name,"branch-and-tag-count"];return`/${t.map(r.QU).join("/")}`}function eA({repo:e,type:t,q:n,language:s,row:i,column:o,ref:a,path:u,codeNavContext:$,symbolKind:c}){let g=[e.ownerLogin,e.name].map(r.QU).join("/"),U=new URLSearchParams;return U.append("q",n),U.append("language",s),U.append("row",String(i)),U.append("col",String(o)),U.append("ref",a),U.append("blob_path",u),U.append("code_nav_context",$),c&&U.append("symbol_kind",c),`/${g}/find-react-${t}?${U.toString()}`}let eN=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/discussions`,eE=({owner:e,repo:t,discussionNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/discussions/${n}`,eH=({owner:e,repo:t,discussionNumber:n,contentId:s})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/discussions/${n}#discussioncomment-${s}`,eK=({owner:e,repo:t,discussionNumber:n,contentId:s})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/discussions/${n}#discussion-${s}`;function eJ(e,t){return`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/issues`}let eW=({owner:e,repo:t,issueNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/issues/${n}`,eF=({owner:e,repo:t,issueNumber:n,contentId:s})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/issues/${n}#issuecomment-${s}`,e0=({owner:e,repo:t,issueNumber:n,contentId:s})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/issues/${n}#issue-${s}`,e1=({owner:e,repo:t,issueNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/issues/${n}/hovercard`,e2=({owner:e,repo:t,pullRequestNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/pull/${n}/hovercard`;function e3(e,t,n){let s=e.split("/",4).join("/").length,r=e.substring(s);return r===`/${t}`?"":r.startsWith(`/${t}/`)?r.substring(t.length+2):n}let e6=e=>`/${(0,r.QU)(`${e.ownerLogin}/${e.name}`)}/settings/transfer`,e7=()=>"/repositories/check-name",e8=()=>"/repositories/check-proposed-repository",e9=()=>"/repositories",e5=e=>`/${(0,r.QU)(`${e.ownerLogin}/${e.name}`)}/settings/transfer`,e4=e=>`/${(0,r.QU)(`${e.ownerLogin}/${e.name}`)}/settings/abort_transfer`,te=()=>"/new/import",tt=()=>"/repositories/new/templates",tn=()=>"/repositories/forms/owner_items",ts=e=>`/repositories/forms/fork_owner_items?repo_id=${e}`;function tr(e,t,n){let s=new URLSearchParams({owner:e});return t&&n&&(s.set("form",t),s.set("repo_id",n.toString())),`/repositories/forms/owner_detail?${s.toString()}`}let ti=e=>`/${(0,r.QU)(e.ownerLogin)}/${(0,r.QU)(e.name)}/graphs/contributors`,to=e=>`/${(0,r.QU)(e.ownerLogin)}/${(0,r.QU)(e.name)}/settings/access`;function ta({pathPrefix:e,sourceName:t,propertyName:n}){let s=["",e,(0,r.QU)(t),"settings"];return n?(s.push("custom-property"),s.push((0,r.QU)(n))):s.push("custom-properties"),s.join("/")}function tu({pathPrefix:e,sourceName:t,propertyName:n}){let s=`/${e}/${(0,r.QU)(t)}/settings/custom-property`;return n?`${s}/${(0,r.QU)(n)}`:s}let t$=({business:e,org:t,propertyName:n})=>`/enterprises/${(0,r.QU)(e)}/settings/custom-property/organizations/${(0,r.QU)(t)}/${(0,r.QU)(n)}`,tc=({business:e,org:t,propertyName:n})=>`/enterprises/${(0,r.QU)(e)}/settings/custom-property/organizations/${(0,r.QU)(t)}/${(0,r.QU)(n)}/promote`;function tg({org:e}){return`/organizations/${(0,r.QU)(e)}/settings/custom-properties/values`}function tU({org:e,repo:t}){return`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/settings/custom-properties/values`}function tp({org:e}){return`/organizations/${(0,r.QU)(e)}/settings/custom-properties/list-repos-values`}let tQ=({pathPrefix:e,sourceName:t,propertyName:n})=>["",e,(0,r.QU)(t),"settings/custom-properties-usage",(0,r.QU)(n)].join("/"),tl=({sourceName:e,propertyName:t})=>`/enterprises/${(0,r.QU)(e)}/settings/property_definition_name_check/${(0,r.QU)(t)}`;function tm({org:e,repo:t}){return`/${(0,r.QU)(`${e}/${t}`)}/settings/custom-properties`}function tf({propertyName:e,...t}){let n=new URLSearchParams(t);return`/repositories/custom-properties/${(0,r.QU)(e)}/allowed-values?${n.toString()}`}function t_({owner:e,repo:t}){return`/${(0,r.QU)(`${e}/${t}`)}/fork`}function td({owner:e,repo:t}){return`/${(0,r.QU)(`${e}/${t}`)}/forks`}function ty({org:e}={}){return e?`/organizations/${(0,r.QU)(e)}/repositories/new`:"/new"}function th({orgs:e}){let t=e.map(e=>(0,r.QU)(e)),n=`orgs=${t.join(",")}`;return`/repos/custom_properties?${n}`}function tw({topic:e,org:t}){return`/search?q=topic%3A${(0,r.QU)(e)}+org%3A${(0,r.QU)(t)}&type=Repositories`}function tb(e){return`/users/shortcuts${e?`/${e}`:""}`}function tL({repo:e,pagination:t={before:null,after:null},perPage:n=30,query:s}){let i=[e.ownerLogin,e.name,"attestations"],o=[];return t&&(t.after?o.push(`after=${(0,r.QU)(t.after)}`):t.before&&o.push(`before=${(0,r.QU)(t.before)}`)),s&&o.push(`q=${s}`),n&&30!==n&&o.push(`per_page=${n}`),`/${i.map(r.QU).join("/")}${o.length>0?`?${o.join("&")}`:""}`}function tv({repo:e,attestationId:t}){return`/${[e.ownerLogin,e.name,"attestations",t.toString()].map(r.QU).join("/")}`}function tj({repo:e,attestationId:t}){return`/${[e.ownerLogin,e.name,"attestations",t.toString(),"download"].map(r.QU).join("/")}`}function tz({repo:e}){return`/${[e.ownerLogin,e.name,"branches"].map(r.QU).join("/")}`}function tS({repo:e}){return`/${[e.ownerLogin,e.name,"tags"].map(r.QU).join("/")}`}function tq({org:e}){return`/orgs/${(0,r.QU)(e)}/organization_onboarding/advanced_security`}function tk({enterprise:e}){return`/enterprises/${(0,r.QU)(e)}/settings/advanced_security`}function tR({enterprise:e}){return`/enterprises/${(0,r.QU)(e)}/settings/security_analysis`}function tI({enterprise:e}){return`/enterprises/${(0,r.QU)(e)}/settings/security_analysis/apply_configuration`}function tP({enterprise:e}){return`/enterprises/${(0,r.QU)(e)}/settings/security_analysis/apply_confirmation_summary`}function tC({org:e,tip:t,q:n}){let s=`/organizations/${(0,r.QU)(e)}/settings/security_products`;return t&&(s+=`?tip=${t}`),n&&(s+=`${t?"&":"?"}q=${(0,r.QU)(n)}`),s}function tx({org:e}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/configurations/new`}function tT({org:e}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/quick_setup_configurations/new`}function tM({org:e}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/quick_setup_configurations`}function tD({org:e,id:t}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/quick_setup_configurations/${t}`}function tY({org:e}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/configurations`}function tO({org:e,id:t}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/configurations/edit/${t}`}function tB({org:e,id:t}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/configurations/${t}`}function tG({org:e}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/repositories`}function tV({org:e}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/repositories/apply_confirmation_summary`}function tX({org:e,id:t}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/configuration/${t}/repositories`}function tZ({org:e}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/configuration/repositories`}function tA({org:e,id:t}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/configuration/${t}/repositories_count`}function tN({org:e,id:t,tip:n}){let s=`/organizations/${(0,r.QU)(e)}/settings/security_products/configurations/view/${t}`;return n&&(s+=`?tip=${n}`),s}function tE({org:e}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/repositories/advanced_security_license_summary`}function tH({org:e}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/in_progress`}function tK({org:e}){return`/organizations/${(0,r.QU)(e)}/settings/security_products/refresh`}function tJ(e){return`/organizations/${(0,r.QU)(e)}/settings/security_products/actions_runners_labels`}function tW({business:e,query:t}){let n=`/enterprises/${(0,r.QU)(e)}/security/coverage`;if(!t)return n;let s=new URLSearchParams;return s.append("query",t),`${n}?${s.toString()}`}function tF({business:e}){return`/enterprises/${(0,r.QU)(e)}/settings/security_analysis`}function t0({business:e}){return`/enterprises/${(0,r.QU)(e)}/settings/security_analysis_policies`}function t1(e){return`/enterprises/${(0,r.QU)(e)}/settings/security_analysis/actions_runners_labels`}function t2({business:e}){return`/enterprises/${(0,r.QU)(e)}/settings/security_analysis/configurations/new`}function t3({business:e}){return`/enterprises/${(0,r.QU)(e)}/settings/security_analysis/configurations`}function t6({business:e,id:t}){return`/enterprises/${(0,r.QU)(e)}/settings/security_analysis/configurations/${t}/edit`}function t7({business:e,id:t}){return`/enterprises/${(0,r.QU)(e)}/settings/security_analysis/configurations/${t}`}function t8({business:e,id:t}){return`/enterprises/${(0,r.QU)(e)}/settings/security_analysis/configurations/${t}/view`}function t9({business:e,id:t}){return`/enterprises/${(0,r.QU)(e)}/settings/security_analysis/configurations/${t}/repositories_count`}function t5(){return"/users/settings/security_products"}function t4({id:e}){return`/users/settings/security_products/configuration/${e}/repositories_count`}function ne(){return"/users/settings/security_products/configurations/new"}function nt({id:e}){return`/users/settings/security_products/configurations/edit/${e}`}function nn({id:e}){return`/users/settings/security_products/configurations/view/${e}`}function ns(){return"/users/settings/security_products/configurations"}function nr({id:e}){return`/users/settings/security_products/configurations/${e}`}function ni({id:e}){return`/users/settings/security_products/configuration/${e}/apply_configuration`}function no(){return"/users/settings/security_products/configuration/apply_confirmation_summary"}function na(){return"/users/settings/security_products/configuration/detach_configuration"}function nu(){return"/contact-sales"}function n$(){return"/enterprise/contact/thanks"}let nc=()=>"/contact";function ng({report:e,contentURL:t}){let n=new URLSearchParams({report:e});return t&&n.append("report_content_url",t),`/contact/report-abuse?${n}`}function nU({repo:e}){return`/${(0,r.QU)(`${e.ownerLogin}/${e.name}`)}/settings/security_analysis`}function np({org:e}){return`/orgs/${(0,r.QU)(e)}/dismiss_notice`}function nQ({noticeName:e}){return`/settings/dismiss-notice/${e}`}let nl=({slug:e})=>`/enterprises/${e}`,nm=({slug:e})=>`/enterprises/${(0,r.QU)(e)}/enterprise_roles`;function nf({slug:e,page:t,query:n}){let s=`/enterprises/${(0,r.QU)(e)}/enterprise_role_assignments`,i=new URLSearchParams;t&&i.append("page",t.toString()),n&&i.append("query",n);let o=i.toString();return o?`${s}?${o}`:s}function n_({slug:e,page:t,query:n}){let s=`/stafftools/enterprises/${(0,r.QU)(e)}/custom_roles/enterprise_role_assignments`,i=new URLSearchParams;t&&i.append("page",t.toString()),n&&i.append("query",n);let o=i.toString();return o?`${s}?${o}`:s}let nd=({slug:e,actorId:t,actorType:n,roleId:s})=>`/enterprises/${(0,r.QU)(e)}/enterprise_role_assignments/${n}/${t}/${s}`,ny=({slug:e,actorId:t,actorType:n,roleId:s})=>`/organizations/${(0,r.QU)(e)}/settings/org_role_assignments/${n}/${t}/${s}`,nh=({slug:e})=>`/enterprises/${(0,r.QU)(e)}/enterprise_role_assignments/new`,nw=({slug:e})=>`/enterprises/${(0,r.QU)(e)}/enterprise_role_assignment_queries`;function nb({slug:e,page:t,query:n}){let s=`/organizations/${(0,r.QU)(e)}/settings/org_role_assignments`,i=new URLSearchParams;t&&i.append("page",t.toString()),n&&i.append("query",n);let o=i.toString();return o?`${s}?${o}`:s}let nL=({slug:e})=>`/organizations/${e}/settings/org_role_assignments/new`,nv=({slug:e})=>`/organizations/${e}/settings/org_role_assignment_queries`;function nj({slug:e,page:t,query:n}){let s=`/stafftools/users/${(0,r.QU)(e)}/org_role_assignments`,i=new URLSearchParams;t&&i.append("page",t.toString()),n&&i.append("query",n);let o=i.toString();return o?`${s}?${o}`:s}function nz(e){let t=new URLSearchParams({email:e});return`/settings/emails/subscriptions/topics_by_email?${t}`}function nS(e){let t=new URLSearchParams(e);return`/settings/emails/subscriptions/topics_by_params?${t}`}function nq(){return"/settings/emails/subscriptions/link-request/new"}let nk=({login:e})=>`/users/${(0,r.QU)(e)}/pulls/settings/file_tree_visibility`,nR=({owner:e,repo:t,alertNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/code-scanning/${n}`,nI=({owner:e,repo:t,alertNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/code-scanning/${n}/assignees`,nP=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/code-scanning/available-assignees`,nC=({owner:e,repo:t,alertNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/code-scanning/${n}/tracking-links`,nx=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/alerts/code-scanning/alert-list`,nT=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/alerts/code-scanning/alert-group-list`,nM=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/alerts/code-scanning/repository-list.json`,nD=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/alerts/code-scanning/rule-list.json`,nY=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/alerts/code-scanning/tag-list.json`,nO=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/alerts/code-scanning/tool-list.json`,nB=({owner:e,repo:t,alertNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/secret-scanning/${n}`;function nG({org:e}){return`/orgs/${(0,r.QU)(e)}/security/alerts/secret-scanning/alert-list`}function nV({org:e}){return`/orgs/${(0,r.QU)(e)}/security/alerts/secret-scanning/alert-group-list`}let nX=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/alerts/secret-scanning/repository-list.json`,nZ=({owner:e,repo:t,alertNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/dependabot/${n}/assignees`,nA=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/dependabot/available-assignees`,nN=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/overview`,nE=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/options`,nH=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/quality`,nK=({owner:e,repo:t,ruleId:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/quality/rules/${encodeURIComponent(n)}`,nJ=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/settings/code-quality`,nW=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/quality/ai-findings`,nF=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/quality/ai-findings/findings`,n0=({owner:e,repo:t,category:n,severity:s,language:i})=>{let o=[];return n&&o.push(`category=${encodeURIComponent(n.toLowerCase())}`),s&&o.push(`severity=${encodeURIComponent(s.toLowerCase())}`),i&&o.push(`language=${encodeURIComponent(i.toLowerCase())}`),`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/quality/rules${o.length>0?`?${o.join("&")}`:""}`},n1=({owner:e,repo:t,ruleId:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/quality/rules/${encodeURIComponent(n)}/files`,n2=({owner:e,repo:t,ruleId:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/quality/rules/${encodeURIComponent(n)}/findings`,n3=({owner:e,repo:t,findingStableId:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/quality/findings/${encodeURIComponent(n)}/state`,n6=({owner:e,repo:t,ruleId:n,findingStableId:s})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/quality/rules/${encodeURIComponent(n)}/findings/${encodeURIComponent(s)}/autofixes`,n7=({owner:e,repo:t,findingStableId:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/quality/findings/${encodeURIComponent(n)}/autofix/commit`,n8=({owner:e,repo:t})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/quality/ai-findings/commits`,n9=({org:e,optionsType:t,name:n})=>{let s=[`options-type=${(0,r.QU)(t)}`];return n&&s.push(`name=${(0,r.QU)(n)}`),`/orgs/${(0,r.QU)(e)}/security/quality/options${s.length>0?`?${s.join("&")}`:""}`},n5=({org:e,state:t})=>{let n=[];return t&&n.push(`state=${t}`),`/orgs/${(0,r.QU)(e)}/security/campaigns${n.length>0?`?${n.join("&")}`:""}`},n4=({org:e,query:t,templateId:n,sourceCampaignNumber:s,alertType:i})=>{let o=[];return t&&o.push(`query=${(0,r.QU)(t)}`),n&&o.push(`template=${(0,r.QU)(n)}`),s&&o.push(`source_campaign_number=${s}`),i&&o.push(`alert_type=${i}`),`/orgs/${(0,r.QU)(e)}/security/campaigns/new${o.length>0?`?${o.join("&")}`:""}`},se=({org:e,alertType:t})=>{let n=[];return t&&n.push(`alert_type=${t}`),`/orgs/${(0,r.QU)(e)}/security/campaigns/counts${n.length>0?`?${n.join("&")}`:""}`},st=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/campaigns`,sn=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/drafts`,ss=({org:e,securityCampaignNumber:t})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/${t}`,sr=({org:e,securityCampaignNumber:t})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/${t}`,si=({org:e,securityCampaignNumber:t})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/${t}/close`,so=({org:e,securityCampaignNumber:t})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/${t}/reopen`,sa=({org:e,securityCampaignNumber:t})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/drafts/${t}`,su=({org:e,securityCampaignNumber:t})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/${t}/publish`,s$=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/alerts/summary`,sc=({org:e,securityCampaignNumber:t})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/${t}`,sg=({org:e,query:t,campaignName:n,campaignDescription:s,sourceCampaignNumber:i,alertType:o})=>{let a=[`query=${(0,r.QU)(t)}`];return n&&a.push(`campaign_name=${(0,r.QU)(n)}`),s&&a.push(`campaign_description=${(0,r.QU)(s)}`),i&&a.push(`source_campaign_number=${i}`),o&&a.push(`alert_type=${o}`),`/orgs/${(0,r.QU)(e)}/security/campaigns/publish?${a.join("&")}`},sU=({org:e,securityCampaignNumber:t})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/${t}/alerts`,sp=({org:e,securityCampaignNumber:t})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/${t}/alerts-groups`,sQ=({org:e,securityCampaignNumber:t})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/${t}/repositories-summary`,sl=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/open`,sm=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/closed`,sf=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/closed`,s_=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/drafts`,sd=({org:e,securityCampaignNumber:t})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/drafts/${t}`,sy=({org:e,securityCampaignNumber:t})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/drafts/${t}/publish`,sh=({org:e})=>`/orgs/${(0,r.QU)(e)}/security/campaigns/managers`,sw=({owner:e,repo:t,campaignNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/campaigns/${n}`,sb=({owner:e,repo:t,securityCampaignNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/campaigns/${n}/alerts`,sL=({owner:e,repo:t,securityCampaignNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/campaigns/${n}/assign-to-copilot`,sv=({owner:e,repo:t,securityCampaignNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/campaigns/${n}/check-for-new-fixes`,sj=({owner:e,repo:t,securityCampaignNumber:n})=>`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/campaigns/${n}/branches`;function sz({owner:e,repo:t,isDelegatedAlertEnabled:n}){let s=`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/code-scanning/alert-dismissal`;return n?`${s}/create-request`:`${s}/close-alerts`}function sS(e,t){return`/${(0,r.QU)(e)}/${(0,r.QU)(t)}/security/secret-scanning/resolve-react`}function sq({owner:e,query:t}){return`/orgs/${(0,r.QU)(e)}/repositories?q=${(0,r.QU)(t)}`}let sk=({businessSlug:e})=>`/enterprises/${(0,r.QU)(e)}/organizations/suggestions`,sR=({businessSlug:e})=>`/enterprises/${(0,r.QU)(e)}/organizations/suggestions/validate`,sI=({businessSlug:e})=>`/enterprises/${(0,r.QU)(e)}/check_team_name`,sP=()=>"/codespaces/",sC=({returnTo:e}={})=>`/login${e?`?return_to=${encodeURIComponent(e)}`:""}`,sx=({org:e})=>`/organizations/${(0,r.QU)(e)}/settings/billing/summary`,sT=({org:e,query:t})=>`/organizations/${(0,r.QU)(e)}/settings/billing/usage?query=${(0,r.QU)(t)}`,sM=({businessSlug:e})=>`/enterprises/${(0,r.QU)(e)}/licensing`,sD=({basePath:e,groupPath:t})=>(0,r.QU)(`${e}/${t}`),sY=({basePath:e,automatedReviewCommentId:t})=>`${e}/automated_review_comments/${t}/apply_suggestion`,sO=({basePath:e,automatedReviewCommentId:t})=>`${e}/automated_review_comments/${t}/dismiss`,sB=({basePath:e,automatedReviewCommentId:t})=>`${e}/automated_review_comments/${t}/reopen`,sG=({basePath:e,automatedReviewCommentId:t})=>`${e}/automated_review_comments/${t}/feedback`},96518:(e,t,n)=>{n.d(t,{ID:()=>r,QU:()=>o,y9:()=>a,yH:()=>i});var s=n(56038);function r(e,t,n){let r=e(t),i=new URL(r,s.fV.origin||"https://github.com");for(let[e,t]of(r===s.fV.pathname&&(i.search=new URLSearchParams(s.fV.search).toString()),Object.entries(n||{})))null==t?i.searchParams.delete(e):i.searchParams.set(e,t.toString());return i}function i(e,t,n){let s=r(e,t,n);return s.href.replace(s.origin,"")}function o(e){return e.split("/").map(encodeURIComponent).join("/")}function a(e){return e.replace(/[^a-zA-Z0-9]/g,"-").toLowerCase()}}}]); +//# sourceMappingURL=59672-20eafd1c61fd.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/60932-358e763dc6ab.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/60932-358e763dc6ab.js" new file mode 100644 index 0000000..aec230a --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/60932-358e763dc6ab.js" @@ -0,0 +1,4 @@ +performance.mark("js-parse-end:60932-358e763dc6ab.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[60932],{3536:(e,t,n)=>{n.d(t,{I:()=>s,d_:()=>c,wu:()=>o});var i=n(16522),r=n(96379),a=n(96540),l=n(4095);function o(e,t){let n,o,s=(0,i.c)(5),[c,d]=(0,a.useState)(l.UI);return s[0]!==e?(n=()=>{if(!e)return;let t=!1;return(async()=>{d(l.UI);let n=await (0,r.Sr)(e);if(!t)try{if(n.ok){let e=await n.json();e.loading=!1,e&&d(e)}else d(l.Xx)}catch{d(l.Xx)}})(),function(){t=!0}},s[0]=e,s[1]=n):n=s[1],s[2]!==t||s[3]!==e?(o=[e,t],s[2]=t,s[3]=e,s[4]=o):o=s[4],(0,a.useEffect)(n,o),c}function s(e){let t,n,l=(0,i.c)(3),[o,s]=(0,a.useState)(void 0);return l[0]!==e?(t=()=>{e&&(async()=>{let t=await (0,r.Sr)(e);try{if(t.ok){let e=await t.json();e&&s(e.data)}}catch{}})()},n=[e],l[0]=e,l[1]=t,l[2]=n):(t=l[1],n=l[2]),(0,a.useEffect)(t,n),o}function c(e,t,n,i){let[o,s]=(0,a.useState)(l.UI),c=(0,a.useRef)([...Array(n)]),d=(0,a.useRef)(t);return(0,a.useEffect)(()=>{if(!e)return;let n=!1;async function i(t){let a=await (0,r.Sr)(`${e}?start_entry=${t}`);if(!n)try{if(a.ok){let e=await a.json();if(e){let t=0;for(let n=d.current;ni(e.nextIndex),0)):(d.current===e.nextIndex?e.error=!0:e.error=!1,s(e))}}else s(e=>({...e,loading:!1,error:!0,extraDiffEntries:c.current}))}catch{s(e=>({...e,loading:!1,deferredCommits:c.current}))}}return i(t),function(){n=!0}},[e,i,t]),(0,a.useEffect)(()=>{c.current=[],d.current=t},[e,i,t]),o}},4095:(e,t,n)=>{n.d(t,{M2:()=>c,NO:()=>d,UI:()=>l,Xx:()=>o,ej:()=>m,xs:()=>u});var i=n(74848),r=n(16522),a=n(96540);let l={deferredCommits:[],renameHistory:null,loading:!0},o={deferredCommits:[],renameHistory:null,loading:!1},s=(0,a.createContext)(l);function c(e){let t,n=(0,r.c)(3),{children:a,deferredData:l}=e;return n[0]!==a||n[1]!==l?(t=(0,i.jsx)(s,{value:l,children:a}),n[0]=a,n[1]=l,n[2]=t):t=n[2],t}function d(e){let t=(0,a.use)(s),n=t.error,i=t.deferredCommits?.find(t=>t?.oid===e);return n&&void 0===i&&(i={oid:e,statusCheckStatus:void 0}),i}function u(){return(0,a.use)(s).loading}function m(){return(0,a.use)(s).renameHistory}try{s.displayName||(s.displayName="DeferredCommitDataContext")}catch{}try{c.displayName||(c.displayName="DeferredCommitDataProvider")}catch{}},8624:(e,t,n)=>{n.d(t,{L:()=>s});var i=n(74848),r=n(16522),a=n(38621),l=n(26108),o=n(34164);n(96540);let s=e=>{let t,n,s,c=(0,r.c)(17),{ref:d,expanded:u,testid:m,ariaLabel:f,ariaControls:h,onToggleExpanded:p,alignment:x,dataHotkey:y,className:g,size:v,tooltipDirection:b,variant:j}=e,C=u?`collapse-${m}`:`expand-${m}`,N=u?"left"===x?a.SidebarExpandIcon:a.SidebarCollapseIcon:"left"===x?a.SidebarCollapseIcon:a.SidebarExpandIcon;c[0]!==p?(t=e=>{p(e)},c[0]=p,c[1]=t):t=c[1];let _=j??"invisible";return c[2]!==g?(n=(0,o.$)(g,"fgColor-muted"),c[2]=g,c[3]=n):n=c[3],c[4]!==h||c[5]!==f||c[6]!==y||c[7]!==u||c[8]!==d||c[9]!==v||c[10]!==C||c[11]!==N||c[12]!==t||c[13]!==_||c[14]!==n||c[15]!==b?(s=(0,i.jsx)(l.K,{"aria-label":f,tooltipDirection:b,ref:d,"data-testid":C,"aria-expanded":u,"aria-controls":h,icon:N,"data-hotkey":y,onClick:t,variant:_,size:v,className:n}),c[4]=h,c[5]=f,c[6]=y,c[7]=u,c[8]=d,c[9]=v,c[10]=C,c[11]=N,c[12]=t,c[13]=_,c[14]=n,c[15]=b,c[16]=s):s=c[16],s};s.displayName="ExpandButton"},11738:(e,t,n)=>{n.d(t,{z:()=>r});var i=n(74848);let r=({ref:e,onClick:t,id:n,children:r})=>(0,i.jsx)("button",{type:"button",id:n,ref:e,onClick:t,className:"CompactCommentButton-module__CompactCommentInputContainer--mPD5I",children:r});r.displayName="CompactCommentButton"},12918:(e,t,n)=>{n.d(t,{Gx:()=>o});var i,r=n(74848),a=n(16522),l=n(21537);function o(e){return(0,l.Y)(e)?(0,l.t6)(e).map(e=>{let t=l.A0.get(e);return t?`${t}`:e}).join(""):null}try{(i=function(e){let t,n=(0,a.c)(2),{char:i}=e;return n[0]!==i?(t=(0,r.jsx)("span",{className:"hidden-unicode-replacement padded",children:i}),n[0]=i,n[1]=t):t=n[1],t}).displayName||(i.displayName="HiddenUnicodeCharacter")}catch{}},13071:(e,t,n)=>{n.d(t,{C:()=>o});var i=n(74848),r=n(44185),a=n(81945),l=n(42257);function o({deferredData:e,oid:t,repo:n,helpUrl:o}){let s=void 0===e,c="";try{c=e?.statusCheckStatus?.short_text?.split("checks")[0]?.trim()||""}catch{}return(0,i.jsxs)(i.Fragment,{children:[s&&(0,i.jsx)(a.O,{className:"ml-2",variant:"rounded",width:"62px"}),e?.statusCheckStatus&&(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)("span",{className:"d-flex ml-2 mr-1",children:"\xb7"}),(0,i.jsx)(l.d,{oid:t,status:e?.statusCheckStatus?.state,descriptionString:c,repo:n}),e?.signatureInformation&&e?.verifiedStatus!=="unsigned"&&(0,i.jsx)("span",{className:"d-flex ml-2",children:"\xb7"})]}),e?.signatureInformation&&(0,i.jsx)("div",{className:"ml-2",children:(0,i.jsx)(r.h,{commitOid:t,hasSignature:!0,verificationStatus:e.verifiedStatus,signature:{helpUrl:o,...e.signatureInformation}})})]})}try{o.displayName||(o.displayName="DeferredCommitHeaderData")}catch{}},16790:(e,t,n)=>{n.d(t,{eX:()=>s,xe:()=>c,zq:()=>o});var i=n(74848),r=n(16522),a=n(96540);let l=(0,a.createContext)({loggingPayload:void 0,loggingPrefix:void 0});function o(e){let t,n=(0,r.c)(3),{children:a,loggingInfo:o}=e;return n[0]!==a||n[1]!==o?(t=(0,i.jsx)(l,{value:o,children:a}),n[0]=a,n[1]=o,n[2]=t):t=n[2],t}function s(){let e=(0,a.use)(l);return void 0!==e.loggingPayload&&void 0!==e.loggingPrefix}function c(){return(0,a.use)(l)}try{l.displayName||(l.displayName="CommitsLoggingContext")}catch{}try{o.displayName||(o.displayName="CommitsLoggingInfoProvider")}catch{}},17998:(e,t,n)=>{n.d(t,{k:()=>c});var i=n(74848),r=n(16522),a=n(77430),l=n(12683),o=n(10436);function s(e){let t,n,a,s,c,d,u,m,f=(0,r.c)(20),{iconColor:h,icon:p,size:x,backgroundColor:y,absolute:g,backgroundSx:v,backgroundClassName:b}=e,j=void 0===x?12:x,C=void 0===y?"fg.onEmphasis":y,N=void 0===g||g;return 12===j?(t="10px",n="1px"):20===j?(t="16px",n="2px"):(t="16px",n="4px"),f[0]!==N?(a=N?{position:"absolute",bottom:-1,right:-1,boxShadow:"0 0 0 2px var(--bgColor-default, var(--color-canvas-default))",backgroundColor:"var(--bgColor-default, var(--color-canvas-default))"}:{position:"relative"},f[0]=N,f[1]=a):a=f[1],f[2]!==v||f[3]!==a?(s={display:"flex",borderRadius:"100px",...a,...v},f[2]=v,f[3]=a,f[4]=s):s=f[4],f[5]!==C||f[6]!==t||f[7]!==n?(c=(0,i.jsx)(l.az,{sx:{display:"flex",position:"absolute",borderRadius:"100px",width:t,height:t,left:n,top:n,backgroundColor:C}}),f[5]=C,f[6]=t,f[7]=n,f[8]=c):c=f[8],f[9]!==h?(d={color:h,position:"relative"},f[9]=h,f[10]=d):d=f[10],f[11]!==p||f[12]!==j||f[13]!==d?(u=(0,i.jsx)(o.m4,{icon:p,size:j,sx:d}),f[11]=p,f[12]=j,f[13]=d,f[14]=u):u=f[14],f[15]!==b||f[16]!==s||f[17]!==c||f[18]!==u?(m=(0,i.jsxs)(l.az,{sx:s,className:b,children:[c,u]}),f[15]=b,f[16]=s,f[17]=c,f[18]=u,f[19]=m):m=f[19],m}try{s.displayName||(s.displayName="StatusIcon")}catch{}function c(e){let t,n,o,c,d=(0,r.c)(20),{zIndex:u,altText:m,hovercardUrl:f,src:h,square:p,icon:x,iconColor:y,backgroundColor:g,backgroundSx:v,backgroundClassName:b,className:j,sx:C,size:N}=e,_=void 0===N?20:N;return d[0]!==C||d[1]!==u?(t={position:"relative",display:"flex",gap:2,alignItems:"center",...u,...C},d[0]=C,d[1]=u,d[2]=t):t=d[2],d[3]!==m||d[4]!==f||d[5]!==_||d[6]!==p||d[7]!==h?(n=(0,i.jsx)(a.r,{alt:m,"data-hovercard-url":f,size:_,square:p,src:h}),d[3]=m,d[4]=f,d[5]=_,d[6]=p,d[7]=h,d[8]=n):n=d[8],d[9]!==b||d[10]!==g||d[11]!==v||d[12]!==x||d[13]!==y?(o=(0,i.jsx)(s,{icon:x,iconColor:y,size:12,backgroundColor:g,backgroundClassName:b,backgroundSx:v}),d[9]=b,d[10]=g,d[11]=v,d[12]=x,d[13]=y,d[14]=o):o=d[14],d[15]!==j||d[16]!==t||d[17]!==n||d[18]!==o?(c=(0,i.jsxs)(l.az,{sx:t,className:j,children:[n,o]}),d[15]=j,d[16]=t,d[17]=n,d[18]=o,d[19]=c):c=d[19],c}try{c.displayName||(c.displayName="StatusAvatar")}catch{}},21537:(e,t,n)=>{n.d(t,{A0:()=>l,TA:()=>c,Y:()=>d,_n:()=>u,rE:()=>o,t6:()=>s});let i=/[\u202A-\u202E]|[\u2066-\u2069]|\u{E0001}|\u{E007F}/u,r=/[\u202A-\u202E]|[\u2066-\u2069]|\u{E0001}|\u{E007F}/gu,a=/([\u202A-\u202E]|[\u2066-\u2069]|\u{E0001}|\u{E007F})/gu,l=new Map(Object.entries({"\u202A":"U+202A","\u202B":"U+202B","\u202C":"U+202C","\u202D":"U+202D","\u202E":"U+202E","\u2066":"U+2066","\u2067":"U+2067","\u2068":"U+2068","\u2069":"U+2069","\u{E0001}":"U+E0001","\u{E007F}":"U+E007F"}));function o(e){return``}function s(e){return e.split(a)}function c(e){return d(e)?e.replaceAll(r,e=>l.get(e)??""):e}function d(e){return i.test(e)}function u(e){return l.get(e)}},27028:(e,t,n)=>{n.d(t,{G:()=>O,Q:()=>P});var i=n(74848),r=n(16522),a=n(38621),l=n(5524),o=n(94236),s=n(26108),c=n(21373),d=n(19415),u=n(96540),m=n(21067),f=n(59672),h=n(96379);function p(e,t){let n,i=(0,r.c)(5),a=(t??[]).filter(e=>!e.dismissed);if(i[0]!==a||i[1]!==e){let t;i[3]!==e?(t=t=>t.name===e,i[3]=e,i[4]=t):t=i[4],n=a.filter(t),i[0]=a,i[1]=e,i[2]=n}else n=i[2];return 0===n.length}var x=n(70719),y=n(34164);let g="compact_diff_lines";function v(e){let t,n,a,l,o,s,v,C,N,_,w,S,D,E,I,A=(0,r.c)(19),{userNotices:R}=e,k=p(g,R),{dismissNotice:F}=(D=(0,r.c)(5),E=p(g,R),D[0]!==E||D[1]!==g?(w=()=>{(0,m.M3)()&&!E&&(0,h.DI)((0,f.VB1)({noticeName:g}),{method:"POST"})},D[0]=E,D[1]=g,D[2]=w):w=D[2],I=w,D[3]!==I?(S={dismissNotice:I},D[3]=I,D[4]=S):S=D[4],S);A[0]===Symbol.for("react.memo_cache_sentinel")?(t={onSuccess:j,onError:b},A[0]=t):t=A[0];let{mutate:T}=(0,x.U)(t),[P,L]=(0,u.useState)(!0);A[1]!==F||A[2]!==T?(n=()=>{T({lineSpacing:"compact"}),L(!1),F()},A[1]=F,A[2]=T,A[3]=n):n=A[3];let O=n;A[4]!==F?(a=()=>{L(!1),F()},A[4]=F,A[5]=a):a=A[5];let U=a;return k?null:(A[6]===Symbol.for("react.memo_cache_sentinel")?(l=(0,y.$)("d-flex flex-column gap-2","DiffCompactLinesPopover-module__PopoverContent--HUydq"),o=(0,i.jsx)("h2",{className:"DiffCompactLinesPopover-module__Heading--hFmwp",children:"Customizable line height"}),s=(0,i.jsx)("p",{children:"The default line height has been increased for improved accessibility. You can choose to enable a more compact line height from the view settings menu."}),A[6]=l,A[7]=o,A[8]=s):(l=A[6],o=A[7],s=A[8]),A[9]!==O?(v=(0,i.jsx)(c.Q,{onClick:O,children:"Enable compact line height"}),A[9]=O,A[10]=v):v=A[10],A[11]!==U?(C=(0,i.jsx)(c.Q,{onClick:U,variant:"invisible",children:"Dismiss"}),A[11]=U,A[12]=C):C=A[12],A[13]!==v||A[14]!==C?(N=(0,i.jsxs)(d.A.Content,{className:l,children:[o,s,(0,i.jsxs)("div",{className:"d-flex gap-2 flex-row w-full flex-wrap",children:[v,C]})]}),A[13]=v,A[14]=C,A[15]=N):N=A[15],A[16]!==P||A[17]!==N?(_=(0,i.jsx)(d.A,{open:P,caret:"top-right",className:"DiffCompactLinesPopover-module__PopoverContainer--A4URR",children:N}),A[16]=P,A[17]=N,A[18]=_):_=A[18],_)}function b(){}function j(){}try{v.displayName||(v.displayName="DiffCompactLinesPopover")}catch{}var C=n(79472);function N(e){let t,n,a,o,s,c=(0,r.c)(16),{whitespacePreferenceAvailable:d,lineSpacingPreferenceAvailable:u,defaultHideWhitespace:m,onUpdateWhitespace:f,reloadOnChange:h}=e,p=void 0===d||d,y=void 0===u||u,{data:g}=(0,C.ID)(),v=(0,C.Qn)(void 0!==m&&m);c[0]===Symbol.for("react.memo_cache_sentinel")?(t={onSuccess:w,onError:_},c[0]=t):t=c[0];let{mutate:b}=(0,x.U)(t);c[1]!==v||c[2]!==f||c[3]!==h?(n=()=>{(0,C.bJ)("w",v?"0":"1"),f?.(!v),void 0!==h&&h()},c[1]=v,c[2]=f,c[3]=h,c[4]=n):n=c[4];let j=n;return g&&(p||y)?(c[5]!==v||c[6]!==j||c[7]!==p?(a=p&&(0,i.jsx)(l.l.Item,{selected:v,onSelect:j,children:"Hide whitespace"}),c[5]=v,c[6]=j,c[7]=p,c[8]=a):a=c[8],c[9]!==g||c[10]!==y||c[11]!==b?(o=y&&(0,i.jsx)(l.l.Item,{selected:"compact"===g.lineSpacing,onSelect:()=>b({lineSpacing:"compact"===g.lineSpacing?"relaxed":"compact"}),children:"Compact line height"}),c[9]=g,c[10]=y,c[11]=b,c[12]=o):o=c[12],c[13]!==a||c[14]!==o?(s=(0,i.jsxs)(l.l.Group,{"aria-label":"Format",selectionVariant:"multiple",variant:"subtle",children:[a,o]}),c[13]=a,c[14]=o,c[15]=s):s=c[15],s):null}function _(){}function w(){}try{N.displayName||(N.displayName="DiffLinePresentationToggles")}catch{}function S(e){let t,n,a,o,s,c,d,u=(0,r.c)(17),{reloadOnChange:m}=e,f=void 0!==m&&m,{data:h}=(0,C.ID)(),p=h?.splitPreference;u[0]===Symbol.for("react.memo_cache_sentinel")?(t={onSuccess:E,onError:D},u[0]=t):t=u[0];let{mutate:y}=(0,x.U)(t);u[1]===Symbol.for("react.memo_cache_sentinel")?(n=(0,i.jsx)(l.l.GroupHeading,{children:"Layout"}),u[1]=n):n=u[1];let g="unified"===p;u[2]!==f||u[3]!==y?(a=()=>{y({splitPreference:"unified"}),(0,C.bJ)("diff","unified"),f&&window.location.reload()},u[2]=f,u[3]=y,u[4]=a):a=u[4],u[5]!==g||u[6]!==a?(o=(0,i.jsx)(l.l.Item,{selected:g,onSelect:a,children:"Unified"}),u[5]=g,u[6]=a,u[7]=o):o=u[7];let v="split"===p;return u[8]!==f||u[9]!==y?(s=()=>{y({splitPreference:"split"}),(0,C.bJ)("diff","split"),f&&window.location.reload()},u[8]=f,u[9]=y,u[10]=s):s=u[10],u[11]!==v||u[12]!==s?(c=(0,i.jsx)(l.l.Item,{selected:v,onSelect:s,children:"Split"}),u[11]=v,u[12]=s,u[13]=c):c=u[13],u[14]!==o||u[15]!==c?(d=(0,i.jsxs)(l.l.Group,{selectionVariant:"single",children:[n,o,c]}),u[14]=o,u[15]=c,u[16]=d):d=u[16],d}function D(){}function E(){}try{S.displayName||(S.displayName="DiffViewPreferenceToggle")}catch{}var I=n(18799);function A(){let e,t,n,a,o=(0,r.c)(8),{data:s}=(0,C.ID)();o[0]===Symbol.for("react.memo_cache_sentinel")?(e={onSuccess:k,onError:R},o[0]=e):e=o[0];let{mutate:c}=(0,x.U)(e);if(!s)return null;let d=s.commentsPreference===I.sI.Collapsed;return o[1]!==d||o[2]!==c?(t=()=>c({commentsPreference:d?I.sI.Visible:I.sI.Collapsed}),o[1]=d,o[2]=c,o[3]=t):t=o[3],o[4]===Symbol.for("react.memo_cache_sentinel")?(n=(0,i.jsx)(l.l.TrailingVisual,{children:(0,i.jsx)("kbd",{className:"color-fg-muted",children:"i"})}),o[4]=n):n=o[4],o[5]!==d||o[6]!==t?(a=(0,i.jsx)(l.l.Group,{"aria-label":"Comments",selectionVariant:"single",children:(0,i.jsxs)(l.l.Item,{role:"menuitemcheckbox",selected:d,onSelect:t,children:["Minimize comments",n]})}),o[5]=d,o[6]=t,o[7]=a):a=o[7],a}function R(){}function k(){}try{A.displayName||(A.displayName="DiffCommentsPreferenceToggle")}catch{}var F=n(30459);let T=["layout","comments","whitespace","line-spacing"];function P(e){let t,n,a,o,s,c,d,u,m,f=(0,r.c)(29),{additionalPreferences:h,defaultHideWhitespace:p,enabledDiffViewSettings:x,onUpdateWhitespace:y,reloadOnSplitPreferenceChange:g,reloadOnWhitespaceChange:v}=e,b=void 0===x?T:x,j=void 0!==g&&g,C=void 0!==v&&v;f[0]!==b?(t=b.includes("layout")&&b.includes("comments"),f[0]=b,f[1]=t):t=f[1];let _=t;f[2]!==b?(n=b.includes("line-spacing")||b.includes("whitespace"),f[2]=b,f[3]=n):n=f[3];let w=n;f[4]!==b||f[5]!==w?(a=w&&(b.includes("comments")||b.includes("layout")),f[4]=b,f[5]=w,f[6]=a):a=f[6];let D=a;return f[7]!==b||f[8]!==j?(o=b.includes("layout")&&(0,i.jsx)(S,{reloadOnChange:j}),f[7]=b,f[8]=j,f[9]=o):o=f[9],f[10]!==_?(s=_&&(0,i.jsx)(l.l.Divider,{}),f[10]=_,f[11]=s):s=f[11],f[12]!==b?(c=b.includes("comments")&&(0,i.jsx)(A,{}),f[12]=b,f[13]=c):c=f[13],f[14]!==D?(d=D&&(0,i.jsx)(l.l.Divider,{}),f[14]=D,f[15]=d):d=f[15],f[16]!==p||f[17]!==b||f[18]!==y||f[19]!==C||f[20]!==w?(u=w?(0,i.jsx)(i.Fragment,{children:(0,i.jsx)(N,{defaultHideWhitespace:p,lineSpacingPreferenceAvailable:b.includes("line-spacing"),whitespacePreferenceAvailable:b.includes("whitespace"),onUpdateWhitespace:y,reloadOnChange:C?L:void 0})}):null,f[16]=p,f[17]=b,f[18]=y,f[19]=C,f[20]=w,f[21]=u):u=f[21],f[22]!==h||f[23]!==d||f[24]!==u||f[25]!==o||f[26]!==s||f[27]!==c?(m=(0,i.jsxs)(i.Fragment,{children:[o,s,c,d,u,h]}),f[22]=h,f[23]=d,f[24]=u,f[25]=o,f[26]=s,f[27]=c,f[28]=m):m=f[28],m}function L(){return window.location.reload()}function O(e){let t,n,c,d,u,m,f=(0,r.c)(21),{additionalPreferences:h,invisible:p,defaultHideWhitespace:x,enabledDiffViewSettings:y,onUpdateWhitespace:g,reloadOnSplitPreferenceChange:b,reloadOnWhitespaceChange:j,small:C,userNotices:N}=e,_=void 0===y?T:y,w=void 0!==b&&b,S=void 0!==j&&j,{sendAnalyticsEvent:D}=(0,F.s)();f[0]!==D?(t=()=>{D("diff_view.settings.open","DIFF_VIEW_SETTINGS_BUTTON")},f[0]=D,f[1]=t):t=f[1];let E=t,I=C?"small":"medium",A=void 0===p||p?"invisible":"default";return f[2]!==E||f[3]!==I||f[4]!==A?(n=(0,i.jsx)(o.W.Anchor,{children:(0,i.jsx)(s.K,{"aria-label":"Open diff view settings",icon:a.GearIcon,size:I,variant:A,onClick:E})}),f[2]=E,f[3]=I,f[4]=A,f[5]=n):n=f[5],f[6]!==h||f[7]!==x||f[8]!==_||f[9]!==g||f[10]!==w||f[11]!==S?(c=(0,i.jsx)(o.W.Overlay,{children:(0,i.jsx)(l.l,{children:(0,i.jsx)(P,{additionalPreferences:h,defaultHideWhitespace:x,enabledDiffViewSettings:_,onUpdateWhitespace:g,reloadOnSplitPreferenceChange:w,reloadOnWhitespaceChange:S})})}),f[6]=h,f[7]=x,f[8]=_,f[9]=g,f[10]=w,f[11]=S,f[12]=c):c=f[12],f[13]!==n||f[14]!==c?(d=(0,i.jsxs)(o.W,{children:[n,c]}),f[13]=n,f[14]=c,f[15]=d):d=f[15],f[16]!==N?(u=(0,i.jsx)(v,{userNotices:N}),f[16]=N,f[17]=u):u=f[17],f[18]!==d||f[19]!==u?(m=(0,i.jsxs)(i.Fragment,{children:[d,u]}),f[18]=d,f[19]=u,f[20]=m):m=f[20],m}try{P.displayName||(P.displayName="DiffViewSettingsMenuContent")}catch{}try{O.displayName||(O.displayName="DiffViewSettings")}catch{}},33671:(e,t,n)=>{n.r(t),n.d(t,{default:()=>p});var i=n(74848),r=n(54571),a=n(72511),l=n(69726),o=n(34164),s=n(96540);let c="ERROR",d="LOADING",u="LOADED",m="READY";function f(e){e&&(e.load=e.hello=null,e.helloTimer&&(clearTimeout(e.helloTimer),e.helloTimer=null),e.loadTimer&&(clearTimeout(e.loadTimer),e.loadTimer=null))}function h(e,t){e&&e.postMessage&&e.postMessage(JSON.stringify(t),"*")}function p({identityUuid:e,size:t,type:n,url:p,iframeClassName:y,viewportClassName:g}){let[v]=(0,r.I)(()=>window.location.origin,"https://www.github.com",[]),b=new URL(p,v).origin,{renderState:j,errorMsg:C,iFrameRef:N,containerRef:_}=function(e,t){let[n,i]=function(e){let[t,n]=(0,s.useState)(e),i=(0,s.useRef)(t);return[i,e=>{i.current=e,n(e)}]}(d),r=(0,s.useRef)(null),a=(0,s.useRef)(null),l=(0,s.useRef)(null),o=(0,s.useRef)({untimed:!0}),p=(0,s.useCallback)(n=>(function(e,t,n,i,r,a,l,o){if(e.origin!==t)return;let s=function(e){var t;let n=e.data;if(!n)return null;if("string"==typeof n)try{n=JSON.parse(n)}catch{return null}return"object"==typeof(t=n)&&t&&"render"===t.type&&"string"==typeof t.body&&"object"==typeof t.payload?n:null}(e);if(!s)return void l(c);if(s.identity!==n)return;let f=s.body,p=null!=s.payload?s.payload:void 0,x=i.current?.contentWindow;switch(f){case"hello":(a.current??{untimed:!0}).hello=Date.now(),h(x,{type:"render:cmd",body:{cmd:"ack",ack:!0}}),h(x,{type:"render:cmd",body:{cmd:"branding",branding:!1}});break;case"error":case"error:fatal":case"error:invalid":p&&o(p.error??null),l(c);break;case"loading":l(d);break;case"loaded":l(u);break;case"ready":p&&"number"==typeof p.height&&r.current&&(r.current.style.height=`${p.height}px`),l(m);break;case"resize":p&&"number"==typeof p.height&&r.current&&(r.current.style.height=`${p.height}px`);break;case"code_rendering_service:container:get_size":h(x,{type:"render:cmd",body:{cmd:"code_rendering_service:container:size","code_rendering_service:container:size":{width:r.current?.getBoundingClientRect().width}}});break;case"code_rendering_service:markdown:get_data":if(!i.current||!r.current)return;!function(e,t){let n=e.getAttribute("data-content");if(!n)return;let i={type:"render:cmd",body:{cmd:"code_rendering_service:data:ready","code_rendering_service:data:ready":{data:JSON.parse(n).data,width:t.getBoundingClientRect().width}}};h(e.contentWindow,i)}(i.current,r.current)}})(n,e,t,a,l,o,i,e=>r.current=e),[e,i,t]);return(0,s.useEffect)(()=>{f(o.current);let e=e=>{(n.current===d||n.current===u)&&(!e||o.current.hello)&&i(c)};return o.current={load:Date.now(),hello:null,helloTimer:window.setTimeout(e,1e4,!0),loadTimer:window.setTimeout(e,45e3)},()=>{f(o.current)}},[n,i]),(0,s.useEffect)(()=>(window.addEventListener("message",p),()=>window.removeEventListener("message",p)),[p]),{renderState:n.current,errorMsg:r.current,iFrameRef:a,containerRef:l}}(b,e);return"ipynb"===n&&t>3e7||t>2e8?(0,i.jsx)(a.A,{variant:"danger",children:"Sorry, this is too big to display."}):(0,i.jsx)("div",{className:"FileRendererBlob-module__FileRendererWrapper--SxJRI",children:(0,i.jsxs)("div",{"data-hpc":!0,"data-host":b,"data-type":n,ref:_,className:(0,o.$)("FileRendererBlob-module__FileRendererViewport--VgIf1",{"FileRendererBlob-module__FileRendererViewportNonError--cZ29b":j!==c,"FileRendererBlob-module__FileRendererViewportReady--seGRC":j===m},g),children:[j===c?(0,i.jsx)(x,{error:C}):j!==m?(0,i.jsx)(l.A,{size:"large",className:"FileRendererBlob-module__loadingIndicator--SraxA"}):null,j!==c&&(0,i.jsx)("iframe",{ref:N,src:`${p}#${e}`,sandbox:"allow-scripts allow-same-origin allow-top-navigation",name:e,title:"File display",className:(0,o.$)("FileRendererBlob-module__fileContentFrame--r1d91",{"FileRendererBlob-module__fileContentFrameNotReady--mMJW4":j!==m},y),children:"Viewer requires iframe."})]})})}function x({error:e}){if(!e)return(0,i.jsx)(a.A,{variant:"danger",children:"Unable to render code block"});let t=e.split(` +`);return(0,i.jsxs)(a.A,{variant:"danger",children:[(0,i.jsx)("p",{className:"FileRendererBlob-module__errorMessageHeading--qTuWN",children:"Error rendering embedded code"}),(0,i.jsx)("p",{children:t.map((e,t)=>(0,i.jsxs)(s.Fragment,{children:[e,(0,i.jsx)("br",{})]},`error-line-${t}`))})]})}try{p.displayName||(p.displayName="FileRendererBlob")}catch{}try{x.displayName||(x.displayName="FileRendererErrorMessage")}catch{}},34720:(e,t,n)=>{n.d(t,{t:()=>d});var i=n(74848),r=n(39619),a=n(51213),l=n(35247),o=n(79064),s=n(53419),c=n(5524);let d=({fileDiffReference:e,leadingVisual:t,eventContext:n,afterSelect:d})=>(0,i.jsxs)(c.l.Item,{onSelect:()=>{l.W.copilotRedirectDiffViewToImmersive?((0,s.BI)("copilot.file-diff.discuss",{target:"file-diff",mode:"immersive"}),o.Jt.setCurrentReferences(null,[e]),o.Jt.setCopilotDiffReferences(e),window.location.href="/copilot"):((0,s.BI)("copilot.file-diff.discuss",{target:"file-diff",mode:"assistive",...n}),(0,r.qR)({intent:a.wh.conversation,references:[e]}),d?.())},children:[t&&(0,i.jsx)(c.l.LeadingVisual,{children:t}),"Ask about this diff"]});try{d.displayName||(d.displayName="DiffLinesDiscussMenuItem")}catch{}},42257:(e,t,n)=>{n.d(t,{d:()=>l});var i=n(74848),r=n(16522),a=n(99896);function l(e){let t,n,l=(0,r.c)(8),{status:o,oid:s,repo:c,badgeProps:d,descriptionString:u}=e;l[0]!==d?(t=void 0===d?{}:d,l[0]=d,l[1]=t):t=l[1];let m=t,f=void 0===u?"":u,[h,p]=(0,a.ym)(s,c);return l[2]!==m||l[3]!==f||l[4]!==h||l[5]!==p||l[6]!==o?(n=o?(0,i.jsx)(a.B6,{disablePopover:!1,size:"small",statusRollup:o,combinedStatus:h,descriptionText:f,onWillOpenPopup:p,buttonClassName:"AsyncChecksStatusBadge-module__ChecksStatusBadge--Ddd3K",...m}):null,l[2]=m,l[3]=f,l[4]=h,l[5]=p,l[6]=o,l[7]=n):n=l[7],n}try{l.displayName||(l.displayName="AsyncChecksStatusBadge")}catch{}},43147:(e,t,n)=>{n.d(t,{w:()=>c});var i=n(74848),r=n(16522),a=n(98755),l=n(30459),o=n(16790),s=n(68534);function c(e){let t,n,c,d,u,m=(0,r.c)(17),{sha:f,direction:h,className:p}=e,x=void 0===h?"s":h,{sendAnalyticsEvent:y}=(0,l.s)(),{loggingPrefix:g,loggingPayload:v}=(0,o.xe)(),b=(0,o.eX)();m[0]!==v||m[1]!==g||m[2]!==y||m[3]!==b?(t=()=>{b&&y(`${g}click`,"COPY_SHA_CLICKED",v)},m[0]=v,m[1]=g,m[2]=y,m[3]=b,m[4]=t):t=m[4];let j=t;m[5]!==f?(n=(0,s.F)(f),m[5]=f,m[6]=n):n=m[6];let C=`Copy full SHA for ${n}`;return m[7]!==x?(c={direction:x},m[7]=x,m[8]=c):c=m[8],m[9]!==p||m[10]!==f||m[11]!==C||m[12]!==c?(d=(0,i.jsx)(a.T,{textToCopy:f,ariaLabel:C,tooltipProps:c,size:"small",className:p}),m[9]=p,m[10]=f,m[11]=C,m[12]=c,m[13]=d):d=m[13],m[14]!==j||m[15]!==d?(u=(0,i.jsx)("div",{onClick:j,children:d}),m[14]=j,m[15]=d,m[16]=u):u=m[16],u}try{c.displayName||(c.displayName="CopySHA")}catch{}},48926:(e,t,n)=>{n.d(t,{C:()=>u,j:()=>d});var i=n(74848),r=n(16522),a=n(61200),l=n(81945),o=n(11529),s=n(62935),c=n(4095);function d(e){let t,n,d,u,m=(0,r.c)(18),{commit:f,repo:h,children:p,settings:x,textVariant:y}=e,g=(0,c.NO)(f.oid),{isServer:v}=(0,o.V)(),b=g?.onBehalfOf;return m[0]!==x?(t={fontWeight:"normal",fontColor:"fg.muted",avatarSize:16,...x},m[0]=x,m[1]=t):t=m[1],m[2]!==f.committedDate||m[3]!==v?(n=!v&&(0,i.jsx)(s.A,{className:"pl-1",datetime:f.committedDate}),m[2]=f.committedDate,m[3]=v,m[4]=n):n=m[4],m[5]!==v?(d=v&&(0,i.jsx)(l.O,{variant:"rounded",className:"d-none d-sm-flex ml-1",width:"60px"}),m[5]=v,m[6]=d):d=m[6],m[7]!==p||m[8]!==f.authors||m[9]!==f.committer||m[10]!==f.committerAttribution||m[11]!==h||m[12]!==b||m[13]!==t||m[14]!==n||m[15]!==d||m[16]!==y?(u=(0,i.jsxs)(a.jF,{authors:f.authors,committer:f.committer,committerAttribution:f.committerAttribution,onBehalfOf:b,repo:h,includeVerbs:!0,authorSettings:t,textVariant:y,children:[n,d,p]}),m[7]=p,m[8]=f.authors,m[9]=f.committer,m[10]=f.committerAttribution,m[11]=h,m[12]=b,m[13]=t,m[14]=n,m[15]=d,m[16]=y,m[17]=u):u=m[17],u}function u(e){let t,n,c,d=(0,r.c)(11),{commit:u,repo:m,textVariant:f}=e,{isServer:h}=(0,o.V)();return d[0]!==u.pushedDate||d[1]!==h?(t=!h&&(0,i.jsx)(s.A,{className:"pl-1",datetime:u.pushedDate}),d[0]=u.pushedDate,d[1]=h,d[2]=t):t=d[2],d[3]!==h?(n=h&&(0,i.jsx)(l.O,{variant:"rounded",className:"d-none d-sm-flex ml-1",width:"60px"}),d[3]=h,d[4]=n):n=d[4],d[5]!==u.pusher||d[6]!==m||d[7]!==t||d[8]!==n||d[9]!==f?(c=(0,i.jsxs)(a.Cf,{pusher:u.pusher,repo:m,textVariant:f,children:[t,n]}),d[5]=u.pusher,d[6]=m,d[7]=t,d[8]=n,d[9]=f,d[10]=c):c=d[10],c}try{d.displayName||(d.displayName="CommitAttribution")}catch{}try{u.displayName||(u.displayName="PushAttribution")}catch{}},50307:(e,t,n)=>{n.d(t,{e:()=>u});var i=n(74848),r=n(39619),a=n(51213),l=n(35247),o=n(79064),s=n(68637),c=n(53419),d=n(5524);let u=({fileDiffReference:e,eventContext:t,afterSelect:n})=>(0,i.jsx)(d.l.Item,{onSelect:()=>{l.W.copilotRedirectDiffViewToImmersive?((0,c.BI)("copilot.file-diff.explain",{target:"file-diff",mode:"immersive"}),o.Jt.setCopilotDiffReferences(e),o.Jt.setEntrypointMessage({message:(0,s.vo)(),references:[e]}),window.location.href="/copilot"):((0,c.BI)("copilot.file-diff.explain",{target:"file-diff",mode:"assistive",...t}),(0,r.qR)({content:(0,s.vo)(),intent:a.wh.explainFileDiff,references:[e]}),n?.())},children:"Explain"});try{u.displayName||(u.displayName="DiffLinesExplainMenuItem")}catch{}},50443:(e,t,n)=>{n.d(t,{i:()=>s});var i=n(74848),r=n(39619),a=n(53419),l=n(43258),o=n(5524);let s=({fileDiffReference:e,eventContext:t,afterSelect:n})=>{let{addToast:s}=(0,l.Y6)();return(0,i.jsx)(o.l.Item,{onSelect:()=>{(0,r.Oc)(e),s({message:"Reference added to thread",type:"success"}),(0,a.BI)("copilot.file-diff.add",t),n?.()},children:"Attach to current thread"})};try{s.displayName||(s.displayName="DiffLinesAttachMenuItem")}catch{}},50899:(e,t,n)=>{n.d(t,{K:()=>a});var i=n(16522),r=n(96540);let a=e=>{let t,n,a,l=(0,i.c)(4),o=(0,r.useRef)(e);return l[0]!==e?(t=()=>(o.current=e,()=>o.current=null),n=[e],l[0]=e,l[1]=t,l[2]=n):(t=l[1],n=l[2]),(0,r.useLayoutEffect)(t,n),l[3]===Symbol.for("react.memo_cache_sentinel")?(a=(...e)=>{if(null===o.current)throw Error("useStableCallback: Cannot call callback after component has unmounted");return o.current(...e)},l[3]=a):a=l[3],a}},59523:(e,t,n)=>{function i(e){return void 0!==e.linesChanged&&0!==e.linesChanged}function r(e,t,n){return"MODIFIED"===e&&t!==n}function a(e,t,n,r){return"MODIFIED"===t&&n!==r&&!i(e)}function l(e){return"COPIED"===e.status&&!i(e)}function o(e){return"RENAMED"===e.status&&!i(e)}function s(e){return!!e.oldTreeEntry&&null===e.newTreeEntry}function c(e){return!!e.truncatedReason}n.d(t,{AL:()=>r,HI:()=>c,Jc:()=>l,Sn:()=>a,dK:()=>o,lO:()=>s,l_:()=>m,s8:()=>h,xW:()=>f});let d=["maximum diff size exceeded.","maximum number of lines exceeded."],u=/^maximum file count exceeded/;function m(e){let t=e;return d.includes(e)?t="This diff could not be loaded automatically because of too many other changes.":u.test(e)&&(t="This diff could not be loaded automatically because of too many other files to display."),t}function f(e){return!!e.newTreeEntry?.isGenerated}function h(e){return 0===e.linesChanged}},60745:(e,t,n)=>{n.d(t,{a:()=>u});var i=n(74848),r=n(16522),a=n(56038),l=n(54571),o=n(38621),s=n(84268),c=n(72511),d=n(21373);function u(e){let t,n,u,f,h,p=(0,r.c)(7),{isShown:x,toggleShowHiddenCharacters:y}=e;p[0]===Symbol.for("react.memo_cache_sentinel")?(t=[],p[0]=t):t=p[0];let[g]=(0,l.I)(m,a.cg,t);if(!g)return null;p[1]===Symbol.for("react.memo_cache_sentinel")?(n=(0,i.jsx)(o.AlertIcon,{}),p[1]=n):n=p[1],p[2]===Symbol.for("react.memo_cache_sentinel")?(u=(0,i.jsxs)("span",{children:["This file contains bidirectional or hidden Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters."," ",(0,i.jsx)(s.A,{inline:!0,href:"https://github.co/hiddenchars",target:"_blank",rel:"noreferrer",children:"Learn more about bidirectional Unicode characters"})]}),p[2]=u):u=p[2],p[3]===Symbol.for("react.memo_cache_sentinel")?(f={backgroundClip:"padding-box"},p[3]=f):f=p[3];let v=x?"Hide revealed characters":"Show hidden characters";return p[4]!==v||p[5]!==y?(h=(0,i.jsxs)(c.A,{className:"d-flex flex-items-center",full:!0,variant:"warning",children:[n,u,(0,i.jsx)(d.Q,{className:"ml-4 float-right",onClick:y,size:"small",style:f,children:v})]}),p[4]=v,p[5]=y,p[6]=h):h=p[6],h}function m(){return a.cg}try{u.displayName||(u.displayName="HiddenUnicodeBanner")}catch{}},66358:(e,t,n)=>{n.d(t,{JF:()=>r,YR:()=>a,w$:()=>i});let i={Addition:"ADDITION",Context:"CONTEXT",Deletion:"DELETION",Hunk:"HUNK",InjectedContext:"INJECTED_CONTEXT",Empty:"EMPTY"},r={[i.Addition]:"+",[i.Deletion]:"-",[i.Context]:" ",[i.Hunk]:"@",[i.InjectedContext]:"~"},a={diffStats:"diffStats",expandLines:"expandLines",markAsViewed:"markAsViewed"}},68534:(e,t,n)=>{n.d(t,{F:()=>i});function i(e){return e.slice(0,7)}},70719:(e,t,n)=>{n.d(t,{U:()=>c});var i=n(16522),r=n(96379),a=n(97665),l=n(94747),o=n(79472),s=n(21067);function c(e){let t,n,r,s,c=(0,i.c)(10),{onSuccess:u,onError:m}=e,f=(0,a.jE)();return c[0]!==f?(t=async e=>{f.setQueryData((0,o.w$)(),t=>({...t,...e}))},c[0]=f,c[1]=t):t=c[1],c[2]!==u?(n=()=>{u()},c[2]=u,c[3]=n):n=c[3],c[4]!==m?(r=e=>{m(e)},c[4]=m,c[5]=r):r=c[5],c[6]!==t||c[7]!==n||c[8]!==r?(s={mutationFn:d,onMutate:t,onSuccess:n,onError:r},c[6]=t,c[7]=n,c[8]=r,c[9]=s):s=c[9],(0,l.n)(s)}async function d(e){let{commentsPreference:t,lineSpacing:n,splitPreference:i}=e;if(!(0,s.M3)())return;let a={};t&&(a={...a,commentsPreference:t}),n&&(a={...a,lineSpacing:n}),i&&(a={...a,diff:i});let l=await (0,r.Sr)("/users/diffview",{method:"POST",headers:{Accept:"application/json"},body:a}),o=await l.json();if(l.ok)return o;throw Error(o.error||"Unknown error occurred",{cause:l.status})}},70843:(e,t,n)=>{n.d(t,{L:()=>a});var i=n(16522),r=n(96540);function a(e){let t,n,a=(0,i.c)(3);a[0]!==e?(t=()=>{if(!e)return;let t=document.querySelector(".footer");if(t)return t.hidden=!0,()=>{t.hidden=!1}},n=[e],a[0]=e,a[1]=t,a[2]=n):(t=a[1],n=a[2]),(0,r.useEffect)(t,n)}},71833:(e,t,n)=>{n.d(t,{B:()=>a});var i=n(59672),r=n(96379);async function a(e,t){if(!t)return;let n=new FormData;n.set("file_tree_visible",e?"true":"false"),(0,r.DI)((0,i.h6D)(t),{method:"PUT",body:n,headers:{Accept:"application/json"}})}},77046:(e,t,n)=>{n.d(t,{A:()=>i});let i={"file-tree-row":"DiffFileTree-module__file-tree-row--GJi_6"}},78049:(e,t,n)=>{n.d(t,{E:()=>l});var i=n(74848),r=n(16522),a=n(38621);function l(e){let t=(0,r.c)(5),{status:n,isSymlink:l}=e;if(l){let e;return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,i.jsx)(a.FileSymlinkFileIcon,{size:16,className:"fgColor-attention"}),t[0]=e):e=t[0],e}switch(n){case"ADDED":case"COPIED":{let e;return t[1]===Symbol.for("react.memo_cache_sentinel")?(e=(0,i.jsx)(a.FileAddedIcon,{size:16,className:"fgColor-success"}),t[1]=e):e=t[1],e}case"DELETED":case"REMOVED":{let e;return t[2]===Symbol.for("react.memo_cache_sentinel")?(e=(0,i.jsx)(a.FileRemovedIcon,{size:16,className:"fgColor-danger"}),t[2]=e):e=t[2],e}case"RENAMED":{let e;return t[3]===Symbol.for("react.memo_cache_sentinel")?(e=(0,i.jsx)(a.FileMovedIcon,{size:16,className:"fgColor-attention"}),t[3]=e):e=t[3],e}default:{let e;return t[4]===Symbol.for("react.memo_cache_sentinel")?(e=(0,i.jsx)(a.FileDiffIcon,{size:16,className:"fgColor-muted"}),t[4]=e):e=t[4],e}}}try{l.displayName||(l.displayName="FileStatusIcon")}catch{}},78252:(e,t,n)=>{n.d(t,{$:()=>o});var i=n(74848),r=n(38621),a=n(5524),l=n(34720);let o=e=>(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)(a.l.Divider,{}),(0,i.jsx)(l.t,{eventContext:{prx:!0},leadingVisual:(0,i.jsx)(r.CopilotIcon,{}),fileDiffReference:e.copilotChatReference})]});try{o.displayName||(o.displayName="CopilotDiffChatBlobActionsMenuItems")}catch{}},84363:(e,t,n)=>{n.d(t,{t:()=>r});var i=n(59403);let r=({items:e,filter:t,key:n,secondaryKey:r})=>{let a=[];for(let l of e){let e=(0,i.dt)(t,n(l)),o=r?Math.max(e,(0,i.dt)(t,r(l))):e;o>i.IP&&a.push([o,l])}return a.sort(([e,t],[i,r])=>i===e?n(t).localeCompare(n(r)):i-e),a.map(([,e])=>e)}},87825:(e,t,n)=>{n.d(t,{o:()=>o});var i=n(74848),r=n(16522),a=n(38621),l=n(55255);function o(){let e,t=(0,r.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,i.jsx)(l.A,{direction:"n",text:"This line has hidden Unicode characters",children:(0,i.jsx)(a.AlertIcon,{className:"mr-2"})}),t[0]=e):e=t[0],e}try{o.displayName||(o.displayName="HiddenUnicodeAlert")}catch{}},89141:(e,t,n)=>{n.d(t,{w:()=>m});var i=n(74848),r=n(38621),a=n(94236),l=n(5524),o=n(96540),s=n(50443),c=n(34720),d=n(50307),u=n(35247);let m=({fileDiffReference:e,selectedRange:t,showDivider:n})=>{let m=(0,o.useMemo)(()=>{let n={...e};return t&&(n.selectedRange={start:`${t?.startOrientation[0]?.toUpperCase()??""}${t?.startLineNumber}`,end:`${t?.endOrientation[0]?.toUpperCase()??""}${t?.endLineNumber}`}),n},[e,t]);return(0,i.jsxs)(i.Fragment,{children:[(0,i.jsxs)(a.W,{children:[(0,i.jsx)(a.W.Anchor,{children:(0,i.jsxs)(l.l.Item,{children:[(0,i.jsx)(l.l.LeadingVisual,{children:(0,i.jsx)(r.CopilotIcon,{})}),"Copilot"]})}),(0,i.jsx)(a.W.Overlay,{children:(0,i.jsxs)(l.l,{children:[(0,i.jsx)(c.t,{fileDiffReference:m,eventContext:{prx:!0}}),(0,i.jsx)(d.e,{fileDiffReference:m,eventContext:{prx:!0}}),!u.W.copilotRedirectDiffViewToImmersive&&(0,i.jsx)(s.i,{fileDiffReference:m,eventContext:{prx:!0}})]})})]}),n&&(0,i.jsx)(l.l.Divider,{})]})};try{m.displayName||(m.displayName="CopilotDiffChatContextMenu")}catch{}},90047:(e,t,n)=>{n.d(t,{B:()=>C,C:()=>N});var i=n(74848),r=n(16522),a=n(34164),l=n(38621),o=n(84268),s=n(26108),c=n(39768),d=n(11196),u=n(59523),m=n(91618),f=n(96540),h=n(98755);let p="DiffFileHeader-module__hide-on-mobile--dxRfz";var x=n(66358);function y(e,t=41){if(!e||e.length<=t)return{text:e??"",truncated:!1};let n=e.slice(-(t-1));return{text:`\u{2026}${n}`,truncated:!0}}let g=new Set;function v(e){let t,n,a,o,s=(0,r.c)(10),{oldPath:c,newPath:d,oldPathTruncated:u,newPathTruncated:m}=e;return s[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,i.jsx)(l.ArrowRightIcon,{}),s[0]=t):t=s[0],s[1]!==m||s[2]!==u?(n=(0,i.jsxs)("span",{"aria-hidden":"true",children:["\u200E",u,"\u200E ",t," \u200E",m,"\u200E"]}),s[1]=m,s[2]=u,s[3]=n):n=s[3],s[4]!==d||s[5]!==c?(a=(0,i.jsxs)("span",{className:"sr-only",children:[c," renamed to ",d," "]}),s[4]=d,s[5]=c,s[6]=a):a=s[6],s[7]!==n||s[8]!==a?(o=(0,i.jsxs)("code",{children:[n,a]}),s[7]=n,s[8]=a,s[9]=o):o=s[9],o}function b(e){let t,n=(0,r.c)(2),{path:a}=e;return n[0]!==a?(t=(0,i.jsxs)("code",{children:["\u200E",a,"\u200E"]}),n[0]=a,n[1]=t):t=n[1],t}function j(e){let t,n,l,s,c,u=(0,r.c)(25),{headingId:m,fileLinkHref:h,onHeaderClick:p,fileLinkRef:x,newPath:g,oldPath:j,patchStatus:C}=e,N=(0,f.useRef)(null),_=function(e){let t,n,i=(0,r.c)(3),[a,l]=(0,f.useState)(!1);return i[0]!==e?(t=()=>{let t=e.current;if(!t)return;let n=()=>{l(t.scrollWidth>t.offsetWidth)},i=()=>n(),r=()=>l(!1),a=()=>n(),o=()=>l(!1);return t.addEventListener("focus",i),t.addEventListener("blur",r),t.addEventListener("mouseenter",a),t.addEventListener("mouseleave",o),()=>{t.removeEventListener("focus",i),t.removeEventListener("blur",r),t.removeEventListener("mouseenter",a),t.removeEventListener("mouseleave",o)}},n=[e],i[0]=e,i[1]=t,i[2]=n):(t=i[1],n=i[2]),(0,f.useEffect)(t,n),a}(N);u[0]!==g||u[1]!==j||u[2]!==C?(t=function({newPath:e,oldPath:t,status:n}){if("RENAMED"===n){let n=y(t),i=y(e);return{text:`${t} renamed to ${e}`,truncated:n.truncated||i.truncated,oldPathTruncated:n.text,newPathTruncated:i.text}}return"DELETED"===n||"REMOVED"===n?{text:t??"",truncated:!1}:{text:e??"",truncated:!1}}({newPath:g,oldPath:j,status:C}),u[0]=g,u[1]=j,u[2]=C,u[3]=t):t=u[3];let w=t;u[4]!==w.newPathTruncated||u[5]!==w.oldPathTruncated||u[6]!==w.text||u[7]!==g||u[8]!==j||u[9]!==C?(n="RENAMED"===C?(0,i.jsx)(v,{oldPath:j,newPath:g,oldPathTruncated:w.oldPathTruncated,newPathTruncated:w.newPathTruncated}):(0,i.jsx)(b,{path:w.text}),u[4]=w.newPathTruncated,u[5]=w.oldPathTruncated,u[6]=w.text,u[7]=g,u[8]=j,u[9]=C,u[10]=n):n=u[10];let S=n,D="RENAMED"!==C&&"DiffFileHeader-module__file-name-truncate--yAuNq";return u[11]!==D?(l=(0,a.$)("DiffFileHeader-module__file-name--ryaCb",D),u[11]=D,u[12]=l):l=u[12],u[13]!==w.text||u[14]!==w.truncated||u[15]!==h||u[16]!==x||u[17]!==S||u[18]!==p||u[19]!==_?(s=_||w.truncated?(0,i.jsx)(d.m,{text:w.text,direction:"s",children:(0,i.jsx)(o.A,{className:"Link--primary",href:h,onClick:p,ref:x,children:S})}):(0,i.jsx)(o.A,{className:"Link--primary",href:h,onClick:p,ref:x,children:S}),u[13]=w.text,u[14]=w.truncated,u[15]=h,u[16]=x,u[17]=S,u[18]=p,u[19]=_,u[20]=s):s=u[20],u[21]!==m||u[22]!==l||u[23]!==s?(c=(0,i.jsx)("h3",{id:m,className:l,ref:N,children:s}),u[21]=m,u[22]=l,u[23]=s,u[24]=c):c=u[24],c}function C(e){let t,n,o,f,y,v,b,C,N,_,w,S,D,E,I,A,R=(0,r.c)(65),{additionalLeftSideContent:k,areLinesExpanded:F,canExpandOrCollapseLines:T,className:P,diffStatsProps:L,hiddenFeatures:O,isBinary:U,isSubmodule:$,isCollapsed:B,canToggleRichDiff:H,headingId:z,linesAdded:M,linesChanged:V,linesDeleted:W,fileLinkHref:J,fileLinkRef:G,newMode:Y,newPath:q,oldMode:K,oldPath:X,onCopyPath:Q,onHeaderClick:Z,onToggleDiffDisplay:ee,onToggleExpandAllLines:et,onToggleFileCollapsed:en,patchStatus:ei,path:er,rightSideContent:ea,size:el,showRichDiff:eo,isInSingleFileMode:es}=e,ec=void 0===O?g:O,ed=el&&"-"===el[0],eu=B?"DiffFileHeader-module__collapsed--bTqtX":"";R[0]!==P||R[1]!==eu?(t=(0,a.$)("DiffFileHeader-module__diff-file-header--Z8VIs",eu,"DiffFileHeader-module__container-flex-wrap--iGS3L",P),R[0]=P,R[1]=eu,R[2]=t):t=R[2],R[3]!==B||R[4]!==es||R[5]!==en?(n=!es&&(0,i.jsx)("div",{className:"d-flex flex-shrink-0 flex-order-1",style:{width:"28px",justifyContent:"center"},children:(0,i.jsx)(s.K,{onClick:en,"aria-label":B?"Expand file":"Collapse file",icon:B?l.ChevronRightIcon:l.ChevronDownIcon,size:"small",variant:"invisible"})}),R[3]=B,R[4]=es,R[5]=en,R[6]=n):n=R[6];let em="RENAMED"!==ei&&"flex-1";R[7]!==em?(o=(0,a.$)("d-flex px-1 flex-items-center overflow-hidden","DiffFileHeader-module__container-flex-order-reverse--BBk7h","DiffFileHeader-module__file-path-section--GaFOf",em),R[7]=em,R[8]=o):o=R[8],R[9]!==J||R[10]!==G||R[11]!==z||R[12]!==q||R[13]!==X||R[14]!==Z||R[15]!==ei?(f=(0,i.jsx)(j,{headingId:z,fileLinkHref:J,onHeaderClick:Z,fileLinkRef:G,newPath:q,oldPath:X,patchStatus:ei}),R[9]=J,R[10]=G,R[11]=z,R[12]=q,R[13]=X,R[14]=Z,R[15]=ei,R[16]=f):f=R[16],R[17]===Symbol.for("react.memo_cache_sentinel")?(y=(0,a.$)("ml-2 flex-shrink-0",p),R[17]=y):y=R[17];let ef=q??X??"";return R[18]===Symbol.for("react.memo_cache_sentinel")?(v={direction:"s"},R[18]=v):v=R[18],R[19]!==Q||R[20]!==ef?(b=(0,i.jsx)(h.T,{className:y,textToCopy:ef,ariaLabel:"Copy file name to clipboard",tooltipProps:v,onCopy:Q,size:"small"}),R[19]=Q,R[20]=ef,R[21]=b):b=R[21],R[22]!==Y||R[23]!==K||R[24]!==ei?(C=(0,u.AL)(ei,K,Y)&&(0,i.jsxs)("div",{className:"p-2",children:[(0,i.jsx)("code",{children:K}),(0,i.jsx)(l.ArrowRightIcon,{className:"mx-1"}),(0,i.jsx)("code",{children:Y})]}),R[22]=Y,R[23]=K,R[24]=ei,R[25]=C):C=R[25],R[26]!==F||R[27]!==T||R[28]!==ec||R[29]!==et||R[30]!==er?(N=!ec.has(x.YR.expandLines)&&T&&et&&(0,i.jsx)(d.m,{text:F?`Collapse non-diff lines: ${er}`:`Expand all lines: ${er}`,direction:"s",children:(0,i.jsx)(s.K,{onClick:et,"aria-label":F?`Collapse non-diff lines: ${er}`:`Expand all lines: ${er}`,icon:F?l.FoldIcon:l.UnfoldIcon,size:"small",variant:"invisible","data-file-path":er,className:(0,a.$)("flex-shrink-0",!F&&"js-expand-all-difflines-button",p)})}),R[26]=F,R[27]=T,R[28]=ec,R[29]=et,R[30]=er,R[31]=N):N=R[31],R[32]!==b||R[33]!==C||R[34]!==N||R[35]!==o||R[36]!==f?(_=(0,i.jsxs)("div",{className:o,children:[f,b,C,N]}),R[32]=b,R[33]=C,R[34]=N,R[35]=o,R[36]=f,R[37]=_):_=R[37],R[38]===Symbol.for("react.memo_cache_sentinel")?(w=(0,a.$)("d-flex flex-row flex-justify-end flex-items-center gap-2 flex-1","DiffFileHeader-module__container-flex-order--YkBrw"),R[38]=w):w=R[38],R[39]!==L||R[40]!==ec||R[41]!==$||R[42]!==M||R[43]!==V||R[44]!==W?(S=!ec.has(x.YR.diffStats)&&(0,i.jsx)("div",{className:"d-flex flex-justify-end flex-items-center",children:!$&&(0,i.jsx)("div",{className:p,children:(0,i.jsx)(m.z,{linesAdded:M,linesDeleted:W,linesChanged:V,...L})})}),R[39]=L,R[40]=ec,R[41]=$,R[42]=M,R[43]=V,R[44]=W,R[45]=S):S=R[45],R[46]!==U||R[47]!==ed||R[48]!==el?(D=U&&(0,i.jsx)("div",{className:"d-flex flex-items-center",children:(0,i.jsx)("code",{className:(0,a.$)("px-2",ed&&"fgColor-danger",!ed&&"fgColor-success"),children:`${el}`})}),R[46]=U,R[47]=ed,R[48]=el,R[49]=D):D=R[49],R[50]!==H||R[51]!==ee||R[52]!==eo?(E=H&&(0,i.jsxs)(c.I,{"aria-label":"File view",size:"small",className:"DiffFileHeader-module__hide-on-small--EeWjN",onChange:ee?e=>ee(1===e):void 0,children:[(0,i.jsx)(c.I.IconButton,{"aria-label":"Display the source diff",selected:!eo,icon:l.CodeIcon}),(0,i.jsx)(c.I.IconButton,{"aria-label":"Display the rich diff",selected:eo,icon:l.FileIcon})]}),R[50]=H,R[51]=ee,R[52]=eo,R[53]=E):E=R[53],R[54]!==ea||R[55]!==S||R[56]!==D||R[57]!==E?(I=(0,i.jsxs)("div",{className:w,children:[S,D,E,ea]}),R[54]=ea,R[55]=S,R[56]=D,R[57]=E,R[58]=I):I=R[58],R[59]!==k||R[60]!==_||R[61]!==I||R[62]!==t||R[63]!==n?(A=(0,i.jsxs)("div",{className:t,children:[n,k,_,I]}),R[59]=k,R[60]=_,R[61]=I,R[62]=t,R[63]=n,R[64]=A):A=R[64],A}try{v.displayName||(v.displayName="RenamedFileName")}catch{}try{b.displayName||(b.displayName="FileName")}catch{}try{j.displayName||(j.displayName="HeadingFileName")}catch{}try{C.displayName||(C.displayName="DiffFileHeader")}catch{}function N(e){let t,n,l=(0,r.c)(6),{children:o,isAddition:s,className:c}=e,d=s?"fgColor-success":"fgColor-danger";return l[0]!==c||l[1]!==d?(t=(0,a.$)("ml-1 text-small text-bold",d,c),l[0]=c,l[1]=d,l[2]=t):t=l[2],l[3]!==o||l[4]!==t?(n=(0,i.jsx)("div",{className:t,children:o}),l[3]=o,l[4]=t,l[5]=n):n=l[5],n}try{N.displayName||(N.displayName="LinesChangedCounterLabel")}catch{}}}]); +//# sourceMappingURL=60932-caba251abcf6.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/62941-12ac274b4455.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/62941-12ac274b4455.js" new file mode 100644 index 0000000..ec0c8ab --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/62941-12ac274b4455.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:62941-12ac274b4455.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[62941],{3905:(e,t,n)=>{n.d(t,{t:()=>o});function o(e,t){t.appendChild(e.extractContents()),e.insertNode(t)}},13523:(e,t,n)=>{n.d(t,{$r:()=>l,M1:()=>c,li:()=>r,pS:()=>a,wE:()=>u});var o=n(56038);let r="X-Fetch-Nonce",i=new Set;function l(e){i.add(e)}function c(){return i.values().next().value||""}function u(e){let t={};return void 0!==e&&(t["X-Fetch-Nonce-To-Validate"]=e),void 0===e?t[r]=c():i.has(e)?t[r]=e:t[r]=Array.from(i).join(","),t}function a(){let e=o.XC?.head?.querySelector('meta[name="fetch-nonce"]')?.content||"";e&&l(e)}},31803:(e,t,n)=>{n.d(t,{A:()=>c});var o=n(34095),r=n(82591);let i=[],l=0;function c(e){!async function(){let t;i.push(e),await o.G,t=l,l=i.length,u(i.slice(t),null,window.location.href)}()}function u(e,t,n){let o=window.location.hash.slice(1),r={oldURL:t,newURL:n,target:o?document.getElementById(o):null};for(let t of e)t.call(null,r)}c.clear=()=>{i.length=l=0};let a=window.location.href;window.addEventListener("popstate",function(){a=window.location.href}),window.addEventListener("hashchange",function(e){let t=window.location.href;try{u(i,e.oldURL||a,t)}finally{a=t}});let d=null;document.addEventListener(r.z.START,function(){d=window.location.href}),document.addEventListener(r.z.SUCCESS,function(){u(i,d,window.location.href)})},36186:(e,t,n)=>{function o(e,t=location.hash){return r(e,i(t))}function r(e,t){return""===t?null:e.getElementById(t)||e.getElementsByName(t)[0]}function i(e){try{return decodeURIComponent(e.slice(1))}catch{return""}}n.d(t,{gX:()=>i,rG:()=>o,w$:()=>r})},51987:(e,t,n)=>{n.d(t,{jC:()=>c,kt:()=>i,tV:()=>l});var o=n(87057),r=n(13523);function i(e){let t={"X-Requested-With":"XMLHttpRequest",...(0,r.wE)(e)};return{...t,[o.S]:(0,o.O)()}}function l(e,t){for(let[n,o]of Object.entries(i(t)))e.set(n,o)}function c(e){return{"X-GitHub-App-Type":e}}},52738:(e,t,n)=>{n.d(t,{$3:()=>i,HV:()=>l,Vb:()=>r});var o=n(82518);function r(e,t,n){let r={hydroEventPayload:e,hydroEventHmac:t,visitorPayload:"",visitorHmac:"",hydroClientContext:n},i=document.querySelector("meta[name=visitor-payload]");i instanceof HTMLMetaElement&&(r.visitorPayload=i.content);let l=document.querySelector("meta[name=visitor-hmac]")||"";l instanceof HTMLMetaElement&&(r.visitorHmac=l.content),(0,o.iv)(r,!0)}function i(e){r(e.getAttribute("data-hydro-view")||"",e.getAttribute("data-hydro-view-hmac")||"",e.getAttribute("data-hydro-client-context")||"")}function l(e){r(e.getAttribute("data-hydro-click-payload")||"",e.getAttribute("data-hydro-click-hmac")||"",e.getAttribute("data-hydro-client-context")||"")}},53419:(e,t,n)=>{let o;n.d(t,{BI:()=>v,Ti:()=>g,lA:()=>m,sX:()=>h});var r=n(70837),i=n(18679),l=n(82075),c=n(56038),u=n(82518);let{getItem:a}=(0,l.A)("localStorage"),d="dimension_",f=["utm_source","utm_medium","utm_campaign","utm_term","utm_content","scid"];try{let e=(0,r.O)("octolytics");delete e.baseContext,o=new i.s(e)}catch{}function s(e){let t=(0,r.O)("octolytics").baseContext||{};if(t)for(let[e,n]of(delete t.app_id,delete t.event_url,delete t.host,Object.entries(t)))e.startsWith(d)&&(t[e.replace(d,"")]=n,delete t[e]);let n=c.XC?.querySelector("meta[name=visitor-payload]");for(let[e,o]of(n&&Object.assign(t,JSON.parse(atob(n.content))),new URLSearchParams(window.location.search)))f.includes(e.toLowerCase())&&(t[e]=o);return t.staff=(0,u.Xl)().toString(),Object.assign(t,e)}function m(e){o?.sendPageView(s(e))}function h(){return c.XC?.head?.querySelector('meta[name="current-catalog-service"]')?.content}function v(e,t={}){let n=h(),r=n?{service:n}:{};for(let[e,n]of Object.entries(t))null!=n&&(r[e]=`${n}`);o&&(s(r),o.sendEvent(e||"unknown",s(r)))}function g(e){return Object.fromEntries(Object.entries(e).map(([e,t])=>[e,JSON.stringify(t)]))}},58371:(e,t,n)=>{n.d(t,{Ax:()=>r.Ax,JW:()=>i,ZV:()=>r.ZV});var o=n(51987),r=n(13937);function i(e,t){(0,r.JW)(e,async(e,n,r)=>((0,o.tV)(r.headers),t(e,n,r)))}},73395:(e,t,n)=>{function o(e){let t=e.match(/#?(?:L)(\d+)((?:C)(\d+))?/g);if(t){if(1===t.length){let e=c(t[0]);if(!e)return;return Object.freeze({start:e,end:e})}if(2!==t.length)return;{let e=c(t[0]),n=c(t[1]);if(!e||!n)return;return d(Object.freeze({start:e,end:n}))}}}function r(e){let{start:t,end:n}=d(e);return null!=t.column&&null!=n.column?`L${t.line}C${t.column}-L${n.line}C${n.column}`:null!=t.column?`L${t.line}C${t.column}-L${n.line}`:null!=n.column?`L${t.line}-L${n.line}C${n.column}`:t.line===n.line?`L${t.line}`:`L${t.line}-L${n.line}`}function i(e){let t;return{blobRange:o(e),anchorPrefix:(t=e.length<5e3&&e.match(/(file-.+?-)L\d+?/i))&&t[1]?t[1]:""}}function l({anchorPrefix:e,blobRange:t}){return t?`#${e}${r(t)}`:"#"}function c(e){if(!e)return null;let t=e.match(/L(\d+)/),n=e.match(/C(\d+)/);return t&&t[1]?Object.freeze({line:parseInt(t[1]),column:n&&n[1]?parseInt(n[1]):null}):null}function u(e,t){let[n,o]=a(e.start,!0,t),[r,i]=a(e.end,!1,t);if(!n||!r)return;let l=o,c=i;if(-1===l&&(l=0),-1===c&&(c=r.childNodes.length),!n.ownerDocument)throw Error("DOMRange needs to be inside document");let u=n.ownerDocument.createRange();return u.setStart(n,l),u.setEnd(r,c),u}function a(e,t,n){let o=[null,0],r=n(e.line);if(!r)return o;if(null==e.column)return[r,-1];let i=e.column-1,l=function e(t){if(t.nodeType===Node.TEXT_NODE)return[t];if(!t.childNodes||!t.childNodes.length)return[];let n=[];for(let o of t.childNodes)n=n.concat(e(o));return n}(r);for(let e=0;ei,JB:()=>l,Kn:()=>r,Py:()=>u,eC:()=>o})},87057:(e,t,n)=>{n.d(t,{O:()=>l,S:()=>i});var o=n(56038);let r=o.cg?.document?.head?.querySelector('meta[name="release"]')?.content||"",i="X-GitHub-Client-Version";function l(){return r}},87363:(e,t,n)=>{n.d(t,{Ff:()=>u,eC:()=>a,uE:()=>c});var o=n(6986);let r=!1,i=new o.A;function l(e){let t=e.target;if(t instanceof HTMLElement&&t.nodeType!==Node.DOCUMENT_NODE)for(let e of i.matches(t))e.data.call(null,t)}function c(e,t){r||(r=!0,document.addEventListener("focus",l,!0)),i.add(e,t),document.activeElement instanceof HTMLElement&&document.activeElement.matches(e)&&t(document.activeElement)}function u(e,t,n){function o(t){let r=t.currentTarget;r&&(r.removeEventListener(e,n),r.removeEventListener("blur",o))}c(t,function(t){t.addEventListener(e,n),t.addEventListener("blur",o)})}function a(e,t){function n(e){let{currentTarget:o}=e;o&&(o.removeEventListener("input",t),o.removeEventListener("blur",n))}c(e,function(e){e.addEventListener("input",t),e.addEventListener("blur",n)})}}}]); +//# sourceMappingURL=62941-e3f3f51ab559.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/64665-a563226b8ec7.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/64665-a563226b8ec7.js" new file mode 100644 index 0000000..180289e --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/64665-a563226b8ec7.js" @@ -0,0 +1,6 @@ +performance.mark("js-parse-end:64665-a563226b8ec7.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[40235,64665],{4929:(e,t,r)=>{r.d(t,{V:()=>a});var s=r(74848),n=r(29731),i=r(34164);function a({children:e,alignment:t,variant:r,...a}){return(0,s.jsx)("div",{...(0,n.G)("list-view-item-metadata-item"),...a,className:(0,i.$)("Metadata-module__metadata--ODMG0","primary"===r?"Metadata-module__primary--S8Orc":"Metadata-module__secondary--1te4w","right"===t&&"Metadata-module__alignRight--A1PHa",a.className),children:e})}try{a.displayName||(a.displayName="ListItemMetadata")}catch{}},10422:(e,t,r)=>{r.d(t,{gX:()=>rh,S4:()=>sT,OC:()=>R,cY:()=>tp,Uz:()=>sA});var s,n=r(74848),i=r(16522);function a(e){if(null==e)throw Error("Failed to load page data.")}var o=r(75202),l=r(38621),c=r(69726),u=r(34164),d=r(96540),h=r(17645),m=r(20622),E=r(53885),_=r(50129),g=r(65820),S=r(97665),f=r(97286);function p(){let e,t=(0,i.c)(2),{basePageDataUrl:r}=(0,_.Yu)(),s=`basePageDataURL:${r}`;return t[0]!==s?(e=[m.uT.mergeBox,s],t[0]=s,t[1]=e):e=t[1],e}let C=(0,d.createContext)({mergeMethod:h.q$.MERGE,setMergeMethod:()=>{}});function R({children:e,defaultMergeMethod:t}){let[r,s]=(0,d.useState)(t),i=p(),a=(0,S.jE)();(0,d.useEffect)(()=>{a.invalidateQueries({queryKey:i})},[r]);let o=(0,d.useMemo)(()=>({mergeMethod:r,setMergeMethod:s}),[r]);return(0,n.jsx)(C,{value:o,children:e})}function T(){return(0,d.use)(C)}try{C.displayName||(C.displayName="MergeMethodContext")}catch{}try{R.displayName||(R.displayName="MergeMethodContextProvider")}catch{}function v(e){let t=e&&e.conditions.find(e=>h.nw.includes(e.type));if(t&&"conflicts"in t&&"isConflictResolvableInWeb"in t)return t}function N(e){return e?.conditions.filter(e=>h.iG.includes(e.type)&&"FAILED"===e.result)??[]}var I=r(35750),O=r(18150),A=r(85242),y=r(88243),x=r(16213),w=r(50467);let BaseSectionStatus=class BaseSectionStatus{get shouldRender(){return!1}get shouldConsiderStatus(){return this.shouldRender}get sectionStatus(){return"UNKNOWN"}get mergeBoxStatus(){return"UNKNOWN"}constructor(e,t,r){(0,w._)(this,"pullRequest",void 0),(0,w._)(this,"mergeRequirements",void 0),(0,w._)(this,"statusChecks",void 0),this.pullRequest=e,this.mergeRequirements=t,this.statusChecks=r}};let b=["MERGE_QUEUE","REQUIRED_STATUS_CHECKS"],L=["PULL_REQUEST_REPO_STATE","PULL_REQUEST_STATE"],P=["USER_CANNOT_PUSH"];var M=new WeakMap,D=new WeakMap,j=new WeakMap,U=new WeakMap;let BlockedSectionStatus=class BlockedSectionStatus extends BaseSectionStatus{get shouldRender(){return this.mergeRequirements?.state==="UNMERGEABLE"&&!this.pullRequest.isDraft&&0!==this.failingConditionsAndRules.length&&this.pullRequest.viewerCanUpdate}get sectionStatus(){return this.mergeRequirements?.state==="UNMERGEABLE"?"FAILED":"PASSED"}get mergeBoxStatus(){return this.sectionStatus}get failingConditionsAndRules(){return(0,I._)(this,M)||(0,A._)(this,M,[...(0,I._)(this,j),...(0,I._)(this,D),...(0,I._)(this,U)]),(0,I._)(this,M)}constructor(...e){super(...e),(0,O._)(this,D,{get:k,set:void 0}),(0,O._)(this,j,{get:G,set:void 0}),(0,O._)(this,U,{get:q,set:void 0}),(0,O._)(this,M,{writable:!0,value:void 0})}};function k(){return N(this.mergeRequirements).flatMap(e=>"ruleRollups"in e?e.ruleRollups:[]).filter(e=>e?.result==="FAILED"&&!b.includes(e.ruleType))}function G(){var e;return(e=this.mergeRequirements,e?.conditions.filter(e=>h.jw.includes(e.type)&&"FAILED"===e.result)??[]).filter(e=>!L.includes(e.type))}function q(){var e;return(e=this.mergeRequirements,e?.conditions.filter(e=>h.TW.includes(e.type)&&"FAILED"===e.result)??[]).flatMap(e=>"failedSubConditions"in e?e.failedSubConditions:[]).filter(e=>!P.includes(e.displayName))}let F="AwaitingReview",B="ChangesRequested",Q="ChecksFailing",$="ChecksPending",K="DraftReadyForReview",W="DraftNotReadyForReview",H="InMergeQueue",V="MergeConflicts",Y="Mergeable",z="NonRequiredChecksUnsuccessful",X="UnableToMerge",J="Unknown",Z="Merged",ee="Closed";function et(e){return(e?.conditions.filter(e=>"FAILED"===e.result)??[]).map(e=>e.type)}function er(e){return!!e?.statusChecks.some(e=>e.isRequired&&function(e){switch(e){case"WAITING":case"PENDING":case"IN_PROGRESS":case"QUEUED":case"EXPECTED":return!0;case"ACTION_REQUIRED":case"FAILURE":case"ERROR":case"STARTUP_FAILURE":case"CANCELLED":case"STALE":case"TIMED_OUT":case"SUCCESS":case"COMPLETED":case"NEUTRAL":case"REQUESTED":case"SKIPPED":case"_UNKNOWN_VALUE":return!1}}(e.state))}function es(e){return!!e?.statusChecks.some(e=>e.isRequired&&function(e){switch(e){case"ACTION_REQUIRED":case"FAILURE":case"ERROR":case"STARTUP_FAILURE":case"_UNKNOWN_VALUE":case"CANCELLED":case"STALE":case"TIMED_OUT":return!0;case"SUCCESS":case"COMPLETED":case"EXPECTED":case"IN_PROGRESS":case"NEUTRAL":case"PENDING":case"QUEUED":case"REQUESTED":case"SKIPPED":case"WAITING":return!1}}(e.state))}function en(e){return void 0!==e&&e?.statusChecks.length!==0&&(!es(e)||!er(e))}function ei(e,t){return e?.state!=="UNMERGEABLE"&&!!t?.statusChecks.some(e=>!e.isRequired&&!function(e){switch(e){case"NEUTRAL":case"SUCCESS":case"SKIPPED":return!0;case"WAITING":case"PENDING":case"IN_PROGRESS":case"QUEUED":case"EXPECTED":case"ACTION_REQUIRED":case"FAILURE":case"ERROR":case"STARTUP_FAILURE":case"CANCELLED":case"STALE":case"TIMED_OUT":case"COMPLETED":case"REQUESTED":case"_UNKNOWN_VALUE":return!1}}(e.state))||t?.statusRollup.combinedState==="PENDING_APPROVAL"}function ea(e){let t=e?.conditions.find(e=>"PULL_REQUEST_RULES"===e.type),r=t?.ruleRollups?.find(e=>"PULL_REQUEST"===e.ruleType);if(!r||"FAILED"!==r.result)return[];let s=r.metadata;return s&&"failureReasons"in s&&s.failureReasons.map(e=>e.toUpperCase())||[]}function eo(e){return et(e).includes("PULL_REQUEST_MERGE_CONFLICT_STATE")}let ChecksSectionStatus=class ChecksSectionStatus extends BaseSectionStatus{get shouldRender(){let e=this.statusChecks?.statusRollup;return(e?.summary.length??0)>0||e?.combinedState==="PENDING_APPROVAL"}get sectionStatus(){let e=v(this.mergeRequirements);return"DIRTY"===this.pullRequest.mergeStateStatus&&e?.result==="FAILED"?"PENDING_CONFLICTS":this.statusChecks?.statusRollup.combinedState??"UNKNOWN"}get mergeBoxStatus(){if("PENDING_APPROVAL"===this.sectionStatus)return"PENDING_USER_ACTION";let e=es(this.statusChecks),t=er(this.statusChecks),r=en(this.statusChecks),s=ei(this.mergeRequirements,this.statusChecks);return t||"PENDING"===this.sectionStatus||"PENDING_CONFLICTS"===this.sectionStatus?"PENDING":e?"FAILED":s?"NEUTRAL":r?"PASSED":"NEUTRAL"}};let ClosedOrMergedStateSectionStatus=class ClosedOrMergedStateSectionStatus extends BaseSectionStatus{get shouldRender(){return"OPEN"!==this.pullRequest.state}get sectionStatus(){return"OPEN"!==this.pullRequest.state?this.pullRequest.state:"UNKNOWN"}get mergeBoxStatus(){return"MERGED"===this.sectionStatus?"MERGED":"NEUTRAL"}};var el=new WeakMap,ec=new WeakMap,eu=new WeakMap;let ConflictsSectionStatus=class ConflictsSectionStatus extends BaseSectionStatus{get shouldRender(){return("BLOCKED"!==this.pullRequest.mergeStateStatus||!!this.pullRequest.viewerCanUpdateBranch)&&!!this.conflictsCondition}get sectionStatus(){return this.conflictsCondition?(0,I._)(this,eu).call(this,this.pullRequest.advisoryWorkspace,this.pullRequest.mergeStateStatus,this.conflictsCondition,(0,I._)(this,ec)):"PENDING"}get mergeBoxStatus(){switch(this.sectionStatus){case"NO_CONFLICTS":case"HAS_ADVISORY_WORKSPACE":return"PASSED";case"HAS_CONFLICTS":case"HAS_REBASE_CONFLICTS":case"OUT_OF_DATE":return"NEUTRAL";default:return"PENDING"}}get conflictsCondition(){return(0,I._)(this,el)||(0,A._)(this,el,v(this.mergeRequirements)),(0,I._)(this,el)}constructor(...e){super(...e),(0,O._)(this,ec,{get:ed,set:void 0}),(0,O._)(this,el,{writable:!0,value:void 0}),(0,O._)(this,eu,{writable:!0,value:(e,t,r,s)=>{if("BEHIND"===t)return"OUT_OF_DATE";if("UNKNOWN"===t)return"PENDING";if("FAILED"===r.result&&0===s.length)return"HAS_REBASE_CONFLICTS";if(!e&&("CLEAN"===t||"UNSTABLE"===t||"HAS_HOOKS"===t))return"NO_CONFLICTS";if(e&&("CLEAN"===t||"UNSTABLE"===t||"HAS_HOOKS"===t))return"HAS_ADVISORY_WORKSPACE";else if("DIRTY"===t&&"FAILED"===r.result)return"HAS_CONFLICTS";else if("BLOCKED"===t)return"OUT_OF_DATE";else return"PENDING"}})}};function ed(){return this.conflictsCondition?.conflicts??[]}let DraftStateSectionStatus=class DraftStateSectionStatus extends BaseSectionStatus{get shouldRender(){return"OPEN"===this.pullRequest.state&&this.pullRequest.isDraft}get sectionStatus(){return"IS_DRAFT"}get mergeBoxStatus(){return"NEUTRAL"}};let MergeQueueSectionStatus=class MergeQueueSectionStatus extends BaseSectionStatus{get shouldRender(){return this.pullRequest.isInMergeQueue}get sectionStatus(){return"QUEUED"}get mergeBoxStatus(){return this.sectionStatus}};var eh=r(30459),em=r(84268),eE=r(55630),e_=r(81960);let eg=e=>{let t,r,s,a=(0,i.c)(5),{isExpanded:o}=e,c=o?"":"rotate(180deg)";return a[0]!==c?(t={transition:"transform 0.15s ease-in-out",transform:c},a[0]=c,a[1]=t):t=a[1],a[2]===Symbol.for("react.memo_cache_sentinel")?(r=(0,n.jsx)(l.ChevronUpIcon,{}),a[2]=r):r=a[2],a[3]!==t?(s=(0,n.jsx)("div",{style:t,children:r}),a[3]=t,a[4]=s):s=a[4],s};try{eg.displayName||(eg.displayName="ExpandableSectionIcon")}catch{}let eS=e=>{let t,r,s,a,o,l,c,d,h,m,E=(0,i.c)(31),{title:_,subtitle:g,headerId:S,icon:f,expandableProps:p,children:C,rightSideContent:R}=e;if(p&&R)throw Error("MergeBoxSectionHeader: rightSideContent is not supported when expandableProps exist");E[0]!==p?(t=p||{},E[0]=p,E[1]=t):t=E[1];let{isExpanded:T,ariaLabel:v,onToggle:N}=t,I=p&&"MergeBoxSectionHeader-module__wrapperCanExpand--AoekL",O=!p&&"flex-column flex-sm-row flex-items-center flex-sm-items-start flex-justify-between";return E[2]!==I||E[3]!==O?(r=(0,u.$)("MergeBoxSectionHeader-module__wrapper--zMA1Y",I,O),E[2]=I,E[3]=O,E[4]=r):r=E[4],E[5]!==f?(s=f&&(0,n.jsx)("div",{className:"mr-2 flex-shrink-0",children:f}),E[5]=f,E[6]=s):s=E[6],E[7]!==S||E[8]!==_?(a=(0,n.jsx)(e_.A,{as:"h3",id:S,className:"MergeBoxSectionHeader-module__MergeBoxSectionHeading--miHzz",children:_}),E[7]=S,E[8]=_,E[9]=a):a=E[9],E[10]!==g?(o=(0,n.jsx)("p",{className:"fgColor-muted mb-0 ",children:g}),E[10]=g,E[11]=o):o=E[11],E[12]!==C||E[13]!==a||E[14]!==o?(l=(0,n.jsxs)("div",{className:"flex-1",children:[a,o,C]}),E[12]=C,E[13]=a,E[14]=o,E[15]=l):l=E[15],E[16]!==R||E[17]!==l?(c=(0,n.jsxs)("div",{className:"d-flex flex-1 flex-column flex-sm-row gap-2",children:[l,R]}),E[16]=R,E[17]=l,E[18]=c):c=E[18],E[19]!==s||E[20]!==c?(d=(0,n.jsxs)("div",{className:"d-flex width-full",children:[s,c]}),E[19]=s,E[20]=c,E[21]=d):d=E[21],E[22]!==v||E[23]!==p||E[24]!==T||E[25]!==N?(h=p&&(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)("button",{"aria-label":v,type:"button",className:"MergeBoxSectionHeader-module__button--mkkJX",onClick:N,"aria-expanded":T}),(0,n.jsx)("div",{className:"fgColor-muted pr-2 pt-2",children:(0,n.jsx)(eg,{isExpanded:!!T})})]}),E[22]=v,E[23]=p,E[24]=T,E[25]=N,E[26]=h):h=E[26],E[27]!==d||E[28]!==h||E[29]!==r?(m=(0,n.jsxs)("div",{className:r,children:[d,h]}),E[27]=d,E[28]=h,E[29]=r,E[30]=m):m=E[30],m};try{eS.displayName||(eS.displayName="MergeBoxSectionHeader")}catch{}let ef="MergeBoxExpandable-module__isExpanded--PaOkp",ep=e=>{let t,r,s,a,o,l=(0,i.c)(13),{isExpanded:c,children:d}=e,h=void 0!==c&&c,m=h&&ef;l[0]!==m?(t=(0,u.$)("MergeBoxExpandable-module__expandableWrapper--Ejab0",m),l[0]=m,l[1]=t):t=l[1];let E=h?"visible":"hidden";l[2]!==E?(r={visibility:E},l[2]=E,l[3]=r):r=l[3];let _=h&&ef;l[4]!==_?(s=(0,u.$)("MergeBoxExpandable-module__expandableContent--li_O1",_),l[4]=_,l[5]=s):s=l[5];let g=h&&d;return l[6]!==s||l[7]!==g?(a=(0,n.jsx)("div",{className:s,children:g}),l[6]=s,l[7]=g,l[8]=a):a=l[8],l[9]!==t||l[10]!==r||l[11]!==a?(o=(0,n.jsx)("div",{className:t,style:r,children:a}),l[9]=t,l[10]=r,l[11]=a,l[12]=o):o=l[12],o};try{ep.displayName||(ep.displayName="MergeBoxExpandable")}catch{}var eC=r(97174),eR=r(21373),eT=r(40104);let ev=e=>{let t,r,s,a=(0,i.c)(5),{isExpanded:o}=e,c=o?"rotate(90deg)":"";return a[0]!==c?(t={transform:c},a[0]=c,a[1]=t):t=a[1],a[2]===Symbol.for("react.memo_cache_sentinel")?(r=(0,n.jsx)(l.ChevronRightIcon,{size:12}),a[2]=r):r=a[2],a[3]!==t?(s=(0,n.jsx)("div",{style:t,children:r}),a[3]=t,a[4]=s):s=a[4],s};try{ev.displayName||(ev.displayName="ExpandableGroupIcon")}catch{}let eN={[h.Qv.Approvals]:(0,n.jsx)(l.CheckIcon,{className:"fgColor-success",size:16}),[h.Qv.RequestedChanges]:(0,n.jsx)(l.FileDiffIcon,{className:"fgColor-danger",size:16}),[h.Qv.PendingReviewRequest]:(0,n.jsx)(l.PersonIcon,{size:16})};function eI(e){let t,r,s,a,o,l,c,h,m,E=(0,i.c)(32),{children:_,count:g,pullRequestId:S,reviewGroup:f}=e,{sendAnalyticsEvent:p}=(0,eh.s)(),[C,R]=(0,eT.Fo)(`${S}:reviewersGroup:${f}Expanded`,!1),T=(0,d.useId)(),v=eN[f];if(E[0]!==g||E[1]!==f)t=g>1?f:f.substring(0,f.length-1),E[0]=g,E[1]=f,E[2]=t;else t=E[2];let N=`${g} ${t}`,I=C?`Collapse ${N} group`:`Expand ${N} group`;E[3]!==C?(r=()=>(0,n.jsx)(ev,{isExpanded:C}),E[3]=C,E[4]=r):r=E[4],E[5]!==C||E[6]!==f||E[7]!==p||E[8]!==R?(s=()=>{p(C?"reviewers_group.collapse":"reviewers_group.expand","MERGEBOX_REVIEWERS_GROUP_TOGGLE_BUTTON",{group:f}),R(!C)},E[5]=C,E[6]=f,E[7]=p,E[8]=R,E[9]=s):s=E[9],E[10]!==N?(a=(0,n.jsx)("span",{className:"ml-1",children:N}),E[10]=N,E[11]=a):a=E[11],E[12]!==T||E[13]!==C||E[14]!==v||E[15]!==I||E[16]!==r||E[17]!==s||E[18]!==a?(o=(0,n.jsxs)(eR.Q,{"aria-controls":T,"aria-expanded":C,"aria-label":I,className:"ReviewGroupExpander-module__groupHeadingButton--S7IXP",variant:"invisible",size:"small",trailingVisual:r,onClick:s,children:[v," ",a]}),E[12]=T,E[13]=C,E[14]=v,E[15]=I,E[16]=r,E[17]=s,E[18]=a,E[19]=o):o=E[19];let O=C&&"ReviewGroupExpander-module__isExpanded--SHz1f";E[20]!==O?(l=(0,u.$)("ReviewGroupExpander-module__expandableWrapper--Xlmef",O),E[20]=O,E[21]=l):l=E[21];let A=C&&_;return E[22]!==A?(c=(0,n.jsx)("div",{className:"ReviewGroupExpander-module__expandableListView--hoVAr",children:A}),E[22]=A,E[23]=c):c=E[23],E[24]!==T||E[25]!==N||E[26]!==c||E[27]!==l?(h=(0,n.jsx)("div",{className:l,id:T,"aria-label":N,role:"group",children:c}),E[24]=T,E[25]=N,E[26]=c,E[27]=l,E[28]=h):h=E[28],E[29]!==h||E[30]!==o?(m=(0,n.jsxs)(n.Fragment,{children:[o,h]}),E[29]=h,E[30]=o,E[31]=m):m=E[31],m}try{eI.displayName||(eI.displayName="ReviewGroupExpander")}catch{}var eO=r(2970),eA=r(95378),ey=r(65964),ex=r(77430);let ew="SectionListItem-module__listItem--cGdcZ";var eb=r(5524),eL=r(72511),eP=r(86877),eM=r(10576),eD=r(57387),ej=r(94747),eU=r(48845),ek=r(9214),eG=r(10095);function eq({reviewer:e,reviewStatusText:t,hovercardUrl:r,reviewId:s,viewerCanDismissReviews:a,viewerCanReRequestReviews:o=!1}){let c,h,_,g,f,C,R,T=(0,d.useRef)(null),v=(0,d.useRef)(null),[N,I]=(0,d.useState)(!1),[O,A]=(0,d.useState)(null),[y,x]=(0,d.useState)(""),w=y.trim().length<1,[b,L]=(0,d.useState)(!1),P=[a?{key:"dismiss-review",render:()=>(0,n.jsx)(eb.l.Item,{onSelect:()=>{I(!0)},children:"Dismiss review"})}:null,o?{key:"re-request-review",render:()=>(0,n.jsx)(eb.l.Item,{onSelect:()=>j({reviewerLogin:e.login}),children:"Re-request review"})}:null].filter(e=>!!e),M=!!s&&P.length>0,D=async()=>{A(null),I(!1),L(!1),v.current?.focus()},{mutate:j}=function(e){let t,r,s,n,a,o=(0,i.c)(13);o[0]!==e?(t=void 0===e?{}:e,o[0]=e,o[1]=t):t=o[1];let{onError:l}=t,c=p(),u=(0,E.e)(m.uT.reRequestReviewFromUser),d=(0,S.jE)();return o[2]!==u?(r=async e=>{let t=await (0,eU.q$)(u,{method:"POST",headers:{Accept:"application/json"},body:e}),r=await (0,eU.hp)(t);return(0,eU.R)(t,r),r},o[2]=u,o[3]=r):r=o[3],o[4]!==c||o[5]!==d?(s=()=>d.invalidateQueries({queryKey:c},{cancelRefetch:!1}),o[4]=c,o[5]=d,o[6]=s):s=o[6],o[7]!==l?(n=e=>{l?.(e)},o[7]=l,o[8]=n):n=o[8],o[9]!==r||o[10]!==s||o[11]!==n?(a={mutationFn:r,onSuccess:s,onError:n},o[9]=r,o[10]=s,o[11]=n,o[12]=a):a=o[12],(0,ej.n)(a)}({onError:()=>{}}),{mutate:U,isPending:k}=(g=(0,i.c)(8),f=(0,E.e)(m.uT.dismissReview),C=p(),R=(0,S.jE)(),g[0]!==f?(c=async e=>{let t=await (0,eU.q$)(f,{method:"POST",headers:{Accept:"application/json"},body:e}),r=await (0,eU.hp)(t);return(0,eU.R)(t,r),r},g[0]=f,g[1]=c):c=g[1],g[2]!==C||g[3]!==R?(h=()=>R.invalidateQueries({queryKey:C},{cancelRefetch:!1}),g[2]=C,g[3]=R,g[4]=h):h=g[4],g[5]!==c||g[6]!==h?(_={mutationFn:c,onSuccess:h},g[5]=c,g[6]=h,g[7]=_):_=g[7],(0,ej.n)(_)),G=(0,d.useCallback)(()=>{k||(w&&L(!0),s&&!w&&U({reviewId:s,message:y},{onSuccess:()=>{D()},onError:e=>{A(e.message)}}))},[U,y,w,k,s]);if((0,d.useEffect)(()=>{function e(e){e.metaKey&&"Enter"===e.key&&N&&(e.preventDefault(),G())}return document.addEventListener("keydown",e),()=>{document.removeEventListener("keydown",e)}},[N,G]),!e)return null;let q=`${e.login} ${t.charAt(0).toLowerCase()+t.slice(1)}`;return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(eO.c,{className:ew,"aria-label":q,title:(0,n.jsx)(eA.ao,{href:e.url,value:e.login,containerClassName:"d-flex flex-items-center pt-0",headingClassName:"ReviewerSection-module__reviewAuthor--ieHt5",anchorClassName:"ReviewerSection-module__reviewAuthorAnchor--UMy9c",leadingBadge:(0,n.jsx)(ey.e,{className:(0,u.$)("ReviewerSection-module__leadingVisual--_bMPf","mt-1"),children:(0,n.jsx)(ex.r,{alt:`${e.login}'s avatar image`,size:20,src:e.avatarUrl,"data-hovercard-url":r,className:"flex-shrink-0 ml-2"})}),children:(0,n.jsx)("span",{className:"ReviewerSection-module__reviewText--JiCKY",children:t})}),secondaryActions:M?(0,n.jsx)(ek.L,{anchorRef:v,label:"review options",staticMenuActions:P,className:"ReviewerSection-module__reviewerActionBar--iT6ez"}):void 0}),N&&(0,n.jsxs)(eD.l,{title:"Dismiss review",onClose:D,role:"dialog",initialFocusRef:T,returnFocusRef:v,footerButtons:[{buttonType:"default",content:"Cancel",onClick:D},{buttonType:"danger",loading:k,loadingAnnouncement:"Dismissing review",content:"Dismiss review",onClick:G}],children:[O&&(0,n.jsxs)(eL.A,{className:"mb-2",variant:"danger",children:[(0,n.jsx)(eG.A,{className:"mr-2",icon:l.StopIcon}),O]}),(0,n.jsxs)(eP.A,{required:!0,className:"mb-2",children:[(0,n.jsx)(eP.A.Label,{children:(0,n.jsxs)("h4",{className:"f5",children:["Reason for dismissing ",e.login,"'s review"]})}),(0,n.jsx)(eM.Ay,{ref:T,onChange:e=>{L(!1),x(e.target.value)},value:y,className:"width-full height-full"}),w&&b&&(0,n.jsx)(eP.A.Validation,{variant:"error",children:"Please provide a reason for dismissing the review"}),(0,n.jsx)(eP.A.Caption,{children:"This reason will appear in the timeline so other users will know why the review was dismissed."})]})]})]})}try{eq.displayName||(eq.displayName="ReviewListItem")}catch{}var eF=r(59672);function eB(e){let t,r,s,a=(0,i.c)(13),{review:o,viewerCanDismissReviews:l,viewerCanReRequestReviews:c}=e,{author:u}=o;if(!u)return null;let d=o.id,h=!o.authorCanPushToRepository;return a[0]!==o.onBehalfOf||a[1]!==o.state||a[2]!==h?(t=((e,t,r)=>{let s="";switch(e){case"APPROVED":s+="Approved these changes";break;case"CHANGES_REQUESTED":s+="Requested changes";break;case"COMMENTED":s+="Commented"}return r&&(s+=" with read-only permissions"),"APPROVED"===e&&t.length>0&&(s+=` for ${(e=>{if(0===e.length)return"";{if(1===e.length)return e[0];if(2===e.length)return e.join(" and ");let t=e.pop();return`${e.join(", ")}, and ${t}`}})(t)}`),s})(o.state,o.onBehalfOf,h),a[0]=o.onBehalfOf,a[1]=o.state,a[2]=h,a[3]=t):t=a[3],a[4]!==u.login?(r=(0,eF.dCN)({owner:u.login}),a[4]=u.login,a[5]=r):r=a[5],a[6]!==u||a[7]!==o.id||a[8]!==t||a[9]!==r||a[10]!==l||a[11]!==c?(s=(0,n.jsx)(eq,{reviewer:u,reviewId:d,reviewStatusText:t,hovercardUrl:r,viewerCanDismissReviews:l,viewerCanReRequestReviews:c}),a[6]=u,a[7]=o.id,a[8]=t,a[9]=r,a[10]=l,a[11]=c,a[12]=s):s=a[12],s}try{eB.displayName||(eB.displayName="OpinionatedReviewRow")}catch{}function eQ(e){let t,r,s,a=(0,i.c)(15),{opinionatedReviews:o,pullRequestId:l,reviewGroup:c,viewerCanDismissReviews:u,viewerCanReRequestReviews:d}=e;if(0===o.length)return null;let h=o.length,m=`list of ${c}`;if(a[0]!==o||a[1]!==u||a[2]!==d){let e;a[4]!==u||a[5]!==d?(e=e=>(0,n.jsx)(eB,{review:e,viewerCanDismissReviews:u,viewerCanReRequestReviews:d},`opinionated-review-from-${e?.author?.name}`),a[4]=u,a[5]=d,a[6]=e):e=a[6],t=o.map(e),a[0]=o,a[1]=u,a[2]=d,a[3]=t}else t=a[3];return a[7]!==m||a[8]!==t?(r=(0,n.jsx)(eC.u,{title:m,titleHeaderTag:"h3",children:t}),a[7]=m,a[8]=t,a[9]=r):r=a[9],a[10]!==o.length||a[11]!==l||a[12]!==c||a[13]!==r?(s=(0,n.jsx)(eI,{count:h,reviewGroup:c,pullRequestId:l,children:r}),a[10]=o.length,a[11]=l,a[12]=c,a[13]=r,a[14]=s):s=a[14],s}try{eQ.displayName||(eQ.displayName="OpinionatedReviewsGroup")}catch{}function e$(e){let t,r,s=(0,i.c)(9),{reviewRequest:a}=e,{reviewer:o}=a;if(!o)return null;if("TEAM"===o.type){let e;if(s[0]!==o.login||s[1]!==o.name){let t=o.login.split("/")[0]??"";e=(0,eF.Pmq)({owner:t,team:o.name}),s[0]=o.login,s[1]=o.name,s[2]=e}else e=s[2];t=e}else{let e;s[3]!==o.login?(e=(0,eF.dCN)({owner:o.login}),s[3]=o.login,s[4]=e):e=s[4],t=e}let l="was requested for review";return a.isCodeOwner&&(l="was requested for review as a codeowner"),s[5]!==t||s[6]!==o||s[7]!==l?(r=(0,n.jsx)(eq,{reviewer:o,reviewStatusText:l,hovercardUrl:t}),s[5]=t,s[6]=o,s[7]=l,s[8]=r):r=s[8],r}try{e$.displayName||(e$.displayName="RequestedReviewRow")}catch{}function eK(e){let t,r,s,a=(0,i.c)(10),{pendingRequestedReviews:o,pullRequestId:l,reviewGroup:c}=e;if(0===o.length)return null;let u=o.length,d=`list of ${c}`;return a[0]!==o?(t=o.map(eW),a[0]=o,a[1]=t):t=a[1],a[2]!==d||a[3]!==t?(r=(0,n.jsx)(eC.u,{title:d,titleHeaderTag:"h3",children:t}),a[2]=d,a[3]=t,a[4]=r):r=a[4],a[5]!==o.length||a[6]!==l||a[7]!==c||a[8]!==r?(s=(0,n.jsx)(eI,{count:u,reviewGroup:c,pullRequestId:l,children:r}),a[5]=o.length,a[6]=l,a[7]=c,a[8]=r,a[9]=s):s=a[9],s}function eW(e){return(0,n.jsx)(e$,{reviewRequest:e},`requested-review-from-${e?.reviewer?.name}`)}try{eK.displayName||(eK.displayName="PendingRequestedReviewsGroup")}catch{}let eH="APPROVED",eV="CHANGES_REQUESTED",eY="REVIEW_REQUIRED",ez="REVIEWED",eX="REVIEW_REQUESTED";function eJ(e){let t,r,s,a,o,l,c,m,E,_,g,S,f,p,C,R,T,v,N,I,O,A,y,x,w,b,L,P=(0,i.c)(78),{consolidatedFailureReasons:M,helpUrl:D,latestOpinionatedReviews:j,numReviewsRequired:U,pendingRequestedReviews:k,pullRequestId:G,reviewsState:q,viewerCanDismissReviews:F,viewerCanReRequestReviews:B}=e;P[0]!==j||P[1]!==k?(t=[...j,...k],P[0]=j,P[1]=k,P[2]=t):t=P[2];let Q=t.length>0,[$,K]=(0,d.useState)(Q),{sendAnalyticsEvent:W}=(0,eh.s)(),H=(0,d.useId)();P[3]!==j?(r=function(e){let t=[],r=[];for(let s of e)"APPROVED"===s.state&&t.push(s),"CHANGES_REQUESTED"===s.state&&r.push(s);return{approvedReviews:t,requestedChangesReviews:r}}(j),P[3]=j,P[4]=r):r=P[4];let{approvedReviews:V,requestedChangesReviews:Y}=r,z=`${D}/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review`;P[5]!==z||P[6]!==M||P[7]!==j||P[8]!==U?(s=e=>{switch(e){case eY:return`${((e,t)=>{if(t.includes("MORE_REVIEWS_REQUIRED"))if(1===e)return"At least 1 approving review is required";else if(0===e&&t.includes("LAST_PUSH_APPROVAL_REQUIRED"))return"An approval on the most recent push is required";else return`At least ${e} approving reviews are required`;return t.includes("CODE_OWNER_REVIEW_REQUIRED")?"Code owner review required":t.includes("SOC2_APPROVAL_PROCESS_REQUIRED")?"A review from a compliance team is required":""})(U,M)} by reviewers with write access.`;case eX:return(0,n.jsxs)(n.Fragment,{children:["Review has been requested on this pull request. It is not required to merge."," ",(0,n.jsx)(em.A,{inline:!0,href:z,className:(0,u.$)("ReviewerSection-module__subtitleLink--J58lv","position-relative"),children:"Learn more about requesting a pull request review."})]});default:let t,r;return`${t=j.filter(e=>e&&"CHANGES_REQUESTED"===e.state&&e.authorCanPushToRepository).length,r=j.filter(e=>e&&"APPROVED"===e.state&&e.authorCanPushToRepository).length,0===t&&0===r?"No applicable reviews submitted":[t>0?`${t} change${1===t?"":"s"} requested`:void 0,r>0?`${r} approving review${1===r?"":"s"}`:void 0].filter(Boolean).join(", ")} by reviewers with write access.`}},P[5]=z,P[6]=M,P[7]=j,P[8]=U,P[9]=s):s=P[9];let X=s;P[10]!==X?(a=X(eH),P[10]=X,P[11]=a):a=P[11],P[12]===Symbol.for("react.memo_cache_sentinel")?(o=(0,n.jsx)(eE.A,{className:"bgColor-success-emphasis fgColor-onEmphasis",icon:e3,size:32}),P[12]=o):o=P[12],P[13]!==a?(l={heading:"Changes approved",subtitle:a,icon:o},P[13]=a,P[14]=l):l=P[14],P[15]!==X?(c=X(eV),P[15]=X,P[16]=c):c=P[16],P[17]===Symbol.for("react.memo_cache_sentinel")?(m=(0,n.jsx)(eE.A,{className:"bgColor-danger-emphasis fgColor-onEmphasis",icon:e2,size:32}),P[17]=m):m=P[17],P[18]!==c?(E={heading:"Changes requested",subtitle:c,icon:m},P[18]=c,P[19]=E):E=P[19],P[20]!==X?(_=X(eY),P[20]=X,P[21]=_):_=P[21],P[22]===Symbol.for("react.memo_cache_sentinel")?(g=(0,n.jsx)(eE.A,{className:"bgColor-danger-emphasis fgColor-onEmphasis",icon:e1,size:32}),P[22]=g):g=P[22],P[23]!==_?(S={heading:"Review required",subtitle:_,icon:g},P[23]=_,P[24]=S):S=P[24],P[25]!==X?(f=X(ez),P[25]=X,P[26]=f):f=P[26],P[27]===Symbol.for("react.memo_cache_sentinel")?(p=(0,n.jsx)(eE.A,{className:(0,u.$)("ReviewerSection-module__reviewedIcon--KucH5","fgColor-onEmphasis"),icon:e0,size:32}),P[27]=p):p=P[27],P[28]!==f?(C={heading:"Changes reviewed",subtitle:f,icon:p},P[28]=f,P[29]=C):C=P[29],P[30]!==X?(R=X(eX),P[30]=X,P[31]=R):R=P[31],P[32]===Symbol.for("react.memo_cache_sentinel")?(T=(0,n.jsx)(eE.A,{className:"bgColor-success-emphasis fgColor-onEmphasis",icon:eZ,size:32}),P[32]=T):T=P[32],P[33]!==R?(v={heading:"Review requested",subtitle:R,icon:T},P[33]=R,P[34]=v):v=P[34],P[35]!==S||P[36]!==C||P[37]!==v||P[38]!==l||P[39]!==E?(N={APPROVED:l,CHANGES_REQUESTED:E,REVIEW_REQUIRED:S,REVIEWED:C,REVIEW_REQUESTED:v},P[35]=S,P[36]=C,P[37]=v,P[38]=l,P[39]=E,P[40]=N):N=P[40];let J=N,Z=J[q],ee=J[q],et=J[q];return P[41]!==J||P[42]!==$||P[43]!==q||P[44]!==W||P[45]!==Q?(I=Q?{ariaLabel:J[q].heading,isExpanded:$,onToggle:()=>{W($?"reviewers_section.collapse":"reviewers_section.expand","MERGEBOX_REVIEWERS_SECTION_TOGGLE_BUTTON"),K(!$)}}:void 0,P[41]=J,P[42]=$,P[43]=q,P[44]=W,P[45]=Q,P[46]=I):I=P[46],P[47]!==H||P[48]!==Z.heading||P[49]!==ee.subtitle||P[50]!==et.icon||P[51]!==I?(O=(0,n.jsx)(eS,{headerId:H,title:Z.heading,subtitle:ee.subtitle,icon:et.icon,expandableProps:I}),P[47]=H,P[48]=Z.heading,P[49]=ee.subtitle,P[50]=et.icon,P[51]=I,P[52]=O):O=P[52],P[53]!==V||P[54]!==G||P[55]!==F||P[56]!==B?(A=(0,n.jsx)(eQ,{viewerCanDismissReviews:F,reviewGroup:h.Qv.Approvals,opinionatedReviews:V,pullRequestId:G,viewerCanReRequestReviews:B}),P[53]=V,P[54]=G,P[55]=F,P[56]=B,P[57]=A):A=P[57],P[58]!==G||P[59]!==Y||P[60]!==F||P[61]!==B?(y=(0,n.jsx)(eQ,{viewerCanDismissReviews:F,reviewGroup:h.Qv.RequestedChanges,opinionatedReviews:Y,pullRequestId:G,viewerCanReRequestReviews:B}),P[58]=G,P[59]=Y,P[60]=F,P[61]=B,P[62]=y):y=P[62],P[63]!==k||P[64]!==G||P[65]!==F?(x=(0,n.jsx)(eK,{reviewGroup:h.Qv.PendingReviewRequest,viewerCanDismissReviews:F,pendingRequestedReviews:k,pullRequestId:G}),P[63]=k,P[64]=G,P[65]=F,P[66]=x):x=P[66],P[67]!==A||P[68]!==y||P[69]!==x?(w=(0,n.jsxs)("div",{className:"ReviewerSection-module__reviewerGroupsContainer--pZhlf",children:[A,y,x]}),P[67]=A,P[68]=y,P[69]=x,P[70]=w):w=P[70],P[71]!==$||P[72]!==w?(b=(0,n.jsx)(ep,{isExpanded:$,children:w}),P[71]=$,P[72]=w,P[73]=b):b=P[73],P[74]!==H||P[75]!==O||P[76]!==b?(L=(0,n.jsxs)("section",{"aria-label":"Reviews","aria-describedby":H,className:"border-bottom color-border-subtle",children:[O,b]}),P[74]=H,P[75]=O,P[76]=b,P[77]=L):L=P[77],L}function eZ(){return(0,n.jsx)(l.CheckIcon,{size:16})}function e0(){return(0,n.jsx)(l.CodeReviewIcon,{size:16})}function e1(){return(0,n.jsx)(l.XIcon,{size:16})}function e2(){return(0,n.jsx)(l.FileDiffIcon,{size:16})}function e3(){return(0,n.jsx)(l.CheckIcon,{size:16})}try{eJ.displayName||(eJ.displayName="ReviewerSection")}catch{}var e4=new WeakMap,e5=new WeakMap,e6=new WeakMap,e7=new WeakMap,e8=new WeakMap,e9=new WeakMap;let ReviewerSectionStatus=class ReviewerSectionStatus extends BaseSectionStatus{get shouldRender(){return"DIRTY"!==this.pullRequest.mergeStateStatus&&"UNKNOWN"!==this.pullRequest.mergeStateStatus&&((0,I._)(this,e8).length>0||(0,I._)(this,e9).length>0||this.consolidatedFailureReasons.length>0)}get sectionStatus(){return ti(this.numReviewsRequired,(0,I._)(this,e7),(0,I._)(this,e8),this.consolidatedFailureReasons,(0,I._)(this,e9))}get mergeBoxStatus(){switch(this.sectionStatus){case eH:case eX:case ez:return"PASSED";case eV:return"FAILED";default:return"NEUTRAL"}}get numReviewsRequired(){let e=(0,I._)(this,e6)?.flatMap(e=>e.requiredReviewers||[])||[];return e.length?Math.max(...e):0}get consolidatedFailureReasons(){if(!(0,I._)(this,e5)){let e=(0,I._)(this,e6)?.flatMap(e=>e.failureReasons||[])||[];(0,A._)(this,e5,[...new Set(e)].filter(tn))}return(0,I._)(this,e5)}constructor(...e){super(...e),(0,O._)(this,e6,{get:te,set:void 0}),(0,O._)(this,e7,{get:tt,set:void 0}),(0,O._)(this,e8,{get:tr,set:void 0}),(0,O._)(this,e9,{get:ts,set:void 0}),(0,O._)(this,e4,{writable:!0,value:void 0}),(0,O._)(this,e5,{writable:!0,value:void 0})}};function te(){var e;let t;return(0,I._)(this,e4)||(0,A._)(this,e4,(t=(e=this.mergeRequirements)&&e.conditions.find(e=>"PULL_REQUEST_RULES"===e.type),(t?.ruleRollups?.filter(e=>"PULL_REQUEST"===e.ruleType).map(e=>e.metadata)??[]).filter(e=>null!==e).filter(e=>"requiredReviewers"in e&&"requiresCodeowners"in e&&"failureReasons"in e).map(e=>{let t=e.failureReasons.map(e=>e.toUpperCase());return{requiredReviewers:e.requiredReviewers,requiresCodeowners:e.requiresCodeowners,failureReasons:t}})??[])),(0,I._)(this,e4)}function tt(){return((0,I._)(this,e6)?.filter(e=>e.requiresCodeowners)||[]).length>0}function tr(){return this.pullRequest.latestOpinionatedReviews}function ts(){return this.pullRequest.pendingReviewRequests}let tn=e=>"CODE_OWNER_REVIEW_REQUIRED"===e||"SOC2_APPROVAL_PROCESS_REQUIRED"===e||"CHANGES_REQUESTED"===e||"MORE_REVIEWS_REQUIRED"===e||"LAST_PUSH_APPROVAL_REQUIRED"===e,ti=(e,t,r,s,n)=>0===s.length&&r.length>0&&(e>0||t)?eH:s.includes("CODE_OWNER_REVIEW_REQUIRED")||s.includes("SOC2_APPROVAL_PROCESS_REQUIRED")||s.includes("MORE_REVIEWS_REQUIRED")||s.includes("LAST_PUSH_APPROVAL_REQUIRED")?eY:s.includes("CHANGES_REQUESTED")?eV:0===e&&n.length>0&&0===r.length?eX:ez;var ta=new WeakMap,to=new WeakMap,tl=new WeakMap,tc=new WeakMap,tu=new WeakSet;let MergeBoxStatusCalculator=class MergeBoxStatusCalculator{get overallStatus(){if("MERGED"===(0,I._)(this,ta).state)return"MERGED";if("CLOSED"===(0,I._)(this,ta).state)return"NEUTRAL";if((0,I._)(this,ta).isInMergeQueue)return"QUEUED";if((0,I._)(this,ta).isDraft)return"NEUTRAL";let e=Object.values(this.sections??[]).filter(e=>e.shouldConsiderStatus),t=e.some(e=>"FAILED"===e.mergeBoxStatus),r=e.every(e=>"PASSED"===e.mergeBoxStatus);return t&&(0,I._)(this,ta).viewerCanUpdate?"SOME_FAILED":r?"ALL_PASSED":"NEUTRAL"}get sections(){return(0,I._)(this,tc)}constructor(e,t,r){(0,x._)(this,tu),(0,O._)(this,ta,{writable:!0,value:void 0}),(0,O._)(this,to,{writable:!0,value:void 0}),(0,O._)(this,tl,{writable:!0,value:void 0}),(0,O._)(this,tc,{writable:!0,value:void 0}),(0,A._)(this,ta,e),(0,A._)(this,to,t),(0,A._)(this,tl,r),(0,A._)(this,tc,(0,y._)(this,tu,td).call(this))}};function td(){return{BlockedSection:new BlockedSectionStatus((0,I._)(this,ta),(0,I._)(this,to),(0,I._)(this,tl)),ClosedOrMergedStateMergeBox:new ClosedOrMergedStateSectionStatus((0,I._)(this,ta),(0,I._)(this,to),(0,I._)(this,tl)),ChecksSection:new ChecksSectionStatus((0,I._)(this,ta),(0,I._)(this,to),(0,I._)(this,tl)),ConflictsSection:new ConflictsSectionStatus((0,I._)(this,ta),(0,I._)(this,to),(0,I._)(this,tl)),DraftStateSection:new DraftStateSectionStatus((0,I._)(this,ta),(0,I._)(this,to),(0,I._)(this,tl)),MergeQueueSection:new MergeQueueSectionStatus((0,I._)(this,ta),(0,I._)(this,to),(0,I._)(this,tl)),ReviewerSection:new ReviewerSectionStatus((0,I._)(this,ta),(0,I._)(this,to),(0,I._)(this,tl))}}var th=r(70170),tm=r(40235),tE=r(70263);function t_(e){return document.addEventListener("visibilitychange",e),()=>{document.removeEventListener("visibilitychange",e)}}function tg(){return!document.hidden}function tS(){return!0}let tf=()=>(0,d.useSyncExternalStore)(t_,tg,tS);function tp({channels:e,refetchQuery:t}){let r=(0,d.useMemo)(()=>Object.values(e).filter(e=>null!==e),[e]),s=(0,tE.A)(),[n,i]=(0,d.useState)(!1),a=tf(),o=(0,d.useMemo)(()=>(0,th.n)(()=>{s()&&t()},2e3),[t,s]),l=(0,d.useMemo)(()=>e=>{a?window.setTimeout(()=>o(),e.wait||0):i(!0)},[a,o]);for(let e of((0,d.useEffect)(()=>{s()&&a&&n&&(i(!1),t())},[a,n,i,s,t]),r))(0,tm.x)(e,l)}var tC=r(65510);function tR(e){let t,r=(0,i.c)(3),{pullRequestHeadSha:s}=e,{basePageDataUrl:n}=(0,_.Yu)(),a=`headSha:${s}`,o=`basePageDataURL:${n}`;return r[0]!==a||r[1]!==o?(t=[m.uT.statusChecks,a,o],r[0]=a,r[1]=o,r[2]=t):t=r[2],t}function tT(e){let t,r,s,n=(0,i.c)(9),{pullRequestHeadSha:a}=e,o=(0,E.e)(m.uT.statusChecks);n[0]!==a?(t={pullRequestHeadSha:a},n[0]=a,n[1]=t):t=n[1];let l=tR(t),c=(0,S.jE)();return n[2]!==o||n[3]!==c||n[4]!==l?(r=async()=>(0,g.H)(o,l,c),n[2]=o,n[3]=c,n[4]=l,n[5]=r):r=n[5],n[6]!==l||n[7]!==r?(s={queryKey:l,queryFn:r,staleTime:1e4},n[6]=l,n[7]=r,n[8]=s):s=n[8],(0,tC.U)(s)}var tv=r(72579),tN=r(29e3),tI=r(4559);function tO(e){let t,r,s,a,o,c,h,_,g,f,C,R,T,v=(0,i.c)(49),{state:N,isCrossRepo:I,headRefName:O,headRepository:A,baseRepository:y,viewerCanDeleteHeadRef:x,viewerCanRestoreHeadRef:w,deprovisionableCodespaces:b}=e,[L,P]=(0,d.useState)(),M=(0,d.useRef)(null),[D,j]=(0,d.useState)(!1),U=b?b.count:0,k=w&&b&&U>0,G=U>1?"codespaces":"codespace";v[0]===Symbol.for("react.memo_cache_sentinel")?(t={onError:e=>{P(e)}},v[0]=t):t=v[0];let{mutate:q,isPending:F}=function(e){let t,r,s,n,a=(0,i.c)(11),{onError:o}=e,l=(0,E.e)(m.uT.deleteHeadRef),c=p(),u=(0,S.jE)();return a[0]!==l?(t=async()=>{let e=await (0,eU.q$)(l,{method:"POST",headers:{Accept:"application/json"}}),t=await (0,eU.hp)(e);return(0,eU.R)(e,t),t},a[0]=l,a[1]=t):t=a[1],a[2]!==c||a[3]!==u?(r=()=>{let e=new CustomEvent("head-ref-deleted");return document.dispatchEvent(e),u.invalidateQueries({queryKey:c},{cancelRefetch:!1})},a[2]=c,a[3]=u,a[4]=r):r=a[4],a[5]!==o?(s=e=>{o(e)},a[5]=o,a[6]=s):s=a[6],a[7]!==t||a[8]!==r||a[9]!==s?(n={mutationFn:t,onSuccess:r,onError:s},a[7]=t,a[8]=r,a[9]=s,a[10]=n):n=a[10],(0,ej.n)(n)}(t);v[1]!==q?(r=()=>{P(void 0),q(void 0)},v[1]=q,v[2]=r):r=v[2];let B=r;v[3]===Symbol.for("react.memo_cache_sentinel")?(s={onError:e=>{j(!1),P(e),M.current?.focus()}},v[3]=s):s=v[3];let{mutate:Q,isPending:$}=function(e){let t,r,s,n,a=(0,i.c)(11),{onError:o}=e,l=(0,E.e)(m.uT.cleanupCodespaces),c=p(),u=(0,S.jE)();return a[0]!==l?(t=async()=>{let e=await (0,eU.q$)(l,{method:"POST",headers:{Accept:"application/json"}}),t=await (0,eU.hp)(e);return(0,eU.R)(e,t),t},a[0]=l,a[1]=t):t=a[1],a[2]!==c||a[3]!==u?(r=()=>u.invalidateQueries({queryKey:c},{cancelRefetch:!1}),a[2]=c,a[3]=u,a[4]=r):r=a[4],a[5]!==o?(s=e=>{o(e)},a[5]=o,a[6]=s):s=a[6],a[7]!==t||a[8]!==r||a[9]!==s?(n={mutationFn:t,onSuccess:r,onError:s},a[7]=t,a[8]=r,a[9]=s,a[10]=n):n=a[10],(0,ej.n)(n)}(s);v[4]!==G||v[5]!==Q?(a=()=>{P(void 0),Q(void 0,{onSuccess:()=>{j(!1),setTimeout(()=>(0,tI.i)(`Deleting ${G}.`),1e3)}})},v[4]=G,v[5]=Q,v[6]=a):a=v[6];let K=a;v[7]===Symbol.for("react.memo_cache_sentinel")?(o=()=>{P(void 0),j(!0)},v[7]=o):o=v[7];let W=o;v[8]!==O||v[9]!==A?(c=()=>A&&A.name?(0,eF.WJ9)({owner:A.ownerLogin,repo:A.name,branch:O}):"",v[8]=O,v[9]=A,v[10]=c):c=v[10];let H=c;v[11]!==k||v[12]!==N?(h=()=>k?"Branch successfully deleted":"MERGED"===N?"Pull request successfully merged and closed":"Closed with unmerged commits",v[11]=k,v[12]=N,v[13]=h):h=v[13];let V=h;v[14]!==F||v[15]!==B?(_=(0,n.jsx)(eR.Q,{loading:F,loadingAnnouncement:"Deleting branch",onClick:B,children:"Delete branch"}),v[14]=F,v[15]=B,v[16]=_):_=v[16];let Y=_;v[17]!==G?(g=(0,n.jsxs)(eR.Q,{ref:M,onClick:W,children:["Delete ",G]}),v[17]=G,v[18]=g):g=v[18];let z=g;v[19]===Symbol.for("react.memo_cache_sentinel")?(f=(0,n.jsx)("span",{id:"js-pull-restorable",className:"d-none"}),v[19]=f):f=v[19];let X=f,J=`${A?.url}/settings`;v[20]!==Y||v[21]!==z||v[22]!==k||v[23]!==x?(C=()=>x?Y:k?z:X,v[20]=Y,v[21]=z,v[22]=k,v[23]=x,v[24]=C):C=v[24];let Z=C;v[25]!==y?.name||v[26]!==y?.ownerLogin||v[27]!==U||v[28]!==G||v[29]!==b||v[30]!==H||v[31]!==O||v[32]!==I||v[33]!==J||v[34]!==k||v[35]!==N||v[36]!==x?(R=()=>{if("MERGED"===N)if(x)return(0,n.jsxs)(n.Fragment,{children:["You're all set \u2014 the"," ",(0,n.jsx)(tv.A,{className:(0,u.$)("ClosedOrMergedStateMergeBox-module__branchName--YOSfM","d-inline wb-break-all"),href:H(),children:O})," ","branch can be safely deleted.",I&&(0,n.jsxs)(n.Fragment,{children:[" ","If you wish, you can also delete this fork of"," ",(0,n.jsx)("strong",{children:`${y?.ownerLogin}/${y?.name}`})," in the"," ",(0,n.jsx)(em.A,{href:J,inline:!0,children:"settings"}),"."]})]});else if(k)return(0,n.jsxs)(n.Fragment,{children:["You're all set \u2014 the ",U," ",G," for head branch can be safely deleted. You can also manage your codespaces in"," ",(0,n.jsx)(em.A,{inline:!0,href:b.repositoryCodespacePath||"",children:"settings."})," "]});else return(0,n.jsx)(n.Fragment,{children:"You're all set \u2014 the branch has been merged."});return x?(0,n.jsxs)(n.Fragment,{children:["This pull request is closed, but the ",(0,n.jsx)(tv.A,{href:H(),children:O})," ","branch has unmerged commits."]}):(0,n.jsx)(n.Fragment,{children:"This pull request is closed."})},v[25]=y?.name,v[26]=y?.ownerLogin,v[27]=U,v[28]=G,v[29]=b,v[30]=H,v[31]=O,v[32]=I,v[33]=J,v[34]=k,v[35]=N,v[36]=x,v[37]=R):R=v[37];let ee=R;return v[38]!==U||v[39]!==G||v[40]!==$||v[41]!==F||v[42]!==L||v[43]!==Z||v[44]!==K||v[45]!==V||v[46]!==D||v[47]!==ee?(T=(()=>{if(!L)return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsxs)(tN.A,{"aria-labelledby":"delete-codespaces-dialog-title",isOpen:D,returnFocusRef:M,onDismiss:()=>j(!1),children:[(0,n.jsx)(tN.A.Header,{id:"delete-codespaces-dialog-title",children:"Delete Codespace?"}),(0,n.jsxs)("div",{className:"p-3",children:[(0,n.jsxs)("span",{children:["Are you sure you want to delete ",U," ",G," for the head branch?"]}),(0,n.jsxs)("div",{className:"d-flex flex-justify-end mt-3",children:[(0,n.jsx)(eR.Q,{className:"mr-1",inactive:$,onClick:()=>{$||(j(!1),M.current?.focus())},children:"Cancel"}),(0,n.jsx)(eR.Q,{className:"mr-1",variant:"danger",loading:$,loadingAnnouncement:`Deleting ${G}.`,onClick:K,children:`Delete ${G}`})]})]})]}),(0,n.jsx)(eS,{title:V(),subtitle:ee(),rightSideContent:Z()})]});{let e=404!==L.cause;return(0,n.jsx)(eS,{title:"Some codespaces could not be deleted."===L.message?`Couldn't delete ${G} `:"Couldn't update branch",subtitle:L.message,rightSideContent:e?(0,n.jsx)(eR.Q,{disabled:F,leadingVisual:l.SyncIcon,onClick:()=>P(void 0),children:"Try again"}):void 0})}})(),v[38]=U,v[39]=G,v[40]=$,v[41]=F,v[42]=L,v[43]=Z,v[44]=K,v[45]=V,v[46]=D,v[47]=ee,v[48]=T):T=v[48],T}try{tO.displayName||(tO.displayName="ClosedOrMergedStateMergeBox")}catch{}var tA=r(12683);function ty(e){let t,r,s,a,o=(0,i.c)(9),{icon:l,ariaLabel:c,iconBackgroundColor:d}=e;return o[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,u.$)("d-flex flex-justify-center flex-items-center mr-2 rounded-2 height-2 width-2 position-absolute","MergeabilityIcon-module__mergeabilityIcon--CV3kc"),o[0]=t):t=o[0],o[1]!==d?(r={backgroundColor:d},o[1]=d,o[2]=r):r=o[2],o[3]!==c||o[4]!==l?(s=(0,n.jsx)(eG.A,{className:"fgColor-onEmphasis",icon:l,size:24,"aria-label":c}),o[3]=c,o[4]=l,o[5]=s):s=o[5],o[6]!==r||o[7]!==s?(a=(0,n.jsx)(tA.az,{className:t,sx:r,children:s}),o[6]=r,o[7]=s,o[8]=a):a=o[8],a}try{ty.displayName||(ty.displayName="MergeabilityIcon")}catch{}var tx=r(76720);function tw(e){let t,r,s,a,o,c=(0,i.c)(7),{hideIcon:u}=e;return c[0]!==u?(t=!u&&(0,n.jsx)(ty,{icon:l.GitMergeIcon,ariaLabel:"Merge status cannot be loaded",iconBackgroundColor:"neutral.emphasis"}),c[0]=u,c[1]=t):t=c[1],c[2]===Symbol.for("react.memo_cache_sentinel")?(r=(0,n.jsx)(tx.E.Visual,{children:(0,n.jsx)(l.AlertIcon,{size:24,className:"fgColor-muted mt-3 mb-3"})}),c[2]=r):r=c[2],c[3]===Symbol.for("react.memo_cache_sentinel")?(s=(0,n.jsx)(tx.E.Heading,{children:(0,n.jsx)("strong",{children:"Merge status cannot be loaded"})}),c[3]=s):s=c[3],c[4]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsxs)(tx.E,{border:!0,children:[r,s,(0,n.jsx)("div",{className:"mb-n2",children:(0,n.jsxs)(tx.E.Description,{children:["Try reloading the page, or if the problem persists"," ",(0,n.jsxs)("a",{className:"fgColor-muted",href:"https://support.github.com/",children:[(0,n.jsx)("u",{children:"contact support"}),"."]})]})}),(0,n.jsx)(tx.E.SecondaryAction,{href:"https://www.githubstatus.com/",children:"GitHub status "})]}),c[4]=a):a=c[4],c[5]!==t?(o=(0,n.jsxs)("div",{className:"position-relative MergeBoxErrorState-module__boundaryContainer--QgJ7i",children:[t,a]}),c[5]=t,c[6]=o):o=c[6],o}try{tw.displayName||(tw.displayName="MergeBoxErrorState")}catch{}function tb(e){let t,r,s=(0,i.c)(4),{bgColor:a}=e;return s[0]!==a?(t=a?{backgroundColor:a}:void 0,s[0]=a,s[1]=t):t=s[1],s[2]!==t?(r=(0,n.jsx)(eE.A,{icon:tL,size:32,style:t,className:"BlockedSection-module__CircleOcticon--XMh4s"}),s[2]=t,s[3]=r):r=s[3],r}function tL(){return(0,n.jsx)(l.AlertFillIcon,{size:16})}try{tb.displayName||(tb.displayName="AlertIcon")}catch{}var tP=r(73017);function tM(e){let t,r,s,a=(0,i.c)(5),{failingConditionsAndRules:o}=e;return a[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,n.jsx)(tb,{bgColor:"var(--borderColor-danger-emphasis)"}),a[0]=t):t=a[0],a[1]!==o?(r=o.map(tD),a[1]=o,a[2]=r):r=a[2],a[3]!==r?(s=(0,n.jsx)("section",{"aria-label":"Merging is blocked",className:"border-bottom borderColor-muted",children:(0,n.jsx)(eS,{title:"Merging is blocked",icon:t,children:(0,n.jsx)("ul",{className:"list-style-none",children:r})})}),a[3]=r,a[4]=s):s=a[4],s}function tD(e){return e&&"message"in e&&(0,n.jsxs)("li",{className:"BlockedSection-module__BlockedSectionMessage--kuN11",children:[(0,n.jsx)(tP.JR,{html:e.message||""})," ",(0,n.jsx)(tj,{ruleName:e.displayName})]},e.displayName)}function tj(e){let t=(0,i.c)(1),{ruleName:r}=e;if("UNVERIFIED_EMAIL"===r){let e;return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,n.jsxs)(n.Fragment,{children:["You will be able to merge this pull request after you"," ",(0,n.jsx)(em.A,{href:"/settings/emails",inline:!0,children:"verify your email address"}),"."]}),t[0]=e):e=t[0],e}return null}try{tM.displayName||(tM.displayName="BlockedSection")}catch{}try{tj.displayName||(tj.displayName="AdditionalMessaging")}catch{}let tU={ACTION_REQUIRED:{icon:l.XCircleFillIcon,iconColor:"var(--fgColor-danger, var(--color-danger-fg))",isPending:!1,isSuccess:!1},CANCELLED:{icon:l.StopIcon,iconColor:"var(--fgColor-muted, var(--color-fg-muted))",isPending:!1,isSuccess:!1},COMPLETED:{icon:l.CheckIcon,iconColor:"var(--fgColor-success, var(--color-success-fg))",isSuccess:!0,isPending:!1},ERROR:{icon:l.XCircleFillIcon,iconColor:"var(--fgColor-danger, var(--color-danger-fg))",isPending:!1,isSuccess:!1},EXPECTED:{icon:l.DotFillIcon,iconColor:"var(--fgColor-attention, var(--color-attention-fg))",isPending:!0,isSuccess:!1},FAILURE:{icon:l.XCircleFillIcon,iconColor:"var(--fgColor-danger, var(--color-danger-fg))",isPending:!1,isSuccess:!1},IN_PROGRESS:{icon:l.DotFillIcon,iconColor:"var(--fgColor-attention, var(--color-attention-fg))",isPending:!0,isSuccess:!1},NEUTRAL:{icon:l.SquareFillIcon,iconColor:"var(--fgColor-muted, var(--color-fg-muted))",isPending:!1,isSuccess:!1},PENDING:{icon:l.DotFillIcon,iconColor:"var(--fgColor-attention, var(--color-attention-fg))",isPending:!0,isSuccess:!1},QUEUED:{icon:l.DotFillIcon,iconColor:"var(--fgColor-attention, var(--color-attention-fg))",isPending:!0,isSuccess:!1},REQUESTED:{icon:l.DotFillIcon,iconColor:"var(--fgColor-attention, var(--color-attention-fg))",backgroundColor:"none",isPending:!1,isSuccess:!1},SKIPPED:{icon:l.SkipIcon,iconColor:"var(--fgColor-muted, var(--color-fg-muted))",isPending:!1,isSuccess:!1},STALE:{icon:l.MoonIcon,iconColor:"var(--fgColor-muted, var(--color-fg-muted))",isPending:!1,isSuccess:!1},STARTUP_FAILURE:{icon:l.XCircleFillIcon,iconColor:"var(--fgColor-danger, var(--color-danger-fg))",isPending:!1,isSuccess:!1},SUCCESS:{icon:l.CheckIcon,iconColor:"var(--fgColor-success, var(--color-success-fg))",isSuccess:!0,isPending:!1},TIMED_OUT:{icon:l.XCircleFillIcon,iconColor:"var(--fgColor-danger, var(--color-danger-fg))",isPending:!1,isSuccess:!1},WAITING:{icon:l.ClockIcon,iconColor:"var(--fgColor-attention, var(--color-attention-fg))",isPending:!0,isSuccess:!1},_UNKNOWN_VALUE:{icon:l.DotFillIcon,iconColor:"var(--fgColor-attention, var(--color-attention-fg))",isPending:!0,isSuccess:!1}},tk={FAILURE:"failing",NEUTRAL:"neutral",TIMED_OUT:"timed out",CANCELLED:"cancelled",STALE:"stale",PENDING:"pending",IN_PROGRESS:"in progress",REQUESTED:"requested",QUEUED:"queued",SKIPPED:"skipped",EXPECTED:"expected",SUCCESS:"successful",ALL:"all"};Object.keys(tU);let tG=new Intl.Collator(void 0,{numeric:!0,sensitivity:"base"});function tq(e,t){return tG.compare(e.displayName,t.displayName)}function tF(e,t,r,s){if(s?.statusChecksGrouping==="ungrouped")return{ALL:e};let n={};for(let e of Object.keys(t))n[e]=[];return e.reduce((e,s)=>{let n=r(s),i=Object.keys(t).find(e=>t[e].includes(n));if(i){let t=e[i];t&&t.push(s)}return e},n)}function tB(e,t,r){if(r?.statusChecksGrouping==="ungrouped")return{ALL:e.reduce((e,t)=>e+t.count,0)};let s=tF(e,t,e=>e.state,r);return Object.fromEntries(Object.keys(s).map(e=>{let t;return[e,(t=s[e],t?.reduce((e,t)=>e+t.count,0)??0)]}))}function tQ(e){let t={};for(let r of e)t[r.state]=r.count;return{statusCheckCounts:JSON.stringify(t)}}var t$=r(72931);let tK={PASSED:"success",PENDING:"pending",PENDING_APPROVAL:"pending",PENDING_FAILED:"failure",PENDING_CONFLICTS:"pending",SOME_FAILED:"failure",FAILED:"failure"};function tW(){(0,t$.gd)()}function tH(){return(0,t$.iD)("merge-queue"),tV}function tV(){(0,t$.gd)()}var tY=r(94236),tz=r(26108);let tX={status_checks_grouping_preference:["grouped_by_status","ungrouped"]};function tJ(e){let t,r,s,a,o,c,h=(0,i.c)(29),{children:_,count:g,groupStatus:f,isToggleVisible:C,analyticsMetadata:R,showSettingsIcon:T,setUserPreferences:v,pullRequestId:N,userPreferences:I}=e;h[0]!==g||h[1]!==I?.statusChecksGrouping?(t=function(e){return I?.statusChecksGrouping==="ungrouped"?g>1?`${g} checks`:`${g} check`:`${g} ${e} check${g>1?"s":""}`},h[0]=g,h[1]=I?.statusChecksGrouping,h[2]=t):t=h[2];let O=t,[A,y]=(0,eT.Fo)(`${N}:checksGroup:${f}Expanded`,!0),{sendAnalyticsEvent:x}=(0,eh.s)(),w=tk[f],b=(0,d.useId)(),L=A||!C,P=O(w),M=!C||A,[D,j]=(0,d.useState)(null);h[3]===Symbol.for("react.memo_cache_sentinel")?(r={onError:e=>{j(e.message)}},h[3]=r):r=h[3];let{mutate:U}=function(e){let t,r,s,n,a=(0,i.c)(11),{onError:o}=e,l=(0,E.e)(m.uT.updateMergeBoxUserPreference),c=p(),u=(0,S.jE)();return a[0]!==l?(t=async e=>{if(!e.preferenceName||!e.preference)throw Error("Preference name and value must be provided.");if(!(e.preferenceName in tX))throw Error("Invalid preference name.");if(!tX[e.preferenceName].includes(e.preference))throw Error("Invalid preference value.");let t=await (0,eU.q$)(l,{method:"POST",headers:{Accept:"application/json"},body:e}),r=await (0,eU.hp)(t);return(0,eU.R)(t,r),r},a[0]=l,a[1]=t):t=a[1],a[2]!==c||a[3]!==u?(r=()=>u.invalidateQueries({queryKey:c},{cancelRefetch:!1}),a[2]=c,a[3]=u,a[4]=r):r=a[4],a[5]!==o?(s=e=>{o(e)},a[5]=o,a[6]=s):s=a[6],a[7]!==t||a[8]!==r||a[9]!==s?(n={mutationFn:t,onSuccess:r,onError:s},a[7]=t,a[8]=r,a[9]=s,a[10]=n):n=a[10],(0,ej.n)(n)}(r);return h[4]!==R||h[5]!==b||h[6]!==f||h[7]!==P||h[8]!==A||h[9]!==x||h[10]!==y||h[11]!==v||h[12]!==C||h[13]!==T||h[14]!==U||h[15]!==I?(s=C&&(0,n.jsxs)("div",{className:"ExpandedChecks-module__groupHeader--jZHKD",children:[I?.statusChecksGrouping==="ungrouped"?(0,n.jsxs)("span",{className:(0,u.$)("ExpandedChecks-module__totalChecksCountText--buDCm","pl-2 text-semibold f6"),children:[" ",P," "]}):(0,n.jsx)(eR.Q,{"aria-controls":b,"aria-expanded":A,"aria-label":A?`Collapse ${P} group`:`Expand ${P} group`,className:"ExpandedChecks-module__checksGroupHeadingButton--PCfYf",variant:"invisible",size:"small",trailingVisual:()=>(0,n.jsx)(ev,{isExpanded:A}),onClick:()=>{x(A?"checks_group.collapse":"checks_group.expand","MERGEBOX_CHECKS_GROUP_TOGGLE_BUTTON",{...R,group:f}),y(!A)},children:P}),T&&v&&(0,n.jsxs)(tY.W,{children:[(0,n.jsx)(tY.W.Anchor,{children:(0,n.jsx)(tz.K,{icon:l.GearIcon,variant:"invisible","aria-label":"Checks settings",className:"ExpandedChecks-module__checkSettingsButton--MONZT"})}),(0,n.jsx)(tY.W.Overlay,{width:"auto",children:(0,n.jsxs)(eb.l,{selectionVariant:"single",children:[(0,n.jsx)(eb.l.Item,{onSelect:()=>{I?.statusChecksGrouping!=="grouped_by_status"&&(U({preferenceName:"status_checks_grouping_preference",preference:"grouped_by_status"}),v({...I,statusChecksGrouping:"grouped_by_status"}))},selected:I?.statusChecksGrouping==="grouped_by_status",children:"Group by status"}),(0,n.jsx)(eb.l.Item,{onSelect:()=>{I?.statusChecksGrouping!=="ungrouped"&&(U({preferenceName:"status_checks_grouping_preference",preference:"ungrouped"}),v({...I,statusChecksGrouping:"ungrouped"}))},selected:I?.statusChecksGrouping==="ungrouped",children:"No grouping"})]})})]})]}),h[4]=R,h[5]=b,h[6]=f,h[7]=P,h[8]=A,h[9]=x,h[10]=y,h[11]=v,h[12]=C,h[13]=T,h[14]=U,h[15]=I,h[16]=s):s=h[16],h[17]!==D?(a=D&&(0,n.jsxs)(eL.A,{variant:"danger",className:"ChecksGroup-module__ErrorFlash--WJCJc",children:[(0,n.jsx)(eG.A,{icon:l.StopIcon,className:"ChecksGroup-module__ErrorOcticon--JPT2T"}),D]}),h[17]=D,h[18]=a):a=h[18],h[19]!==_||h[20]!==b||h[21]!==w||h[22]!==M||h[23]!==L?(o=M&&(0,n.jsx)("div",{className:(0,u.$)("ExpandedChecks-module__expandableWrapper--aGEIv",L&&"ExpandedChecks-module__isExpanded--pq8Vj"),id:b,"aria-label":`${w} checks`,role:"group",children:(0,n.jsx)("div",{className:"ExpandedChecks-module__expandableListView--QDJPW",children:(0,n.jsx)(eC.u,{title:`${w} checks`,titleHeaderTag:"h3",strictFocusZone:!1,children:_})})}),h[19]=_,h[20]=b,h[21]=w,h[22]=M,h[23]=L,h[24]=o):o=h[24],h[25]!==s||h[26]!==a||h[27]!==o?(c=(0,n.jsxs)("div",{children:[s,a,o]}),h[25]=s,h[26]=a,h[27]=o,h[28]=c):c=h[28],c}try{tJ.displayName||(tJ.displayName="ChecksGroup")}catch{}var tZ=r(62935),t0=r(26607),t1=r(10436),t2=r(84098),t3=r(51880),t4=r(4929),t5=r(39619),t6=r(51213),t7=r(34665),t8=r(68637),t9=r(69599),re=r(79064),rt=r(53419),rr=r(25641),rs=r(78314),rn=r(20582);let ri="copilot-explain-error-action",ra="copilot-fix-with-copilot-action";function ro(e){let t,r,s,a=(0,i.c)(7),{failureContext:o,targetUrl:c,displayName:u}=e;a[0]!==u||a[1]!==o||a[2]!==c?(t=()=>{if((0,t9.G7)("copilot_chat_action_logs_redirect")){(0,rt.BI)("copilot.open_copilot_chat",{source:`element ${ri}`});let e=c?(0,t7.a)(c,!0,u):null,t=e?[e]:[],r=(0,t8.oo)(void 0,!0);re.Jt.setEntrypointMessage({message:r,references:t}),re.Jt.setCurrentReferences(null,t),window.location.href=e?`/copilot?reference_id=${(0,rr.Vb)(e)}`:"/copilot";return}(0,t5.qR)({id:ri,intent:t6.wh.actionsAgent,content:(0,t8.oo)(o.jobId),references:[]})},a[0]=u,a[1]=o,a[2]=c,a[3]=t):t=a[3];let d=t;return a[4]===Symbol.for("react.memo_cache_sentinel")?(r=(0,n.jsx)(eb.l.LeadingVisual,{children:(0,n.jsx)(l.CopilotIcon,{})}),a[4]=r):r=a[4],a[5]!==d?(s=(0,n.jsxs)(eb.l.Item,{onSelect:d,children:["Explain error",r]}),a[5]=d,a[6]=s):s=a[6],s}function rl(e){let t,r,s,a=(0,i.c)(6),{targetUrl:o}=e,{sendAnalyticsEvent:c}=(0,eh.s)();a[0]!==c?(t=()=>{c("status_check_row_action_bar.view_details_click","VIEW_DETAILS_MENU_ITEM")},a[0]=c,a[1]=t):t=a[1];let u=t;return a[2]===Symbol.for("react.memo_cache_sentinel")?(r=(0,n.jsx)(eb.l.LeadingVisual,{children:(0,n.jsx)(l.ArrowRightIcon,{})}),a[2]=r):r=a[2],a[3]!==u||a[4]!==o?(s=(0,n.jsxs)(eb.l.LinkItem,{href:o,onClick:u,children:["View details",r]}),a[3]=u,a[4]=o,a[5]=s):s=a[5],s}function rc(e){let t,r,s,a,o,c,u,h=(0,i.c)(19),{failureContext:m,targetUrl:E,displayName:_}=e,[g,S]=(0,d.useState)(!1),f=(0,rs.t)();h[0]!==_||h[1]!==E?(t=E?(0,t7.a)(E,!0,_):null,h[0]=_,h[1]=E,h[2]=t):t=h[2];let p=t,C=p?.repoOwner||f?.ownerLogin,R=p?.repoName||f?.name,T=m.headRef||f?.defaultBranch;h[3]===Symbol.for("react.memo_cache_sentinel")?(r=()=>{S(!1),(0,rt.BI)("fix_workflow.job_created",{source:ra}),window.location.href="/copilot/agents"},s=e=>{S(!1),(0,rt.BI)("fix_workflow.job_creation_failed",{error:e.message,source:ra})},h[3]=r,h[4]=s):(r=h[3],s=h[4]),h[5]!==C||h[6]!==R?(a={owner:C,repo:R,onSuccess:r,onError:s},h[5]=C,h[6]=R,h[7]=a):a=h[7];let{mutate:v}=(0,rn.l)(a);h[8]!==T||h[9]!==v||h[10]!==_||h[11]!==m.jobId||h[12]!==E?(o=()=>{S(!0),(0,rt.BI)("fix_workflow.menu_item_clicked",{source:ra});let e=_||"workflow",t=`Fix the failing GitHub Actions workflow "${e}". +Analyze the workflow logs, identify the root cause of the failure, and implement a fix. +Job ID: ${m.jobId} +${E?`Job URL: ${E}`:""}`;v({problemStatement:t,baseRef:T||"",eventType:"fix-failed-workflow",eventContent:t})},h[8]=T,h[9]=v,h[10]=_,h[11]=m.jobId,h[12]=E,h[13]=o):o=h[13];let N=o;if(!R||!C||!T)return null;let I=g?"Creating task...":"Fix with agent";return h[14]===Symbol.for("react.memo_cache_sentinel")?(c=(0,n.jsx)(eb.l.LeadingVisual,{children:(0,n.jsx)(l.AgentIcon,{})}),h[14]=c):c=h[14],h[15]!==g||h[16]!==N||h[17]!==I?(u=(0,n.jsxs)(eb.l.Item,{onSelect:N,disabled:g,children:[I,c]}),h[15]=g,h[16]=N,h[17]=I,h[18]=u):u=h[18],u}function ru(e){let t,r=(0,i.c)(10),{copilotCheckRunFailureContext:s,targetUrl:a,displayName:o}=e;if(r[0]!==s||r[1]!==o||r[2]!==a){let e=[],i=(0,t9.G7)("copilot_fix_failed_workflows");if(null!=s){let t,l=()=>(0,n.jsx)(ro,{failureContext:s,targetUrl:a,displayName:o});if(r[4]!==l?(t={key:"copilot-explain-error",render:l},r[4]=l,r[5]=t):t=r[5],e.push(t),i){let t,i=()=>(0,n.jsx)(rc,{failureContext:s,targetUrl:a,displayName:o});r[6]!==i?(t={key:"copilot-fix-with-copilot",render:i},r[6]=i,r[7]=t):t=r[7],e.push(t)}}if(a){let t;r[8]!==a?(t={key:"view-details",render:()=>(0,n.jsx)(rl,{targetUrl:a})},r[8]=a,r[9]=t):t=r[9],e.push(t)}t=(0,n.jsx)(ek.L,{label:"actions",staticMenuActions:e,className:"StatusCheckRowActionBar-module__statusCheckActionBar--Ipu3V"}),r[0]=s,r[1]=o,r[2]=a,r[3]=t}else t=r[3];return t}try{ro.displayName||(ro.displayName="CopilotExplainErrorMenuItem")}catch{}try{rl.displayName||(rl.displayName="ViewDetailsMenuItem")}catch{}try{rc.displayName||(rc.displayName="CopilotFixWithCopilotMenuItem")}catch{}try{ru.displayName||(ru.displayName="StatusCheckRowActionBar")}catch{}function rd(e){let t,r,s=(0,i.c)(5),{iconColor:a,icon:o}=e;return s[0]!==a?(t={color:a},s[0]=a,s[1]=t):t=s[1],s[2]!==o||s[3]!==t?(r=(0,n.jsx)(t1.m4,{icon:o,sx:t}),s[2]=o,s[3]=t,s[4]=r):r=s[4],r}function rh(e){let t,r,s,a=(0,i.c)(5),{animated:o}=e,u=void 0===o||o;return a[0]!==u?(t=u?(0,n.jsx)(c.A,{size:"small"}):(0,n.jsx)(l.CircleIcon,{size:"small",className:"StatusCheckRow-module__staticSpinner--zUcDB"}),a[0]=u,a[1]=t):t=a[1],a[2]===Symbol.for("react.memo_cache_sentinel")?(r=(0,n.jsx)("div",{className:"StatusCheckRow-module__spinnerWrapper--AjdFv",children:(0,n.jsx)("div",{className:"StatusCheckRow-module__spinnerInner--KITho"})}),a[2]=r):r=a[2],a[3]!==t?(s=(0,n.jsxs)("div",{className:"StatusCheckRow-module__checksSpinnerWrapper--HgboO",children:[t,r]}),a[3]=t,a[4]=s):s=a[4],s}let rm=(0,d.memo)(function(e){let t,r,s,a,o,l,c,h,m,E,_,g,S,f,p,C,R,T=(0,i.c)(51),{additionalContext:v,avatarUrl:N,avatarBackgroundColor:I,copilotCheckRunFailureContext:O,description:A,displayName:y,state:x,stateChangedAt:w,targetUrl:b,isRequired:L,reserveSpaceForRequiredBadge:P,reserveSpaceForActionBar:M,shouldAnimate:D}=e,j=void 0===D||D,U=tU[x];T[0]!==v?(t=v?v.charAt(0).toLowerCase()+v.slice(1):"",T[0]=v,T[1]=t):t=T[1];let k=`${y} ${t}`,G=P&&!M,[q,F]=(0,d.useState)(!1),B=(0,d.useRef)(null),Q=(0,d.useRef)(null);T[2]===Symbol.for("react.memo_cache_sentinel")?(r=()=>{let e=new ResizeObserver(()=>{if(B.current&&Q.current){let e=Q.current.offsetWidth;F(B.current.offsetWidth+31>e)}});return Q.current&&e.observe(Q.current),()=>{e.disconnect()}},T[2]=r):r=T[2],T[3]!==y?(s=[y],T[3]=y,T[4]=s):s=T[4],(0,d.useEffect)(r,s),T[5]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)("div",{}),T[5]=a):a=T[5],T[6]===Symbol.for("react.memo_cache_sentinel")?(o=(0,u.$)(ew),T[6]=o):o=T[6],T[7]!==O||T[8]!==y||T[9]!==M||T[10]!==b?(l=M?(0,n.jsx)(ru,{copilotCheckRunFailureContext:O,targetUrl:b,displayName:y}):(0,n.jsx)(n.Fragment,{}),T[7]=O,T[8]=y,T[9]=M,T[10]=b,T[11]=l):l=T[11],T[12]===Symbol.for("react.memo_cache_sentinel")?(c=(0,u.$)("StatusCheckRow-module__leadingVisual--JETy5","mt-2"),T[12]=c):c=T[12],T[13]!==j||T[14]!==x||T[15]!==U?(h="IN_PROGRESS"===x?(0,n.jsx)(rh,{animated:j}):(0,n.jsx)(rd,{icon:U.icon,iconColor:U.iconColor}),T[13]=j,T[14]=x,T[15]=U,T[16]=h):h=T[16],T[17]!==I||T[18]!==N||T[19]!==y?(m=N?(0,n.jsx)(ex.r,{alt:y,size:20,square:!0,src:N,className:"flex-shrink-0 ml-2 mr-2",style:I?{backgroundColor:I}:void 0}):(0,n.jsx)(t2.N,{size:20,square:!0,className:"flex-shrink-0 ml-2 mr-2"}),T[17]=I,T[18]=N,T[19]=y,T[20]=m):m=T[20],T[21]!==m||T[22]!==h?(E=(0,n.jsx)(t3.B,{children:(0,n.jsxs)(ey.e,{className:c,children:[h,m]})}),T[21]=m,T[22]=h,T[23]=E):E=T[23];let $=y??"",K=b??void 0,W=q?`${y} ${v} ${A}`:void 0;T[24]!==W?(_={title:W},T[24]=W,T[25]=_):_=T[25];let H=("IN_PROGRESS"===x||"QUEUED"===x)&&"text-italic";T[26]!==H?(g=(0,u.$)("StatusCheckRow-module__titleDescription--sgUXB",H),T[26]=H,T[27]=g):g=T[27],T[28]!==v||T[29]!==x||T[30]!==w?(S=function({state:e,stateChangedAt:t,additionalContext:r}){switch(e){case"IN_PROGRESS":return(0,n.jsxs)("span",{children:["Started ",(0,n.jsx)(tZ.A,{datetime:t})]});case"SKIPPED":return(0,n.jsxs)("span",{children:["Skipped ",(0,n.jsx)(tZ.A,{datetime:t})]});case"QUEUED":return(0,n.jsx)("span",{children:"Queued"});default:return(0,n.jsx)("span",{children:r})}}({state:x,stateChangedAt:w,additionalContext:v}),T[28]=v,T[29]=x,T[30]=w,T[31]=S):S=T[31];let V=A&&`\u{2014} ${A}`;return T[32]!==g||T[33]!==S||T[34]!==V?(f=(0,n.jsxs)("span",{className:g,children:[S," ",V]}),T[32]=g,T[33]=S,T[34]=V,T[35]=f):f=T[35],T[36]!==$||T[37]!==K||T[38]!==_||T[39]!==f?(p=(0,n.jsx)(eA.ao,{containerClassName:"StatusCheckRow-module__title--KooFt",headingClassName:"StatusCheckRow-module__titleHeader--Qx8JS",value:$,href:K,linkProps:_,headingRef:B,headerContainerRef:Q,children:f}),T[36]=$,T[37]=K,T[38]=_,T[39]=f,T[40]=p):p=T[40],T[41]!==L||T[42]!==G||T[43]!==P?(C=P?(0,n.jsx)(t4.V,{children:L&&(0,n.jsx)("div",{className:(0,u.$)("StatusCheckRow-module__requiredLabel--cYbp_","flex-shrink-0 fgColor-default",G&&"pr-3"),children:(0,n.jsx)(t0.A,{children:"Required"})})}):(0,n.jsx)("div",{className:"px-5"}),T[41]=L,T[42]=G,T[43]=P,T[44]=C):C=T[44],T[45]!==k||T[46]!==E||T[47]!==p||T[48]!==C||T[49]!==l?(R=(0,n.jsxs)(eO.c,{title:a,"aria-label":k,className:o,secondaryActions:l,children:[E,p,C]}),T[45]=k,T[46]=E,T[47]=p,T[48]=C,T[49]=l,T[50]=R):R=T[50],R});try{rd.displayName||(rd.displayName="StatusIcon")}catch{}try{rh.displayName||(rh.displayName="CheckSpinner")}catch{}try{rm.displayName||(rm.displayName="StatusCheckRow")}catch{}let rE={FAILURE:["CANCELLED","ERROR","FAILURE","STALE","STARTUP_FAILURE","TIMED_OUT"],PENDING:["ACTION_REQUIRED","EXPECTED","PENDING","QUEUED","REQUESTED","WAITING","_UNKNOWN_VALUE"],IN_PROGRESS:["IN_PROGRESS"],SKIPPED:["SKIPPED"],NEUTRAL:["NEUTRAL"],SUCCESS:["SUCCESS","COMPLETED"]};function r_({pullRequestId:e,statusChecks:t,statusRollupSummary:r,mergeBoxUserPreferences:s}){let[i,a]=(0,d.useState)(s||null),o=(0,d.useMemo)(()=>t.sort(tq),[t]),l=tB(r,rE,i),c=tF(o,rE,e=>e.state,i),h=t.some(e=>e.isRequired),m=t.some(e=>e.copilotCheckRunFailureContext||!!e.targetUrl),E=Object.entries(l).reduce((e,[,t])=>t>0?e+1:e,0),_=t.length>0&&t.every(e=>e.state===t[0]?.state),g=E>1||i?.statusChecksGrouping==="ungrouped"&&!_;return(0,n.jsx)("div",{className:(0,u.$)("ExpandedChecks-module__checksContainer--ZfNYB","ExpandedChecks-module__containPaint--TRfkR"),children:Object.entries(l).filter(([,e])=>e>0).map(([t,s],o)=>{let l=s<50;return(0,n.jsx)(tJ,{count:s,groupStatus:t,isToggleVisible:g,pullRequestId:e,analyticsMetadata:tQ(r),setUserPreferences:a,userPreferences:i,showSettingsIcon:i&&0===o,children:c[t]?.map(e=>e?(0,n.jsx)(rm,{...e,shouldAnimate:l,reserveSpaceForActionBar:m,reserveSpaceForRequiredBadge:h},`${e.displayName}-${e.state}-${e.targetUrl}-${e.stateChangedAt}`):null)},t)})})}try{r_.displayName||(r_.displayName="ExpandedChecksList")}catch{}let rg="StatusCheckStatesIcon-module__icon--trJdb",rS="StatusCheckStatesIcon-module__icon-animate--U9a0b",rf={PASSING:(0,n.jsx)(eE.A,{icon:()=>(0,n.jsx)(l.CheckIcon,{size:16}),className:"bgColor-success-emphasis fgColor-onEmphasis",size:32}),FAILING:(0,n.jsx)(eE.A,{icon:()=>(0,n.jsx)(l.XIcon,{size:16}),className:"bgColor-danger-emphasis fgColor-onEmphasis",size:32})},rp={FAILURE:["CANCELLED","ERROR","FAILURE","STALE","STARTUP_FAILURE","TIMED_OUT"],PENDING:["_UNKNOWN_VALUE","EXPECTED","QUEUED","PENDING","WAITING","REQUESTED","ACTION_REQUIRED","IN_PROGRESS"],SKIPPED:["SKIPPED","NEUTRAL"],SUCCESS:["SUCCESS","COMPLETED"]},rC={FAILURE:"var(--fgColor-danger)",SUCCESS:"var(--fgColor-success)",PENDING:"var(--fgColor-attention)",SKIPPED:"var(--fgColor-neutral)"},rR=2*Math.PI*44,rT={gapPercent:5,strokeWidth:12,size:32,circleSize:100,circumference:rR,percentToDegree:3.6,percentToPx:rR/100};function rv({statusRollupSummary:e}){let[t,r]=(0,d.useState)(!1),s=(0,d.useRef)(void 0),i=(0,d.useMemo)(()=>{let t,r,s,n,i,a,o,l;return s=(r=[{name:"SUCCESS",count:(t=tB(e,rp)).SUCCESS??0},{name:"SKIPPED",count:t.SKIPPED??0},{name:"PENDING",count:t.PENDING??0},{name:"FAILURE",count:t.FAILURE??0}].flatMap(e=>e?[e]:[]).filter(e=>!!e.count&&e.count>0)).reduce((e,t)=>e+t.count,0),n=[],i=r.length??0,a=r.filter(({count:e})=>e/s*100<6).map(e=>e.name),o=0,3===a.length?o=15/(i-3):2===a.length?o=10/(i-2):1===a.length&&(o=5/(i-1)),l=o,r.map((e,t)=>{var r,o;let c,u,d;if(r=e.name,!Object.keys(rp).includes(r))return null;let h=e.count;if(!h)return null;let m=(o=e.name,c=h/s*100,(i>1&&(c-=rT.gapPercent),a.includes(o))?c+5:c-l),E={name:e.name,percentage:m,dashArray:`${Math.max(m*rT.percentToPx,0)} ${rT.circumference}`,transform:(u=0,((0!==t||t!==i-1)&&i>1||2===i)&&(u=2.5),d=((e,t)=>{if(0===e)return e;let r=0;for(let e=0;ee?[e]:[])},[e]),a=1===e.length&&e[0]?.state==="SUCCESS",o=1===e.length&&e[0]?.state==="FAILURE",l=!a&&!o||t;return(0,d.useMemo)(()=>{void 0!==s.current&&e.length>0&&r(!0),s.current=e},[e]),(0,n.jsxs)("div",{className:"StatusCheckStatesIcon-module__iconWrapper--LPiWu",children:[a&&(0,n.jsx)("div",{className:(0,u.$)(rg,t&&rS),children:rf.PASSING}),o&&(0,n.jsx)("div",{className:(0,u.$)(rg,t&&rS),children:rf.FAILING}),l&&(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:`0 0 ${rT.circleSize} ${rT.circleSize}`,shapeRendering:"crispEdges",width:rT.size,height:rT.size,style:{userSelect:"none",zoom:"reset"},fill:"none","aria-hidden":"true",children:i.map(e=>(0,n.jsx)("circle",{cx:rT.circleSize/2,cy:rT.circleSize/2,r:44,style:{strokeLinecap:"round",strokeLinejoin:"round",strokeDashoffset:0,strokeWidth:rT.strokeWidth,transition:"all 1000ms ease 0ms",transformOrigin:"50% 50%",shapeRendering:"geometricPrecision",strokeDasharray:e.dashArray,transform:e.transform,stroke:e.stroke}},e.name))})]})}try{rv.displayName||(rv.displayName="StatusCheckStatesIcon")}catch{}let rN={FAILURE:["ERROR","FAILURE","STARTUP_FAILURE"],TIMED_OUT:["TIMED_OUT"],CANCELLED:["CANCELLED"],SUCCESS:["SUCCESS"],STALE:["STALE"],PENDING:["ACTION_REQUIRED","PENDING","WAITING","_UNKNOWN_VALUE"],IN_PROGRESS:["IN_PROGRESS"],QUEUED:["QUEUED"],NEUTRAL:["NEUTRAL"],SKIPPED:["SKIPPED"],EXPECTED:["EXPECTED"],REQUESTED:["REQUESTED"]};function rI(e){let t,r,s,a,o,c,u,h,_=(0,i.c)(27),{checkSectionAriaId:g,pendingWorkflowApprovalRollup:f,statusRollup:p,statusChecks:C,pullRequestHeadSha:R,pullRequestId:T,focusPrimaryMergeButton:v,mergeBoxUserPreferences:N}=e;_[0]!==R?(t={pullRequestHeadSha:R},_[0]=R,_[1]=t):t=_[1];let{isPending:I,mutate:O}=function(e){let t,r,s,n,a=(0,i.c)(10),{pullRequestHeadSha:o}=e,l=(0,E.e)(m.uT.runActionRequiredWorkflows);a[0]!==o?(t={pullRequestHeadSha:o},a[0]=o,a[1]=t):t=a[1];let c=tR(t),u=(0,S.jE)();return a[2]!==l?(r=async()=>{let e=await (0,eU.q$)(l,{method:"POST",headers:{Accept:"application/json"}}),t=await (0,eU.hp)(e);return(0,eU.R)(e,t),t},a[2]=l,a[3]=r):r=a[3],a[4]!==u||a[5]!==c?(s=()=>u.invalidateQueries({queryKey:c},{cancelRefetch:!1}),a[4]=u,a[5]=c,a[6]=s):s=a[6],a[7]!==r||a[8]!==s?(n={mutationFn:r,onSuccess:s},a[7]=r,a[8]=s,a[9]=n):n=a[9],(0,ej.n)(n)}(t),A=()=>{w(null),O(void 0,{onSuccess:()=>{setTimeout(rO,1e3),v()},onError:e=>w(e.message)})},[y,x]=(0,d.useState)(null),w=x,{workflowsRequiringApprovalCount:b,hasExpiredWorkflowRuns:L,approvalRequiredMessage:P,helpLink:M,viewerCanApproveWorkflowRuns:D}=f,j=`${b} workflow${1===b?"":"s"} awaiting approval`;_[2]!==P||_[3]!==L||_[4]!==M?(r=L?"Unable to re-run one or more workflows because they were created over a month ago.":(0,n.jsxs)(n.Fragment,{children:[P," ",(0,n.jsx)(em.A,{inline:!0,href:M,children:"Learn more about approving workflows."})]}),_[2]=P,_[3]=L,_[4]=M,_[5]=r):r=_[5];let U=r;return _[6]===Symbol.for("react.memo_cache_sentinel")?(s=(0,n.jsx)(tb,{bgColor:"var(--bgColor-attention-emphasis)"}),_[6]=s):s=_[6],_[7]!==A||_[8]!==I||_[9]!==D?(a=D?(0,n.jsx)(eR.Q,{loading:I,loadingAnnouncement:"Re-running workflows",onClick:A,children:"Approve workflows to run"}):void 0,_[7]=A,_[8]=I,_[9]=D,_[10]=a):a=_[10],_[11]!==g||_[12]!==U||_[13]!==a||_[14]!==j?(o=(0,n.jsx)(eS,{headerId:g,title:j,subtitle:U,icon:s,rightSideContent:a}),_[11]=g,_[12]=U,_[13]=a,_[14]=j,_[15]=o):o=_[15],_[16]!==y?(c=y&&(0,n.jsxs)(eL.A,{className:"m-3",variant:"danger",children:[(0,n.jsx)(eG.A,{className:"mr-2",icon:l.StopIcon}),y]}),_[16]=y,_[17]=c):c=_[17],_[18]!==N||_[19]!==T||_[20]!==C||_[21]!==p.summary?(u=p.summary.length>0&&(0,n.jsx)(ep,{isExpanded:!0,children:(0,n.jsx)(r_,{pullRequestId:T,statusChecks:C,statusRollupSummary:p.summary,mergeBoxUserPreferences:N})}),_[18]=N,_[19]=T,_[20]=C,_[21]=p.summary,_[22]=u):u=_[22],_[23]!==o||_[24]!==c||_[25]!==u?(h=(0,n.jsxs)(n.Fragment,{children:[o,c,u]}),_[23]=o,_[24]=c,_[25]=u,_[26]=h):h=_[26],h}function rO(){return(0,tI.i)("Successfully approved and re-requested workflows.")}let rA={PASSED:"All checks have passed",PENDING:"Some checks haven't completed yet",PENDING_APPROVAL:"Some checks are waiting for approval",PENDING_FAILED:"Some checks were not successful",SOME_FAILED:"Some checks were not successful",FAILED:"All checks have failed",PENDING_CONFLICTS:"Checks awaiting conflict resolution",UNKNOWN:"Checks status is unknown"};function ry(e){let t,r,s,a,o,l,c=(0,i.c)(18),{pullRequestId:u,pullRequestHeadSha:h,focusPrimaryMergeButton:m,sectionStatus:E,shouldRender:_,mergeBoxUserPreferences:g}=e;c[0]!==h?(t={pullRequestHeadSha:h},c[0]=h,c[1]=t):t=c[1];let{data:S}=tT(t),{aliveChannels:f,statusRollup:p,statusChecks:C}=S,R="PASSED"===p.combinedState,[T,v]=(0,eT.Fo)(`${u}:checksExpanded`,!R),{sendAnalyticsEvent:N}=(0,eh.s)(),I=(0,d.useId)();!function(e,t){let r,s,n,a,o=(0,i.c)(10);o[0]!==t?(r={pullRequestHeadSha:t},o[0]=t,o[1]=r):r=o[1];let{refetch:l}=tT(r),c=(0,tE.A)(),u=tf()?2e3:1e4;o[2]!==c||o[3]!==l?(s=()=>{c()&&l()},o[2]=c,o[3]=l,o[4]=s):s=o[4],o[5]!==s||o[6]!==u?(n=(0,th.n)(s,u),o[5]=s,o[6]=u,o[7]=n):n=o[7];let d=n;o[8]!==d?(a=e=>{window.setTimeout(d,e.wait||0)},o[8]=d,o[9]=a):a=o[9];let h=a;(0,tm.x)(e,h)}(f.commitHeadShaChannel,h),(l=(0,i.c)(4))[0]!==p.combinedState||l[1]!==p.summary.length?(a=()=>{if(0===p.summary.length)(0,t$.gd)();else{let e=tK[p.combinedState];(0,t$.iD)(e)}return tW},o=[p.combinedState,p.summary.length],l[0]=p.combinedState,l[1]=p.summary.length,l[2]=a,l[3]=o):(a=l[2],o=l[3]),(0,d.useEffect)(a,o);let O=p.pendingWorkflowApprovalRollup;return _?(c[2]!==I||c[3]!==T||c[4]!==m||c[5]!==g||c[6]!==h||c[7]!==u||c[8]!==E||c[9]!==N||c[10]!==v||c[11]!==C||c[12]!==p||c[13]!==O?(r="PENDING_APPROVAL"===p.combinedState&&O?(0,n.jsx)(rI,{checkSectionAriaId:I,pendingWorkflowApprovalRollup:O,statusRollup:p,statusChecks:C,pullRequestHeadSha:h,pullRequestId:u,focusPrimaryMergeButton:m,mergeBoxUserPreferences:g}):(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(eS,{headerId:I,title:rA[E],subtitle:function(e){if(0===e.length)return"No checks available.";let t=tB(e,rN),r=Object.keys(t).reduce((e,r)=>{let s=t[r];return s?e+s:e},0),s=Object.keys(tk).map(e=>{let r=t[e]??0,s=tk[e];return r>0?`${r} ${s}`:void 0}).filter(Boolean).join(", ");return`${s} ${r>1?"checks":"check"}`}(p.summary),icon:(0,n.jsx)(rv,{statusRollupSummary:p.summary}),expandableProps:{ariaLabel:T?"Collapse checks":"Expand checks",isExpanded:T,onToggle:()=>{N(T?"checks_section.collapse":"checks_section.expand","MERGEBOX_CHECKS_SECTION_TOGGLE_BUTTON",tQ(p.summary)),v(!T)}}}),(0,n.jsx)(ep,{isExpanded:T,children:(0,n.jsx)(r_,{statusChecks:C,statusRollupSummary:p.summary,pullRequestId:u,mergeBoxUserPreferences:g})})]}),c[2]=I,c[3]=T,c[4]=m,c[5]=g,c[6]=h,c[7]=u,c[8]=E,c[9]=N,c[10]=v,c[11]=C,c[12]=p,c[13]=O,c[14]=r):r=c[14],c[15]!==I||c[16]!==r?(s=(0,n.jsx)("section",{"aria-label":"Checks","aria-describedby":I,className:"border-bottom color-border-subtle",children:r}),c[15]=I,c[16]=r,c[17]=s):s=c[17],s):null}try{rI.displayName||(rI.displayName="PendingApprovalChecksSection")}catch{}try{ry.displayName||(ry.displayName="ChecksSection")}catch{}function rx(){let e,t,r,s,a=(0,i.c)(6),{basePageDataUrl:o}=(0,_.Yu)();a[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,n.jsx)(em.A,{href:"https://support.github.com/",inline:!0,children:"contact support"}),a[0]=e):e=a[0];let c=`${o}/checks`;return a[1]!==c?(t=(0,n.jsxs)(n.Fragment,{children:["Try again or if the problem persists"," ",e," ","or"," ",(0,n.jsx)(em.A,{href:c,inline:!0,children:"view the Checks tab."})]}),a[1]=c,a[2]=t):t=a[2],a[3]===Symbol.for("react.memo_cache_sentinel")?(r=(0,n.jsx)(l.AlertIcon,{className:"mx-1",size:24}),a[3]=r):r=a[3],a[4]!==t?(s=(0,n.jsx)("section",{"aria-label":"Checks",className:"border-bottom borderColor-muted",children:(0,n.jsx)(eS,{title:"Checks cannot be loaded right now",subtitle:t,icon:r})}),a[4]=t,a[5]=s):s=a[5],s}try{rx.displayName||(rx.displayName="ChecksSectionFetchFailure")}catch{}var rw=r(11196),rb=r(73077);function rL(e){let t,r,s,a=(0,i.c)(5),{className:o}=e;return a[0]!==o?(t=(0,u.$)("CenteredLoadingSpinner-module__SpinnerContainer--Kwt8t",o),a[0]=o,a[1]=t):t=a[1],a[2]===Symbol.for("react.memo_cache_sentinel")?(r=(0,n.jsx)(c.A,{}),a[2]=r):r=a[2],a[3]!==t?(s=(0,n.jsx)("div",{className:t,children:r}),a[3]=t,a[4]=s):s=a[4],s}try{rL.displayName||(rL.displayName="CenteredLoadingSpinner")}catch{}var rP=r(73189),rM=r(73783);function rD(e){let t,r,s,a,o,c,u=(0,i.c)(29),{className:h,children:m,actionList:E,inactive:_,inactiveTooltipText:g,inactiveTooltipDirection:S,loading:f,loadingAnnouncement:p,secondaryButtonActive:C,secondaryButtonAriaLabel:R,onPrimaryButtonClick:T,shouldFocusPrimaryButton:v,onFocusPrimaryButton:N,isPrimary:I,hideSecondaryButton:O}=e,A=void 0===S?"ne":S,y=void 0!==O&&O,x=(0,d.useRef)(null);u[0]!==N||u[1]!==v?(t=()=>{v&&(x.current?.focus(),N?.())},r=[v,N],u[0]=N,u[1]=v,u[2]=t,u[3]=r):(t=u[2],r=u[3]),(0,d.useEffect)(t,r);let w=void 0!==I&&I?"primary":"default",[b,L]=(0,d.useState)(!1),P=_&&!C;u[4]!==_||u[5]!==f?(s=void 0!==f?{}:{inactive:_,"aria-disabled":_},u[4]=_,u[5]=f,u[6]=s):s=u[6];let M=s,D=_?rP.l:T;u[7]!==w||u[8]!==m||u[9]!==M||u[10]!==f||u[11]!==p||u[12]!==D?(a=(0,n.jsx)(eR.Q,{className:"flex-1",variant:w,ref:x,loading:f,loadingAnnouncement:p,onClick:D,...M,children:m}),u[7]=w,u[8]=m,u[9]=M,u[10]=f,u[11]=p,u[12]=D,u[13]=a):a=u[13],u[14]!==E||u[15]!==w||u[16]!==y||u[17]!==b||u[18]!==R||u[19]!==P?(o=!y&&(0,n.jsxs)(tA.Wy,{open:b,onOpenChange:P?rP.l:e=>L(e),children:[(0,n.jsx)(tA.Wy.Anchor,{children:(0,n.jsx)(tz.K,{className:"flex-0",variant:w,"aria-label":R,"aria-disabled":P,inactive:P,icon:l.TriangleDownIcon})}),(0,n.jsx)(tA.Wy.Overlay,{align:"end",sx:{width:"320px"},children:E})]}),u[14]=E,u[15]=w,u[16]=y,u[17]=b,u[18]=R,u[19]=P,u[20]=o):o=u[20],u[21]!==h||u[22]!==a||u[23]!==o?(c=(0,n.jsxs)(rM.A,{className:h,children:[a,o]}),u[21]=h,u[22]=a,u[23]=o,u[24]=c):c=u[24];let j=c;if(_&&g){let e;return u[25]!==j||u[26]!==A||u[27]!==g?(e=(0,n.jsx)(rw.m,{text:g,direction:A,children:j}),u[25]=j,u[26]=A,u[27]=g,u[28]=e):e=u[28],e}return j}try{rD.displayName||(rD.displayName="ButtonWithDropdown")}catch{}var rj=r(90891);function rU(e){let t,r,s=(0,i.c)(8),{description:a,onSelect:o,selected:l,text:c,inactiveText:u}=e;return s[0]!==a?(t=(0,n.jsx)(eb.l.Description,{variant:"block",children:a}),s[0]=a,s[1]=t):t=s[1],s[2]!==u||s[3]!==o||s[4]!==l||s[5]!==t||s[6]!==c?(r=(0,n.jsxs)(eb.l.Item,{selected:l,onSelect:o,inactiveText:u,children:[c,t]}),s[2]=u,s[3]=o,s[4]=l,s[5]=t,s[6]=c,s[7]=r):r=s[7],r}function rk(e){let t,r=(0,i.c)(5),{conflictsWebEditorPath:s,conflictsState:a,webEditorConflictResolution:o}=e;if("HAS_CONFLICTS"!==a||!o)return null;if(!o.viewerCanResolve){let e,t,s=o.viewerCannotResolve?.message||"";return r[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,n.jsx)(eR.Q,{inactive:!0,children:"Resolve conflicts"}),r[0]=e):e=r[0],r[1]!==s?(t=(0,n.jsx)(rw.m,{direction:"nw",text:s,children:e}),r[1]=s,r[2]=t):t=r[2],t}return r[3]!==s?(t=(0,n.jsx)(rb.z,{href:s,children:"Resolve conflicts"}),r[3]=s,r[4]=t):t=r[4],t}function rG(e){let t=(0,i.c)(3),{conflictsWebEditorPath:r,webEditorConflictResolution:s}=e;switch(s?.viewerCannotResolve?.reason){case"INSUFFICIENT_ACCESS":return null;case"TOO_COMPLEX":case"HEAD_BRANCH_PROTECTED":case"ADMIN_DISABLED":{let e;return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,n.jsx)("span",{children:"Use the command line to resolve conflicts before continuing."}),t[0]=e):e=t[0],e}default:{let e;return t[1]!==r?(e=(0,n.jsxs)("span",{children:["Use the"," ",(0,n.jsx)(em.A,{inline:!0,href:r,children:"web editor"})," ","or the command line to resolve conflicts before continuing."]}),t[1]=r,t[2]=e):e=t[2],e}}}function rq(e){let t,r=(0,i.c)(3),{advisoryWorkspacePath:s,advisoryWorkspaceId:a}=e,o=s||"";return r[0]!==a||r[1]!==o?(t=(0,n.jsxs)("span",{children:["Merging must be performed from the"," ",(0,n.jsx)(em.A,{inline:!0,href:o,children:a})," ","advisory."]}),r[0]=a,r[1]=o,r[2]=t):t=r[2],t}let rF={NO_CONFLICTS:{heading:"No conflicts with base branch",subtitle:()=>"Merging can be performed automatically.",icon:(0,n.jsx)(eE.A,{icon:()=>(0,n.jsx)(l.CheckIcon,{size:16}),className:"bgColor-success-emphasis fgColor-onEmphasis",size:32})},PENDING:{heading:"Checking for the ability to merge automatically...",subtitle:()=>"Hang in there while we check the branch's status.",icon:(0,n.jsx)(rL,{className:"ConflictsSection-module__ConflictsSectionLoadingSpinner--tkJ8X"})},OUT_OF_DATE:{heading:"This branch is out-of-date with the base branch",subtitle:({baseRefName:e,viewerLogin:t})=>`Merge the latest changes from ${e} into this branch. This merge commit will be associated with ${t}.`,icon:(0,n.jsx)(tb,{})},HAS_CONFLICTS:{heading:"This branch has conflicts that must be resolved",subtitle:({conflictsWebEditorPath:e,conflictsCondition:t})=>(0,n.jsx)(rG,{conflictsWebEditorPath:e,webEditorConflictResolution:t?.webEditorConflictResolution}),icon:(0,n.jsx)(tb,{})},HAS_REBASE_CONFLICTS:{heading:"This branch cannot be rebased due to conflicts",subtitle:()=>"",icon:(0,n.jsx)(tb,{})},HAS_ADVISORY_WORKSPACE:{heading:"No conflicts with base branch",subtitle:({advisoryWorkspaceId:e,advisoryWorkspacePath:t})=>(0,n.jsx)(rq,{advisoryWorkspaceId:e,advisoryWorkspacePath:t}),icon:(0,n.jsx)(eE.A,{icon:()=>(0,n.jsx)(l.CheckIcon,{size:16}),className:"bgColor-success-emphasis fgColor-onEmphasis",size:32})}};function rB(e){let t,r,s,a,o,c,u,h,_,g,f,C,R,T,v,N,I,O,A,y,x,w,b,L,P=(0,i.c)(83),{baseRefName:M,headRefOid:D,resourcePath:j,viewerCanUpdateBranch:U,viewerUpdateMethods:k,viewerLogin:G,conflictsCondition:q,conflictsState:F,canUserPushToBase:B,advisoryWorkspace:Q}=e;P[0]!==k?(t=k?.find(rY)?.name||"MERGE",P[0]=k,P[1]=t):t=P[1];let $=t,[K,W]=(0,d.useState)($),[H,V]=(0,d.useState)(!1),[Y,z]=(0,d.useState)(null),{sendAnalyticsEvent:X}=(0,eh.s)(),J=(0,d.useId)(),Z=p(),ee=(0,S.jE)();P[2]!==Z||P[3]!==ee?(r=async()=>{await ee.refetchQueries({queryKey:Z},{cancelRefetch:!1}),V(!1)},P[2]=Z,P[3]=ee,P[4]=r):r=P[4];let et=r;P[5]===Symbol.for("react.memo_cache_sentinel")?(s=e=>{V(!1),z(e.message)},P[5]=s):s=P[5];let er=s;P[6]!==et?(a={onSuccess:et,onError:er},P[6]=et,P[7]=a):a=P[7];let{mutate:es}=function(e){let t,r,s,n,a=(0,i.c)(10),{onSuccess:o,onError:l}=e,c=(0,E.e)(m.uT.updatePullRequestBranch);return a[0]!==c?(t=async e=>{let{updateMethod:t,expectedHeadOid:r}=e;return(0,eU.q$)(c,{method:"POST",headers:{Accept:"application/json"},body:{updateMethod:t,expectedHeadOid:r}})},a[0]=c,a[1]=t):t=a[1],a[2]!==o?(r=async e=>{let t=await (0,eU.hp)(e);e.ok||(0,eU.R)(e,t);let r=await (await (0,rj.Ee)(t.orchestration.url,{headers:{accept:"application/json"}})).json();if(r.orchestration.error_message)throw Error(r.orchestration.error_message);o()},a[2]=o,a[3]=r):r=a[3],a[4]!==l?(s=e=>{l(e)},a[4]=l,a[5]=s):s=a[5],a[6]!==t||a[7]!==r||a[8]!==s?(n={mutationFn:t,onSuccess:r,onError:s},a[6]=t,a[7]=r,a[8]=s,a[9]=n):n=a[9],(0,ej.n)(n)}(a);P[8]!==D||P[9]!==H||P[10]!==K||P[11]!==X||P[12]!==es?(o=()=>{H||(V(!0),z(null),es({updateMethod:K,expectedHeadOid:D}),X("conflicts_section.update_branch","MERGEBOX_CONFLICTS_SECTION_UPDATE_BRANCH_BUTTON"))},P[8]=D,P[9]=H,P[10]=K,P[11]=X,P[12]=es,P[13]=o):o=P[13];let en=o,ei=`${j}/conflicts`;P[14]!==q.conflicts?(c=q.conflicts??[],P[14]=q.conflicts,P[15]=c):c=P[15];let ea=c;P[16]!==K?(u=function(){return"MERGE"===K?"Update branch":"Rebase branch"},P[16]=K,P[17]=u):u=P[17];let eo=u;P[18]!==K?(h=function(){return"MERGE"===K?"Updating branch":"Rebasing branch"},P[18]=K,P[19]=h):h=P[19];let el=h,ec=("OUT_OF_DATE"===F||"NO_CONFLICTS"===F||"PENDING"===F)&&U,eu="HAS_CONFLICTS"===F&&(q.webEditorConflictResolution?.viewerCanResolve||q.webEditorConflictResolution?.viewerCannotResolve?.reason!=="INSUFFICIENT_ACCESS"),ed=Q?.advisoryWorkspaceId,em=Q?.advisoryWorkspacePath;P[20]!==k?(_=k?.filter(rV),P[20]=k,P[21]=_):_=P[21];let eE=_;P[22]!==k?(g=k?.find(rH),P[22]=k,P[23]=g):g=P[23];let e_=g;P[24]!==k?(f=k?.find(rW),P[24]=k,P[25]=f):f=P[25];let eg=f;P[26]!==k?(C=k?.find(rK),P[26]=k,P[27]=C):C=P[27];let ef=C;P[28]!==k?(R=k?.find(r$)?.failureReason,P[28]=k,P[29]=R):R=P[29];let ep=R;P[30]!==$||P[31]!==ep||P[32]!==ef||P[33]!==K||P[34]!==X||P[35]!==e_||P[36]!==eg||P[37]!==k?(T=function(){return k?(0,n.jsxs)(eb.l,{selectionVariant:"single",showDividers:!0,children:[e_&&(0,n.jsx)(rU,{description:"The merge commit will be associated with your account.",selected:"MERGE"===$,text:"Update with merge commit",onSelect:()=>{X("conflicts_section.select_merge_commit_method","MERGEBOX_CONFLICTS_SECTION_MERGE_METHOD_MENU_ITEM"),W("MERGE")}}),eg&&(0,n.jsx)(rU,{description:"This pull request will be rebased on top of the latest changes and then force pushed.",selected:"REBASE"===$,text:"Update with rebase",onSelect:()=>{X("conflicts_section.select_rebase_method","MERGEBOX_CONFLICTS_SECTION_MERGE_METHOD_MENU_ITEM"),W("REBASE")}}),ef&&(0,n.jsx)(rU,{inactiveText:ep||"This branch cannot be rebased at this time.",selected:"REBASE"===$,text:"Update with rebase",onSelect:()=>{X("conflicts_section.select_rebase_method","MERGEBOX_CONFLICTS_SECTION_MERGE_METHOD_MENU_ITEM"),W("REBASE")}})]}):(0,n.jsxs)(eb.l,{selectionVariant:"single",showDividers:!0,children:[(0,n.jsx)(rU,{description:"The merge commit will be associated with your account.",selected:"MERGE"===K,text:"Update with merge commit",onSelect:()=>{X("conflicts_section.select_merge_commit_method","MERGEBOX_CONFLICTS_SECTION_MERGE_METHOD_MENU_ITEM"),W("MERGE")}}),(0,n.jsx)(rU,{description:"This pull request will be rebased on top of the latest changes and then force pushed.",selected:"REBASE"===K,text:"Update with rebase",onSelect:()=>{X("conflicts_section.select_rebase_method","MERGEBOX_CONFLICTS_SECTION_MERGE_METHOD_MENU_ITEM"),W("REBASE")}})]})},P[30]=$,P[31]=ep,P[32]=ef,P[33]=K,P[34]=X,P[35]=e_,P[36]=eg,P[37]=k,P[38]=T):T=P[38];let eC=T,eR=rF[F],eT=rF[F];return P[39]!==eT.heading?(v=(0,n.jsx)(n.Fragment,{children:eT.heading}),P[39]=eT.heading,P[40]=v):v=P[40],P[41]!==ed||P[42]!==em||P[43]!==M||P[44]!==B||P[45]!==q||P[46]!==F||P[47]!==ei||P[48]!==G?(N=B?rF[F].subtitle({baseRefName:M,viewerLogin:G,conflictsWebEditorPath:ei,conflictsCondition:q,advisoryWorkspaceId:ed,advisoryWorkspacePath:em}):"Changes can be cleanly merged.",P[41]=ed,P[42]=em,P[43]=M,P[44]=B,P[45]=q,P[46]=F,P[47]=ei,P[48]=G,P[49]=N):N=P[49],P[50]!==en||P[51]!==H||P[52]!==ec||P[53]!==eE?.length||P[54]!==el||P[55]!==eo||P[56]!==eC?(I=ec&&(0,n.jsx)(rD,{hideSecondaryButton:eE?.length===1,loading:H,loadingAnnouncement:el(),secondaryButtonAriaLabel:"Update branch options",actionList:eC(),onPrimaryButtonClick:en,children:eo()}),P[50]=en,P[51]=H,P[52]=ec,P[53]=eE?.length,P[54]=el,P[55]=eo,P[56]=eC,P[57]=I):I=P[57],P[58]!==q.webEditorConflictResolution||P[59]!==F||P[60]!==ei?(O=(0,n.jsx)(rk,{conflictsWebEditorPath:ei,conflictsState:F,webEditorConflictResolution:q.webEditorConflictResolution}),P[58]=q.webEditorConflictResolution,P[59]=F,P[60]=ei,P[61]=O):O=P[61],P[62]!==I||P[63]!==O?(A=(0,n.jsxs)(n.Fragment,{children:[I,O]}),P[62]=I,P[63]=O,P[64]=A):A=P[64],P[65]!==ea||P[66]!==eu?(y=eu&&(0,n.jsx)("div",{className:"ml-n3",children:(0,n.jsx)(eb.l,{className:"py-0 overflow-hidden",children:ea.map(rQ)})}),P[65]=ea,P[66]=eu,P[67]=y):y=P[67],P[68]!==J||P[69]!==eR.icon||P[70]!==v||P[71]!==N||P[72]!==A||P[73]!==y?(x=(0,n.jsx)(eS,{headerId:J,icon:eR.icon,title:v,subtitle:N,rightSideContent:A,children:y}),P[68]=J,P[69]=eR.icon,P[70]=v,P[71]=N,P[72]=A,P[73]=y,P[74]=x):x=P[74],P[75]!==Y?(w=Y&&(0,n.jsxs)(eL.A,{className:"m-3",variant:"danger",children:[(0,n.jsx)(eG.A,{className:"mr-2",icon:l.StopIcon}),Y]}),P[75]=Y,P[76]=w):w=P[76],P[77]!==x||P[78]!==w?(b=(0,n.jsxs)("div",{className:"d-flex flex-column width-full overflow-hidden",children:[x,w]}),P[77]=x,P[78]=w,P[79]=b):b=P[79],P[80]!==J||P[81]!==b?(L=(0,n.jsx)("section",{"aria-label":"Conflicts",className:"border-bottom borderColor-muted","aria-describedby":J,children:b}),P[80]=J,P[81]=b,P[82]=L):L=P[82],L}function rQ(e){return(0,n.jsxs)(eb.l.Item,{children:[(0,n.jsx)(eb.l.LeadingVisual,{className:"fgColor-muted",children:(0,n.jsx)(l.FileIcon,{})}),(0,n.jsx)("span",{className:"input-monospace f6 ConflictsSection-module__selectable--BT2Oj",children:e})]},e)}function r$(e){return"REBASE"===e.name}function rK(e){return"REBASE"===e.name&&"UNAVAILABLE"===e.allowableStatus}function rW(e){return"REBASE"===e.name&&"ALLOWED"===e.allowableStatus}function rH(e){return"MERGE"===e.name&&"ALLOWED"===e.allowableStatus}function rV(e){return"ALLOWED"===e.allowableStatus||"UNAVAILABLE"===e.allowableStatus}function rY(e){return!0===e.isDefault}try{rU.displayName||(rU.displayName="UpdateBranchOption")}catch{}try{rk.displayName||(rk.displayName="ResolveConflictsButton")}catch{}try{rG.displayName||(rG.displayName="ConflictResolutionSubtitle")}catch{}try{rq.displayName||(rq.displayName="AdvisoryWorkspaceSubtitle")}catch{}try{rB.displayName||(rB.displayName="ConflictsSection")}catch{}function rz(e){let t,r,s,a,o,c,u,h,_=(0,i.c)(23),{viewerCanUpdate:g,helpUrl:f}=e,[C,R]=(0,d.useState)(null);_[0]===Symbol.for("react.memo_cache_sentinel")?(t={onError:e=>{R(e.message)}},_[0]=t):t=_[0];let{mutate:T,isPending:v}=function(e){let t,r,s,n,a=(0,i.c)(11),{onError:o}=e,l=(0,E.e)(m.uT.markReadyForReview),c=p(),u=(0,S.jE)();return a[0]!==l?(t=async()=>{let e=await (0,eU.q$)(l,{method:"POST",headers:{Accept:"application/json"}}),t=await (0,eU.hp)(e);return(0,eU.R)(e,t),t},a[0]=l,a[1]=t):t=a[1],a[2]!==c||a[3]!==u?(r=()=>u.invalidateQueries({queryKey:c},{cancelRefetch:!1}),a[2]=c,a[3]=u,a[4]=r):r=a[4],a[5]!==o?(s=e=>o(e),a[5]=o,a[6]=s):s=a[6],a[7]!==t||a[8]!==r||a[9]!==s?(n={mutationFn:t,onSuccess:r,onError:s},a[7]=t,a[8]=r,a[9]=s,a[10]=n):n=a[10],(0,ej.n)(n)}(t),{sendAnalyticsEvent:N}=(0,eh.s)(),I=(0,d.useId)();_[1]!==v||_[2]!==T||_[3]!==N?(r=function(){v||(T(),N("draft_state_section.mark_ready_for_review","MERGEBOX_DRAFT_STATE_SECTION_MARK_READY_FOR_REVIEW_BUTTON"))},_[1]=v,_[2]=T,_[3]=N,_[4]=r):r=_[4];let O=r,A=`${f}/get-started/learning-about-github/access-permissions-on-github`;return _[5]!==A||_[6]!==g?(s=g?"Draft pull requests cannot be merged.":(0,n.jsxs)("span",{children:["Only those with ",(0,n.jsx)("a",{href:A,children:"write access"})," to this repository can mark a draft pull request as ready for review."]}),_[5]=A,_[6]=g,_[7]=s):s=_[7],_[8]===Symbol.for("react.memo_cache_sentinel")?(a=(0,n.jsx)(eE.A,{size:32,icon:rX,className:"DraftStateSection-module__DraftStateCircleIcon--APxWt"}),_[8]=a):a=_[8],_[9]!==O||_[10]!==v||_[11]!==g?(o=g?(0,n.jsx)(eR.Q,{onClick:O,loading:v,loadingAnnouncement:"Marking ready for review",children:"Ready for review"}):void 0,_[9]=O,_[10]=v,_[11]=g,_[12]=o):o=_[12],_[13]!==C?(c=C&&(0,n.jsxs)(eL.A,{variant:"danger",className:"DraftStateSection-module__DraftStateFlashMessage--XlMkr",children:[(0,n.jsx)(eG.A,{icon:l.StopIcon,className:"DraftStateSection-module__DraftStateIcon--_Co24"}),C]}),_[13]=C,_[14]=c):c=_[14],_[15]!==I||_[16]!==s||_[17]!==o||_[18]!==c?(u=(0,n.jsx)(eS,{headerId:I,title:"This pull request is still a work in progress",subtitle:s,icon:a,rightSideContent:o,children:c}),_[15]=I,_[16]=s,_[17]=o,_[18]=c,_[19]=u):u=_[19],_[20]!==I||_[21]!==u?(h=(0,n.jsx)("section",{"aria-label":"Draft state","aria-describedby":I,className:"border-bottom color-border-subtle",children:u}),_[20]=I,_[21]=u,_[22]=h):h=_[22],h}function rX(){return(0,n.jsx)(l.GitPullRequestDraftIcon,{size:16})}try{rz.displayName||(rz.displayName="DraftStateSection")}catch{}function rJ(e){let t,r,s,a,o,c,u,h,_,g,f,C,R,T,v,N,I,O,A,y=(0,i.c)(42),{mergeQueue:x,mergeQueueEntry:w,viewerCanAddAndRemoveFromMergeQueue:b,focusPrimaryMergeButton:L}=e,P=w?.position,M=x?.url,D=(0,d.useRef)(null),[j,U]=(0,d.useState)(!1),[k,G]=(0,d.useState)(null);(A=(0,i.c)(1))[0]===Symbol.for("react.memo_cache_sentinel")?(O=[],A[0]=O):O=A[0],(0,d.useEffect)(tH,O);let{sendAnalyticsEvent:q}=(0,eh.s)();y[0]===Symbol.for("react.memo_cache_sentinel")?(t={onError:e=>{U(!1),G(e.message),D.current?.focus(),setTimeout(r0,1e3)}},y[0]=t):t=y[0];let{mutate:F,isPending:B}=function(e){let t,r,s,n,a=(0,i.c)(11),{onError:o}=e,l=(0,E.e)(m.uT.dequeuePullRequest),c=p(),u=(0,S.jE)();return a[0]!==l?(t=async()=>{let e=await (0,eU.q$)(l,{method:"POST",headers:{Accept:"application/json"}}),t=await (0,eU.hp)(e);return(0,eU.R)(e,t),t},a[0]=l,a[1]=t):t=a[1],a[2]!==c||a[3]!==u?(r=()=>u.invalidateQueries({queryKey:c},{cancelRefetch:!1}),a[2]=c,a[3]=u,a[4]=r):r=a[4],a[5]!==o?(s=e=>{o(e)},a[5]=o,a[6]=s):s=a[6],a[7]!==t||a[8]!==r||a[9]!==s?(n={mutationFn:t,onSuccess:r,onError:s},a[7]=t,a[8]=r,a[9]=s,a[10]=n):n=a[10],(0,ej.n)(n)}(t);y[1]!==L||y[2]!==B||y[3]!==F||y[4]!==q?(r=()=>{B||(G(null),q("merge_queue_section.dequeue_pull_request","MERGEBOX_MERGE_QUEUE_SECTION_REMOVE_FROM_QUEUE_BUTTON"),F(void 0,{onSuccess:()=>{U(!1),setTimeout(rZ,1e3),L()}}))},y[1]=L,y[2]=B,y[3]=F,y[4]=q,y[5]=r):r=y[5];let Q=r;y[6]===Symbol.for("react.memo_cache_sentinel")?(s=()=>{G(null),U(!0)},y[6]=s):s=y[6];let $=s;y[7]===Symbol.for("react.memo_cache_sentinel")?(a=()=>U(!1),o=(0,n.jsx)(tN.A.Header,{id:"remove-from-queue-dialog-title",children:"Remove from the queue?"}),y[7]=a,y[8]=o):(a=y[7],o=y[8]),y[9]===Symbol.for("react.memo_cache_sentinel")?(c=(0,n.jsx)("span",{children:"Removing this pull request from the queue could impact other pull requests in the queue. Are you sure?"}),y[9]=c):c=y[9],y[10]!==B?(u=()=>{B||(U(!1),D.current?.focus())},y[10]=B,y[11]=u):u=y[11],y[12]!==B||y[13]!==u?(h=(0,n.jsx)(eR.Q,{className:"mr-1",inactive:B,onClick:u,children:"Cancel"}),y[12]=B,y[13]=u,y[14]=h):h=y[14],y[15]!==Q||y[16]!==B?(_=(0,n.jsx)(eR.Q,{variant:"danger",loading:B,loadingAnnouncement:"Removing from the queue",onClick:Q,children:"Remove from the queue"}),y[15]=Q,y[16]=B,y[17]=_):_=y[17],y[18]!==h||y[19]!==_?(g=(0,n.jsxs)("div",{className:"p-3",children:[c,(0,n.jsxs)("div",{className:"d-flex flex-justify-end mt-3",children:[h,_]})]}),y[18]=h,y[19]=_,y[20]=g):g=y[20],y[21]!==j||y[22]!==g?(f=(0,n.jsxs)(tN.A,{"aria-labelledby":"remove-from-queue-dialog-title",isOpen:j,returnFocusRef:D,onDismiss:a,children:[o,g]}),y[21]=j,y[22]=g,y[23]=f):f=y[23],y[24]!==k?(C=k&&(0,n.jsxs)(eL.A,{className:"mx-3 my-2",variant:"danger",children:[(0,n.jsx)(eG.A,{className:"mr-2",icon:l.StopIcon}),k]}),y[24]=k,y[25]=C):C=y[25],y[26]!==w?.isLocked||y[27]!==b?(R=b&&!w?.isLocked&&(0,n.jsx)(eR.Q,{ref:D,onClick:$,children:"Remove from queue"}),y[26]=w?.isLocked,y[27]=b,y[28]=R):R=y[28],y[29]!==R?(T=(0,n.jsx)(n.Fragment,{children:R}),y[29]=R,y[30]=T):T=y[30];let K=w?.isLocked;return y[31]!==P||y[32]!==M||y[33]!==K?(v=(0,n.jsx)(r1,{position:P,resourcePath:M,entryIsLocked:K}),y[31]=P,y[32]=M,y[33]=K,y[34]=v):v=y[34],y[35]!==T||y[36]!==v?(N=(0,n.jsx)(eS,{title:"Queued to merge...",rightSideContent:T,children:v}),y[35]=T,y[36]=v,y[37]=N):N=y[37],y[38]!==f||y[39]!==C||y[40]!==N?(I=(0,n.jsxs)(n.Fragment,{children:[f,C,N]}),y[38]=f,y[39]=C,y[40]=N,y[41]=I):I=y[41],I}function rZ(){return(0,tI.i)("The pull request was successfully removed from the queue.")}function r0(){return(0,tI.i)("Failed to remove pull request from the merge queue")}function r1(e){let t,r,s,a,o=(0,i.c)(8),{position:l,resourcePath:c,entryIsLocked:u}=e;if(!l||!c){let e;return o[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,n.jsx)(n.Fragment,{}),o[0]=e):e=o[0],e}let d=l-1;return t=u?"This pull request is locked for deployment by the":0===d?"This pull request is next up in the":1===d?`There is ${d} pull request ahead of this one in the`:`There are ${d} pull requests ahead of this one in the`,o[1]!==t?(r=(0,n.jsx)("span",{className:"MergeQueueSection-module__MergeQueueSectionText--rEy7Y",children:t}),o[1]=t,o[2]=r):r=o[2],o[3]!==c?(s=(0,n.jsx)(em.A,{inline:!0,href:c,children:"merge queue"}),o[3]=c,o[4]=s):s=o[4],o[5]!==r||o[6]!==s?(a=(0,n.jsxs)(n.Fragment,{children:[r," ",s,"."]}),o[5]=r,o[6]=s,o[7]=a):a=o[7],a}try{rJ.displayName||(rJ.displayName="MergeQueueSection")}catch{}try{r1.displayName||(r1.displayName="MergeQueuePositionText")}catch{}function r2({mergeMethod:e,confirming:t,isBypassMerge:r=!1,inProgress:s=!1,isAutoMergeAllowed:n=!1}){if(s)return n?"Confirming...":"Merging...";let i=t?"Confirm auto-merge":"Enable auto-merge",a=t?"Confirm bypass rules and merge":"Bypass rules and merge";switch(e){case h.q$.MERGE:if(n)return i;if(r)return a;if(t)return"Confirm merge";else return"Merge pull request";case h.q$.SQUASH:if(n)return`${i} (squash)`;if(r)return`${a} (squash)`;if(t)return"Confirm squash and merge";else return"Squash and merge";case h.q$.REBASE:if(n)return`${i} (rebase)`;if(r)return`${a} (rebase)`;if(t)return"Confirm rebase and merge";else return"Rebase and merge"}}function r3({mergeMethod:e,confirming:t,inProgress:r}){if(r)return"Adding to merge queue...";switch(e){case h.lD.GROUP:return t?"Confirm merge when ready":"Merge when ready";case h.lD.SOLO:return t?"Confirm queue and force solo merge":"Queue and force solo merge"}}var r4=r(11680),r5=r(30093),r6=r(96296);let MergeError=class MergeError extends Error{constructor(e,t=[],r){super(e),(0,w._)(this,"ruleErrors",void 0),this.name="MergeError",this.ruleErrors=t,this.cause=r}};function r7(e){let t,r,s,n,a,o=(0,i.c)(14);o[0]!==e?(t=void 0===e?{}:e,o[0]=e,o[1]=t):t=o[1];let{onError:l,onSuccess:c}=t,u=(0,E.e)(m.uT.enableAutoMerge),d=p(),h=(0,S.jE)();return o[2]!==u?(r=async e=>{let t=await (0,eU.q$)(u,{method:"POST",headers:{Accept:"application/json"},body:e}),r=await (0,eU.hp)(t),s=new MergeError(r?.error||"Unknown error occurred",r?.metadata?.ruleErrors||[],t.status);return(0,eU.R)(t,r,s),r},o[2]=u,o[3]=r):r=o[3],o[4]!==d||o[5]!==c||o[6]!==h?(s=()=>(c?.(),h.refetchQueries({queryKey:d},{cancelRefetch:!1})),o[4]=d,o[5]=c,o[6]=h,o[7]=s):s=o[7],o[8]!==l?(n=e=>{l?.(e)},o[8]=l,o[9]=n):n=o[9],o[10]!==r||o[11]!==s||o[12]!==n?(a={mutationFn:r,onSuccess:s,onError:n},o[10]=r,o[11]=s,o[12]=n,o[13]=a):a=o[13],(0,ej.n)(a)}var r8=r(65025);function r9(e){let t,r=(0,i.c)(3),{children:s,className:a}=e,o=`d-flex flex-sm-items-center flex-column flex-sm-row gap-2 ${a}`;return r[0]!==s||r[1]!==o?(t=(0,n.jsx)("div",{className:o,children:s}),r[0]=s,r[1]=o,r[2]=t):t=r[2],t}r9.Slot=function({children:e}){var t;let r=d.Children.only(e);return d.isValidElement(r)&&(r=(t=r).type===rD||t.type===eR.Q?(0,d.cloneElement)(t,{className:`flex-self-stretch flex-shrink-0 ${t.props.className}`}):t),r};try{r9.displayName||(r9.displayName="MergeSectionActions")}catch{}try{(s=MergeSectionsActionsSlot).displayName||(s.displayName="MergeSectionsActionsSlot")}catch{}let se="ConfirmMerge-module__ConfirmMergeContainer--svghz",st="ConfirmMerge-module__ConfirmMergeText--Lq1XQ";function sr(e){let t,r,s,a=(0,i.c)(5),{errorMessage:o}=e;return(a[0]!==o?(t=()=>{o&&o.length>0&&(0,tI.i)(o)},r=[o],a[0]=o,a[1]=t,a[2]=r):(t=a[1],r=a[2]),(0,d.useEffect)(t,r),o)?(a[3]!==o?(s=(0,n.jsx)(r4.l,{className:"mt-3","aria-label":"Merge error warning banner",variant:"warning",title:"Merge error",hideTitle:!0,description:o}),a[3]=o,a[4]=s):s=a[4],s):null}function ss(e){let t,r,s,a,o,l,c,u,_,g,f,C,R,T,v,N,I,O=(0,i.c)(59),{defaultCommitAuthorEmail:A,commitMessageBody:y,commitMessageHeadline:x,defaultBranchName:w,handleConfirmingMergeInfo:b,isBypassMerge:L,onCancel:P,selectedMergeMethod:M,isAutoMergeAllowed:D,possibleCommitAuthorEmails:j}=e,U=void 0!==D&&D,k=(0,d.useRef)(null),G=(0,d.useRef)(null);O[0]===Symbol.for("react.memo_cache_sentinel")?(t=()=>{k.current?.focus(),G.current?.scrollIntoView({behavior:"smooth",block:"nearest"})},r=[],O[0]=t,O[1]=r):(t=O[0],r=O[1]),(0,d.useEffect)(t,r);let[q,F]=(0,d.useState)(x||""),[B,Q]=(0,d.useState)(y||""),{sendAnalyticsEvent:$}=(0,eh.s)(),[K,W]=(0,d.useState)("");O[2]===Symbol.for("react.memo_cache_sentinel")?(s=[],O[2]=s):s=O[2];let[H,V]=(0,d.useState)(s),Y=j.length>0,z=M===h.q$.REBASE?"":A||"",[X,J]=(0,d.useState)(z);O[3]===Symbol.for("react.memo_cache_sentinel")?(a={onError:e=>{e instanceof MergeError&&e.ruleErrors.length>0?V(e.ruleErrors):(V([]),W(e.message))}},O[3]=a):a=O[3];let{mutate:Z,isPending:ee}=function(e){let t,r,s,n,a=(0,i.c)(11),{onError:o}=e,l=(0,E.e)(m.uT.merge),c=p(),u=(0,S.jE)();return a[0]!==l?(t=async e=>{let t=await (0,eU.q$)(l,{method:"POST",headers:{Accept:"application/json"},body:e}),r=await (0,eU.hp)(t),s=new MergeError(r?.error||"Unknown error occurred",r?.metadata?.ruleErrors||[],t.status);return(0,eU.R)(t,r,s),r},a[0]=l,a[1]=t):t=a[1],a[2]!==c||a[3]!==u?(r=()=>u.invalidateQueries({queryKey:c},{cancelRefetch:!1}),a[2]=c,a[3]=u,a[4]=r):r=a[4],a[5]!==o?(s=e=>o(e),a[5]=o,a[6]=s):s=a[6],a[7]!==t||a[8]!==r||a[9]!==s?(n={mutationFn:t,onSuccess:r,onError:s},a[7]=t,a[8]=r,a[9]=s,a[10]=n):n=a[10],(0,ej.n)(n)}(a);O[4]===Symbol.for("react.memo_cache_sentinel")?(o=e=>{e instanceof MergeError&&e.ruleErrors.length>0?V(e.ruleErrors):(V([]),W(e.message))},O[4]=o):o=O[4],O[5]!==b?(l={onError:o,onSuccess:()=>{b(!1)}},O[5]=b,O[6]=l):l=O[6];let{mutate:et,isPending:er}=r7(l),es=ee||er;O[7]!==X||O[8]!==B||O[9]!==q||O[10]!==et||O[11]!==U||O[12]!==L||O[13]!==es||O[14]!==Z||O[15]!==M||O[16]!==$||O[17]!==Y?(c=()=>{es||(W(""),U?(et({...Y?{authorEmail:X}:{},commitMessage:B,commitTitle:q,mergeMethod:M}),$("direct_merge_section.confirm_auto_merge","MERGEBOX_AUTO_MERGE_CONFIRMATION_BUTTON")):(Z({...Y?{authorEmail:X}:{},bypassBranchProtections:L,commitMessage:B,commitTitle:q,mergeMethod:M}),$("direct_merge_section.confirm_direct_merge","MERGEBOX_DIRECT_MERGE_CONFIRMATION_BUTTON")))},O[7]=X,O[8]=B,O[9]=q,O[10]=et,O[11]=U,O[12]=L,O[13]=es,O[14]=Z,O[15]=M,O[16]=$,O[17]=Y,O[18]=c):c=O[18];let en=c;O[19]!==H?(u=H.length>0&&(0,n.jsx)(r8.r,{prefix:"",helpUrl:"",errorMessageNotUsingPrefix:"Repository rule violations found",hideRuleErrorsTitle:!0,ruleErrors:H}),O[19]=H,O[20]=u):u=O[20],O[21]!==Y||O[22]!==B||O[23]!==q||O[24]!==z||O[25]!==en||O[26]!==j||O[27]!==M?(_=M!==h.q$.REBASE&&(0,n.jsxs)(n.Fragment,{children:[(0,n.jsxs)(eP.A,{children:[(0,n.jsx)(eP.A.Label,{children:"Commit message"}),(0,n.jsx)(r5.A,{ref:k,block:!0,defaultValue:q,onChange:e=>F(e.currentTarget.value)})]}),(0,n.jsxs)(eP.A,{className:"mt-3 width-full",children:[(0,n.jsx)(eP.A.Label,{children:"Extended description"}),(0,n.jsx)(eM.Ay,{block:!0,placeholder:"Add an optional extended description\u2026",defaultValue:B,onChange:e=>Q(e.currentTarget.value),onKeyDown:e=>{"Enter"===e.key&&(e.metaKey||e.ctrlKey)&&(e.preventDefault(),en())}})]}),Y?(0,n.jsx)("div",{className:se,children:(0,n.jsxs)(eP.A,{children:[(0,n.jsx)(eP.A.Label,{children:"Commit email"}),(0,n.jsx)(r6.A,{defaultValue:z,onChange:e=>J(e.target.value),"aria-label":"Select commit author email",children:j.map(sn)})]})}):(0,n.jsx)("div",{className:se,children:(0,n.jsxs)("span",{className:st,children:["This commit will be authored by ",z,"."]})})]}),O[21]=Y,O[22]=B,O[23]=q,O[24]=z,O[25]=en,O[26]=j,O[27]=M,O[28]=_):_=O[28],O[29]!==w||O[30]!==M?(g=M===h.q$.REBASE&&(0,n.jsxs)("span",{className:st,children:["This will rebase your changes and merge them into ",w,"."]}),O[29]=w,O[30]=M,O[31]=g):g=O[31],O[32]!==U||O[33]!==L||O[34]!==M?(f=r2({mergeMethod:M,confirming:!0,isBypassMerge:L,inProgress:!0,isAutoMergeAllowed:U}),O[32]=U,O[33]=L,O[34]=M,O[35]=f):f=O[35];let ei=L?"danger":U?"default":"primary";return O[36]!==U||O[37]!==L||O[38]!==M?(C=r2({mergeMethod:M,confirming:!0,isBypassMerge:L,inProgress:!1,isAutoMergeAllowed:U}),O[36]=U,O[37]=L,O[38]=M,O[39]=C):C=O[39],O[40]!==en||O[41]!==es||O[42]!==f||O[43]!==ei||O[44]!==C?(R=(0,n.jsx)(r9.Slot,{children:(0,n.jsx)(eR.Q,{ref:G,className:"width-full",loading:es,loadingAnnouncement:f,variant:ei,onClick:en,children:C})}),O[40]=en,O[41]=es,O[42]=f,O[43]=ei,O[44]=C,O[45]=R):R=O[45],O[46]!==P?(T=(0,n.jsx)(r9.Slot,{children:(0,n.jsx)(eR.Q,{onClick:P,children:"Cancel"})}),O[46]=P,O[47]=T):T=O[47],O[48]!==R||O[49]!==T?(v=(0,n.jsxs)(r9,{className:"mt-3",children:[R,T]}),O[48]=R,O[49]=T,O[50]=v):v=O[50],O[51]!==K?(N=(0,n.jsx)(sr,{errorMessage:K}),O[51]=K,O[52]=N):N=O[52],O[53]!==_||O[54]!==g||O[55]!==v||O[56]!==N||O[57]!==u?(I=(0,n.jsxs)("div",{children:[u,_,g,v,N]}),O[53]=_,O[54]=g,O[55]=v,O[56]=N,O[57]=u,O[58]=I):I=O[58],I}function sn(e){return(0,n.jsx)(r6.A.Option,{value:e,children:e},e)}try{sr.displayName||(sr.displayName="MergeErrorMessage")}catch{}try{ss.displayName||(ss.displayName="ConfirmMerge")}catch{}function si(e){let t,r,s=(0,i.c)(7),{onSelect:a,primaryText:o,secondaryText:l,selected:c}=e;return s[0]!==l?(t=(0,n.jsx)(eb.l.Description,{variant:"block",children:l}),s[0]=l,s[1]=t):t=s[1],s[2]!==a||s[3]!==o||s[4]!==c||s[5]!==t?(r=(0,n.jsxs)(eb.l.Item,{selected:c,onSelect:a,children:[o,t]}),s[2]=a,s[3]=o,s[4]=c,s[5]=t,s[6]=r):r=s[6],r}try{si.displayName||(si.displayName="MergeDropdownOption")}catch{}let sa=(0,d.lazy)(()=>r.e(44712).then(r.bind(r,44712)));function so(e){let t,r,s,o,l,c,u,m,E,_,g,S,f,p,C,R,v,N,I,O=(0,i.c)(80),{baseRefName:A,canUserPushToBase:y,defaultCommitAuthorEmail:x,commitMessageBody:w,commitMessageHeadline:b,conflictsCondition:L,handleConfirmingMergeInfo:P,headRepository:M,helpUrl:D,isAdminBypassToggleChecked:j,isAdminBypassToggleVisible:U,isAutoMergeAllowed:k,isConfirmingMergeInfo:G,isCrossRepo:q,mergeable:F,numberOfCommits:B,mergeBoxRollupStatus:Q,setShouldFocusPrimaryMergeButton:K,shouldFocusPrimaryMergeButton:W,status:H,viewerMergeActions:V,possibleCommitAuthorEmails:Y}=e,z=void 0!==k&&k,{mergeMethod:X,setMergeMethod:J}=T(),{sendAnalyticsEvent:Z}=(0,eh.s)(),[ee,et]=(0,d.useState)(!1),er=(0,d.useRef)(null);if(!L)return null;if(O[0]!==V){let e=V.find(sl);a(e),r=(t=function({mergeMethods:e}){return e.reduce((e,t)=>((t?.allowableStatus==="ALLOWED"||t?.allowableStatus==="ALLOWED_WITH_BYPASS")&&e.push(t.name),e),[])}({mergeMethods:e.mergeMethods})).includes(h.q$.MERGE),s=t.includes(h.q$.SQUASH),o=t.includes(h.q$.REBASE),O[0]=V,O[1]=t,O[2]=r,O[3]=s,O[4]=o}else t=O[1],r=O[2],s=O[3],o=O[4];let es=o,en=U&&j,ei=`Merging is blocked due to ${H===$?"pending":"failing"} merge requirements`;O[5]!==P||O[6]!==z||O[7]!==Z?(l=()=>{P(!0),Z(z?"direct_merge_section.auto_merge_click":"direct_merge_section.direct_merge_click",z?"MERGEBOX_AUTO_MERGE_SECTION_MERGE_BUTTON":"MERGEBOX_DIRECT_MERGE_SECTION_MERGE_BUTTON")},O[5]=P,O[6]=z,O[7]=Z,O[8]=l):l=O[8];let ea=l;O[9]!==P||O[10]!==z||O[11]!==Z||O[12]!==K?(c=()=>{P(!1),K(!0),Z(z?"direct_merge_section.cancel_auto_merge":"direct_merge_section.cancel_direct_merge",z?"MERGEBOX_AUTO_MERGE_CANCEL_CONFIRMATION_BUTTON":"MERGEBOX_DIRECT_MERGE_CANCEL_CONFIRMATION_BUTTON")},O[9]=P,O[10]=z,O[11]=Z,O[12]=K,O[13]=c):c=O[13];let eo=c;O[14]!==Z?(u=()=>{et(!0),Z("direct_merge_section.view_command_line_instructions","MERGEBOX_DIRECT_MERGE_SECTION_VIEW_COMMAND_LINE_INSTRUCTIONS_BUTTON")},O[14]=Z,O[15]=u):u=O[15];let el=u;O[16]!==Z||O[17]!==J?(m=(e,t)=>{J(e),Z(t,"MERGEBOX_DIRECT_MERGE_SECTION_MERGE_METHOD_MENU_ITEM")},O[16]=Z,O[17]=J,O[18]=m):m=O[18];let ec=m;if(G){let e,t=x||"",r=w||"",s=b||"";return O[19]!==A||O[20]!==eo||O[21]!==P||O[22]!==j||O[23]!==z||O[24]!==X||O[25]!==Y||O[26]!==t||O[27]!==r||O[28]!==s?(e=(0,n.jsx)(ss,{defaultCommitAuthorEmail:t,commitMessageBody:r,commitMessageHeadline:s,defaultBranchName:A,handleConfirmingMergeInfo:P,isBypassMerge:j,selectedMergeMethod:X,onCancel:eo,isAutoMergeAllowed:z,possibleCommitAuthorEmails:Y}),O[19]=A,O[20]=eo,O[21]=P,O[22]=j,O[23]=z,O[24]=X,O[25]=Y,O[26]=t,O[27]=r,O[28]=s,O[29]=e):e=O[29],e}O[30]!==A||O[31]!==L||O[32]!==M||O[33]!==ee||O[34]!==q?(E=ee&&er&&(0,n.jsx)(d.Suspense,{children:(0,n.jsx)(sa,{baseRefName:A,conflictsCondition:L,headRepository:M,isCrossRepo:q,returnFocusRef:er,onClose:()=>et(!1)})}),O[30]=A,O[31]=L,O[32]=M,O[33]=ee,O[34]=q,O[35]=E):E=O[35];let eu=1===t.length,ed=!z&&!F&&!en,eE=F&&"ALL_PASSED"===Q;return O[36]!==r||O[37]!==X||O[38]!==ec?(_=r&&(0,n.jsx)(si,{primaryText:"Create a merge commit",secondaryText:"All commits from this branch will be added to the base branch via a merge commit.",selected:X===h.q$.MERGE,onSelect:()=>ec(h.q$.MERGE,"direct_merge_section.select_create_a_merge_commit")}),O[36]=r,O[37]=X,O[38]=ec,O[39]=_):_=O[39],O[40]!==s||O[41]!==X||O[42]!==B||O[43]!==ec?(g=s&&(0,n.jsx)(si,{primaryText:"Squash and merge",secondaryText:1===B?"The 1 commit from this branch will be added to the base branch.":`The ${B} commits from this branch will be combined into one commit in the base branch.`,selected:X===h.q$.SQUASH,onSelect:()=>ec(h.q$.SQUASH,"direct_merge_section.select_squash_and_merge")}),O[40]=s,O[41]=X,O[42]=B,O[43]=ec,O[44]=g):g=O[44],O[45]!==es||O[46]!==X||O[47]!==B||O[48]!==ec?(S=es&&(0,n.jsx)(si,{primaryText:"Rebase and merge",secondaryText:`The ${B} commit${1!==B?"s":""} from this branch will be rebased and added to the base branch.`,selected:X===h.q$.REBASE,onSelect:()=>ec(h.q$.REBASE,"direct_merge_section.select_rebase_and_merge")}),O[45]=es,O[46]=X,O[47]=B,O[48]=ec,O[49]=S):S=O[49],O[50]!==_||O[51]!==g||O[52]!==S?(f=(0,n.jsxs)(eb.l,{selectionVariant:"single",showDividers:!0,children:[_,g,S]}),O[50]=_,O[51]=g,O[52]=S,O[53]=f):f=O[53],O[54]!==K?(p=()=>K(!1),O[54]=K,O[55]=p):p=O[55],O[56]!==z||O[57]!==en||O[58]!==X?(C=r2({mergeMethod:X,confirming:!1,isBypassMerge:en,isAutoMergeAllowed:z}),O[56]=z,O[57]=en,O[58]=X,O[59]=C):C=O[59],O[60]!==ea||O[61]!==ei||O[62]!==W||O[63]!==eE||O[64]!==f||O[65]!==p||O[66]!==C||O[67]!==eu||O[68]!==ed?(R=(0,n.jsx)(r9.Slot,{children:(0,n.jsx)(rD,{hideSecondaryButton:eu,inactive:ed,inactiveTooltipText:ei,inactiveTooltipDirection:"se",isPrimary:eE,secondaryButtonActive:!0,secondaryButtonAriaLabel:"Select merge method",shouldFocusPrimaryButton:W,actionList:f,onFocusPrimaryButton:p,onPrimaryButtonClick:ea,children:C})}),O[60]=ea,O[61]=ei,O[62]=W,O[63]=eE,O[64]=f,O[65]=p,O[66]=C,O[67]=eu,O[68]=ed,O[69]=R):R=O[69],O[70]!==y||O[71]!==el||O[72]!==D?(v=(0,n.jsx)(r9.Slot,{children:(0,n.jsx)("span",{className:"f6 fgColor-muted",children:y?(0,n.jsxs)(n.Fragment,{children:["You can also merge this with the command line."," ",(0,n.jsx)(em.A,{as:"button",ref:er,inline:!0,onClick:el,children:"View command line instructions."})]}):(0,n.jsxs)(n.Fragment,{children:["Only those with"," ",(0,n.jsx)(em.A,{href:`${D}/en/get-started/learning-about-github/access-permissions-on-github`,inline:!0,children:"write access"})," ","to this repository can merge pull requests."]})})}),O[70]=y,O[71]=el,O[72]=D,O[73]=v):v=O[73],O[74]!==R||O[75]!==v?(N=(0,n.jsxs)(r9,{children:[R,v]}),O[74]=R,O[75]=v,O[76]=N):N=O[76],O[77]!==N||O[78]!==E?(I=(0,n.jsxs)(n.Fragment,{children:[E,N]}),O[77]=N,O[78]=E,O[79]=I):I=O[79],I}function sl(e){return e.name===h.tw.DIRECT_MERGE}try{sa.displayName||(sa.displayName="CommandLineInstructionsDialog")}catch{}try{so.displayName||(so.displayName="DirectMergeActionsSection")}catch{}var sc=r(46720);function su(e){let t,r,s,a=(0,i.c)(6),{checked:o,onToggleChecked:l}=e;return a[0]!==o||a[1]!==l?(t=(0,n.jsx)(sc.A,{onChange:l,checked:o}),a[0]=o,a[1]=l,a[2]=t):t=a[2],a[3]===Symbol.for("react.memo_cache_sentinel")?(r=(0,n.jsx)(eP.A.Label,{children:(0,n.jsx)("span",{className:"fgColor-danger",children:" Merge without waiting for requirements to be met (bypass rules) "})}),a[3]=r):r=a[3],a[4]!==t?(s=(0,n.jsxs)(eP.A,{children:[t,r]}),a[4]=t,a[5]=s):s=a[5],s}try{su.displayName||(su.displayName="BypassMergeRequirementsToggle")}catch{}function sd(e,t,r){return"MERGEABLE_IF_STATUSES_PASS"===e&&"BEHIND"!==r&&t!==$&&t!==Q&&t!==X||"MERGEABLE"===e}function sh(e){let t,r,s,a,o,c,u,m,E,_,g=(0,i.c)(42),{autoMergeRequest:S,baseRefName:f,handleConfirmingMergeInfo:p,isDraft:C,isInMergeQueue:R,mergeQueue:T,mergeRequirementsState:v,mergeStateStatus:N,mergeBoxRollupStatus:I,status:O,viewerCanAddAndRemoveFromMergeQueue:A,viewerCanAddToMergeQueueSolo:y,shouldFocusPrimaryMergeButton:x,setShouldFocusPrimaryMergeButton:w}=e,b=T?.url,[L,P]=(0,d.useState)(h.lD.GROUP),[M,D]=(0,d.useState)(!1),[j,U]=(0,d.useState)(),{sendAnalyticsEvent:k}=(0,eh.s)();g[0]===Symbol.for("react.memo_cache_sentinel")?(t={onError:e=>{U(e.message)}},g[0]=t):t=g[0];let{mutate:G,isPending:q}=r7(t);g[1]!==p||g[2]!==k?(r=()=>{D(!0),p(!0),k("auto_merge_section.merge_click","MERGEBOX_AUTO_MERGE_BUTTON")},g[1]=p,g[2]=k,g[3]=r):r=g[3];let F=r;g[4]!==G||g[5]!==p||g[6]!==q||g[7]!==L||g[8]!==k?(s=()=>{q||(U(void 0),G({mergeMethod:L===h.lD.SOLO?"SOLO":"GROUP"}),p(!1),k("auto_merge_section.confirm_direct_merge","MERGEBOX_AUTO_MERGE_CONFIRMATION_BUTTON"))},g[4]=G,g[5]=p,g[6]=q,g[7]=L,g[8]=k,g[9]=s):s=g[9];let B=s;g[10]!==k?(a=(e,t)=>{P(e),k(t,"MERGEBOX_MERGE_QUEUE_SECTION_MERGE_METHOD_MENU_ITEM")},g[10]=k,g[11]=a):a=g[11];let Q=a;g[12]!==v||g[13]!==N||g[14]!==O?(o=sd(v,O,N),g[12]=v,g[13]=N,g[14]=O,g[15]=o):o=g[15];let $=o,K=!A||"UNKNOWN"===N||C||R||!!S,W=(0,d.useRef)(null);return g[16]!==M?(c=()=>{M&&W?.current&&W?.current.focus()},u=[M],g[16]=M,g[17]=c,g[18]=u):(c=g[17],u=g[18]),(0,d.useEffect)(c,u),g[19]!==j?(m=j&&(0,n.jsxs)(eL.A,{className:"mb-3",variant:"danger",children:[(0,n.jsx)(eG.A,{className:"mr-2",icon:l.StopIcon}),j]}),g[19]=j,g[20]=m):m=g[20],g[21]!==B||g[22]!==f||g[23]!==F||g[24]!==p||g[25]!==$||g[26]!==q||g[27]!==I||g[28]!==b||g[29]!==v||g[30]!==K||g[31]!==L||g[32]!==k||g[33]!==w||g[34]!==x||g[35]!==M||g[36]!==Q||g[37]!==y?(E=M?(0,n.jsxs)(r9,{children:[(0,n.jsx)(r9.Slot,{children:(0,n.jsx)(eR.Q,{ref:W,variant:"primary",loading:q,loadingAnnouncement:r3({mergeMethod:L,confirming:!0,inProgress:!0}),onClick:B,children:r3({mergeMethod:L,confirming:!0,inProgress:!1})})}),(0,n.jsx)(r9.Slot,{children:(0,n.jsx)(eR.Q,{onClick:()=>{p(!1),D(!1),k("auto_merge_section.cancel_auto_merge","MERGEBOX_AUTO_MERGE_CANCEL_CONFIRMATION_BUTTON")},children:"Cancel"})})]}):(0,n.jsxs)(r9,{children:[(0,n.jsx)(r9.Slot,{children:(0,n.jsx)(rD,{inactive:K,inactiveTooltipText:"UNKNOWN"===v?"Checking for the ability to merge automatically":"Merging is blocked due to failing merge requirements",inactiveTooltipDirection:"se",hideSecondaryButton:!y,secondaryButtonAriaLabel:"Select merge queue method",isPrimary:$&&"ALL_PASSED"===I,shouldFocusPrimaryButton:x,onFocusPrimaryButton:()=>w(!1),actionList:(0,n.jsx)(eb.l,{selectionVariant:"single",children:(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(si,{primaryText:"Queue and merge in a group",secondaryText:`This pull request will be automatically grouped with other pull requests and merged into ${f}.`,selected:L===h.lD.GROUP,onSelect:()=>Q(h.lD.GROUP,"merqe_queue_section.select_queue_and_merge_in_a_group")}),(0,n.jsx)(si,{primaryText:"Queue and force solo merge",secondaryText:`This pull request will be merged into ${f} by itself.`,selected:L===h.lD.SOLO,onSelect:()=>Q(h.lD.SOLO,"merqe_queue_section.select_queue_and_force_solo_merge")})]})}),onPrimaryButtonClick:F,children:r3({mergeMethod:L,confirming:!1,inProgress:q})})}),(0,n.jsx)(r9.Slot,{children:(0,n.jsxs)("span",{className:"f6 fgColor-muted pl-2",children:["This repository uses the"," ",(0,n.jsx)(em.A,{href:b,inline:!0,children:"merge queue"})," ","for all merges into the ",f," branch."]})})]}),g[21]=B,g[22]=f,g[23]=F,g[24]=p,g[25]=$,g[26]=q,g[27]=I,g[28]=b,g[29]=v,g[30]=K,g[31]=L,g[32]=k,g[33]=w,g[34]=x,g[35]=M,g[36]=Q,g[37]=y,g[38]=E):E=g[38],g[39]!==m||g[40]!==E?(_=(0,n.jsxs)(n.Fragment,{children:[m,E]}),g[39]=m,g[40]=E,g[41]=_):_=g[41],_}function sm(e){let t,r,s,a,o,c,u,h,_,g,f=(0,i.c)(25),{autoMergeRequest:C,viewerCanDisableAutoMerge:R,isMergeQueueEnabled:T,handleConfirmingMergeInfo:v}=e,{sendAnalyticsEvent:N}=(0,eh.s)(),[I,O]=(0,d.useState)();f[0]===Symbol.for("react.memo_cache_sentinel")?(t={onError:e=>{O(e.message)}},f[0]=t):t=f[0];let{mutate:A,isPending:y}=function(e){let t,r,s,n,a=(0,i.c)(11),{onError:o}=e,l=(0,E.e)(m.uT.disableAutoMerge),c=p(),u=(0,S.jE)();return a[0]!==l?(t=async()=>{let e=await (0,eU.q$)(l,{method:"POST",headers:{Accept:"application/json"}}),t=await (0,eU.hp)(e);return(0,eU.R)(e,t),t},a[0]=l,a[1]=t):t=a[1],a[2]!==c||a[3]!==u?(r=()=>u.refetchQueries({queryKey:c},{cancelRefetch:!1}),a[2]=c,a[3]=u,a[4]=r):r=a[4],a[5]!==o?(s=e=>{o(e)},a[5]=o,a[6]=s):s=a[6],a[7]!==t||a[8]!==r||a[9]!==s?(n={mutationFn:t,onSuccess:r,onError:s},a[7]=t,a[8]=r,a[9]=s,a[10]=n):n=a[10],(0,ej.n)(n)}(t);f[1]!==A||f[2]!==v||f[3]!==y||f[4]!==N?(r=()=>{y||(O(void 0),v(!1),A(),N("auto_merge_section.disable_auto_merge","MERGEBOX_AUTO_MERGE_DISABLE_BUTTON"))},f[1]=A,f[2]=v,f[3]=y,f[4]=N,f[5]=r):r=f[5];let x=r;f[6]!==C?.mergeMethod?(s=C?.mergeMethod.toLowerCase()??"merge",f[6]=C?.mergeMethod,f[7]=s):s=f[7];let w=s,b=T?"be added to the merge queue":`${w} automatically`;f[8]!==I?(a=I&&(0,n.jsxs)(eL.A,{className:"mx-3 my-2",variant:"danger",children:[(0,n.jsx)(eG.A,{className:"mr-2",icon:l.StopIcon}),I]}),f[8]=I,f[9]=a):a=f[9];let L=!R;return f[10]!==x||f[11]!==y||f[12]!==L?(o=(0,n.jsx)(r9.Slot,{children:(0,n.jsx)(eR.Q,{disabled:L,onClick:x,loading:y,loadingAnnouncement:"Disabling auto-merge",children:"Disable auto-merge"})}),f[10]=x,f[11]=y,f[12]=L,f[13]=o):o=f[13],f[14]!==b?(c=(0,n.jsx)("span",{className:"text-semibold",children:b}),f[14]=b,f[15]=c):c=f[15],f[16]===Symbol.for("react.memo_cache_sentinel")?(u=(0,n.jsx)(em.A,{inline:!0,href:"https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request",children:"Learn more about automatically merging a pull request."}),f[16]=u):u=f[16],f[17]!==c?(h=(0,n.jsx)(r9.Slot,{children:(0,n.jsxs)("div",{className:"flex-1",children:["This pull request will ",c," when all requirements are met."," ",u]})}),f[17]=c,f[18]=h):h=f[18],f[19]!==o||f[20]!==h?(_=(0,n.jsxs)(r9,{children:[o,h]}),f[19]=o,f[20]=h,f[21]=_):_=f[21],f[22]!==_||f[23]!==a?(g=(0,n.jsxs)(n.Fragment,{children:[a,_]}),f[22]=_,f[23]=a,f[24]=g):g=f[24],g}function sE(e){let t,r,s,a,o=(0,i.c)(50),{advisoryWorkspace:l,autoMergeRequest:c,handleConfirmingMergeInfo:h,id:m,isConfirmingMergeInfo:E,isInMergeQueue:_,mergeQueue:g,mergeStateStatus:S,viewerCanAddAndRemoveFromMergeQueue:f,viewerCanAddToMergeQueueSolo:p,viewerCanDisableAutoMerge:C,viewerCanEnableAutoMerge:R,viewerCanAdminBypassMergeRequirements:T,...v}=e,[N,I]=(0,d.useState)(!1),O=v.viewerMergeActions,A=O.find(sg),y=O.find(s_),x=sd(v.mergeRequirementsState,v.status,S),w=A?.allowableStatus==="ALLOWED",b=y?.allowableStatus==="ALLOWED",L=!!c,P=T&&!L&&(!!w||!x),M=R&&!x;if(l)return null;if(L){let e;o[0]!==c||o[1]!==h||o[2]!==w||o[3]!==C?(e=(0,n.jsx)(sm,{autoMergeRequest:c,isMergeQueueEnabled:w,viewerCanDisableAutoMerge:C,handleConfirmingMergeInfo:h}),o[0]=c,o[1]=h,o[2]=w,o[3]=C,o[4]=e):e=o[4],t=e}else if(w||b)if(w&&P&&N){let e;o[9]!==h||o[10]!==E||o[11]!==x||o[12]!==v||o[13]!==P?(e=(0,n.jsx)(so,{mergeable:x,handleConfirmingMergeInfo:h,isAdminBypassToggleVisible:P,isAdminBypassToggleChecked:!0,isConfirmingMergeInfo:E,...v}),o[9]=h,o[10]=E,o[11]=x,o[12]=v,o[13]=P,o[14]=e):e=o[14],t=e}else if(w){let e;o[15]!==c||o[16]!==h||o[17]!==m||o[18]!==_||o[19]!==g||o[20]!==S||o[21]!==v||o[22]!==f||o[23]!==p?(e=(0,n.jsx)(sh,{autoMergeRequest:c,pullRequestId:m,handleConfirmingMergeInfo:h,isInMergeQueue:_,mergeQueue:g,mergeStateStatus:S,viewerCanAddAndRemoveFromMergeQueue:f,viewerCanAddToMergeQueueSolo:p,...v}),o[15]=c,o[16]=h,o[17]=m,o[18]=_,o[19]=g,o[20]=S,o[21]=v,o[22]=f,o[23]=p,o[24]=e):e=o[24],t=e}else if(R&&!N){let e;o[25]!==h||o[26]!==E||o[27]!==x||o[28]!==v||o[29]!==P||o[30]!==M?(e=(0,n.jsx)(so,{handleConfirmingMergeInfo:h,mergeable:x,isAdminBypassToggleChecked:!1,isAdminBypassToggleVisible:P,isAutoMergeAllowed:M,isConfirmingMergeInfo:E,...v}),o[25]=h,o[26]=E,o[27]=x,o[28]=v,o[29]=P,o[30]=M,o[31]=e):e=o[31],t=e}else{let e;o[32]!==h||o[33]!==N||o[34]!==E||o[35]!==x||o[36]!==v||o[37]!==P?(e=(0,n.jsx)(so,{handleConfirmingMergeInfo:h,isAdminBypassToggleChecked:N,isAdminBypassToggleVisible:P,isConfirmingMergeInfo:E,mergeable:x,...v}),o[32]=h,o[33]=N,o[34]=E,o[35]=x,o[36]=v,o[37]=P,o[38]=e):e=o[38],t=e}else{let e;o[5]!==h||o[6]!==E||o[7]!==v?(e=(0,n.jsx)(so,{mergeable:!1,handleConfirmingMergeInfo:h,isAdminBypassToggleChecked:!1,isAdminBypassToggleVisible:!1,isConfirmingMergeInfo:E,...v}),o[5]=h,o[6]=E,o[7]=v,o[8]=e):e=o[8],t=e}let D=E?"rounded-2":"rounded-bottom-2";return o[39]!==D?(r=(0,u.$)("p-3 bgColor-muted borderColor-muted",D),o[39]=D,o[40]=r):r=o[40],o[41]!==N||o[42]!==E||o[43]!==I||o[44]!==P?(s=P&&!E&&(0,n.jsx)("div",{className:"mb-3",children:(0,n.jsx)(su,{checked:N,onToggleChecked:()=>I(!N)})}),o[41]=N,o[42]=E,o[43]=I,o[44]=P,o[45]=s):s=o[45],o[46]!==t||o[47]!==r||o[48]!==s?(a=(0,n.jsxs)("div",{className:r,children:[s,t]}),o[46]=t,o[47]=r,o[48]=s,o[49]=a):a=o[49],a}function s_(e){return e.name===h.tw.DIRECT_MERGE}function sg(e){let{name:t}=e;return t===h.tw.MERGE_QUEUE}try{sh.displayName||(sh.displayName="AddToMergeQueueSection")}catch{}try{sm.displayName||(sm.displayName="DisableAutoMerge")}catch{}try{sE.displayName||(sE.displayName="MergeSection")}catch{}var sS=r(46251);function sf(){let e,t,r,s,a,o,c,u,h,_,g,f,C,R,T=(0,i.c)(29),[v,N]=(0,d.useState)("closed"),[I,O]=(0,d.useState)(null),A=(0,d.useRef)(null),y=(0,d.useRef)(null),{sendAnalyticsEvent:x}=(0,eh.s)();T[0]===Symbol.for("react.memo_cache_sentinel")?(e=()=>{N("open"),O(null)},T[0]=e):e=T[0];let w=e;T[1]===Symbol.for("react.memo_cache_sentinel")?(t={onError:e=>{O(e.message),setTimeout(sC,1e3)}},T[1]=t):t=T[1];let{mutate:b,isPending:L}=function(e){let t,r,s,n,a=(0,i.c)(11),{onError:o}=e,l=(0,E.e)(m.uT.convertToDraft),c=p(),u=(0,S.jE)();return a[0]!==l?(t=async()=>{let e=await (0,eU.q$)(l,{method:"POST",headers:{Accept:"application/json"}}),t=await (0,eU.hp)(e);return(0,eU.R)(e,t),t},a[0]=l,a[1]=t):t=a[1],a[2]!==c||a[3]!==u?(r=()=>u.invalidateQueries({queryKey:c},{cancelRefetch:!1}),a[2]=c,a[3]=u,a[4]=r):r=a[4],a[5]!==o?(s=e=>o(e),a[5]=o,a[6]=s):s=a[6],a[7]!==t||a[8]!==r||a[9]!==s?(n={mutationFn:t,onSuccess:r,onError:s},a[7]=t,a[8]=r,a[9]=s,a[10]=n):n=a[10],(0,ej.n)(n)}(t);T[2]!==b||T[3]!==L||T[4]!==x?(r=async()=>{L||(O(null),b(void 0,{onSuccess:()=>{N("closed"),setTimeout(sp,1e3),x("convert_to_draft_section.convert_to_draft","MERGEBOX_CONVERT_TO_DRAFT_SECTION_CONVERT_TO_DRAFT_BUTTON")}}))},T[2]=b,T[3]=L,T[4]=x,T[5]=r):r=T[5];let P=r;T[6]===Symbol.for("react.memo_cache_sentinel")?(s=(0,n.jsxs)(sS.B,{direction:"horizontal",align:"baseline",className:"py-2 px-1 text-small flex-justify-end",gap:"none",children:[(0,n.jsx)("span",{className:"fgColor-muted pr-1",children:"Still in progress?"}),(0,n.jsx)(eR.Q,{variant:"link",className:"Link--muted Link--inTextBlock text-normal",onClick:w,ref:A,children:"Convert to draft"})]}),T[6]=s):s=T[6];let M="open"===v;return T[7]===Symbol.for("react.memo_cache_sentinel")?(a=()=>N("closed"),o=(0,n.jsx)(tN.A.Header,{id:"convert-to-draft-dialog-title",children:"Convert this pull request to draft?"}),T[7]=a,T[8]=o):(a=T[7],o=T[8]),T[9]===Symbol.for("react.memo_cache_sentinel")?(c=(0,n.jsx)(eL.A,{variant:"warning",children:"People who are already subscribed will not be unsubscribed."}),T[9]=c):c=T[9],T[10]!==I?(u=I&&(0,n.jsxs)(eL.A,{className:"my-2",variant:"danger",children:[(0,n.jsx)(l.StopIcon,{className:"mr-2"}),I]}),T[10]=I,T[11]=u):u=T[11],T[12]!==L?(h=()=>{L||(N("closed"),A.current?.focus())},T[12]=L,T[13]=h):h=T[13],T[14]!==L||T[15]!==h?(_=(0,n.jsx)(eR.Q,{className:"mr-1",disabled:L,variant:"invisible",onClick:h,children:"Cancel"}),T[14]=L,T[15]=h,T[16]=_):_=T[16],T[17]!==P||T[18]!==L?(g=(0,n.jsx)(eR.Q,{loading:L,loadingAnnouncement:"Converting to draft",onClick:P,ref:y,children:"Convert to draft"}),T[17]=P,T[18]=L,T[19]=g):g=T[19],T[20]!==_||T[21]!==g?(f=(0,n.jsxs)("div",{className:"d-flex flex-justify-end mt-3",children:[_,g]}),T[20]=_,T[21]=g,T[22]=f):f=T[22],T[23]!==f||T[24]!==u?(C=(0,n.jsxs)("div",{className:"p-3",children:[c,u,f]}),T[23]=f,T[24]=u,T[25]=C):C=T[25],T[26]!==C||T[27]!==M?(R=(0,n.jsxs)(n.Fragment,{children:[s,(0,n.jsxs)(tN.A,{"aria-labelledby":"convert-to-draft-dialog-title",isOpen:M,returnFocusRef:A,initialFocusRef:y,onDismiss:a,children:[o,C]})]}),T[26]=C,T[27]=M,T[28]=R):R=T[28],R}function sp(){return(0,tI.i)("The pull request was successfully converted to draft.")}function sC(){return(0,tI.i)("Failed to convert the pull request to draft")}try{sf.displayName||(sf.displayName="ConvertToDraftSection")}catch{}function sR(){let e,t=(0,i.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,n.jsx)("div",{className:"MergeBox-module__mergeboxLoading--OhnXd",children:(0,n.jsx)(c.A,{})}),t[0]=e):e=t[0],e}let sT=(0,d.memo)(function(e){let t,r,s,a,l,c=(0,i.c)(11);c[0]!==e?({hideIcon:r,...t}=e,c[0]=e,c[1]=t,c[2]=r):(t=c[1],r=c[2]);let u=void 0!==r&&r;return c[3]!==u?(s=(0,n.jsx)(tw,{hideIcon:u}),c[3]=u,c[4]=s):s=c[4],c[5]!==u||c[6]!==t?(a=(0,n.jsx)(d.Suspense,{children:(0,n.jsx)(sv,{hideIcon:u,...t})}),c[5]=u,c[6]=t,c[7]=a):a=c[7],c[8]!==s||c[9]!==a?(l=(0,n.jsx)(o.t,{critical:!0,fallback:s,children:a}),c[8]=s,c[9]=a,c[10]=l):l=c[10],l});function sv(e){let t,r,s,a,o,l,c,u,h,_,C=(0,i.c)(20);C[0]!==e?({viewerLogin:s,channels:t,...r}=e,C[0]=e,C[1]=t,C[2]=r,C[3]=s):(t=C[1],r=C[2],s=C[3]);let{mergeMethod:R}=T();C[4]!==R?(a={mergeMethod:R,bypassRequirements:!1},C[4]=R,C[5]=a):a=C[5];let{data:v,refetch:N,isLoading:I,error:O}=function(e){let t,r,s=(0,i.c)(7),{mergeMethod:n,bypassRequirements:a}=e,o=new URLSearchParams;o.append("merge_method",n),o.append("bypass_requirements",(void 0!==a&&a).toString());let l=`${(0,E.e)(m.uT.mergeBox)}?${o.toString()}`,c=p(),u=(0,S.jE)();return s[0]!==l||s[1]!==u||s[2]!==c?(t=async()=>(0,g.H)(l,c,u),s[0]=l,s[1]=u,s[2]=c,s[3]=t):t=s[3],s[4]!==c||s[5]!==t?(r={queryKey:c,queryFn:t,staleTime:1/0},s[4]=c,s[5]=t,s[6]=r):r=s[6],(0,f.I)(r)}(a);e:{if(v?.pullRequest.mergeBoxAliveChannels){o=v?.pullRequest.mergeBoxAliveChannels;break e}o=t}let A=o;C[6]!==N?(l=()=>{(0,d.startTransition)(()=>{N({cancelRefetch:!1})})},C[6]=N,C[7]=l):l=C[7];let y=l;if(C[8]!==A||C[9]!==y?(c={refetchQuery:y,channels:A},C[8]=A,C[9]=y,C[10]=c):c=C[10],tp(c),I){let e;return C[11]===Symbol.for("react.memo_cache_sentinel")?(e=(0,n.jsx)(sR,{}),C[11]=e):e=C[11],e}if(O)throw O;if(!v)return null;C[12]===Symbol.for("react.memo_cache_sentinel")?(u=(0,n.jsx)(sR,{}),h=(0,n.jsx)("h2",{className:"sr-only",children:"Merge info"}),C[12]=u,C[13]=h):(u=C[12],h=C[13]);let x=v.pullRequest.numberOfCommits||0;return C[14]!==v.mergeRequirements||C[15]!==v.pullRequest||C[16]!==r||C[17]!==x||C[18]!==s?(_=(0,n.jsxs)(d.Suspense,{fallback:u,children:[h,(0,n.jsx)(sN,{mergeRequirements:v.mergeRequirements,numberOfCommits:x,pullRequest:v.pullRequest,viewerLogin:s,...r})]}),C[14]=v.mergeRequirements,C[15]=v.pullRequest,C[16]=r,C[17]=x,C[18]=s,C[19]=_):_=C[19],_}function sN(e){let t,r,s,c,h,_,p,C,R,T,I,O,A,y,x,w,b,L,P,M,D,j,U,k=(0,i.c)(95),{helpUrl:G,hideIcon:q,mergeRequirements:el,numberOfCommits:ec,pullRequest:eu,viewerLogin:ed}=e;a(eu.viewerMergeActions.find(sO));let[eh,em]=(0,d.useState)(!1),eE=!eh,[e_,eg]=(0,d.useState)(!1),{isInMergeQueue:eS,state:ef,viewerCanDeleteHeadRef:ep,viewerCanRestoreHeadRef:eC}=eu,eR=eu.viewerCanConvertToDraft&&!eS,eT=void 0!==q&&q||("CLOSED"===ef||"MERGED"===ef)&&!ep&&!eC;k[0]!==eu.headRefOid?(t={pullRequestHeadSha:eu.headRefOid},k[0]=eu.headRefOid,k[1]=t):t=k[1];let ev=function(e){let t,r,s,n=(0,i.c)(9),{pullRequestHeadSha:a}=e,o=(0,E.e)(m.uT.statusChecks);n[0]!==a?(t={pullRequestHeadSha:a},n[0]=a,n[1]=t):t=n[1];let l=tR(t),c=(0,S.jE)();return n[2]!==o||n[3]!==c||n[4]!==l?(r=async()=>(0,g.H)(o,l,c),n[2]=o,n[3]=c,n[4]=l,n[5]=r):r=n[5],n[6]!==l||n[7]!==r?(s={queryKey:l,throwOnError:!1,queryFn:r,staleTime:1e4},n[6]=l,n[7]=r,n[8]=s):s=n[8],(0,f.I)(s)}(t).data;if(k[2]!==el||k[3]!==eu||k[4]!==eE||k[5]!==ev){I=function({pullRequest:e,mergeRequirements:t,statusChecksData:r}){let s;if("MERGED"===e.state)return Z;if("CLOSED"===e.state)return ee;if((s=et(t)).includes("PULL_REQUEST_REPO_STATE")||s.includes("PULL_REQUEST_USER_STATE"))return"NonactionableFailure";if(e.isInMergeQueue)return H;if(e.isDraft&&!es(r))return K;if(e.isDraft)return W;if(es(r))return Q;if(er(r))return $;if(ei(t,r))return z;if(t?.state==="MERGEABLE"||t?.state==="MERGEABLE_IF_STATUSES_PASS"&&en(r))return Y;if((function(e){let t=e?.conditions.find(e=>"PULL_REQUEST_RULES"===e.type);if(!t)return[];let r=t?.ruleRollups?.filter(e=>"FAILED"===e.result);return r?r.map(e=>e.ruleType):[]})(t).includes("PULL_REQUEST")&&!ea(t).includes("CHANGES_REQUESTED"))return F;if(ea(t).includes("CHANGES_REQUESTED"))return B;else if(t?.state==="UNKNOWN"&&!eo(t))return J;else if(eo(t))return V;else return X}({pullRequest:eu,mergeRequirements:el,statusChecksData:ev});let e=new MergeBoxStatusCalculator(eu,el,ev);p=e.overallStatus,r=e.sections.BlockedSection,s=e.sections.ChecksSection,c=e.sections.ClosedOrMergedStateMergeBox,h=e.sections.ConflictsSection,_=e.sections.DraftStateSection,C=e.sections.MergeQueueSection,T=e.sections.ReviewerSection,R=function(e){switch(e){case Y:return{icon:l.CheckCircleFillIcon,iconColor:"success.emphasis",title:"Merge pull request"};case K:case W:return{icon:l.GitPullRequestDraftIcon,iconColor:"var(--fgColor-draft)",title:"Draft"};case H:return{icon:l.GitMergeQueueIcon,iconColor:"var(--fgColor-attention)",title:"Queued"};case $:return{icon:l.DotFillIcon,iconColor:"var(--fgColor-muted)",title:"Checks pending"};case Q:return{icon:l.XCircleFillIcon,iconColor:"var(--fgColor-danger)",title:"Checks failing"};case z:return{icon:l.DotFillIcon,iconColor:"var(--fgColor-muted)",title:"Non-required checks unsuccessful"};case F:return{icon:l.DotFillIcon,iconColor:"var(--fgColor-danger)",title:"Awaiting reviews"};case B:return{icon:l.XCircleFillIcon,iconColor:"var(--fgColor-danger)",title:"Changes requested"};case V:return{icon:l.XCircleFillIcon,iconColor:"var(--fgColor-danger)",title:"Merge conflicts"};case J:return{icon:l.DotFillIcon,iconColor:"var(--fgColor-muted)",title:"Unknown"};case Z:return{icon:l.GitMergeIcon,iconColor:"var(--fgColor-done)",title:"Merged"};case ee:return{icon:l.GitPullRequestClosedIcon,iconColor:"var(--fgColor-muted)",title:"Closed"};default:return{icon:l.XCircleFillIcon,iconColor:"var(--fgColor-danger)",title:"Unable to merge"}}}(I),O=function(e,t){let r;switch(e){case"ALL_PASSED":r={iconColor:"success.emphasis",borderColor:"borderColor-success-emphasis"};break;case"MERGED":r={iconColor:"done.emphasis",borderColor:"borderColor-done-emphasis"};break;case"QUEUED":r={iconColor:"attention.emphasis",borderColor:"borderColor-attention-emphasis"};break;default:r={iconColor:"neutral.emphasis",borderColor:"borderColor-default"}}return t&&(r.borderColor="borderColor-default"),r}(p,!eE),k[2]=el,k[3]=eu,k[4]=eE,k[5]=ev,k[6]=r,k[7]=s,k[8]=c,k[9]=h,k[10]=_,k[11]=p,k[12]=C,k[13]=R,k[14]=T,k[15]=I,k[16]=O}else r=k[6],s=k[7],c=k[8],h=k[9],_=k[10],p=k[11],C=k[12],R=k[13],T=k[14],I=k[15],O=k[16];let eN=O;k[17]!==el?.conditions?(A=el?.conditions.find(sI),k[17]=el?.conditions,k[18]=A):A=k[18];let eI=A,eO=eI?.result==="PASSED";k[19]!==el?(y=function(e){let t=N(e);if(t.length<1)return!1;let r=t[0]?.ruleRollups.find(e=>"AUTHORIZATION"===e.ruleType);return r?.result==="FAILED"}(el),k[19]=el,k[20]=y):y=k[20];let eA=y;k[21]!==el?(x=v(el),k[21]=el,k[22]=x):x=k[22];let ey=x,ex=eS?l.GitMergeQueueIcon:l.GitMergeIcon;k[23]===Symbol.for("react.memo_cache_sentinel")?(w=()=>{eg(!0)},k[23]=w):w=k[23];let ew=w,eb=!eO||eA,eL=eu.mergeBoxUserPreferences;k[24]===Symbol.for("react.memo_cache_sentinel")?(b=(0,u.$)("MergeBox-module__mergePartialContainer--psYdf","position-relative partial-pull-merging-analytics-js"),k[24]=b):b=k[24],k[25]!==ex||k[26]!==eN.iconColor||k[27]!==R||k[28]!==eT?(L=!eT&&(0,n.jsx)("div",{className:"d-none d-lg-block","data-testid":"mergeability-icon-wrapper",children:(0,n.jsx)(ty,{icon:ex,ariaLabel:R.title,iconBackgroundColor:eN.iconColor})}),k[25]=ex,k[26]=eN.iconColor,k[27]=R,k[28]=eT,k[29]=L):L=k[29];let eP=eb?"MergeBox-module__mergeBoxAdjustBorders--vMX1B":"",eM=`border rounded-2 ${eN.borderColor}`;return k[30]!==eP||k[31]!==eM?(P=(0,u.$)(eP,eM),k[30]=eP,k[31]=eM,k[32]=P):P=k[32],k[33]!==r||k[34]!==eO||k[35]!==s||k[36]!==c.shouldRender||k[37]!==ey||k[38]!==h||k[39]!==_||k[40]!==G||k[41]!==eh||k[42]!==p||k[43]!==eL||k[44]!==C||k[45]!==el||k[46]!==ec||k[47]!==eu.advisoryWorkspace||k[48]!==eu.autoMergeRequest||k[49]!==eu.baseRefName||k[50]!==eu.baseRepository||k[51]!==eu.deprovisionableCodespaces||k[52]!==eu.headRefName||k[53]!==eu.headRefOid||k[54]!==eu.headRepository||k[55]!==eu.id||k[56]!==eu.isCrossRepo||k[57]!==eu.isDraft||k[58]!==eu.isInMergeQueue||k[59]!==eu.latestOpinionatedReviews||k[60]!==eu.mergeQueue||k[61]!==eu.mergeQueueEntry||k[62]!==eu.mergeStateStatus||k[63]!==eu.pendingReviewRequests||k[64]!==eu.resourcePath||k[65]!==eu.state||k[66]!==eu.viewerCanAddAndRemoveFromMergeQueue||k[67]!==eu.viewerCanAddToMergeQueueSolo||k[68]!==eu.viewerCanAdminBypassMergeRequirements||k[69]!==eu.viewerCanDeleteHeadRef||k[70]!==eu.viewerCanDisableAutoMerge||k[71]!==eu.viewerCanDismissReviews||k[72]!==eu.viewerCanEnableAutoMerge||k[73]!==eu.viewerCanReRequestReviews||k[74]!==eu.viewerCanRestoreHeadRef||k[75]!==eu.viewerCanUpdate||k[76]!==eu.viewerCanUpdateBranch||k[77]!==eu.viewerMergeActions||k[78]!==eu.viewerUpdateMethods||k[79]!==T||k[80]!==e_||k[81]!==eb||k[82]!==eE||k[83]!==I||k[84]!==ed?(M=c.shouldRender||!el?(0,n.jsx)(tO,{isCrossRepo:eu.isCrossRepo,state:eu.state,headRefName:eu.headRefName,headRepository:eu.headRepository,baseRepository:eu.baseRepository,viewerCanDeleteHeadRef:eu.viewerCanDeleteHeadRef,viewerCanRestoreHeadRef:eu.viewerCanRestoreHeadRef,deprovisionableCodespaces:eu.deprovisionableCodespaces}):C.shouldRender?(0,n.jsx)(rJ,{viewerCanAddAndRemoveFromMergeQueue:eu.viewerCanAddAndRemoveFromMergeQueue,mergeQueueEntry:eu.mergeQueueEntry,mergeQueue:eu.mergeQueue,focusPrimaryMergeButton:ew}):(0,n.jsxs)(n.Fragment,{children:[eE&&(0,n.jsxs)(n.Fragment,{children:[T.shouldRender&&(0,n.jsx)(eJ,{consolidatedFailureReasons:T.consolidatedFailureReasons,helpUrl:G,latestOpinionatedReviews:eu.latestOpinionatedReviews,numReviewsRequired:T.numReviewsRequired,pendingRequestedReviews:eu.pendingReviewRequests,pullRequestId:eu.id,reviewsState:T.sectionStatus,viewerCanDismissReviews:eu.viewerCanDismissReviews,viewerCanReRequestReviews:eu.viewerCanReRequestReviews}),(0,n.jsx)(o.t,{fallback:(0,n.jsx)(rx,{}),children:(0,n.jsx)(ry,{pullRequestId:eu.id,pullRequestHeadSha:eu.headRefOid,focusPrimaryMergeButton:ew,sectionStatus:s.sectionStatus,shouldRender:s.shouldRender,mergeBoxUserPreferences:eL})}),h.shouldRender&&h.conflictsCondition&&(0,n.jsx)(rB,{advisoryWorkspace:eu.advisoryWorkspace,baseRefName:eu.baseRefName,headRefOid:eu.headRefOid,conflictsCondition:h.conflictsCondition,conflictsState:h.sectionStatus,mergeStateStatus:eu.mergeStateStatus,resourcePath:eu.resourcePath,canUserPushToBase:eO,viewerCanUpdateBranch:eu.viewerCanUpdateBranch,viewerLogin:ed,viewerUpdateMethods:eu.viewerUpdateMethods}),r.shouldRender&&(0,n.jsx)(tM,{failingConditionsAndRules:r.failingConditionsAndRules}),_.shouldRender&&(0,n.jsx)(rz,{viewerCanUpdate:eu.viewerCanUpdate,helpUrl:G})]}),eb?null:(0,n.jsx)(sE,{advisoryWorkspace:eu.advisoryWorkspace,autoMergeRequest:eu.autoMergeRequest,baseRefName:eu.baseRefName,numberOfCommits:ec,conflictsCondition:ey,headRepository:eu.headRepository,helpUrl:G,id:eu.id,isConfirmingMergeInfo:eh,isCrossRepo:eu.isCrossRepo,isDraft:eu.isDraft,isInMergeQueue:eu.isInMergeQueue,mergeQueue:eu.mergeQueue,canUserPushToBase:eO,defaultCommitAuthorEmail:el.defaultCommitAuthorEmail,commitMessageBody:el.commitMessageBody,commitMessageHeadline:el.commitMessageHeadline,mergeRequirementsState:el.state,mergeStateStatus:eu.mergeStateStatus,mergeBoxRollupStatus:p,viewerCanAddAndRemoveFromMergeQueue:eu.viewerCanAddAndRemoveFromMergeQueue,viewerCanAdminBypassMergeRequirements:eu.viewerCanAdminBypassMergeRequirements,viewerCanAddToMergeQueueSolo:eu.viewerCanAddToMergeQueueSolo,viewerCanDisableAutoMerge:eu.viewerCanDisableAutoMerge,viewerMergeActions:eu.viewerMergeActions,viewerCanEnableAutoMerge:eu.viewerCanEnableAutoMerge,shouldFocusPrimaryMergeButton:e_,setShouldFocusPrimaryMergeButton:eg,status:I,possibleCommitAuthorEmails:el.possibleCommitAuthorEmails,handleConfirmingMergeInfo:em})]}),k[33]=r,k[34]=eO,k[35]=s,k[36]=c.shouldRender,k[37]=ey,k[38]=h,k[39]=_,k[40]=G,k[41]=eh,k[42]=p,k[43]=eL,k[44]=C,k[45]=el,k[46]=ec,k[47]=eu.advisoryWorkspace,k[48]=eu.autoMergeRequest,k[49]=eu.baseRefName,k[50]=eu.baseRepository,k[51]=eu.deprovisionableCodespaces,k[52]=eu.headRefName,k[53]=eu.headRefOid,k[54]=eu.headRepository,k[55]=eu.id,k[56]=eu.isCrossRepo,k[57]=eu.isDraft,k[58]=eu.isInMergeQueue,k[59]=eu.latestOpinionatedReviews,k[60]=eu.mergeQueue,k[61]=eu.mergeQueueEntry,k[62]=eu.mergeStateStatus,k[63]=eu.pendingReviewRequests,k[64]=eu.resourcePath,k[65]=eu.state,k[66]=eu.viewerCanAddAndRemoveFromMergeQueue,k[67]=eu.viewerCanAddToMergeQueueSolo,k[68]=eu.viewerCanAdminBypassMergeRequirements,k[69]=eu.viewerCanDeleteHeadRef,k[70]=eu.viewerCanDisableAutoMerge,k[71]=eu.viewerCanDismissReviews,k[72]=eu.viewerCanEnableAutoMerge,k[73]=eu.viewerCanReRequestReviews,k[74]=eu.viewerCanRestoreHeadRef,k[75]=eu.viewerCanUpdate,k[76]=eu.viewerCanUpdateBranch,k[77]=eu.viewerMergeActions,k[78]=eu.viewerUpdateMethods,k[79]=T,k[80]=e_,k[81]=eb,k[82]=eE,k[83]=I,k[84]=ed,k[85]=M):M=k[85],k[86]!==P||k[87]!==M?(D=(0,n.jsx)("div",{className:P,children:M}),k[86]=P,k[87]=M,k[88]=D):D=k[88],k[89]!==eR?(j=eR&&(0,n.jsx)(sf,{}),k[89]=eR,k[90]=j):j=k[90],k[91]!==D||k[92]!==j||k[93]!==L?(U=(0,n.jsxs)("div",{className:b,children:[L,D,j]}),k[91]=D,k[92]=j,k[93]=L,k[94]=U):U=k[94],U}function sI(e){return"PULL_REQUEST_USER_STATE"===e.type}function sO(e){return e.name===h.tw.DIRECT_MERGE}try{sR.displayName||(sR.displayName="MergeBoxLoading")}catch{}try{sT.displayName||(sT.displayName="MergeBoxWithSuspense")}catch{}try{sv.displayName||(sv.displayName="MergeBoxWrapper")}catch{}try{sN.displayName||(sN.displayName="MergeBox")}catch{}function sA(e){return Object.values(h.q$).includes(e)}},11418:(e,t,r)=>{let s;r.d(t,{H:()=>b});var n=r(35750),i=r(18150),a=r(85242),o=r(88243),l=r(16213),c=r(10204),u=new WeakMap,d=new WeakSet;let AliveSession=class AliveSession extends c.ib{constructor(e,t,r,s,n){super(e,()=>(0,o._)(this,d,h).call(this),r,s,void 0,n),(0,l._)(this,d),(0,i._)(this,u,{writable:!0,value:void 0}),(0,a._)(this,u,t)}};function h(){return m((0,n._)(this,u))}async function m(e){let t=await E(e);return t&&t.url&&t.token?_(t.url,t.token):null}async function E(e){let t=await fetch(e,{headers:{Accept:"application/json"}});if(t.ok)return t.json();if(404===t.status)return null;throw Error("fetch error")}async function _(e,t){let r=await fetch(e,{method:"POST",mode:"same-origin",headers:{"Scoped-CSRF-Token":t}});if(r.ok)return r.text();throw Error("fetch error")}var g=r(70170),S=r(34095),f=r(82075),p=r(23683);function C(e,{channel:t,type:r,data:s}){for(let n of e)n.dispatchEvent(new CustomEvent(`socket:${r}`,{bubbles:!1,cancelable:!1,detail:{name:t,data:s}}))}var R=new WeakMap,T=new WeakMap,v=new WeakMap,N=new WeakMap,I=new WeakMap,O=new WeakSet;let A=class AliveSessionProxy{subscribe(e){let t=(0,n._)(this,T).add(...e);t.length&&(0,n._)(this,R).port.postMessage({subscribe:t});let r=new Set(t.map(e=>e.name)),s=e.reduce((e,t)=>{let s=t.topic.name;return(0,c.JR)(s)&&!r.has(s)&&e.add(s),e},new Set);s.size&&(0,n._)(this,R).port.postMessage({requestPresence:Array.from(s)})}unsubscribeAll(...e){let t=(0,n._)(this,T).drain(...e);t.length&&(0,n._)(this,R).port.postMessage({unsubscribe:t});let r=(0,n._)(this,v).removeSubscribers(e);this.sendPresenceMetadataUpdate(r)}updatePresenceMetadata(e){let t=new Set;for(let r of e)(0,n._)(this,v).setMetadata(r),t.add(r.channelName);this.sendPresenceMetadataUpdate(t)}sendPresenceMetadataUpdate(e){if(!e.size)return;let t=[];for(let r of e)t.push({channelName:r,metadata:(0,n._)(this,v).getChannelMetadata(r)});(0,n._)(this,R).port.postMessage({updatePresenceMetadata:t})}online(){(0,n._)(this,R).port.postMessage({online:!0})}offline(){(0,n._)(this,R).port.postMessage({online:!1})}hangup(){(0,n._)(this,R).port.postMessage({hangup:!0})}constructor(e,t,r,s,u,d){(0,l._)(this,O),(0,i._)(this,R,{writable:!0,value:void 0}),(0,i._)(this,T,{writable:!0,value:new c.m0}),(0,i._)(this,v,{writable:!0,value:new c.VH}),(0,i._)(this,N,{writable:!0,value:void 0}),(0,i._)(this,I,{writable:!0,value:new Map}),(0,a._)(this,N,u),(0,a._)(this,R,new SharedWorker(`${e}?module=true`,{name:`github-socket-worker-v3-${s}`,type:"module"})),(0,n._)(this,R).port.onmessage=({data:e})=>(0,o._)(this,O,y).call(this,e),(0,n._)(this,R).port.postMessage({connect:{url:t,refreshUrl:r,options:d}})}};function y(e){let{channel:t}=e;if("presence"===e.type){let r=(0,n._)(this,I).get(t);r||(r=(0,g.s)((e,r)=>{(0,n._)(this,N).call(this,e,r),(0,n._)(this,I).delete(t)},100),(0,n._)(this,I).set(t,r)),r((0,n._)(this,T).subscribers(t),e);return}(0,n._)(this,N).call(this,(0,n._)(this,T).subscribers(t),e)}async function x(){let e,t=(e=document.head.querySelector("link[rel=shared-web-socket-src]")?.getAttribute("href"))&&e.startsWith("/")?e:null;if(!t)return;let r=document.head.querySelector("link[rel=shared-web-socket]")?.href??null;if(!r)return;let s=document.head.querySelector("link[rel=shared-web-socket]")?.getAttribute("data-refresh-url")??null;if(!s)return;let n=document.head.querySelector("link[rel=shared-web-socket]")?.getAttribute("data-session-id")??null;if(!n)return;let i=(()=>{let e={};if(!(0,p.nr)()&&"SharedWorker"in window&&"true"!==(0,f.A)("localStorage").getItem("bypassSharedWorker"))try{return new A(t,r,s,n,C,e)}catch{}return new AliveSession(r,s,!1,C,e)})();return window.addEventListener("online",()=>i.online()),window.addEventListener("offline",()=>i.offline()),window.addEventListener("pagehide",()=>{"hangup"in i&&i.hangup()}),i}async function w(){return await S.G,x()}function b(){return s||(s=w())}},17645:(e,t,r)=>{r.d(t,{Qv:()=>a,TW:()=>l,iG:()=>o,jw:()=>u,lD:()=>i,nw:()=>c,q$:()=>n,tw:()=>s});let s={DIRECT_MERGE:"DIRECT_MERGE",AUTO_MERGE:"AUTO_MERGE",MERGE_QUEUE:"MERGE_QUEUE"},n={MERGE:"MERGE",SQUASH:"SQUASH",REBASE:"REBASE"},i={GROUP:"GROUP",SOLO:"SOLO"},a={Approvals:"approvals",RequestedChanges:"requested changes",PendingReviewRequest:"pending reviews"},o=["PULL_REQUEST_RULES"],l=["PULL_REQUEST_USER_STATE"],c=["PULL_REQUEST_MERGE_CONFLICT_STATE"],u=["PULL_REQUEST_STATE","PULL_REQUEST_MERGE_METHOD","PULL_REQUEST_REPO_STATE","UNKNOWN"]},20263:(e,t,r)=>{r.d(t,{BC:()=>l,JU:()=>u,Pk:()=>o});var s=r(74848),n=r(16522),i=r(12683),a=r(99418);let o=d(i.az),l=d(i.EY),c=e=>{let t,r,i,a=(0,n.c)(6);return a[0]!==e?({ref:r,...t}=e,a[0]=e,a[1]=t,a[2]=r):(t=a[1],r=a[2]),a[3]!==t||a[4]!==r?(i=(0,s.jsx)("div",{...t,ref:r}),a[3]=t,a[4]=r,a[5]=i):i=a[5],i};c.displayName="Div";let u=d(c);function d(e){let t=t=>{let r,i,o,l=(0,n.c)(7);l[0]!==t?(r=function(e){let{html:t,domPurifyConfig:r,...s}=e,n={...r,RETURN_DOM:!1,RETURN_DOM_FRAGMENT:!1};return{sanitizedHTML:a.default.sanitize(t,n),props:s}}(t),l[0]=t,l[1]=r):r=l[1];let{sanitizedHTML:c,props:u}=r;return l[2]!==c?(i={__html:c},l[2]=c,l[3]=i):i=l[3],l[4]!==u||l[5]!==i?(o=(0,s.jsx)(e,{...u,dangerouslySetInnerHTML:i}),l[4]=u,l[5]=i,l[6]=o):o=l[6],o};return t.displayName=`UnsafeHTML${e.displayName||e.name}`,t}try{o.displayName||(o.displayName="UnsafeHTMLBox")}catch{}try{l.displayName||(l.displayName="UnsafeHTMLText")}catch{}try{u.displayName||(u.displayName="UnsafeHTMLDiv")}catch{}},20582:(e,t,r)=>{r.d(t,{l:()=>a});var s=r(16522),n=r(94747),i=r(96379);function a(e){let t,r,a=(0,s.c)(8),{createAgentSessionPath:o,owner:l,repo:c,onSuccess:u,onError:d}=e;return a[0]!==o||a[1]!==l||a[2]!==c?(t=async e=>{let t=o||(l&&c?`/${l}/${c}/agent-sessions`:null);if(!t)throw Error("Either createAgentSessionPath or owner/repo must be provided");let r=new FormData;r.append("problem_statement",e.problemStatement),r.append("base_ref",e.baseRef),r.append("event_type",e.eventType),r.append("event_content",e.eventContent);let s=await (0,i.DI)(t,{method:"POST",body:r});if(s.redirected)return{success:!0,redirectUrl:s.url};if(!s.ok)throw Error(`Failed to create agent session: ${s.status}`);return{success:!0}},a[0]=o,a[1]=l,a[2]=c,a[3]=t):t=a[3],a[4]!==d||a[5]!==u||a[6]!==t?(r={mutationFn:t,onSuccess:u,onError:d},a[4]=d,a[5]=u,a[6]=t,a[7]=r):r=a[7],(0,n.n)(r)}},20622:(e,t,r)=>{r.d(t,{uT:()=>i});let s={baseComparisonInfo:"base_comparison_info",changeGroups:"change_groups",codeButton:"code_button",codeowners:"codeowners",threadPreviewPositioning:"thread_preview_positioning",diffEntries:"diff_entries",diffstat:"diffstat",header:"header",mergeBox:"merge_box",mergeInstructions:"merge_instructions",pendingReview:"pending_review",statusChecks:"status_checks",tabCounts:"tab_counts",threadPreviews:"thread_previews",diffViewUserSettings:"user_diff_view_settings",diffContextLines:"diff_entry_lines",richDiff:"rich_diff",description:"description"},n={abandonReview:"abandon_review",addCommentReaction:"add_comment_reaction",changeBase:"change_base",cleanupCodespaces:"cleanup_codespaces",convertToDraft:"convert_to_draft",createReviewComment:"create_review_comment",deleteHeadRef:"delete_head_ref",dequeuePullRequest:"dequeue_pull_request",disableAutoMerge:"disable_auto_merge",dismissReview:"dismiss_review",enableAutoMerge:"enable_auto_merge",generateChangeGroups:"generate_change_groups",markReadyForReview:"mark_ready_for_review",merge:"merge",removeCommentReaction:"remove_comment_reaction",reRequestReviewFromUser:"re_request_review_from_user",resolveThread:"resolve_thread",runActionRequiredWorkflows:"run_action_required_workflows",submitCopilotGroupsFeedback:"submit_copilot_groups_feedback",submitReview:"submit_review",submitSuggestedChanges:"apply_suggestions",unresolveThread:"unresolve_thread",updateReviewComment:"update_review_comment",updatePullRequestBranch:"update_pull_request_branch",updateTitle:"update_title",updateShowChangeGroupsPreference:"update_show_change_groups_preference",updateMergeBoxUserPreference:"update_merge_box_user_preference",updateWhitespacePreference:"update_whitespace_preference",hideComment:"hide_comment",unhideComment:"unhide_comment"},i={...s,...n};Object.values(s),Object.values(n)},29731:(e,t,r)=>{r.d(t,{G:()=>s});let s=e=>({})},30459:(e,t,r)=>{r.d(t,{S:()=>l,s:()=>o});var s=r(16522),n=r(96540),i=r(53419),a=r(49936);function o(){let e,t,r=(0,s.c)(6),o=(0,n.use)(a.I);if(!o)throw Error("useAnalytics must be used within an AnalyticsContext");let{appName:l,category:c,metadata:u}=o;r[0]!==l||r[1]!==c||r[2]!==u?(e=(e,t,r)=>{let s={react:!0,app_name:l,category:c,...u};(0,i.BI)(e,{...s,...void 0===r?{}:r,target:t})},r[0]=l,r[1]=c,r[2]=u,r[3]=e):e=r[3];let d=e;return r[4]!==d?(t={sendAnalyticsEvent:d},r[4]=d,r[5]=t):t=r[5],t}function l(){let e,t,r=(0,s.c)(4),{sendAnalyticsEvent:n}=o();r[0]!==n?(e=e=>{n("analytics.click",void 0,void 0===e?{}:e)},r[0]=n,r[1]=e):e=r[1];let i=e;return r[2]!==i?(t={sendClickAnalyticsEvent:i},r[2]=i,r[3]=t):t=r[3],t}},33303:(e,t,r)=>{function s(){return Promise.resolve()}function n(){return new Promise(window.requestAnimationFrame)}async function i(e,t){let r,s=new Promise(t=>{r=self.setTimeout(t,e)});if(!t)return s;try{var n;await Promise.race([s,(n=t,new Promise((e,t)=>{let r=Error("aborted");r.name="AbortError",n.aborted?t(r):n.addEventListener("abort",()=>t(r))}))])}catch(e){throw self.clearTimeout(r),e}}function a(e){let t=[];return function(r){t.push(r),1===t.length&&queueMicrotask(()=>{let r=t.slice(0);t.length=0,e(r)})}}r.d(t,{G$:()=>n,k2:()=>s,rK:()=>a,uk:()=>i})},34665:(e,t,r)=>{r.d(t,{a:()=>s});function s(e,t,r){try{let s=new URL(e,window.location.origin).pathname.split("/").filter(Boolean);if(s.length<7||"actions"!==s[2]||"runs"!==s[3]||"job"!==s[5])return null;let n=s[0],i=s[1],a=s[4],o=s[6];if(!n||!i||!o||!a)return null;return{type:"job",id:parseInt(o,10),repoName:i,repoOwner:n,workflow:{id:parseInt(a,10)},jobName:r||null,jobFailed:t}}catch{return null}}},39619:(e,t,r)=>{r.d(t,{BX:()=>OpenCopilotChatEvent,HS:()=>a,Oc:()=>i,Tv:()=>c,Xr:()=>SymbolChangedEvent,f7:()=>o,fD:()=>l,qR:()=>n});var s=r(50467);let OpenCopilotChatEvent=class OpenCopilotChatEvent extends Event{constructor(e){super("open-copilot-chat",{bubbles:!1,cancelable:!0}),(0,s._)(this,"payload",void 0),this.payload=e}};Event;let AddCopilotChatReferenceEvent=class AddCopilotChatReferenceEvent extends Event{constructor(e,t=!1,r){super("add-copilot-chat-reference",{bubbles:!1,cancelable:!0}),(0,s._)(this,"reference",void 0),(0,s._)(this,"openPanel",void 0),(0,s._)(this,"id",void 0),this.reference=e,this.openPanel=t,this.id=r}};let SymbolChangedEvent=class SymbolChangedEvent extends Event{constructor(e){super("symbol-changed",{bubbles:!1,cancelable:!0}),(0,s._)(this,"context",void 0),this.context=e}};function n(e){window.dispatchEvent(new OpenCopilotChatEvent(e))}function i(e,t=!1,r){window.dispatchEvent(new AddCopilotChatReferenceEvent(e,t,r))}function a(e){return window.addEventListener("open-copilot-chat",e),()=>{window.removeEventListener("open-copilot-chat",e)}}function o(e){return window.addEventListener("add-copilot-chat-reference",e),()=>{window.removeEventListener("add-copilot-chat-reference",e)}}function l(e){return window.addEventListener("search-copilot-chat",e),()=>{window.removeEventListener("search-copilot-chat",e)}}function c(e){return window.addEventListener("symbol-changed",e),()=>{window.removeEventListener("symbol-changed",e)}}},40104:(e,t,r)=>{r.d(t,{D6:()=>d,Fo:()=>c,MV:()=>h,zB:()=>m});var s=r(50467),n=r(82075),i=r(96540);let a=(0,n.A)("sessionStorage"),o="session-storage-update",l=class UseSessionStorageUpdateEvent extends Event{constructor(e,t){super(o),(0,s._)(this,"storageKey",void 0),(0,s._)(this,"storageValue",void 0),this.storageKey=e,this.storageValue=t}};function c(e,t){let r=(0,i.useRef)(t);(0,i.useEffect)(()=>{r.current=t});let[s,n]=(0,i.useState)(()=>{let t=a.getItem(e);return t?JSON.parse(t):r.current}),c=(0,i.useCallback)(t=>{n(void 0!==t?t:r.current),void 0===t?a.removeItem(e):a.setItem(e,JSON.stringify(t)),document.dispatchEvent(new l(e,t))},[e]),u=(0,i.useCallback)(e=>{r.current=e},[r]);return(0,i.useEffect)(()=>{function t(t){if(t.storageKey===e){let e=t.storageValue;n(void 0!==e?e:r.current)}}document.addEventListener(o,t);let s=a.getItem(e);return s?n(JSON.parse(s)):n(r.current),()=>{document.removeEventListener(o,t)}},[e]),[s,c,u]}function u(e){let t=a.getKeys(),r=[];for(let s in t)t[s]?.startsWith(e)&&r.push(t[s]);return r}function d(e){for(let t of e)a.removeItem(t),document.dispatchEvent(new l(t,void 0))}function h(e){let t=[];for(let r of u(e)){let e=a.getItem(r);null!=e&&t.push(JSON.parse(e))}return t}function m(e){d(u(e))}},40235:(e,t,r)=>{r.d(t,{x:()=>E});var s,n=r(96540),i=r(70263),a=r(11418),o=r(73056),l=r(74848),c=r(16522),u=r(10204);let d=(0,n.createContext)(null),h=null;function m(e,t){let r=u.KK.parse(e);if(!r)throw Error(`Invalid channel name. Did you forget to sign it with \`signChannel("${e}")\`?`);return h||(h=new u.m0),h.add({topic:r,subscriber:t}),{unsubscribe:()=>{h?.delete({topic:r,subscriber:t})}}}try{d.displayName||(d.displayName="AliveTestContext")}catch{}try{(s=function(e){let t,r,s=(0,c.c)(4),{children:i,initialMessages:a}=e;return s[0]!==a?(t=()=>{let e=[];if(a)for(let[t,r]of a){let s=window.setTimeout(()=>{var e=t,s=r;if(null===h)throw Error('Test helper `dispatchAliveTestMessage` called outside `AliveTestProvider`. Please wrap your component under test in `AliveTestProvider` from "@github-ui/use-alive/test-utils".');for(let t of Array.from(h.subscribers(e)))t(s)},0);e.push(s)}return()=>{for(let t of(h=null,e))window.clearTimeout(t)}},s[0]=a,s[1]=t):t=s[1],(0,n.useEffect)(t),s[2]!==i?(r=(0,l.jsx)(d,{value:m,children:i}),s[2]=i,s[3]=r):r=s[3],r}).displayName||(s.displayName="AliveTestProvider")}catch{}function E(e,t){let r=(0,i.A)(),s=(0,n.use)(d);(0,n.useEffect)(()=>{let n=()=>{},i=!1;return async function(){if(e){if("function"==typeof s){let r=await s(e,t);r&&(n=r.unsubscribe);return}try{let s=await (0,a.H)();if(i)return;let l=(0,o.$)(s,e,t);l?.unsubscribe&&(r()?n=l.unsubscribe:l.unsubscribe())}catch(e){console.error(e)}}}(),()=>{i=!0,n()}},[e,t,r,s])}},45533:(e,t,r)=>{var s=r(7123),n=r(74848),i=r(16522),a=r(10422),o=r(17645),l=r(57224),c=r(50129),u=r(81353);function d(e){let t,r,s,d,h,m,E,_=(0,i.c)(20),{channels:g,defaultMergeMethod:S,pullRequestId:f,basePageDataUrl:p,viewerLogin:C,helpUrl:R,enabledFeatures:T}=e,v=(0,a.Uz)(S)?S:o.q$.MERGE;_[0]!==f?(t={pullRequestId:f,view:"show"},_[0]=f,_[1]=t):t=_[1];let N=t;return _[2]!==T?(r=T??{},_[2]=T,_[3]=r):r=_[3],_[4]!==g||_[5]!==R||_[6]!==C?(s=(0,n.jsx)("div",{className:"ml-md-6 pl-md-3 my-3","data-testid":"mergebox-partial",children:(0,n.jsx)(a.S4,{helpUrl:R,viewerLogin:C,channels:g})}),_[4]=g,_[5]=R,_[6]=C,_[7]=s):s=_[7],_[8]!==v||_[9]!==s?(d=(0,n.jsx)(a.OC,{defaultMergeMethod:v,children:s}),_[8]=v,_[9]=s,_[10]=d):d=_[10],_[11]!==N||_[12]!==d?(h=(0,n.jsx)(l.y,{appName:"pull_request",category:"mergebox_react_partial",metadata:N,children:d}),_[11]=N,_[12]=d,_[13]=h):h=_[13],_[14]!==r||_[15]!==h?(m=(0,n.jsx)(u.s,{features:r,children:h}),_[14]=r,_[15]=h,_[16]=m):m=_[16],_[17]!==p||_[18]!==m?(E=(0,n.jsx)(c.Kg,{basePageDataUrl:p,children:m}),_[17]=p,_[18]=m,_[19]=E):E=_[19],E}try{d.displayName||(d.displayName="MergeBoxPartial")}catch{}(0,s.k)("mergebox-partial",{Component:d})},46747:(e,t,r)=>{r.d(t,{d:()=>a});var s=r(31223),n=r(23125),i=r(96540);let a=(e,t,{leading:r=!1,maxWait:a,trailing:o=!0,onChangeBehavior:l="flush"}={})=>{let c=(0,s.M)(e),u=(0,i.useMemo)(()=>{let e=void 0===a?{leading:r,trailing:o}:{leading:r,trailing:o,maxWait:a};return(0,n.A)((...e)=>c.current(...e),t,e)},[c,t,r,a,o]);return(0,i.useEffect)(()=>()=>{u?.[l]()},[u,l]),u}},48845:(e,t,r)=>{r.d(t,{R:()=>i,hp:()=>n,ol:()=>AuthSessionExpiredError,q$:()=>a});var s=r(96379);let FetchRequestError=class FetchRequestError extends Error{constructor(e){super("Unable to perform this operation. Please try again later."),this.name="FetchRequestError",this.cause=e}};let ServerUnavailableError=class ServerUnavailableError extends Error{constructor(e){super("Unable to perform this operation. Please try again later."),this.name="ServerUnavailableError",this.cause=e}};let JSONParseFetchError=class JSONParseFetchError extends Error{constructor(e){super("Unable to read response from the server. Please try again later."),this.name="JSONParseFetchError",this.cause=e}};let AuthSessionExpiredError=class AuthSessionExpiredError extends Error{constructor(){super("Unable to perform this operation. Please try again later."),this.name="AuthSessionExpiredError"}};async function n(e){try{return await e.json()}catch(e){if(e instanceof Error&&"AbortError"===e.name)return;throw new JSONParseFetchError(e)}}function i(e,t,r){if(!e.ok){if(e.status>=500)throw new ServerUnavailableError(e.status);if(r)throw r;if(t)throw Error(t?.error||"Unknown error occurred",{cause:e.status});throw Error(`HTTP ${e.status}`)}}async function a(e,t){try{return await (0,s.Sr)(e,t)}catch(e){throw new FetchRequestError(e)}}},50129:(e,t,r)=>{r.d(t,{Kg:()=>o,Yu:()=>l});var s=r(74848),n=r(16522),i=r(96540);let a=(0,i.createContext)(null);function o(e){let t,r,i=(0,n.c)(5),{children:o,basePageDataUrl:l}=e;i[0]!==l?(t={basePageDataUrl:l},i[0]=l,i[1]=t):t=i[1];let c=t;return i[2]!==o||i[3]!==c?(r=(0,s.jsx)(a,{value:c,children:o}),i[2]=o,i[3]=c,i[4]=r):r=i[4],r}function l(){let e=(0,i.use)(a);if(!e)throw Error("usePageDataContext must be used within a PageDataContextProvider");return e}try{a.displayName||(a.displayName="PageDataContext")}catch{}try{o.displayName||(o.displayName="PageDataContextProvider")}catch{}},51880:(e,t,r)=>{r.d(t,{B:()=>l});var s=r(74848),n=r(29731),i=r(34164),a=r(24347),o=r(29622);let l=({style:e,className:t,children:r})=>{let{isSelectable:l}=(0,a.v)(),{alignment:c}=(0,o.m)();return(0,s.jsx)("div",{className:(0,i.$)("LeadingContent-module__container--cui6v",l&&"LeadingContent-module__isSelectable--EzWvg","center"===c&&"LeadingContent-module__centerAligned--f1Pzo",t),...(0,n.G)("list-view-item-leading-content"),style:e,children:r})};try{l.displayName||(l.displayName="ListItemLeadingContent")}catch{}},53331:(e,t,r)=>{r.d(t,{A:()=>a,K:()=>n});var s=r(50467);function n(e){let t=[...e.querySelectorAll("meta[name=html-safe-nonce]")].map(e=>e.content);if(t.length<1)throw Error("could not find html-safe-nonce on document");return t}let i=class ResponseError extends Error{constructor(e,t){super(`${e} for HTTP ${t.status}`),(0,s._)(this,"response",void 0),this.response=t,this.name="ResponseError"}};function a(e,t,r=!1){let s=t.headers.get("content-type")||"";if(!r&&!s.startsWith("text/html"))throw new i(`expected response with text/html, but was ${s}`,t);if(r&&!(s.startsWith("text/html")||s.startsWith("application/json")))throw new i(`expected response with text/html or application/json, but was ${s}`,t);let n=t.headers.get("x-html-safe");if(n){if(!e.includes(n))throw new i("response X-HTML-Safe nonce did not match",t)}else throw new i("missing X-HTML-Safe nonce",t)}},53419:(e,t,r)=>{let s;r.d(t,{BI:()=>_,Ti:()=>g,lA:()=>m,sX:()=>E});var n=r(70837),i=r(18679),a=r(82075),o=r(56038),l=r(82518);let{getItem:c}=(0,a.A)("localStorage"),u="dimension_",d=["utm_source","utm_medium","utm_campaign","utm_term","utm_content","scid"];try{let e=(0,n.O)("octolytics");delete e.baseContext,s=new i.s(e)}catch{}function h(e){let t=(0,n.O)("octolytics").baseContext||{};if(t)for(let[e,r]of(delete t.app_id,delete t.event_url,delete t.host,Object.entries(t)))e.startsWith(u)&&(t[e.replace(u,"")]=r,delete t[e]);let r=o.XC?.querySelector("meta[name=visitor-payload]");for(let[e,s]of(r&&Object.assign(t,JSON.parse(atob(r.content))),new URLSearchParams(window.location.search)))d.includes(e.toLowerCase())&&(t[e]=s);return t.staff=(0,l.Xl)().toString(),Object.assign(t,e)}function m(e){s?.sendPageView(h(e))}function E(){return o.XC?.head?.querySelector('meta[name="current-catalog-service"]')?.content}function _(e,t={}){let r=E(),n=r?{service:r}:{};for(let[e,r]of Object.entries(t))null!=r&&(n[e]=`${r}`);s&&(h(n),s.sendEvent(e||"unknown",h(n)))}function g(e){return Object.fromEntries(Object.entries(e).map(([e,t])=>[e,JSON.stringify(t)]))}},53885:(e,t,r)=>{r.d(t,{e:()=>a});var s=r(16522),n=r(37285),i=r(50129);function a(e,t){let r,a=(0,s.c)(2),{basePageDataUrl:o}=(0,i.Yu)(),l=`${o}/page_data/${e}`;return t&&(l+=`?${t}`),a[0]!==l?(r=(0,n.RD)(l),a[0]=l,a[1]=r):r=a[1],r}},54571:(e,t,r)=>{r.d(t,{I:()=>i});var s=r(96540),n=r(76629);function i(e,t,r=[]){let a=(0,s.useCallback)(e,r),o=(0,n.BP)(),l=(0,s.useRef)(o===n.O8.ClientRender),[c,u]=(0,s.useState)(()=>o===n.O8.ClientRender?a():t),d=(0,s.useCallback)(()=>{u(a)},[a]);return(0,s.useLayoutEffect)(()=>{l.current||u(a),l.current=!1},[a,...r]),[c,d]}},55630:(e,t,r)=>{r.d(t,{A:()=>a});var s=r(74848),n=r(16522);function i(e){let t,r,i,a,o,l,c,u,d,h,m,E,_=(0,n.c)(26);if(_[0]!==e){let{size:s,as:n,icon:u,bg:d,"aria-label":h,style:m,className:E,...g}=e;c=s,t=u,i=d,r=h,l=m,a=E,o=g,_[0]=e,_[1]=t,_[2]=r,_[3]=i,_[4]=a,_[5]=o,_[6]=l,_[7]=c}else t=_[1],r=_[2],i=_[3],a=_[4],o=_[5],l=_[6],c=_[7];let g=void 0===c?32:c;return _[8]!==i||_[9]!==g?(u={backgroundColor:i,overflow:"hidden",borderWidth:0,borderRadius:"50%",borderStyle:"solid",borderColor:"var(--borderColor-default)",width:g,height:g},_[8]=i,_[9]=g,_[10]=u):u=_[10],_[11]!==g||_[12]!==l?(d={display:"flex",width:g,height:g,alignItems:"center",justifyContent:"center",...l},_[11]=g,_[12]=l,_[13]=d):d=_[13],_[14]!==t||_[15]!==r||_[16]!==g?(h=(0,s.jsx)(t,{size:g,"aria-label":r}),_[14]=t,_[15]=r,_[16]=g,_[17]=h):h=_[17],_[18]!==a||_[19]!==o||_[20]!==d||_[21]!==h?(m=(0,s.jsx)("div",{style:d,className:a,...o,children:h}),_[18]=a,_[19]=o,_[20]=d,_[21]=h,_[22]=m):m=_[22],_[23]!==u||_[24]!==m?(E=(0,s.jsx)("div",{style:u,children:m}),_[23]=u,_[24]=m,_[25]=E):E=_[25],E}let a=i;try{i.displayName||(i.displayName="CircleOcticon")}catch{}},65025:(e,t,r)=>{r.d(t,{r:()=>h});var s=r(74848),n=r(16522),i=r(38621),a=r(72511),o=r(84268),l=r(10095),c=r(20263);let u="FlashError-module__Flash--fKR6V";var d=r(34164);function h(e){let t,r=(0,n.c)(9),{prefix:i,errorMessageUsingPrefix:l,errorMessageNotUsingPrefix:h,hideRuleErrorsTitle:E,ruleErrors:_,helpUrl:g,flashRef:S}=e,f=(_?.length||0)>0;return r[0]!==h||r[1]!==l||r[2]!==S||r[3]!==g||r[4]!==E||r[5]!==f||r[6]!==i||r[7]!==_?(t=l||h?(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(a.A,{id:"flash",variant:"danger",className:(0,d.$)("d-flex flex-items-center flex-justify-between",u),tabIndex:-1,ref:S,children:l?(0,s.jsxs)("div",{children:[i," ",(0,s.jsx)(c.BC,{className:"FlashError-module__SafeHTMLText--J8lL9",html:l}),f&&g&&(0,s.jsx)(o.A,{href:`${g}/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/about-rulesets`,className:"FlashError-module__Link--doNrG",children:"Learn more about rulesets."})]}):h&&(0,s.jsx)("div",{children:h})}),f&&(0,s.jsxs)("div",{className:u,children:[!E&&(0,s.jsx)("div",{className:"FlashError-module__ruleViolationsTitle--rHHNU",children:"Repository rule violations found:"}),_?.map(m)]})]}):null,r[0]=h,r[1]=l,r[2]=S,r[3]=g,r[4]=E,r[5]=f,r[6]=i,r[7]=_,r[8]=t):t=r[8],t}function m(e){return(0,s.jsxs)("div",{className:"FlashError-module__ruleViolationRow--ekTTM",children:[(0,s.jsx)(l.A,{icon:i.XCircleFillIcon,size:16,className:"FlashError-module__Octicon--U4ZWa"}),(0,s.jsx)("div",{className:"FlashError-module__ruleViolationText--Oe758",children:e})]},e)}try{h.displayName||(h.displayName="FlashError")}catch{}},65411:(e,t,r)=>{r.d(t,{JR:()=>CopilotAuthTokenProvider,UZ:()=>o,yj:()=>CopilotAuthTokenUnlicensedError});var s=r(50467),n=r(65620),i=r(82075),a=r(96379);let o="COPILOT_AUTH_TOKEN";let CopilotAuthTokenProvider=class CopilotAuthTokenProvider{async getAuthToken(){if(this.isUnlicensed)throw new CopilotAuthTokenUnlicensedError("User is not licensed for Copilot");let e=this.getLocalStorageAuthToken();return e?this.validateAuthToken(e):this.fetchAuthToken()}setLocalStorageAuthToken(e){this.copilotLocalStorage.setItem(this.storageKey,JSON.stringify(e.serialize()))}getLocalStorageAuthToken(){let e=this.copilotLocalStorage.getItem(this.storageKey);return e?n.Y.deserialize(JSON.parse(e)):null}removeLocalStorageAuthToken(){this.copilotLocalStorage.removeItem(this.storageKey)}async validateAuthToken(e){return e.needsRefreshing(this.ssoOrgIDs)?this.fetchAuthToken():e}fetchAuthToken(e=!1){return e&&(this.currentAuthTokenRequest=null),this.currentAuthTokenRequest||(this.currentAuthTokenRequest=this._fetchAuthToken(e)),this.currentAuthTokenRequest}async _fetchAuthToken(e=!1){try{let t=e?`${this.tokenEndpoint}?force_refresh=true`:this.tokenEndpoint,r=await (0,a.lS)(t,{method:"POST"});if(r.ok){let e=await r.json(),t=n.Y.fromResult(e,this.ssoOrgIDs);return this.ssoOrgIDs=t.ssoOrgIDs,this.setLocalStorageAuthToken(t),this.isUnlicensed=!1,t}if(404===r.status)throw this.isUnlicensed=!0,new CopilotAuthTokenUnlicensedError("Copilot auth token endpoint not found (404)");throw Error("Failed to mint new auth token")}finally{this.currentAuthTokenRequest=null}}constructor(e,t="/github-copilot/chat/token",r=o){(0,s._)(this,"tokenEndpoint",void 0),(0,s._)(this,"storageKey",void 0),(0,s._)(this,"ssoOrgIDs",void 0),(0,s._)(this,"currentAuthTokenRequest",void 0),(0,s._)(this,"isUnlicensed",void 0),(0,s._)(this,"copilotLocalStorage",void 0),this.ssoOrgIDs=e,this.currentAuthTokenRequest=null,this.isUnlicensed=!1,this.copilotLocalStorage=(0,i.A)("localStorage",{throwQuotaErrorsOnSet:!1,ttl:864e5}),this.storageKey=r,this.tokenEndpoint=t}};let CopilotAuthTokenUnlicensedError=class CopilotAuthTokenUnlicensedError extends Error{constructor(e){super(e),this.name="CopilotAuthTokenUnlicensedError"}}},65620:(e,t,r)=>{r.d(t,{Y:()=>AuthToken});var s=r(50467);let AuthToken=class AuthToken{get authorizationHeaderValue(){return`GitHub-Bearer ${this.value}`}needsRefreshing(e){return this.isExpired||this.ssoChanged(e)}get isExpired(){let e=new Date(this.expiration);return new Date(Date.UTC(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate(),e.getUTCHours(),e.getUTCMinutes(),e.getUTCSeconds(),e.getUTCMilliseconds()))e.includes(t))&&e.every(e=>this.ssoOrgIDs.includes(e)))}static fromResult(e,t){return new AuthToken(e.token,e.expiration,e.ssoOrgIDs??t)}serialize(){return{value:this.value,expiration:this.expiration,ssoOrgIDs:this.ssoOrgIDs}}static deserialize(e){return new AuthToken(e.value,e.expiration,e.ssoOrgIDs)}constructor(e,t,r){(0,s._)(this,"value",void 0),(0,s._)(this,"expiration",void 0),(0,s._)(this,"ssoOrgIDs",void 0),this.value=e,this.expiration=t,this.ssoOrgIDs=r}}},65820:(e,t,r)=>{r.d(t,{H:()=>n});var s=r(48845);async function n(e,t,r){let n=await (0,s.q$)(e);if(401===n.status){let e=r.getQueryData(t);if(!e)throw new s.ol;return e}let i=await (0,s.hp)(n);return(0,s.R)(n),i}},65964:(e,t,r)=>{r.d(t,{e:()=>E});var s=r(74848),n=r(29731),i=r(9141),a=r(10436),o=r(34164),l=r(96540),c=r(35220),u=r(29622),d=r(49744),h=r(27603);let m=()=>(0,s.jsx)("div",{className:"UnreadIndicator-module__container--X6F4o",children:(0,s.jsx)("span",{className:"sr-only",...(0,n.G)("list-view-item-unread-indicator"),children:"New activity."})});try{m.displayName||(m.displayName="ListItemUnreadIndicator")}catch{}function E({icon:e,color:t,description:r,newActivity:E=!1,className:_,children:g,size:S=16,...f}){let{variant:p}=(0,c.e)(),{setStatus:C}=(0,h.x)(),{setHasNewActivity:R}=(0,d.I)(),T=r?.trim(),{alignment:v}=(0,u.m)(),N=(0,i.tv)(S,16);(0,l.useEffect)(()=>{R(E)},[E,R]),(0,l.useEffect)(()=>{T&&C(T)},[C,T]);let I="center"===v?0:("compact"===p?18:E?13:22)-N/2;return(0,s.jsxs)("div",{className:(0,o.$)("LeadingVisual-module__outer--qS9Ac",_),style:{marginTop:`${I}px`},...f,children:[(0,s.jsx)("div",{children:(0,s.jsxs)("div",{...(0,n.G)("list-view-leading-visual"),className:"LeadingVisual-module__inner--GeEeG",style:{width:`${N}px`,height:`${N}px`},children:[e&&(0,s.jsx)(a.m4,{"aria-label":"",icon:e,color:t}),g,T&&(0,s.jsx)("span",{className:"sr-only",...(0,n.G)("leading-visual-text-description"),children:T})]})}),E&&(0,s.jsx)(m,{})]})}try{E.displayName||(E.displayName="ListItemLeadingVisual")}catch{}},69759:(e,t,r)=>{r.d(t,{B:()=>s});function s(e,t){let r=e.createElement("template");return r.innerHTML=t,e.importNode(r.content,!0)}},70263:(e,t,r)=>{r.d(t,{A:()=>i});var s=r(16522),n=r(96540);function i(){let e,t,r,i=(0,s.c)(3),a=(0,n.useRef)(!1);i[0]===Symbol.for("react.memo_cache_sentinel")?(e=()=>a.current,i[0]=e):e=i[0];let o=e;return i[1]===Symbol.for("react.memo_cache_sentinel")?(t=()=>(a.current=!0,()=>{a.current=!1}),r=[],i[1]=t,i[2]=r):(t=i[1],r=i[2]),(0,n.useLayoutEffect)(t,r),o}},72931:(e,t,r)=>{function s(){return{favicon:document.querySelector('.js-site-favicon[type="image/svg+xml"]'),faviconFallback:document.querySelector('.js-site-favicon[type="image/png"]')}}function n(e){let{favicon:t,faviconFallback:r}=s();if(!t||!r)return;let n=l();e=e.substr(0,e.lastIndexOf(".")),t.href=e=`${e}${n}.svg`;let i=t.href.substr(0,t.href.lastIndexOf("."));r.href=`${i}.png`}function i(){let{favicon:e,faviconFallback:t}=s();if(!e||!t)return;let r=l(),n=e.href.indexOf("-dark.svg"),i=e.href.substr(0,-1!==n?n:e.href.lastIndexOf("."));e.href=`${i}${r}.svg`,t.href=`${i}${r}.png`}function a(e){let{favicon:t,faviconFallback:r}=s();if(!t||!r)return;let n=t.getAttribute("data-base-href"),i="default"===e?"":`-${e}`,a=l();n&&(t.href=`${n}${i}${a}.svg`,r.href=`${n}${i}${a}.png`)}function o(){a("default")}function l(){return window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?"-dark":""}r.d(t,{Ow:()=>n,gd:()=>o,iD:()=>a,uQ:()=>i})},73017:(e,t,r)=>{r.d(t,{$6:()=>c,JR:()=>o,Jg:()=>d,vb:()=>a});var s=r(74848),n=r(16522),i=r(12683);let a=h(i.az),o=h(i.EY),l=e=>{let t,r,i,a=(0,n.c)(6);return a[0]!==e?({ref:r,...t}=e,a[0]=e,a[1]=t,a[2]=r):(t=a[1],r=a[2]),a[3]!==t||a[4]!==r?(i=(0,s.jsx)("div",{...t,ref:r}),a[3]=t,a[4]=r,a[5]=i):i=a[5],i};l.displayName="Div";let c=h(l),u=e=>{let t,r,i,a=(0,n.c)(6);return a[0]!==e?({ref:r,...t}=e,a[0]=e,a[1]=t,a[2]=r):(t=a[1],r=a[2]),a[3]!==t||a[4]!==r?(i=(0,s.jsx)("bdi",{...t,ref:r}),a[3]=t,a[4]=r,a[5]=i):i=a[5],i};u.displayName="Bdi";let d=h(u);function h(e){let t=t=>{let r,i,a,o,l=(0,n.c)(8);l[0]!==t?({html:r,...i}=t,l[0]=t,l[1]=r,l[2]=i):(r=l[1],i=l[2]);let c=i;return l[3]!==r?(a=r?{__html:r}:void 0,l[3]=r,l[4]=a):a=l[4],l[5]!==c||l[6]!==a?(o=(0,s.jsx)(e,{...c,dangerouslySetInnerHTML:a}),l[5]=c,l[6]=a,l[7]=o):o=l[7],o};return t.displayName=`SafeHTML${e.displayName||e.name}`,t}try{a.displayName||(a.displayName="VerifiedHTMLBox")}catch{}try{o.displayName||(o.displayName="VerifiedHTMLText")}catch{}try{c.displayName||(c.displayName="VerifiedHTMLDiv")}catch{}try{d.displayName||(d.displayName="VerifiedHTMLBdi")}catch{}},73056:(e,t,r)=>{r.d(t,{$:()=>a});var s=r(10204),n=r(33303);let i=new WeakMap;function a(e,t,r){let a;if(!e)throw Error("Not connected to alive");if(!t)throw Error("No channel name");let o=s.KK.parse(t);if(!o)throw Error("Invalid channel name");let l={subscriber:{dispatchEvent:e=>{e instanceof CustomEvent&&r(e.detail.data)}},topic:o},c=((a=i.get(e))||(a={subscribe:(0,n.rK)(t=>e.subscribe(t.flat())),unsubscribeAll:(0,n.rK)(t=>e.unsubscribeAll(...t))},i.set(e,a)),a);return c.subscribe([l]),{unsubscribe:()=>c.unsubscribeAll(l.subscriber)}}},77430:(e,t,r)=>{r.d(t,{r:()=>o});var s=r(74848),n=r(16522),i=r(56038),a=r(12683);function o(e){let t,r,o,l,c,u,d,h=(0,n.c)(15);h[0]!==e?({ref:r,src:o,size:c,sx:l,...t}=e,h[0]=e,h[1]=t,h[2]=r,h[3]=o,h[4]=l,h[5]=c):(t=h[1],r=h[2],o=h[3],l=h[4],c=h[5]);let m=void 0===c?20:c;if(h[6]!==m||h[7]!==o){let e=new URL(o,i.fV.origin);e.searchParams.has("size")||e.searchParams.has("s")||e.searchParams.set("size",String(2*Number(m))),u=e.toString(),h[6]=m,h[7]=o,h[8]=u}else u=h[8];let E=u;return h[9]!==E||h[10]!==t||h[11]!==r||h[12]!==m||h[13]!==l?(d=(0,s.jsx)(a.eu,{src:E,size:m,"data-testid":"github-avatar",sx:l,...t,ref:r}),h[9]=E,h[10]=t,h[11]=r,h[12]=m,h[13]=l,h[14]=d):d=h[14],d}try{o.displayName||(o.displayName="GitHubAvatar")}catch{}},78314:(e,t,r)=>{r.d(t,{d:()=>o,t:()=>l});var s=r(74848),n=r(16522),i=r(96540);let a=i.createContext({});function o(e){let t,r=(0,n.c)(3),{repository:i,children:o}=e;return r[0]!==o||r[1]!==i?(t=(0,s.jsxs)(a,{value:i,children:[" ",o," "]}),r[0]=o,r[1]=i,r[2]=t):t=r[2],t}function l(){return i.use(a)}try{a.displayName||(a.displayName="CurrentRepositoryContext")}catch{}try{o.displayName||(o.displayName="CurrentRepositoryProvider")}catch{}},79064:(e,t,r)=>{r.d(t,{Jt:()=>h,iI:()=>m});var s=r(50467),n=r(31635),i=r(16522),a=r(45062),o=r(65411),l=r(82075),c=r(96540),u=r(25641),d=r(35247);let CopilotLocalStorage=class CopilotLocalStorage{get selectedThreadID(){return this.localStorage.getItem(this.COPILOT_SELECTED_THREAD_ID_STORAGE_KEY)}set selectedThreadID(e){let t=this.COPILOT_SELECTED_THREAD_ID_STORAGE_KEY;null==e?this.localStorage.removeItem(t):this.localStorage.setItem(t,e)}getModel(e){this.lastCheckedModelVersion!==this.CURRENT_MODEL_STORAGE_VERSION&&null===e&&this.checkAndClearModelSelection();let t=this.mediumStorage.getItem(this.COPILOT_SELECTED_MODEL_STORAGE_KEY(e));return null===t?t:JSON.parse(t)}setModel(e,t){this.mediumStorage.setItem(this.COPILOT_SELECTED_MODEL_STORAGE_KEY(e),JSON.stringify(t)),e&&this.mediumStorage.setItem(this.COPILOT_SELECTED_MODEL_STORAGE_KEY(null),JSON.stringify(t))}checkAndClearModelSelection(){this.lastCheckedModelVersion=this.CURRENT_MODEL_STORAGE_VERSION,d.W.clearModelSelectionForDefaultChange&&this.longStorage.getItem(this.COPILOT_SELECTED_MODEL_VERSION_KEY)!==this.CURRENT_MODEL_STORAGE_VERSION&&(this.mediumStorage.removeItem(this.COPILOT_SELECTED_MODEL_STORAGE_KEY(null)),this.longStorage.setItem(this.COPILOT_SELECTED_MODEL_VERSION_KEY,this.CURRENT_MODEL_STORAGE_VERSION))}get settings(){let e=this.localStorage.getItem(this.COPILOT_SETTINGS_STORAGE_KEY(this.selectedThreadID));return null===e?e:JSON.parse(e)}set settings(e){this.localStorage.setItem(this.COPILOT_SETTINGS_STORAGE_KEY(this.selectedThreadID),JSON.stringify(e))}getPanelHeight(){let e=this.localStorage.getItem(this.COPILOT_PANEL_HEIGHT);return e?parseInt(e):this.DEFAULT_PANEL_HEIGHT}setPanelHeight(e){let t=this.COPILOT_PANEL_HEIGHT;this.localStorage.setItem(t,e.toString())}getPanelWidth(){let e=this.localStorage.getItem(this.COPILOT_PANEL_WIDTH);return e?parseInt(e):this.DEFAULT_PANEL_WIDTH}setPanelWidth(e){let t=this.COPILOT_PANEL_WIDTH;this.localStorage.setItem(t,e.toString())}getRepoCustomInstructionsState(){return"false"!==this.localStorage.getItem(this.COPILOT_REPO_CUSTOM_INSTRUCTIONS_STATE_KEY)}setRepoCustomInstructionsState(e){let t=this.COPILOT_REPO_CUSTOM_INSTRUCTIONS_STATE_KEY;this.localStorage.setItem(t,e.toString())}getCollapsedState(){return"false"!==this.sessionStorage.getItem(this.COPILOT_COLLAPSED_STATE_KEY)}setCollapsedState(e){let t=this.COPILOT_COLLAPSED_STATE_KEY;this.sessionStorage.setItem(t,e.toString())}getSelectedTopic(e){return this.localStorage.getItem(this.COPILOT_SELECTED_TOPIC_STORAGE_KEY(e))}setSelectedTopic(e,t){if(null==t)return void this.localStorage.removeItem(this.COPILOT_SELECTED_TOPIC_STORAGE_KEY(e));let r=this.COPILOT_SELECTED_TOPIC_STORAGE_KEY(e);this.localStorage.setItem(r,t)}getSavedMessage(e){return this.localStorage.getItem(this.COPILOT_SAVED_USER_MESSAGE_KEY(e))}setSavedMessage(e,t){this.setSavedMessageFast(e,t)}setSavedMessageFast(e,t){let r=this.COPILOT_SAVED_USER_MESSAGE_KEY(e);null==t?this.localStorage.removeItem(r):this.localStorage.setItem(r,t)}clearSavedUserMessage(e){this.localStorage.removeItem(this.COPILOT_SAVED_USER_MESSAGE_KEY(e))}getSavedUserMessageOnError(e){return this.localStorage.getItem(this.COPILOT_SAVED_USER_MESSAGE_ON_ERROR_KEY(e))}setSavedUserMessageOnError(e,t){let r=this.COPILOT_SAVED_USER_MESSAGE_ON_ERROR_KEY(e);null==t?this.localStorage.removeItem(r):this.localStorage.setItem(r,t)}clearSavedUserMessageOnError(e){this.localStorage.removeItem(this.COPILOT_SAVED_USER_MESSAGE_ON_ERROR_KEY(e))}getEntrypointMessage(e){return this.getEntrypointMessageImpl(this.COPILOT_ENTRYPOINT_MESSAGE_KEY(e))}getEntrypointMessageImpl(e){let t,r=this.localStorage.getItem(e);if(null==r)return null;try{t=JSON.parse(r)}catch{return null}return t&&t.message?{message:t.message,references:t.references,model:t.model,mediaContent:t.mediaContent,branch:t.branch}:null}clearEntrypointMessage(e){this.localStorage.removeItem(this.COPILOT_ENTRYPOINT_MESSAGE_KEY(e))}setEntrypointMessage({message:e,references:t,model:r,mediaContent:s,threadID:n}){this.setEntrypointMessageImpl({message:e,references:t,model:r,mediaContent:s,key:this.COPILOT_ENTRYPOINT_MESSAGE_KEY(n)})}setEntrypointMessageImpl({message:e,references:t,model:r,mediaContent:s,branch:n,key:i}){null==e?this.localStorage.removeItem(i):this.localStorage.setItem(i,JSON.stringify({message:e,references:t,model:r,mediaContent:s,branch:n}))}getTaskEntrypointMessage(){return this.getEntrypointMessageImpl(this.COPILOT_TASK_ENTRYPOINT_MESSAGE_KEY)}setTaskEntrypointMessage(e,t,r){this.setEntrypointMessageImpl({message:e,references:t,branch:r,key:this.COPILOT_TASK_ENTRYPOINT_MESSAGE_KEY})}getLoopEntrypointMessage(){return this.getEntrypointMessageImpl(this.COPILOT_LOOP_ENTRYPOINT_MESSAGE_KEY)}setLoopEntrypointMessage(e,t){this.setEntrypointMessageImpl({message:e,references:t,key:this.COPILOT_LOOP_ENTRYPOINT_MESSAGE_KEY})}getSparkEntrypointMessage(){return this.getEntrypointMessageImpl(this.COPILOT_SPARK_ENTRYPOINT_MESSAGE_KEY)}setSparkEntrypointMessage(e){this.setEntrypointMessageImpl({message:e,key:this.COPILOT_SPARK_ENTRYPOINT_MESSAGE_KEY})}getLastUsedRepository(){let e=this.localStorage.getItem(this.COPILOT_LAST_USED_REPOSITORY_KEY);if(!e)return null;try{return JSON.parse(e)}catch{return null}}setLastUsedRepository(e){this.localStorage.setItem(this.COPILOT_LAST_USED_REPOSITORY_KEY,JSON.stringify(e))}getCurrentReferences(e){let t=this.COPILOT_CURRENT_REFERENCES_KEY(e),r=this.localStorage.getItem(t);return r?JSON.parse(r):null}setCurrentReferences(e,t){let r=this.COPILOT_CURRENT_REFERENCES_KEY(e),s=t.filter((e,r)=>r===t.findIndex(t=>(0,u.Vb)(e)===(0,u.Vb)(t)));this.localStorage.setItem(r,JSON.stringify(s))}clearCurrentReferences(e){let t=this.COPILOT_CURRENT_REFERENCES_KEY(e);this.localStorage.removeItem(t)}migrateNullThreadToNewThread(e){let t=this.getSavedMessage(null);this.setSavedMessageFast(null,null),t&&this.setSavedMessageFast(e,t);let r=this.getCurrentReferences(null);this.clearCurrentReferences(null),r&&this.setCurrentReferences(e,r);let s=this.settings;s&&this.localStorage.setItem(this.COPILOT_SETTINGS_STORAGE_KEY(e),JSON.stringify(s)),this.selectedThreadID=e,this.localStorage.removeItem(this.COPILOT_SETTINGS_STORAGE_KEY(null))}getImmersiveSidebarCollapsedState(){let e=this.localStorage.getItem(this.COPILOT_IMMERSIVE_SIDEBAR_COLLAPSED_STATE_KEY);return null===e||"true"===e}setImmersiveSidebarCollapsedState(e){this.localStorage.setItem(this.COPILOT_IMMERSIVE_SIDEBAR_COLLAPSED_STATE_KEY,String(e))}getCopilotDiffReferences(){let e=this.localStorage.getItem(this.COPILOT_DIFF_REFERENCES_KEY);return e?JSON.parse(e):null}setCopilotDiffReferences(e){let t=Array.isArray(e)?e:[e];this.localStorage.setItem(this.COPILOT_DIFF_REFERENCES_KEY,JSON.stringify(t))}removeCopilotDiffReferences(){this.localStorage.removeItem(this.COPILOT_DIFF_REFERENCES_KEY)}clearAuthToken(){this.localStorage.removeItem(o.UZ)}getMeterBannerFlag(){let e=this.localStorage.getItem(this.COPILOT_METER_BANNER_FLAG);return null===e?null:"true"===e}setMeterBannerFlag(e){this.localStorage.setItem(this.COPILOT_METER_BANNER_FLAG,String(e))}removeMeterBannerFlag(){this.localStorage.removeItem(this.COPILOT_METER_BANNER_FLAG)}getQuotaExceededBannerFlag(){let e=this.tempStorage.getItem(this.COPILOT_QUOTA_EXCEEDED_BANNER_FLAG);return null===e?null:"true"===e}setQuotaExceededBannerFlag(e){this.tempStorage.setItem(this.COPILOT_QUOTA_EXCEEDED_BANNER_FLAG,String(e))}removeQuotaExceededBannerFlag(){this.tempStorage.removeItem(this.COPILOT_QUOTA_EXCEEDED_BANNER_FLAG)}getCodingAgentQuotaBannerDismissed(e){if(!e)return!1;let t=`${this.COPILOT_CODING_AGENT_QUOTA_BANNER_DISMISSED_PREFIX}${e}`;return"true"===this.localStorage.getItem(t)}setCodingAgentQuotaBannerDismissed(e){if(!e)return;let t=`${this.COPILOT_CODING_AGENT_QUOTA_BANNER_DISMISSED_PREFIX}${e}`;this.localStorage.setItem(t,"true")}getSkuSuccessBannerFlag(e){return this.getBooleanFlag(this.skuSuccessBannerKey(e))}setSkuSuccessBannerFlag(e,t){this.tempStorage.setItem(this.skuSuccessBannerKey(e),String(t))}removeSkuSuccessBannerFlag(e){this.tempStorage.removeItem(this.skuSuccessBannerKey(e))}getAnimationFlag(){return this.getBooleanFlag(this.COPILOT_ANIMATION_FLAG)}setAnimationFlag(e){this.tempStorage.setItem(this.COPILOT_ANIMATION_FLAG,String(e))}removeAnimationFlag(){this.tempStorage.removeItem(this.COPILOT_ANIMATION_FLAG)}getTracingRequestedFlag(){return"true"===this.localStorage.getItem(this.COPILOT_TRACING_REQUESTED_FLAG)}setTracingRequestedFlag(e){this.localStorage.setItem(this.COPILOT_TRACING_REQUESTED_FLAG,String(e))}getWrapCodeLines(){return"true"===this.localStorage.getItem(this.COPILOT_WRAP_CODE_LINES_KEY)}setWrapCodeLines(e){this.localStorage.setItem(this.COPILOT_WRAP_CODE_LINES_KEY,String(e))}getBooleanFlag(e,t=this.tempStorage){let r=t.getItem(e);return null===r?null:"true"===r}getSpacesMcpBannerDismissalCount(){let e=this.localStorage.getItem(this.COPILOT_SPACES_MCP_BANNER_DISMISSAL_COUNT);return e?parseInt(e,10):0}setSpacesMcpBannerDismissalCount(e){let t=this.COPILOT_SPACES_MCP_BANNER_DISMISSAL_COUNT;this.localStorage.setItem(t,e.toString())}getSpacesSelectedTab(){return this.localStorage.getItem(this.COPILOT_SPACES_SELECTED_TAB)||"personal"}setSpacesSelectedTab(e){let t=this.COPILOT_SPACES_SELECTED_TAB;this.localStorage.setItem(t,e)}getLastSelectedSpace(){let e=this.localStorage.getItem(this.COPILOT_SPACES_SELECTION_MENU_LAST_SELECTED_SPACE);if(e)try{return JSON.parse(e)}catch{return}}setLastSelectedSpace(e){let t=this.COPILOT_SPACES_SELECTION_MENU_LAST_SELECTED_SPACE;void 0===e?this.localStorage.removeItem(t):this.localStorage.setItem(t,JSON.stringify(e))}getActiveMode(){return this.longStorage.getItem(this.COPILOT_ACTIVE_MODE_KEY)}setActiveMode(e){this.longStorage.setItem(this.COPILOT_ACTIVE_MODE_KEY,e)}getLandedOnAgentsView(){return"true"===this.sessionStorage.getItem(this.COPILOT_LANDED_ON_AGENTS_VIEW_KEY)}setLandedOnAgentsView(e){this.sessionStorage.setItem(this.COPILOT_LANDED_ON_AGENTS_VIEW_KEY,String(e))}skuSuccessBannerKey(e){return`COPILOT_${e.toUpperCase()}_SUCCESS_BANNER_FLAG`}retrieveAndValidateRequestIDs(){let e=this.localStorage.getItem(this.COPILOT_MESSAGE_REQUEST_ID_KEY);try{let t=JSON.parse(e||"[]");if(!Array.isArray(t)||0===t.length)return[];return t.filter(e=>"string"==typeof e.messageID&&"string"==typeof e.requestID)}catch{return[]}}addRequestID(e,t){let r=this.retrieveAndValidateRequestIDs(),s=r.findIndex(t=>t.messageID===e);-1!==s&&r.splice(s,1),r.push({messageID:e,requestID:t}),r.length>this.MAX_MESSAGE_REQUEST_ID_STORAGE_COUNT&&r.shift(),this.localStorage.setItem(this.COPILOT_MESSAGE_REQUEST_ID_KEY,JSON.stringify(r))}getRequestID(e){let t=this.retrieveAndValidateRequestIDs().find(t=>t.messageID===e);return t?t.requestID:void 0}constructor(){(0,s._)(this,"COPILOT_REPO_CUSTOM_INSTRUCTIONS_STATE_KEY","COPILOT_REPO_CUSTOM_INSTRUCTIONS_STATE_KEY"),(0,s._)(this,"COPILOT_SELECTED_THREAD_ID_STORAGE_KEY","COPILOT_SELECTED_THREAD_ID_STORAGE_KEY"),(0,s._)(this,"COPILOT_COLLAPSED_STATE_KEY","COPILOT_COLLAPSED_STATE_KEY"),(0,s._)(this,"COPILOT_IMMERSIVE_SIDEBAR_COLLAPSED_STATE_KEY","COPILOT_IMMERSIVE_SIDEBAR_COLLAPSED_STATE_KEY"),(0,s._)(this,"COPILOT_PANEL_HEIGHT","COPILOT_PANEL_HEIGHT"),(0,s._)(this,"DEFAULT_PANEL_HEIGHT",600),(0,s._)(this,"COPILOT_PANEL_WIDTH","COPILOT_PANEL_WIDTH"),(0,s._)(this,"COPILOT_ENTRYPOINT_MESSAGE_KEY",e=>e?`COPILOT_ENTRYPOINT_MESSAGE_KEY_${e}`:"COPILOT_ENTRYPOINT_MESSAGE_KEY"),(0,s._)(this,"COPILOT_TASK_ENTRYPOINT_MESSAGE_KEY","COPILOT_TASK_ENTRYPOINT_MESSAGE_KEY"),(0,s._)(this,"COPILOT_LOOP_ENTRYPOINT_MESSAGE_KEY","COPILOT_LOOP_ENTRYPOINT_MESSAGE_KEY"),(0,s._)(this,"COPILOT_SPARK_ENTRYPOINT_MESSAGE_KEY","COPILOT_SPARK_ENTRYPOINT_MESSAGE_KEY"),(0,s._)(this,"COPILOT_MESSAGE_REQUEST_ID_KEY","COPILOT_MESSAGE_REQUEST_ID_KEY"),(0,s._)(this,"COPILOT_METER_BANNER_FLAG","COPILOT_METER_BANNER_FLAG"),(0,s._)(this,"COPILOT_QUOTA_EXCEEDED_BANNER_FLAG","COPILOT_QUOTA_EXCEEDED_BANNER_FLAG"),(0,s._)(this,"COPILOT_CODING_AGENT_QUOTA_BANNER_DISMISSED_PREFIX","COPILOT_CODING_AGENT_QUOTA_BANNER_DISMISSED_"),(0,s._)(this,"COPILOT_ANIMATION_FLAG","COPILOT_ANIMATION_FLAG"),(0,s._)(this,"COPILOT_WRAP_CODE_LINES_KEY","COPILOT_WRAP_CODE_LINES_KEY"),(0,s._)(this,"COPILOT_TRACING_REQUESTED_FLAG","COPILOT_TRACING_REQUESTED_FLAG"),(0,s._)(this,"COPILOT_DIFF_REFERENCES_KEY","COPILOT_DIFF_REFERENCES_KEY"),(0,s._)(this,"COPILOT_SPACES_MCP_BANNER_DISMISSAL_COUNT","COPILOT_SPACES_MCP_BANNER_DISMISSAL_COUNT"),(0,s._)(this,"COPILOT_SPACES_SELECTED_TAB","COPILOT_SPACES_SELECTED_TAB"),(0,s._)(this,"COPILOT_SPACES_SELECTION_MENU_LAST_SELECTED_SPACE","COPILOT_SPACES_SELECTION_MENU_LAST_SELECTED_SPACE"),(0,s._)(this,"COPILOT_LAST_USED_REPOSITORY_KEY","COPILOT_LAST_USED_REPOSITORY_KEY"),(0,s._)(this,"COPILOT_ACTIVE_MODE_KEY","COPILOT_ACTIVE_MODE_KEY"),(0,s._)(this,"COPILOT_SELECTED_MODEL_VERSION_KEY","COPILOT_SELECTED_MODEL_VERSION"),(0,s._)(this,"COPILOT_LANDED_ON_AGENTS_VIEW_KEY","COPILOT_LANDED_ON_AGENTS_VIEW_KEY"),(0,s._)(this,"lastCheckedModelVersion",null),(0,s._)(this,"MAX_MESSAGE_REQUEST_ID_STORAGE_COUNT",100),(0,s._)(this,"DEFAULT_PANEL_WIDTH",480),(0,s._)(this,"CURRENT_MODEL_STORAGE_VERSION","7"),(0,s._)(this,"COPILOT_SELECTED_MODEL_STORAGE_KEY",e=>`COPILOT_SELECTED_MODEL_${e}`),(0,s._)(this,"COPILOT_SETTINGS_STORAGE_KEY",e=>`COPILOT_SETTINGS_${e}`),(0,s._)(this,"COPILOT_SAVED_USER_MESSAGE_KEY",e=>`COPILOT_SAVED_USER_MESSAGE_${e}`),(0,s._)(this,"COPILOT_SAVED_USER_MESSAGE_ON_ERROR_KEY",e=>`COPILOT_SAVED_USER_MESSAGE_ON_ERROR_${e}`),(0,s._)(this,"COPILOT_CURRENT_REFERENCES_KEY",e=>`COPILOT_CURRENT_REFERENCES_${e}`),(0,s._)(this,"COPILOT_SELECTED_TOPIC_STORAGE_KEY",e=>`COPILOT_SELECTED_TOPIC_${e}`),(0,s._)(this,"localStorage",(0,l.A)("localStorage",{throwQuotaErrorsOnSet:!1,ttl:864e5})),(0,s._)(this,"mediumStorage",(0,l.A)("localStorage",{throwQuotaErrorsOnSet:!1,ttl:24192e5})),(0,s._)(this,"longStorage",(0,l.A)("localStorage",{throwQuotaErrorsOnSet:!1})),(0,s._)(this,"tempStorage",(0,l.A)("localStorage",{throwQuotaErrorsOnSet:!1,ttl:18e5})),(0,s._)(this,"sessionStorage",(0,l.A)("sessionStorage",{throwQuotaErrorsOnSet:!1,ttl:864e5}))}};(0,n.Cg)([(0,a.s)(100)],CopilotLocalStorage.prototype,"setSavedMessage",null);let h=new CopilotLocalStorage;function m(e,t){let r,s,n,a=(0,i.c)(7);a[0]!==e?(r=()=>h[e](),a[0]=e,a[1]=r):r=a[1];let[o,l]=(0,c.useState)(r);a[2]!==t?(s=e=>{h[t](e),l(e)},a[2]=t,a[3]=s):s=a[3];let u=s;return a[4]!==o||a[5]!==u?(n=[o,u],a[4]=o,a[5]=u,a[6]=n):n=a[6],n}},90891:(e,t,r)=>{r.d(t,{Ee:()=>o,Ts:()=>a,b4:()=>l});var s=r(53331),n=r(69759),i=r(51987);async function a(e,t,r){let a=new Request(t,r);(0,i.tV)(a.headers);let o=await self.fetch(a);if(o.status<200||o.status>=300)throw Error(`HTTP ${o.status}${o.statusText||""}`);return(0,s.A)((0,s.K)(e),o),(0,n.B)(e,await o.text())}function o(e,t,r=1e3,s=[200],n=[202]){return async function r(a){let o=new Request(e,t);(0,i.tV)(o.headers);let l=await self.fetch(o);if(n.includes(l.status))return await new Promise(e=>setTimeout(e,a)),r(1.5*a);if(s.includes(l.status))return l;if(l.status<200||l.status>=300)throw Error(`HTTP ${l.status}${l.statusText||""}`);throw Error(`Unexpected ${l.status} response status from poll endpoint`)}(r)}async function l(e,t,r){let{wait:s=500,acceptedStatusCodes:n=[200],max:a=3,attempt:o=0}=r||{},c=async()=>new Promise((r,l)=>{setTimeout(async()=>{try{let s=new Request(e,t);(0,i.tV)(s.headers);let l=await self.fetch(s);if(n.includes(l.status)||o+1===a)return r(l);r("retry")}catch(e){l(e)}},s*o)}),u=await c();return"retry"!==u?u:l(e,t,{wait:s,acceptedStatusCodes:n,max:a,attempt:o+1})}}}]); +//# sourceMappingURL=64665-d436c18583f8.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/6488-6dac972ad892.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/6488-6dac972ad892.js" new file mode 100644 index 0000000..ee92073 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/6488-6dac972ad892.js" @@ -0,0 +1,4 @@ +performance.mark("js-parse-end:6488-6dac972ad892.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[6488],{24212:(e,t,o)=>{o.d(t,{q:()=>r});var n="";function r(e){return e.split(` +`).reduce(function(e,t){var o,r,d,p=function(e){var t=i.exec(e);if(!t)return null;var o=t[2]&&0===t[2].indexOf("native"),r=t[2]&&0===t[2].indexOf("eval"),l=a.exec(t[2]);return r&&null!=l&&(t[2]=l[1],t[3]=l[2],t[4]=l[3]),{file:o?null:t[2],methodName:t[1]||n,arguments:o?[t[2]]:[],lineNumber:t[3]?+t[3]:null,column:t[4]?+t[4]:null}}(t)||((o=l.exec(t))?{file:o[2],methodName:o[1]||n,arguments:[],lineNumber:+o[3],column:o[4]?+o[4]:null}:null)||function(e){var t=c.exec(e);if(!t)return null;var o=t[3]&&t[3].indexOf(" > eval")>-1,r=s.exec(t[3]);return o&&null!=r&&(t[3]=r[1],t[4]=r[2],t[5]=null),{file:t[3],methodName:t[1]||n,arguments:t[2]?t[2].split(","):[],lineNumber:t[4]?+t[4]:null,column:t[5]?+t[5]:null}}(t)||((r=u.exec(t))?{file:r[2],methodName:r[1]||n,arguments:[],lineNumber:+r[3],column:r[4]?+r[4]:null}:null)||((d=m.exec(t))?{file:d[3],methodName:d[1]||n,arguments:[],lineNumber:+d[4],column:d[5]?+d[5]:null}:null);return p&&e.push(p),e},[])}var i=/^\s*at (.*?) ?\(((?:file|https?|blob|chrome-extension|native|eval|webpack|rsc||\/|[a-z]:\\|\\\\).*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i,a=/\((\S*)(?::(\d+))(?::(\d+))\)/,l=/^\s*at (?:((?:\[object object\])?.+) )?\(?((?:file|ms-appx|https?|webpack|rsc|blob):.*?):(\d+)(?::(\d+))?\)?\s*$/i,c=/^\s*(.*?)(?:\((.*?)\))?(?:^|@)((?:file|https?|blob|chrome|webpack|rsc|resource|\[native).*?|[^@]*bundle)(?::(\d+))?(?::(\d+))?\s*$/i,s=/(\S+) line (\d+)(?: > eval line \d+)* > eval/i,m=/^\s*(?:([^@]*)(?:\((.*?)\))?@)?(\S.*?):(\d+)(?::(\d+))?\s*$/i,u=/^\s*at (?:((?:\[object object\])?[^\\/]+(?: \[as \S+\])?) )?\(?(.*?):(\d+)(?::(\d+))?\)?\s*$/i},77065:(e,t,o)=>{o.d(t,{Bb:()=>V,TT:()=>q});var n={};o.r(n),o.d(n,{ClipboardItem:()=>clipboarditem_ClipboardItem,apply:()=>p,isPolyfilled:()=>d,isSupported:()=>u});var r={};o.r(r),o.d(r,{apply:()=>v,checkVisibility:()=>h,isPolyfilled:()=>f,isSupported:()=>b});var i={};o.r(i),o.d(i,{apply:()=>k,clipboardRead:()=>y,clipboardWrite:()=>g,isPolyfilled:()=>E,isSupported:()=>w});var a={};o.r(a),o.d(a,{apply:()=>S,isPolyfilled:()=>I,isSupported:()=>C,withResolvers:()=>T});var l={};o.r(l),o.d(l,{apply:()=>O,cancelIdleCallback:()=>A,isPolyfilled:()=>j,isSupported:()=>x,requestIdleCallback:()=>P});var c={};o.r(c),o.d(c,{apply:()=>L,isPolyfilled:()=>R,isSupported:()=>N});let s=new WeakMap,m=new WeakMap;let clipboarditem_ClipboardItem=class clipboarditem_ClipboardItem{constructor(e,t={}){if(0===Object.keys(e).length)throw TypeError("Empty dictionary argument");s.set(this,e),m.set(this,t.presentationStyle||"unspecified")}get presentationStyle(){return m.get(this)||"unspecified"}get types(){return Object.freeze(Object.keys(s.get(this)||{}))}async getType(e){let t=s.get(this);if(t&&e in t){let o=await t[e];return"string"==typeof o?new Blob([o],{type:e}):o}throw new DOMException("Failed to execute 'getType' on 'ClipboardItem': The type was not found","NotFoundError")}};function u(){try{return new globalThis.ClipboardItem({"text/plain":Promise.resolve("")}),!0}catch{return!1}}function d(){return globalThis.ClipboardItem===clipboarditem_ClipboardItem}function p(){u()||(globalThis.ClipboardItem=clipboarditem_ClipboardItem)}function h({checkOpacity:e=!1,checkVisibilityCSS:t=!1}={}){if(!this.isConnected)return!1;let o=getComputedStyle(this);if("contents"===o.getPropertyValue("display")||t&&"visible"!==o.getPropertyValue("visibility"))return!1;let n=this;for(;n;){let t=n===this?o:getComputedStyle(n);if("none"===t.getPropertyValue("display")||e&&"0"===t.getPropertyValue("opacity")||n!==this&&"hidden"===t.getPropertyValue("content-visibility"))return!1;n=!n.parentElement&&n.getRootNode()instanceof ShadowRoot?n.getRootNode().host:n.parentElement}return!0}function b(){return"checkVisibility"in Element.prototype&&"function"==typeof Element.prototype.checkVisibility}function f(){return Element.prototype.checkVisibility===h}function v(){b()||(Element.prototype.checkVisibility=h)}async function g(e){if(0===e.length)return;let t=e[0],o=await t.getType(t.types.includes("text/plain")?"text/plain":t.types[0]);return navigator.clipboard.writeText("string"==typeof o?o:await o.text())}async function y(){return[new ClipboardItem({"text/plain":navigator.clipboard.readText()})]}function w(){return"clipboard"in navigator&&"function"==typeof navigator.clipboard.read&&"function"==typeof navigator.clipboard.write}function E(){return"clipboard"in navigator&&(navigator.clipboard.write===g||navigator.clipboard.read===y)}function k(){"clipboard"in navigator&&!w()&&(navigator.clipboard.write=g,navigator.clipboard.read=y)}function T(){let e={};return e.promise=new Promise((t,o)=>{e.resolve=t,e.reject=o}),e}function C(){return"withResolvers"in Promise&&"function"==typeof Promise.withResolvers}function I(){return"withResolvers"in Promise&&Promise.withResolvers===T}function S(){C()||Object.assign(Promise,{withResolvers:T})}function P(e,t={}){let o=Date.now(),n=t.timeout||0,r=Object.defineProperty({didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-o))},"didTimeout",{get:()=>Date.now()-o>n});return window.setTimeout(()=>{e(r)})}function A(e){clearTimeout(e)}function x(){return"function"==typeof globalThis.requestIdleCallback}function j(){return globalThis.requestIdleCallback===P&&globalThis.cancelIdleCallback===A}function O(){x()||(globalThis.requestIdleCallback=P,globalThis.cancelIdleCallback=A)}var M=o(913);function N(){return"u">typeof HTMLButtonElement&&"command"in HTMLButtonElement.prototype&&"source"in((globalThis.CommandEvent||{}).prototype||{})}function R(){return!/native code/i.test((globalThis.CommandEvent||{}).toString())}function L(){var e,t;let o,n;function r(e,t,o=!0){Object.defineProperty(e,t,{...Object.getOwnPropertyDescriptor(e,t),enumerable:o})}function i(e){return e&&"function"==typeof e.getRootNode?e.getRootNode():e&&e.parentNode?i(e.parentNode):e}document.addEventListener("invoke",e=>{"invoke"==e.type&&e.isTrusted&&(e.stopImmediatePropagation(),e.preventDefault())},!0),document.addEventListener("command",e=>{"command"==e.type&&e.isTrusted&&(e.stopImmediatePropagation(),e.preventDefault())},!0);let a=globalThis.ShadowRoot||function(){},l=new WeakMap,c=new WeakMap;let CommandEvent=class CommandEvent extends Event{constructor(e,t={}){super(e,t);const{source:o,command:n}=t;if(null!=o&&!(o instanceof Element))throw TypeError("source must be an element");l.set(this,o||null),c.set(this,void 0!==n?String(n):"")}get[Symbol.toStringTag](){return"CommandEvent"}get source(){if(!l.has(this))throw TypeError("illegal invocation");let e=l.get(this);if(!(e instanceof Element))return null;let t=i(e);return t!==i(this.target||document)?t.host:e}get command(){if(!c.has(this))throw TypeError("illegal invocation");return c.get(this)}get action(){throw Error("CommandEvent#action was renamed to CommandEvent#command")}get invoker(){throw Error("CommandEvent#invoker was renamed to CommandEvent#source")}};r(CommandEvent.prototype,"source"),r(CommandEvent.prototype,"command");let InvokeEvent=class InvokeEvent extends Event{constructor(){throw Error("InvokeEvent has been deprecated, it has been renamed to `CommandEvent`")}};let s=new WeakMap,m=new WeakMap;function u(e){for(let t of e)t.oncommand=Function("event",t.getAttribute("oncommand"))}Object.defineProperties(HTMLElement.prototype,{oncommand:{enumerable:!0,configurable:!0,get(){return d.takeRecords(),m.get(this)||null},set(e){let t=m.get(this)||null;t&&this.removeEventListener("command",t),m.set(this,"object"==typeof e||"function"==typeof e?e:null),"function"==typeof e&&this.addEventListener("command",e)}}});let d=new MutationObserver(e=>{for(let t of e){let{target:e}=t;"childList"===t.type?u(e.querySelectorAll("[oncommand]")):u([e])}});function p(e){if(e.defaultPrevented||"click"!==e.type)return;let t=e.target.closest("button[invoketarget], button[invokeaction], input[invoketarget], input[invokeaction]");if(t&&(console.warn("Elements with `invoketarget` or `invokeaction` are deprecated and should be renamed to use `commandfor` and `command` respectively"),t.matches("input")))throw Error("Input elements no longer support `commandfor`");let o=e.target.closest("button[commandfor], button[command]");if(!o)return;if(this.form&&"button"!==this.getAttribute("type"))throw e.preventDefault(),Error("Element with `commandFor` is a form participant. It should explicitly set `type=button` in order for `commandFor` to work. In order for it to act as a Submit button, it must not have command or commandfor attributes");if(o.hasAttribute("command")!==o.hasAttribute("commandfor")){let e=o.hasAttribute("command")?"command":"commandfor",t=o.hasAttribute("command")?"commandfor":"command";throw Error(`Element with ${e} attribute must also have a ${t} attribute to function.`)}if("show-popover"!==o.command&&"hide-popover"!==o.command&&"toggle-popover"!==o.command&&"show-modal"!==o.command&&"close"!==o.command&&!o.command.startsWith("--"))return void console.warn(`"${o.command}" is not a valid command value. Custom commands must begin with --`);let n=o.commandForElement;if(!n)return;let r=new CommandEvent("command",{command:o.command,source:o,cancelable:!0});if(n.dispatchEvent(r),r.defaultPrevented)return;let i=r.command.toLowerCase();if(n.popover){let e=!n.matches(":popover-open");e&&("toggle-popover"===i||"show-popover"===i)?n.showPopover({source:o}):e||"hide-popover"!==i||n.hidePopover()}else if("dialog"===n.localName){let e=!n.hasAttribute("open");e&&"show-modal"===i?n.showModal():e||"close"!==i||n.close()}}function h(e){e.addEventListener("click",p,!0)}d.observe(document,{subtree:!0,childList:!0,attributeFilter:["oncommand"]}),u(document.querySelectorAll("[oncommand]")),Object.defineProperties((globalThis.HTMLButtonElement||function(){}).prototype,{commandForElement:{enumerable:!0,configurable:!0,set(e){if(this.hasAttribute("invokeaction"))throw TypeError("Element has deprecated `invokeaction` attribute, replace with `command`");if(this.hasAttribute("invoketarget"))throw TypeError("Element has deprecated `invoketarget` attribute, replace with `commandfor`");if(null===e)this.removeAttribute("commandfor"),s.delete(this);else if(e instanceof Element){this.setAttribute("commandfor","");let t=i(e);i(this)===t||t===this.ownerDocument?s.set(this,e):s.delete(this)}else throw TypeError("commandForElement must be an element or null")},get(){if("button"!==this.localName)return null;if(this.hasAttribute("invokeaction")||this.hasAttribute("invoketarget"))return console.warn("Element has deprecated `invoketarget` or `invokeaction` attribute, use `commandfor` and `command` instead"),null;if(this.disabled)return null;if(this.form&&"button"!==this.getAttribute("type"))return console.warn("Element with `commandFor` is a form participant. It should explicitly set `type=button` in order for `commandFor` to work"),null;let e=s.get(this);if(e)if(e.isConnected)return e;else return s.delete(this),null;let t=i(this),o=this.getAttribute("commandfor");return(t instanceof Document||t instanceof a)&&o&&t.getElementById(o)||null}},command:{enumerable:!0,configurable:!0,get(){let e=this.getAttribute("command")||"";if(e.startsWith("--"))return e;let t=e.toLowerCase();switch(t){case"show-modal":case"close":case"toggle-popover":case"hide-popover":case"show-popover":return t}return""},set(e){this.setAttribute("command",e)}},invokeAction:{enumerable:!1,configurable:!0,get(){throw Error("invokeAction is deprecated. It has been renamed to command")},set(e){throw Error("invokeAction is deprecated. It has been renamed to command")}},invokeTargetElement:{enumerable:!1,configurable:!0,get(){throw Error("invokeTargetElement is deprecated. It has been renamed to command")},set(e){throw Error("invokeTargetElement is deprecated. It has been renamed to command")}}}),e=globalThis.HTMLElement||function(){},t=e=>{h(e),d.observe(e,{attributeFilter:["oncommand"]}),u(e.querySelectorAll("[oncommand]"))},o=e.prototype.attachShadow,e.prototype.attachShadow=function(e){let n=o.call(this,e);return t(n),n},n=e.prototype.attachInternals,e.prototype.attachInternals=function(){let e=n.call(this);return e.shadowRoot&&t(e.shadowRoot),e},h(document),Object.defineProperty(window,"CommandEvent",{value:CommandEvent,configurable:!0,writable:!0}),Object.defineProperty(window,"InvokeEvent",{value:InvokeEvent,configurable:!0,writable:!0})}let F=!1;try{F=!1===document.body.matches(":modal")}catch{F=!1}let D="object"==typeof globalThis&&"fromEntries"in Object&&"flatMap"in Array.prototype&&"trimEnd"in String.prototype&&"allSettled"in Promise&&"matchAll"in String.prototype&&"replaceAll"in String.prototype&&"any"in Promise&&"at"in String.prototype&&"at"in Array.prototype&&"hasOwn"in Object&&"abort"in AbortSignal&&"timeout"in AbortSignal&&"function"==typeof queueMicrotask&&"function"==typeof HTMLDialogElement&&F&&"function"==typeof AggregateError&&"function"==typeof BroadcastChannel&&"randomUUID"in crypto&&"replaceChildren"in Element.prototype&&"requestSubmit"in HTMLFormElement.prototype&&!0,_={clipboardItem:n,elementCheckVisibility:r,navigatorClipboard:i,requestIdleCallback:l,withResolvers:a,popover:M,commandAndCommandFor:c};function q(){return D&&Object.values(_).every(e=>e.isSupported())}function V(){for(let e of Object.values(_))e.isSupported()||e.apply()}}}]); +//# sourceMappingURL=6488-763fe25e8b86.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/65335.d69f52e48bac01d37b45.module.css" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/65335.d69f52e48bac01d37b45.module.css" new file mode 100644 index 0000000..be69532 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/65335.d69f52e48bac01d37b45.module.css" @@ -0,0 +1,2 @@ +.MarkdownReferencePreview-module__SegmentedControl--Q7TCz{font-size:var(--text-body-size-medium)}.ChatPanel-module__copilotChatPanel--Olv4b{height:48px;max-height:calc(100vh - 1rem - 60px);max-width:calc(100vw - 2rem);min-width:var(--panel-min-width);width:400px}.ChatPanel-module__copilotChatPanel--Olv4b.ChatPanel-module__openChat--FRUxy{height:var(--panel-height);min-height:var(--panel-min-height);width:var(--panel-width)}@media screen and (max-width:767px){.ChatPanel-module__copilotChatPanel--Olv4b{border-radius:unset!important;bottom:0!important;flex-grow:1;height:100%;max-height:100dvh;max-width:100dvw;min-height:unset;min-width:unset;right:0!important;width:100%}}@media screen and (max-width:767px)and (prefers-reduced-motion:no-preference){.ChatPanel-module__copilotChatPanel--Olv4b{animation:ChatPanel-module__Overlay--motion-scaleFade--WF0Ea .2s cubic-bezier(.33,1,.68,1) 0s 1 normal none running}}.ChatPanel-module__ChatPanelContainer--qsaKi{display:flex;flex-direction:column;height:100%;position:relative}.ChatPanel-module__verticalResizeTarget--YNU6i{height:.5rem;inset:0;position:absolute;width:100%;z-index:2}.ChatPanel-module__horizontalResizeTarget--s5u6t{height:100%;inset:0;position:absolute;width:8px;z-index:2}.ChatPanel-module__cornerResizeTarget--WmiTb{height:.5rem;inset:0;position:absolute;width:.5rem;z-index:2}.ChatPanel-module__panelContentContainer--nx0He{display:flex;flex-direction:column;flex-grow:1;max-height:100%}.Header-module__HeaderContainer--rObkM{align-items:center;border-color:var(--borderColor-default);display:flex;gap:var(--stack-gap-condensed);justify-content:space-between;padding:var(--base-size-8)}.Header-module__headerTitleContainer--Dl484{display:flex;flex:1;min-width:0}.Header-module__HeaderTitle--fAPdx{align-items:center;cursor:default;display:flex;flex-grow:1;font-size:var(--text-body-size-medium);gap:var(--stack-gap-condensed);min-width:0}.Header-module__headerActions--YEgVs{align-items:center;display:flex}.Header-module__betaLabel--oV8Ou{margin-right:var(--base-size-8)}.Header-module__actionButton--Zt7jn{color:var(--fgColor-muted)}.Header-module__buttonSeparator--W8lbr{background:var(--bgColor-muted);height:20px;margin-left:var(--base-size-8);margin-right:var(--base-size-8);width:1px}.PersonalInstructionsDialog-module__footerContainer--T9wxr{display:flex;flex-direction:row;gap:var(--base-size-8);justify-content:flex-end;padding:0 var(--base-size-16) var(--base-size-16)}.ExperimentsDialog-module__dialogContentContainer--mWDus{padding:var(--base-size-16)}.ExperimentsDialog-module__experimentsInput--Uko5H{margin-bottom:var(--base-size-8);margin-top:var(--base-size-8);width:100%}.PromptDialog-module__Dialog--gvqi7{overflow:auto}.PromptDialog-module__systemInstructionsTextarea--JIAZO{margin-bottom:var(--base-size-8);margin-top:var(--base-size-8)}.PromptDialog-module__temperatureFormControl--oJoQJ{padding-top:var(--base-size-16)}.PromptDialog-module__toolsSectionHeader--jFBxE{font-size:var(--text-title-size-medium);padding-bottom:var(--base-size-16);padding-top:var(--base-size-16)}.PromptDialog-module__deleteToolButton--PRDPZ{margin-top:var(--base-size-20)}.ThreadListView-module__loadingStateContainer--cQ2Y1{align-content:center;align-items:center;display:grid;flex-direction:column;gap:var(--stack-gap-condensed);height:100%;justify-items:center;padding:var(--base-size-16)}.ThreadListView-module__ActionList--vTS9v{overflow-y:auto}.ThreadListView-module__emptyStateContainer--RI0zV{color:var(--fgColor-muted);padding:var(--base-size-16)}.ThreadListView-module__errorStateContainer--xIKxr{padding:var(--base-size-16)}.ThreadListView-module__deleteAllButton--YxpmP{margin-left:var(--base-size-16);margin-top:var(--base-size-8)}.CopilotChat-module__CopilotChatContainer--fWXmM{position:relative}.CopilotChat-module__IconButton--jjRoQ{background-color:#0000;border-color:var(--borderColor-default);color:var(--fgColor-muted);margin-bottom:var(--base-size-4)}.CopilotChat-module__IconButton--jjRoQ:hover{background-color:var(--control-transparent-bgColor-hover,var(--color-action-list-item-default-hover-bg))}.CopilotChat-module__Popover--gWIEN{right:var(--base-size-4)}.CopilotChat-module__Popover_Content--o_2MF{margin-top:var(--base-size-8)}.CopilotChat-module__chatContentScrollContainer--eCNUB{display:flex;flex-grow:1;overflow-y:auto}.CopilotChat-module__chatViewContainer--F1fj4{display:flex;flex-direction:column;flex-grow:1;max-width:100%}.CopilotChat-module__menuPortalContainer--FUc3K{z-index:1000} +/*# sourceMappingURL=65335-b1aa7cfea8f6.js.map*/ \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/6623-e1e4ce59b9f9.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/6623-e1e4ce59b9f9.js" new file mode 100644 index 0000000..eaa98fc --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/6623-e1e4ce59b9f9.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:6623-e1e4ce59b9f9.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[6623],{61200:(e,a,t)=>{t.d(a,{h1:()=>y,jF:()=>R,Cf:()=>O});var l=t(74848),r=t(16522),s=t(77430),o=t(59672),i=t(26052),n=t(12683);function c(e){let a=e.path?.startsWith("/apps/")??!1;return(!a||e.login?.toLowerCase()!=="copilot-swe-agent")&&a}var d=t(11196);function u(e){let a,t=(0,r.c)(5),{renderTooltip:s,author:o,children:i}=e;if(!1===s){let e;return t[0]!==i?(e=(0,l.jsx)(l.Fragment,{children:i}),t[0]=i,t[1]=e):e=t[1],e}let n=`commits by ${o.login}`;return t[2]!==i||t[3]!==n?(a=(0,l.jsx)(d.m,{text:n,direction:"se",children:i}),t[2]=i,t[3]=n,t[4]=a):a=t[4],a}try{u.displayName||(u.displayName="AuthorTooltip")}catch{}var m=t(96540);let h={fontWeight:"bold",fontColor:"fg.default",includeTooltip:!1,avatarSize:void 0},p=(0,m.createContext)(h);function x(e){let a,t,s,o=(0,r.c)(7),{authorSettings:i,children:c}=e;o[0]!==i?(a=i??{},o[0]=i,o[1]=a):a=o[1],o[2]!==a?(t=(0,n.h1)(h,a),o[2]=a,o[3]=t):t=o[3];let d=t;return o[4]!==d||o[5]!==c?(s=(0,l.jsx)(p,{value:d,children:c}),o[4]=d,o[5]=c,o[6]=s):s=o[6],s}function g(){return(0,m.use)(p)||h}try{p.displayName||(p.displayName="AuthorSettingsContext")}catch{}try{x.displayName||(x.displayName="AuthorSettingsProvider")}catch{}var f=t(69497);function N(e){let a,t,s,o=(0,r.c)(9),{displayName:i,authorSettings:c}=e;return o[0]!==c.fontColor||o[1]!==c.fontWeight?(a={fontWeight:c.fontWeight,color:c.fontColor},o[0]=c.fontColor,o[1]=c.fontWeight,o[2]=a):a=o[2],o[3]!==i||o[4]!==a?(t=(0,l.jsx)(n.EY,{sx:a,className:"AuthorDisplayName-module__Text--i7M4Z",children:i}),o[3]=i,o[4]=a,o[5]=t):t=o[5],o[6]!==i||o[7]!==t?(s=(0,l.jsx)(f.A,{title:i,className:"AuthorDisplayName-module__truncate--Iw1IE",inline:!0,children:t}),o[6]=i,o[7]=t,o[8]=s):s=o[8],s}try{N.displayName||(N.displayName="AuthorDisplayName")}catch{}function y(e){let a,t,d,m,h,p,x=(0,r.c)(22),{author:f,repo:y,sx:j}=e,v=g();if(!f)return null;let _=`${f.login||"author"}`,C=f.avatarUrl,k=`${f.login||"author"}`,b=v.avatarSize;x[0]!==f?(a=c(f),x[0]=f,x[1]=a):a=x[1],x[2]!==f.avatarUrl||x[3]!==v.avatarSize||x[4]!==_||x[5]!==k||x[6]!==a?(t=(0,l.jsx)(s.r,{"aria-label":_,src:C,alt:k,size:b,square:a,className:"AuthorAvatar-module__authorAvatarImage--bQzij"}),x[2]=f.avatarUrl,x[3]=v.avatarSize,x[4]=_,x[5]=k,x[6]=a,x[7]=t):t=x[7];let S=t;return x[8]!==j?(d={...j},x[8]=j,x[9]=d):d=x[9],x[10]!==f.login||x[11]!==f.path||x[12]!==S?(m=f.path?(0,l.jsx)(n.N_,{href:f.path,"data-testid":"avatar-icon-link","data-hovercard-url":f.login?(0,o.dCN)({owner:f.login}):void 0,children:S}):S,x[10]=f.login,x[11]=f.path,x[12]=S,x[13]=m):m=x[13],x[14]!==f||x[15]!==v||x[16]!==y?(h=f.login?(0,l.jsx)(u,{author:f,renderTooltip:v.includeTooltip,children:(0,l.jsx)(n.N_,{muted:!0,href:(0,o.jQC)({repo:y,author:f.login}),"aria-label":`commits by ${f.login}`,"data-hovercard-url":(0,o.dCN)({owner:f.login}),sx:{fontWeight:v.fontWeight,color:v.fontColor,"&:hover":{color:v.fontColor}},className:"AuthorAvatar-module__authorHoverableLink--vw9qe",children:(0,l.jsx)(i.v,{login:f.login,profileName:f.profileName,isAgent:!1})})}):(0,l.jsx)(N,{displayName:f.displayName,authorSettings:v}),x[14]=f,x[15]=v,x[16]=y,x[17]=h):h=x[17],x[18]!==d||x[19]!==m||x[20]!==h?(p=(0,l.jsxs)(n.az,{sx:d,"data-testid":"author-avatar",className:"AuthorAvatar-module__AuthorAvatarContainer--Z1TF8",children:[m,h]}),x[18]=d,x[19]=m,x[20]=h,x[21]=p):p=x[21],p}try{y.displayName||(y.displayName="AuthorAvatar")}catch{}var j=t(84268),v=t(5524),_=t(57387);function C(e){let a,t,s,o,i=(0,r.c)(12),{authors:n,repo:c}=e,d=n.length,[u,h]=(0,m.useState)(!1),p=(0,m.useRef)(null),x=`Show ${d} authors`;return i[0]===Symbol.for("react.memo_cache_sentinel")?(a=()=>{h(!0)},i[0]=a):a=i[0],i[1]!==d||i[2]!==x?(t=(0,l.jsxs)(j.A,{as:"button","aria-label":x,"data-testid":"authors-dialog-anchor",onClick:a,ref:p,muted:!0,className:"AuthorsDialog-module__PrimerLink--EKj48",children:[d," ","people"]}),i[1]=d,i[2]=x,i[3]=t):t=i[3],i[4]!==d||i[5]!==n||i[6]!==u||i[7]!==c?(s=u&&(0,l.jsx)(_.l,{title:`${d} authors`,onClose:()=>{h(!1),setTimeout(()=>p.current?.focus(),25)},width:"medium",height:d>=12?"small":"auto",renderBody:()=>(0,l.jsx)(v.l,{"data-testid":"contributor-dialog-list",className:"AuthorsDialog-module__ActionList--qxNlU",children:n.map((e,a)=>(0,l.jsx)(k,{author:e,repo:c},`${e.login}_${a}`))})}),i[4]=d,i[5]=n,i[6]=u,i[7]=c,i[8]=s):s=i[8],i[9]!==t||i[10]!==s?(o=(0,l.jsxs)(l.Fragment,{children:[t,s]}),i[9]=t,i[10]=s,i[11]=o):o=i[11],o}function k(e){let a,t,i,n,d,u=(0,r.c)(16),{author:m,repo:h}=e,p=m.login??"";u[0]!==h||u[1]!==p?(a=(0,o.jQC)({repo:h,author:p}),u[0]=h,u[1]=p,u[2]=a):a=u[2];let x=m.avatarUrl,g=m.login??m.displayName;u[3]!==m?(t=c(m),u[3]=m,u[4]=t):t=u[4],u[5]!==m.avatarUrl||u[6]!==g||u[7]!==t?(i=(0,l.jsx)(s.r,{src:x,alt:g,"aria-hidden":"true",square:t,className:"AuthorsDialog-module__GitHubAvatar--lwnwX"}),u[5]=m.avatarUrl,u[6]=g,u[7]=t,u[8]=i):i=u[8];let N=m.login??m.displayName??"",y=m.login??m.displayName;return u[9]!==N||u[10]!==y?(n=(0,l.jsx)(f.A,{inline:!0,title:N,children:y}),u[9]=N,u[10]=y,u[11]=n):n=u[11],u[12]!==a||u[13]!==i||u[14]!==n?(d=(0,l.jsxs)(v.l.LinkItem,{"data-testid":"contributor-dialog-row",href:a,className:"AuthorsDialog-module__ActionList_LinkItem--DrLG5",children:[i,n]}),u[12]=a,u[13]=i,u[14]=n,u[15]=d):d=u[15],d}try{C.displayName||(C.displayName="AuthorsDialog")}catch{}try{k.displayName||(k.displayName="AuthorRow")}catch{}var b=t(24494);function S(e){let a,t,i,n=(0,r.c)(11),{authors:d,onBehalfOf:u}=e,m=g();if(n[0]!==m||n[1]!==d){let e;n[3]!==m?(e=(e,a)=>(0,l.jsx)(s.r,{"data-testid":"commit-stack-avatar",src:e.avatarUrl,alt:e.login??e.displayName,"data-hovercard-url":(0,o.dCN)({owner:e.login??""}),square:c(e),size:m.avatarSize},`${e.login}_${a}`),n[3]=m,n[4]=e):e=n[4],a=d.slice(0,5).map(e),n[0]=m,n[1]=d,n[2]=a}else a=n[2];return n[5]!==m||n[6]!==u?(t=u&&(0,l.jsx)(s.r,{"data-testid":"commit-stack-avatar",src:u.avatarUrl,alt:u.login??u.displayName,"data-hovercard-url":(0,o.qsO)({owner:u.login??""}),square:!0,size:m.avatarSize},`${u.login}_on_behalf_of`),n[5]=m,n[6]=u,n[7]=t):t=n[7],n[8]!==a||n[9]!==t?(i=(0,l.jsxs)(b.A,{children:[a,t]}),n[8]=a,n[9]=t,n[10]=i):i=n[10],i}try{S.displayName||(S.displayName="CommitAuthorStack")}catch{}var A=t(34164);function I(e){let a,t,s,c=(0,r.c)(9),{author:d,repo:m,className:h}=e,p=g();return d?(c[0]!==h?(a=(0,A.$)("AuthorLink-module__authorLinkContainer--kzOT6",h),c[0]=h,c[1]=a):a=c[1],c[2]!==d||c[3]!==p||c[4]!==m?(t=d.login?(0,l.jsx)(u,{author:d,renderTooltip:p.includeTooltip,children:(0,l.jsx)(n.N_,{muted:!0,href:(0,o.jQC)({repo:m,author:d.login}),"aria-label":`commits by ${d.login}`,"data-hovercard-url":(0,o.dCN)({owner:d.login}),sx:{fontWeight:p.fontWeight,color:p.fontColor,"&:hover":{color:p.fontColor}},className:"AuthorLink-module__authorNameLink--dCuQh",children:(0,l.jsx)(i.v,{login:d.login,profileName:d.profileName,isAgent:!1})})}):(0,l.jsx)(N,{displayName:d.displayName,authorSettings:p}),c[2]=d,c[3]=p,c[4]=m,c[5]=t):t=c[5],c[6]!==a||c[7]!==t?(s=(0,l.jsx)("div",{"data-testid":"author-link",className:a,children:t}),c[6]=a,c[7]=t,c[8]=s):s=c[8],s):null}try{I.displayName||(I.displayName="AuthorLink")}catch{}function B(e){let a,t,s,i,n=(0,r.c)(12),{org:c,className:d}=e;if(!c)return null;n[0]!==d?(a=(0,A.$)("d-flex flex-row flex-items-center",d),n[0]=d,n[1]=a):a=n[1];let u=c.path,m=`${c.login}'s org home page`;return n[2]!==c.login?(t=(0,o.qsO)({owner:c.login}),n[2]=c.login,n[3]=t):t=n[3],n[4]!==c.login||n[5]!==c.path||n[6]!==m||n[7]!==t?(s=(0,l.jsx)(j.A,{muted:!0,href:u,"aria-label":m,"data-hovercard-url":t,className:"OrgLink-module__orgLink--mWbZQ",children:c.login}),n[4]=c.login,n[5]=c.path,n[6]=m,n[7]=t,n[8]=s):s=n[8],n[9]!==a||n[10]!==s?(i=(0,l.jsx)("div",{className:a,children:s}),n[9]=a,n[10]=s,n[11]=i):i=n[11],i}try{B.displayName||(B.displayName="OrgLink")}catch{}var w=t(38621);let D="CommitAttribution-module__AuthorLink--oMvAS",L="CommitAttribution-module__CommitAttributionContainer--Si80C";function T(e){let a,t=(0,r.c)(3),{author:s,repo:o}=e;return t[0]!==s||t[1]!==o?(a=(0,l.jsx)(y,{author:s,repo:o}),t[0]=s,t[1]=o,t[2]=a):a=t[2],a}function $(e){let a,t,s,o,i=(0,r.c)(13),{author:n,committer:c,committerAttribution:d,onBehalfOf:u,repo:m}=e;return i[0]!==n||i[1]!==c||i[2]!==d?(a=[n],c&&d&&a.push(c),i[0]=n,i[1]=c,i[2]=d,i[3]=a):a=i[3],i[4]!==a||i[5]!==u?(t=(0,l.jsx)(S,{authors:a,onBehalfOf:u}),i[4]=a,i[5]=u,i[6]=t):t=i[6],i[7]!==n||i[8]!==m?(s=(0,l.jsx)(I,{author:n,repo:m,className:D}),i[7]=n,i[8]=m,i[9]=s):s=i[9],i[10]!==t||i[11]!==s?(o=(0,l.jsxs)(l.Fragment,{children:[t,s]}),i[10]=t,i[11]=s,i[12]=o):o=i[12],o}function F(e){let a,t,s,o=(0,r.c)(12),{authors:i,onBehalfOf:n,repo:c}=e;if(o[0]!==i||o[1]!==n?(a=(0,l.jsx)(S,{authors:i,onBehalfOf:n}),o[0]=i,o[1]=n,o[2]=a):a=o[2],o[3]!==i||o[4]!==c){let e;o[6]!==i.length||o[7]!==c?(e=(e,a)=>(0,l.jsxs)(m.Fragment,{children:[(0,l.jsx)(I,{author:e,repo:c,className:D}),a!==i.length-1&&(0,l.jsx)("span",{className:"pl-1",children:"and"})]},`${e.login}_${a}`),o[6]=i.length,o[7]=c,o[8]=e):e=o[8],t=i.map(e),o[3]=i,o[4]=c,o[5]=t}else t=o[5];return o[9]!==a||o[10]!==t?(s=(0,l.jsxs)(l.Fragment,{children:[a,t]}),o[9]=a,o[10]=t,o[11]=s):s=o[11],s}function z(e){let a,t,s,o=(0,r.c)(9),{authors:i,onBehalfOf:n,repo:c}=e;return o[0]!==i||o[1]!==n?(a=(0,l.jsx)(S,{authors:i,onBehalfOf:n}),o[0]=i,o[1]=n,o[2]=a):a=o[2],o[3]!==i||o[4]!==c?(t=(0,l.jsx)(C,{authors:i,repo:c}),o[3]=i,o[4]=c,o[5]=t):t=o[5],o[6]!==a||o[7]!==t?(s=(0,l.jsxs)(l.Fragment,{children:[a,t]}),o[6]=a,o[7]=t,o[8]=s):s=o[8],s}function R(e){let a,t,s,o,i,n,c,d,u,m=(0,r.c)(43),{authors:h,committer:p,committerAttribution:g,onBehalfOf:f,repo:N,children:y,includeVerbs:j,authorSettings:v,textVariant:_}=e,C=void 0===j||j,k=1===h.length&&!g&&!f,b=1===h.length&&(g||f),S=2===h.length&&!g,I=!k&&!b&&!S,w=h[0],D=C?"pl-1":"",R="muted"===(void 0===_?"default":_)?"color-fg-muted":"";m[0]!==R?(a=(0,A.$)(R,L),m[0]=R,m[1]=a):a=m[1],m[2]!==w||m[3]!==N||m[4]!==k?(t=k&&w&&(0,l.jsx)(T,{author:w,repo:N}),m[2]=w,m[3]=N,m[4]=k,m[5]=t):t=m[5],m[6]!==b||m[7]!==p||m[8]!==g||m[9]!==w||m[10]!==f||m[11]!==N?(s=b&&w&&(0,l.jsx)($,{author:w,committer:p,committerAttribution:g,onBehalfOf:f,repo:N}),m[6]=b,m[7]=p,m[8]=g,m[9]=w,m[10]=f,m[11]=N,m[12]=s):s=m[12],m[13]!==h||m[14]!==S||m[15]!==f||m[16]!==N?(o=S&&(0,l.jsx)(F,{authors:h,onBehalfOf:f,repo:N}),m[13]=h,m[14]=S,m[15]=f,m[16]=N,m[17]=o):o=m[17],m[18]!==h||m[19]!==I||m[20]!==f||m[21]!==N?(i=I&&(0,l.jsx)(z,{authors:h,onBehalfOf:f,repo:N}),m[18]=h,m[19]=I,m[20]=f,m[21]=N,m[22]=i):i=m[22];let O=g||!1;return m[23]!==p||m[24]!==C||m[25]!==N||m[26]!==O||m[27]!==D?(n=(0,l.jsx)(U,{committer:p,committerAttribution:O,includeVerbs:C,repo:N,verbClass:D}),m[23]=p,m[24]=C,m[25]=N,m[26]=O,m[27]=D,m[28]=n):n=m[28],m[29]!==f?(c=f&&(0,l.jsxs)(l.Fragment,{children:[(0,l.jsx)("span",{className:"pl-1",children:"on behalf of"}),(0,l.jsx)(B,{org:f,className:"pl-1"})]}),m[29]=f,m[30]=c):c=m[30],m[31]!==v||m[32]!==y||m[33]!==n||m[34]!==c||m[35]!==t||m[36]!==s||m[37]!==o||m[38]!==i?(d=(0,l.jsxs)(x,{authorSettings:v,children:[t,s,o,i,n,c,y]}),m[31]=v,m[32]=y,m[33]=n,m[34]=c,m[35]=t,m[36]=s,m[37]=o,m[38]=i,m[39]=d):d=m[39],m[40]!==d||m[41]!==a?(u=(0,l.jsx)("div",{className:a,children:d}),m[40]=d,m[41]=a,m[42]=u):u=m[42],u}function U(e){let a=(0,r.c)(18),{committer:t,committerAttribution:s,includeVerbs:o,repo:i,verbClass:n}=e;if(t&&t.isGitHub){let e,t=o&&"authored";return a[0]!==t||a[1]!==n?(e=(0,l.jsx)("span",{className:n,children:t}),a[0]=t,a[1]=n,a[2]=e):e=a[2],e}if(s){let e,r,s,c,d=o?"authored and":"and";a[6]!==d?(e=(0,l.jsx)("span",{className:"pl-1",children:d}),a[6]=d,a[7]=e):e=a[7],a[8]!==t||a[9]!==i?(r=(0,l.jsx)(I,{author:t,repo:i,className:D}),a[8]=t,a[9]=i,a[10]=r):r=a[10];let u=o&&"committed";return a[11]!==u||a[12]!==n?(s=(0,l.jsx)("span",{className:n,children:u}),a[11]=u,a[12]=n,a[13]=s):s=a[13],a[14]!==e||a[15]!==r||a[16]!==s?(c=(0,l.jsxs)(l.Fragment,{children:[e,r,s]}),a[14]=e,a[15]=r,a[16]=s,a[17]=c):c=a[17],c}{let e,t=o&&"committed";return a[3]!==t||a[4]!==n?(e=(0,l.jsx)("span",{className:n,children:t}),a[3]=t,a[4]=n,a[5]=e):e=a[5],e}}function O(e){let a,t,s,o,i,n=(0,r.c)(11),{pusher:c,repo:d,children:u,textVariant:m}=e;if(!c)return null;let h="muted"===(void 0===m?"default":m)?"color-fg-muted":"";return n[0]!==h?(a=(0,A.$)(h,L),n[0]=h,n[1]=a):a=n[1],n[2]===Symbol.for("react.memo_cache_sentinel")?(t=(0,l.jsx)("span",{className:"pl-1 pr-1",children:(0,l.jsx)(w.RepoPushIcon,{className:"mr-1",size:"small"})}),n[2]=t):t=n[2],n[3]!==c||n[4]!==d?(s=(0,l.jsx)(T,{author:c,repo:d}),n[3]=c,n[4]=d,n[5]=s):s=n[5],n[6]===Symbol.for("react.memo_cache_sentinel")?(o=(0,l.jsx)("span",{className:"pl-1",children:"pushed"}),n[6]=o):o=n[6],n[7]!==u||n[8]!==a||n[9]!==s?(i=(0,l.jsxs)("div",{className:a,children:[t,s,o,u]}),n[7]=u,n[8]=a,n[9]=s,n[10]=i):i=n[10],i}try{T.displayName||(T.displayName="SingleAuthor")}catch{}try{$.displayName||($.displayName="AuthorByline")}catch{}try{F.displayName||(F.displayName="TwoAuthors")}catch{}try{z.displayName||(z.displayName="MultipleAuthors")}catch{}try{R.displayName||(R.displayName="CommitAttribution")}catch{}try{U.displayName||(U.displayName="AuthoredOrCommitted")}catch{}try{O.displayName||(O.displayName="PushAttribution")}catch{}},99896:(e,a,t)=>{t.d(a,{xC:()=>_,B6:()=>b,ym:()=>I});var l=t(74848),r=t(16522),s=t(38621),o=t(12683),i=t(55255),n=t(10436),c=t(96540),d=t(34164),u=t(69726),m=t(57387),h=t(77430),p=t(84268),x=t(11196);let g="CheckRunItem-module__Text_2--JMqoY";function f(e){let a,t,o,i,n,c,d,u,m,f,N,y,j,v=(0,r.c)(37),{checkRun:_}=e;v[0]!==_.icon?(a=function(e){switch(e){case"check":return(0,l.jsx)(s.CheckIcon,{className:"fgColor-success my-0 mx-2 flex-self-center"});case"dot-fill":return(0,l.jsx)(s.DotFillIcon,{className:"fgColor-attention my-0 mx-2 flex-self-center"});case"stop":return(0,l.jsx)(s.StopIcon,{className:"fgColor-muted my-0 mx-2 flex-self-center"});case"issue-reopened":return(0,l.jsx)(s.IssueReopenedIcon,{className:"fgColor-muted my-0 mx-2 flex-self-center"});case"clock":return(0,l.jsx)(s.ClockIcon,{className:"fgColor-attention my-0 mx-2 flex-self-center"});case"square-fill":return(0,l.jsx)(s.SquareFillIcon,{className:"fgColor-default my-0 mx-2 flex-self-center"});case"skip":return(0,l.jsx)(s.SkipIcon,{className:"fgColor-muted my-0 mx-2 flex-self-center"});case"alert":return(0,l.jsx)(s.AlertIcon,{className:"fgColor-danger my-0 mx-2 flex-self-center"});default:return(0,l.jsx)(s.XIcon,{className:"fgColor-danger my-0 mx-2 flex-self-center"})}}(_.icon),v[0]=_.icon,v[1]=a):a=v[1];let C=a,k="in_progress"===_.state;return v[2]!==C||v[3]!==k?(t=k?(0,l.jsx)("div",{className:"CheckRunItem-module__Box_2--Ht42S",children:(0,l.jsxs)("svg",{fill:"none",viewBox:"0 0 16 16",className:"anim-rotate","aria-hidden":"true",role:"img",children:[(0,l.jsx)("path",{opacity:".5",d:"M8 15A7 7 0 108 1a7 7 0 000 14v0z",stroke:"var(--fgColor-attention)",strokeWidth:"2"}),(0,l.jsx)("path",{d:"M15 8a7 7 0 01-7 7",stroke:"var(--fgColor-attention)",strokeWidth:"2"}),(0,l.jsx)("path",{d:"M8 12a4 4 0 100-8 4 4 0 000 8z",fill:"var(--fgColor-attention)"})]})}):(0,l.jsx)(l.Fragment,{children:C}),v[2]=C,v[3]=k,v[4]=t):t=v[4],v[5]!==_.avatarBackgroundColor?(o={backgroundColor:_.avatarBackgroundColor},v[5]=_.avatarBackgroundColor,v[6]=o):o=v[6],v[7]!==_.avatarLogo||v[8]!==o?(i=(0,l.jsx)(h.r,{square:!0,src:_.avatarLogo,sx:o}),v[7]=_.avatarLogo,v[8]=o,v[9]=i):i=v[9],v[10]!==_.avatarUrl||v[11]!==i?(n=(0,l.jsx)(p.A,{href:_.avatarUrl,"aria-label":"Avatar",className:"CheckRunItem-module__Link--sKVjI",children:i}),v[10]=_.avatarUrl,v[11]=i,v[12]=n):n=v[12],v[13]!==_.avatarDescription||v[14]!==n?(c=(0,l.jsx)(x.m,{text:_.avatarDescription,direction:"e",children:n}),v[13]=_.avatarDescription,v[14]=n,v[15]=c):c=v[15],v[16]!==t||v[17]!==c?(d=(0,l.jsxs)("div",{className:"CheckRunItem-module__Box_1--uqwhY",children:[t,c]}),v[16]=t,v[17]=c,v[18]=d):d=v[18],v[19]!==_.name?(u=(0,l.jsxs)("span",{className:"CheckRunItem-module__Text_1--byPUg",children:[_.name," "]}),v[19]=_.name,v[20]=u):u=v[20],v[21]!==_.additionalContext||v[22]!==_.pending?(m=_.pending?(0,l.jsx)("span",{className:g,children:_.additionalContext}):_.additionalContext,v[21]=_.additionalContext,v[22]=_.pending,v[23]=m):m=v[23],v[24]!==_.description||v[25]!==_.pending?(f=_.description&&(0,l.jsxs)("span",{children:[" ","- ",_.pending?(0,l.jsx)("span",{className:g,children:_.description}):_.description]}),v[24]=_.description,v[25]=_.pending,v[26]=f):f=v[26],v[27]!==f||v[28]!==u||v[29]!==m?(N=(0,l.jsxs)("span",{className:"CheckRunItem-module__Text--yCiXY",children:[u,m,f]}),v[27]=f,v[28]=u,v[29]=m,v[30]=N):N=v[30],v[31]!==_.targetUrl?(y=(0,l.jsx)(p.A,{href:_.targetUrl,className:"CheckRunItem-module__Link_1--i579_",children:"Details"}),v[31]=_.targetUrl,v[32]=y):y=v[32],v[33]!==N||v[34]!==y||v[35]!==d?(j=(0,l.jsxs)("li",{"data-testid":"check-run-item",className:"CheckRunItem-module__Box--LZ7kH",children:[d,N,y]}),v[33]=N,v[34]=y,v[35]=d,v[36]=j):j=v[36],j}try{f.displayName||(f.displayName="CheckRunItem")}catch{}function N(e){let a,t,s=(0,r.c)(4),{checkRuns:o}=e;return s[0]!==o?(a=o.map(y),s[0]=o,s[1]=a):a=s[1],s[2]!==a?(t=(0,l.jsx)("ul",{className:"ChecksStatusBadgeFooter-module__Box--A9a95",children:a}),s[2]=a,s[3]=t):t=s[3],t}function y(e,a){return(0,l.jsx)(f,{checkRun:e},a)}try{N.displayName||(N.displayName="ChecksStatusBadgeFooter")}catch{}let j="ChecksStatusBadgeHeader-module__Text_1--Ccfb0";function v(e){let a=(0,r.c)(4),{checksHeaderState:t}=e;switch(t){case"SUCCEEDED":{let e;return a[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,l.jsx)("span",{className:"ChecksStatusBadgeHeader-module__Text--mNbul",children:"All checks have passed"}),a[0]=e):e=a[0],e}case"FAILED":{let e;return a[1]===Symbol.for("react.memo_cache_sentinel")?(e=(0,l.jsx)("span",{className:j,children:"All checks have failed"}),a[1]=e):e=a[1],e}case"PENDING":{let e;return a[2]===Symbol.for("react.memo_cache_sentinel")?(e=(0,l.jsx)("span",{className:"ChecksStatusBadgeHeader-module__Text_2--d8Yn7",children:"Some checks haven\u2019t completed yet"}),a[2]=e):e=a[2],e}default:{let e;return a[3]===Symbol.for("react.memo_cache_sentinel")?(e=(0,l.jsx)("span",{className:j,children:"Some checks were not successful"}),a[3]=e):e=a[3],e}}}try{v.displayName||(v.displayName="HeaderState")}catch{}function _(e){let a,t,s=(0,r.c)(7),{combinedStatus:o,isOpen:i,onDismiss:n}=e;s[0]!==o?(a=o?(0,l.jsx)(v,{checksHeaderState:o.checksHeaderState}):"Loading...",s[0]=o,s[1]=a):a=s[1];let c=a;return s[2]!==o||s[3]!==i||s[4]!==n||s[5]!==c?(t=i?(0,l.jsx)(m.l,{onClose:n,title:c,subtitle:o?o.checksStatusSummary:void 0,width:"xlarge",renderBody:()=>(0,l.jsx)(m.l.Body,{className:"CheckStatusDialog-module__Dialog_Body--sRD_i",children:o?(0,l.jsx)(N,{checkRuns:o.checkRuns}):(0,l.jsx)("div",{className:"CheckStatusDialog-module__Box--uYuTX",children:(0,l.jsx)(u.A,{size:"medium"})})}),className:"CheckStatusDialog-module__Dialog--k1EnR"}):null,s[2]=o,s[3]=i,s[4]=n,s[5]=c,s[6]=t):t=s[6],t}try{_.displayName||(_.displayName="CheckStatusDialog")}catch{}let C={success:{circled:s.CheckCircleIcon,filled:s.CheckCircleFillIcon,default:s.CheckIcon,color:"var(--bgColor-success-emphasis, var(--color-success-emphasis))"},pending:{circled:s.CircleIcon,filled:s.DotFillIcon,default:s.DotFillIcon,color:"var(--bgColor-attention-emphasis, var(--color-scale-yellow-4))"},failure:{circled:s.XCircleIcon,filled:s.XCircleFillIcon,default:s.XIcon,color:"var(--bgColor-danger-emphasis, var(--color-scale-red-4))"},error:{circled:s.QuestionIcon,filled:s.QuestionIcon,default:s.QuestionIcon,color:"var(--fgColor-muted, var(--color-canvas-subtle))"}};function k(e){let a,t,s,o,u,m=(0,r.c)(19),{className:h,descriptionText:p,icon:x,iconColor:g,tooltipText:f}=e,N=(0,c.useId)(),y=f?N:void 0,j=f?void 0:p||"See all checks";m[0]!==g?(a={color:g},m[0]=g,m[1]=a):a=m[1],m[2]!==x||m[3]!==y||m[4]!==j||m[5]!==a?(t=(0,l.jsx)(n.m4,{"aria-labelledby":y,icon:x,"aria-label":j,sx:a}),m[2]=x,m[3]=y,m[4]=j,m[5]=a,m[6]=t):t=m[6];let v=t;if(f){let e;m[7]!==v||m[8]!==N||m[9]!==f?(e=(0,l.jsx)(i.A,{id:N,"aria-label":f,direction:"e",children:v}),m[7]=v,m[8]=N,m[9]=f,m[10]=e):e=m[10],v=e}return m[11]!==h?(s=(0,d.$)(h,"d-flex flex-items-center gap-1"),m[11]=h,m[12]=s):s=m[12],m[13]!==p?(o=p&&(0,l.jsxs)("span",{children:[" ",p]}),m[13]=p,m[14]=o):o=m[14],m[15]!==v||m[16]!==s||m[17]!==o?(u=(0,l.jsxs)("span",{className:s,"data-testid":"checks-status-badge-icon-only",children:[v,o]}),m[15]=v,m[16]=s,m[17]=o,m[18]=u):u=m[18],u}function b(e){let a,t,s,i,n=(0,r.c)(27),{statusRollup:u,combinedStatus:m,variant:h,disablePopover:p,buttonClassName:x,buttonSx:g,size:f,descriptionText:N,onWillOpenPopup:y}=e,j=void 0===h?"default":h,v=void 0===f?"medium":f,b=void 0===N?"":N,[S,A]=(0,c.useState)(!1),I=(0,c.useRef)(null),B=C[u],w=B?.[j]||C.error[j],D=B?.color||C.error.color;n[0]!==w||n[1]!==D?(a={icon:w,iconColor:D},n[0]=w,n[1]=D,n[2]=a):a=n[2];let{icon:L,iconColor:T}=a;if("error"===u){let e,a=p?void 0:"p-1";return n[3]!==L||n[4]!==T||n[5]!==a?(e=(0,l.jsx)(k,{className:a,descriptionText:"?/?",icon:L,iconColor:T,tooltipText:"There was an error retrieving checks status"}),n[3]=L,n[4]=T,n[5]=a,n[6]=e):e=n[6],e}if(p){let e;return n[7]!==b||n[8]!==L||n[9]!==T?(e=(0,l.jsx)(k,{descriptionText:b,icon:L,iconColor:T}),n[7]=b,n[8]=L,n[9]=T,n[10]=e):e=n[10],e}return n[11]!==x||n[12]!==g||n[13]!==m?.checksStatusSummary||n[14]!==b||n[15]!==y||n[16]!==L||n[17]!==T||n[18]!==v||n[19]!==u?(t=b?(0,l.jsx)(o.$n,{"data-testid":"checks-status-badge-button",leadingVisual:L,variant:"invisible",size:v,"aria-label":m?.checksStatusSummary??`Status checks: ${u}`,sx:{svg:{color:T},...g},ref:I,onClick:()=>{y?.(),A(!0)},className:(0,d.$)("ChecksStatusBadge-module__ChecksStatusBadgeButton--rZYKL",x),children:b}):(0,l.jsx)(o.K0,{"data-testid":"checks-status-badge-icon",tooltipDirection:"s",icon:L,variant:"invisible",size:v,"aria-label":m?.checksStatusSummary??u,sx:{svg:{color:T},...g},className:(0,d.$)("ChecksStatusBadge-module__ChecksStatusBadgeIconButton--rpD4z",x),ref:I,onClick:()=>{y?.(),A(!0)}}),n[11]=x,n[12]=g,n[13]=m?.checksStatusSummary,n[14]=b,n[15]=y,n[16]=L,n[17]=T,n[18]=v,n[19]=u,n[20]=t):t=n[20],n[21]!==m||n[22]!==S?(s=S&&(0,l.jsx)(_,{combinedStatus:m,isOpen:S,onDismiss:()=>{A(!1),setTimeout(()=>{I.current?.focus()},0)}}),n[21]=m,n[22]=S,n[23]=s):s=n[23],n[24]!==t||n[25]!==s?(i=(0,l.jsxs)(l.Fragment,{children:[t,s]}),n[24]=t,n[25]=s,n[26]=i):i=n[26],i}try{k.displayName||(k.displayName="IconOnlyStatus")}catch{}try{b.displayName||(b.displayName="ChecksStatusBadge")}catch{}var S=t(59672),A=t(96379);function I(e,a){let t,l,s=(0,r.c)(7),[o,i]=(0,c.useState)(),[n,d]=(0,c.useState)();s[0]!==e||s[1]!==n||s[2]!==a?(t=async()=>{if(n!==e&&(d(e),i(void 0),e)){let t=(0,S.vki)(a,e),l=await (0,A.lS)(t);i(await l.json())}},s[0]=e,s[1]=n,s[2]=a,s[3]=t):t=s[3];let u=t;return s[4]!==o||s[5]!==u?(l=[o,u],s[4]=o,s[5]=u,s[6]=l):l=s[6],l}}}]); +//# sourceMappingURL=6623-904cd74b9449.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/66721-c8f8022fe832.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/66721-c8f8022fe832.js" new file mode 100644 index 0000000..408eaf7 --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/66721-c8f8022fe832.js" @@ -0,0 +1,23 @@ +performance.mark("js-parse-end:66721-c8f8022fe832.js"); +(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[66721],{5497:(e,t,n)=>{"use strict";function r(e,t){var n,r,i,l=(void 0===t?{}:t).viewportMarginBottom,a=void 0===l?100:l,o=null,s=!1;function u(t){if(n!==t.clientX||r!==t.clientY){var l=e.style.height;i&&i!==l&&(s=!0,e.style.maxHeight="",e.removeEventListener("mousemove",u)),i=l}n=t.clientX,r=t.clientY}var c=e.ownerDocument,d=c.documentElement;function h(){if(!s&&e.value!==o&&(!(e.offsetWidth<=0)||!(e.offsetHeight<=0))){var t=function(){for(var t=0,n=e;n!==c.body&&null!==n;)t+=n.offsetTop||0,n=n.offsetParent;var r=t-c.defaultView.pageYOffset,i=d.clientHeight-(r+e.offsetHeight);return{top:r,bottom:i}}(),n=t.top,r=t.bottom;if(!(n<0)&&!(r<0)){var l=getComputedStyle(e),u=Math.ceil(parseFloat(l.borderTopWidth)),h=Math.ceil(parseFloat(l.borderBottomWidth)),f="border-box"===l.boxSizing,p=parseFloat(l.height)+r;e.style.maxHeight=p-(rr})},8507:(e,t,n)=>{let r=n(15659);e.exports=function(e){let t=function(e){let t=function(){let e={},t=Object.keys(r);for(let n=t.length,r=0;r{let r=n(15659),i=n(8507),l={};Object.keys(r).forEach(e=>{l[e]={},Object.defineProperty(l[e],"channels",{value:r[e].channels}),Object.defineProperty(l[e],"labels",{value:r[e].labels});let t=i(e);Object.keys(t).forEach(n=>{let r,i,a=t[n];l[e][n]=(r=function(...e){let t=e[0];if(null==t)return t;t.length>1&&(e=t);let n=a(e);if("object"==typeof n)for(let e=n.length,t=0;t1&&(e=t),a(e))},"conversion"in a&&(i.conversion=a.conversion),i)})}),e.exports=l},15659:(e,t,n)=>{let r=n(51031),i={};for(let e of Object.keys(r))i[r[e]]=e;let l={rgb:{channels:3,labels:"rgb"},hsl:{channels:3,labels:"hsl"},hsv:{channels:3,labels:"hsv"},hwb:{channels:3,labels:"hwb"},cmyk:{channels:4,labels:"cmyk"},xyz:{channels:3,labels:"xyz"},lab:{channels:3,labels:"lab"},lch:{channels:3,labels:"lch"},hex:{channels:1,labels:["hex"]},keyword:{channels:1,labels:["keyword"]},ansi16:{channels:1,labels:["ansi16"]},ansi256:{channels:1,labels:["ansi256"]},hcg:{channels:3,labels:["h","c","g"]},apple:{channels:3,labels:["r16","g16","b16"]},gray:{channels:1,labels:["gray"]}};for(let t of(e.exports=l,Object.keys(l))){if(!("channels"in l[t]))throw Error("missing channels property: "+t);if(!("labels"in l[t]))throw Error("missing channel labels property: "+t);if(l[t].labels.length!==l[t].channels)throw Error("channel and label counts mismatch: "+t);let{channels:e,labels:n}=l[t];delete l[t].channels,delete l[t].labels,Object.defineProperty(l[t],"channels",{value:e}),Object.defineProperty(l[t],"labels",{value:n})}l.rgb.hsl=function(e){let t,n=e[0]/255,r=e[1]/255,i=e[2]/255,l=Math.min(n,r,i),a=Math.max(n,r,i),o=a-l;a===l?t=0:n===a?t=(r-i)/o:r===a?t=2+(i-n)/o:i===a&&(t=4+(n-r)/o),(t=Math.min(60*t,360))<0&&(t+=360);let s=(l+a)/2;return[t,100*(a===l?0:s<=.5?o/(a+l):o/(2-a-l)),100*s]},l.rgb.hsv=function(e){let t,n,r,i,l,a=e[0]/255,o=e[1]/255,s=e[2]/255,u=Math.max(a,o,s),c=u-Math.min(a,o,s),d=function(e){return(u-e)/6/c+.5};return 0===c?(i=0,l=0):(l=c/u,t=d(a),n=d(o),r=d(s),a===u?i=r-n:o===u?i=1/3+t-r:s===u&&(i=2/3+n-t),i<0?i+=1:i>1&&(i-=1)),[360*i,100*l,100*u]},l.rgb.hwb=function(e){let t=e[0],n=e[1],r=e[2];return[l.rgb.hsl(e)[0],1/255*Math.min(t,Math.min(n,r))*100,100*(r=1-1/255*Math.max(t,Math.max(n,r)))]},l.rgb.cmyk=function(e){let t=e[0]/255,n=e[1]/255,r=e[2]/255,i=Math.min(1-t,1-n,1-r);return[100*((1-t-i)/(1-i)||0),100*((1-n-i)/(1-i)||0),100*((1-r-i)/(1-i)||0),100*i]},l.rgb.keyword=function(e){let t,n=i[e];if(n)return n;let l=1/0;for(let n of Object.keys(r)){let i=r[n],a=(e[0]-i[0])**2+(e[1]-i[1])**2+(e[2]-i[2])**2;a.04045?((t+.055)/1.055)**2.4:t/12.92)+.3576*(n=n>.04045?((n+.055)/1.055)**2.4:n/12.92)+.1805*(r=r>.04045?((r+.055)/1.055)**2.4:r/12.92)),100*(.2126*t+.7152*n+.0722*r),100*(.0193*t+.1192*n+.9505*r)]},l.rgb.lab=function(e){let t=l.rgb.xyz(e),n=t[0],r=t[1],i=t[2];return n/=95.047,r/=100,i/=108.883,[116*(r=r>.008856?r**(1/3):7.787*r+16/116)-16,500*((n=n>.008856?n**(1/3):7.787*n+16/116)-r),200*(r-(i=i>.008856?i**(1/3):7.787*i+16/116))]},l.hsl.rgb=function(e){let t,n,r,i=e[0]/360,l=e[1]/100,a=e[2]/100;if(0===l)return[r=255*a,r,r];t=a<.5?a*(1+l):a+l-a*l;let o=2*a-t,s=[0,0,0];for(let e=0;e<3;e++)(n=i+-(1/3*(e-1)))<0&&n++,n>1&&n--,r=6*n<1?o+(t-o)*6*n:2*n<1?t:3*n<2?o+(t-o)*(2/3-n)*6:o,s[e]=255*r;return s},l.hsl.hsv=function(e){let t=e[0],n=e[1]/100,r=e[2]/100,i=n,l=Math.max(r,.01);r*=2,n*=r<=1?r:2-r,i*=l<=1?l:2-l;let a=(r+n)/2;return[t,100*(0===r?2*i/(l+i):2*n/(r+n)),100*a]},l.hsv.rgb=function(e){let t=e[0]/60,n=e[1]/100,r=e[2]/100,i=Math.floor(t)%6,l=t-Math.floor(t),a=255*r*(1-n),o=255*r*(1-n*l),s=255*r*(1-n*(1-l));switch(r*=255,i){case 0:return[r,s,a];case 1:return[o,r,a];case 2:return[a,r,s];case 3:return[a,o,r];case 4:return[s,a,r];case 5:return[r,a,o]}},l.hsv.hsl=function(e){let t,n,r=e[0],i=e[1]/100,l=e[2]/100,a=Math.max(l,.01);n=(2-i)*l;let o=(2-i)*a;return[r,100*(t=(t=i*a/(o<=1?o:2-o))||0),100*(n/=2)]},l.hwb.rgb=function(e){let t,n,r,i,l=e[0]/360,a=e[1]/100,o=e[2]/100,s=a+o;s>1&&(a/=s,o/=s);let u=Math.floor(6*l),c=1-o;t=6*l-u,(1&u)!=0&&(t=1-t);let d=a+t*(c-a);switch(u){default:case 6:case 0:n=c,r=d,i=a;break;case 1:n=d,r=c,i=a;break;case 2:n=a,r=c,i=d;break;case 3:n=a,r=d,i=c;break;case 4:n=d,r=a,i=c;break;case 5:n=c,r=a,i=d}return[255*n,255*r,255*i]},l.cmyk.rgb=function(e){let t=e[0]/100,n=e[1]/100,r=e[2]/100,i=e[3]/100;return[255*(1-Math.min(1,t*(1-i)+i)),255*(1-Math.min(1,n*(1-i)+i)),255*(1-Math.min(1,r*(1-i)+i))]},l.xyz.rgb=function(e){let t,n,r,i=e[0]/100,l=e[1]/100,a=e[2]/100;return t=(t=3.2406*i+-1.5372*l+-.4986*a)>.0031308?1.055*t**(1/2.4)-.055:12.92*t,n=(n=-.9689*i+1.8758*l+.0415*a)>.0031308?1.055*n**(1/2.4)-.055:12.92*n,r=(r=.0557*i+-.204*l+1.057*a)>.0031308?1.055*r**(1/2.4)-.055:12.92*r,[255*(t=Math.min(Math.max(0,t),1)),255*(n=Math.min(Math.max(0,n),1)),255*(r=Math.min(Math.max(0,r),1))]},l.xyz.lab=function(e){let t=e[0],n=e[1],r=e[2];return t/=95.047,n/=100,r/=108.883,[116*(n=n>.008856?n**(1/3):7.787*n+16/116)-16,500*((t=t>.008856?t**(1/3):7.787*t+16/116)-n),200*(n-(r=r>.008856?r**(1/3):7.787*r+16/116))]},l.lab.xyz=function(e){let t,n,r,i=e[0],l=e[1],a=e[2];t=l/500+(n=(i+16)/116),r=n-a/200;let o=n**3,s=t**3,u=r**3;return n=(o>.008856?o:(n-16/116)/7.787)*100,[t=(s>.008856?s:(t-16/116)/7.787)*95.047,n,r=(u>.008856?u:(r-16/116)/7.787)*108.883]},l.lab.lch=function(e){let t,n=e[0],r=e[1],i=e[2];return(t=360*Math.atan2(i,r)/2/Math.PI)<0&&(t+=360),[n,Math.sqrt(r*r+i*i),t]},l.lch.lab=function(e){let t=e[0],n=e[1],r=e[2]/360*2*Math.PI;return[t,n*Math.cos(r),n*Math.sin(r)]},l.rgb.ansi16=function(e,t=null){let[n,r,i]=e,a=null===t?l.rgb.hsv(e)[2]:t;if(0===(a=Math.round(a/50)))return 30;let o=30+(Math.round(i/255)<<2|Math.round(r/255)<<1|Math.round(n/255));return 2===a&&(o+=60),o},l.hsv.ansi16=function(e){return l.rgb.ansi16(l.hsv.rgb(e),e[2])},l.rgb.ansi256=function(e){let t=e[0],n=e[1],r=e[2];return t===n&&n===r?t<8?16:t>248?231:Math.round((t-8)/247*24)+232:16+36*Math.round(t/255*5)+6*Math.round(n/255*5)+Math.round(r/255*5)},l.ansi16.rgb=function(e){let t=e%10;if(0===t||7===t)return e>50&&(t+=3.5),[t=t/10.5*255,t,t];let n=(~~(e>50)+1)*.5;return[(1&t)*n*255,(t>>1&1)*n*255,(t>>2&1)*n*255]},l.ansi256.rgb=function(e){let t;if(e>=232){let t=(e-232)*10+8;return[t,t,t]}return[Math.floor((e-=16)/36)/5*255,Math.floor((t=e%36)/6)/5*255,t%6/5*255]},l.rgb.hex=function(e){let t=(((255&Math.round(e[0]))<<16)+((255&Math.round(e[1]))<<8)+(255&Math.round(e[2]))).toString(16).toUpperCase();return"000000".substring(t.length)+t},l.hex.rgb=function(e){let t=e.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!t)return[0,0,0];let n=t[0];3===t[0].length&&(n=n.split("").map(e=>e+e).join(""));let r=parseInt(n,16);return[r>>16&255,r>>8&255,255&r]},l.rgb.hcg=function(e){let t,n=e[0]/255,r=e[1]/255,i=e[2]/255,l=Math.max(Math.max(n,r),i),a=Math.min(Math.min(n,r),i),o=l-a;return t=o<1?a/(1-o):0,[360*((o<=0?0:l===n?(r-i)/o%6:l===r?2+(i-n)/o:4+(n-r)/o)/6%1),100*o,100*t]},l.hsl.hcg=function(e){let t=e[1]/100,n=e[2]/100,r=n<.5?2*t*n:2*t*(1-n),i=0;return r<1&&(i=(n-.5*r)/(1-r)),[e[0],100*r,100*i]},l.hsv.hcg=function(e){let t=e[1]/100,n=e[2]/100,r=t*n,i=0;return r<1&&(i=(n-r)/(1-r)),[e[0],100*r,100*i]},l.hcg.rgb=function(e){let t=e[0]/360,n=e[1]/100,r=e[2]/100;if(0===n)return[255*r,255*r,255*r];let i=[0,0,0],l=t%1*6,a=l%1,o=1-a,s=0;switch(Math.floor(l)){case 0:i[0]=1,i[1]=a,i[2]=0;break;case 1:i[0]=o,i[1]=1,i[2]=0;break;case 2:i[0]=0,i[1]=1,i[2]=a;break;case 3:i[0]=0,i[1]=o,i[2]=1;break;case 4:i[0]=a,i[1]=0,i[2]=1;break;default:i[0]=1,i[1]=0,i[2]=o}return s=(1-n)*r,[(n*i[0]+s)*255,(n*i[1]+s)*255,(n*i[2]+s)*255]},l.hcg.hsv=function(e){let t=e[1]/100,n=t+e[2]/100*(1-t),r=0;return n>0&&(r=t/n),[e[0],100*r,100*n]},l.hcg.hsl=function(e){let t=e[1]/100,n=e[2]/100*(1-t)+.5*t,r=0;return n>0&&n<.5?r=t/(2*n):n>=.5&&n<1&&(r=t/(2*(1-n))),[e[0],100*r,100*n]},l.hcg.hwb=function(e){let t=e[1]/100,n=t+e[2]/100*(1-t);return[e[0],(n-t)*100,(1-n)*100]},l.hwb.hcg=function(e){let t=e[1]/100,n=1-e[2]/100,r=n-t,i=0;return r<1&&(i=(n-r)/(1-r)),[e[0],100*r,100*i]},l.apple.rgb=function(e){return[e[0]/65535*255,e[1]/65535*255,e[2]/65535*255]},l.rgb.apple=function(e){return[e[0]/255*65535,e[1]/255*65535,e[2]/255*65535]},l.gray.rgb=function(e){return[e[0]/100*255,e[0]/100*255,e[0]/100*255]},l.gray.hsl=function(e){return[0,0,e[0]]},l.gray.hsv=l.gray.hsl,l.gray.hwb=function(e){return[0,100,e[0]]},l.gray.cmyk=function(e){return[0,0,0,e[0]]},l.gray.lab=function(e){return[e[0],0,0]},l.gray.hex=function(e){let t=255&Math.round(e[0]/100*255),n=((t<<16)+(t<<8)+t).toString(16).toUpperCase();return"000000".substring(n.length)+n},l.rgb.gray=function(e){return[(e[0]+e[1]+e[2])/3/255*100]}},15955:(e,t,n)=>{"use strict";function r(e){let t=!1,n=null;function r(e,t,n,i=!1){t instanceof HTMLInputElement&&(t.indeterminate=i,t.checked!==n&&(t.checked=n,setTimeout(()=>{let n=new CustomEvent("change",{bubbles:!0,cancelable:!1,detail:{relatedTarget:e}});t.dispatchEvent(n)})))}function i(i){let l=i.target;l instanceof Element&&(l.hasAttribute("data-check-all")?function(t){if(t instanceof CustomEvent&&t.detail){let{relatedTarget:e}=t.detail;if(e&&e.hasAttribute("data-check-all-item"))return}let i=t.target;if(i instanceof HTMLInputElement){for(let t of(n=null,e.querySelectorAll("[data-check-all-item]")))r(i,t,i.checked);i.indeterminate=!1,a()}}(i):l.hasAttribute("data-check-all-item")&&function(i){if(i instanceof CustomEvent&&i.detail){let{relatedTarget:e}=i.detail;if(e&&(e.hasAttribute("data-check-all")||e.hasAttribute("data-check-all-item")))return}let l=i.target;if(!(l instanceof HTMLInputElement))return;let o=Array.from(e.querySelectorAll("[data-check-all-item]"));if(t&&n){let[e,t]=[o.indexOf(n),o.indexOf(l)].sort();for(let n of o.slice(e,+t+1||9e9))r(l,n,l.checked)}t=!1,n=l;let s=e.querySelector("[data-check-all]");if(s){let e=o.length,t=o.filter(e=>e instanceof HTMLInputElement&&e.checked).length;r(l,s,t===e,e>t&&t>0)}a()}(i))}function l(e){e.target instanceof Element&&(e.target instanceof HTMLLabelElement&&e.target.control||e.target).hasAttribute("data-check-all-item")&&(t=e.shiftKey)}function a(){let t=e.querySelector("[data-check-all-count]");t&&(t.textContent=e.querySelectorAll("[data-check-all-item]:checked").length.toString())}return e.addEventListener("mousedown",l),e.addEventListener("change",i),{unsubscribe:()=>{e.removeEventListener("mousedown",l),e.removeEventListener("change",i)}}}n.d(t,{A:()=>r})},16213:(e,t,n)=>{"use strict";n.d(t,{_:()=>i});var r=n(53482);function i(e,t){(0,r._)(e,t),t.add(e)}},18679:(e,t,n)=>{"use strict";n.d(t,{s:()=>AnalyticsClient});let r=["utm_source","utm_medium","utm_campaign","utm_term","utm_content","scid"];var i=n(36301);let AnalyticsClient=class AnalyticsClient{constructor(e){this.options=e}get collectorUrl(){return this.options.collectorUrl}get clientId(){return this.options.clientId?this.options.clientId:(0,i.y)()}createEvent(e){return{page:location.href,title:document.title,context:{...this.options.baseContext,...function(){let e={};try{for(let[t,n]of new URLSearchParams(window.location.search)){let i=t.toLowerCase();r.includes(i)&&(e[i]=n)}return e}catch(e){return{}}}(),...e}}}sendPageView(e){let t=this.createEvent(e);this.send({page_views:[t]})}sendEvent(e,t){let n={...this.createEvent(t),type:e};this.send({events:[n]})}send({page_views:e,events:t}){let n=JSON.stringify({client_id:this.clientId,page_views:e,events:t,request_context:{referrer:function(){let e;try{e=window.top.document.referrer}catch(t){if(window.parent)try{e=window.parent.document.referrer}catch(e){}}return""===e&&(e=document.referrer),e}(),user_agent:navigator.userAgent,screen_resolution:function(){try{return`${screen.width}x${screen.height}`}catch(e){return"unknown"}}(),browser_resolution:function(){let e=0,t=0;try{return"number"==typeof window.innerWidth?(t=window.innerWidth,e=window.innerHeight):null!=document.documentElement&&null!=document.documentElement.clientWidth?(t=document.documentElement.clientWidth,e=document.documentElement.clientHeight):null!=document.body&&null!=document.body.clientWidth&&(t=document.body.clientWidth,e=document.body.clientHeight),`${t}x${e}`}catch(e){return"unknown"}}(),browser_languages:navigator.languages?navigator.languages.join(","):navigator.language||"",pixel_ratio:window.devicePixelRatio,timestamp:Date.now(),tz_seconds:-60*new Date().getTimezoneOffset()}});try{if(navigator.sendBeacon)return void navigator.sendBeacon(this.collectorUrl,n)}catch{}fetch(this.collectorUrl,{method:"POST",cache:"no-cache",headers:{"Content-Type":"application/json"},body:n,keepalive:!1})}}},31143:(e,t,n)=>{"use strict";n.d(t,{qy:()=>x,XX:()=>v,_3:()=>L});let r=new Map;function i(e){if(r.has(e))return r.get(e);let t=e.length,n=0,i=0,l=0,a=[];for(let r=0;rn&&(a.push(Object.freeze({type:"string",start:n,end:i,value:e.slice(n,i)})),n=i),a.push(Object.freeze({type:"part",start:i,end:r+2,value:e.slice(n+2,r).trim()})),r+=1,n=r+1)}return n"string"==typeof e?e:e.value).join("");this.element.setAttributeNS(this.attr.namespaceURI,this.attr.name,e)}}};let o=new WeakMap;let NodeTemplatePart=class NodeTemplatePart{constructor(e,t){this.expression=t,o.set(this,[e]),e.textContent=""}get value(){return o.get(this).map(e=>e.textContent).join("")}set value(e){this.replace(e)}get previousSibling(){return o.get(this)[0].previousSibling}get nextSibling(){return o.get(this)[o.get(this).length-1].nextSibling}replace(...e){let t=e.map(e=>"string"==typeof e?new Text(e):e);for(let e of(t.length||t.push(new Text("")),o.get(this)[0].before(...t),o.get(this)))e.remove();o.set(this,t)}};function s(e){return{processCallback(t,n,r){var i;if("object"==typeof r&&r){for(let t of n)if(t.expression in r){let n=null!=(i=r[t.expression])?i:"";e(t,n)}}}}}function u(e,t){e.value=String(t)}function c(e,t){return"boolean"==typeof t&&e instanceof AttributeTemplatePart&&"boolean"==typeof e.element[e.attributeName]&&(e.booleanValue=t,!0)}let d=s(u);s((e,t)=>{c(e,t)||u(e,t)});let h=new WeakMap,f=new WeakMap;let TemplateInstance=class TemplateInstance extends DocumentFragment{constructor(e,t,n=d){var r,l;super(),Object.getPrototypeOf(this)!==TemplateInstance.prototype&&Object.setPrototypeOf(this,TemplateInstance.prototype),this.appendChild(e.content.cloneNode(!0)),f.set(this,Array.from(function*(e){let t,n=e.ownerDocument.createTreeWalker(e,NodeFilter.SHOW_TEXT|NodeFilter.SHOW_ELEMENT,null,!1);for(;t=n.nextNode();)if(t instanceof Element&&t.hasAttributes())for(let e=0;ee+t+(n{let n=e(...t);return b.add(n),n}}let T=new WeakMap;let EventHandler=class EventHandler{constructor(e,t){this.element=e,this.type=t,this.element.addEventListener(this.type,this),T.get(this.element).set(this.type,this)}set(e){"function"==typeof e?this.handleEvent=e.bind(this.element):"object"==typeof e&&"function"==typeof e.handleEvent?this.handleEvent=e.handleEvent.bind(e):(this.element.removeEventListener(this.type,this),T.get(this.element).delete(this.type))}static for(e){T.has(e.element)||T.set(e.element,new Map);let t=e.attributeName.slice(2),n=T.get(e.element);return n.has(t)?n.get(t):new EventHandler(e.element,t)}};function w(e,t){b.has(t)&&(t(e),1)||c(e,t)||e instanceof AttributeTemplatePart&&e.attributeName.startsWith("on")&&(EventHandler.for(e).set(t),e.element.removeAttributeNS(e.attributeNamespace,e.attributeName),1)||t instanceof TemplateResult&&e instanceof NodeTemplatePart&&(t.renderInto(e),1)||t instanceof DocumentFragment&&e instanceof NodeTemplatePart&&(t.childNodes.length&&e.replace(...t.childNodes),1)||function(e,t){if(!("object"==typeof t&&Symbol.iterator in t))return!1;if(!(e instanceof NodeTemplatePart))return e.value=Array.from(t).join(" "),!0;{let n=[];for(let e of t)if(e instanceof TemplateResult){let t=document.createDocumentFragment();e.renderInto(t),n.push(...t.childNodes)}else e instanceof DocumentFragment?n.push(...e.childNodes):n.push(String(e));return n.length&&e.replace(...n),!0}}(e,t)||u(e,t)}let E=s(w);function x(e,...t){return new TemplateResult(e,t,E)}let k=new WeakMap;y((...e)=>t=>{k.has(t)||k.set(t,{i:e.length});let n=k.get(t);for(let r=0;r{rt=>{var n,r;if(!(t instanceof NodeTemplatePart))return;let i=document.createElement("template");i.innerHTML=null!=(r=null==(n=TemplateResult.cspTrustedTypesPolicy)?void 0:n.createHTML(e))?r:e;let l=document.importNode(i.content,!0);t.replace(...l.childNodes)})},44358:(e,t,n)=>{"use strict";function r(e,t){var n,r,i;let l=e.value.slice(0,null!=(n=e.selectionStart)?n:void 0),a=e.value.slice(null!=(r=e.selectionEnd)?r:void 0),o=!0;e.contentEditable="true";try{o=document.execCommand("insertText",!1,t)}catch(e){o=!1}if(e.contentEditable="false",o&&!e.value.slice(0,null!=(i=e.selectionStart)?i:void 0).endsWith(t)&&(o=!1),!o){try{document.execCommand("ms-beginUndoUnit")}catch(e){}e.value=l+t+a;try{document.execCommand("ms-endUndoUnit")}catch(e){}e.dispatchEvent(new CustomEvent("change",{bubbles:!0,cancelable:!0}))}}n.d(t,{B1:()=>I});let i=new WeakMap;function l(e){let{currentTarget:t}=e,n="KeyV"===e.code&&(e.ctrlKey||e.metaKey)&&e.shiftKey;(n||n&&e.altKey)&&i.set(t,!0)}function a(e){let{currentTarget:t}=e;i.delete(t)}function o(e){var t;return null!=(t=i.get(e))&&t}function s(e){e.addEventListener("paste",u)}function u(e){var t;let n,i=e.clipboardData,{currentTarget:l}=e;if(o(l)||!i||!i.types.includes("text/html"))return;let a=e.currentTarget;if(!(a instanceof HTMLTextAreaElement)||0!==(n=(t=a).selectionStart||0)&&"@"===t.value.substring(n-1,n))return;let s=i.getData("text/plain"),u=i.getData("text/html"),d=u.replace(/\u00A0/g," ").replace(/\uC2A0/g," ");if(!u||!(s=s.trim()))return;let h=new DOMParser().parseFromString(d,"text/html"),f=function(e,t){let n=t.firstChild(),r=e,i=0,l=0;for(;n&&l<1e4;){var a;l++;let e=c(n)?(n.textContent||"").replace(/[\t\n\r ]+/g," "):(null==n?void 0:n.wholeText)||"";if(!(a=e)||(null==a?void 0:a.trim().length)===0){n=t.nextNode();continue}if(!c(n)){i+=e.replace(/[\t\n\r ]+/g," ").trimStart().length,n=t.nextNode();continue}let o=r.indexOf(e,i);if(o>=0){let t=function(e,t){var n,r,i;let l=e.href||"";return function(e){var t;return(null==(t=e.textContent)?void 0:t.slice(0,1))==="@"&&"user"===e.getAttribute("data-hovercard-type")}(e)||function(e){var t;return(null==(t=e.textContent)?void 0:t.slice(0,1))==="@"&&"team"===e.getAttribute("data-hovercard-type")}(e)?t:(n=e).className.indexOf("commit-link")>=0||n.getAttribute("data-hovercard-type")&&"user"!==n.getAttribute("data-hovercard-type")||(r=l,i=t,r="/"===r.slice(-1)?r.slice(0,-1):r,i="/"===i.slice(-1)?i.slice(0,-1):i,r.toLowerCase()===i.toLowerCase())?l:`[${t}](${l})`}(n,e);r=r.slice(0,o)+t+r.slice(o+e.length),i=o+t.length}n=t.nextNode()}return 1e4===l?e:r}(s,h.createTreeWalker(h.body,NodeFilter.SHOW_ALL,e=>e.parentNode&&c(e.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT));f!==s&&(e.stopPropagation(),e.preventDefault(),r(a,f))}function c(e){var t;return(null==(t=e.tagName)?void 0:t.toLowerCase())==="a"&&e.hasAttribute("href")}function d(e){e.addEventListener("dragover",f),e.addEventListener("drop",h),e.addEventListener("paste",p)}function h(e){let t=e.dataTransfer;if(!t||Array.from(t.types).indexOf("Files")>=0||!g(t))return;let n=v(t);if(!n.some(y))return;e.stopPropagation(),e.preventDefault();let i=e.currentTarget;i instanceof HTMLTextAreaElement&&r(i,n.map(m).join(""))}function f(e){let t=e.dataTransfer;t&&(t.dropEffect="link")}function p(e){let{currentTarget:t}=e;if(o(t))return;let n=e.clipboardData;if(!n||!g(n))return;let i=v(n);if(!i.some(y))return;e.stopPropagation(),e.preventDefault();let l=e.currentTarget;l instanceof HTMLTextAreaElement&&r(l,i.map(m).join(""))}function m(e){return y(e)?` +![](${e}) +`:e}function g(e){return Array.from(e.types).indexOf("text/uri-list")>=0}function v(e){return(e.getData("text/uri-list")||"").split(`\r +`)}let b=/\.(gif|png|jpe?g)$/i;function y(e){return b.test(e)}let T=new WeakMap;function w(e,t){var n;T.set(e,(null==(n=null==t?void 0:t.defaultPlainTextPaste)?void 0:n.urlLinks)===!0),e.addEventListener("paste",E)}function E(e){var t,n,i,l;let a,{currentTarget:s}=e,u=null!=(t=T.get(s))&&t,c=o(s);if(!u&&c||u&&!c)return;let d=e.clipboardData;if(!d||!Array.from(d.types).includes("text/plain"))return;let h=e.currentTarget;if(!(h instanceof HTMLTextAreaElement))return;let f=d.getData("text/plain");if(!f||!x(f)||(a=(n=h).selectionStart||0)>1&&"]("===n.value.substring(a-2,a))return;let p=h.value.substring(h.selectionStart,h.selectionEnd);!p.length||x(p.trim())||(e.stopPropagation(),e.preventDefault(),r(h,(i=p,l=f.trim(),`[${i}](${l})`)))}function x(e){try{let t=new URL(e);return k(t.href).trim()===k(e).trim()}catch(e){return!1}}function k(e){return e.endsWith("/")?e.slice(0,e.length-1):e}function L(e){e.addEventListener("dragover",M),e.addEventListener("drop",S),e.addEventListener("paste",C)}function S(e){let t=e.dataTransfer;if(!t||Array.from(t.types).indexOf("Files")>=0)return;let n=O(t);if(!n)return;e.stopPropagation(),e.preventDefault();let i=e.currentTarget;i instanceof HTMLTextAreaElement&&r(i,n)}function M(e){let t=e.dataTransfer;t&&(t.dropEffect="copy")}function C(e){let{currentTarget:t}=e;if(o(t)||!e.clipboardData)return;let n=O(e.clipboardData);if(!n)return;e.stopPropagation(),e.preventDefault();let i=e.currentTarget;i instanceof HTMLTextAreaElement&&r(i,n)}function A(e){return(e.textContent||"").trim().replace(/\|/g,"\\|").replace(/\n/g," ")||"\xa0"}function O(e){if(-1===Array.from(e.types).indexOf("text/html"))return;let t=e.getData("text/html");if(!/");if(!n||!r)return;let i=t.substring(r+8),l=new DOMParser().parseFromString(t,"text/html").querySelector("table");if(!(l=!l||l.closest("[data-paste-markdown-skip]")?null:l))return;let a=function(e){let t=Array.from(e.querySelectorAll("tr")),n=t.shift();if(!n)return"";let r=Array.from(n.querySelectorAll("td, th")).map(A),i=r.map(()=>"--"),l=`${r.join(" | ")} +${i.join(" | ")} +`,a=t.map(e=>Array.from(e.querySelectorAll("td")).map(A).join(" | ")).join(` +`);return` +${l}${a} + +`}(l);if(a)return[n,a,i].join("").replace(//,"")}function P(e){e.addEventListener("paste",H)}function H(e){let{currentTarget:t}=e;if(o(t))return;let n=e.clipboardData;if(!n||!(Array.from(n.types).indexOf("text/x-gfm")>=0))return;let i=e.currentTarget;if(!(i instanceof HTMLTextAreaElement))return;let l=n.getData("text/x-gfm");l&&(e.stopPropagation(),e.preventDefault(),r(i,l))}function I(e,t){for(let n of(e.addEventListener("keydown",l),[L,d,w,P,s]))n(e,t);return e.addEventListener("paste",a),{unsubscribe:()=>{e.removeEventListener("keydown",l),e.removeEventListener("paste",a),e.removeEventListener("dragover",M),e.removeEventListener("drop",S),e.removeEventListener("paste",C),e.removeEventListener("paste",u),e.removeEventListener("dragover",f),e.removeEventListener("drop",h),e.removeEventListener("paste",p),e.removeEventListener("paste",E),e.removeEventListener("paste",H)}}}},50515:(e,t,n)=>{"use strict";n.d(t,{JC:()=>b,KK:()=>SequenceTracker,Vy:()=>a,ai:()=>v,rd:()=>c});let Leaf=class Leaf{constructor(e){this.children=[],this.parent=e}delete(e){let t=this.children.indexOf(e);return -1!==t&&(this.children=this.children.slice(0,t).concat(this.children.slice(t+1)),0===this.children.length&&this.parent.delete(this),!0)}add(e){return this.children.push(e),this}};let RadixTrie=class RadixTrie{constructor(e){this.parent=null,this.children={},this.parent=e||null}get(e){return this.children[e]}insert(e){let t=this;for(let n=0;n","\xbf":"?"},i={"`":"~",1:"!",2:"@",3:"#",4:"$",5:"%",6:"^",7:"&",8:"*",9:"(",0:")","-":"_","=":"+","[":"{","]":"}","\\":"|",";":":","'":'"',",":"<",".":">","/":"?",q:"Q",w:"W",e:"E",r:"R",t:"T",y:"Y",u:"U",i:"I",o:"O",p:"P",a:"A",s:"S",d:"D",f:"F",g:"G",h:"H",j:"J",k:"K",l:"L",z:"Z",x:"X",c:"C",v:"V",b:"B",n:"N",m:"M"},l={" ":"Space","+":"Plus"};function a(e,t=navigator.platform){var n,s,c;let{ctrlKey:d,altKey:h,metaKey:f,shiftKey:p,key:m}=e,g=[];for(let[e,t]of[d,h,f,p].entries())t&&g.push(o[e]);if(!o.includes(m)){let e=g.includes("Alt")&&u.test(t)&&null!=(n=r[m])?n:m,a=g.includes("Shift")&&u.test(t)&&null!=(s=i[e])?s:e,o=null!=(c=l[a])?c:a;g.push(o)}return g.join("+")}let o=["Control","Alt","Meta","Shift"];function s(e,t){let n,r,i;{var l,a,o,s=(l=e,a=t,r="u"this.reset(),SequenceTracker.CHORD_TIMEOUT)}};function c(e){return e.split(" ").map(e=>s(e)).join(" ")}function d(e){if(!(e instanceof HTMLElement))return!1;let t=e.nodeName.toLowerCase(),n=(e.getAttribute("type")||"").toLowerCase();return"select"===t||"textarea"===t||"input"===t&&"submit"!==n&&"reset"!==n&&"checkbox"!==n&&"radio"!==n&&"file"!==n||e.isContentEditable}SequenceTracker.CHORD_TIMEOUT=1500;let h=new RadixTrie,f=new WeakMap,p=h,m=new SequenceTracker({onReset(){p=h}});function g(e){if(e.defaultPrevented||!(e.target instanceof Node))return;if(d(e.target)){let t=e.target;if(!t.id||!t.ownerDocument.querySelector(`[data-hotkey-scope="${t.id}"]`))return}let t=p.get(a(e));if(!t)return void m.reset();if(m.registerKeypress(e),p=t,t instanceof Leaf){let r,i=e.target,l=!1,a=d(i);for(let e=t.children.length-1;e>=0;e-=1){let n=(r=t.children[e]).getAttribute("data-hotkey-scope");if(!a&&!n||a&&i.id===n){l=!0;break}}if(r&&l){var n;let t;n=r,t=new CustomEvent("hotkey-fire",{cancelable:!0,detail:{path:m.path}}),n.dispatchEvent(t)&&(d(n)?n.focus():n.click()),e.preventDefault()}m.reset()}}function v(e,t){0===Object.keys(h.children).length&&document.addEventListener("keydown",g);let n=(function(e){let t=[],n=[""],r=!1;for(let i=0;ie.map(e=>s(e)).filter(e=>""!==e)).filter(e=>e.length>0)})(t||e.getAttribute("data-hotkey")||"").map(t=>h.insert(t).add(e));f.set(e,n)}function b(e){let t=f.get(e);if(t&&t.length)for(let n of t)n&&n.delete(e);0===Object.keys(h.children).length&&document.removeEventListener("keydown",g)}},51031:e=>{"use strict";e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},55150:(e,t,n)=>{"use strict";n.d(t,{Bu:()=>u,YV:()=>o,o:()=>s});let r=null;function i(e){return e instanceof HTMLSelectElement||(a(e)?e.checked!==e.defaultChecked:e.value!==e.defaultValue)}function l(e){return e instanceof HTMLInputElement||e instanceof HTMLTextAreaElement||e instanceof HTMLSelectElement}function a(e){return e instanceof HTMLInputElement&&/checkbox|radio/.test(e.type)}function o(e,t){var n,a,o,s,u,c;let d,h=null!=(n=null==t?void 0:t.scope)?n:document,f=null!=(a=null==t?void 0:t.selector)?a:".js-session-resumable",p=null!=(o=null==t?void 0:t.fields)?o:h.querySelectorAll(f),m=null!=(s=null==t?void 0:t.keyPrefix)?s:"session-resume:",g=null!=(u=null==t?void 0:t.storageFilter)?u:i;try{d=null!=(c=null==t?void 0:t.storage)?c:sessionStorage}catch(e){return}let v=`${m}${e}`,b=[];for(let e of p)l(e)&&b.push(e);let y=b.filter(e=>!!e.id&&g(e)&&e.form!==r).map(e=>e instanceof HTMLSelectElement?[e.id,Array.from(e.selectedOptions).map(e=>e.value)]:[e.id,e.value]);if(y.length)try{let e=d.getItem(v);if(null!==e){let t=JSON.parse(e).filter(function(e){return!y.some(t=>t[0]===e[0])});y=y.concat(t)}d.setItem(v,JSON.stringify(y))}catch(e){}}function s(e,t){var n,r;let i,o,s=null!=(n=null==t?void 0:t.keyPrefix)?n:"session-resume:";try{i=null!=(r=null==t?void 0:t.storage)?r:sessionStorage}catch(e){return}let u=`${s}${e}`;try{o=i.getItem(u)}catch(e){}if(!o)return;let c=[],d=[];for(let[e,t]of JSON.parse(o)){let n=new CustomEvent("session:resume",{bubbles:!0,cancelable:!0,detail:{targetId:e,targetValue:t}});if(document.dispatchEvent(n)){let n=document.getElementById(e);if(l(n))if(n instanceof HTMLSelectElement){for(let e of n.options)e.selected=t.includes(e.value);c.push(n)}else a(n)?(n.checked=!n.defaultChecked,c.push(n)):n.value===n.defaultValue&&(n.value=t,c.push(n));else d.push([e,t])}}if(0===d.length)try{i.removeItem(u)}catch(e){}else i.setItem(u,JSON.stringify(d));setTimeout(function(){for(let e of c)e.dispatchEvent(new CustomEvent("change",{bubbles:!0,cancelable:!0}))},0)}function u(e){r=e.target,setTimeout(function(){e.defaultPrevented&&(r=null)},0)}},57226:(e,t,n)=>{"use strict";n.d(t,{Ck:()=>C,fK:()=>L,zB:()=>x});let r=()=>{let e=performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart{if("loading"===document.readyState)return"loading";{let t=r();if(t){if(e{let t=e.nodeName;return 1===e.nodeType?t.toLowerCase():t.toUpperCase().replace(/^#/,"")},a=new WeakMap;function o(e,t){return a.get(e)||a.set(e,new t),a.get(e)}let s=-1,u=e=>{addEventListener("pageshow",t=>{t.persisted&&(s=t.timeStamp,e(t))},!0)},c=(e,t,n,r)=>{let i,l;return a=>{let o;t.value>=0&&(a||r)&&((l=t.value-(i??0))||void 0===i)&&(i=t.value,t.delta=l,o=t.value,t.rating=o>n[1]?"poor":o>n[0]?"needs-improvement":"good",e(t))}},d=e=>{requestAnimationFrame(()=>requestAnimationFrame(()=>e()))},h=()=>{let e=r();return e?.activationStart??0},f=(e,t=-1)=>{let n=r(),i="navigate";return s>=0?i="back-forward-cache":n&&(document.prerendering||h()>0?i="prerender":document.wasDiscarded?i="restore":n.type&&(i=n.type.replace(/_/g,"-"))),{name:e,value:t,rating:"good",delta:0,entries:[],id:`v5-${Date.now()}-${Math.floor(0x82f79cd8fff*Math.random())+1e12}`,navigationType:i}},p=(e,t,n={})=>{try{if(PerformanceObserver.supportedEntryTypes.includes(e)){let r=new PerformanceObserver(e=>{Promise.resolve().then(()=>{t(e.getEntries())})});return r.observe({type:e,buffered:!0,...n}),r}}catch{}},m=e=>{let t=!1;return()=>{t||(e(),t=!0)}},g=-1,v=new Set,b=()=>"hidden"!==document.visibilityState||document.prerendering?1/0:0,y=e=>{if("hidden"===document.visibilityState){if("visibilitychange"===e.type)for(let e of v)e();isFinite(g)||(g="visibilitychange"===e.type?e.timeStamp:0,removeEventListener("prerenderingchange",y,!0))}},T=()=>{if(g<0){let e=h();g=(document.prerendering?void 0:globalThis.performance.getEntriesByType("visibility-state").filter(t=>"hidden"===t.name&&t.startTime>e)[0]?.startTime)??b(),addEventListener("visibilitychange",y,!0),addEventListener("prerenderingchange",y,!0),u(()=>{setTimeout(()=>{g=b()})})}return{get firstHiddenTime(){return g},onHidden(e){v.add(e)}}},w=e=>{document.prerendering?addEventListener("prerenderingchange",()=>e(),!0):e()},E=[1800,3e3],x=(e,t={})=>{((e,t={})=>{w(()=>{let n=T(),r,i=f("FCP"),l=p("paint",e=>{for(let t of e)"first-contentful-paint"===t.name&&(l.disconnect(),t.startTime{r=c(e,i=f("FCP"),E,t.reportAllChanges),d(()=>{i.value=performance.now()-n.timeStamp,r(!0)})}))})})(t=>{e((e=>{let t={timeToFirstByte:0,firstByteToFCP:e.value,loadState:i(s)};if(e.entries.length){let n=r(),l=e.entries.at(-1);if(n){let r=n.activationStart||0,a=Math.max(0,n.responseStart-r);t={timeToFirstByte:a,firstByteToFCP:e.value-a,loadState:i(e.entries[0].startTime),navigationEntry:n,fcpEntry:l}}}return Object.assign(e,{attribution:t})})(t))},t)};let N=class N{m;u(e){this.m?.(e)}};let k=[2500,4e3],L=(e,t={})=>{let n=o(t=Object.assign({},t),N),i=new WeakMap;n.m=e=>{let n=e.element;if(n){let r=t.generateTarget?.(n)??(e=>{let t="";try{for(;9!==e?.nodeType;){let n=e,r=n.id?"#"+n.id:[l(n),...Array.from(n.classList).sort()].join(".");if(t.length+r.length>99)return t||r;if(t=t?r+">"+t:r,n.id)break;e=n.parentNode}}catch{}return t})(n);i.set(e,r)}},((e,t={})=>{w(()=>{let n=T(),r,i=f("LCP"),l=o(t,N),a=e=>{for(let a of(t.reportAllChanges||(e=e.slice(-1)),e))l.u(a),a.startTime{a(s.takeRecords()),s.disconnect(),r(!0)}),l=e=>{var t;let r;e.isTrusted&&(t=n,r=globalThis.requestIdleCallback||setTimeout,"hidden"===document.visibilityState?t():(addEventListener("visibilitychange",t=m(t),{once:!0,capture:!0}),r(()=>{t(),removeEventListener("visibilitychange",t,{capture:!0})})),removeEventListener(e.type,l,{capture:!0}))};for(let e of["keydown","click","visibilitychange"])addEventListener(e,l,{capture:!0});u(n=>{r=c(e,i=f("LCP"),k,t.reportAllChanges),d(()=>{i.value=performance.now()-n.timeStamp,r(!0)})})}})})(t=>{e((e=>{let t={timeToFirstByte:0,resourceLoadDelay:0,resourceLoadDuration:0,elementRenderDelay:e.value};if(e.entries.length){let n=r();if(n){let r=n.activationStart||0,l=e.entries.at(-1),a=l.url&&performance.getEntriesByType("resource").filter(e=>e.name===l.url)[0],o=Math.max(0,n.responseStart-r),s=Math.max(o,a?(a.requestStart||a.startTime)-r:0),u=Math.min(e.value,Math.max(s,a?a.responseEnd-r:0));t={target:i.get(l),timeToFirstByte:o,resourceLoadDelay:s-o,resourceLoadDuration:u-s,elementRenderDelay:e.value-u,navigationEntry:n,lcpEntry:l},l.url&&(t.url=l.url),a&&(t.lcpResourceEntry=a)}}return Object.assign(e,{attribution:t})})(t))},t)},S=[800,1800],M=e=>{document.prerendering?w(()=>M(e)):"complete"!==document.readyState?addEventListener("load",()=>M(e),!0):setTimeout(e)},C=(e,t={})=>{((e,t={})=>{let n=f("TTFB"),i=c(e,n,S,t.reportAllChanges);M(()=>{let l=r();l&&(n.value=Math.max(l.responseStart-h(),0),n.entries=[l],i(!0),u(()=>{(i=c(e,n=f("TTFB",0),S,t.reportAllChanges))(!0)}))})})(t=>{e((e=>{let t={waitingDuration:0,cacheDuration:0,dnsDuration:0,connectionDuration:0,requestDuration:0};if(e.entries.length){let n=e.entries[0],r=n.activationStart||0,i=Math.max((n.workerStart||n.fetchStart)-r,0),l=Math.max(n.domainLookupStart-r,0),a=Math.max(n.connectStart-r,0),o=Math.max(n.connectEnd-r,0);t={waitingDuration:i,cacheDuration:l-i,dnsDuration:a-l,connectionDuration:o-a,requestDuration:e.value-o,navigationEntry:n}}return Object.assign(e,{attribution:t})})(t))},t)}},66661:(e,t,n)=>{"use strict";function r(e){let t=e.parentNode;if(null===t||!(t instanceof HTMLElement))throw Error();let n=0;t instanceof HTMLOListElement&&1!==t.start&&(n=t.start-1);let r=t.children;for(let t=0;tQuote,g:()=>MarkdownQuote});let i=0;function l(e){return e.replace(/&/g,"&").replace(/'/g,"'").replace(/"/g,""").replace(//g,">")}let a={INPUT:e=>e instanceof HTMLInputElement&&e.checked?"[x] ":"[ ] ",CODE(e){let t=e.textContent||"";return e.parentNode&&"PRE"===e.parentNode.nodeName?(e.textContent=`\`\`\` +${t.replace(/\n+$/,"")} +\`\`\` + +`,e):t.indexOf("`")>=0?`\`\` ${t} \`\``:`\`${t}\``},P(e){let t=document.createElement("p");return t.textContent=(e.textContent||"").replace(/<(\/?)(pre|strong|weak|em)>/g,"\\<$1$2\\>"),t},STRONG:e=>`**${e.textContent||""}**`,EM:e=>`_${e.textContent||""}_`,DEL:e=>`~${e.textContent||""}~`,BLOCKQUOTE(e){let t=(e.textContent||"").trim().replace(/^/gm,"> "),n=document.createElement("pre");return n.textContent=`${t} + +`,n},A(e){let t=e.textContent||"",n=e.getAttribute("href");return/^https?:/.test(t)&&t===n?t:n?`[${t}](${n})`:t},IMG(e){let t=e.getAttribute("alt")||"",n=e.getAttribute("src");if(!n)throw Error();let r=e.hasAttribute("width")?` width="${l(e.getAttribute("width")||"")}"`:"",i=e.hasAttribute("height")?` height="${l(e.getAttribute("height")||"")}"`:"";return r||i?`${l(t)}`:`![${t}](${n})`},LI(e){let t,n,l=e.parentNode;if(!l)throw Error();let a="";if(t=e.childNodes[0],n=e.childNodes[1],!t||!(e.childNodes.length<3)||"OL"!==t.nodeName&&"UL"!==t.nodeName||n&&(n.nodeType!==Node.TEXT_NODE||(n.textContent||"").trim()))if("OL"===l.nodeName)if(i>0&&!l.previousSibling){let t=r(e)+i+1;a=`${t}\\. `}else a=`${r(e)+1}. `;else a="* ";let o=a.replace(/\S/g," "),s=(e.textContent||"").trim().replace(/^/gm,o),u=document.createElement("pre");return u.textContent=s.replace(o,a),u},OL(e){let t=document.createElement("li");return t.appendChild(document.createElement("br")),e.append(t),e},H1(e){let t=parseInt(e.nodeName.slice(1));return e.prepend(`${Array(t+1).join("#")} `),e},UL:e=>e};a.UL=a.OL;for(let e=2;e<=6;++e)a[`H${e}`]=a.H1;let Quote=class Quote{constructor(){this.selection=window.getSelection(),this.processSelectionText=e=>e}closest(e){let t=this.range.startContainer,n=t instanceof Element?t:t.parentElement;return n?n.closest(e):null}get active(){var e;return((null==(e=this.selection)?void 0:e.rangeCount)||0)>0}get range(){var e;return(null==(e=this.selection)?void 0:e.rangeCount)?this.selection.getRangeAt(0):new Range}set range(e){var t,n;null==(t=this.selection)||t.removeAllRanges(),null==(n=this.selection)||n.addRange(e)}set processSelectionTextFn(e){this.processSelectionText=e}get selectionText(){var e;return this.processSelectionText((null==(e=this.selection)?void 0:e.toString().trim())||"")}get quotedText(){return`> ${this.selectionText.replace(/\n/g,` +> `)} + +`}select(e){this.selection&&(this.selection.removeAllRanges(),this.selection.selectAllChildren(e))}insert(e){e.value?e.value=`${e.value} + +${this.quotedText}`:e.value=this.quotedText,e.dispatchEvent(new CustomEvent("change",{bubbles:!0,cancelable:!1})),e.focus(),e.selectionStart=e.value.length,e.scrollTop=e.scrollHeight}};let MarkdownQuote=class MarkdownQuote extends Quote{constructor(e="",t){super(),this.scopeSelector=e,this.callback=t}get selectionText(){var e,t;if(!this.selection)return"";let n=function(e,t){let n=e.startContainer;if(!n||!n.parentNode||!(n.parentNode instanceof HTMLElement))throw Error("the range must start within an HTMLElement");let l=n.parentNode,a=e.cloneContents();if(t){let e=a.querySelector(t);e&&(a=document.createDocumentFragment()).appendChild(e)}i=0;let o=l.closest("li");if(l.closest("pre")){let e=document.createElement("pre");e.appendChild(a),(a=document.createDocumentFragment()).appendChild(e)}else if(o&&o.parentNode&&("OL"===o.parentNode.nodeName&&(i=r(o)),!a.querySelector("li"))){let e=document.createElement("li");if(!o.parentNode)throw Error();let t=document.createElement(o.parentNode.nodeName);e.appendChild(a),t.appendChild(e),(a=document.createDocumentFragment()).appendChild(t)}return a}(this.range,null!=(e=this.scopeSelector)?e:"");null==(t=this.callback)||t.call(this,n);let l=document.createNodeIterator(n,NodeFilter.SHOW_ELEMENT,{acceptNode:e=>e.nodeName in a&&!function(e){if(e instanceof HTMLAnchorElement&&1===e.childNodes.length){let t=e.childNodes[0];if(t instanceof HTMLImageElement)return t.src===e.href}return!1}(e)&&("IMG"===e.nodeName||null!=e.firstChild||"INPUT"===e.nodeName&&e instanceof HTMLInputElement&&"checkbox"===e.type)?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}),o=[],s=l.nextNode();for(;s;)s instanceof HTMLElement&&o.push(s),s=l.nextNode();for(let e of(o.reverse(),o))e.replaceWith(a[e.nodeName](e));let u=document.body;if(!u)return"";let c=document.createElement("div");c.appendChild(n),c.style.cssText="position:absolute;left:-9999px;",u.appendChild(c);let d="";try{let e=document.createRange();e.selectNodeContents(c),this.selection.removeAllRanges(),this.selection.addRange(e),d=this.selection.toString(),this.selection.removeAllRanges(),e.detach()}finally{u.removeChild(c)}return this.processSelectionText(d.trim())}}},70837:(e,t,n)=>{"use strict";function r(e="ha"){let t,n={};for(let r of Array.from(document.head.querySelectorAll(`meta[name^="${e}-"]`))){let{name:i,content:l}=r,a=i.replace(`${e}-`,"").replace(/-/g,"_");"url"===a?t=l:n[a]=l}if(!t)throw Error(`AnalyticsClient ${e}-url meta tag not found`);return{collectorUrl:t,...Object.keys(n).length>0?{baseContext:n}:{}}}n.d(t,{O:()=>r})},77783:(e,t,n)=>{"use strict";let r;function i(e){return new Promise((t,n)=>{e.oncomplete=e.onsuccess=()=>t(e.result),e.onabort=e.onerror=()=>n(e.error)})}function l(e,t){let n;return(r,l)=>(()=>{if(n)return n;let r=indexedDB.open(e);return r.onupgradeneeded=()=>r.result.createObjectStore(t),(n=i(r)).then(e=>{e.onclose=()=>n=void 0},()=>{}),n})().then(e=>l(e.transaction(t,r).objectStore(t)))}function a(){return r||(r=l("keyval-store","keyval")),r}function o(e,t=a()){return t("readonly",t=>i(t.get(e)))}function s(e,t,n=a()){return n("readwrite",n=>(n.put(t,e),i(n.transaction)))}function u(e,t=a()){return t("readwrite",t=>(t.delete(e),i(t.transaction)))}function c(e=a()){return e("readwrite",e=>(e.clear(),i(e.transaction)))}function d(e=a()){return e("readonly",t=>{if(t.getAll&&t.getAllKeys)return Promise.all([i(t.getAllKeys()),i(t.getAll())]).then(([e,t])=>e.map((e,n)=>[e,t[n]]));let n=[];return e("readonly",e=>{var t;return(t=e=>n.push([e.key,e.value]),e.openCursor().onsuccess=function(){this.result&&(t(this.result),this.result.continue())},i(e.transaction)).then(()=>n)})})}n.d(t,{IU:()=>c,Jt:()=>o,hZ:()=>s,jO:()=>d,y$:()=>l,yH:()=>u})},78134:(e,t,n)=>{"use strict";n.d(t,{i4:()=>TemplateInstance,xr:()=>d});let r=new Map;function i(e){if(r.has(e))return r.get(e);let t=e.length,n=0,i=0,l=0,a=[];for(let r=0;rn&&(a.push(Object.freeze({type:"string",start:n,end:i,value:e.slice(n,i)})),n=i),a.push(Object.freeze({type:"part",start:i,end:r+2,value:e.slice(n+2,r).trim()})),r+=1,n=r+1)}return n"string"==typeof e?e:e.value).join("");this.element.setAttributeNS(this.attr.namespaceURI,this.attr.name,e)}}};let o=new WeakMap;let NodeTemplatePart=class NodeTemplatePart{constructor(e,t){this.expression=t,o.set(this,[e]),e.textContent=""}get value(){return o.get(this).map(e=>e.textContent).join("")}set value(e){this.replace(e)}get previousSibling(){return o.get(this)[0].previousSibling}get nextSibling(){return o.get(this)[o.get(this).length-1].nextSibling}replace(...e){var t,n;let r=e.map(e=>"string"==typeof e?new Text(e):e);r.length||r.push(new Text(""));let i=o.get(this)[0];for(let e of r)null==(t=i.parentNode)||t.insertBefore(e,i);for(let e of o.get(this))null==(n=e.parentNode)||n.removeChild(e);o.set(this,r)}};let InnerTemplatePart=class InnerTemplatePart extends NodeTemplatePart{constructor(e){var t;super(e,null!=(t=e.getAttribute("expression"))?t:""),this.template=e}get directive(){var e;return null!=(e=this.template.getAttribute("directive"))?e:""}};function s(e){return{processCallback(t,n,r){var i;if("object"==typeof r&&r){for(let t of n)if(t.expression in r){let n=null!=(i=r[t.expression])?i:"";e(t,n,r)}}}}}function u(e,t){e.value=t instanceof Node?t:String(t)}let c=s(u),d=s((e,t)=>{"boolean"==typeof t&&e instanceof AttributeTemplatePart&&"boolean"==typeof e.element[e.attributeName]&&(e.booleanValue=t,1)||u(e,t)}),h=new WeakMap,f=new WeakMap;let TemplateInstance=class TemplateInstance extends(globalThis.DocumentFragment||EventTarget){constructor(e,t,n=c){var r,l;super(),Object.getPrototypeOf(this)!==TemplateInstance.prototype&&Object.setPrototypeOf(this,TemplateInstance.prototype),this.appendChild(e.content.cloneNode(!0)),f.set(this,Array.from(function* e(t){let n,r=t.ownerDocument.createTreeWalker(t,NodeFilter.SHOW_TEXT|NodeFilter.SHOW_ELEMENT,null);for(;n=r.nextNode();)if(n instanceof HTMLTemplateElement)if(n.hasAttribute("directive"))yield new InnerTemplatePart(n);else for(let t of e(n.content))yield t;else if(n instanceof Element&&n.hasAttributes())for(let e=0;e{"use strict";function r(e,t,n){if(!t.has(e))throw TypeError("attempted to get private field on non-instance");return n}n.d(t,{_:()=>r})},95493:(e,t,n)=>{"use strict";function r(e,t){return i(function(e){if(e.activeElement!==e.body)return e.activeElement;var t=e.querySelectorAll(":hover"),n=t.length;if(n)return t[n-1]}(e),t)}function i(e,t){var n=e;if(!n)return Promise.resolve(t());var r=n.ownerDocument.documentElement,i=function(e){for(var t=[];e;){var n=e.getBoundingClientRect(),r=n.top,i=n.left;t.push({element:e,top:r,left:i}),e=e.parentElement}return t}(n);return Promise.resolve(t()).then(function(e){var t=function(e){for(var t=0;tr,_H:()=>i})},95754:(e,t,n)=>{"use strict";n.d(t,{A:()=>l});let r=["direction","boxSizing","width","height","overflowX","overflowY","borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth","borderStyle","paddingTop","paddingRight","paddingBottom","paddingLeft","fontStyle","fontVariant","fontWeight","fontStretch","fontSize","fontSizeAdjust","lineHeight","fontFamily","textAlign","textTransform","textIndent","textDecoration","letterSpacing","wordSpacing","tabSize","MozTabSize"],i="u">typeof window&&null!=window.mozInnerScreenX;function l(e,t,n){let l=n&&n.debug||!1;if(l){let e=document.querySelector("#input-textarea-caret-position-mirror-div");e&&e.parentNode.removeChild(e)}let a=document.createElement("div");a.id="input-textarea-caret-position-mirror-div",document.body.appendChild(a);let o=a.style,s=window.getComputedStyle?window.getComputedStyle(e):e.currentStyle,u="INPUT"===e.nodeName;for(let t of(o.whiteSpace="pre-wrap",u||(o.wordWrap="break-word"),o.position="absolute",l||(o.visibility="hidden"),r))if(u&&"lineHeight"===t)if("border-box"===s.boxSizing){let e=parseInt(s.height),t=parseInt(s.paddingTop)+parseInt(s.paddingBottom)+parseInt(s.borderTopWidth)+parseInt(s.borderBottomWidth),n=t+parseInt(s.lineHeight);e>n?o.lineHeight=`${e-t}px`:e===n?o.lineHeight=s.lineHeight:o.lineHeight=0}else o.lineHeight=s.height;else if(u||"width"!==t||"border-box"!==s.boxSizing)o[t]=s[t];else{let n=parseFloat(s.borderLeftWidth)+parseFloat(s.borderRightWidth),r=i?parseFloat(s[t])-n:e.clientWidth+n;o[t]=`${r}px`}i?e.scrollHeight>parseInt(s.height)&&(o.overflowY="scroll"):o.overflow="hidden",a.textContent=e.value.substring(0,t),u&&(a.textContent=a.textContent.replace(/\s/g,"\xa0"));let c=document.createElement("span");c.textContent=e.value.substring(t)||".",a.appendChild(c);let d={top:c.offsetTop+parseInt(s.borderTopWidth),left:c.offsetLeft+parseInt(s.borderLeftWidth),height:parseInt(s.lineHeight)};return l?c.style.backgroundColor="#aaa":document.body.removeChild(a),d}}}]); +//# sourceMappingURL=66721-e87701d93573.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/66990-46bd135c9449.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/66990-46bd135c9449.js" new file mode 100644 index 0000000..01a2c3a --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/66990-46bd135c9449.js" @@ -0,0 +1,3 @@ +performance.mark("js-parse-end:66990-46bd135c9449.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[66990],{23470:(e,t,a)=>{a.d(t,{F:()=>c});var r=a(74848),n=a(16522),i=a(5524),l=a(96540),s=a(51220);function c({items:e,itemHeight:t,style:a,renderItem:n,makeKey:i,ariaControls:c,shouldUseActionList:h=!1,className:u,containerRole:m="none"}){let f=(0,l.useRef)(null),g=(0,s.Te)({count:e.length,getScrollElement:(0,l.useCallback)(()=>f.current,[]),estimateSize:(0,l.useCallback)(()=>t,[t])});return(0,r.jsx)(o,{ref:f,style:a,virtualizer:g,id:c,shouldUseActionList:h,className:u,children:g.getVirtualItems().map((t,a)=>(0,r.jsx)(d,{containerRole:m,virtualRow:t,children:n(e[t.index],a)},i(e[t.index])))})}function o(e){let t,a,l=(0,n.c)(11),{ref:s,children:c,style:o,virtualizer:d,id:h,shouldUseActionList:u,className:m}=e;return l[0]!==c||l[1]!==h||l[2]!==u||l[3]!==d?(t=u?(0,r.jsx)(i.l,{id:h,role:"menu",style:{height:d.getTotalSize(),width:"100%",position:"relative"},selectionVariant:"single",children:c}):(0,r.jsx)("ul",{role:"menu",style:{height:d.getTotalSize(),width:"100%",position:"relative"},id:h,children:c}),l[0]=c,l[1]=h,l[2]=u,l[3]=d,l[4]=t):t=l[4],l[5]!==m||l[6]!==s||l[7]!==h||l[8]!==o||l[9]!==t?(a=(0,r.jsx)("div",{ref:s,style:o,id:h,className:m,children:t}),l[5]=m,l[6]=s,l[7]=h,l[8]=o,l[9]=t,l[10]=a):a=l[10],a}function d(e){let t,a,i=(0,n.c)(7),{children:l,containerRole:s,virtualRow:c}=e,o=void 0===s?"none":s,d=`${c.size}px`,h=`translateY(${c.start}px)`;return i[0]!==d||i[1]!==h?(t={position:"absolute",top:0,left:0,width:"100%",height:d,transform:h},i[0]=d,i[1]=h,i[2]=t):t=i[2],i[3]!==l||i[4]!==o||i[5]!==t?(a=(0,r.jsx)("li",{role:o,style:t,children:l}),i[3]=l,i[4]=o,i[5]=t,i[6]=a):a=i[6],a}try{c.displayName||(c.displayName="FixedSizeVirtualList")}catch{}try{o.displayName||(o.displayName="ListContainer")}catch{}try{d.displayName||(d.displayName="ItemContainer")}catch{}},38077:(e,t,a)=>{a.d(t,{z:()=>i});var r=a(74848),n=a(16522);function i(e){let t,a,i,s=(0,n.c)(10),{text:c,search:o,hideOverflow:d,overflowWidth:h}=e,u=void 0===h?0:h;s[0]!==o||s[1]!==c?(t=(function(e,t){if(!t)return[e];let a=e.toLowerCase().split(t.toLowerCase());if(a.length<2)return[e];let r=0,n=[];for(let i of a)n.push(e.substring(r,r+i.length)),r+=i.length,n.push(e.substring(r,r+t.length)),r+=t.length;return n})(c,o).map(l),s[0]=o,s[1]=c,s[2]=t):t=s[2];let m=t,f=void 0!==d&&d?"hidden":"visible",g=u?`${u}px`:void 0,y=o.length?"fg.muted":"fg.default";return s[3]!==f||s[4]!==g||s[5]!==y?(a={maxWidth:g,overflow:f,color:y},s[3]=f,s[4]=g,s[5]=y,s[6]=a):a=s[6],s[7]!==m||s[8]!==a?(i=(0,r.jsx)("div",{style:a,className:"HighlightedText-module__HighlightedText--XiJMv",children:m}),s[7]=m,s[8]=a,s[9]=i):i=s[9],i}function l(e,t){return t%2==1?(0,r.jsx)("strong",{className:"color-fg-default",children:e},t):e}try{i.displayName||(i.displayName="HighlightedText")}catch{}},41245:(e,t,a)=>{a.d(t,{A:()=>r});let r=(e,t)=>{let a=new URL(e,window.location.origin),r=new URL(t,window.location.origin);return r.href.includes("#")&&a.host===r.host&&a.pathname===r.pathname&&a.search===r.search}},66990:(e,t,a)=>{a.d(t,{aH:()=>eo,PI:()=>es,Qe:()=>ec,JJ:()=>el});var r=a(74848),n=a(16522),i=a(21373),l=a(72511),s=a(10436),c=a(59672),o=a(38621),d=a(81960),h=a(26108),u=a(5524),m=a(30093),f=a(69726),g=a(96540),y=a(56038),p=a(54571),x=a(29e3),b=a(40961);function S(e){let t,a,l=(0,n.c)(6),{isOpen:s,onDismiss:c,onConfirm:o}=e;l[0]===Symbol.for("react.memo_cache_sentinel")?(t=[y.XC?.body],l[0]=t):t=l[0];let[d]=(0,p.I)(_,null,t);return l[1]!==d||l[2]!==s||l[3]!==o||l[4]!==c?(a=d?(0,b.createPortal)((0,r.jsxs)(x.A,{isOpen:s,onDismiss:c,children:[(0,r.jsx)(x.A.Header,{children:"Create branch"}),(0,r.jsxs)("div",{className:"p-3",children:[(0,r.jsx)("span",{children:"A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?"}),(0,r.jsxs)("div",{className:"CheckTagNameDialog-module__DialogFooterButtons--HNAWb",children:[(0,r.jsx)(i.Q,{onClick:c,children:"Cancel"}),(0,r.jsx)(i.Q,{variant:"danger",onClick:o,className:"ml-2",children:"Create"})]})]})]}),document.body):null,l[1]=d,l[2]=s,l[3]=o,l[4]=c,l[5]=a):a=l[5],a}function _(){return document.body}try{S.displayName||(S.displayName="CheckTagNameDialog")}catch{}var v=a(86877),R=a(57387),j=a(96379),C=a(70170);function T({onDismiss:e,onCreate:t,initialTagName:a,tagValidationUrl:n}){let[i,l]=(0,g.useState)(a),s=(0,g.useRef)(!1),c=(0,g.useRef)(null),o=i?.trim(),{state:d,message:h,validateTag:u}=function(e){let[t,a]=(0,g.useState)("empty"),[r,n]=(0,g.useState)(""),i=(0,g.useRef)(""),l=(0,g.useCallback)(async t=>{if(i.current=t,!t){a("empty"),n("Tag cannot be blank");return}a("loading");let r=new URL(e,window.location.origin),l=new URLSearchParams(r.search.slice(1));l.append("tag_name",t),r.search=l.toString();try{let e=await (0,j.DI)(r.toString(),{headers:{Accept:"application/json"}});if(t!==i.current)return;if(!e.ok){a("invalid"),n("Unable to validate tag name. Please try again.");return}let l=(await e.json()).status;a(l||"empty"),n(function(e,t){switch(e){case"branch_exists":case"pending":case"valid":return`${t} will be created on publish`;case"duplicate":return`${t} is used by another release`;case"empty":return"Tag cannot be blank";case"immutable":return`${t} is used by an immutable release and cannot be reused`;case"invalid":return"Contains invalid characters. Use safe special characters ., -, or _ instead";default:return""}}(l||"empty",t))}catch{if(t!==i.current)return;a("invalid"),n("Unable to validate tag name. Please try again.")}},[e]);return{state:t,message:r,validateTag:(0,g.useMemo)(()=>(0,C.s)(l,500),[l])}}(n),f="loading"===d,y="empty"===d&&s.current,p="invalid"===d||"immutable"===d||"duplicate"===d||y,x=!f&&h&&("valid"===d||"pending"===d||"branch_exists"===d||p);(0,g.useEffect)(()=>{a?.trim()&&u(a.trim())},[]);let b=(0,g.useCallback)(e=>{let t=e.target.value;l(t),s.current=!0,u(t.trim())},[u]),S=(0,g.useCallback)(()=>{o&&(t(o),e())},[o,t,e]),_=(0,g.useCallback)(e=>{e.preventDefault(),f||p||S()},[S,f,p]);return(0,r.jsx)(R.l,{onClose:e,title:"Create new tag",width:"medium",className:"CreateTagDialog-module__Dialog--a69Xp",initialFocusRef:c,footerButtons:[{buttonType:"default",content:"Cancel",onClick:e},{buttonType:"primary",content:"Create",onClick:S,disabled:f||p,type:"submit"}],children:(0,r.jsx)("form",{onSubmit:_,children:(0,r.jsxs)(v.A,{required:!0,children:[(0,r.jsx)(v.A.Label,{children:"Tag"}),(0,r.jsx)(m.A,{ref:c,value:i,onChange:b,"aria-label":"Tag name",block:!0,loading:f}),x&&(0,r.jsx)(v.A.Validation,{variant:p?"error":"success",children:h}),"branch_exists"===d&&(0,r.jsx)(v.A.Caption,{children:"Creating a tag with the same name as a branch can cause ambiguity when selecting refs"})]})})})}try{T.displayName||(T.displayName="CreateTagDialog")}catch{}async function N(e,t){let a=new FormData;a.set("value",t);let r=await (0,j.DI)(e,{method:"POST",body:a,headers:{Accept:"application/json"}});return!!r.ok&&!!await r.text()}async function w(e,t,a){let r=new FormData;r.set("name",t),r.set("branch",a);let n=await (0,j.DI)(e,{method:"POST",body:r,headers:{Accept:"application/json"}});if(n.ok)return{success:!0,name:(await n.json()).name};try{let{error:e}=await n.json();if(e)return{success:!1,error:e};throw Error("Unknown response from create branch API")}catch{return{success:!1,error:"Something went wrong."}}}var k=a(31604),I=a(97068),L=a(34164);function O(e){let t,a,l,s,c,d,h,u,m,f,y,p=(0,n.c)(52),{ariaDescribedBy:x,ariaLabelledBy:b,ariaLabel:S,hotKey:_,onOpenChange:v,size:R,displayCommitish:j,variant:C,refType:T,children:N,preventClosing:w,inputRef:O,overlayOpen:A,onOverlayChange:F,focusTrapEnabled:E,buttonClassName:D,buttonText:V,persistButtonText:P,buttonPrefix:z,showIcon:$,allowResizing:B,useFocusZone:K,disabled:H,anchoredOverlayProps:W,renderAnchor:U}=e,M=void 0===P||P,Q=void 0===$||$,X=(0,g.useId)(),Z=`-${e.idEnding||X}`,G=`ref-picker${Z}`;p[0]!==v||p[1]!==F?(t=e=>{F(e),v?.(e)},p[0]=v,p[1]=F,p[2]=t):t=p[2];let J=t;e:{let e;if(void 0===E||E){let e;p[3]!==O?(e={initialFocusRef:O},p[3]=O,p[4]=e):e=p[4],a=e;break e}p[5]!==O?(e={initialFocusRef:O,disabled:!0},p[5]=O,p[6]=e):e=p[6],a=e}let q=a;p[7]!==z||p[8]!==V||p[9]!==j||p[10]!==M?(l=()=>{let e=j.length>0,t=V&&M?V:e?j:V||"";return z?(0,r.jsxs)(r.Fragment,{children:[(0,r.jsxs)("span",{className:"fgColor-muted",children:[z,":"]}),(0,r.jsxs)("span",{children:[" ",t]})]}):t},p[7]=z,p[8]=V,p[9]=j,p[10]=M,p[11]=l):l=p[11];let Y=l,ee="branch"===T?"Select a branch":"Select a tag";return p[12]!==ee?(s={role:"dialog",width:"medium","aria-label":ee},p[12]=ee,p[13]=s):s=p[13],p[14]!==J?(c=()=>J(!0),p[14]=J,p[15]=c):c=p[15],p[16]!==J||p[17]!==w?(d=()=>!w&&J(!1),p[16]=J,p[17]=w,p[18]=d):d=p[18],p[19]!==B||p[20]!==x||p[21]!==S||p[22]!==b||p[23]!==D||p[24]!==G||p[25]!==H||p[26]!==j||p[27]!==Y||p[28]!==_||p[29]!==J||p[30]!==T||p[31]!==U||p[32]!==Q||p[33]!==R||p[34]!==C?(h=e=>U?U({...e,"aria-labelledby":b,disabled:H}):(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(i.Q,{...e,"data-hotkey":_,disabled:H,size:R,variant:C,style:{minWidth:B?0:void 0},trailingVisual:o.TriangleDownIcon,"aria-describedby":x,"aria-labelledby":b,"aria-label":b?void 0:S??`${j} ${T}`,"data-testid":"anchor-button",id:G,className:(0,L.$)(D,"RefSelectorAnchoredOverlay-module__RefSelectorOverlayBtn--D34zl"),children:(0,r.jsxs)("div",{className:"RefSelectorAnchoredOverlay-module__RefSelectorOverlayContainer--mCbv8",children:[Q&&(0,r.jsx)("div",{className:"RefSelectorAnchoredOverlay-module__RefSelectorOverlayHeader--D4cnZ",children:"tag"===T?(0,r.jsx)(o.TagIcon,{size:"small"}):(0,r.jsx)(o.GitBranchIcon,{size:"small"})}),(0,r.jsx)("div",{style:{maxWidth:B?void 0:125},className:(0,L.$)("ref-selector-button-text-container","RefSelectorAnchoredOverlay-module__RefSelectorBtnTextContainer--yO402"),children:(0,r.jsxs)("span",{className:"RefSelectorAnchoredOverlay-module__RefSelectorText--bxVhQ",children:["\xa0",Y()]})})]})}),(0,r.jsx)("button",{hidden:!0,"data-testid":"ref-selector-hotkey-button","data-hotkey":_,onClick:()=>J(!0),"data-hotkey-scope":"read-only-cursor-text-area",disabled:H})]}),p[19]=B,p[20]=x,p[21]=S,p[22]=b,p[23]=D,p[24]=G,p[25]=H,p[26]=j,p[27]=Y,p[28]=_,p[29]=J,p[30]=T,p[31]=U,p[32]=Q,p[33]=R,p[34]=C,p[35]=h):h=p[35],p[36]!==K?(u=K?{bindKeys:I.z0.ArrowAll|I.z0.Tab}:{disabled:!0},p[36]=K,p[37]=u):u=p[37],p[38]===Symbol.for("react.memo_cache_sentinel")?(m={height:"100%"},p[38]=m):m=p[38],p[39]!==G||p[40]!==N?(f=(0,r.jsx)("div",{"data-testid":"overlay-content","aria-labelledby":G,id:"selectPanel",style:m,children:N}),p[39]=G,p[40]=N,p[41]=f):f=p[41],p[42]!==W||p[43]!==q||p[44]!==A||p[45]!==h||p[46]!==u||p[47]!==f||p[48]!==s||p[49]!==c||p[50]!==d?(y=(0,r.jsx)(k.T,{open:A,overlayProps:s,onOpen:c,onClose:d,renderAnchor:h,focusTrapSettings:q,focusZoneSettings:u,...W,children:f}),p[42]=W,p[43]=q,p[44]=A,p[45]=h,p[46]=u,p[47]=f,p[48]=s,p[49]=c,p[50]=d,p[51]=y):y=p[51],y}try{O.displayName||(O.displayName="RefSelectorAnchoredOverlay")}catch{}var A=a(12683);function F(e){let t,a,i,l,s=(0,n.c)(11),{text:c,onClick:o,href:d,sx:h}=e,m=!!d;s[0]!==h?(t={...h},s[0]=h,s[1]=t):t=s[1],s[2]!==t||s[3]!==c?(a=(0,r.jsx)(A.az,{sx:t,children:c}),s[2]=t,s[3]=c,s[4]=a):a=s[4];let f=a;s[5]===Symbol.for("react.memo_cache_sentinel")?(i={sx:{minWidth:0}},s[5]=i):i=s[5];let g=i;return s[6]!==d||s[7]!==f||s[8]!==m||s[9]!==o?(l=m?(0,r.jsx)(u.l.LinkItem,{role:"link",href:d,onClick:()=>o?.(),...g,children:f}):(0,r.jsx)(u.l.Item,{role:"button",onSelect:()=>o?.(),...g,children:f}),s[6]=d,s[7]=f,s[8]=m,s[9]=o,s[10]=l):l=s[10],l}try{F.displayName||(F.displayName="RefSelectorFooter")}catch{}var E=a(23470),D=a(26607),V=a(38077),P=a(96459);let z=g.memo(function(e){let t,a,i=(0,n.c)(7),{isCurrent:l,isDefault:s,href:c,gitRef:o,filterText:d,ariaPosInSet:h,ariaSetSize:m,onSelect:f,onClick:g,shouldSetAsDiv:y,isPendingTag:p}=e,x=void 0!==y&&y,b=void 0!==p&&p;i[0]!==d||i[1]!==o||i[2]!==l||i[3]!==s||i[4]!==b?(t=(0,r.jsx)($,{gitRef:o,isDefault:s,isCurrent:l,filterText:d,isPendingTag:b}),i[0]=d,i[1]=o,i[2]=l,i[3]=s,i[4]=b,i[5]=t):t=i[5];let S=t;i[6]===Symbol.for("react.memo_cache_sentinel")?(a={minWidth:0},i[6]=a):a=i[6];let _={"aria-posinset":x?void 0:h,"aria-setsize":x?void 0:m,"aria-checked":l,sx:a,onSelect:()=>{f?.(o),c&&v(c,{reloadDocument:!0})},onClick:()=>{g?.(o),c&&v(c,{reloadDocument:!0})}},v=(0,P.Z)();return x?(0,r.jsxs)(u.l.Item,{role:"menuitemradio",as:"div",..._,children:[S,b&&(0,r.jsx)(u.l.TrailingVisual,{className:"fg-muted mr-1",children:"Created on publish"})]}):(0,r.jsxs)(u.l.Item,{role:"menuitemradio",..._,children:[S,b&&(0,r.jsx)(u.l.TrailingVisual,{className:"fg-muted mr-1",children:"Created on publish"})]})}),$=g.memo(function(e){let t,a,i,l,s,c,d,h=(0,n.c)(16),{isCurrent:u,isDefault:m,gitRef:f,filterText:g,showLeadingVisual:y}=e,p=void 0===y||y;return h[0]===Symbol.for("react.memo_cache_sentinel")?(t={display:"flex",justifyContent:"space-between"},a={display:"flex",minWidth:0,alignItems:"flex-end"},h[0]=t,h[1]=a):(t=h[0],a=h[1]),h[2]!==u||h[3]!==p?(i=p&&(0,r.jsx)(o.CheckIcon,{"aria-hidden":!0,"data-icon-visibility":u?"visible":"hidden",className:"RefItem-module__ItemIcon--uDlDK"}),h[2]=u,h[3]=p,h[4]=i):i=h[4],h[5]!==g||h[6]!==f?(l=(0,r.jsx)(V.z,{hideOverflow:!0,search:g,text:f},f),h[5]=g,h[6]=f,h[7]=l):l=h[7],h[8]!==i||h[9]!==l?(s=(0,r.jsxs)("div",{style:a,children:[i,l]}),h[8]=i,h[9]=l,h[10]=s):s=h[10],h[11]!==m?(c=m&&(0,r.jsx)(D.A,{children:"default"}),h[11]=m,h[12]=c):c=h[12],h[13]!==s||h[14]!==c?(d=(0,r.jsxs)("div",{style:t,children:[s,c]}),h[13]=s,h[14]=c,h[15]=d):d=h[15],d});try{z.displayName||(z.displayName="RefItem")}catch{}try{$.displayName||($.displayName="RefItemContent")}catch{}function B(e){let t,a=(0,n.c)(2);return a[0]!==e?(t=e.refs.length>20?(0,r.jsx)(H,{...e}):(0,r.jsx)(K,{...e}),a[0]=e,a[1]=t):t=a[1],t}function K(e){let t,a,i,l=(0,n.c)(12),{refs:s,defaultBranch:c,currentCommitish:o,getHref:d,filterText:h,onSelectItem:u,ariaControls:m,pendingTag:f}=e;return l[0]===Symbol.for("react.memo_cache_sentinel")?(t={maxHeight:330,height:"100%",overflowY:"auto",padding:"var(--base-size-8)"},l[0]=t):t=l[0],l[1]!==o||l[2]!==c||l[3]!==h||l[4]!==d||l[5]!==u||l[6]!==f||l[7]!==s?(a=s.map(e=>(0,r.jsx)(z,{href:d?.(e),isCurrent:o===e,isDefault:c===e,filterText:h,gitRef:e,onSelect:u,onClick:u,ariaPosInSet:s.indexOf(e)+1,ariaSetSize:s.length,isPendingTag:f===e},e)),l[1]=o,l[2]=c,l[3]=h,l[4]=d,l[5]=u,l[6]=f,l[7]=s,l[8]=a):a=l[8],l[9]!==m||l[10]!==a?(i=(0,r.jsx)("ul",{style:t,id:m,children:a}),l[9]=m,l[10]=a,l[11]=i):i=l[11],i}function H(e){let t,a,i,l=(0,n.c)(13),{refs:s,defaultBranch:c,currentCommitish:o,getHref:d,filterText:h,onSelectItem:u,ariaControls:m,pendingTag:f}=e;return l[0]===Symbol.for("react.memo_cache_sentinel")?(t={maxHeight:330,height:"100%",overflowY:"auto",padding:"var(--base-size-8)"},l[0]=t):t=l[0],l[1]!==o||l[2]!==c||l[3]!==h||l[4]!==d||l[5]!==u||l[6]!==f||l[7]!==s?(a=e=>(0,r.jsx)(z,{shouldSetAsDiv:!0,href:d?.(e),isCurrent:o===e,isDefault:c===e,filterText:h,gitRef:e,onSelect:u,onClick:u,ariaPosInSet:s.indexOf(e)+1,ariaSetSize:s.length,isPendingTag:f===e},e),l[1]=o,l[2]=c,l[3]=h,l[4]=d,l[5]=u,l[6]=f,l[7]=s,l[8]=a):a=l[8],l[9]!==m||l[10]!==s||l[11]!==a?(i=(0,r.jsx)(E.F,{ariaControls:m,items:s,itemHeight:32,style:t,containerRole:"group",makeKey:W,renderItem:a,className:"RefsList-module__FixedSizeVirtualList--sfJlf"}),l[9]=m,l[10]=s,l[11]=a,l[12]=i):i=l[12],i}function W(e){return e}try{B.displayName||(B.displayName="RefsList")}catch{}try{K.displayName||(K.displayName="FullRefsList")}catch{}try{H.displayName||(H.displayName="VirtualRefsList")}catch{}var U=a(69655);function M(e,t,a,r,n){return new U.d("branch"===r?U._.Branch:U._.Tag,n,(0,c.SHX)({owner:t,repo:a,action:"refs"}),e,`${t}/${a}`)}function Q(e,t){let a=e.fetchFailed?"failed":e.isLoading?"loading":"loaded";return{status:a,refs:e.currentSearchResult,showCreateAction:t&&e.searchTerm.length>0&&!e.exactMatchFound,searchIndex:e}}function X(e){let t=(0,g.useRef)(void 0);return t.current||(t.current=e()),t}var Z=a(4559);let G="RefSelectorV1-module__RefActionText--b19i0",J="RefSelectorV1-module__Divider--fKdqp";function q(e){let t,a,i,l,s,o,d,h,u,m,f,y,p,x,b,_,v,R=(0,n.c)(90),{ariaDescribedBy:j,ariaLabelledBy:C,ariaLabel:k,cacheKey:I,owner:L,repo:A,canCreate:F,canCreateTag:E,types:D,hotKey:V,onOpenChange:P,size:z,variant:$,getHref:B,onBeforeCreate:K,onRefTypeChanged:H,currentCommitish:W,onCreateError:U,onSelectItem:Z,closeOnSelect:G,selectedRefType:J,customFooterItemProps:q,buttonClassName:ee,buttonText:et,persistButtonText:ea,buttonPrefix:er,showIcon:en,allowResizing:ei,idEnding:es,useFocusZone:ec,disabled:eo,anchoredOverlayProps:ed,renderAnchor:eh,actionListDescription:eu}=e,em=void 0!==E&&E,[ef,eg]=(0,g.useState)(""),ey=(0,g.useRef)(null),ep=(0,g.useRef)(null),ex="tree"===J?"branch":J;R[0]!==W||R[1]!==J?(t="tree"===J?W.slice(0,7):W,R[0]=W,R[1]=J,R[2]=t):t=R[2];let eb=t,[eS,e_]=(0,g.useState)(!1),[ev,eR]=(0,g.useState)(!0),[ej,eC]=(0,g.useState)(!1),[eT,eN]=(0,g.useState)(!1),[ew,ek]=(0,g.useState)(null),[eI,eL]=(0,g.useState)(ex??(D??el)[0]),eO=(0,g.useId)(),eA=function(e,t,a,r,n,i){let[l,s]=(0,g.useState)({status:"uninitialized",refs:[],showCreateAction:!1,searchIndex:null}),c=(0,g.useRef)({render:()=>{s(Q(d.current,i))}}),o=(0,g.useRef)({render:()=>{s(Q(h.current,i))}}),d=X(()=>M(e,t,a,"branch",c.current)),h=X(()=>M(e,t,a,"tag",o.current));return(0,g.useEffect)(()=>{let n=`${t}/${a}`;d.current.nameWithOwner!==n&&(d.current=M(e,t,a,"branch",c.current)),h.current.nameWithOwner!==n&&(h.current=M(e,t,a,"tag",o.current)),async function(){let e="branch"===r?d.current:h.current;e.render(),await e.fetchData(),e.search(""),e.render()}()},[e,t,a,r,d,h]),(0,g.useEffect)(()=>{let e="branch"===r?d.current:h.current;e.search(n),e.render()},[n,r,d,h]),l}(I,L,A,eI,ef,F);R[3]!==L||R[4]!==A?(a=(0,c.SHX)({owner:L,repo:A,action:"branches"}),R[3]=L,R[4]=A,R[5]=a):a=R[5];let eF=a;R[6]!==L||R[7]!==A?(i=(0,c.FeW)({owner:L,repo:A}),R[6]=L,R[7]=A,R[8]=i):i=R[8];let eE=i;R[9]!==L||R[10]!==A?(l=(0,c.BUl)({owner:L,repo:A}),R[9]=L,R[10]=A,R[11]=l):l=R[11];let eD=l;R[12]!==W||R[13]!==B||R[14]!==ef||R[15]!==K||R[16]!==U||R[17]!==eF||R[18]!==eA.searchIndex?(s=async()=>{K?.(ef);let e=await w(eF,ef,W);e.success?B&&(eA.searchIndex?.clearLocalStorage(),window.location.href=B(e.name)):U?.(e.error)},R[12]=W,R[13]=B,R[14]=ef,R[15]=K,R[16]=U,R[17]=eF,R[18]=eA.searchIndex,R[19]=s):s=R[19];let eV=s;R[20]!==eE||R[21]!==eV||R[22]!==ef?(o=async()=>{if(await N(eE,ef)){eC(!0),eR(!1);return}eC(!1),eR(!1),eV()},R[20]=eE,R[21]=eV,R[22]=ef,R[23]=o):o=R[23];let eP=o;R[24]!==H?(d=e=>{eL(e),H?.(e)},R[24]=H,R[25]=d):d=R[25];let ez=d;R[26]===Symbol.for("react.memo_cache_sentinel")?(h=function(){e_(!1)},R[26]=h):h=R[26];let e$=h;R[27]!==Z?(u=(e,t)=>{Z?.(e,t),e$()},R[27]=Z,R[28]=u):u=R[28];let eB=u;R[29]!==eP||R[30]!==ef||R[31]!==eB||R[32]!==eI?(m=()=>{"tag"===eI?(eB(ef,"tag"),e$()):eP()},R[29]=eP,R[30]=ef,R[31]=eB,R[32]=eI,R[33]=m):m=R[33];let eK=m;R[34]!==eB||R[35]!==eA.refs?(f=e=>{eA.refs.includes(e)||ek(e),eg(""),eB(e,"tag"),eN(!1)},R[34]=eB,R[35]=eA.refs,R[36]=f):f=R[36];let eH=f;R[37]===Symbol.for("react.memo_cache_sentinel")?(y=()=>{eN(!0),e$()},R[37]=y):y=R[37];let eW=y,eU=eu?eO:j;return R[38]!==em||R[39]!==ez||R[40]!==G||R[41]!==q||R[42]!==eO||R[43]!==eb||R[44]!==ef||R[45]!==eK||R[46]!==eB||R[47]!==ew||R[48]!==e||R[49]!==eI||R[50]!==eA||R[51]!==ej?(p=(0,r.jsx)(Y,{filterText:ef,displayCommitish:eb,onFilterChange:eg,refType:eI,onRefTypeChange:ez,refsState:eA,onCreateError:e.onCreateError,showTagWarningDialog:ej,setShowTagWarningDialog:eC,onCreateRef:eK,inputRef:ey,createButtonRef:ep,onSelectItem:eB,closeOnSelect:G,closeRefSelector:e$,customFooterItemProps:q,...e,selectedRefType:eI,onOpenCreateTagDialog:eW,pendingTag:ew,canCreateTag:em,descriptionId:eO}),R[38]=em,R[39]=ez,R[40]=G,R[41]=q,R[42]=eO,R[43]=eb,R[44]=ef,R[45]=eK,R[46]=eB,R[47]=ew,R[48]=e,R[49]=eI,R[50]=eA,R[51]=ej,R[52]=p):p=R[52],R[53]!==ei||R[54]!==ed||R[55]!==k||R[56]!==C||R[57]!==ee||R[58]!==er||R[59]!==et||R[60]!==eo||R[61]!==eb||R[62]!==ev||R[63]!==V||R[64]!==es||R[65]!==P||R[66]!==eS||R[67]!==ea||R[68]!==eI||R[69]!==eh||R[70]!==en||R[71]!==ej||R[72]!==z||R[73]!==eU||R[74]!==p||R[75]!==ec||R[76]!==$?(x=(0,r.jsx)(O,{ariaDescribedBy:eU,ariaLabelledBy:C,ariaLabel:k,refType:eI,displayCommitish:eb,focusTrapEnabled:ev,preventClosing:ej,size:z,variant:$,onOpenChange:P,hotKey:V,inputRef:ey,overlayOpen:eS,onOverlayChange:e_,buttonClassName:ee,buttonText:et,persistButtonText:ea,buttonPrefix:er,showIcon:en,allowResizing:ei,idEnding:es,useFocusZone:ec,disabled:eo,anchoredOverlayProps:ed,renderAnchor:eh,children:p}),R[53]=ei,R[54]=ed,R[55]=k,R[56]=C,R[57]=ee,R[58]=er,R[59]=et,R[60]=eo,R[61]=eb,R[62]=ev,R[63]=V,R[64]=es,R[65]=P,R[66]=eS,R[67]=ea,R[68]=eI,R[69]=eh,R[70]=en,R[71]=ej,R[72]=z,R[73]=eU,R[74]=p,R[75]=ec,R[76]=$,R[77]=x):x=R[77],R[78]!==eV||R[79]!==ej?(b=ej&&(0,r.jsx)(S,{isOpen:ej,onDismiss:()=>{eC(!1),ep.current?.focus()},onConfirm:eV}),R[78]=eV,R[79]=ej,R[80]=b):b=R[80],R[81]!==eH||R[82]!==ef||R[83]!==eT||R[84]!==eD?(_=eT&&(0,r.jsx)(T,{onDismiss:()=>eN(!1),onCreate:eH,initialTagName:ef,tagValidationUrl:eD}),R[81]=eH,R[82]=ef,R[83]=eT,R[84]=eD,R[85]=_):_=R[85],R[86]!==x||R[87]!==b||R[88]!==_?(v=(0,r.jsxs)(r.Fragment,{children:[x,b,_]}),R[86]=x,R[87]=b,R[88]=_,R[89]=v):v=R[89],v}function Y(e){var t;let a,l,s,c,m,f,y,p,x,b,S,_,v,R,j,C,T,N,w,k,I,O,A,E=(0,n.c)(96),{canCreate:D,currentCommitish:V,displayCommitish:P,defaultBranch:z,filterText:$,getHref:K,hideShowAll:H,onSelectItem:W,closeOnSelect:U,closeRefSelector:M,onFilterChange:Q,onRefTypeChange:X,owner:G,selectedRefType:q,refsState:Y,refType:ei,repo:es,types:ed,onCreateRef:eh,inputRef:eu,createButtonRef:em,customFooterItemProps:ef,viewAllJustify:eg,actionListHeadingText:ey,actionListDescription:ep,onOpenCreateTagDialog:ex,pendingTag:eb,canCreateTag:eS,descriptionId:e_}=e,{refs:ev,showCreateAction:eR,status:ej}=Y;e:{if("tag"===ei&&eb&&!ev.includes(eb)){let e;E[0]!==eb||E[1]!==ev?(e=[eb,...ev],E[0]=eb,E[1]=ev,E[2]=e):e=E[2],a=e;break e}a=ev}let eC=a;E[3]!==M||E[4]!==ef?(l=function(){ef?.onClick?.(),M()},E[3]=M,E[4]=ef,E[5]=l):l=E[5];let eT=l;E[6]!==eC.length||E[7]!==ei?(s=()=>{let{single:e,plural:t}={branch:{single:"branch",plural:"branches"},tag:{single:"tag",plural:"tags"}}[ei],a=`${eC.length} ${1===eC.length?e:t} found`,r=setTimeout(()=>{(0,Z.i)(a)},1e3);return()=>clearTimeout(r)},E[6]=eC.length,E[7]=ei,E[8]=s):s=E[8],E[9]!==eC||E[10]!==ei?(c=[eC,ei],E[9]=eC,E[10]=ei,E[11]=c):c=E[11],(0,g.useEffect)(s,c),E[12]===Symbol.for("react.memo_cache_sentinel")?(m={display:"flex",flexDirection:"column",height:"100%"},E[12]=m):m=E[12],E[13]!==ey||E[14]!==ed?(f=ey??((t=ed??el).includes("branch")&&t.includes("tag")?"Switch branches/tags":t.includes("branch")?"Switch branches":t.includes("tag")?"Switch tags":void 0),E[13]=ey,E[14]=ed,E[15]=f):f=E[15],E[16]!==f?(y=(0,r.jsx)(d.A,{as:"h2",className:"RefSelectorV1-module__RefSelectorHeading--FSd2d",children:f}),E[16]=f,E[17]=y):y=E[17],E[18]!==M?(p=(0,r.jsx)(h.K,{tooltipDirection:"w","aria-label":"Cancel",variant:"invisible",icon:o.XIcon,onClick:M,className:"RefSelectorV1-module__RefSelectorCloseButton--x91Lr"}),E[18]=M,E[19]=p):p=E[19],E[20]!==y||E[21]!==p?(x=(0,r.jsxs)("div",{className:"RefSelectorV1-module__RefSelectorInnerContainer--pH_Dn",children:[y,p]}),E[20]=y,E[21]=p,E[22]=x):x=E[22],E[23]!==ep||E[24]!==e_?(b=ep&&(0,r.jsx)("p",{id:e_,className:"color-fg-muted f5",style:{paddingLeft:"16px",paddingRight:"16px",paddingBottom:"8px"},children:ep}),E[23]=ep,E[24]=e_,E[25]=b):b=E[25],E[26]!==D||E[27]!==$||E[28]!==eu||E[29]!==Q||E[30]!==ei?(S=(0,r.jsx)(ee,{defaultText:$,refType:ei,canCreate:D,onFilterChange:Q,ref:eu}),E[26]=D,E[27]=$,E[28]=eu,E[29]=Q,E[30]=ei,E[31]=S):S=E[31],E[32]!==b||E[33]!==S||E[34]!==x?(_=(0,r.jsxs)("div",{className:"RefSelectorV1-module__RefSelectorContainer--DFuLg",children:[x,b,S]}),E[32]=b,E[33]=S,E[34]=x,E[35]=_):_=E[35];let eN=eR&&0===eC.length?0:2;return E[36]!==eN?(v={paddingBottom:eN,flex:1,minHeight:0},E[36]=eN,E[37]=v):v=E[37],E[38]!==X||E[39]!==ei||E[40]!==ed?(R=(ed??el).length>1&&(0,r.jsx)("div",{className:"px-2 pb-2",children:(0,r.jsx)(ec,{refType:ei,onRefTypeChanged:X,className:"RefSelectorV1-module__RefTypeTabs--slHyr"})}),E[38]=X,E[39]=ei,E[40]=ed,E[41]=R):R=E[41],E[42]!==U||E[43]!==M||E[44]!==V||E[45]!==z||E[46]!==eC||E[47]!==$||E[48]!==K||E[49]!==W||E[50]!==eb||E[51]!==ei||E[52]!==q||E[53]!==eR||E[54]!==ej?(j="loading"===ej||"uninitialized"===ej?(0,r.jsx)(et,{refType:ei}):"failed"===ej?(0,r.jsx)(eo,{refType:ei}):0!==eC.length||eR&&"tag"!==ei?(0,r.jsx)(B,{ariaControls:"branch"===ei?"branches":"tags",filterText:$,refs:eC,defaultBranch:"branch"===ei?z:"",currentCommitish:ei===q?V:"",getHref:K,onSelectItem:e=>{W?.(e,ei),U&&M()},pendingTag:eb}):(0,r.jsx)(ea,{}),E[42]=U,E[43]=M,E[44]=V,E[45]=z,E[46]=eC,E[47]=$,E[48]=K,E[49]=W,E[50]=eb,E[51]=ei,E[52]=q,E[53]=eR,E[54]=ej,E[55]=j):j=E[55],E[56]!==v||E[57]!==R||E[58]!==j?(C=(0,r.jsxs)("div",{style:v,children:[R,j]}),E[56]=v,E[57]=R,E[58]=j,E[59]=C):C=E[59],E[60]!==em||E[61]!==P||E[62]!==$||E[63]!==eh||E[64]!==ei||E[65]!==ev||E[66]!==eR?(T=eR&&(0,r.jsxs)(r.Fragment,{children:["branch"===ei&&ev.length>0&&(0,r.jsx)(u.l.Divider,{className:(0,L.$)("d-block mt-0",J)}),(0,r.jsx)(en,{displayCommitish:P,newRefName:$,onCreateRef:eh,createButtonRef:em,refType:ei})]}),E[60]=em,E[61]=P,E[62]=$,E[63]=eh,E[64]=ei,E[65]=ev,E[66]=eR,E[67]=T):T=E[67],E[68]!==ef||E[69]!==H||E[70]!==eR?(N=(!H||ef)&&(0,r.jsx)(u.l.Divider,{className:(0,L.$)(`d-block ${eR?"mt-2":"mt-0"}`,J)}),E[68]=ef,E[69]=H,E[70]=eR,E[71]=N):N=E[71],E[72]!==M||E[73]!==H||E[74]!==G||E[75]!==ei||E[76]!==es||E[77]!==eg?(w=!H&&(0,r.jsx)(er,{justify:eg,refType:ei,owner:G,repo:es,onClick:M}),E[72]=M,E[73]=H,E[74]=G,E[75]=ei,E[76]=es,E[77]=eg,E[78]=w):w=E[78],E[79]!==ef||E[80]!==eT?(k=ef&&(0,r.jsx)(F,{...ef,onClick:eT}),E[79]=ef,E[80]=eT,E[81]=k):k=E[81],E[82]!==T||E[83]!==N||E[84]!==w||E[85]!==k?(I=(0,r.jsxs)(u.l,{className:"p-0",children:[T,N,w,k]}),E[82]=T,E[83]=N,E[84]=w,E[85]=k,E[86]=I):I=E[86],E[87]!==eS||E[88]!==ex||E[89]!==ei?(O="tag"===ei&&eS&&(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(u.l.Divider,{className:(0,L.$)("d-block mt-0",J)}),(0,r.jsx)("div",{className:"px-2",children:(0,r.jsx)(i.Q,{onClick:ex,block:!0,children:"Create new tag"})})]}),E[87]=eS,E[88]=ex,E[89]=ei,E[90]=O):O=E[90],E[91]!==_||E[92]!==C||E[93]!==I||E[94]!==O?(A=(0,r.jsxs)("div",{className:"py-2",style:m,children:[_,C,I,O]}),E[91]=_,E[92]=C,E[93]=I,E[94]=O,E[95]=A):A=E[95],A}function ee(e){let t,a,i=(0,n.c)(8),{refType:l,canCreate:s,onFilterChange:c,defaultText:d,ref:h}=e,u="tag"===l?s?"Search or create a new tag":"Search":s?"Find or create a branch...":"Find a branch...",f="tag"===l?"Filter tags":"Filter branches";return i[0]!==c?(t=e=>{let t=e.target;t instanceof HTMLInputElement&&c(t.value)},i[0]=c,i[1]=t):t=i[1],i[2]!==f||i[3]!==d||i[4]!==u||i[5]!==h||i[6]!==t?(a=(0,r.jsx)("div",{className:"RefSelectorV1-module__RefSelectorFilterContainer--nzwdI",children:(0,r.jsx)(m.A,{"aria-label":f,leadingVisual:o.SearchIcon,value:d,placeholder:u,ref:h,onInput:t,className:"RefSelectorV1-module__RefSelectorInput--Myj_6"})}),i[2]=f,i[3]=d,i[4]=u,i[5]=h,i[6]=t,i[7]=a):a=i[7],a}function et(e){let t,a=(0,n.c)(2),{refType:i}=e,l=`Loading ${"branch"===i?"branches":"tags"}...`;return a[0]!==l?(t=(0,r.jsx)("div",{className:"RefSelectorV1-module__LoadingContainer--B9AR4",children:(0,r.jsx)(f.A,{size:"medium","aria-label":l})}),a[0]=l,a[1]=t):t=a[1],t}function ea(){let e,t=(0,n.c)(1);return t[0]===Symbol.for("react.memo_cache_sentinel")?(e=(0,r.jsx)("div",{className:"RefSelectorV1-module__ZeroStateText--ZRhw5",children:"Nothing to show"}),t[0]=e):e=t[0],e}function er(e){let t,a,i,l,s=(0,n.c)(13),{refType:o,owner:d,repo:h,onClick:m,justify:f}=e,g=void 0===f?"start":f,y="branch"===o?"branches":"tags";return s[0]!==d||s[1]!==h||s[2]!==y?(t=(0,c.SHX)({owner:d,repo:h,action:y}),s[0]=d,s[1]=h,s[2]=y,s[3]=t):t=s[3],s[4]!==g?(a={justifyContent:g},s[4]=g,s[5]=a):a=s[5],s[6]!==a||s[7]!==y?(i=(0,r.jsxs)("div",{style:a,className:"RefSelectorV1-module__ViewAllRefsActionText--T80I4",children:["View all ",y]}),s[6]=a,s[7]=y,s[8]=i):i=s[8],s[9]!==m||s[10]!==t||s[11]!==i?(l=(0,r.jsx)(u.l.LinkItem,{role:"link",href:t,onClick:m,className:"RefSelectorV1-module__ViewAllRefsActionLink--riztS",children:i}),s[9]=m,s[10]=t,s[11]=i,s[12]=l):l=s[12],l}function en(e){let t,a,i,l,s,c,d=(0,n.c)(12),{displayCommitish:h,newRefName:m,onCreateRef:f,createButtonRef:g,refType:y}=e;return"tag"===y?null:(d[0]===Symbol.for("react.memo_cache_sentinel")?(t=(0,r.jsx)(o.GitBranchIcon,{className:"RefSelectorV1-module__BranchOcticon--Fpshx"}),a=(0,r.jsx)("span",{children:"Create branch\xa0"}),d[0]=t,d[1]=a):(t=d[0],a=d[1]),d[2]!==m?(i=(0,r.jsx)("span",{className:G,children:m}),d[2]=m,d[3]=i):i=d[3],d[4]===Symbol.for("react.memo_cache_sentinel")?(l=(0,r.jsx)("span",{children:"\xa0from\xa0"}),d[4]=l):l=d[4],d[5]!==h?(s=(0,r.jsx)("span",{className:G,children:h}),d[5]=h,d[6]=s):s=d[6],d[7]!==g||d[8]!==f||d[9]!==i||d[10]!==s?(c=(0,r.jsxs)(u.l.Item,{role:"button",onSelect:f,ref:g,children:[t,a,i,l,s]}),d[7]=g,d[8]=f,d[9]=i,d[10]=s,d[11]=c):c=d[11],c)}try{q.displayName||(q.displayName="RefSelectorV1")}catch{}try{Y.displayName||(Y.displayName="RefSelectorActionList")}catch{}try{ee.displayName||(ee.displayName="RefTextFilter")}catch{}try{et.displayName||(et.displayName="Loading")}catch{}try{ea.displayName||(ea.displayName="RefsZeroState")}catch{}try{er.displayName||(er.displayName="ViewAllRefsAction")}catch{}try{en.displayName||(en.displayName="CreateRefAction")}catch{}let ei="RefSelector-module__RefSelectorTabLink--WGX7u",el=["branch","tag"];function es(e){let t,a=(0,n.c)(2);return a[0]!==e?(t=(0,r.jsx)(q,{...e}),a[0]=e,a[1]=t):t=a[1],t}function ec(e){let t,a,l,c,o,d,h,u=(0,n.c)(19),{refType:m,onRefTypeChanged:f,sx:g,className:y}=e;u[0]!==g?(t={...g},u[0]=g,u[1]=t):t=u[1],u[2]!==y?(a=(0,L.$)("RefSelector-module__RefSelectorTabs--nkSFr",y),u[2]=y,u[3]=a):a=u[3];let p="branch"===m;u[4]!==f?(l=()=>f("branch"),u[4]=f,u[5]=l):l=u[5],u[6]!==p||u[7]!==l?(c=(0,r.jsx)(s.jl.Link,{as:i.Q,id:"branch-button","aria-controls":"branches",selected:p,onClick:l,className:ei,children:"Branches"}),u[6]=p,u[7]=l,u[8]=c):c=u[8];let x="tag"===m;return u[9]!==f?(o=()=>f("tag"),u[9]=f,u[10]=o):o=u[10],u[11]!==x||u[12]!==o?(d=(0,r.jsx)(s.jl.Link,{as:i.Q,id:"tag-button","aria-controls":"tags",selected:x,onClick:o,className:ei,children:"Tags"}),u[11]=x,u[12]=o,u[13]=d):d=u[13],u[14]!==t||u[15]!==a||u[16]!==c||u[17]!==d?(h=(0,r.jsxs)(s.jl,{sx:t,"aria-label":"Ref type",className:a,children:[c,d]}),u[14]=t,u[15]=a,u[16]=c,u[17]=d,u[18]=h):h=u[18],h}function eo(e){let t,a=(0,n.c)(2),{refType:i}=e,s="branch"===i?"branches":"tags";return a[0]!==s?(t=(0,r.jsxs)(l.A,{variant:"danger",children:["Could not load ",s]}),a[0]=s,a[1]=t):t=a[1],t}try{es.displayName||(es.displayName="RefSelector")}catch{}try{ec.displayName||(ec.displayName="RefTypeTabs")}catch{}try{eo.displayName||(eo.displayName="LoadingFailed")}catch{}},69655:(e,t,a)=>{a.d(t,{_:()=>o,d:()=>SearchIndex});var r=a(50467),n=a(82075),i=a(82518);let{getItem:l,setItem:s,removeItem:c}=(0,n.A)("localStorage",{throwQuotaErrorsOnSet:!0}),o={Branch:"branch",Tag:"tag"};let SearchIndex=class SearchIndex{render(){this.selector.render()}async fetchData(){try{if(!this.isLoading||this.fetchInProgress)return;if(!this.bootstrapFromLocalStorage()){this.fetchInProgress=!0,this.fetchFailed=!1;let e=await fetch(`${this.refEndpoint}?type=${this.refType}`,{headers:{Accept:"application/json"}});await this.processResponse(e)}this.isLoading=!1,this.fetchInProgress=!1,this.render()}catch{this.fetchInProgress=!1,this.fetchFailed=!0}}async processResponse(e){if(this.emitStats(e),!e.ok){this.fetchFailed=!0;return}let t=e.clone(),a=await e.json();this.knownItems=a.refs,this.cacheKey=a.cacheKey,this.flushToLocalStorage(await t.text())}emitStats(e){if(!e.ok)return void(0,i.iv)({incrementKey:"REF_SELECTOR_BOOT_FAILED"},!0);switch(e.status){case 200:(0,i.iv)({incrementKey:"REF_SELECTOR_BOOTED_FROM_UNCACHED_HTTP"});break;case 304:(0,i.iv)({incrementKey:"REF_SELECTOR_BOOTED_FROM_HTTP_CACHE"});break;default:(0,i.iv)({incrementKey:"REF_SELECTOR_UNEXPECTED_RESPONSE"})}}search(e){let t;if(this.searchTerm=e,""===e){this.currentSearchResult=this.knownItems;return}let a=[],r=[];for(let n of(this.exactMatchFound=!1,this.knownItems))if(!((t=n.indexOf(e))<0)){if(0===t){e===n?(r.unshift(n),this.exactMatchFound=!0):r.push(n);continue}a.push(n)}this.currentSearchResult=[...r,...a]}bootstrapFromLocalStorage(){let e=l(this.localStorageKey);if(!e)return!1;let t=JSON.parse(e);return t.cacheKey===this.cacheKey&&"refs"in t?(this.knownItems=t.refs,this.isLoading=!1,(0,i.iv)({incrementKey:"REF_SELECTOR_BOOTED_FROM_LOCALSTORAGE"}),!0):(c(this.localStorageKey),!1)}async flushToLocalStorage(e){try{s(this.localStorageKey,e)}catch(t){if(t.message.toLowerCase().includes("quota")){this.clearSiblingLocalStorage(),(0,i.iv)({incrementKey:"REF_SELECTOR_LOCALSTORAGE_OVERFLOWED"});try{s(this.localStorageKey,e)}catch(e){e.message.toLowerCase().includes("quota")&&(0,i.iv)({incrementKey:"REF_SELECTOR_LOCALSTORAGE_GAVE_UP"})}}else throw t}}clearSiblingLocalStorage(){for(let e of Object.keys(localStorage))e.startsWith(SearchIndex.LocalStoragePrefix)&&c(e)}clearLocalStorage(){c(this.localStorageKey)}get localStorageKey(){return`${SearchIndex.LocalStoragePrefix}:${this.nameWithOwner}:${this.refType}`}constructor(e,t,a,n,i){(0,r._)(this,"refType",void 0),(0,r._)(this,"selector",void 0),(0,r._)(this,"knownItems",[]),(0,r._)(this,"currentSearchResult",[]),(0,r._)(this,"exactMatchFound",!1),(0,r._)(this,"searchTerm",""),(0,r._)(this,"refEndpoint",void 0),(0,r._)(this,"cacheKey",void 0),(0,r._)(this,"nameWithOwner",void 0),(0,r._)(this,"isLoading",!0),(0,r._)(this,"fetchInProgress",!1),(0,r._)(this,"fetchFailed",!1),this.refType=e,this.selector=t,this.refEndpoint=a,this.cacheKey=n,this.nameWithOwner=i}};(0,r._)(SearchIndex,"LocalStoragePrefix","ref-selector")},96459:(e,t,a)=>{a.d(t,{Z:()=>d,o:()=>h});var r=a(16522),n=a(96540),i=a(3433),l=a(41245),s=a(65432),c=a(58578),o=a(24518);let d=()=>{let{routes:e}=n.use(o.k),t=(0,i.Zp)();return n.useCallback((r,o={})=>{let d=(0,i.o1)(r).pathname;if(!(0,i.ue)(e,d)||o.reloadDocument){let e="string"==typeof r?r:(0,i.AO)(r);o.preventTurbo?window.location.href=e:(async()=>{let{softNavigate:t}=await Promise.all([a.e(7332),a.e(54563)]).then(a.bind(a,54563));t(e)})()}else{(0,l.A)(location.href,r.toString())||(0,s.SC)("react");let{preventAutofocus:e,...a}=o;(0,n.startTransition)(()=>{t(r,e?{...a,state:{[c.V]:!0,...a.state}}:a)})}},[t,e])},h=()=>{let e,t,a=(0,r.c)(7),[n]=(0,i.ok)(),l=d(),{pathname:s}=(0,i.zy)();a[0]!==l||a[1]!==s||a[2]!==n?(e=(e,t)=>{l({pathname:s,search:(0,i.PI)("function"==typeof e?e(n):e).toString()},void 0===t?{}:t)},a[0]=l,a[1]=s,a[2]=n,a[3]=e):e=a[3];let c=e;return a[4]!==n||a[5]!==c?(t=[n,c],a[4]=n,a[5]=c,a[6]=t):t=a[6],t}}}]); +//# sourceMappingURL=66990-89ea3bf0eef9.js.map \ No newline at end of file diff --git "a/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/67071-71cb600cebb1.js" "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/67071-71cb600cebb1.js" new file mode 100644 index 0000000..471768c --- /dev/null +++ "b/docs/assets/identity/identity_service/feat_ name verification docs by keraron \302\267 Pull Request #365 \302\267 agntcy_docs_files/67071-71cb600cebb1.js" @@ -0,0 +1,5 @@ +performance.mark("js-parse-end:67071-71cb600cebb1.js"); +"use strict";(globalThis.webpackChunk_github_ui_github_ui=globalThis.webpackChunk_github_ui_github_ui||[]).push([[67071],{4038:(e,t,a)=>{a.d(t,{$T:()=>d,It:()=>l,Oe:()=>o,QG:()=>c,oT:()=>u,wV:()=>s});var r=a(96540);let n=new Set([" ",` +`]),i=new Set([".",` +`]),o=(e,t,a)=>{let r=e.sort((e,t)=>t.triggerChar.length-e.triggerChar.length);for(let e=a-1,o="",s=r;e>=0&&s.length>0;e--){let a=t[e]??"";for(let r of(o=a+o,n.has(a)&&(s=s.filter(e=>e.multiWord)),i.has(a)&&(s=s.filter(e=>!e.multiWord)),s.filter(e=>o.startsWith(e.triggerChar)))){let a=t[e-1]??"",n=o[1]??"";if((!a||/[\s([]/.test(a))&&(!n||!/\s/.test(n)))return{trigger:r,query:o.slice(r.triggerChar.length),caretLocation:e};s=s.filter(e=>e!==r)}}return null},s=e=>"object"==typeof e&&null===e.value,l=e=>"string"==typeof e?e:e.value,c=e=>"string"==typeof e?e:null===e.value?e.key:e.key??e.value;function d(e,t){if(r.Children.only(e),t.current&&!(t.current instanceof HTMLInputElement)&&!(t.current instanceof HTMLTextAreaElement))throw TypeError("AutocompleteTextarea child must be a component that forwards a ref and props to an or